use Config;
+use threads;
+use threads::shared;
+
BEGIN {
if (! $Config{'useithreads'}) {
die "Perl does not support ithreads!";
Exporter::export_ok_tags ('all');
-my @plugins = ();
+my @plugins : shared = ();
my %types = (
TYPE_INIT, "init",
);
foreach my $type (keys %types) {
- $plugins[$type] = {};
+ $plugins[$type] = &share ({});
}
sub _log {
sub plugin_call_all {
my $type = shift;
+ our $cb_name = undef;
+
if (! defined $type) {
return;
}
return;
}
+ lock @plugins;
foreach my $plugin (keys %{$plugins[$type]}) {
my $p = $plugins[$type]->{$plugin};
+ my $status = 0;
+
if ($p->{'wait_left'} > 0) {
# TODO: use interval_g
$p->{'wait_left'} -= 10;
next if ($p->{'wait_left'} > 0);
- if (my $status = $p->{'code'}->(@_)) {
+ $cb_name = $p->{'cb_name'};
+ $status = call_by_name (@_);
+
+ if (! defined $status) {
+ if (TYPE_LOG != $type) {
+ ERROR ("Could not execute callback \"$cb_name\": $@");
+ }
+
+ next;
+ }
+
+ if ($status) {
$p->{'wait_left'} = 0;
$p->{'wait_time'} = 10;
}
if ((TYPE_DATASET == $type) && ("ARRAY" eq ref $data)) {
return plugin_register_data_set ($name, $data);
}
- elsif ("CODE" eq ref $data) {
+ elsif ((TYPE_DATASET != $type) && (! ref $data)) {
+ my $pkg = scalar caller;
+
+ my %p : shared;
+
+ if ($data !~ m/^$pkg/) {
+ $data = $pkg . "::" . $data;
+ }
+
# TODO: make interval_g available at configuration time
- $plugins[$type]->{$name} = {
- wait_time => 10,
- wait_left => 0,
- code => $data,
- };
+ %p = (
+ wait_time => 10,
+ wait_left => 0,
+ cb_name => $data,
+ );
+
+ lock @plugins;
+ $plugins[$type]->{$name} = \%p;
}
else {
ERROR ("Collectd::plugin_register: Invalid data.");
return plugin_unregister_data_set ($name);
}
elsif (defined $plugins[$type]) {
+ lock @plugins;
delete $plugins[$type]->{$name};
}
else {