2 |
## $Id$ |
## $Id$ |
3 |
## --------------------------------------------------------------------------- |
## --------------------------------------------------------------------------- |
4 |
## $Log$ |
## $Log$ |
5 |
|
## Revision 1.6 2003/03/28 06:58:06 joko |
6 |
|
## new: 'run_cmd' now asynchronous! (via IPC::Run...) |
7 |
|
## |
8 |
## Revision 1.5 2003/02/22 17:26:13 joko |
## Revision 1.5 2003/02/22 17:26:13 joko |
9 |
## + enhanced unix compatibility fix |
## + enhanced unix compatibility fix |
10 |
## |
## |
42 |
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - main |
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - main |
43 |
|
|
44 |
use Data::Dumper; |
use Data::Dumper; |
45 |
use POSIX qw(strftime); |
use POSIX qw( strftime ); |
46 |
|
#use IPC::Run qw( run timeout ); |
47 |
|
use IPC::Run qw( start pump finish timeout ) ; |
48 |
|
|
49 |
# $now_string = strftime "%a %b %e %H:%M:%S %Y", localtime; |
# $now_string = strftime "%a %b %e %H:%M:%S %Y", localtime; |
50 |
# see "perldoc -f localtime" |
# see "perldoc -f localtime" |
64 |
sub run_cmd { |
sub run_cmd { |
65 |
my $cmd = shift; |
my $cmd = shift; |
66 |
my $caption = shift; |
my $caption = shift; |
67 |
|
my $options = shift; |
68 |
#$cmd = 'perl ' . $cmd; |
#$cmd = 'perl ' . $cmd; |
69 |
|
|
70 |
|
# report - header |
71 |
my $sep = "-" x 60; |
my $sep = "-" x 60; |
72 |
print $sep, "\n"; |
print $sep, "\n"; |
73 |
print " ", $cmd, "\n"; |
#print " ", $cmd, "\n"; |
74 |
print " ", $caption, "\n" if $caption; |
#print " ", " $caption", "\n" if $caption; |
75 |
|
print " ", $cmd; |
76 |
|
print " - ", $caption if $caption; |
77 |
|
print "\n"; |
78 |
print $sep, "\n"; |
print $sep, "\n"; |
79 |
|
|
80 |
# strip name of executable from full command string |
# strip name of executable from full command string |
89 |
} |
} |
90 |
} |
} |
91 |
|
|
92 |
system($cmd); |
# V1 - backticks or qq{} |
93 |
#`$cmd`; |
#`$cmd`; |
94 |
|
#qq{$cmd}; |
95 |
|
|
96 |
|
# V2 - via 'system' |
97 |
|
#system($cmd); |
98 |
|
|
99 |
|
# V3 - using IPC::Run (optional) |
100 |
|
if ($options->{async}) { |
101 |
|
# FIXME: detect type of program and run with proper application/interpreter |
102 |
|
# using IPC::Run we have to dispatch this on our own! *no* os-interaction or interpolation here! |
103 |
|
# => better use absolute path-names only?! |
104 |
|
$cmd = "perl $cmd"; |
105 |
|
print "IPC::Run: $cmd", "\n"; |
106 |
|
#run \@cmd, \$in, \$out, \$err, timeout( 10 ) or die "cat: $?"; |
107 |
|
|
108 |
|
my @cmd = split(' ', $cmd); |
109 |
|
|
110 |
|
my $in; my $out; my $err; |
111 |
|
start \@cmd, timeout(0) or die("IPC::Run could not start '$cmd'."); |
112 |
|
|
113 |
|
#$IPC::Run::Timer::timeout = 2000; |
114 |
|
#start $cmd or die("IPC::Run could not start '$cmd'."); |
115 |
|
|
116 |
|
} else { |
117 |
|
system($cmd); |
118 |
|
} |
119 |
|
|
120 |
print "ready.", "\n"; |
print "ready.", "\n"; |
121 |
|
|
122 |
} |
} |
123 |
|
|
124 |
sub run_cmds { |
sub run_cmds { |