home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / Job.pm < prev    next >
Text File  |  2004-01-12  |  10KB  |  371 lines

  1. package Win32::Job;
  2.  
  3. use strict;
  4. use base qw(DynaLoader);
  5. use vars qw($VERSION);
  6. use Win32;
  7.  
  8. $VERSION = '0.01';
  9.  
  10. use constant WIN32s => 0;
  11. use constant WIN9X  => 1;
  12. use constant WINNT  => 2;
  13.  
  14. my @ver = Win32::GetOSVersion;
  15. die "Win32::Job is not supported on $ver[0]" unless (
  16.     $ver[4] == WINNT and (
  17.     $ver[1] > 5 or
  18.     ($ver[1] == 5 and $ver[2] > 0) or
  19.     ($ver[1] == 5 and $ver[2] == 0 and $ver[3] >= 0)
  20.     )
  21. );
  22.  
  23. Win32::Job->bootstrap($VERSION);
  24.  
  25. 1;
  26.  
  27. __END__
  28.  
  29. =head1 NAME
  30.  
  31. Win32::Job - Run sub-processes in a "job" environment
  32.  
  33. =head1 SYNOPSIS
  34.  
  35.    use Win32::Job;
  36.    
  37.    my $job = Win32::Job->new;
  38.  
  39.    # Run 'perl Makefile.PL' for 10 seconds
  40.    $job->spawn($Config{perlpath}, "perl Makefile.PL");
  41.    $job->run(10);
  42.  
  43. =head1 PLATFORMS
  44.  
  45. Win32::Job requires Windows 2000 or later. Windows 95, 98, NT, and Me are not
  46. supported.
  47.  
  48. =head1 DESCRIPTION
  49.  
  50. Windows 2000 introduced the concept of a "job": a collection of processes
  51. which can be controlled as a single unit. For example, you can reliably kill a
  52. process and all of its children by launching the process in a job, then
  53. telling Windows to kill all processes in the job.  Win32::Job makes this
  54. feature available to Perl.
  55.  
  56. For example, imagine you want to allow 2 minutes for a process to complete.
  57. If you have control over the child process, you can probably just run it in
  58. the background, then poll every second to see if it has finished.
  59.  
  60. That's fine as long as the child process doesn't spawn any child processes.
  61. What if it does? If you wrote the child process yourself and made an effort to
  62. clean up your child processes before terminating, you don't have to worry.
  63. If not, you will leave hanging processes (called "zombie" processes in Unix).
  64.  
  65. With Win32::Job, just create a new Job, then use the job to spawn the child
  66. process. All I<its> children will also be created in the new Job. When you
  67. time out, just call the job's kill() method and the entire process tree will
  68. be terminated.
  69.  
  70. =head1 Using Win32::Job
  71.  
  72. The following methods are available:
  73.  
  74. =over 4
  75.  
  76. =item 1
  77.  
  78. new()
  79.  
  80.    new();
  81.  
  82. Creates a new Job object using the Win32 API call CreateJobObject(). The job
  83. is created with a default security context, and is unnamed.
  84.  
  85. Note: this method returns C<undef> if CreateJobObject() fails. Look at C<$^E>
  86. for more detailed error information.
  87.  
  88. =item 2
  89.  
  90. spawn()
  91.  
  92.    spawn($exe, $args, \%opts);
  93.  
  94. Creates a new process and associates it with the Job. The process is initially
  95. suspended, and can be resumed with one of the other methods. Uses the Win32
  96. API call CreateProcess(). Returns the PID of the newly created process.
  97.  
  98. Note: this method returns C<undef> if CreateProcess() fails. See C<$^E> for
  99. more detailed error information. One reason this will fail is if the calling
  100. process is itself part of a job, and the job's security context does not allow
  101. child processes to be created in a different job context than the parent.
  102.  
  103. The arguments are described here:
  104.  
  105. =over 4
  106.  
  107. =item 1
  108.  
  109. $exe
  110.  
  111. The executable program to run. This may be C<undef>, in which case the first
  112. argument in $args is the program to run.
  113.  
  114. If this has path information in it, it is used "as is" and passed to
  115. CreateProcess(), which interprets it as either an absolute path, or a
  116. path relative to the current drive and directory. If you did not specify an
  117. extension, ".exe" is assumed.
  118.  
  119. If there are no path separators (either backslashes or forward slashes),
  120. then Win32::Job will search the current directory and your PATH, looking
  121. for the file. In addition, if you did not specify an extension, then
  122. Win32::Job checks ".exe", ".com", and ".bat" in order. If it finds a ".bat"
  123. file, Win32::Job will actually call F<cmd.exe> and prepend "cmd.exe" to the
  124. $args.
  125.  
  126. For example, assuming a fairly normal PATH:
  127.  
  128.    spawn(q{c:\winnt\system\cmd.exe}, q{cmd /C "echo %PATH%"})
  129.    exefile: c:\winnt\system\cmd.exe
  130.    cmdline: cmd /C "echo %PATH%"
  131.  
  132.    spawn("cmd.exe", q{cmd /C "echo %PATH%"})
  133.    exefile: c:\winnt\system\cmd.exe
  134.    cmdline: cmd /C "echo %PATH%"
  135.  
  136. =item 2
  137.  
  138. $args
  139.  
  140. The commandline to pass to the executable program. The first word will be
  141. C<argv[0]> to an EXE file, so you should repeat the command name in $args.
  142.  
  143. For example:
  144.  
  145.    $job->spawn($Config{perlpath}, "perl foo.pl");
  146.  
  147. In this case, the "perl" is ignored, since perl.exe doesn't use it.
  148.  
  149. =item 3
  150.  
  151. %opts
  152.  
  153. A hash reference for advanced options. This parameter is optional.
  154. the following keys are recognized:
  155.  
  156. =over 4
  157.  
  158. =item cwd
  159.  
  160. A string specifying the current directory of the new process.
  161.  
  162. By default, the process shares the parent's current directory, C<.>.
  163.  
  164. =item new_console
  165.  
  166. A boolean; if true, the process is started in a new console window.
  167.  
  168. By default, the process shares the parent's console. This has no effect on GUI
  169. programs which do not interact with the console.
  170.  
  171. =item window_attr
  172.  
  173. Either C<minimized>, which displays the new window minimized; C<maximimzed>,
  174. which shows the new window maximized; or C<hidden>, which does not display the
  175. new window.
  176.  
  177. By default, the window is displayed using its application's defaults.
  178.  
  179. =item new_group
  180.  
  181. A boolean; if true, the process is the root of a new process group. This
  182. process group includes all descendents of the child.
  183.  
  184. By default, the process is in the parent's process group (but in a new job).
  185.  
  186. =item no_window
  187.  
  188. A boolean; if true, the process is run without a console window. This flag is
  189. only valid when starting a console application, otherwise it is ignored. If you
  190. are launching a GUI application, use the C<window_attr> tag instead.
  191.  
  192. By default, the process shares its parent's console.
  193.  
  194. =item stdin
  195.  
  196. An open input filehandle, or the name of an existing file. The resulting
  197. filehandle will be used for the child's standard input handle.
  198.  
  199. By default, the child process shares the parent's standard input.
  200.  
  201. =item stdout
  202.  
  203. An open output filehandle or filename (will be opened for append). The
  204. resulting filehandle will be used for the child's standard output handle.
  205.  
  206. By default, the child process shares the parent's standard output.
  207.  
  208. =item stderr
  209.  
  210. An open output filehandle or filename (will be opened for append). The
  211. resulting filehandle will be used for the child's standard error handle.
  212.  
  213. By default, the child process shares the parent's standard error.
  214.  
  215. =back
  216.  
  217. Unrecognized keys are ignored.
  218.  
  219. =back
  220.  
  221. =item 3
  222.  
  223. run()
  224.  
  225.    run($timeout, $which);
  226.  
  227. Provides a simple way to run the programs with a time limit. The
  228. $timeout is in seconds with millisecond accuracy. This call blocks for
  229. up to $timeout seconds, or until the processes finish.
  230.  
  231. The $which parameter specifies whether to wait for I<all> processes to
  232. complete within the $timeout, or whether to wait for I<any> process to
  233. complete. You should set this to a boolean, where a true value means to
  234. wait for I<all> the processes to complete, and a false value to wait
  235. for I<any>. If you do not specify $which, it defaults to true (C<all>).
  236.  
  237. Returns a boolean indicating whether the processes exited by themselves,
  238. or whether the time expired. A true return value means the processes
  239. exited normally; a false value means one or more processes was killed
  240. will $timeout.
  241.  
  242. You can get extended information on process exit codes using the
  243. status() method.
  244.  
  245. For example, this is how to build two perl modules at the same time,
  246. with a 5 minute timeout:
  247.  
  248.    use Win32::Job;
  249.    $job = Win32::Job->new;
  250.    $job->spawn("cmd", q{cmd /C "cd Mod1 && nmake"});
  251.    $job->spawn("cmd", q{cmd /C "cd Mod2 && nmake"});
  252.    $ok = $job->run(5 * 60);
  253.    print "Mod1 and Mod2 built ok!\n" if $ok;
  254.  
  255. =item 4
  256.  
  257. watch()
  258.  
  259.    watch(\&handler, $interval, $which);
  260.  
  261.    handler($job);
  262.  
  263. Provides more fine-grained control over how to stop the programs.  You specify
  264. a callback and an interval in seconds, and Win32::Job will call the "watchdog"
  265. function at this interval, either until the processes finish or your watchdog
  266. tells Win32::Job to stop. You must return a value indicating whether to stop: a
  267. true value means to terminate the processes immediately.
  268.  
  269. The $which parameter has the same meaning as run()'s.
  270.  
  271. Returns a boolean with the same meaning as run()'s.
  272.  
  273. The handler may do anything it wants. One useful application of the watch()
  274. method is to check the filesize of the output file, and terminate the Job if
  275. the file becomes larger than a certain limit:
  276.  
  277.    use Win32::Job;
  278.    $job = Win32::Job->new;
  279.    $job->spawn("cmd", q{cmd /C "cd Mod1 && nmake"}, {
  280.        stdin  => 'NUL', # the NUL device
  281.        stdout => 'stdout.log',
  282.        stderr => 'stdout.log',
  283.    });
  284.    $ok = $job->watch(sub {
  285.        return 1 if -s "stdout.log" > 1_000_000;
  286.    }, 1);
  287.    print "Mod1 built ok!\n" if $ok;
  288.  
  289. =item 5
  290.  
  291. status()
  292.  
  293.    status()
  294.  
  295. Returns a hash containing information about the processes in the job.
  296. Only returns valid information I<after> calling either run() or watch();
  297. returns an empty hash if you have not yet called them. May be called from a
  298. watch() callback, in which case the C<exitcode> field should be ignored.
  299.  
  300. The keys of the hash are the process IDs; the values are a subhash
  301. containing the following keys:
  302.  
  303. =over 4
  304.  
  305. =item exitcode
  306.  
  307. The exit code returned by the process. If the process was killed because
  308. of a timeout, the value is 293.
  309.  
  310. =item time
  311.  
  312. The time accumulated by the process. This is yet another subhash containing
  313. the subkeys (i) C<user>, the amount of time the process spent in user
  314. space; (ii) C<kernel>, the amount of time the process spent in kernel space;
  315. and (iii) C<elapsed>, the total time the process was running.
  316.  
  317. =back
  318.  
  319. =item 6
  320.  
  321. kill()
  322.  
  323.    kill();
  324.  
  325. Kills all processes and subprocesses in the Job. Has no return value.
  326. Sets the exit code to all processes killed to 293, which you can check
  327. for in the status() return value.
  328.  
  329. =back
  330.  
  331. =head1 SEE ALSO
  332.  
  333. For more information about jobs, see Microsoft's online help at
  334.  
  335.    http://msdn.microsoft.com/
  336.  
  337. For other modules which do similar things (but not as well), see:
  338.  
  339. =over 4
  340.  
  341. =item 1
  342.  
  343. Win32::Process
  344.  
  345. Low-level access to creating processes in Win32. See L<Win32::Process>.
  346.  
  347. =item 2
  348.  
  349. Win32::Console
  350.  
  351. Low-level access to consoles in Win32. See L<Win32::Console>.
  352.  
  353. =item 3
  354.  
  355. Win32::ProcFarm
  356.  
  357. Manage pools of threads to perform CPU-intensive tasks on Windows. See
  358. L<Win32::ProcFarm>.
  359.  
  360. =back
  361.  
  362. =head1 AUTHOR
  363.  
  364. ActiveState (support@ActiveState.com)
  365.  
  366. =head1 COPYRIGHT
  367.  
  368. Copyright (c) 2002, ActiveState Corporation. All Rights Reserved.
  369.  
  370. =cut
  371.