summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3a28b39)
raw | patch | inline | side by side (parent: 3a28b39)
author | Sebastian Harl <sh@tokkee.org> | |
Sat, 17 Nov 2007 17:43:19 +0000 (18:43 +0100) | ||
committer | Florian Forster <octo@huhu.verplant.org> | |
Tue, 20 Nov 2007 08:04:43 +0000 (09:04 +0100) |
The list of plugins has to be common to all threads to be able to (un)register
callbacks after initialization. As threads::shared is not able to share
references to subroutines the callbacks now have to be identified by their
name. Collectd::call_by_name() is used to execute the callbacks.
Signed-off-by: Sebastian Harl <sh@tokkee.org>
Signed-off-by: Florian Forster <octo@huhu.verplant.org>
callbacks after initialization. As threads::shared is not able to share
references to subroutines the callbacks now have to be identified by their
name. Collectd::call_by_name() is used to execute the callbacks.
Signed-off-by: Sebastian Harl <sh@tokkee.org>
Signed-off-by: Florian Forster <octo@huhu.verplant.org>
bindings/perl/Collectd.pm | patch | blob | history |
index 1f9c61e3085c0a9f4204d9ac8d9a864c38934738..8c3159c71939c8cd83611e7dd7096d1050b71e2c 100644 (file)
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 {