X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/eebb848a8516e14cb6c23e1c7b9db56af375733f..236a9de39afa090fdee3cf91cb5364ceca69e3f8:/src/common/process.cpp?ds=inline diff --git a/src/common/process.cpp b/src/common/process.cpp index 2469953ed2..dd80b31466 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__ @@ -29,17 +29,41 @@ IMPLEMENT_DYNAMIC_CLASS(wxProcess, wxEvtHandler) IMPLEMENT_DYNAMIC_CLASS(wxProcessEvent, wxEvent) -wxProcess::wxProcess(wxEvtHandler *parent, int id) +void wxProcess::Init(wxEvtHandler *parent, int id, bool redirect) { - if (parent) - SetNextHandler(parent); + if ( parent ) + SetNextHandler(parent); - m_id = id; + m_id = id; + m_redirect = redirect; + m_inputStream = NULL; + m_outputStream = NULL; +} + +wxProcess::~wxProcess() +{ + delete m_inputStream; + delete m_outputStream; } 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_inputStream = in_stream; + m_outputStream = out_stream; } +