Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

How to launch a wholly independent process on either Unix or Win32 all in same script.

This is part of an XML-RPC Client/Server pair available at the URL below:

XML-RPC Client/Server Pair

#!/usr/pkg/bin/perl # gus_xml-rpc_reboot.pl # Copyright 2005-09-08 by Gan Uesli Starling # XML-RPC server reboot script written in Perl. # 42 liines of code & 30 comment lines. # For use with this XML-RPC Client/Server pair: # 1. gus_xml-rpc_server.pl # 2. gus_xml-rpc_client_tk.pl # HOW IT WORKS: # On command, the running server reboots itsels as follows: # 3. Launches this script in manner similar to below. # 4. Dies when this script kills it. # 5. Is reborn when new version launched by this script. # Args sent by the to-be-restarted, still-running server. my ( $script_path, $script_list, $local_port, $prefork_pid, $plain_pw, $crypt_key ) = @ARGV; # Lay running server to rest. kill 15, $prefork_pid; sleep 5; # Gently persuade at first. kill 2, $prefork_pid; sleep 5; # If ignored, insist harder. kill 9, $prefork_pid; sleep 5; # If still ignored, use hammer. # Prepare launch-string for use with 'Process::Create' on Win32. # Note: Since this is a string, not a list, any scalars which # are empty may cause problems. Make sure empty any empty # scalars are represented by empty double-quotes or else are # left out entirely, as below. my $win32_cmd = "wperl $script_path/gus_xml-rpc_server.pl " . "--script_list $script_list " . "--local_port $local_port " . "--password $plain_pw " . "--gui 0 "; # On the off chance that key is empty. $win32_cmd .= "--crypt_key $crypt_key " if $crypt_key; # Prepare launch-array for use with 'fork' on Unix. my @unix_cmd = ( "perl", "$script_path/gus_xml-rpc_server.pl", "--script_list", "$script_list", "--local_port", "$local_port", "--crypt_key", "$crypt_key", "--password", "$plain_pw", "--gui", "0" ); # Launch new process the UNIX way. sub unix_fork_process { if ( defined( my $kid = fork ) ) { unless ($kid) { exec(@_) or die "Oops! Cannot exec."; } } } # Launch new process the Win32 way. sub win32_create_process { my $win32_cmd = shift; require Win32::Process; require Win32; no strict; my $obj; sub ErrorReport{ print Win32::FormatMessage( Win32::GetLastError() ); } Win32::Process::Create( $obj, "C:\\Perl\\bin\\wperl.exe", "$win32_cmd", 0, NORMAL_PRIORITY_CLASS, "." ) || die ErrorReport(); } # Launch new process any way whichever... if ($^O =~ /Win32/i) { win32_create_process($win32_cmd) } else { unix_fork_process(@unix_cmd) }

In reply to Multi-OS Perl fork by aplonis

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (5)
As of 2024-04-23 06:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found