pipechan.h
上传用户:hzhsqp
上传日期:2007-01-06
资源大小:1600k
文件大小:17k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * pipechan.h
  3.  *
  4.  * Sub-process with communications using pipe I/O channel class.
  5.  *
  6.  * Portable Windows Library
  7.  *
  8.  * Copyright (c) 1993-1998 Equivalence Pty. Ltd.
  9.  *
  10.  * The contents of this file are subject to the Mozilla Public License
  11.  * Version 1.0 (the "License"); you may not use this file except in
  12.  * compliance with the License. You may obtain a copy of the License at
  13.  * http://www.mozilla.org/MPL/
  14.  *
  15.  * Software distributed under the License is distributed on an "AS IS"
  16.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  17.  * the License for the specific language governing rights and limitations
  18.  * under the License.
  19.  *
  20.  * The Original Code is Portable Windows Library.
  21.  *
  22.  * The Initial Developer of the Original Code is Equivalence Pty. Ltd.
  23.  *
  24.  * Portions are Copyright (C) 1993 Free Software Foundation, Inc.
  25.  * All Rights Reserved.
  26.  *
  27.  * Contributor(s): ______________________________________.
  28.  *
  29.  * $Log: pipechan.h,v $
  30.  * Revision 1.18  1999/03/09 02:59:50  robertj
  31.  * Changed comments to doc++ compatible documentation.
  32.  *
  33.  * Revision 1.17  1999/02/16 08:11:09  robertj
  34.  * MSVC 6.0 compatibility changes.
  35.  *
  36.  * Revision 1.16  1998/11/02 10:06:39  robertj
  37.  * Added capability of pip output to go to stdout/stderr.
  38.  *
  39.  * Revision 1.15  1998/10/30 10:42:29  robertj
  40.  * Better function arrangement for multi platforming.
  41.  *
  42.  * Revision 1.14  1998/10/29 11:29:17  robertj
  43.  * Added ability to set environment in sub-process.
  44.  *
  45.  * Revision 1.13  1998/10/26 09:11:05  robertj
  46.  * Added ability to separate out stdout from stderr on pipe channels.
  47.  *
  48.  * Revision 1.12  1998/09/23 06:21:08  robertj
  49.  * Added open source copyright license.
  50.  *
  51.  * Revision 1.11  1997/01/03 05:25:05  robertj
  52.  * Added Wait and Kill functions.
  53.  *
  54.  * Revision 1.10  1996/03/31 08:50:51  robertj
  55.  * Changed string list to array.
  56.  * Added function to idicate if sub-process is running.
  57.  *
  58.  * Revision 1.9  1995/07/31 12:15:45  robertj
  59.  * Removed PContainer from PChannel ancestor.
  60.  *
  61.  * Revision 1.8  1995/06/17 11:12:53  robertj
  62.  * Documentation update.
  63.  *
  64.  * Revision 1.7  1995/03/14 12:42:02  robertj
  65.  * Updated documentation to use HTML codes.
  66.  *
  67.  * Revision 1.6  1995/01/09  12:39:01  robertj
  68.  * Documentation.
  69.  *
  70.  * Revision 1.5  1994/10/23  04:50:55  robertj
  71.  * Further refinement of semantics after implementation.
  72.  *
  73.  * Revision 1.4  1994/09/25  10:43:19  robertj
  74.  * Added more implementation.
  75.  *
  76.  * Revision 1.3  1994/08/23  11:32:52  robertj
  77.  * Oops
  78.  *
  79.  * Revision 1.2  1994/08/22  00:46:48  robertj
  80.  * Added pragma fro GNU C++ compiler.
  81.  *
  82.  * Revision 1.1  1994/04/20  12:17:44  robertj
  83.  * Initial revision
  84.  *
  85.  */
  86. #define _PPIPECHANNEL
  87. #ifdef __GNUC__
  88. #pragma interface
  89. #endif
  90. /**A channel that uses a operating system pipe between the current process and
  91.    a sub-process. On platforms that support {it multi-processing}, the
  92.    sub-program is executed concurrently with the calling process.
  93.    
  94.    Where full multi-processing is not supported then the sub-program is run
  95.    with its input supplied from, or output captured to, a disk file. The
  96.    current process is then suspended during the execution of the sub-program.
  97.    In the latter case the semantics of the #Execute()# and #Close()#
  98.    functions change from the usual for channels.
  99.    Note that for platforms that do not support multi-processing, the current
  100.    process is suspended until the sub-program terminates. The input and output
  101.    of the sub-program is transferred via a temporary file. The exact moment of
  102.    execution of the sub-program depends on the mode. If mode is
  103.    #ReadOnly# then it is executed immediately and its output
  104.    captured. In #WriteOnly# mode the sub-program is run when the
  105.    #Close()# function is called, or when the pipe channel is destroyed.
  106.    In #ReadWrite# mode the sub-program is run when the
  107.    #Execute()# function is called indicating that the output from the
  108.    current process to the sub-program has completed and input is now desired.
  109.    
  110.    The #CanReadAndWrite()# function effectively determines whether full
  111.    multi-processing is supported by the platform. Note that this is different
  112.    to whether {it multi-threading} is supported.
  113.  */
  114. class PPipeChannel : public PChannel
  115. {
  116.   PCLASSINFO(PPipeChannel, PChannel);
  117.   public:
  118.   /**@name Construction */
  119.   //@{
  120.     /// Channel mode for the pipe to the sub-process.
  121.     enum OpenMode {
  122.       /// Pipe is only from the sub-process to the current process.
  123.       ReadOnly,   
  124.       /// Pipe is only from the current process to the sub-process.
  125.       WriteOnly,  
  126.       /// Pipe is bidirectional between current and sub-processes.
  127.       ReadWrite,  
  128.       /**Pipe is bidirectional between current and sub-processes but the write
  129.          side goes to stdout and stderr */
  130.       ReadWriteStd
  131.     };
  132.     /**Create a new pipe channel.
  133.      */
  134.     PPipeChannel();
  135.     /**Create a new pipe channel.
  136.        This executes the subProgram and transfers data from its stdin/stdout/stderr.
  137.        
  138.        See the #Open()# function for details of various parameters.
  139.      */
  140.     PPipeChannel(
  141.       const PString & subProgram,  /// Sub program name or command line.
  142.       OpenMode mode = ReadWrite,   /// Mode for the pipe channel.
  143.       BOOL searchPath = TRUE,      /// Flag for system PATH to be searched.
  144.       BOOL stderrSeparate = FALSE  /// Standard error is on separate pipe
  145.     );
  146.     /**Create a new pipe channel.
  147.        This executes the subProgram and transfers data from its stdin/stdout/stderr.
  148.        
  149.        See the #Open()# function for details of various parameters.
  150.      */
  151.     PPipeChannel(
  152.       const PString & subProgram,  /// Sub program name or command line.
  153.       const PStringArray & argumentList, /// Array of arguments to sub-program.
  154.       OpenMode mode = ReadWrite,   /// Mode for the pipe channel.
  155.       BOOL searchPath = TRUE,      /// Flag for system PATH to be searched.
  156.       BOOL stderrSeparate = FALSE  /// Standard error is on separate pipe
  157.     );
  158.     /**Create a new pipe channel.
  159.        This executes the subProgram and transfers data from its stdin/stdout/stderr.
  160.        
  161.        See the #Open()# function for details of various parameters.
  162.      */
  163.     PPipeChannel(
  164.       const PString & subProgram,  /// Sub program name or command line.
  165.       const PStringToString & environment, /// Array of arguments to sub-program.
  166.       OpenMode mode = ReadWrite,   /// Mode for the pipe channel.
  167.       BOOL searchPath = TRUE,      /// Flag for system PATH to be searched.
  168.       BOOL stderrSeparate = FALSE  /// Standard error is on separate pipe
  169.     );
  170.     /**Create a new pipe channel.
  171.        This executes the subProgram and transfers data from its stdin/stdout/stderr.
  172.        
  173.        See the #Open()# function for details of various parameters.
  174.      */
  175.     PPipeChannel(
  176.       const PString & subProgram,  /// Sub program name or command line.
  177.       const PStringArray & argumentList, /// Array of arguments to sub-program.
  178.       const PStringToString & environment, /// Array of arguments to sub-program.
  179.       OpenMode mode = ReadWrite,   /// Mode for the pipe channel.
  180.       BOOL searchPath = TRUE,      /// Flag for system PATH to be searched.
  181.       BOOL stderrSeparate = FALSE  /// Standard error is on separate pipe
  182.     );
  183.     /// Close the pipe channel, killing the sub-process.
  184.     ~PPipeChannel();
  185.   //@}
  186.   /**@name Overrides from class PObject */
  187.   //@{
  188.     /**Determine if the two objects refer to the same pipe channel. This
  189.        actually compares the sub-program names that are passed into the
  190.        constructor.
  191.        @return
  192.        Comparison value of the sub-program strings.
  193.      */
  194.     Comparison Compare(
  195.       const PObject & obj   /// Another pipe channel to compare against.
  196.     ) const;
  197.   //@}
  198.   /**@name Overrides from class PChannel */
  199.   //@{
  200.     /**Get the name of the channel.
  201.     
  202.        @return
  203.        string for the sub-program that is run.
  204.      */
  205.     virtual PString GetName() const;
  206.     /**Low level read from the channel. This function may block until the
  207.        requested number of characters were read or the read timeout was
  208.        reached. The GetLastReadCount() function returns the actual number
  209.        of bytes read.
  210.        If there are no more characters available as the sub-program has
  211.        stopped then the number of characters available is returned. This is
  212.        similar to end of file for the PFile channel.
  213.        The GetErrorCode() function should be consulted after Read() returns
  214.        FALSE to determine what caused the failure.
  215.        @return
  216.        TRUE indicates that at least one character was read from the channel.
  217.        FALSE means no bytes were read due to timeout or some other I/O error.
  218.      */
  219.     virtual BOOL Read(
  220.       void * buf,   /// Pointer to a block of memory to receive the read bytes.
  221.       PINDEX len    /// Maximum number of bytes to read into the buffer.
  222.     );
  223.     /**Low level write to the channel. This function will block until the
  224.        requested number of characters are written or the write timeout is
  225.        reached. The GetLastWriteCount() function returns the actual number
  226.        of bytes written.
  227.        If the sub-program has completed its run then this function will fail
  228.        returning FALSE.
  229.        The GetErrorCode() function should be consulted after Write() returns
  230.        FALSE to determine what caused the failure.
  231.        @return
  232.        TRUE if at least len bytes were written to the channel.
  233.      */
  234.     virtual BOOL Write(
  235.       const void * buf, /// Pointer to a block of memory to write.
  236.       PINDEX len        /// Number of bytes to write.
  237.     );
  238.     /**Close the channel. This will kill the sub-program's process (on
  239.        platforms where that is relevent).
  240.        
  241.        For #WriteOnly# or #ReadWrite# mode pipe channels
  242.        on platforms that do no support concurrent multi-processing and have
  243.        not yet called the #Execute()# function this will run the
  244.        sub-program.
  245.      */
  246.     virtual BOOL Close();
  247.   //@}
  248.   /**@name New member functions */
  249.   //@{
  250.     /** Open a channel. */
  251.     BOOL Open(
  252.       const PString & subProgram,  /// Sub program name or command line.
  253.       OpenMode mode = ReadWrite,   /// Mode for the pipe channel.
  254.       BOOL searchPath = TRUE,      /// Flag for system PATH to be searched.
  255.       BOOL stderrSeparate = FALSE  /// Standard error is on separate pipe
  256.     );
  257.     /** Open a channel. */
  258.     BOOL Open(
  259.       const PString & subProgram,  /// Sub program name or command line.
  260.       const PStringArray & argumentList, /// Array of arguments to sub-program.
  261.       OpenMode mode = ReadWrite,   /// Mode for the pipe channel.
  262.       BOOL searchPath = TRUE,      /// Flag for system PATH to be searched.
  263.       BOOL stderrSeparate = FALSE  /// Standard error is on separate pipe
  264.     );
  265.     /** Open a channel. */
  266.     BOOL Open(
  267.       const PString & subProgram,  /// Sub program name or command line.
  268.       const PStringToString & environment, /// Array of arguments to sub-program.
  269.       OpenMode mode = ReadWrite,   /// Mode for the pipe channel.
  270.       BOOL searchPath = TRUE,      /// Flag for system PATH to be searched.
  271.       BOOL stderrSeparate = FALSE  /// Standard error is on separate pipe
  272.     );
  273.     /**Open a new pipe channel allowing the subProgram to be executed and
  274.        data transferred from its stdin/stdout/stderr.
  275.        
  276.        If the mode is #ReadOnly# then the #stdout# of the
  277.        sub-program is supplied via the #Read()# calls of the PPipeChannel.
  278.        The sub-programs input is set to the platforms null device (eg
  279.        /dev/nul).
  280.        If mode is #WriteOnly# then #Write()# calls of the
  281.        PPipeChannel are suppied to the sub-programs #stdin# and its
  282.        #stdout# is sent to the null device.
  283.        
  284.        If mode is #ReadWrite# then both read and write actions can
  285.        occur.
  286.        The #subProgram# parameter may contain just the path of the
  287.        program to be run or a program name and space separated arguments,
  288.        similar to that provided to the platforms command processing shell.
  289.        Which use of this parameter is determiend by whether arguments are
  290.        passed via the #argumentPointers# or
  291.        #argumentList# parameters.
  292.        The #searchPath# parameter indicates that the system PATH
  293.        for executables should be searched for the sub-program. If FALSE then
  294.        only the explicit or implicit path contained in the
  295.        #subProgram# parameter is searched for the executable.
  296.        The #stderrSeparate# parameter indicates that the standard
  297.        error stream is not included in line with the standard output stream.
  298.        In this case, data in this stream must be read using the
  299.        #ReadStandardError()# function.
  300.        The #environment# parameter is a null terminated sequence
  301.        of null terminated strings of the form name=value. If NULL is passed
  302.        then the same invironment as calling process uses is passed to the
  303.        child process.
  304.      */
  305.     BOOL Open(
  306.       const PString & subProgram,  /// Sub program name or command line.
  307.       const PStringArray & argumentList, /// Array of arguments to sub-program.
  308.       const PStringToString & environment, /// Array of arguments to sub-program.
  309.       OpenMode mode = ReadWrite,   /// Mode for the pipe channel.
  310.       BOOL searchPath = TRUE,      /// Flag for system PATH to be searched.
  311.       BOOL stderrSeparate = FALSE  /// Standard error is on separate pipe
  312.     );
  313.     /**Get the full file path for the sub-programs executable file.
  314.        @return
  315.        file path name for sub-program.
  316.      */
  317.     const PFilePath & GetSubProgram() const;
  318.     /**Start execution of sub-program for platforms that do not support
  319.        multi-processing, this will actually run the sub-program passing all
  320.        data written to the PPipeChannel.
  321.        
  322.        For platforms that do support concurrent multi-processing this will
  323.        close the pipe from the current process to the sub-process.
  324.       
  325.        As the sub-program is run immediately and concurrently, this will just
  326.        give an end of file to the stdin of the remote process. This is often
  327.        necessary.
  328.        @return TRUE if execute was successful.
  329.      */
  330.     BOOL Execute();
  331.     /**Determine if the program associated with the PPipeChannel is still
  332.        executing. This is useful for determining the status of PPipeChannels
  333.        which take a long time to execute on operating systems which support
  334.        concurrent multi-processing.
  335.        
  336.        @return
  337.        TRUE if the program associated with the PPipeChannel is still running
  338.      */
  339.     BOOL IsRunning() const;
  340.     /**Get the return code from the most recent Close;
  341.        @return
  342.        Return code from the closing process
  343.      */
  344.     int GetReturnCode() const;
  345.     /**This function will block and wait for the sub-program to terminate.
  346.     
  347.        @return
  348.        Return code from the closing process
  349.      */
  350.     int WaitForTermination();
  351.     
  352.     /**This function will block and wait for the sub-program to terminate.
  353.        It will wait only for the specified amount of time.
  354.     
  355.        @return
  356.        Return code from the closing process, -1 if timed out.
  357.      */
  358.     int WaitForTermination(
  359.       const PTimeInterval & timeout  /// Amount of time to wait for process.
  360.     );
  361.     /**This function will terminate the sub-program using the signal code
  362.        specified.
  363.      
  364.        @return
  365.        TRUE if the process received the signal. Note that this does not mean
  366.        that the process has actually terminated.
  367.      */
  368.     BOOL Kill(
  369.       int signal = 9  /// Signal code to be sent to process.
  370.     );
  371.     /**Read all available data on the standard error stream of the
  372.        sub-process. If the #wait# parameter is FALSE then only
  373.        the text currently available is returned. If TRUE then the function
  374.        blocks as long as necessary to get some number of bytes.
  375.        @return
  376.        TRUE indicates that at least one character was read from stderr.
  377.        FALSE means no bytes were read due to timeout or some other I/O error.
  378.      */
  379.     BOOL ReadStandardError(
  380.       PString & errors,   /// String to receive standard error text.
  381.       BOOL wait = FALSE   /// Flag to indicate if function should block
  382.     );
  383.     /**Determine if the platform can support simultaneous read and writes from
  384.        the PPipeChannel (eg MSDOS returns FALSE, Unix returns TRUE).
  385.        
  386.        @return
  387.        TRUE if platform supports concurrent multi-processing.
  388.      */
  389.     static BOOL CanReadAndWrite();
  390.   //@}
  391.   protected:
  392.     // Member variables
  393.     /// The fully qualified path name for the sub-program executable.
  394.     PFilePath subProgName;
  395.   private:
  396.     BOOL PlatformOpen(const PString & subProgram,
  397.                       const PStringArray & arguments,
  398.                       OpenMode mode,
  399.                       BOOL searchPath,
  400.                       BOOL stderrSeparate,
  401.                       const PStringToString * environment);
  402. #ifdef DOC_PLUS_PLUS
  403. };
  404. #endif
  405. // Class declaration continued in platform specific header file ///////////////