]> git.saurik.com Git - wxWidgets.git/blame - src/common/process.cpp
fixed wxStrrchr(s, '\0') bug, added const and non const versions of wxStrchr, wxStrrc...
[wxWidgets.git] / src / common / process.cpp
CommitLineData
ca7731b7
GL
1/////////////////////////////////////////////////////////////////////////////
2// Name: process.cpp
3// Purpose: Process termination classes
4// Author: Guilhem Lavaux
7e84f02d 5// Modified by: Vadim Zeitlin to check error codes, added Detach() method
ca7731b7
GL
6// Created: 24/06/98
7// RCS-ID: $Id$
8// Copyright: (c) Guilhem Lavaux
7e84f02d 9// Licence: wxWindows license
ca7731b7
GL
10/////////////////////////////////////////////////////////////////////////////
11
50567b69
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
ca7731b7 20#ifdef __GNUG__
5336ece4 21 #pragma implementation "process.h"
ca7731b7
GL
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
5336ece4 28 #pragma hdrstop
ca7731b7
GL
29#endif
30
ca7731b7
GL
31#include "wx/process.h"
32
50567b69
VZ
33// ----------------------------------------------------------------------------
34// event tables and such
35// ----------------------------------------------------------------------------
36
2e4df4bf
VZ
37DEFINE_EVENT_TYPE(wxEVT_END_PROCESS)
38
eebb848a
KB
39IMPLEMENT_DYNAMIC_CLASS(wxProcess, wxEvtHandler)
40IMPLEMENT_DYNAMIC_CLASS(wxProcessEvent, wxEvent)
ca7731b7 41
50567b69
VZ
42// ============================================================================
43// wxProcess implementation
44// ============================================================================
45
46// ----------------------------------------------------------------------------
47// wxProcess creation
48// ----------------------------------------------------------------------------
49
da00a8bb 50void wxProcess::Init(wxEvtHandler *parent, int id, int flags)
ca7731b7 51{
cd6ce4a9 52 if ( parent )
7e84f02d 53 SetNextHandler(parent);
ca7731b7 54
8b33ae2d 55 m_id = id;
da00a8bb 56 m_redirect = (flags & wxPROCESS_REDIRECT) != 0;
f6bcfd97
BP
57
58#if wxUSE_STREAMS
cd6ce4a9 59 m_inputStream = NULL;
f6bcfd97 60 m_errorStream = NULL;
cd6ce4a9 61 m_outputStream = NULL;
f6bcfd97 62#endif // wxUSE_STREAMS
8b33ae2d
GL
63}
64
da00a8bb 65/* static */
e626d7c7 66wxProcess *wxProcess::Open(const wxString& cmd, int flags)
da00a8bb
VZ
67{
68 wxProcess *process = new wxProcess(wxPROCESS_REDIRECT);
e626d7c7 69 if ( !wxExecute(cmd, flags, process) )
da00a8bb
VZ
70 {
71 // couldn't launch the process
72 delete process;
73 return NULL;
74 }
75
76 return process;
77}
78
50567b69
VZ
79// ----------------------------------------------------------------------------
80// wxProcess termination
81// ----------------------------------------------------------------------------
82
8b33ae2d
GL
83wxProcess::~wxProcess()
84{
f6bcfd97 85#if wxUSE_STREAMS
cd6ce4a9 86 delete m_inputStream;
f6bcfd97 87 delete m_errorStream;
cd6ce4a9 88 delete m_outputStream;
f6bcfd97 89#endif // wxUSE_STREAMS
ca7731b7
GL
90}
91
5336ece4 92void wxProcess::OnTerminate(int pid, int status)
81d66cf3 93{
7e84f02d 94 wxProcessEvent event(m_id, pid, status);
ca7731b7 95
7e84f02d
VZ
96 if ( !ProcessEvent(event) )
97 delete this;
98 //else: the object which processed the event is responsible for deleting
99 // us!
100}
101
102void wxProcess::Detach()
103{
104 SetNextHandler(NULL);
ca7731b7 105}
8b33ae2d 106
50567b69
VZ
107// ----------------------------------------------------------------------------
108// process IO redirection
109// ----------------------------------------------------------------------------
110
f6bcfd97
BP
111#if wxUSE_STREAMS
112
113void wxProcess::SetPipeStreams(wxInputStream *inputSstream,
114 wxOutputStream *outputStream,
115 wxInputStream *errorStream)
8b33ae2d 116{
f6bcfd97
BP
117 m_inputStream = inputSstream;
118 m_errorStream = errorStream;
119 m_outputStream = outputStream;
8b33ae2d
GL
120}
121
f6bcfd97 122#endif // wxUSE_STREAMS
50567b69
VZ
123
124// ----------------------------------------------------------------------------
125// process killing
126// ----------------------------------------------------------------------------
127
128/* static */
129wxKillError wxProcess::Kill(int pid, wxSignal sig)
130{
131 wxKillError rc;
132 (void)wxKill(pid, sig, &rc);
133
134 return rc;
135}
136
137/* static */
138bool wxProcess::Exists(int pid)
139{
15b663b4 140 switch ( Kill(pid, wxSIGNONE) )
50567b69
VZ
141 {
142 case wxKILL_OK:
143 case wxKILL_ACCESS_DENIED:
144 return TRUE;
145
146 default:
147 case wxKILL_ERROR:
148 case wxKILL_BAD_SIGNAL:
149 wxFAIL_MSG( _T("unexpected wxProcess::Kill() return code") );
150 // fall through
151
152 case wxKILL_NO_PROCESS:
153 return FALSE;
154 }
155}
156