]> git.saurik.com Git - wxWidgets.git/blob - include/wx/process.h
Removed WXWIN_COMPATIBILITY_2_2 together with code guarded by it.
[wxWidgets.git] / include / wx / process.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: process.h
3 // Purpose: wxProcess class
4 // Author: Guilhem Lavaux
5 // Modified by: Vadim Zeitlin to check error codes, added Detach() method
6 // Created: 24/06/98
7 // RCS-ID: $Id$
8 // Copyright: (c) 1998 Guilhem Lavaux
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_PROCESSH__
13 #define _WX_PROCESSH__
14
15 #include "wx/event.h"
16
17 #if wxUSE_STREAMS
18 #include "wx/stream.h"
19 #endif
20
21 #include "wx/utils.h" // for wxSignal
22
23 // the wxProcess creation flags
24 enum
25 {
26 // no redirection
27 wxPROCESS_DEFAULT = 0,
28
29 // redirect the IO of the child process
30 wxPROCESS_REDIRECT = 1
31 };
32
33 // ----------------------------------------------------------------------------
34 // A wxProcess object should be passed to wxExecute - than its OnTerminate()
35 // function will be called when the process terminates.
36 // ----------------------------------------------------------------------------
37
38 class WXDLLIMPEXP_BASE wxProcess : public wxEvtHandler
39 {
40 public:
41 // kill the process with the given PID
42 static wxKillError Kill(int pid, wxSignal sig = wxSIGTERM, int flags = wxKILL_NOCHILDREN);
43
44 // test if the given process exists
45 static bool Exists(int pid);
46
47 // this function replaces the standard popen() one: it launches a process
48 // asynchronously and allows the caller to get the streams connected to its
49 // std{in|out|err}
50 //
51 // on error NULL is returned, in any case the process object will be
52 // deleted automatically when the process terminates and should *not* be
53 // deleted by the caller
54 static wxProcess *Open(const wxString& cmd, int flags = wxEXEC_ASYNC);
55
56
57 // ctors
58 wxProcess(wxEvtHandler *parent = (wxEvtHandler *) NULL, int nId = wxID_ANY)
59 { Init(parent, nId, wxPROCESS_DEFAULT); }
60
61 wxProcess(int flags) { Init(NULL, wxID_ANY, flags); }
62
63 virtual ~wxProcess();
64
65 // may be overridden to be notified about process termination
66 virtual void OnTerminate(int pid, int status);
67
68 // call this before passing the object to wxExecute() to redirect the
69 // launched process stdin/stdout, then use GetInputStream() and
70 // GetOutputStream() to get access to them
71 void Redirect() { m_redirect = true; }
72 bool IsRedirected() const { return m_redirect; }
73
74 // detach from the parent - should be called by the parent if it's deleted
75 // before the process it started terminates
76 void Detach();
77
78 #if wxUSE_STREAMS
79 // Pipe handling
80 wxInputStream *GetInputStream() const { return m_inputStream; }
81 wxInputStream *GetErrorStream() const { return m_errorStream; }
82 wxOutputStream *GetOutputStream() const { return m_outputStream; }
83
84 // close the output stream indicating that nothing more will be written
85 void CloseOutput() { delete m_outputStream; m_outputStream = NULL; }
86
87 // return true if the child process stdout is not closed
88 bool IsInputOpened() const;
89
90 // return true if any input is available on the child process stdout/err
91 bool IsInputAvailable() const;
92 bool IsErrorAvailable() const;
93
94 // implementation only (for wxExecute)
95 //
96 // NB: the streams passed here should correspond to the child process
97 // stdout, stdin and stderr and here the normal naming convention is
98 // used unlike elsewhere in this class
99 void SetPipeStreams(wxInputStream *outStream,
100 wxOutputStream *inStream,
101 wxInputStream *errStream);
102 #endif // wxUSE_STREAMS
103
104 protected:
105 void Init(wxEvtHandler *parent, int id, int flags);
106
107 int m_id;
108
109 #if wxUSE_STREAMS
110 // these streams are connected to stdout, stderr and stdin of the child
111 // process respectively (yes, m_inputStream corresponds to stdout -- very
112 // confusing but too late to change now)
113 wxInputStream *m_inputStream,
114 *m_errorStream;
115 wxOutputStream *m_outputStream;
116 #endif // wxUSE_STREAMS
117
118 bool m_redirect;
119
120 DECLARE_DYNAMIC_CLASS(wxProcess)
121 DECLARE_NO_COPY_CLASS(wxProcess)
122 };
123
124 // ----------------------------------------------------------------------------
125 // wxProcess events
126 // ----------------------------------------------------------------------------
127
128 BEGIN_DECLARE_EVENT_TYPES()
129 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_END_PROCESS, 440)
130 END_DECLARE_EVENT_TYPES()
131
132 class WXDLLIMPEXP_BASE wxProcessEvent : public wxEvent
133 {
134 public:
135 wxProcessEvent(int nId = 0, int pid = 0, int exitcode = 0) : wxEvent(nId)
136 {
137 m_eventType = wxEVT_END_PROCESS;
138 m_pid = pid;
139 m_exitcode = exitcode;
140 }
141
142 // accessors
143 // PID of process which terminated
144 int GetPid() { return m_pid; }
145
146 // the exit code
147 int GetExitCode() { return m_exitcode; }
148
149 // implement the base class pure virtual
150 virtual wxEvent *Clone() const { return new wxProcessEvent(*this); }
151
152 public:
153 int m_pid,
154 m_exitcode;
155
156 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxProcessEvent)
157 };
158
159 typedef void (wxEvtHandler::*wxProcessEventFunction)(wxProcessEvent&);
160
161 #define wxProcessEventHandler(func) \
162 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxProcessEventFunction, &func)
163
164 #define EVT_END_PROCESS(id, func) \
165 wx__DECLARE_EVT1(wxEVT_END_PROCESS, id, wxProcessEventHandler(func))
166
167 #endif // _WX_PROCESSH__