home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _4ebda6e83a457bf49f879ca1668d527f < prev    next >
Text File  |  2000-03-23  |  5KB  |  103 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>open3 - open a process for reading, writing, and error handling</TITLE>
  5. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> open3 - open a process for reading, writing, and error handling</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#warning">WARNING</A></LI>
  26. </UL>
  27. <!-- INDEX END -->
  28.  
  29. <HR>
  30. <P>
  31. <H1><A NAME="name">NAME</A></H1>
  32. <P>IPC::Open3, open3 - open a process for reading, writing, and error handling</P>
  33. <P>
  34. <HR>
  35. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  36. <UL>
  37. <LI>Linux</LI>
  38. <LI>Solaris</LI>
  39. <LI>Windows</LI>
  40. </UL>
  41. <HR>
  42. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  43. <PRE>
  44.     $pid = open3(\*WTRFH, \*RDRFH, \*ERRFH,
  45.                     'some cmd and args', 'optarg', ...);</PRE>
  46. <PRE>
  47.     my($wtr, $rdr, $err);
  48.     $pid = open3($wtr, $rdr, $err,
  49.                     'some cmd and args', 'optarg', ...);</PRE>
  50. <P>
  51. <HR>
  52. <H1><A NAME="description">DESCRIPTION</A></H1>
  53. <P>Extremely similar to open2(), <CODE>open3()</CODE> spawns the given $cmd and
  54. connects RDRFH for reading, WTRFH for writing, and ERRFH for errors.  If
  55. ERRFH is false, or the same file descriptor as RDRFH, then STDOUT and 
  56. STDERR of the child are on the same filehandle.  The WTRFH will have
  57. autoflush turned on.</P>
  58. <P>If WTRFH begins with <CODE><&</CODE>, then WTRFH will be closed in the parent, and
  59. the child will read from it directly.  If RDRFH or ERRFH begins with
  60. <CODE>>&</CODE>, then the child will send output directly to that filehandle.
  61. In both cases, there will be a <CODE>dup(2)</CODE> instead of a <A HREF="../../lib/Pod/perlfunc.html#item_pipe"><CODE>pipe(2)</CODE></A> made.</P>
  62. <P>If either reader or writer is the null string, this will be replaced
  63. by an autogenerated filehandle.  If so, you must pass a valid lvalue
  64. in the parameter slot so it can be overwritten in the caller, or 
  65. an exception will be raised.</P>
  66. <P><CODE>open3()</CODE> returns the process ID of the child process.  It doesn't return on
  67. failure: it just raises an exception matching <CODE>/^open3:/</CODE>.  However,
  68. <A HREF="../../lib/Pod/perlfunc.html#item_exec"><CODE>exec</CODE></A> failures in the child are not detected.  You'll have to 
  69. trap SIGPIPE yourself.</P>
  70. <P><CODE>open2()</CODE> does not wait for and reap the child process after it exits.  
  71. Except for short programs where it's acceptable to let the operating system
  72. take care of this, you need to do this yourself.  This is normally as 
  73. simple as calling <CODE>waitpid $pid, 0</CODE> when you're done with the process.
  74. Failing to do this can result in an accumulation of defunct or ``zombie''
  75. processes.  See <A HREF="../../lib/Pod/perlfunc.html#waitpid">waitpid in the perlfunc manpage</A> for more information.</P>
  76. <P>If you try to read from the child's stdout writer and their stderr
  77. writer, you'll have problems with blocking, which means you'll want
  78. to use <A HREF="../../lib/Pod/perlfunc.html#item_select"><CODE>select()</CODE></A> or the IO::Select, which means you'd best use
  79. <A HREF="../../lib/Pod/perlfunc.html#item_sysread"><CODE>sysread()</CODE></A> instead of <A HREF="../../lib/Pod/perlfunc.html#item_readline"><CODE>readline()</CODE></A> for normal stuff.</P>
  80. <P>This is very dangerous, as you may block forever.  It assumes it's
  81. going to talk to something like <STRONG>bc</STRONG>, both writing to it and reading
  82. from it.  This is presumably safe because you ``know'' that commands
  83. like <STRONG>bc</STRONG> will read a line at a time and output a line at a time.
  84. Programs like <STRONG>sort</STRONG> that read their entire input stream first,
  85. however, are quite apt to cause deadlock.</P>
  86. <P>The big problem with this approach is that if you don't have control
  87. over source code being run in the child process, you can't control
  88. what it does with pipe buffering.  Thus you can't just open a pipe to
  89. <CODE>cat -v</CODE> and continually read and write a line from it.</P>
  90. <P>
  91. <HR>
  92. <H1><A NAME="warning">WARNING</A></H1>
  93. <P>The order of arguments differs from that of open2().</P>
  94. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  95. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  96. <STRONG><P CLASS=block> open3 - open a process for reading, writing, and error handling</P></STRONG>
  97. </TD></TR>
  98. </TABLE>
  99.  
  100. </BODY>
  101.  
  102. </HTML>
  103.