X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5336ece42c19e6acb1ca01b7bc29772e18540c99..af547d51b7494fd365ae29e048d458ff72b27056:/src/common/process.cpp diff --git a/src/common/process.cpp b/src/common/process.cpp index d15c5d3b20..e573fe8e0d 100644 --- a/src/common/process.cpp +++ b/src/common/process.cpp @@ -2,11 +2,11 @@ // Name: process.cpp // Purpose: Process termination classes // Author: Guilhem Lavaux -// Modified by: +// Modified by: Vadim Zeitlin to check error codes, added Detach() method // Created: 24/06/98 // RCS-ID: $Id$ // Copyright: (c) Guilhem Lavaux -// Licence: wxWindows license +// Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// #ifdef __GNUG__ @@ -26,22 +26,60 @@ #include "wx/process.h" -#if !USE_SHARED_LIBRARY - IMPLEMENT_DYNAMIC_CLASS(wxProcess, wxEvtHandler) - IMPLEMENT_DYNAMIC_CLASS(wxProcessEvent, wxEvent) -#endif +IMPLEMENT_DYNAMIC_CLASS(wxProcess, wxEvtHandler) +IMPLEMENT_DYNAMIC_CLASS(wxProcessEvent, wxEvent) -wxProcess::wxProcess(wxEvtHandler *parent, int id) +wxProcess::wxProcess(wxEvtHandler *parent, bool needPipe, int id) { - if (parent) - SetNextHandler(parent); + if (parent) + SetNextHandler(parent); - m_id = id; + m_id = id; + m_needPipe = needPipe; + m_in_stream = NULL; + m_out_stream = NULL; +} + +wxProcess::~wxProcess() +{ + if (m_in_stream) + delete m_in_stream; + if (m_out_stream) + delete m_out_stream; } void wxProcess::OnTerminate(int pid, int status) { - wxProcessEvent event(m_id, pid, status); + wxProcessEvent event(m_id, pid, status); + + if ( !ProcessEvent(event) ) + delete this; + //else: the object which processed the event is responsible for deleting + // us! +} + +void wxProcess::Detach() +{ + SetNextHandler(NULL); +} - ProcessEvent(event); +void wxProcess::SetPipeStreams(wxInputStream *in_stream, wxOutputStream *out_stream) +{ + m_in_stream = in_stream; + m_out_stream = out_stream; +} + +wxInputStream *wxProcess::GetInputStream() const +{ + return m_in_stream; +} + +wxOutputStream *wxProcess::GetOutputStream() const +{ + return m_out_stream; +} + +bool wxProcess::NeedPipe() const +{ + return m_needPipe; }