[Bast-commits] r3194 - trunk/Devel-REPL/lib/Devel/REPL/Plugin
matthewt at dev.catalyst.perl.org
matthewt at dev.catalyst.perl.org
Mon Apr 16 02:15:42 GMT 2007
Author: matthewt
Date: 2007-04-16 02:15:41 +0100 (Mon, 16 Apr 2007)
New Revision: 3194
Added:
trunk/Devel-REPL/lib/Devel/REPL/Plugin/History.pm
Log:
history plugin for Devel::REPL
Added: trunk/Devel-REPL/lib/Devel/REPL/Plugin/History.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/History.pm (rev 0)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/History.pm 2007-04-16 01:15:41 UTC (rev 3194)
@@ -0,0 +1,51 @@
+package Devel::REPL::Plugin::History;
+
+use Moose::Role;
+
+has 'history' => (
+ isa => 'ArrayRef', is => 'rw', required => 1, lazy => 1,
+ default => sub { [] }
+);
+
+sub push_history {
+ my ($self, $line) = @_;
+ push(@{$self->history}, $line);
+}
+
+around 'read' => sub {
+ my $orig = shift;
+ my ($self, @args) = @_;
+ my $line = $self->$orig(@args);
+ if (defined $line) {
+ if ($line =~ m/^!(.*)$/) {
+ my $call = $1;
+ $line = $self->history_call($call);
+ if (defined $line) {
+ $self->print($line."\n");
+ } else {
+ return "'Unable to find ${call} in history'";
+ }
+ }
+ if ($line =~ m/\S/) {
+ $self->push_history($line);
+ }
+ }
+ return $line;
+};
+
+sub history_call {
+ my ($self, $call) = @_;
+ if ($call =~ m/^(-?\d+)$/) { # handle !1 or !-1
+ my $idx = $1;
+ $idx-- if ($idx > 0); # !1 gets history element 0
+ my $line = $self->history->[$idx];
+ return $line;
+ }
+ my $re = qr/^\Q${call}\E/;
+ foreach my $line (reverse @{$self->history}) {
+ return $line if ($line =~ $re);
+ }
+ return;
+};
+
+1;
More information about the Bast-commits
mailing list