| 2 |
## $Id$ |
## $Id$ |
| 3 |
## --------------------------------------------------------------------------- |
## --------------------------------------------------------------------------- |
| 4 |
## $Log$ |
## $Log$ |
| 5 |
|
## Revision 1.12 2003/06/23 19:43:19 joko |
| 6 |
|
## minor cleanup |
| 7 |
|
## now using IPC::Session::NoShell |
| 8 |
|
## |
| 9 |
|
## Revision 1.11 2003/06/23 17:41:50 jonen |
| 10 |
|
## + NEW - used IPC::Session instead of IPC::Run to get better results at linux |
| 11 |
|
## |
| 12 |
|
## Revision 1.10 2003/06/23 15:59:16 joko |
| 13 |
|
## major/minor fixes? |
| 14 |
|
## |
| 15 |
|
## Revision 1.9 2003/05/13 05:36:24 joko |
| 16 |
|
## heavy modifications to run_cmd |
| 17 |
|
## + sub get_executable |
| 18 |
|
## + sub get_executable_wrapper |
| 19 |
|
## |
| 20 |
## Revision 1.8 2003/04/04 17:31:59 joko |
## Revision 1.8 2003/04/04 17:31:59 joko |
| 21 |
## + sub make_guid |
## + sub make_guid |
| 22 |
## |
## |
| 64 |
use Data::Dumper; |
use Data::Dumper; |
| 65 |
use POSIX qw( strftime ); |
use POSIX qw( strftime ); |
| 66 |
#use IPC::Run qw( run timeout ); |
#use IPC::Run qw( run timeout ); |
| 67 |
use IPC::Run qw( start pump finish timeout ) ; |
use IPC::Run qw( start pump finish timeout run ) ; |
| 68 |
use Carp; |
use Carp; |
| 69 |
|
|
| 70 |
|
# NEW - 2003-06-23 |
| 71 |
|
use IPC::Session::NoShell; |
| 72 |
|
|
| 73 |
|
|
| 74 |
# $now_string = strftime "%a %b %e %H:%M:%S %Y", localtime; |
# $now_string = strftime "%a %b %e %H:%M:%S %Y", localtime; |
| 85 |
return strftime("%Y-%m-%d", localtime); |
return strftime("%Y-%m-%d", localtime); |
| 86 |
} |
} |
| 87 |
|
|
| 88 |
|
sub RUNNING_IN_HELL () { $^O eq 'MSWin32' } |
| 89 |
|
|
| 90 |
|
|
| 91 |
|
sub get_executable { |
| 92 |
|
my $cmd = shift; |
| 93 |
|
# FIXME: detect type of program and run with proper application/interpreter |
| 94 |
|
# using IPC::Run we have to dispatch this on our own! *no* os-interaction or interpolation here!? |
| 95 |
|
# => better use absolute path-names only?! |
| 96 |
|
my $application = ''; |
| 97 |
|
if ($cmd =~ m/\w+\.pl\s*.*/) { |
| 98 |
|
# NEW 2003-06-23 - needed if used with IPC::Session (at Linux) |
| 99 |
|
# whats about Win32? |
| 100 |
|
$application = 'perl '; |
| 101 |
|
} else { |
| 102 |
|
$application = './'; |
| 103 |
|
} |
| 104 |
|
return $application; |
| 105 |
|
} |
| 106 |
|
|
| 107 |
|
sub get_executable_wrapper { |
| 108 |
|
my $cmd = shift; |
| 109 |
|
my $application = ''; |
| 110 |
|
# Required to adapt to IPC::Run on win32. |
| 111 |
|
#if (RUNNING_IN_HELL()) { |
| 112 |
|
#$application = 'cmd.exe /C'; |
| 113 |
|
#} |
| 114 |
|
return $application; |
| 115 |
|
} |
| 116 |
|
|
| 117 |
|
|
| 118 |
sub run_cmd { |
sub run_cmd { |
| 119 |
my $cmd = shift; |
my $cmd = shift; |
| 120 |
my $caption = shift; |
my $caption = shift; |
| 121 |
my $options = shift; |
my $options = shift; |
| 122 |
#$cmd = 'perl ' . $cmd; |
|
| 123 |
|
#print Dumper($options); |
| 124 |
|
|
| 125 |
# report - header |
# report - header |
| 126 |
my $sep = "-" x 60; |
my $sep = "-" x 60; |
| 127 |
print $sep, "\n"; |
print STDERR $sep, "\n"; |
| 128 |
#print " ", $cmd, "\n"; |
print STDERR " ", $cmd; |
| 129 |
#print " ", " $caption", "\n" if $caption; |
print STDERR " - ", $caption if $caption; |
| 130 |
print " ", $cmd; |
print STDERR "\n", $sep, "\n"; |
|
print " - ", $caption if $caption; |
|
|
print "\n"; |
|
|
print $sep, "\n"; |
|
| 131 |
|
|
| 132 |
# strip name of executable from full command string |
# strip name of executable from full command string |
| 133 |
$cmd =~ m/(.+?)\s/; |
$cmd =~ m/(.+?)\s/; |
| 134 |
my $executable = $1; |
my $executable = $1; |
| 135 |
|
|
| 136 |
|
=pod |
| 137 |
# for unix: check if executable is in local directory, if so - prefix with './' |
# for unix: check if executable is in local directory, if so - prefix with './' |
| 138 |
if (!RUNNING_IN_HELL()) { |
if (!RUNNING_IN_HELL()) { |
| 139 |
#if ($cmd !~ m/\//) { |
#if ($cmd !~ m/\//) { |
| 140 |
if (-e $executable) { |
if (-e $executable) { |
|
$cmd = "./$cmd"; |
|
| 141 |
} |
} |
| 142 |
} |
} |
| 143 |
|
=cut |
| 144 |
|
|
| 145 |
|
# new of 2003-05-07: basedir option to be prepended to command string |
| 146 |
|
my $basedir = $options->{BASEDIR}; |
| 147 |
|
my $use_path = $options->{USE_PATH}; |
| 148 |
|
|
| 149 |
|
# for all systems: check existance of files - use basedir if given, try current directory otherwise |
| 150 |
|
if ($basedir) { |
| 151 |
|
-e "$basedir/$executable" or die("$basedir/$executable does not exist."); |
| 152 |
|
$basedir .= '/'; |
| 153 |
|
} elsif ($use_path) { |
| 154 |
|
$basedir = ""; |
| 155 |
|
} else { |
| 156 |
|
-e $executable or die("$executable does not exist."); |
| 157 |
|
#$basedir = "."; |
| 158 |
|
#$basedir .= './'; |
| 159 |
|
$basedir = ""; |
| 160 |
|
} |
| 161 |
|
$cmd = "$basedir$cmd"; |
| 162 |
|
|
| 163 |
# V1 - backticks or qq{} |
# V1 - backticks or qq{} |
| 164 |
#`$cmd`; |
#`$cmd`; |
| 165 |
#qq{$cmd}; |
#qq{$cmd}; |
| 167 |
# V2 - via 'system' |
# V2 - via 'system' |
| 168 |
#system($cmd); |
#system($cmd); |
| 169 |
|
|
| 170 |
# V3 - using IPC::Run (optional) |
if (not $use_path) { |
| 171 |
|
my $application = get_executable($cmd); |
| 172 |
|
$cmd = "$application$cmd" if $application; |
| 173 |
|
} |
| 174 |
|
|
| 175 |
|
# V3 - using IPC (optional) |
| 176 |
if ($options->{async}) { |
if ($options->{async}) { |
| 177 |
# FIXME: detect type of program and run with proper application/interpreter |
|
| 178 |
# using IPC::Run we have to dispatch this on our own! *no* os-interaction or interpolation here! |
#$cmd = "$application $cmd" if $application; |
| 179 |
# => better use absolute path-names only?! |
#my $application = get_executable_wrapper($cmd); |
|
my $application = ''; |
|
|
if (RUNNING_IN_HELL()) { |
|
|
$application = 'cmd.exe /C'; |
|
|
} |
|
|
|
|
|
if ($cmd =~ m/\w+\.pl\s*.*/) { |
|
|
$application = 'perl'; |
|
|
} |
|
|
|
|
|
$cmd = "$application $cmd" if $application; |
|
| 180 |
|
|
| 181 |
print "IPC::Run: $cmd", "\n"; |
print STDERR "run_cmd: IPC::Session::NoShell: $cmd", "\n"; |
| 182 |
#run \@cmd, \$in, \$out, \$err, timeout( 10 ) or die "cat: $?"; |
#run \@cmd, \$in, \$out, \$err, timeout( 10 ) or die "cat: $?"; |
| 183 |
|
|
| 184 |
my @cmd = split(' ', $cmd); |
my @cmd = split(' ', $cmd); |
| 185 |
|
|
|
my $in; my $out; my $err; |
|
|
start \@cmd, timeout(0) or die("IPC::Run could not start '$cmd'."); |
|
| 186 |
|
|
| 187 |
|
# V3.1 - using IPC::Run |
| 188 |
|
# |
| 189 |
|
# tests: |
| 190 |
|
#my $in; my $out; my $err; |
| 191 |
|
#print "IPC::Run: $cmd", "\n"; |
| 192 |
|
#start \@cmd, timeout(0) or croak("run_cmd: IPC::Run could not start '$cmd'."); |
| 193 |
|
# |
| 194 |
|
# success on Win32, but seems broken at 'timeout' on linux: |
| 195 |
|
#run(\@cmd, timeout(2)) or croak("run_cmd: IPC::Run could not start '$cmd'."); |
| 196 |
|
|
| 197 |
|
# other tests ;) |
| 198 |
#$IPC::Run::Timer::timeout = 2000; |
#$IPC::Run::Timer::timeout = 2000; |
| 199 |
#start $cmd or die("IPC::Run could not start '$cmd'."); |
#start $cmd or die("IPC::Run could not start '$cmd'."); |
| 200 |
|
|
| 201 |
|
|
| 202 |
|
# V3.2 - using IPC::Session |
| 203 |
|
# success on Linux AND Win32 ?? |
| 204 |
|
# |
| 205 |
|
# set timeout: |
| 206 |
|
# (don't really know why we needs 2 secconds |
| 207 |
|
# to wait for init of process !?!) |
| 208 |
|
my $session_timeout = 2; |
| 209 |
|
# set session name (default: cmd as string): |
| 210 |
|
my $session_command = $cmd; |
| 211 |
|
# create session: |
| 212 |
|
my $session = new IPC::Session::NoShell($session_command, $session_timeout); |
| 213 |
|
|
| 214 |
|
# send 'cmd' to session - not required since complete command is sent via constructor above |
| 215 |
|
#$session->send(\@cmd); |
| 216 |
|
|
| 217 |
|
# optional switch case: |
| 218 |
|
#for ($session->stdout()) { |
| 219 |
|
#} |
| 220 |
|
# optional get error: |
| 221 |
|
#my $err = session->stderr(); |
| 222 |
|
|
| 223 |
|
|
| 224 |
} else { |
} else { |
| 225 |
|
print STDERR "run_cmd: system('$cmd').", "\n"; |
| 226 |
system($cmd); |
system($cmd); |
| 227 |
} |
} |
| 228 |
|
|
| 229 |
print "ready.", "\n"; |
print STDERR "run_cmd: ready.", "\n"; |
| 230 |
|
|
| 231 |
} |
} |
| 232 |
|
|
| 233 |
sub run_cmds { |
sub run_cmds { |
| 234 |
|
my $options = {}; |
| 235 |
|
if (ref $_[$#_] eq 'HASH') { |
| 236 |
|
#print "YAI", "\n"; |
| 237 |
|
$options = pop @_; |
| 238 |
|
} |
| 239 |
foreach (@_) { |
foreach (@_) { |
| 240 |
run_cmd($_); |
run_cmd($_, '', $options); |
| 241 |
} |
} |
| 242 |
} |
} |
| 243 |
|
|
| 252 |
return ($bool ? 'ok' : 'failed'); |
return ($bool ? 'ok' : 'failed'); |
| 253 |
} |
} |
| 254 |
|
|
|
sub RUNNING_IN_HELL () { $^O eq 'MSWin32' } |
|
|
|
|
| 255 |
# create global unique identifers using Data::UUID |
# create global unique identifers using Data::UUID |
| 256 |
# if updating this code, please also modify Tangram::Storage::make_guid |
# if updating this code, please also modify Tangram::Storage::make_guid |
| 257 |
sub make_guid |
sub make_guid |
| 280 |
} |
} |
| 281 |
|
|
| 282 |
1; |
1; |
| 283 |
|
__END__ |