.. include:: headings.inc .. _Process: ========================================================================================================================================== |phoenix_title| **Process** ========================================================================================================================================== The objects of this class are used in conjunction with the :func:`Execute` function. When a :ref:`Process` object is passed to :func:`Execute`, its :meth:`~Process.OnTerminate` virtual method is called when the process terminates. This allows the program to be (asynchronously) notified about the process termination and also retrieve its exit status which is unavailable from :func:`Execute` in the case of asynchronous execution. :ref:`Process` also supports ``IO`` redirection of the child process. For this, you have to call its :meth:`~Process.Redirect` method before passing it to :func:`Execute`. If the child process was launched successfully, :meth:`~Process.GetInputStream`, :meth:`~Process.GetOutputStream` and :meth:`~Process.GetErrorStream` can then be used to retrieve the streams corresponding to the child process standard output, input and error output respectively. .. _Process-events: |events| Events Emitted by this Class ===================================== Handlers bound for the following event types will receive a :ref:`ProcessEvent` parameter. - EVT_END_PROCESS: Process a ``wxEVT_END_PROCESS`` event, sent by :meth:`Process.OnTerminate` upon the external process termination. .. note:: If the ``wxEVT_END_PROCESS`` event sent after termination is processed by the parent, then it is responsible for deleting the :ref:`Process` object which sent it. However, if it is not processed, the object will **delete itself** and so the library users should only delete those objects whose notifications have been processed (and call :meth:`Process.Detach` for others). This also means that unless you're going to process the ``wxEVT_END_PROCESS`` event, you **must** allocate the :ref:`Process` class on the heap. .. seealso:: :func:`Execute`, | |class_hierarchy| Inheritance Diagram ===================================== Inheritance diagram for class **Process** .. raw:: html

Inheritance diagram of Process

| |method_summary| Methods Summary ================================ ================================================================================ ================================================================================ :meth:`~Process.__init__` Constructs a process object. :meth:`~Process.CloseOutput` Closes the output stream (the one connected to the stdin of the child process). :meth:`~Process.Detach` Detaches this event handler from the parent specified in the constructor (see :meth:`EvtHandler.Unlink` for a similar but not identic function). :meth:`~Process.Exists` Returns ``True`` if the given process exists in the system. :meth:`~Process.GetErrorStream` Returns an input stream which corresponds to the standard error output (stderr) of the child process. :meth:`~Process.GetInputStream` It returns an input stream corresponding to the standard output stream of the subprocess. :meth:`~Process.GetOutputStream` It returns an output stream corresponding to the input stream of the subprocess. :meth:`~Process.GetPid` Returns the process ``ID`` of the process launched by :meth:`Open` or set by :func:`Execute` (if you passed this :ref:`Process` as argument). :meth:`~Process.IsErrorAvailable` Returns ``True`` if there is data to be read on the child process standard error stream. :meth:`~Process.IsInputAvailable` Returns ``True`` if there is data to be read on the child process standard output stream. :meth:`~Process.IsInputOpened` Returns ``True`` if the child process standard output stream is opened. :meth:`~Process.Kill` Send the specified signal to the given process. :meth:`~Process.OnTerminate` It is called when the process with the pid `pid` finishes. :meth:`~Process.Open` This static method replaces the standard ``popen()`` function: it launches the process specified by the `cmd` parameter and returns the :ref:`Process` object which can be used to retrieve the streams connected to the standard input, output and error output of the child process. :meth:`~Process.Redirect` Turns on redirection. ================================================================================ ================================================================================ | |property_summary| Properties Summary ===================================== ================================================================================ ================================================================================ :attr:`~Process.ErrorStream` See :meth:`~Process.GetErrorStream` :attr:`~Process.InputStream` See :meth:`~Process.GetInputStream` :attr:`~Process.OutputStream` See :meth:`~Process.GetOutputStream` :attr:`~Process.Pid` See :meth:`~Process.GetPid` ================================================================================ ================================================================================ | |api| Class API =============== .. class:: Process(EvtHandler) The objects of this class are used in conjunction with the Execute() function. **Possible constructors**:: Process(parent=None, id=-1) Process(flags) .. method:: __init__(self, *args, **kw) |overload| **Overloaded Implementations**: **~~~** **__init__** `(self, parent=None, id=-1)` Constructs a process object. `id` is only used in the case you want to use wxWidgets events. It identifies this object, or another window that will receive the event. If the `parent` parameter is different from ``None``, it will receive a ``wxEVT_END_PROCESS`` notification event (you should insert ``EVT_END_PROCESS`` macro in the event table of the parent to handle it) with the given `id`. :param `parent`: The event handler parent. :type `parent`: EvtHandler :param `id`: id of an event. :type `id`: int **~~~** **__init__** `(self, flags)` Creates an object without any associated parent (and hence no id neither) but allows to specify the `flags` which can have the value of ``PROCESS_DEFAULT`` or ``PROCESS_REDIRECT`` . Specifying the former value has no particular effect while using the latter one is equivalent to calling :meth:`Redirect` . :param `flags`: :type `flags`: int **~~~** .. method:: CloseOutput(self) Closes the output stream (the one connected to the stdin of the child process). This function can be used to indicate to the child process that there is no more data to be read - usually, a filter program will only terminate when the input stream is closed. Notice that :meth:`GetOutputStream` will return ``None`` after the output stream is closed. .. method:: Detach(self) Detaches this event handler from the parent specified in the constructor (see :meth:`EvtHandler.Unlink` for a similar but not identic function). Normally, a :ref:`Process` object is deleted by its parent when it receives the notification about the process termination. However, it might happen that the parent object is destroyed before the external process is terminated (e.g. a window from which this external process was launched is closed by the user) and in this case it **should** not delete the :ref:`Process` object, but **should** call :meth:`Detach` instead. After the :ref:`Process` object is detached from its parent, no notification events will be sent to the parent and the object will delete itself upon reception of the process termination notification. .. staticmethod:: Exists(pid) Returns ``True`` if the given process exists in the system. :param `pid`: :type `pid`: int :rtype: `bool` .. seealso:: :meth:`Kill` , .. method:: GetErrorStream(self) Returns an input stream which corresponds to the standard error output (stderr) of the child process. :rtype: :ref:`InputStream` .. method:: GetInputStream(self) It returns an input stream corresponding to the standard output stream of the subprocess. If it is ``None``, you have not turned on the redirection. :rtype: :ref:`InputStream` .. seealso:: :meth:`Redirect` . .. method:: GetOutputStream(self) It returns an output stream corresponding to the input stream of the subprocess. If it is ``None``, you have not turned on the redirection or already called :meth:`CloseOutput` . :rtype: :ref:`OutputStream` .. seealso:: :meth:`Redirect` . .. method:: GetPid(self) Returns the process ``ID`` of the process launched by :meth:`Open` or set by :func:`Execute` (if you passed this :ref:`Process` as argument). :rtype: `long` .. method:: IsErrorAvailable(self) Returns ``True`` if there is data to be read on the child process standard error stream. :rtype: `bool` .. seealso:: :meth:`IsInputAvailable` .. method:: IsInputAvailable(self) Returns ``True`` if there is data to be read on the child process standard output stream. This allows to write simple (and extremely inefficient) polling-based code waiting for a better mechanism in future wxWidgets versions. See the for an example of using this function. :rtype: `bool` .. seealso:: :meth:`IsInputOpened` .. method:: IsInputOpened(self) Returns ``True`` if the child process standard output stream is opened. :rtype: `bool` .. staticmethod:: Kill(pid, sig=SIGTERM, flags=KILL_NOCHILDREN) Send the specified signal to the given process. Possible signal values can be one of the :ref:`Signal` enumeration values. ``SIGNONE`` , ``SIGKILL`` and ``SIGTERM`` have the same meaning under both Unix and Windows but all the other signals are equivalent to ``SIGTERM`` under Windows. The `flags` parameter can be ``KILL_NOCHILDREN`` (the default), or ``KILL_CHILDREN`` , in which case the child processes of this process will be killed too. Note that under Unix, for ``KILL_CHILDREN`` to work you should have created the process passing ``EXEC_MAKE_GROUP_LEADER`` . Returns the element of :ref:`KillError` enum. :param `pid`: :type `pid`: int :param `sig`: :type `sig`: Signal :param `flags`: :type `flags`: int :rtype: :ref:`KillError` .. seealso:: :meth:`Exists` , :func:`Kill`, .. method:: OnTerminate(self, pid, status) It is called when the process with the pid `pid` finishes. It raises a wxWidgets event when it isn't overridden. Note that this function won't be called if you :meth:`Kill` the process. :param `pid`: The pid of the process which has just terminated. :type `pid`: int :param `status`: The exit code of the process. :type `status`: int .. staticmethod:: Open(cmd, flags=EXEC_ASYNC) This static method replaces the standard ``popen()`` function: it launches the process specified by the `cmd` parameter and returns the :ref:`Process` object which can be used to retrieve the streams connected to the standard input, output and error output of the child process. If the process couldn't be launched, ``None`` is returned. :param `cmd`: The command to execute, including optional arguments. :type `cmd`: string :param `flags`: The flags to pass to :func:`Execute`. Note: ``EXEC_SYNC`` should not be used. :type `flags`: int :rtype: :ref:`Process` :returns: A pointer to new :ref:`Process` object or ``None`` on error. .. note:: In any case the returned pointer should **not** be deleted, rather the process object will be destroyed automatically when the child process terminates. This does mean that the child process should be told to quit before the main program exits to avoid memory leaks. .. seealso:: :func:`Execute` .. method:: Redirect(self) Turns on redirection. :func:`Execute` will try to open a couple of pipes to catch the subprocess stdio. The caught input stream is returned by :meth:`GetOutputStream` as a non-seekable stream. The caught output stream is returned by :meth:`GetInputStream` as a non-seekable stream. .. attribute:: ErrorStream See :meth:`~Process.GetErrorStream` .. attribute:: InputStream See :meth:`~Process.GetInputStream` .. attribute:: OutputStream See :meth:`~Process.GetOutputStream` .. attribute:: Pid See :meth:`~Process.GetPid`