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
|
package MooseX::Runnable::Invocation::Plugin::Debug;
# ABSTRACT: print debugging information
our $VERSION = '0.10';
use Moose::Role;
use namespace::autoclean;
with 'MooseX::Runnable::Invocation::Plugin::Role::CmdlineArgs';
# this is an example to cargo-cult, rather than a useful feature :)
has 'debug_prefix' => (
is => 'ro',
isa => 'Str',
required => 1,
default => sub { "" },
);
sub _build_initargs_from_cmdline {
my ($class, @args) = @_;
confess 'Bad args passed to Debug plugin'
unless @args % 2 == 0;
my %args = @args;
if(my $p = $args{'--prefix'}){
return { debug_prefix => $p };
}
return;
}
sub _debug_message {
my ($self, @msg) = @_;
print {*STDERR} $self->debug_prefix, "[$$] ", @msg, "\n";
}
for my $method (qw{
load_class apply_scheme validate_class
create_instance start_application
}){
requires $method;
before $method => sub {
my ($self, @args) = @_;
my $args = join ', ', @args;
$self->_debug_message("Calling $method($args)");
};
after $method => sub {
my $self = shift;
$self->_debug_message("Returning from $method");
};
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
MooseX::Runnable::Invocation::Plugin::Debug - print debugging information
=head1 VERSION
version 0.10
=head1 DESCRIPTION
This is an example plugin, showing how you could write your own. It
prints a message for each stage of the "run" process. It is also used
by other plugins to determine whether or not to print debugging
messages.
=head1 SEE ALSO
L<MooseX::Runnable>
=head1 SUPPORT
Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=MooseX-Runnable>
(or L<bug-MooseX-Runnable@rt.cpan.org|mailto:bug-MooseX-Runnable@rt.cpan.org>).
There is also a mailing list available for users of this distribution, at
L<http://lists.perl.org/list/moose.html>.
There is also an irc channel available for users of this distribution, at
L<C<#moose> on C<irc.perl.org>|irc://irc.perl.org/#moose>.
=head1 AUTHOR
Jonathan Rockway <jrockway@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2009 by Jonathan Rockway.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|