/usr/share/perl5/Expect/Simple.pm is in libexpect-simple-perl 0.04-2.
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 | package Expect::Simple;
use strict;
use warnings;
use Carp;
use Expect;
our $VERSION = '0.04';
sub new {
my $proto = shift;
my $class = ref($proto) || $proto;
my $obj = {
Timeout => 1000,
Debug => 0,
Verbose => 0,
Prompt => undef,
DisconnectCmd => undef,
Cmd => undef,
RawPty => 0,
};
bless ($obj, $class);
my $attr = shift or
croak( __PACKAGE__, ': must specify some attributes!' );
while( my ( $attr, $val ) = each %{$attr} )
{
croak( __PACKAGE__, ": attribute error : `$attr' is not recognized" )
unless exists $obj->{$attr};
$obj->{$attr} = $val;
}
# ensure all the attribures are set
foreach ( keys %$obj )
{
croak( __PACKAGE__, ": must specify attribute `$_'" )
unless defined $obj->{$_};
}
# rework prompt
$obj->{Prompt} = [ 'ARRAY' eq ref $obj->{Prompt} ?
@{$obj->{Prompt}} : $obj->{Prompt} ];
eval { $obj->_connect; };
if ( $@ )
{
chomp $@;
croak (__PACKAGE__, ': ', $@);
}
return $obj;
}
# _connect - start up the cmd
#
# creates an Expect object which talks to the specified command. It dies with
# an appropriate message upon error.
sub _connect
{
my $obj = shift;
print STDERR "Running command..."
if $obj->{Verbose};
# don't store the connection in the object until we're sure it's
# up. otherwise DESTROY will try to disconnect, which won't work...
delete $obj->{_conn};
my $conn = Expect->new();
$conn->raw_pty(1) if $obj->{RawPty};
# Expect docs say that upon failure of spawn, one can get the error
# from the next call to expect(). Unfortunately, that message is
# generated by a die in the forked child process, which means it has
# propagated up through the eval in Expect::Simple::new and
# had lots of cruft slapped onto it, front and back.
#
# instead, I use a horrible hack to grab the (undocumented) warning
# emitted by Expect if $^W is turned on.
{
my $error;
local $^W = 1;
local $SIG{__WARN__} = sub { chomp( $error = $_[0]); return; };
my $success =
$conn->spawn( 'ARRAY' eq ref($obj->{Cmd})
? @{$obj->{Cmd}}
: $obj->{Cmd} );
if ( ! $success )
{
chomp $error;
die( "error spawning command: $error\n" );
}
}
print STDERR "done.\n"
if $obj->{Verbose};
$conn->debug( $obj->{Debug} );
$conn->log_stdout( $obj->{Verbose} > 3 ? 1 : 0 );
$obj->{_conn} = $conn;
$obj->_expect( @{$obj->{Prompt}} )
or die( __PACKAGE__, ": couldn't find prompt\n");
}
sub _disconnect
{
my $obj = shift;
return unless
$obj->{_conn} && !defined $obj->{_conn}->exitstatus;
print STDERR "Disconnecting.\n"
if $obj->{Verbose};
$obj->{_conn}->print( $obj->{DisconnectCmd}, "\n" );
$obj->_expect( 'the unexpected' );
croak( __PACKAGE__, ": disconnection error" )
unless $obj->{_conn}->exp_error =~ /^(2|3)/;
$obj->{_conn} = undef;
}
# send( @commands )
#
# send commands to the server. each command is sent independently.
# it waits for the prompt to indicate success.
#
# it croaks if there was an error. $obj->error returns
# the results of the communication to
# the server which caused the error.
sub send
{
my $obj = shift;
foreach ( @_ )
{
print STDERR "Sending `$_'\n"
if $obj->{Verbose} && ! $obj->{_conn}->log_stdout;
$obj->{_conn}->print( $_, "\n");
$obj->_expect( @{$obj->{Prompt}} ) ||
croak( __PACKAGE__, ": couldn't find prompt after send");
}
}
# _expect( @match_patterns )
#
# match output of the server.The error message is massaged to
# make it more obvious.
#
# it returns 1 upon success, undef if there was an error.
sub _expect
{
my $obj = shift;
my $match = $obj->{_conn}->expect( $obj->{Timeout}, @_ );
$obj->{_error} = undef;
unless ( defined $match )
{
local $_ = $obj->{_conn}->exp_error;
if ( /^1/ )
{
$obj->{_error} = 'connection timed out';
}
elsif ( /^(2|3)/ )
{
$obj->{_error} = 'connection unexpectedly terminated';
}
else
{
my ( $errno, $errmsg) = /(\d):(.*)/;
$obj->{_error} = "error in communications: $errmsg";
}
return undef;
}
1;
}
sub error { shift()->{_error} }
sub error_expect { shift()->{_conn}->exp_error }
sub match_idx { shift()->{_conn}->exp_match_number }
sub match_str { shift()->{_conn}->exp_match }
sub before { shift()->{_conn}->exp_before }
sub after { shift()->{_conn}->exp_after }
sub expect_handle{ shift()->{_conn} }
sub DESTROY { shift()->_disconnect }
# Autoload methods go after =cut, and are processed by the autosplit program.
1;
__END__
=head1 NAME
Expect::Simple - wrapper around the Expect module
=head1 SYNOPSIS
use Expect::Simple;
my $obj = new Expect::Simple
{ Cmd => [ dmcoords => 'verbose=1', "infile=$infile"],
Prompt => [ -re => 'dmcoords>:\s+' ],
DisconnectCmd => 'q',
Verbose => 0,
Debug => 0,
Timeout => 100
};
$obj->send( $cmd );
print $obj->before;
print $obj->after;
print $obj->match_str, "\n";
print $obj->match_idx, "\n";
print $obj->error_expect;
print $obj->error;
$expect_object = $obj->expect_handle;
=head1 DESCRIPTION
C<Expect::Simple> is a wrapper around the C<Expect> module which
should suffice for simple applications. It hides most of the
C<Expect> machinery; the C<Expect> object is available for tweaking if
need be.
Generally, one starts by creating an B<Expect::Simple> object using
B<new>. This will start up the target program, and will wait until
one of the specified prompts is output by the target. At that point
the caller should B<send()> commands to the program; the results are
available via the B<before>, B<after>, B<match_str>, and B<match_idx>
methods. Since B<Expect> simulates a terminal, there will be extra
C<\r> characters at the end of each line in the result (on UNIX at
least). This is easily fixed:
($res = $obj->before) =~ tr/\r//d;
@lines = split( "\n", $res );
This is B<not> done automatically.
Exceptions will be thrown on error (match with C</Expect::Simple/>).
Errors from B<Expect> are available via the B<error_expect> method.
More human readable errors are available via the B<error> method.
The connection is automatically broken (by sending the specified
disconnect command to the target) when the B<Expect::Simple> object is
destroyed.
=head2 Methods
=over 8
=item new
$obj = Expect::Simple->new( \%attr );
This creates a new object, starting up the program with which to
communicate (using the B<Expect> B<spawn> method) and waiting for a
prompt. The passed hash reference must contain at least the
B<Prompt>, B<DisconnectCmd>, and B<Cmd> elements. The available
attributes are:
=over 8
=item Cmd
Cmd => $command,
Cmd => [ $command, $arg1, $arg2, ... ],
The command to which to connect. The passed command may either be a
scalar or an array.
=item Prompt
This specifies one or more prompts to scan for. For a single prompt,
the value may be a scalar; for more, or for matching of regular
expressions, it should be an array reference. For example,
Prompt => 'prompt1> ',
Prompt => [ 'prompt1> ', 'prompt2> ', -re => 'prompt\d+>\s+' ]
All prompts are taken literally, unless immediately preceded by a C<-re> flag,
in which case they are regular expressions.
=item DisconnectCmd
This is the command to be sent to the target program which will cause
it to exit.
=item RawPty
If set, then underlying B<Expect> object's pty mode is set to raw mode
(see B<Expect::raw_pty()>).
=item Timeout
The time in seconds to wait until giving up on the target program
responding. This is used during program startup and when any commands
are sent to the program. It defaults to 1000 seconds.
=item Debug
The value is passed to B<Expect> via its B<debug> method.
=item Verbose
This results in various messages printed to the STDERR stream.
If greater than 3, it turns on B<Expect>'s logging to STDOUT (via
the B<log_stdout> B<Expect> method.
=back
=item send
$obj->send( $cmd );
$obj->send( @cmds );
Send one or more commands to the target. After each command is sent,
it waits for a prompt from the target. Only the output resulting from
the last command is available via the B<after>, B<before>, etc. methods.
=item match_idx
This returns a unary based index indicating which prompt (in the list
of prompts specified via the C<Prompt> attribute to the B<new> method)
was received after the last command was sent. It will be undef if
none was returned.
=item match_str
This returns the prompt which was matched after the last command was sent.
=item before
This returns the string received before the prompt. If no prompt was seen,
it returns all output accumulated. This is usually what the caller wants
to parse. Note that the first line will (usually) be the command that
was sent to the target, because of echoing. Check this out to be sure!
=item after
This returns the 'after' string. Please read the B<Expect> docs for more
enlightenment.
=item error
This returns a cleaned up, more humanly readable version of the errors
from B<Expect>. It'll be undef if there was no error.
=item error_expect
This returns the original B<Expect> error.
=item expect_handle
This returns the B<Expect> object, in case further tweaking is necessary.
=back
=head1 BUGS
If the command to be run does not exist (or not in the current
execution path), it's quite possible that the B<new> method will not
throw an exception. It's up to the caller to make sure that the command
will run! There's no known workaround for this.
=head1 LICENSE
This software is released under the GNU General Public License. You
may find a copy at
http://www.fsf.org/copyleft/gpl.html
=head1 AUTHOR
Diab Jerius (djerius@cpan.org)
=cut
|