1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/utilsexc.cpp
3 // Purpose: wxExecute implementation for MSW
4 // Author: Julian Smart
8 // Copyright: (c) 1998-2002 wxWidgets dev team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
33 #include "wx/stream.h"
35 #include "wx/module.h"
38 #include "wx/process.h"
39 #include "wx/thread.h"
40 #include "wx/apptrait.h"
41 #include "wx/evtloop.h"
42 #include "wx/vector.h"
45 #include "wx/msw/private.h"
49 #if !defined(__GNUWIN32__) && !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
56 #if defined(__GNUWIN32__)
57 #include <sys/unistd.h>
61 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
75 #if !(defined(_MSC_VER) && (_MSC_VER > 800))
82 #include "wx/dde.h" // for WX_DDE hack in wxExecute
85 // implemented in utils.cpp
86 extern "C" WXDLLIMPEXP_BASE HWND
87 wxCreateHiddenWindow(LPCTSTR
*pclassname
, LPCTSTR classname
, WNDPROC wndproc
);
89 // ----------------------------------------------------------------------------
91 // ----------------------------------------------------------------------------
93 // this message is sent when the process we're waiting for terminates
94 #define wxWM_PROC_TERMINATED (WM_USER + 10000)
96 // ----------------------------------------------------------------------------
97 // this module globals
98 // ----------------------------------------------------------------------------
100 // we need to create a hidden window to receive the process termination
101 // notifications and for this we need a (Win) class name for it which we will
102 // register the first time it's needed
103 static const wxChar
*wxMSWEXEC_WNDCLASSNAME
= wxT("_wxExecute_Internal_Class");
104 static const wxChar
*gs_classForHiddenWindow
= NULL
;
106 // event used to wake up threads waiting in wxExecuteThread
107 static HANDLE gs_heventShutdown
= NULL
;
109 // handles of all threads monitoring the execution of asynchronously running
111 static wxVector
<HANDLE
> gs_asyncThreads
;
113 // ----------------------------------------------------------------------------
115 // ----------------------------------------------------------------------------
117 // structure describing the process we're being waiting for
123 if ( !::CloseHandle(hProcess
) )
125 wxLogLastError(wxT("CloseHandle(hProcess)"));
129 HWND hWnd
; // window to send wxWM_PROC_TERMINATED to
130 HANDLE hProcess
; // handle of the process
131 DWORD dwProcessId
; // pid of the process
133 DWORD dwExitCode
; // the exit code of the process
134 bool state
; // set to false when the process finishes
137 class wxExecuteModule
: public wxModule
140 virtual bool OnInit() { return true; }
141 virtual void OnExit()
143 if ( gs_heventShutdown
)
145 // stop any threads waiting for the termination of asynchronously
147 if ( !::SetEvent(gs_heventShutdown
) )
149 wxLogDebug(wxT("Failed to set shutdown event in wxExecuteModule"));
152 ::CloseHandle(gs_heventShutdown
);
153 gs_heventShutdown
= NULL
;
155 // now wait until they terminate
156 if ( !gs_asyncThreads
.empty() )
158 const size_t numThreads
= gs_asyncThreads
.size();
160 if ( ::WaitForMultipleObjects
164 TRUE
, // wait for all of them to become signalled
165 3000 // long but finite value
168 wxLogDebug(wxT("Failed to stop all wxExecute monitor threads"));
171 for ( size_t n
= 0; n
< numThreads
; n
++ )
173 ::CloseHandle(gs_asyncThreads
[n
]);
176 gs_asyncThreads
.clear();
180 if ( gs_classForHiddenWindow
)
182 if ( !::UnregisterClass(wxMSWEXEC_WNDCLASSNAME
, wxGetInstance()) )
184 wxLogLastError(wxT("UnregisterClass(wxExecClass)"));
187 gs_classForHiddenWindow
= NULL
;
192 DECLARE_DYNAMIC_CLASS(wxExecuteModule
)
195 IMPLEMENT_DYNAMIC_CLASS(wxExecuteModule
, wxModule
)
197 #if wxUSE_STREAMS && !defined(__WXWINCE__)
199 // ----------------------------------------------------------------------------
201 // ----------------------------------------------------------------------------
203 class wxPipeInputStream
: public wxInputStream
206 wxPipeInputStream(HANDLE hInput
);
207 virtual ~wxPipeInputStream();
209 // returns true if the pipe is still opened
210 bool IsOpened() const { return m_hInput
!= INVALID_HANDLE_VALUE
; }
212 // returns true if there is any data to be read from the pipe
213 virtual bool CanRead() const;
216 size_t OnSysRead(void *buffer
, size_t len
);
221 wxDECLARE_NO_COPY_CLASS(wxPipeInputStream
);
224 class wxPipeOutputStream
: public wxOutputStream
227 wxPipeOutputStream(HANDLE hOutput
);
228 virtual ~wxPipeOutputStream() { Close(); }
232 size_t OnSysWrite(const void *buffer
, size_t len
);
237 wxDECLARE_NO_COPY_CLASS(wxPipeOutputStream
);
240 // define this to let wxexec.cpp know that we know what we're doing
241 #define _WX_USED_BY_WXEXECUTE_
242 #include "../common/execcmn.cpp"
244 // ----------------------------------------------------------------------------
245 // wxPipe represents a Win32 anonymous pipe
246 // ----------------------------------------------------------------------------
251 // the symbolic names for the pipe ends
258 // default ctor doesn't do anything
259 wxPipe() { m_handles
[Read
] = m_handles
[Write
] = INVALID_HANDLE_VALUE
; }
261 // create the pipe, return true if ok, false on error
264 // default secutiry attributes
265 SECURITY_ATTRIBUTES security
;
267 security
.nLength
= sizeof(security
);
268 security
.lpSecurityDescriptor
= NULL
;
269 security
.bInheritHandle
= TRUE
; // to pass it to the child
271 if ( !::CreatePipe(&m_handles
[0], &m_handles
[1], &security
, 0) )
273 wxLogSysError(_("Failed to create an anonymous pipe"));
281 // return true if we were created successfully
282 bool IsOk() const { return m_handles
[Read
] != INVALID_HANDLE_VALUE
; }
284 // return the descriptor for one of the pipe ends
285 HANDLE
operator[](Direction which
) const { return m_handles
[which
]; }
287 // detach a descriptor, meaning that the pipe dtor won't close it, and
289 HANDLE
Detach(Direction which
)
291 HANDLE handle
= m_handles
[which
];
292 m_handles
[which
] = INVALID_HANDLE_VALUE
;
297 // close the pipe descriptors
300 for ( size_t n
= 0; n
< WXSIZEOF(m_handles
); n
++ )
302 if ( m_handles
[n
] != INVALID_HANDLE_VALUE
)
304 ::CloseHandle(m_handles
[n
]);
305 m_handles
[n
] = INVALID_HANDLE_VALUE
;
310 // dtor closes the pipe descriptors
311 ~wxPipe() { Close(); }
317 #endif // wxUSE_STREAMS
319 // ============================================================================
321 // ============================================================================
323 // ----------------------------------------------------------------------------
324 // process termination detecting support
325 // ----------------------------------------------------------------------------
327 // thread function for the thread monitoring the process termination
328 static DWORD __stdcall
wxExecuteThread(void *arg
)
330 wxExecuteData
* const data
= (wxExecuteData
*)arg
;
332 // create the shutdown event if we're the first thread starting to wait
333 if ( !gs_heventShutdown
)
335 // create a manual initially non-signalled event object
336 gs_heventShutdown
= ::CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
337 if ( !gs_heventShutdown
)
339 wxLogDebug(wxT("CreateEvent() in wxExecuteThread failed"));
343 HANDLE handles
[2] = { data
->hProcess
, gs_heventShutdown
};
344 switch ( ::WaitForMultipleObjects(2, handles
, FALSE
, INFINITE
) )
347 // process terminated, get its exit code
348 if ( !::GetExitCodeProcess(data
->hProcess
, &data
->dwExitCode
) )
350 wxLogLastError(wxT("GetExitCodeProcess"));
353 wxASSERT_MSG( data
->dwExitCode
!= STILL_ACTIVE
,
354 wxT("process should have terminated") );
356 // send a message indicating process termination to the window
357 ::SendMessage(data
->hWnd
, wxWM_PROC_TERMINATED
, 0, (LPARAM
)data
);
360 case WAIT_OBJECT_0
+ 1:
361 // we're shutting down but the process is still running -- leave it
362 // run but clean up the associated data
367 //else: exiting while synchronously executing process is still
368 // running? this shouldn't happen...
372 wxLogDebug(wxT("Waiting for the process termination failed!"));
378 // window procedure of a hidden window which is created just to receive
379 // the notification message when a process exits
380 LRESULT APIENTRY _EXPORT
wxExecuteWindowCbk(HWND hWnd
, UINT message
,
381 WPARAM wParam
, LPARAM lParam
)
383 if ( message
== wxWM_PROC_TERMINATED
)
385 DestroyWindow(hWnd
); // we don't need it any more
387 wxExecuteData
* const data
= (wxExecuteData
*)lParam
;
390 data
->handler
->OnTerminate((int)data
->dwProcessId
,
391 (int)data
->dwExitCode
);
396 // we're executing synchronously, tell the waiting thread
397 // that the process finished
402 // asynchronous execution - we should do the clean up
410 return ::DefWindowProc(hWnd
, message
, wParam
, lParam
);
414 // ============================================================================
415 // implementation of IO redirection support classes
416 // ============================================================================
418 #if wxUSE_STREAMS && !defined(__WXWINCE__)
420 // ----------------------------------------------------------------------------
421 // wxPipeInputStreams
422 // ----------------------------------------------------------------------------
424 wxPipeInputStream::wxPipeInputStream(HANDLE hInput
)
429 wxPipeInputStream::~wxPipeInputStream()
431 if ( m_hInput
!= INVALID_HANDLE_VALUE
)
432 ::CloseHandle(m_hInput
);
435 bool wxPipeInputStream::CanRead() const
437 // we can read if there's something in the put back buffer
438 // even pipe is closed
439 if ( m_wbacksize
> m_wbackcur
)
442 wxPipeInputStream
* const self
= wxConstCast(this, wxPipeInputStream
);
446 // set back to mark Eof as it may have been unset by Ungetch()
447 self
->m_lasterror
= wxSTREAM_EOF
;
453 // function name is misleading, it works with anon pipes as well
454 DWORD rc
= ::PeekNamedPipe
457 NULL
, 0, // ptr to buffer and its size
458 NULL
, // [out] bytes read
459 &nAvailable
, // [out] bytes available
460 NULL
// [out] bytes left
465 if ( ::GetLastError() != ERROR_BROKEN_PIPE
)
468 wxLogLastError(wxT("PeekNamedPipe"));
471 // don't try to continue reading from a pipe if an error occurred or if
472 // it had been closed
473 ::CloseHandle(m_hInput
);
475 self
->m_hInput
= INVALID_HANDLE_VALUE
;
476 self
->m_lasterror
= wxSTREAM_EOF
;
481 return nAvailable
!= 0;
484 size_t wxPipeInputStream::OnSysRead(void *buffer
, size_t len
)
488 m_lasterror
= wxSTREAM_EOF
;
494 if ( !::ReadFile(m_hInput
, buffer
, len
, &bytesRead
, NULL
) )
496 m_lasterror
= ::GetLastError() == ERROR_BROKEN_PIPE
498 : wxSTREAM_READ_ERROR
;
501 // bytesRead is set to 0, as desired, if an error occurred
505 // ----------------------------------------------------------------------------
506 // wxPipeOutputStream
507 // ----------------------------------------------------------------------------
509 wxPipeOutputStream::wxPipeOutputStream(HANDLE hOutput
)
513 // unblock the pipe to prevent deadlocks when we're writing to the pipe
514 // from which the child process can't read because it is writing in its own
516 DWORD mode
= PIPE_READMODE_BYTE
| PIPE_NOWAIT
;
517 if ( !::SetNamedPipeHandleState
521 NULL
, // collection count (we don't set it)
522 NULL
// timeout (we don't set it neither)
525 wxLogLastError(wxT("SetNamedPipeHandleState(PIPE_NOWAIT)"));
529 bool wxPipeOutputStream::Close()
531 return ::CloseHandle(m_hOutput
) != 0;
535 size_t wxPipeOutputStream::OnSysWrite(const void *buffer
, size_t len
)
537 m_lasterror
= wxSTREAM_NO_ERROR
;
539 DWORD totalWritten
= 0;
543 if ( !::WriteFile(m_hOutput
, buffer
, len
, &chunkWritten
, NULL
) )
545 m_lasterror
= ::GetLastError() == ERROR_BROKEN_PIPE
547 : wxSTREAM_WRITE_ERROR
;
554 buffer
= (char *)buffer
+ chunkWritten
;
555 totalWritten
+= chunkWritten
;
562 #endif // wxUSE_STREAMS
564 // ============================================================================
565 // wxExecute functions family
566 // ============================================================================
570 // connect to the given server via DDE and ask it to execute the command
572 wxExecuteDDE(const wxString
& ddeServer
,
573 const wxString
& ddeTopic
,
574 const wxString
& ddeCommand
)
576 bool ok
wxDUMMY_INITIALIZE(false);
580 conn
= client
.MakeConnection(wxEmptyString
, ddeServer
, ddeTopic
);
585 else // connected to DDE server
587 // the added complication here is that although most programs use
588 // XTYP_EXECUTE for their DDE API, some important ones -- like Word
589 // and other MS stuff - use XTYP_REQUEST!
591 // moreover, anotheri mportant program (IE) understands both but
592 // returns an error from Execute() so we must try Request() first
593 // to avoid doing it twice
595 // we're prepared for this one to fail, so don't show errors
598 ok
= conn
->Request(ddeCommand
) != NULL
;
603 // now try execute -- but show the errors
604 ok
= conn
->Execute(ddeCommand
);
613 long wxExecute(const wxString
& cmd
, int flags
, wxProcess
*handler
)
615 wxCHECK_MSG( !cmd
.empty(), 0, wxT("empty command in wxExecute") );
618 // for many reasons, the code below breaks down if it's called from another
619 // thread -- this could be fixed, but as Unix versions don't support this
620 // neither I don't want to waste time on this now
621 wxASSERT_MSG( wxThread::IsMain(),
622 wxT("wxExecute() can be called only from the main thread") );
623 #endif // wxUSE_THREADS
628 // DDE hack: this is really not pretty, but we need to allow this for
629 // transparent handling of DDE servers in wxMimeTypesManager. Usually it
630 // returns the command which should be run to view/open/... a file of the
631 // given type. Sometimes, however, this command just launches the server
632 // and an additional DDE request must be made to really open the file. To
633 // keep all this well hidden from the application, we allow a special form
634 // of command: WX_DDE#<command>#DDE_SERVER#DDE_TOPIC#DDE_COMMAND in which
635 // case we execute just <command> and process the rest below
636 wxString ddeServer
, ddeTopic
, ddeCommand
;
637 static const size_t lenDdePrefix
= 7; // strlen("WX_DDE:")
638 if ( cmd
.Left(lenDdePrefix
) == wxT("WX_DDE#") )
640 // speed up the concatenations below
641 ddeServer
.reserve(256);
642 ddeTopic
.reserve(256);
643 ddeCommand
.reserve(256);
645 const wxChar
*p
= cmd
.c_str() + 7;
646 while ( *p
&& *p
!= wxT('#') )
658 wxFAIL_MSG(wxT("invalid WX_DDE command in wxExecute"));
661 while ( *p
&& *p
!= wxT('#') )
673 wxFAIL_MSG(wxT("invalid WX_DDE command in wxExecute"));
676 while ( *p
&& *p
!= wxT('#') )
688 wxFAIL_MSG(wxT("invalid WX_DDE command in wxExecute"));
696 // if we want to just launch the program and not wait for its
697 // termination, try to execute DDE command right now, it can succeed if
698 // the process is already running - but as it fails if it's not
699 // running, suppress any errors it might generate
700 if ( !(flags
& wxEXEC_SYNC
) )
703 if ( wxExecuteDDE(ddeServer
, ddeTopic
, ddeCommand
) )
705 // a dummy PID - this is a hack, of course, but it's well worth
706 // it as we don't open a new server each time we're called
707 // which would be quite bad
719 // the IO redirection is only supported with wxUSE_STREAMS
720 BOOL redirect
= FALSE
;
722 #if wxUSE_STREAMS && !defined(__WXWINCE__)
723 wxPipe pipeIn
, pipeOut
, pipeErr
;
725 // we'll save here the copy of pipeIn[Write]
726 HANDLE hpipeStdinWrite
= INVALID_HANDLE_VALUE
;
728 // open the pipes to which child process IO will be redirected if needed
729 if ( handler
&& handler
->IsRedirected() )
731 // create pipes for redirecting stdin, stdout and stderr
732 if ( !pipeIn
.Create() || !pipeOut
.Create() || !pipeErr
.Create() )
734 wxLogSysError(_("Failed to redirect the child process IO"));
736 // indicate failure: we need to return different error code
737 // depending on the sync flag
738 return flags
& wxEXEC_SYNC
? -1 : 0;
743 #endif // wxUSE_STREAMS
745 // create the process
750 #if wxUSE_STREAMS && !defined(__WXWINCE__)
753 si
.dwFlags
= STARTF_USESTDHANDLES
;
755 si
.hStdInput
= pipeIn
[wxPipe::Read
];
756 si
.hStdOutput
= pipeOut
[wxPipe::Write
];
757 si
.hStdError
= pipeErr
[wxPipe::Write
];
759 // when the std IO is redirected, we don't show the (console) process
760 // window by default, but this can be overridden by the caller by
761 // specifying wxEXEC_NOHIDE flag
762 if ( !(flags
& wxEXEC_NOHIDE
) )
764 si
.dwFlags
|= STARTF_USESHOWWINDOW
;
765 si
.wShowWindow
= SW_HIDE
;
768 // we must duplicate the handle to the write side of stdin pipe to make
769 // it non inheritable: indeed, we must close the writing end of pipeIn
770 // before launching the child process as otherwise this handle will be
771 // inherited by the child which will never close it and so the pipe
772 // will never be closed and the child will be left stuck in ReadFile()
773 HANDLE pipeInWrite
= pipeIn
.Detach(wxPipe::Write
);
774 if ( !::DuplicateHandle
776 ::GetCurrentProcess(),
778 ::GetCurrentProcess(),
780 0, // desired access: unused here
781 FALSE
, // not inherited
782 DUPLICATE_SAME_ACCESS
// same access as for src handle
785 wxLogLastError(wxT("DuplicateHandle"));
788 ::CloseHandle(pipeInWrite
);
790 #endif // wxUSE_STREAMS
792 PROCESS_INFORMATION pi
;
793 DWORD dwFlags
= CREATE_SUSPENDED
;
796 dwFlags
|= CREATE_DEFAULT_ERROR_MODE
;
798 // we are assuming commands without spaces for now
799 wxString moduleName
= command
.BeforeFirst(wxT(' '));
800 wxString arguments
= command
.AfterFirst(wxT(' '));
803 bool ok
= ::CreateProcess
805 // WinCE requires appname to be non null
806 // Win32 allows for null
809 moduleName
.wx_str(),// application name
811 arguments
.wx_str(), // arguments
813 NULL
, // application name (use only cmd line)
815 command
.wx_str(), // full command line
817 NULL
, // security attributes: defaults for both
818 NULL
, // the process and its main thread
819 redirect
, // inherit handles if we use pipes
820 dwFlags
, // process creation flags
821 NULL
, // environment (use the same)
822 NULL
, // current directory (use the same)
823 &si
, // startup info (unused here)
827 #if wxUSE_STREAMS && !defined(__WXWINCE__)
828 // we can close the pipe ends used by child anyhow
831 ::CloseHandle(pipeIn
.Detach(wxPipe::Read
));
832 ::CloseHandle(pipeOut
.Detach(wxPipe::Write
));
833 ::CloseHandle(pipeErr
.Detach(wxPipe::Write
));
835 #endif // wxUSE_STREAMS
839 #if wxUSE_STREAMS && !defined(__WXWINCE__)
840 // close the other handles too
843 ::CloseHandle(pipeOut
.Detach(wxPipe::Read
));
844 ::CloseHandle(pipeErr
.Detach(wxPipe::Read
));
846 #endif // wxUSE_STREAMS
848 wxLogSysError(_("Execution of command '%s' failed"), command
.c_str());
850 return flags
& wxEXEC_SYNC
? -1 : 0;
853 #if wxUSE_STREAMS && !defined(__WXWINCE__)
854 // the input buffer bufOut is connected to stdout, this is why it is
855 // called bufOut and not bufIn
856 wxStreamTempInputBuffer bufOut
,
861 // We can now initialize the wxStreams
863 outStream
= new wxPipeInputStream(pipeOut
.Detach(wxPipe::Read
));
865 errStream
= new wxPipeInputStream(pipeErr
.Detach(wxPipe::Read
));
867 inStream
= new wxPipeOutputStream(hpipeStdinWrite
);
869 handler
->SetPipeStreams(outStream
, inStream
, errStream
);
871 bufOut
.Init(outStream
);
872 bufErr
.Init(errStream
);
874 #endif // wxUSE_STREAMS
876 // create a hidden window to receive notification about process
878 HWND hwnd
= wxCreateHiddenWindow
880 &gs_classForHiddenWindow
,
881 wxMSWEXEC_WNDCLASSNAME
,
882 (WNDPROC
)wxExecuteWindowCbk
885 wxASSERT_MSG( hwnd
, wxT("can't create a hidden window for wxExecute") );
888 wxExecuteData
*data
= new wxExecuteData
;
889 data
->hProcess
= pi
.hProcess
;
890 data
->dwProcessId
= pi
.dwProcessId
;
892 data
->state
= (flags
& wxEXEC_SYNC
) != 0;
893 if ( flags
& wxEXEC_SYNC
)
895 // handler may be !NULL for capturing program output, but we don't use
896 // it wxExecuteData struct in this case
897 data
->handler
= NULL
;
901 // may be NULL or not
902 data
->handler
= handler
;
905 handler
->SetPid(pi
.dwProcessId
);
909 HANDLE hThread
= ::CreateThread(NULL
,
916 // resume process we created now - whether the thread creation succeeded or
918 if ( ::ResumeThread(pi
.hThread
) == (DWORD
)-1 )
920 // ignore it - what can we do?
921 wxLogLastError(wxT("ResumeThread in wxExecute"));
924 // close unneeded handle
925 if ( !::CloseHandle(pi
.hThread
) )
927 wxLogLastError(wxT("CloseHandle(hThread)"));
932 wxLogLastError(wxT("CreateThread in wxExecute"));
937 // the process still started up successfully...
938 return pi
.dwProcessId
;
941 gs_asyncThreads
.push_back(hThread
);
943 #if wxUSE_IPC && !defined(__WXWINCE__)
944 // second part of DDE hack: now establish the DDE conversation with the
945 // just launched process
946 if ( !ddeServer
.empty() )
950 // give the process the time to init itself
952 // we use a very big timeout hoping that WaitForInputIdle() will return
953 // much sooner, but not INFINITE just in case the process hangs
954 // completely - like this we will regain control sooner or later
955 switch ( ::WaitForInputIdle(pi
.hProcess
, 10000 /* 10 seconds */) )
958 wxFAIL_MSG( wxT("unexpected WaitForInputIdle() return code") );
962 wxLogLastError(wxT("WaitForInputIdle() in wxExecute"));
965 wxLogDebug(wxT("Timeout too small in WaitForInputIdle"));
971 // ok, process ready to accept DDE requests
972 ok
= wxExecuteDDE(ddeServer
, ddeTopic
, ddeCommand
);
977 wxLogDebug(wxT("Failed to send DDE request to the process \"%s\"."),
983 if ( !(flags
& wxEXEC_SYNC
) )
985 // clean up will be done when the process terminates
988 return pi
.dwProcessId
;
991 wxAppTraits
*traits
= wxTheApp
? wxTheApp
->GetTraits() : NULL
;
992 wxCHECK_MSG( traits
, -1, wxT("no wxAppTraits in wxExecute()?") );
995 if ( !(flags
& wxEXEC_NODISABLE
) )
997 // disable all app windows while waiting for the child process to finish
998 cookie
= traits
->BeforeChildWaitLoop();
1001 // wait until the child process terminates
1002 while ( data
->state
)
1004 #if wxUSE_STREAMS && !defined(__WXWINCE__)
1005 if ( !bufOut
.Update() && !bufErr
.Update() )
1006 #endif // wxUSE_STREAMS
1008 // don't eat 100% of the CPU -- ugly but anything else requires
1009 // real async IO which we don't have for the moment
1013 // we must always process messages for our hidden window or we'd never
1014 // get wxWM_PROC_TERMINATED and so this loop would never terminate
1016 ::PeekMessage(&msg
, data
->hWnd
, 0, 0, PM_REMOVE
);
1018 // we may also need to process messages for all the other application
1020 if ( !(flags
& wxEXEC_NOEVENTS
) )
1022 wxEventLoopBase
* const loop
= wxEventLoopBase::GetActive();
1028 if ( !(flags
& wxEXEC_NODISABLE
) )
1030 // reenable disabled windows back
1031 traits
->AfterChildWaitLoop(cookie
);
1034 DWORD dwExitCode
= data
->dwExitCode
;
1037 // return the exit code
1041 template <typename CharType
>
1042 long wxExecuteImpl(CharType
**argv
, int flags
, wxProcess
*handler
)
1045 command
.reserve(1024);
1055 // we need to quote empty arguments, otherwise they'd just
1061 // escape any quotes present in the string to avoid interfering
1062 // with the command line parsing in the child process
1063 arg
.Replace("\"", "\\\"", true /* replace all */);
1065 // and quote any arguments containing the spaces to prevent them from
1066 // being broken down
1067 quote
= arg
.find_first_of(" \t") != wxString::npos
;
1071 command
+= '\"' + arg
+ '\"';
1081 return wxExecute(command
, flags
, handler
);
1084 long wxExecute(char **argv
, int flags
, wxProcess
*handler
)
1086 return wxExecuteImpl(argv
, flags
, handler
);
1091 long wxExecute(wchar_t **argv
, int flags
, wxProcess
*handler
)
1093 return wxExecuteImpl(argv
, flags
, handler
);
1096 #endif // wxUSE_UNICODE