From: Chris Marshall Date: Thu, 13 May 2010 01:34:54 +0000 (-0400) Subject: Add [Read|Write]History for Term::ReadLine::Perl X-Git-Tag: v1.003015~40 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=commitdiff_plain;h=baa665c24b891d98e5f937a36679fac44e23ffb6 Add [Read|Write]History for Term::ReadLine::Perl This is a simple implementation. I'd like to see this folded into Term::ReadLine::Perl in some fashion for all to use but for now we have it all to ourselves. --- diff --git a/lib/Devel/REPL/Plugin/ReadLineHistory.pm b/lib/Devel/REPL/Plugin/ReadLineHistory.pm index 61ad9c0..42f733f 100644 --- a/lib/Devel/REPL/Plugin/ReadLineHistory.pm +++ b/lib/Devel/REPL/Plugin/ReadLineHistory.pm @@ -18,19 +18,42 @@ my $hist_file = $ENV{PERLREPL_HISTFILE} || my $hist_len=$ENV{PERLREPL_HISTLEN} || 100; around 'run' => sub { - my $orig=shift; - my ($self, @args)=@_; - if ($self->term->ReadLine eq 'Term::ReadLine::Gnu') { - $self->term->stifle_history($hist_len); - } - if ($self->term->ReadLine eq 'Term::ReadLine::Perl') { - $self->term->Attribs->{MaxHistorySize} = $hist_len; - } - -f($hist_file) && $self->term->ReadHistory($hist_file); - $self->term->Attribs->{do_expand}=1; - $self->$orig(@args); - $self->term->WriteHistory($hist_file) || - $self->print("warning: failed to write history file $hist_file"); + my $orig=shift; + my ($self, @args)=@_; + if ($self->term->ReadLine eq 'Term::ReadLine::Gnu') { + $self->term->stifle_history($hist_len); + } + if ($self->term->ReadLine eq 'Term::ReadLine::Perl') { + $self->term->Attribs->{MaxHistorySize} = $hist_len; + } + if (-f($hist_file)) { + if ($self->term->ReadLine eq 'Term::ReadLine::Gnu') { + $self->term->ReadHistory($hist_file); + } + if ($self->term->ReadLine eq 'Term::ReadLine::Perl') { + open HIST, $hist_file or die "ReadLineHistory: could not open $hist_file: $!\n"; + while (my $line = ) { + chomp $line; + $self->term->addhistory($line); + } + close HIST; + } + } + $self->term->Attribs->{do_expand}=1; + $self->$orig(@args); + if ($self->term->ReadLine eq 'Term::ReadLine::Gnu') { + $self->term->WriteHistory($hist_file) || + $self->print("warning: failed to write history file $hist_file"); + } + if ($self->term->ReadLine eq 'Term::ReadLine::Perl') { + my @lines = $self->term->GetHistory() if $self->term->can('GetHistory'); + if( open HIST, ">$hist_file" ) { + print HIST join("\n",@lines); + close HIST; + } else { + $self->print("warning: unable to WriteHistory to $hist_file"); + } + } }; 1;