X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=blobdiff_plain;f=lib%2FDevel%2FREPL%2FPlugin%2FTurtles.pm;h=8bcba92644507b6f0d045e882c6e3d7d3c319e93;hp=4ab7eab72506b4c9cc5271a1b5f126c95183e9f9;hb=e22aa835df762f888ec7ff9efb2a599ebe17538e;hpb=97d28d6b74a5aa91b2af19a28c438caa193bfac0 diff --git a/lib/Devel/REPL/Plugin/Turtles.pm b/lib/Devel/REPL/Plugin/Turtles.pm index 4ab7eab..8bcba92 100644 --- a/lib/Devel/REPL/Plugin/Turtles.pm +++ b/lib/Devel/REPL/Plugin/Turtles.pm @@ -1,26 +1,69 @@ package Devel::REPL::Plugin::Turtles; -use Moose::Role; +use Devel::REPL::Plugin; + +use Scalar::Util qw(reftype); + +use MooseX::AttributeHelpers; + use namespace::clean -except => [ 'meta' ]; -around 'eval' => sub { +has default_command_prefix => ( + isa => "RegexpRef", + is => "rw", + default => sub { qr/\#/ }, +); + +has turtles_matchers => ( + metaclass => "Collection::Array", + isa => "ArrayRef[RegexpRef|CodeRef]", + is => "rw", + default => sub { my $prefix = shift->default_command_prefix; [qr/^ $prefix (\w+) \s* (.*) /x] }, + provides => { + unshift => "add_turtles_matcher", + }, +); + +around 'formatted_eval' => sub { my $next = shift; - my ($self, $line) = @_; - if ( my ( $command, $rest ) = ( $line =~ /^#(\w+)\s*(.*)/ ) ) { - if ( my $cont = $self->can("continue_reading_if_necessary") ) { - $rest = $self->$cont($rest); - } + my ($self, $line, @args) = @_; + if ( my ( $command, @rest ) = $self->match_turtles($line) ) { my $method = "command_$command"; + my $expr_method = "expr_$method"; - if ( $self->can($method) ) { - return $self->$method($rest); + if ( my $expr_code = $self->can($expr_method) ) { + if ( my $read_more = $self->can("continue_reading_if_necessary") ) { + push @rest, $self->$read_more(pop @rest); + } + $self->$expr_code($next, @rest); + } elsif ( my $cmd_code = $self->can($method) ) { + return $self->$cmd_code($next, @rest); } else { - return $self->error_return("REPL error", "Command '$command' does not exist"); + unless ( $line =~ /^\s*#/ ) { # special case for comments + return $self->format($self->error_return("REPL Error", "Command '$command' does not exist")); + } } - } - else { - return $next->($self, $line); + } else { + return $self->$next($line, @args); } }; +sub match_turtles { + my ( $self, $line ) = @_; + + foreach my $thingy ( @{ $self->turtles_matchers } ) { + if ( reftype $thingy eq 'CODE' ) { + if ( my @res = $self->$thingy($line) ) { + return @res; + } + } else { + if ( my @res = ( $line =~ $thingy ) ) { + return @res; + } + } + } + + return; +} + 1;