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
|
#! /usr/bin/perl
use PerlACE::Run_Test;
package PerlACE::Process;
use strict;
use Win32::Process;
use File::Basename;
use Cwd;
# Make sure the File::Which module is installed on the machine
# before trying to use it. If the module is installed on this
# machine, then it will be included because of the eval ()
# statement below.
my $has_which = eval ("use File::Which; 1;") ? 1 : 0;
###############################################################################
# This is what GetExitCode will return if the process is still running.
my $STILL_ACTIVE = 259;
###############################################################################
### Constructor and Destructor
#
# Hack in purify support thru 2 environment variables:
# ACE_RUN_PURIFY_CMD: complete path to purify executable
# ACE_RUNTEST_DELAY: wait delay factor, default to 10 if
# ACE_RUN_PURIFY_CMD is defined, or 1 if
# ACE_RUN_PURIFY_CMD is not defined.
# ** Notice that when ACE_RUN_PURIFY_CMD is define, PerlACE::Process
# reports the return status of *purify*, not the process being purified.
#
# Also hack in the ability to run the test on a WinCE device using the
# ACE_WINCE_TEST_CONTROLLER environment variable. If set, it specifies a
# controlling program to use for setting up and executing the test.
# Further setup can be specialized depending on the value of the variable.
sub new
{
my $proto = shift;
my $class = ref ($proto) || $proto;
my $self = {};
$self->{EXECUTABLE} = shift;
$self->{ARGUMENTS} = shift;
$self->{TARGET} = undef;
$self->{RUNNING} = 0;
$self->{IGNOREEXESUBDIR} = 0;
$self->{IGNOREHOSTROOT} = 0;
$self->{PROCESS} = undef;
$self->{PURIFY_CMD} = $ENV{'ACE_RUN_PURIFY_CMD'};
$self->{PURIFY_OPT} = $ENV{'ACE_RUN_PURIFY_OPT'};
if (!defined $PerlACE::Process::WAIT_DELAY_FACTOR) {
if (defined $self->{PURIFY_CMD}) {
$PerlACE::Process::WAIT_DELAY_FACTOR = 10;
}
else {
$PerlACE::Process::WAIT_DELAY_FACTOR = 1;
}
}
$self->{WINCE_CTL} = $ENV{'ACE_WINCE_TEST_CONTROLLER'};
bless ($self, $class);
return $self;
}
sub DESTROY
{
my $self = shift;
if ($self->{RUNNING} == 1) {
print STDERR "ERROR: <", $self->{EXECUTABLE},
"> still running upon object destruction\n";
$self->Kill ();
}
}
###############################################################################
### Some Accessors
sub Normalize_Executable_Name($)
{
my $self = shift;
my $executable = shift;
my $basename = basename ($executable);
my $dirname = dirname ($executable). '/';
my $subdir;
if (defined $self->{TARGET}) {
$subdir = $self->{TARGET}->ExeSubDir();
}
else {
$subdir = $PerlACE::Process::ExeSubDir;
}
$executable = $dirname.$subdir.$basename.".EXE";
## Installed executables do not conform to the ExeSubDir
if (! -x $executable && -x $dirname.$basename.'.EXE') {
$executable = $dirname.$basename.'.EXE';
}
$executable =~ s/\//\\/g; # / <- # color coding issue in devenv
return $executable;
}
sub Executable
{
my $self = shift;
if (@_ != 0) {
$self->{EXECUTABLE} = shift;
}
my $executable = $self->{EXECUTABLE};
# If the target's config has a different ACE_ROOT, rebase the executable
# from $ACE_ROOT to the target's root.
if (defined $self->{TARGET} &&
$self->{TARGET}->ACE_ROOT() ne $ENV{'ACE_ROOT'}) {
$executable = File::Spec->rel2abs($executable);
$executable = File::Spec->abs2rel($executable, $ENV{'ACE_ROOT'});
$executable = $self->{TARGET}->ACE_ROOT() . "/$executable";
}
# After VxWorks adopts the TARGET scheme, can do away with this block.
if ($self->{IGNOREHOSTROOT} == 0) {
if (PerlACE::is_vxworks_test()) {
$executable = PerlACE::VX_HostFile ($executable);
}
}
if ($self->{IGNOREEXESUBDIR} == 0) {
$executable = $self->Normalize_Executable_Name ($executable);
}
else {
if ($executable !~ m/\.(BAT|EXE|COM)$/i) {
$executable = $executable.".EXE";
}
$executable =~ s/\//\\/g; # / <- # color coding issue in devenv
# If there is no directory in the executable name, then we are going
# to search the PATH for the executable.
if ($has_which && $executable !~ m/\//) {
my $which = File::Which::which ($executable);
if ($which ne "") {
$executable = $which;
}
}
}
return $executable;
}
sub Arguments
{
my $self = shift;
if (@_ != 0) {
$self->{ARGUMENTS} = shift;
}
return $self->{ARGUMENTS};
}
sub CommandLine ()
{
my $self = shift;
my $commandline = $self->Executable ();
$commandline = '"' . $commandline . '"' if $commandline =~ /\s/;
if (defined $self->{ARGUMENTS}) {
$commandline .= ' '.$self->{ARGUMENTS};
}
return $commandline;
}
sub IgnoreExeSubDir
{
my $self = shift;
# If we have -Config ARCH, do not set IGNOREEXESUBDIR, since with ARCH
# all executables (even those in $ACE_ROOT/bin, etc.) are located in the
# architecture-specific subdirectory.
if (@_ != 0 && !grep(($_ eq 'ARCH'), @PerlACE::ConfigList::Configs)) {
$self->{IGNOREEXESUBDIR} = shift;
}
elsif (@_ != 0 && $self->{EXECUTABLE} =~ /perl$/) {
print ("==== automatically ignoring...\n");
$self->{IGNOREEXESUBDIR} = shift;
}
return $self->{IGNOREEXESUBDIR};
}
sub IgnoreHostRoot
{
my $self = shift;
if (@_ != 0) {
$self->{IGNOREHOSTROOT} = shift;
}
return $self->{IGNOREHOSTROOT};
}
###############################################################################
### Spawning processes
# Spawn the process and continue.
sub Spawn ()
{
my $self = shift;
if ($self->{RUNNING} == 1) {
print STDERR "ERROR: Cannot Spawn: <", $self->Executable (),
"> already running\n";
return -1;
}
if (!defined $self->{EXECUTABLE}) {
print STDERR "ERROR: Cannot Spawn: No executable specified\n";
return -1;
}
if ($self->{IGNOREEXESUBDIR} == 0) {
if (!-f $self->Executable ()) {
print STDERR "ERROR: Cannot Spawn: <", $self->Executable (),
"> not found\n";
return -1;
}
if (!-x $self->Executable ()) {
print STDERR "ERROR: Cannot Spawn: <", $self->Executable (),
"> not executable\n";
return -1;
}
}
my $state = 0;
my $cmdline = "";
my $executable = "";
my $chdir_needed = 0;
my $curdir_bak;
if (defined $self->{PURIFY_CMD}) {
my $orig_cmdline = $self->CommandLine ();
$executable = $self->{PURIFY_CMD};
my $basename = basename ($self->{EXECUTABLE});
my $PurifyOptions = $self->{PURIFY_OPT};
if (!defined $PurifyOptions) {
$PurifyOptions =
"/run ".
# "/save-data=$basename.pfy ".
"/save-text-data=$basename.pfytxt ".
"/AllocCallStackLength=20 ".
"/ErrorCallStackLength=20 ".
"/HandlesInUseAtExit ".
"/InUseAtExit ".
"/LeaksAtExit ";
}
$cmdline =
"purify " .
"$PurifyOptions ".
"$orig_cmdline" ;
}
elsif (defined $self->{WINCE_CTL}) {
$executable = $self->Executable ();
$cmdline = $self->CommandLine ();
# Generate a script to copy the test down to the device, run it,
# copy the log file(s) back to the log directory, then delete the
# program and log files on the remote device.
unless (open (SCRIPT, ">start_test.cmd")) {
print STDERR "ERROR: Cannot Spawn: <", $self->Executable (),
"> failed to create start_test.cmd\n";
return -1;
}
my $testname = basename($executable,'.EXE');
my $here = getcwd();
$here =~ s/\//\\/g;
$executable =~ s/^\.//; # Chop leading .
$executable = $here . $executable; # Fully qualified name
# Take off the test name from the start of the command line.
# The command name is preprended in the script below.
my @tokens = split(' ', $cmdline);
@tokens = splice(@tokens,1);
$cmdline = join(' ', @tokens);
print SCRIPT "copy $executable 1:\\Windows\n";
print SCRIPT "start /wait $testname $cmdline\n";
print SCRIPT "copy 1:\\log\\$testname*.txt $here\\log\n";
print SCRIPT "del 1:\\Windows\\$testname.exe\n";
print SCRIPT "del 1:\\log\\$testname*.txt\n";
close SCRIPT;
$executable = $ENV{'ComSpec'};
my $pocket_device_opts = $ENV{'ACE_PCE_DEVICE'};
$cmdline = "cmd /C start /B /WAIT $self->{WINCE_CTL} $pocket_device_opts -m NAME=start_test.cmd;WAIT=401000; -e"
}
elsif (defined $ENV{'ACE_TEST_WINDOW'}) {
$state = ($ENV{'ACE_TEST_WINDOW'} =~ /\/k/i ? CREATE_NEW_CONSOLE : DETACHED_PROCESS);
$executable = $ENV{'ComSpec'};
$cmdline = $ENV{'ACE_TEST_WINDOW'} . ' ' . $self->CommandLine();
}
else {
$executable = $self->Executable ();
$cmdline = $self->CommandLine ();
if ((defined $self->{TARGET}) && ($ENV{'ACE_ROOT'} ne $self->{TARGET}->ACE_ROOT ())) {
$chdir_needed = 1;
$curdir_bak = cwd ();
chdir (dirname ($executable));
}
}
if (defined $ENV{'ACE_TEST_VERBOSE'}) {
print "$executable $cmdline\n";
}
my %backup_ENV = %ENV;
# update environment for target
if (defined $self->{TARGET}) {
if (!defined $self->{TARGET}->{REMOTE_SHELL}) {
my $x_env_ref = $self->{TARGET}->{EXTRA_ENV};
while ( my ($env_key, $env_value) = each(%$x_env_ref) ) {
if (defined $ENV{'ACE_TEST_VERBOSE'}) {
print "INFO: adding target environment $env_key=$env_value\n";
}
$ENV{$env_key} = $env_value;
}
}
if ($self->{TARGET}->{LIBPATH}) {
if (defined $ENV{'ACE_TEST_VERBOSE'}) {
print "INFO: adding target libpath ".$self->{TARGET}->{LIBPATH}."\n";
}
PerlACE::add_lib_path ($self->{TARGET}->{LIBPATH});
}
}
my $status = Win32::Process::Create ($self->{PROCESS},
$executable,
$cmdline,
($state == 0 ? 1 : 0),
$state,
'.');
%ENV = %backup_ENV;
if ($chdir_needed) {
chdir ($curdir_bak);
}
if ($status == 0) {
print STDERR "ERROR: Spawn failed for <", $self->CommandLine (), ">\n";
return -1;
}
$self->{RUNNING} = 1;
return 0;
}
# Wait for the process to exit or kill after a time period
sub WaitKill ($)
{
my $self = shift;
my $timeout = shift;
my $status = $self->TimedWait ($timeout);
if ($status == -1) {
print STDERR "ERROR: $self->{EXECUTABLE} timedout\n";
$self->Kill ();
# Don't need to Wait since we are on Win32
}
$self->{RUNNING} = 0;
return $status;
}
# Do a Spawn and immediately WaitKill
sub SpawnWaitKill ($)
{
my $self = shift;
my $timeout = shift;
if ($self->Spawn () == -1) {
return -1;
}
return $self->WaitKill ($timeout);
}
# Kill the process
sub Kill ($)
{
my $self = shift;
my $notused = shift; #Used in Process_Unix.pm
if ($self->{RUNNING} && !defined $ENV{'ACE_TEST_WINDOW'}) {
Win32::Process::Kill ($self->{PROCESS}, -1);
}
$self->{RUNNING} = 0;
}
# Terminate the process and wait for it to finish
sub TerminateWaitKill ($)
{
my $self = shift;
my $timeout = shift;
if ($self->{RUNNING}) {
print STDERR "INFO: $self->{EXECUTABLE} being killed.\n";
Win32::Process::Kill ($self->{PROCESS}, 0);
}
return $self->WaitKill ($timeout);
}
# Wait until a process exits.
# return -1 if the process is still alive.
sub Wait ($)
{
my $self = shift;
my $timeout = shift;
if (!defined $timeout || $timeout < 0) {
$timeout = INFINITE;
} else {
$timeout = $timeout * 1000 * $PerlACE::Process::WAIT_DELAY_FACTOR;
}
my $result = 0;
if ($self->{RUNNING}) {
$result = Win32::Process::Wait ($self->{PROCESS}, $timeout);
if ($result == 0) {
return -1;
}
}
Win32::Process::GetExitCode ($self->{PROCESS}, $result);
$self->{RUNNING} = 0;
return $result;
}
# Wait for a process to exit with a timeout
sub TimedWait ($)
{
my($self) = shift;
my($timeout) = shift;
return $self->Wait($timeout);
}
###
sub kill_all
{
my $procmask = shift;
my $target = shift;
my $pid = -1;
for my $line (`tasklist /nh /fo csv`) {
# find matching process line
if ($line =~ /$procmask/) {
# find process PID
if ($line =~ /^\"[^\"]+\",\"(\d+)\",/) {
$pid = $1;
Win32::Process::KillProcess ($pid, 0); # kill process
if (defined $ENV{'ACE_TEST_VERBOSE'}) {
print STDERR "INFO: Killed process at [$line]\n"
}
}
}
}
}
1;
|