]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/process.tex
Patch #581167
[wxWidgets.git] / docs / latex / wx / process.tex
CommitLineData
eafc087e
GL
1\section{\class{wxProcess}}\label{wxprocess}
2
e626d7c7 3The objects of this class are used in conjunction with the
7e84f02d
VZ
4\helpref{wxExecute}{wxexecute} function. When a wxProcess object is passed to
5wxExecute(), its \helpref{OnTerminate()}{wxprocessonterminate} virtual method
6is called when the process terminates. This allows the program to be
7(asynchronously) notified about the process termination and also retrieve its
8exit status which is unavailable from wxExecute() in the case of
9asynchronous execution.
10
11Please note that if the process termination notification is processed by the
12parent, it is responsible for deleting the wxProcess object which sent it.
13However, if it is not processed, the object will delete itself and so the
14library users should only delete those objects whose notifications have been
15processed (and call \helpref{Detach()}{wxprocessdetach} for others).
eafc087e 16
f6bcfd97 17wxProcess also supports IO redirection of the child process. For this, you have
e626d7c7
RD
18to call its \helpref{Redirect}{wxprocessredirect} method before passing it to
19\helpref{wxExecute}{wxexecute}. If the child process was launched successfully,
20\helpref{GetInputStream}{wxprocessgetinputstream},
21\helpref{GetOutputStream}{wxprocessgetoutputstream} and
f6bcfd97 22\helpref{GetErrorStream}{wxprocessgeterrorstream} can then be used to retrieve
2edb0bde 23the streams corresponding to the child process standard output, input and
f6bcfd97
BP
24error output respectively.
25
9722642d
MB
26\perlnote{In wxPerl this class has an additional {\tt Destroy} method,
27for explicit destruction.}
28
eafc087e
GL
29\wxheading{Derived from}
30
31\helpref{wxEvtHandler}{wxevthandler}
32
954b8ae6
JS
33\wxheading{Include files}
34
35<wx/process.h>
36
f6bcfd97
BP
37\wxheading{See also}
38
39\helpref{wxExecute}{wxexecute}\\
40\helpref{exec sample}{sampleexec}
41
eafc087e
GL
42\latexignore{\rtfignore{\wxheading{Members}}}
43
44\membersection{wxProcess::wxProcess}\label{wxprocessconstr}
45
e8482f24 46\func{}{wxProcess}{\param{wxEvtHandler *}{ parent = NULL}, \param{int}{ id = -1}}
eafc087e 47
da00a8bb
VZ
48\func{}{wxProcess}{\param{int }{flags}}
49
eafc087e 50Constructs a process object. {\it id} is only used in the case you want to
3972fb49
JS
51use wxWindows events. It identifies this object, or another window that will
52receive the event.
eafc087e 53
7e84f02d
VZ
54If the {\it parent} parameter is different from NULL, it will receive
55a wxEVT\_END\_PROCESS notification event (you should insert EVT\_END\_PROCESS
56macro in the event table of the parent to handle it) with the given {\it id}.
57
da00a8bb
VZ
58The second constructor creates an object without any associated parent (and
59hence no id neither) but allows to specify the {\it flags} which can have the
60value of {\tt wxPROCESS\_DEFAULT} or {\tt wxPROCESS\_REDIRECT}. Specifying the
61former value has no particular effect while using the latter one is equivalent
62to calling \helpref{Redirect}{wxprocessredirect}.
63
eafc087e
GL
64\wxheading{Parameters}
65
66\docparam{parent}{The event handler parent.}
67
68\docparam{id}{id of an event.}
69
da00a8bb
VZ
70\docparam{flags}{either {\tt wxPROCESS\_DEFAULT} or {\tt wxPROCESS\_REDIRECT}}
71
eafc087e
GL
72\membersection{wxProcess::\destruct{wxProcess}}
73
74\func{}{\destruct{wxProcess}}{\void}
75
76Destroys the wxProcess object.
77
f6bcfd97
BP
78\membersection{wxProcess::CloseOutput}\label{wxprocesscloseoutput}
79
80\func{void}{CloseOutput}{\void}
81
82Closes the output stream (the one connected to the stdin of the child
83process). This function can be used to indicate to the child process that
84there is no more data to be read - usually, a filter program will only
85terminate when the input stream is closed.
86
7e84f02d
VZ
87\membersection{wxProcess::Detach}\label{wxprocessdetach}
88
89\func{void}{Detach}{\void}
90
91Normally, a wxProcess object is deleted by its parent when it receives the
92notification about the process termination. However, it might happen that the
93parent object is destroyed before the external process is terminated (e.g. a
94window from which this external process was launched is closed by the user)
e626d7c7 95and in this case it {\bf should not delete} the wxProcess object, but
7e84f02d
VZ
96{\bf should call Detach()} instead. After the wxProcess object is detached
97from its parent, no notification events will be sent to the parent and the
98object will delete itself upon reception of the process termination
99notification.
100
f6bcfd97
BP
101\membersection{wxProcess::GetErrorStream}\label{wxprocessgeterrorstream}
102
103\constfunc{wxInputStream* }{GetErrorStream}{\void}
104
105Returns an input stream which corresponds to the standard error output (stderr)
106of the child process.
107
70dc22dc
GL
108\membersection{wxProcess::GetInputStream}\label{wxprocessgetinputstream}
109
110\constfunc{wxInputStream* }{GetInputStream}{\void}
111
fe25efa3 112It returns an input stream corresponding to the standard output stream of the
f6bcfd97 113subprocess. If it is NULL, you have not turned on the redirection.
e8482f24 114See \helpref{wxProcess::Redirect}{wxprocessredirect}.
70dc22dc 115
66f55ec6 116\membersection{wxProcess::GetOutputStream}\label{wxprocessgetoutputstream}
70dc22dc 117
66f55ec6 118\constfunc{wxOutputStream* }{GetOutputStream}{\void}
70dc22dc 119
f6bcfd97 120It returns an output stream correspoding to the input stream of the subprocess.
e8482f24
GL
121If it is NULL, you have not turned on the redirection.
122See \helpref{wxProcess::Redirect}{wxprocessredirect}.
70dc22dc 123
50567b69
VZ
124\membersection{wxProcess::Kill}\label{wxprocesskill}
125
126\func{static wxKillError}{Kill}{\param{int}{ pid}, \param{wxSignal}{ signal = wxSIGNONE}}
127
128Send the specified signal to the given process. Possible signal values are:
129
130\begin{verbatim}
131enum wxSignal
132{
133 wxSIGNONE = 0, // verify if the process exists under Unix
134 wxSIGHUP,
135 wxSIGINT,
136 wxSIGQUIT,
137 wxSIGILL,
138 wxSIGTRAP,
139 wxSIGABRT,
140 wxSIGEMT,
141 wxSIGFPE,
142 wxSIGKILL, // forcefully kill, dangerous!
143 wxSIGBUS,
144 wxSIGSEGV,
145 wxSIGSYS,
146 wxSIGPIPE,
147 wxSIGALRM,
148 wxSIGTERM // terminate the process gently
149};
150\end{verbatim}
151
152{\tt wxSIGNONE}, {\tt wxSIGKILL} and {\tt wxSIGTERM} have the same meaning
e626d7c7 153under both Unix and Windows but all the other signals are equivalent to
50567b69
VZ
154{\tt wxSIGTERM} under Windows.
155
156Returns the element of {\tt wxKillError} enum:
157
158\begin{verbatim}
159enum wxKillError
160{
161 wxKILL_OK, // no error
162 wxKILL_BAD_SIGNAL, // no such signal
163 wxKILL_ACCESS_DENIED, // permission denied
164 wxKILL_NO_PROCESS, // no such process
165 wxKILL_ERROR // another, unspecified error
166};
167\end{verbatim}
168
169\wxheading{See also}
170
171\helpref{wxProcess::Exists}{wxprocessexists},\rtfsp
172\helpref{wxKill}{wxkill},\rtfsp
cb35465e 173\helpref{Exec sample}{sampleexec}
50567b69 174
9722642d 175\membersection{wxProcess::Exists}\label{wxprocessexists}
50567b69
VZ
176
177\func{static bool}{Exists}{\param{int}{ pid}}
178
179Returns {\tt TRUE} if the given process exists in the system.
180
181\wxheading{See also}
182
183\helpref{wxProcess::Kill}{wxprocesskill},\rtfsp
cb35465e 184\helpref{Exec sample}{sampleexec}
50567b69 185
eafc087e
GL
186\membersection{wxProcess::OnTerminate}\label{wxprocessonterminate}
187
7e84f02d 188\constfunc{void}{OnTerminate}{\param{int}{ pid}, \param{int}{ status}}
eafc087e
GL
189
190It is called when the process with the pid {\it pid} finishes.
f6bcfd97 191It raises a wxWindows event when it isn't overridden.
eafc087e 192
7e84f02d
VZ
193\docparam{pid}{The pid of the process which has just terminated.}
194
195\docparam{status}{The exit code of the process.}
3972fb49 196
da00a8bb
VZ
197\membersection{wxProcess::Open}\label{wxprocessopen}
198
e626d7c7 199\func{static wxProcess *}{Open}{\param{const wxString\& }{cmd} \param{int }{flags = wxEXEC\_ASYNC}}
da00a8bb
VZ
200
201This static method replaces the standard {\tt popen()} function: it launches
202the process specified by the {\it cmd} parameter and returns the wxProcess
203object which can be used to retrieve the streams connected to the standard
204input, output and error output of the child process.
205
206If the process couldn't be launched, {\tt NULL} is returned. Note that in any
207case the returned pointer should {\bf not} be deleted, rather the process
208object will be destroyed automatically when the child process terminates. This
209does mean that the child process should be told to quit before the main program
210exits to avoid memory leaks.
211
212\wxheading{Parameters}
213
214\docparam{cmd}{The command to execute, including optional arguments.}
e626d7c7 215\docparam{flags}{The flags to pass to \helpref{wxExecute}{wxexecute}.}
da00a8bb
VZ
216
217\wxheading{Return value}
218
219A pointer to new wxProcess object or {\tt NULL} on error.
220
221\wxheading{See also}
222
223\helpref{wxExecute}{wxexecute}
224
e8482f24
GL
225\membersection{wxProcess::Redirect}\label{wxprocessredirect}
226
227\func{void}{Redirect}{\void}
228
fe25efa3 229Turns on redirection. wxExecute will try to open a couple of pipes
e8482f24
GL
230to catch the subprocess stdio. The caught input stream is returned by
231GetOutputStream() as a non-seekable stream. The caught output stream is returned
232by GetInputStream() as a non-seekable stream.
66f55ec6 233