/usr/share/perl5/Class/Trigger.pm is in libclass-trigger-perl 0.14-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 | package Class::Trigger;
use 5.008_001;
use strict;
use vars qw($VERSION);
$VERSION = "0.14";
use Carp ();
my (%Triggers, %TriggerPoints);
my %Fetch_All_Triggers_Cache;
sub import {
my $class = shift;
my $pkg = caller(0);
$TriggerPoints{$pkg} = { map { $_ => 1 } @_ } if @_;
# export mixin methods
no strict 'refs';
my @methods = qw(add_trigger call_trigger last_trigger_results);
*{"$pkg\::$_"} = \&{$_} for @methods;
}
sub add_trigger {
my $proto = shift;
my $triggers = __fetch_triggers($proto);
my %params = @_;
my @values = values %params;
if (@_ > 2 && (grep { ref && ref eq 'CODE' } @values) == @values) {
Carp::croak "mutiple trigger registration in one add_trigger() call is deprecated.";
}
if ($#_ == 1 && ref($_[1]) eq 'CODE') {
@_ = (name => $_[0], callback => $_[1]);
}
my %args = ( name => undef, callback => undef, abortable => undef, @_ );
my $when = $args{'name'};
my $code = $args{'callback'};
my $abortable = $args{'abortable'};
__validate_triggerpoint( $proto, $when );
Carp::croak('add_trigger() needs coderef') unless ref($code) eq 'CODE';
push @{ $triggers->{$when} }, [ $code, $abortable ];
# Clear the cache when class triggers are added. Because triggers are
# inherited adding a trigger to one class may effect others. Simplest
# thing to do is to clear the whole thing.
%Fetch_All_Triggers_Cache = () unless ref $proto;
1;
}
sub last_trigger_results {
my $self = shift;
my $result_store = ref($self) ? $self : ${Class::Trigger::_trigger_results}->{$self};
return $result_store->{'_class_trigger_results'};
}
sub call_trigger {
my $self = shift;
my $when = shift;
my @return;
my $result_store = ref($self) ? $self : ${Class::Trigger::_trigger_results}->{$self};
$result_store->{'_class_trigger_results'} = [];
if (my @triggers = __fetch_all_triggers($self, $when)) { # any triggers?
for my $trigger (@triggers) {
my @return = $trigger->[0]->($self, @_);
push @{$result_store->{'_class_trigger_results'}}, \@return;
return undef if ($trigger->[1] and not $return[0]); # only abort on false values.
}
}
else {
# if validation is enabled we can only add valid trigger points
# so we only need to check in call_trigger() if there's no
# trigger with the requested name.
__validate_triggerpoint($self, $when);
}
return scalar @{$result_store->{'_class_trigger_results'}};
}
sub __fetch_all_triggers {
my ($obj, $when, $list, $order, $nocache) = @_;
$nocache = 0 unless defined $nocache;
my $class = ref $obj || $obj;
my $return;
my $when_key = defined $when ? $when : '';
unless ($nocache) {
return __cached_triggers($obj, $when)
if $Fetch_All_Triggers_Cache{$class}{$when_key};
}
unless ($list) {
# Absence of the $list parameter conditions the creation of
# the unrolled list of triggers. These keep track of the unique
# set of triggers being collected for each class and the order
# in which to return them (based on hierarchy; base class
# triggers are returned ahead of descendant class triggers).
$list = {};
$order = [];
$return = 1;
}
no strict 'refs';
my @classes = @{$class . '::ISA'};
push @classes, $class;
foreach my $c (@classes) {
next if $list->{$c};
# if (UNIVERSAL::can($c, 'call_trigger')) {
if ($c->can('call_trigger')) {
$list->{$c} = [];
__fetch_all_triggers($c, $when, $list, $order, 1)
unless $c eq $class;
if (defined $when && $Triggers{$c}{$when}) {
push @$order, $c;
$list->{$c} = $Triggers{$c}{$when};
}
}
}
if ($return) {
my @triggers;
foreach my $class (@$order) {
push @triggers, @{ $list->{$class} };
}
# Only cache the class triggers, object triggers would
# necessitate a much larger cache and they're cheap to
# get anyway.
$Fetch_All_Triggers_Cache{$class}{$when_key} = \@triggers;
return __cached_triggers($obj, $when);
}
}
sub __cached_triggers {
my($proto, $when) = @_;
my $class = ref $proto || $proto;
return @{ $Fetch_All_Triggers_Cache{$class}{$when || ''} },
@{ __object_triggers($proto, $when) };
}
sub __object_triggers {
my($obj, $when) = @_;
return [] unless ref $obj && defined $when;
return $obj->{__triggers}{$when} || [];
}
sub __validate_triggerpoint {
return unless my $points = $TriggerPoints{ref $_[0] || $_[0]};
my ($self, $when) = @_;
Carp::croak("$when is not valid triggerpoint for ".(ref($self) ? ref($self) : $self))
unless $points->{$when};
}
sub __fetch_triggers {
my ($obj, $proto) = @_;
# check object based triggers first
return ref $obj ? $obj->{__triggers} ||= {} : $Triggers{$obj} ||= {};
}
1;
__END__
=head1 NAME
Class::Trigger - Mixin to add / call inheritable triggers
=head1 SYNOPSIS
package Foo;
use Class::Trigger;
sub foo {
my $self = shift;
$self->call_trigger('before_foo');
# some code ...
$self->call_trigger('middle_of_foo');
# some code ...
$self->call_trigger('after_foo');
}
package main;
Foo->add_trigger(before_foo => \&sub1);
Foo->add_trigger(after_foo => \&sub2);
my $foo = Foo->new;
$foo->foo; # then sub1, sub2 called
# triggers are inheritable
package Bar;
use base qw(Foo);
Bar->add_trigger(before_foo => \&sub);
# triggers can be object based
$foo->add_trigger(after_foo => \&sub3);
$foo->foo; # sub3 would appply only to this object
=head1 DESCRIPTION
Class::Trigger is a mixin class to add / call triggers (or hooks)
that get called at some points you specify.
=head1 METHODS
By using this module, your class is capable of following methods.
=over 4
=item add_trigger
Foo->add_trigger($triggerpoint => $sub);
$foo->add_trigger($triggerpoint => $sub);
Foo->add_trigger( name => $triggerpoint,
callback => sub {return undef},
abortable => 1);
# no further triggers will be called. Undef will be returned.
Adds triggers for trigger point. You can have any number of triggers
for each point. Each coderef will be passed a reference to the calling object,
as well as arguments passed in via L<call_trigger>. Return values will be
captured in I<list context>.
If add_trigger is called with named parameters and the C<abortable>
parameter is passed a true value, a false return value from trigger
code will stop processing of this trigger point and return a C<false>
value to the calling code.
If C<add_trigger> is called without the C<abortable> flag, return
values will be captured by call_trigger, but failures will be ignored.
If C<add_trigger> is called as object method, whole current trigger
table will be copied onto the object and the new trigger added to
that. (The object must be implemented as hash.)
my $foo = Foo->new;
# this trigger ($sub_foo) would apply only to $foo object
$foo->add_trigger($triggerpoint => $sub_foo);
$foo->foo;
# And not to another $bar object
my $bar = Foo->new;
$bar->foo;
=item call_trigger
$foo->call_trigger($triggerpoint, @args);
Calls triggers for trigger point, which were added via C<add_trigger>
method. Each triggers will be passed a copy of the object as the first argument.
Remaining arguments passed to C<call_trigger> will be passed on to each trigger.
Triggers are invoked in the same order they were defined.
If there are no C<abortable> triggers or no C<abortable> trigger point returns
a false value, C<call_trigger> will return the number of triggers processed.
If an C<abortable> trigger returns a false value, call trigger will stop execution
of the trigger point and return undef.
=item last_trigger_results
my @results = @{ $foo->last_trigger_results };
Returns a reference to an array of the return values of all triggers called
for the last trigger point. Results are ordered in the same order the triggers
were run.
=back
=head1 TRIGGER POINTS
By default you can make any number of trigger points, but if you want
to declare names of trigger points explicitly, you can do it via
C<import>.
package Foo;
use Class::Trigger qw(foo bar baz);
package main;
Foo->add_trigger(foo => \&sub1); # okay
Foo->add_trigger(hoge => \&sub2); # exception
=head1 FAQ
B<Acknowledgement:> Thanks to everyone at POOP mailing-list
(http://poop.sourceforge.net/).
=over 4
=item Q.
This module lets me add subs to be run before/after a specific
subroutine is run. Yes?
=item A.
You put various call_trigger() method in your class. Then your class
users can call add_trigger() method to add subs to be run in points
just you specify (exactly where you put call_trigger()).
=item Q.
Are you aware of the perl-aspects project and the Aspect module? Very
similar to Class::Trigger by the look of it, but its not nearly as
explicit. Its not necessary for foo() to actually say "triggers go
*here*", you just add them.
=item A.
Yep ;)
But the difference with Aspect would be that Class::Trigger is so
simple that it's easy to learn, and doesn't require 5.6 or over.
=item Q.
How does this compare to Sub::Versive, or Hook::LexWrap?
=item A.
Very similar. But the difference with Class::Trigger would be the
explicitness of trigger points.
In addition, you can put hooks in any point, rather than pre or post
of a method.
=item Q.
It looks interesting, but I just can't think of a practical example of
its use...
=item A.
(by Tony Bowden)
I originally added code like this to Class::DBI to cope with one
particular case: auto-upkeep of full-text search indices.
So I added functionality in Class::DBI to be able to trigger an
arbitary subroutine every time something happened - then it was a
simple matter of setting up triggers on INSERT and UPDATE to reindex
that row, and on DELETE to remove that index row.
See L<Class::DBI::mysql::FullTextSearch> and its source code to see it
in action.
=back
=head1 AUTHORS
Original idea by Tony Bowden E<lt>tony@kasei.comE<gt> in Class::DBI.
Code by Tatsuhiko Miyagawa E<lt>miyagawa@bulknews.netE<gt>.
Jesse Vincent added a code to get return values from triggers and
abortable flag.
=head1 LICENSE
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=head1 SEE ALSO
L<Class::DBI>
=cut
|