/usr/share/perl5/Devel/REPL.pm is in libdevel-repl-perl 1.003028-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 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 | package Devel::REPL; # git description: v1.003027-6-gfa625b2
# ABSTRACT: A modern perl interactive shell
our $VERSION = '1.003028';
use Term::ReadLine;
use Moose;
use namespace::autoclean;
use 5.008001; # backwards compat, doesn't warn like 5.8.1
with 'MooseX::Object::Pluggable';
use Devel::REPL::Error;
has 'term' => (
is => 'rw',
lazy => 1,
default => sub { Term::ReadLine->new('Perl REPL') }
);
has 'prompt' => (
is => 'rw',
default => sub { '$ ' }
);
has 'out_fh' => (
is => 'rw',
lazy => 1,
default => sub { shift->term->OUT || \*STDOUT; }
);
has 'exit_repl' => (
is => 'rw',
default => sub { 0 }
);
sub run {
my ($self) = @_;
while ($self->run_once_safely) {
# keep looping unless we want to exit REPL
last if $self->exit_repl;
}
}
sub run_once_safely {
my ($self, @args) = @_;
my $ret = eval { $self->run_once(@args) };
if ($@) {
my $error = $@;
eval { $self->print("Error! - $error\n"); };
return 1;
} else {
return $ret;
}
}
sub run_once {
my ($self) = @_;
my $line = $self->read;
return unless defined($line); # undefined value == EOF
my @ret = $self->formatted_eval($line);
$self->print(@ret) unless $self->exit_repl;
return 1;
}
sub formatted_eval {
my ( $self, @args ) = @_;
my @ret = $self->eval(@args);
return $self->format(@ret);
}
sub format {
my ( $self, @stuff ) = @_;
if ( $self->is_error($stuff[0]) ) {
return $self->format_error(@stuff);
} else {
return $self->format_result(@stuff);
}
}
sub format_result {
my ( $self, @stuff ) = @_;
return @stuff;
}
sub format_error {
my ( $self, $error ) = @_;
return $error->stringify;
}
sub is_error {
my ( $self, $thingy ) = @_;
blessed($thingy) and $thingy->isa("Devel::REPL::Error");
}
sub read {
my ($self) = @_;
return $self->term->readline($self->prompt);
}
sub eval {
my ($self, $line) = @_;
my $compiled = $self->compile($line);
return $compiled unless defined($compiled) and not $self->is_error($compiled);
return $self->execute($compiled);
}
sub compile {
my ( $_REPL, @args ) = @_;
my $compiled = eval $_REPL->wrap_as_sub(@args);
return $_REPL->error_return("Compile error", $@) if $@;
return $compiled;
}
sub wrap_as_sub {
my ($self, $line, %args) = @_;
return qq!sub {\n!. ( $args{no_mangling} ? $line : $self->mangle_line($line) ).qq!\n}\n!;
}
sub mangle_line {
my ($self, $line) = @_;
return $line;
}
sub execute {
my ($self, $to_exec, @args) = @_;
my @ret = eval { $to_exec->(@args) };
return $self->error_return("Runtime error", $@) if $@;
return @ret;
}
sub error_return {
my ($self, $type, $error) = @_;
return Devel::REPL::Error->new( type => $type, message => $error );
}
sub print {
my ($self, @ret) = @_;
my $fh = $self->out_fh;
no warnings 'uninitialized';
print $fh "@ret";
print $fh "\n" if $self->term->ReadLine =~ /Gnu/;
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Devel::REPL - A modern perl interactive shell
=head1 VERSION
version 1.003028
=head1 SYNOPSIS
my $repl = Devel::REPL->new;
$repl->load_plugin($_) for qw(History LexEnv);
$repl->run
Alternatively, use the 're.pl' script installed with the distribution
system$ re.pl
=head1 DESCRIPTION
This is an interactive shell for Perl, commonly known as a REPL - Read,
Evaluate, Print, Loop. The shell provides for rapid development or testing
of code without the need to create a temporary source code file.
Through a plugin system, many features are available on demand. You can also
tailor the environment through the use of profiles and run control files, for
example to pre-load certain Perl modules when working on a particular project.
=head1 USAGE
To start a shell, follow one of the examples in the L</"SYNOPSIS"> above.
Once running, the shell accepts and will attempt to execute any code given. If
the code executes successfully you'll be shown the result, otherwise an error
message will be returned. Here are a few examples:
$_ print "Hello, world!\n"
Hello, world!
1
$_ nosuchfunction
Compile error: Bareword "nosuchfunction" not allowed while "strict subs" in use at (eval 130) line 5.
$_
In the first example above you see the output of the command (C<Hello,
world!>), if any, and then the return value of the statement (C<1>). Following
that example, an error is returned when the execution of some code fails.
Note that the lack of semicolon on the end is not a mistake - the code is
run inside a Block structure (to protect the REPL in case the code blows up),
which means a single statement doesn't require the semicolon. You can add one
if you like, though.
If you followed the first example in the L</"SYNOPSIS"> above, you'll have the
L<History|Devel::REPL::Plugin::History> and L<LexEnv|Devel::REPL::Plugin::LexEnv>
plugins loaded (and there are many more available).
Although the shell might support "up-arrow" history, the History plugin adds
"bang" history to that so you can re-execute chosen commands (with e.g.
C<!53>). The LexEnv plugin ensures that lexical variables declared with the
C<my> keyword will automatically persist between statements executed in the
REPL shell.
When you C<use> any Perl module, the C<import()> will work as expected - the
exported functions from that module are available for immediate use:
$_ carp "I'm dieeeing!\n"
String found where operator expected at (eval 129) line 5, near "carp "I'm dieeeing!\n""
(Do you need to predeclare carp?)
Compile error: syntax error at (eval 129) line 5, near "carp "I'm dieeeing!\n""
BEGIN not safe after errors--compilation aborted at (eval 129) line 5.
$_ use Carp
$_ carp "I'm dieeeing!\n"
I'm dieeeing!
at /usr/share/perl5/Lexical/Persistence.pm line 327
1
$_
To quit from the shell, hit C<Ctrl+D> or C<Ctrl+C>.
MSWin32 NOTE: control keys won't work if TERM=dumb
because readline functionality will be disabled.
=head2 Run Control Files
For particular projects you might well end up running the same commands each
time the REPL shell starts up - loading Perl modules, setting configuration,
and so on. A run control file lets you have this done automatically, and you
can have multiple files for different projects.
By default the C<re.pl> program looks for C<< $HOME/.re.pl/repl.rc >>, and
runs whatever code is in there as if you had entered it at the REPL shell
yourself.
To set a new run control file that's also in that directory, pass it as a
filename like so:
system$ re.pl --rcfile myproject.pc
If the filename happens to contain a forward slash, then it's used absolutely,
or realive to the current working directory:
system$ re.pl --rcfile /path/to/my/project/repl.rc
Within the run control file you might want to load plugins. This is covered in
L</"The REPL shell object"> section, below.
=head2 Profiles
To allow for the sharing of run control files, you can fashion them into a
Perl module for distribution (perhaps via the CPAN). For more information on
this feature, please see the L<Devel::REPL::Profile> manual page.
A C<Standard> profile ships with C<Devel::REPL>; it loads the following plugins
(note that some of these require optional features -- or you can also use the
C<Minimal> profile):
=over 4
=item *
L<Devel::REPL::Plugin::History>
=item *
L<Devel::REPL::Plugin::LexEnv>
=item *
L<Devel::REPL::Plugin::DDS>
=item *
L<Devel::REPL::Plugin::Packages>
=item *
L<Devel::REPL::Plugin::Commands>
=item *
L<Devel::REPL::Plugin::MultiLine::PPI>
=item *
L<Devel::REPL::Plugin::Colors>
=item *
L<Devel::REPL::Plugin::Completion>
=item *
L<Devel::REPL::Plugin::CompletionDriver::INC>
=item *
L<Devel::REPL::Plugin::CompletionDriver::LexEnv>
=item *
L<Devel::REPL::Plugin::CompletionDriver::Keywords>
=item *
L<Devel::REPL::Plugin::CompletionDriver::Methods>
=item *
L<Devel::REPL::Plugin::ReadlineHistory>
=back
=head2 Plugins
Plugins are a way to add functionality to the REPL shell, and take advantage of
C<Devel::REPL> being based on the L<Moose> object system for Perl 5. This
means it's simple to 'hook into' many steps of the R-E-P-L process. Plugins
can change the way commands are interpreted, or the way their results are
output, or even add commands to the shell environment.
A number of plugins ship with C<Devel::REPL>, and more are available on the
CPAN. Some of the shipped plugins are loaded in the default profile, mentioned
above. These plugins can be loaded in your F< $HOME/.re.pl/repl.rc > like:
load_plugin qw( CompletionDriver::Global DumpHistory );
Writing your own plugins is not difficult, and is discussed in the
L<Devel::REPL::Plugin> manual page, along with links to the manual pages of
all the plugins shipped with C<Devel::REPL>.
=head2 The REPL shell object
From time to time you'll want to interact with or manipulate the
C<Devel::REPL> shell object itself; that is, the instance of the shell you're
currently running.
The object is always available through the C<$_REPL> variable. One common
requirement is to load an additional plugin, after your profile and run
control files have already been executed:
$_ $_REPL->load_plugin('Timing');
1
$_ print "Hello again, world!\n"
Hello again, world!
Took 0.00148296356201172 seconds.
1
$_
=head1 OPTIONAL FEATURES
In addition to the prerequisites declared in this distribution, which should be automatically installed by your L<CPAN> client, there are a number of optional features, used by
additional plugins. You can install any of these features by installing this
distribution interactively (e.g. C<cpanm --interactive Devel::REPL>).
=for comment I hope to automatically generate this data via a Pod::Weaver section
=over 4
=item *
Completion plugin - extensible tab completion
=item *
DDS plugin - better format results with Data::Dump::Streamer
=item *
DDC plugin - even better format results with Data::Dumper::Concise
=item *
INC completion driver - tab complete module names in use and require
=item *
Interrupt plugin - traps SIGINT to kill long-running lines
=item *
Keywords completion driver - tab complete Perl keywords and operators
=item *
LexEnv plugin - variables declared with "my" persist between statements
=item *
MultiLine::PPI plugin - continue reading lines until all blocks are closed
=item *
Nopaste plugin - upload a session\'s input and output to a Pastebin
=item *
PPI plugin - PPI dumping of Perl code
=item *
Refresh plugin - automatically reload libraries with Module::Refresh
=back
=head1 SEE ALSO
=over 4
=item *
L<A comparison of various REPLs|http://shadow.cat/blog/matt-s-trout/mstpan-17/>
=back
=head1 SUPPORT
Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=Devel-REPL>
(or L<bug-Devel-REPL@rt.cpan.org|mailto:bug-Devel-REPL@rt.cpan.org>).
There is also an irc channel available for users of this distribution, at
L<C<#devel> on C<irc.perl.org>|irc://irc.perl.org/#devel-repl>.
=head1 AUTHOR
Matt S Trout - mst (at) shadowcatsystems.co.uk (L<http://www.shadowcatsystems.co.uk/>)
=head1 CONTRIBUTORS
=for stopwords Karen Etheridge Shawn M Moore Chris Marshall Matt S Trout Oliver Gorwits יובל קוג'מן (Yuval Kogman) Arthur Axel 'fREW' Schmidt Andrew Alexis Sukrieh Tomas Doran (t0m) epitaph Norbert Buchmuller Jesse Luehrs Dave Houston Dagfinn Ilmari Mannsåker Zakariyya Mughal Ryan Niebur Justin Hunter Ash Berlin naquad Stevan Little
=over 4
=item *
Karen Etheridge <ether@cpan.org>
=item *
Shawn M Moore <code@sartak.org>
=item *
Chris Marshall <devel.chm.01@gmail.com>
=item *
Matt S Trout <mst@shadowcat.co.uk>
=item *
Oliver Gorwits <oliver@cpan.org>
=item *
יובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org>
=item *
Arthur Axel 'fREW' Schmidt <frioux@gmail.com>
=item *
Andrew Moore <amoore@cpan.org>
=item *
Alexis Sukrieh <sukria+perl@sukria.net>
=item *
Tomas Doran (t0m) <bobtfish@bobtfish.net>
=item *
epitaph <unknown>
=item *
Norbert Buchmuller <norbi@nix.hu>
=item *
Jesse Luehrs <doy@tozt.net>
=item *
Dave Houston <dhouston@cpan.org>
=item *
Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>
=item *
Zakariyya Mughal <zaki.mughal@gmail.com>
=item *
Ryan Niebur <ryan@debian.org>
=item *
Justin Hunter <justin.d.hunter@gmail.com>
=item *
Ash Berlin <ash_github@firemirror.com>
=item *
naquad <naquad@bd8105ee-0ff8-0310-8827-fb3f25b6796d>
=item *
Stevan Little <stevan.little@iinteractive.com>
=back
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2007 by Matt S Trout - mst (at) shadowcatsystems.co.uk (L<http://www.shadowcatsystems.co.uk/>).
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
|