]>
Commit | Line | Data |
---|---|---|
32592631 | 1 | ///////////////////////////////////////////////////////////////////////////// |
b568d04f | 2 | // Name: msw/utilsexec.cpp |
79066131 | 3 | // Purpose: wxExecute implementation for MSW |
32592631 GL |
4 | // Author: Julian Smart |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
77ffb593 | 8 | // Copyright: (c) 1998-2002 wxWidgets dev team |
65571936 | 9 | // Licence: wxWindows licence |
32592631 GL |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
b568d04f VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
14f355c2 | 20 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
b568d04f | 21 | #pragma implementation |
32592631 GL |
22 | #endif |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
b568d04f | 28 | #pragma hdrstop |
32592631 GL |
29 | #endif |
30 | ||
31 | #ifndef WX_PRECOMP | |
b568d04f VZ |
32 | #include "wx/utils.h" |
33 | #include "wx/app.h" | |
34 | #include "wx/intl.h" | |
068a7cfe | 35 | #include "wx/log.h" |
2ae8a353 | 36 | #endif |
32592631 | 37 | |
eccd1992 VZ |
38 | #include "wx/stream.h" |
39 | #include "wx/process.h" | |
dbeac4bd | 40 | |
e2478fde VZ |
41 | #include "wx/apptrait.h" |
42 | ||
eccd1992 VZ |
43 | #include "wx/module.h" |
44 | ||
32592631 | 45 | #include "wx/msw/private.h" |
dbeac4bd | 46 | |
32592631 GL |
47 | #include <ctype.h> |
48 | ||
4676948b | 49 | #if !defined(__GNUWIN32__) && !defined(__SALFORDC__) && !defined(__WXMICROWIN__) && !defined(__WXWINCE__) |
b568d04f | 50 | #include <direct.h> |
17dff81c | 51 | #ifndef __MWERKS__ |
b568d04f | 52 | #include <dos.h> |
32592631 | 53 | #endif |
17dff81c | 54 | #endif |
32592631 | 55 | |
b39dbf34 | 56 | #if defined(__GNUWIN32__) |
b568d04f VZ |
57 | #include <sys/unistd.h> |
58 | #include <sys/stat.h> | |
57c208c5 | 59 | #endif |
32592631 | 60 | |
eccd1992 VZ |
61 | #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__) |
62 | #ifndef __UNIX__ | |
63 | #include <io.h> | |
64 | #endif | |
32592631 | 65 | |
eccd1992 VZ |
66 | #ifndef __GNUWIN32__ |
67 | #include <shellapi.h> | |
68 | #endif | |
32592631 GL |
69 | #endif |
70 | ||
71 | #include <stdio.h> | |
72 | #include <stdlib.h> | |
73 | #include <string.h> | |
74 | #ifndef __WATCOMC__ | |
3f4a0c5b VZ |
75 | #if !(defined(_MSC_VER) && (_MSC_VER > 800)) |
76 | #include <errno.h> | |
77 | #endif | |
32592631 GL |
78 | #endif |
79 | #include <stdarg.h> | |
80 | ||
731dd422 VZ |
81 | #if wxUSE_IPC |
82 | #include "wx/dde.h" // for WX_DDE hack in wxExecute | |
83 | #endif // wxUSE_IPC | |
5bd3a2da | 84 | |
eccd1992 | 85 | // implemented in utils.cpp |
487f2d58 | 86 | extern "C" WXDLLIMPEXP_BASE HWND |
eccd1992 VZ |
87 | wxCreateHiddenWindow(LPCTSTR *pclassname, LPCTSTR classname, WNDPROC wndproc); |
88 | ||
b568d04f VZ |
89 | // ---------------------------------------------------------------------------- |
90 | // constants | |
91 | // ---------------------------------------------------------------------------- | |
92 | ||
cb6827a8 VZ |
93 | // this message is sent when the process we're waiting for terminates |
94 | #define wxWM_PROC_TERMINATED (WM_USER + 10000) | |
32592631 | 95 | |
b568d04f VZ |
96 | // ---------------------------------------------------------------------------- |
97 | // this module globals | |
98 | // ---------------------------------------------------------------------------- | |
99 | ||
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 | |
eccd1992 | 103 | static const wxChar *wxMSWEXEC_WNDCLASSNAME = wxT("_wxExecute_Internal_Class"); |
b568d04f VZ |
104 | static const wxChar *gs_classForHiddenWindow = NULL; |
105 | ||
106 | // ---------------------------------------------------------------------------- | |
107 | // private types | |
108 | // ---------------------------------------------------------------------------- | |
109 | ||
cb6827a8 VZ |
110 | // structure describing the process we're being waiting for |
111 | struct wxExecuteData | |
112 | { | |
113 | public: | |
114 | ~wxExecuteData() | |
115 | { | |
116 | if ( !::CloseHandle(hProcess) ) | |
117 | { | |
f6bcfd97 | 118 | wxLogLastError(wxT("CloseHandle(hProcess)")); |
cb6827a8 VZ |
119 | } |
120 | } | |
121 | ||
122 | HWND hWnd; // window to send wxWM_PROC_TERMINATED to | |
123 | HANDLE hProcess; // handle of the process | |
124 | DWORD dwProcessId; // pid of the process | |
125 | wxProcess *handler; | |
126 | DWORD dwExitCode; // the exit code of the process | |
127 | bool state; // set to FALSE when the process finishes | |
32592631 GL |
128 | }; |
129 | ||
eccd1992 VZ |
130 | class wxExecuteModule : public wxModule |
131 | { | |
132 | public: | |
133 | virtual bool OnInit() { return true; } | |
134 | virtual void OnExit() | |
135 | { | |
136 | if ( *gs_classForHiddenWindow ) | |
137 | { | |
138 | if ( !::UnregisterClass(wxMSWEXEC_WNDCLASSNAME, wxGetInstance()) ) | |
139 | { | |
140 | wxLogLastError(_T("UnregisterClass(wxExecClass)")); | |
141 | } | |
142 | ||
143 | gs_classForHiddenWindow = NULL; | |
144 | } | |
145 | } | |
146 | ||
147 | private: | |
148 | DECLARE_DYNAMIC_CLASS(wxExecuteModule) | |
149 | }; | |
150 | ||
151 | #if wxUSE_STREAMS && !defined(__WXWINCE__) | |
8b33ae2d | 152 | |
8b33ae2d GL |
153 | // ---------------------------------------------------------------------------- |
154 | // wxPipeStreams | |
155 | // ---------------------------------------------------------------------------- | |
156 | ||
f6bcfd97 BP |
157 | class wxPipeInputStream: public wxInputStream |
158 | { | |
8b33ae2d GL |
159 | public: |
160 | wxPipeInputStream(HANDLE hInput); | |
79066131 | 161 | virtual ~wxPipeInputStream(); |
8b33ae2d | 162 | |
79066131 VZ |
163 | // returns TRUE if the pipe is still opened |
164 | bool IsOpened() const { return m_hInput != INVALID_HANDLE_VALUE; } | |
165 | ||
166 | // returns TRUE if there is any data to be read from the pipe | |
2b5f62a0 | 167 | virtual bool CanRead() const; |
f6bcfd97 | 168 | |
8b33ae2d GL |
169 | protected: |
170 | size_t OnSysRead(void *buffer, size_t len); | |
171 | ||
172 | protected: | |
173 | HANDLE m_hInput; | |
22f3361e VZ |
174 | |
175 | DECLARE_NO_COPY_CLASS(wxPipeInputStream) | |
8b33ae2d GL |
176 | }; |
177 | ||
f6bcfd97 BP |
178 | class wxPipeOutputStream: public wxOutputStream |
179 | { | |
8b33ae2d GL |
180 | public: |
181 | wxPipeOutputStream(HANDLE hOutput); | |
79066131 | 182 | virtual ~wxPipeOutputStream(); |
8b33ae2d GL |
183 | |
184 | protected: | |
185 | size_t OnSysWrite(const void *buffer, size_t len); | |
186 | ||
187 | protected: | |
188 | HANDLE m_hOutput; | |
22f3361e VZ |
189 | |
190 | DECLARE_NO_COPY_CLASS(wxPipeOutputStream) | |
8b33ae2d GL |
191 | }; |
192 | ||
79066131 VZ |
193 | // define this to let wxexec.cpp know that we know what we're doing |
194 | #define _WX_USED_BY_WXEXECUTE_ | |
195 | #include "../common/execcmn.cpp" | |
196 | ||
197 | // ---------------------------------------------------------------------------- | |
198 | // wxPipe represents a Win32 anonymous pipe | |
199 | // ---------------------------------------------------------------------------- | |
200 | ||
201 | class wxPipe | |
202 | { | |
203 | public: | |
204 | // the symbolic names for the pipe ends | |
205 | enum Direction | |
206 | { | |
207 | Read, | |
208 | Write | |
209 | }; | |
210 | ||
211 | // default ctor doesn't do anything | |
212 | wxPipe() { m_handles[Read] = m_handles[Write] = INVALID_HANDLE_VALUE; } | |
213 | ||
214 | // create the pipe, return TRUE if ok, FALSE on error | |
215 | bool Create() | |
216 | { | |
217 | // default secutiry attributes | |
218 | SECURITY_ATTRIBUTES security; | |
219 | ||
220 | security.nLength = sizeof(security); | |
221 | security.lpSecurityDescriptor = NULL; | |
222 | security.bInheritHandle = TRUE; // to pass it to the child | |
223 | ||
224 | if ( !::CreatePipe(&m_handles[0], &m_handles[1], &security, 0) ) | |
225 | { | |
226 | wxLogSysError(_("Failed to create an anonymous pipe")); | |
227 | ||
228 | return FALSE; | |
229 | } | |
230 | ||
231 | return TRUE; | |
232 | } | |
233 | ||
234 | // return TRUE if we were created successfully | |
235 | bool IsOk() const { return m_handles[Read] != INVALID_HANDLE_VALUE; } | |
236 | ||
237 | // return the descriptor for one of the pipe ends | |
82baa5e4 | 238 | HANDLE operator[](Direction which) const { return m_handles[which]; } |
79066131 VZ |
239 | |
240 | // detach a descriptor, meaning that the pipe dtor won't close it, and | |
241 | // return it | |
242 | HANDLE Detach(Direction which) | |
243 | { | |
79066131 VZ |
244 | HANDLE handle = m_handles[which]; |
245 | m_handles[which] = INVALID_HANDLE_VALUE; | |
246 | ||
247 | return handle; | |
248 | } | |
249 | ||
250 | // close the pipe descriptors | |
251 | void Close() | |
252 | { | |
253 | for ( size_t n = 0; n < WXSIZEOF(m_handles); n++ ) | |
254 | { | |
255 | if ( m_handles[n] != INVALID_HANDLE_VALUE ) | |
256 | { | |
257 | ::CloseHandle(m_handles[n]); | |
258 | m_handles[n] = INVALID_HANDLE_VALUE; | |
259 | } | |
260 | } | |
261 | } | |
262 | ||
263 | // dtor closes the pipe descriptors | |
264 | ~wxPipe() { Close(); } | |
265 | ||
266 | private: | |
267 | HANDLE m_handles[2]; | |
268 | }; | |
269 | ||
270 | #endif // wxUSE_STREAMS | |
271 | ||
272 | // ============================================================================ | |
273 | // implementation | |
274 | // ============================================================================ | |
275 | ||
79066131 VZ |
276 | // ---------------------------------------------------------------------------- |
277 | // process termination detecting support | |
278 | // ---------------------------------------------------------------------------- | |
279 | ||
280 | // thread function for the thread monitoring the process termination | |
281 | static DWORD __stdcall wxExecuteThread(void *arg) | |
282 | { | |
45d5a0c6 | 283 | wxExecuteData * const data = (wxExecuteData *)arg; |
79066131 VZ |
284 | |
285 | if ( ::WaitForSingleObject(data->hProcess, INFINITE) != WAIT_OBJECT_0 ) | |
286 | { | |
287 | wxLogDebug(_T("Waiting for the process termination failed!")); | |
288 | } | |
289 | ||
290 | // get the exit code | |
291 | if ( !::GetExitCodeProcess(data->hProcess, &data->dwExitCode) ) | |
292 | { | |
293 | wxLogLastError(wxT("GetExitCodeProcess")); | |
294 | } | |
295 | ||
296 | wxASSERT_MSG( data->dwExitCode != STILL_ACTIVE, | |
297 | wxT("process should have terminated") ); | |
298 | ||
299 | // send a message indicating process termination to the window | |
300 | ::SendMessage(data->hWnd, wxWM_PROC_TERMINATED, 0, (LPARAM)data); | |
301 | ||
302 | return 0; | |
303 | } | |
304 | ||
305 | // window procedure of a hidden window which is created just to receive | |
306 | // the notification message when a process exits | |
307 | LRESULT APIENTRY _EXPORT wxExecuteWindowCbk(HWND hWnd, UINT message, | |
308 | WPARAM wParam, LPARAM lParam) | |
309 | { | |
310 | if ( message == wxWM_PROC_TERMINATED ) | |
311 | { | |
312 | DestroyWindow(hWnd); // we don't need it any more | |
313 | ||
45d5a0c6 | 314 | wxExecuteData * const data = (wxExecuteData *)lParam; |
79066131 VZ |
315 | if ( data->handler ) |
316 | { | |
317 | data->handler->OnTerminate((int)data->dwProcessId, | |
318 | (int)data->dwExitCode); | |
319 | } | |
320 | ||
321 | if ( data->state ) | |
322 | { | |
323 | // we're executing synchronously, tell the waiting thread | |
324 | // that the process finished | |
325 | data->state = 0; | |
326 | } | |
327 | else | |
328 | { | |
329 | // asynchronous execution - we should do the clean up | |
330 | delete data; | |
331 | } | |
332 | ||
333 | return 0; | |
334 | } | |
335 | else | |
336 | { | |
45d5a0c6 | 337 | return ::DefWindowProc(hWnd, message, wParam, lParam); |
79066131 VZ |
338 | } |
339 | } | |
340 | ||
341 | // ============================================================================ | |
342 | // implementation of IO redirection support classes | |
343 | // ============================================================================ | |
344 | ||
4676948b | 345 | #if wxUSE_STREAMS && !defined(__WXWINCE__) |
79066131 VZ |
346 | |
347 | // ---------------------------------------------------------------------------- | |
348 | // wxPipeInputStreams | |
349 | // ---------------------------------------------------------------------------- | |
8b33ae2d GL |
350 | |
351 | wxPipeInputStream::wxPipeInputStream(HANDLE hInput) | |
352 | { | |
353 | m_hInput = hInput; | |
cd6ce4a9 | 354 | } |
8b33ae2d GL |
355 | |
356 | wxPipeInputStream::~wxPipeInputStream() | |
357 | { | |
79066131 VZ |
358 | if ( m_hInput != INVALID_HANDLE_VALUE ) |
359 | ::CloseHandle(m_hInput); | |
8b33ae2d GL |
360 | } |
361 | ||
2b5f62a0 | 362 | bool wxPipeInputStream::CanRead() const |
8b33ae2d | 363 | { |
79066131 VZ |
364 | if ( !IsOpened() ) |
365 | return FALSE; | |
366 | ||
f6bcfd97 BP |
367 | DWORD nAvailable; |
368 | ||
369 | // function name is misleading, it works with anon pipes as well | |
370 | DWORD rc = ::PeekNamedPipe | |
371 | ( | |
372 | m_hInput, // handle | |
373 | NULL, 0, // ptr to buffer and its size | |
374 | NULL, // [out] bytes read | |
375 | &nAvailable, // [out] bytes available | |
376 | NULL // [out] bytes left | |
377 | ); | |
378 | ||
379 | if ( !rc ) | |
380 | { | |
381 | if ( ::GetLastError() != ERROR_BROKEN_PIPE ) | |
382 | { | |
383 | // unexpected error | |
384 | wxLogLastError(_T("PeekNamedPipe")); | |
385 | } | |
8b33ae2d | 386 | |
f6bcfd97 BP |
387 | // don't try to continue reading from a pipe if an error occured or if |
388 | // it had been closed | |
79066131 VZ |
389 | ::CloseHandle(m_hInput); |
390 | ||
2b5f62a0 | 391 | wxPipeInputStream *self = wxConstCast(this, wxPipeInputStream); |
79066131 | 392 | |
2b5f62a0 VZ |
393 | self->m_hInput = INVALID_HANDLE_VALUE; |
394 | self->m_lasterror = wxSTREAM_EOF; | |
395 | ||
396 | nAvailable = 0; | |
f6bcfd97 | 397 | } |
79066131 VZ |
398 | |
399 | return nAvailable != 0; | |
f6bcfd97 BP |
400 | } |
401 | ||
402 | size_t wxPipeInputStream::OnSysRead(void *buffer, size_t len) | |
403 | { | |
2b5f62a0 | 404 | if ( !IsOpened() ) |
79066131 VZ |
405 | { |
406 | m_lasterror = wxSTREAM_EOF; | |
407 | ||
f6bcfd97 | 408 | return 0; |
79066131 VZ |
409 | } |
410 | ||
f6bcfd97 BP |
411 | DWORD bytesRead; |
412 | if ( !::ReadFile(m_hInput, buffer, len, &bytesRead, NULL) ) | |
413 | { | |
2b5f62a0 VZ |
414 | m_lasterror = ::GetLastError() == ERROR_BROKEN_PIPE |
415 | ? wxSTREAM_EOF | |
416 | : wxSTREAM_READ_ERROR; | |
8b33ae2d | 417 | } |
f6bcfd97 | 418 | |
2b5f62a0 | 419 | // bytesRead is set to 0, as desired, if an error occured |
8b33ae2d GL |
420 | return bytesRead; |
421 | } | |
422 | ||
79066131 | 423 | // ---------------------------------------------------------------------------- |
8b33ae2d | 424 | // wxPipeOutputStream |
79066131 | 425 | // ---------------------------------------------------------------------------- |
8b33ae2d GL |
426 | |
427 | wxPipeOutputStream::wxPipeOutputStream(HANDLE hOutput) | |
428 | { | |
429 | m_hOutput = hOutput; | |
cd6ce4a9 | 430 | } |
8b33ae2d GL |
431 | |
432 | wxPipeOutputStream::~wxPipeOutputStream() | |
433 | { | |
434 | ::CloseHandle(m_hOutput); | |
435 | } | |
436 | ||
437 | size_t wxPipeOutputStream::OnSysWrite(const void *buffer, size_t len) | |
438 | { | |
2b5f62a0 | 439 | DWORD bytesWritten; |
8b33ae2d | 440 | |
2b5f62a0 VZ |
441 | m_lasterror = wxSTREAM_NO_ERROR; |
442 | if ( !::WriteFile(m_hOutput, buffer, len, &bytesWritten, NULL) ) | |
f6bcfd97 | 443 | { |
2b5f62a0 VZ |
444 | m_lasterror = ::GetLastError() == ERROR_BROKEN_PIPE |
445 | ? wxSTREAM_EOF | |
446 | : wxSTREAM_WRITE_ERROR; | |
8b33ae2d | 447 | } |
f6bcfd97 | 448 | |
2b5f62a0 | 449 | return bytesWritten; |
8b33ae2d GL |
450 | } |
451 | ||
79066131 VZ |
452 | #endif // wxUSE_STREAMS |
453 | ||
b568d04f | 454 | // ============================================================================ |
79066131 | 455 | // wxExecute functions family |
b568d04f | 456 | // ============================================================================ |
5260b1c5 | 457 | |
ca289436 VZ |
458 | #if wxUSE_IPC |
459 | ||
460 | // connect to the given server via DDE and ask it to execute the command | |
461 | static bool wxExecuteDDE(const wxString& ddeServer, | |
462 | const wxString& ddeTopic, | |
463 | const wxString& ddeCommand) | |
464 | { | |
999836aa | 465 | bool ok wxDUMMY_INITIALIZE(false); |
ca289436 VZ |
466 | |
467 | wxDDEClient client; | |
fda7962d | 468 | wxConnectionBase *conn = client.MakeConnection(wxEmptyString, |
ca289436 VZ |
469 | ddeServer, |
470 | ddeTopic); | |
471 | if ( !conn ) | |
472 | { | |
473 | ok = FALSE; | |
474 | } | |
475 | else // connected to DDE server | |
476 | { | |
4dd03db9 VZ |
477 | // the added complication here is that although most programs use |
478 | // XTYP_EXECUTE for their DDE API, some important ones -- like Word | |
479 | // and other MS stuff - use XTYP_REQUEST! | |
ca289436 | 480 | // |
4dd03db9 VZ |
481 | // moreover, anotheri mportant program (IE) understands both but |
482 | // returns an error from Execute() so we must try Request() first | |
483 | // to avoid doing it twice | |
ca289436 | 484 | { |
4dd03db9 | 485 | // we're prepared for this one to fail, so don't show errors |
ca289436 | 486 | wxLogNull noErrors; |
4dd03db9 VZ |
487 | |
488 | ok = conn->Request(ddeCommand) != NULL; | |
ca289436 VZ |
489 | } |
490 | ||
491 | if ( !ok ) | |
492 | { | |
4dd03db9 VZ |
493 | // now try execute -- but show the errors |
494 | ok = conn->Execute(ddeCommand); | |
ca289436 VZ |
495 | } |
496 | } | |
497 | ||
498 | return ok; | |
499 | } | |
500 | ||
501 | #endif // wxUSE_IPC | |
502 | ||
fbf456aa | 503 | long wxExecute(const wxString& cmd, int flags, wxProcess *handler) |
32592631 | 504 | { |
5bd3a2da VZ |
505 | wxCHECK_MSG( !!cmd, 0, wxT("empty command in wxExecute") ); |
506 | ||
647b8e37 VZ |
507 | #if wxUSE_THREADS |
508 | // for many reasons, the code below breaks down if it's called from another | |
509 | // thread -- this could be fixed, but as Unix versions don't support this | |
510 | // neither I don't want to waste time on this now | |
511 | wxASSERT_MSG( wxThread::IsMain(), | |
512 | _T("wxExecute() can be called only from the main thread") ); | |
513 | #endif // wxUSE_THREADS | |
514 | ||
039f62f4 | 515 | wxString command; |
6ba63600 | 516 | |
731dd422 | 517 | #if wxUSE_IPC |
5bd3a2da VZ |
518 | // DDE hack: this is really not pretty, but we need to allow this for |
519 | // transparent handling of DDE servers in wxMimeTypesManager. Usually it | |
520 | // returns the command which should be run to view/open/... a file of the | |
521 | // given type. Sometimes, however, this command just launches the server | |
522 | // and an additional DDE request must be made to really open the file. To | |
523 | // keep all this well hidden from the application, we allow a special form | |
6ba63600 | 524 | // of command: WX_DDE#<command>#DDE_SERVER#DDE_TOPIC#DDE_COMMAND in which |
5bd3a2da | 525 | // case we execute just <command> and process the rest below |
039f62f4 | 526 | wxString ddeServer, ddeTopic, ddeCommand; |
5bd3a2da VZ |
527 | static const size_t lenDdePrefix = 7; // strlen("WX_DDE:") |
528 | if ( cmd.Left(lenDdePrefix) == _T("WX_DDE#") ) | |
529 | { | |
ca289436 VZ |
530 | // speed up the concatenations below |
531 | ddeServer.reserve(256); | |
532 | ddeTopic.reserve(256); | |
533 | ddeCommand.reserve(256); | |
534 | ||
5bd3a2da VZ |
535 | const wxChar *p = cmd.c_str() + 7; |
536 | while ( *p && *p != _T('#') ) | |
537 | { | |
538 | command += *p++; | |
539 | } | |
540 | ||
541 | if ( *p ) | |
542 | { | |
543 | // skip '#' | |
544 | p++; | |
545 | } | |
546 | else | |
547 | { | |
548 | wxFAIL_MSG(_T("invalid WX_DDE command in wxExecute")); | |
549 | } | |
550 | ||
551 | while ( *p && *p != _T('#') ) | |
552 | { | |
553 | ddeServer += *p++; | |
554 | } | |
555 | ||
556 | if ( *p ) | |
557 | { | |
558 | // skip '#' | |
559 | p++; | |
560 | } | |
561 | else | |
562 | { | |
563 | wxFAIL_MSG(_T("invalid WX_DDE command in wxExecute")); | |
564 | } | |
565 | ||
566 | while ( *p && *p != _T('#') ) | |
567 | { | |
568 | ddeTopic += *p++; | |
569 | } | |
570 | ||
571 | if ( *p ) | |
572 | { | |
573 | // skip '#' | |
574 | p++; | |
575 | } | |
576 | else | |
577 | { | |
578 | wxFAIL_MSG(_T("invalid WX_DDE command in wxExecute")); | |
579 | } | |
580 | ||
581 | while ( *p ) | |
582 | { | |
583 | ddeCommand += *p++; | |
584 | } | |
6ba63600 | 585 | |
ca289436 VZ |
586 | // if we want to just launch the program and not wait for its |
587 | // termination, try to execute DDE command right now, it can succeed if | |
588 | // the process is already running - but as it fails if it's not | |
589 | // running, suppress any errors it might generate | |
fbf456aa | 590 | if ( !(flags & wxEXEC_SYNC) ) |
6ba63600 | 591 | { |
ca289436 VZ |
592 | wxLogNull noErrors; |
593 | if ( wxExecuteDDE(ddeServer, ddeTopic, ddeCommand) ) | |
594 | { | |
595 | // a dummy PID - this is a hack, of course, but it's well worth | |
596 | // it as we don't open a new server each time we're called | |
597 | // which would be quite bad | |
598 | return -1; | |
599 | } | |
6ba63600 | 600 | } |
5bd3a2da VZ |
601 | } |
602 | else | |
731dd422 | 603 | #endif // wxUSE_IPC |
5bd3a2da VZ |
604 | { |
605 | // no DDE | |
606 | command = cmd; | |
607 | } | |
32592631 | 608 | |
f6bcfd97 BP |
609 | // the IO redirection is only supported with wxUSE_STREAMS |
610 | BOOL redirect = FALSE; | |
79066131 | 611 | |
4676948b | 612 | #if wxUSE_STREAMS && !defined(__WXWINCE__) |
79066131 VZ |
613 | wxPipe pipeIn, pipeOut, pipeErr; |
614 | ||
615 | // we'll save here the copy of pipeIn[Write] | |
33ac7e6f | 616 | HANDLE hpipeStdinWrite = INVALID_HANDLE_VALUE; |
8b33ae2d | 617 | |
cd6ce4a9 | 618 | // open the pipes to which child process IO will be redirected if needed |
cd6ce4a9 VZ |
619 | if ( handler && handler->IsRedirected() ) |
620 | { | |
79066131 VZ |
621 | // create pipes for redirecting stdin, stdout and stderr |
622 | if ( !pipeIn.Create() || !pipeOut.Create() || !pipeErr.Create() ) | |
cd6ce4a9 | 623 | { |
79066131 | 624 | wxLogSysError(_("Failed to redirect the child process IO")); |
8b33ae2d | 625 | |
fbf456aa VZ |
626 | // indicate failure: we need to return different error code |
627 | // depending on the sync flag | |
628 | return flags & wxEXEC_SYNC ? -1 : 0; | |
8b33ae2d GL |
629 | } |
630 | ||
f6bcfd97 | 631 | redirect = TRUE; |
8b33ae2d | 632 | } |
f6bcfd97 | 633 | #endif // wxUSE_STREAMS |
5bd3a2da | 634 | |
cb6827a8 VZ |
635 | // create the process |
636 | STARTUPINFO si; | |
11c7d5b6 | 637 | wxZeroMemory(si); |
cb6827a8 VZ |
638 | si.cb = sizeof(si); |
639 | ||
4676948b | 640 | #if wxUSE_STREAMS && !defined(__WXWINCE__) |
f6bcfd97 | 641 | if ( redirect ) |
cb6827a8 | 642 | { |
fbf456aa | 643 | si.dwFlags = STARTF_USESTDHANDLES; |
f6bcfd97 | 644 | |
79066131 VZ |
645 | si.hStdInput = pipeIn[wxPipe::Read]; |
646 | si.hStdOutput = pipeOut[wxPipe::Write]; | |
647 | si.hStdError = pipeErr[wxPipe::Write]; | |
f6bcfd97 | 648 | |
fbf456aa VZ |
649 | // when the std IO is redirected, we don't show the (console) process |
650 | // window by default, but this can be overridden by the caller by | |
651 | // specifying wxEXEC_NOHIDE flag | |
652 | if ( !(flags & wxEXEC_NOHIDE) ) | |
653 | { | |
654 | si.dwFlags |= STARTF_USESHOWWINDOW; | |
655 | si.wShowWindow = SW_HIDE; | |
656 | } | |
f6bcfd97 BP |
657 | |
658 | // we must duplicate the handle to the write side of stdin pipe to make | |
79066131 VZ |
659 | // it non inheritable: indeed, we must close the writing end of pipeIn |
660 | // before launching the child process as otherwise this handle will be | |
f6bcfd97 BP |
661 | // inherited by the child which will never close it and so the pipe |
662 | // will never be closed and the child will be left stuck in ReadFile() | |
79066131 | 663 | HANDLE pipeInWrite = pipeIn.Detach(wxPipe::Write); |
f6bcfd97 BP |
664 | if ( !::DuplicateHandle |
665 | ( | |
79066131 VZ |
666 | ::GetCurrentProcess(), |
667 | pipeInWrite, | |
668 | ::GetCurrentProcess(), | |
f6bcfd97 BP |
669 | &hpipeStdinWrite, |
670 | 0, // desired access: unused here | |
671 | FALSE, // not inherited | |
672 | DUPLICATE_SAME_ACCESS // same access as for src handle | |
673 | ) ) | |
cd6ce4a9 | 674 | { |
f6bcfd97 | 675 | wxLogLastError(_T("DuplicateHandle")); |
8b33ae2d | 676 | } |
cd6ce4a9 | 677 | |
79066131 | 678 | ::CloseHandle(pipeInWrite); |
f6bcfd97 BP |
679 | } |
680 | #endif // wxUSE_STREAMS | |
cb6827a8 | 681 | |
f6bcfd97 | 682 | PROCESS_INFORMATION pi; |
4676948b JS |
683 | DWORD dwFlags = CREATE_SUSPENDED; |
684 | #ifndef __WXWINCE__ | |
685 | dwFlags |= CREATE_DEFAULT_ERROR_MODE ; | |
686 | #endif | |
f6bcfd97 BP |
687 | |
688 | bool ok = ::CreateProcess | |
689 | ( | |
690 | NULL, // application name (use only cmd line) | |
691 | (wxChar *) | |
692 | command.c_str(), // full command line | |
693 | NULL, // security attributes: defaults for both | |
694 | NULL, // the process and its main thread | |
695 | redirect, // inherit handles if we use pipes | |
696 | dwFlags, // process creation flags | |
697 | NULL, // environment (use the same) | |
698 | NULL, // current directory (use the same) | |
699 | &si, // startup info (unused here) | |
700 | &pi // process info | |
701 | ) != 0; | |
702 | ||
4676948b | 703 | #if wxUSE_STREAMS && !defined(__WXWINCE__) |
f6bcfd97 BP |
704 | // we can close the pipe ends used by child anyhow |
705 | if ( redirect ) | |
706 | { | |
79066131 VZ |
707 | ::CloseHandle(pipeIn.Detach(wxPipe::Read)); |
708 | ::CloseHandle(pipeOut.Detach(wxPipe::Write)); | |
709 | ::CloseHandle(pipeErr.Detach(wxPipe::Write)); | |
cb6827a8 | 710 | } |
f6bcfd97 | 711 | #endif // wxUSE_STREAMS |
cb6827a8 | 712 | |
f6bcfd97 | 713 | if ( !ok ) |
5e1febfa | 714 | { |
4676948b | 715 | #if wxUSE_STREAMS && !defined(__WXWINCE__) |
f6bcfd97 BP |
716 | // close the other handles too |
717 | if ( redirect ) | |
5e1febfa | 718 | { |
79066131 VZ |
719 | ::CloseHandle(pipeOut.Detach(wxPipe::Read)); |
720 | ::CloseHandle(pipeErr.Detach(wxPipe::Read)); | |
5e1febfa | 721 | } |
f6bcfd97 | 722 | #endif // wxUSE_STREAMS |
5e1febfa | 723 | |
f6bcfd97 BP |
724 | wxLogSysError(_("Execution of command '%s' failed"), command.c_str()); |
725 | ||
fbf456aa | 726 | return flags & wxEXEC_SYNC ? -1 : 0; |
f6bcfd97 | 727 | } |
8b33ae2d | 728 | |
4676948b | 729 | #if wxUSE_STREAMS && !defined(__WXWINCE__) |
79066131 VZ |
730 | // the input buffer bufOut is connected to stdout, this is why it is |
731 | // called bufOut and not bufIn | |
732 | wxStreamTempInputBuffer bufOut, | |
733 | bufErr; | |
734 | ||
f6bcfd97 BP |
735 | if ( redirect ) |
736 | { | |
8b33ae2d | 737 | // We can now initialize the wxStreams |
79066131 VZ |
738 | wxPipeInputStream * |
739 | outStream = new wxPipeInputStream(pipeOut.Detach(wxPipe::Read)); | |
740 | wxPipeInputStream * | |
741 | errStream = new wxPipeInputStream(pipeErr.Detach(wxPipe::Read)); | |
742 | wxPipeOutputStream * | |
743 | inStream = new wxPipeOutputStream(hpipeStdinWrite); | |
744 | ||
745 | handler->SetPipeStreams(outStream, inStream, errStream); | |
8b33ae2d | 746 | |
79066131 VZ |
747 | bufOut.Init(outStream); |
748 | bufErr.Init(errStream); | |
8b33ae2d | 749 | } |
f6bcfd97 | 750 | #endif // wxUSE_STREAMS |
8b33ae2d | 751 | |
cb6827a8 VZ |
752 | // create a hidden window to receive notification about process |
753 | // termination | |
eccd1992 VZ |
754 | HWND hwnd = wxCreateHiddenWindow |
755 | ( | |
756 | &gs_classForHiddenWindow, | |
757 | wxMSWEXEC_WNDCLASSNAME, | |
758 | (WNDPROC)wxExecuteWindowCbk | |
759 | ); | |
760 | ||
223d09f6 | 761 | wxASSERT_MSG( hwnd, wxT("can't create a hidden window for wxExecute") ); |
e6045e08 | 762 | |
cb6827a8 VZ |
763 | // Alloc data |
764 | wxExecuteData *data = new wxExecuteData; | |
765 | data->hProcess = pi.hProcess; | |
766 | data->dwProcessId = pi.dwProcessId; | |
767 | data->hWnd = hwnd; | |
fbf456aa VZ |
768 | data->state = (flags & wxEXEC_SYNC) != 0; |
769 | if ( flags & wxEXEC_SYNC ) | |
e6045e08 | 770 | { |
5e1febfa VZ |
771 | // handler may be !NULL for capturing program output, but we don't use |
772 | // it wxExecuteData struct in this case | |
e6045e08 VZ |
773 | data->handler = NULL; |
774 | } | |
775 | else | |
776 | { | |
777 | // may be NULL or not | |
778 | data->handler = handler; | |
779 | } | |
cb6827a8 VZ |
780 | |
781 | DWORD tid; | |
782 | HANDLE hThread = ::CreateThread(NULL, | |
783 | 0, | |
19193a2c | 784 | wxExecuteThread, |
cb6827a8 VZ |
785 | (void *)data, |
786 | 0, | |
787 | &tid); | |
788 | ||
0d7ea902 VZ |
789 | // resume process we created now - whether the thread creation succeeded or |
790 | // not | |
791 | if ( ::ResumeThread(pi.hThread) == (DWORD)-1 ) | |
792 | { | |
793 | // ignore it - what can we do? | |
f6bcfd97 | 794 | wxLogLastError(wxT("ResumeThread in wxExecute")); |
0d7ea902 VZ |
795 | } |
796 | ||
797 | // close unneeded handle | |
798 | if ( !::CloseHandle(pi.hThread) ) | |
f6bcfd97 | 799 | wxLogLastError(wxT("CloseHandle(hThread)")); |
0d7ea902 | 800 | |
cb6827a8 VZ |
801 | if ( !hThread ) |
802 | { | |
f6bcfd97 | 803 | wxLogLastError(wxT("CreateThread in wxExecute")); |
cb6827a8 VZ |
804 | |
805 | DestroyWindow(hwnd); | |
806 | delete data; | |
807 | ||
808 | // the process still started up successfully... | |
809 | return pi.dwProcessId; | |
810 | } | |
e6045e08 | 811 | |
f6bcfd97 BP |
812 | ::CloseHandle(hThread); |
813 | ||
4676948b | 814 | #if wxUSE_IPC && !defined(__WXWINCE__) |
5bd3a2da VZ |
815 | // second part of DDE hack: now establish the DDE conversation with the |
816 | // just launched process | |
ca289436 | 817 | if ( !ddeServer.empty() ) |
5bd3a2da | 818 | { |
ca289436 VZ |
819 | bool ok; |
820 | ||
821 | // give the process the time to init itself | |
822 | // | |
823 | // we use a very big timeout hoping that WaitForInputIdle() will return | |
824 | // much sooner, but not INFINITE just in case the process hangs | |
825 | // completely - like this we will regain control sooner or later | |
826 | switch ( ::WaitForInputIdle(pi.hProcess, 10000 /* 10 seconds */) ) | |
6ba63600 | 827 | { |
ca289436 VZ |
828 | default: |
829 | wxFAIL_MSG( _T("unexpected WaitForInputIdle() return code") ); | |
830 | // fall through | |
6ba63600 | 831 | |
ca289436 VZ |
832 | case -1: |
833 | wxLogLastError(_T("WaitForInputIdle() in wxExecute")); | |
6ba63600 | 834 | |
ca289436 VZ |
835 | case WAIT_TIMEOUT: |
836 | wxLogDebug(_T("Timeout too small in WaitForInputIdle")); | |
837 | ||
838 | ok = FALSE; | |
839 | break; | |
840 | ||
841 | case 0: | |
842 | // ok, process ready to accept DDE requests | |
843 | ok = wxExecuteDDE(ddeServer, ddeTopic, ddeCommand); | |
6ba63600 | 844 | } |
1b47bebc VZ |
845 | |
846 | if ( !ok ) | |
847 | { | |
848 | wxLogDebug(_T("Failed to send DDE request to the process \"%s\"."), | |
849 | cmd.c_str()); | |
850 | } | |
5bd3a2da | 851 | } |
731dd422 | 852 | #endif // wxUSE_IPC |
5bd3a2da | 853 | |
fbf456aa | 854 | if ( !(flags & wxEXEC_SYNC) ) |
cb6827a8 VZ |
855 | { |
856 | // clean up will be done when the process terminates | |
e6045e08 VZ |
857 | |
858 | // return the pid | |
cb6827a8 VZ |
859 | return pi.dwProcessId; |
860 | } | |
e6045e08 | 861 | |
e2478fde VZ |
862 | wxAppTraits *traits = wxTheApp ? wxTheApp->GetTraits() : NULL; |
863 | wxCHECK_MSG( traits, -1, _T("no wxAppTraits in wxExecute()?") ); | |
864 | ||
068a7cfe | 865 | // disable all app windows while waiting for the child process to finish |
e2478fde VZ |
866 | void *cookie = traits->BeforeChildWaitLoop(); |
867 | ||
868 | // wait until the child process terminates | |
869 | while ( data->state ) | |
870 | { | |
4676948b | 871 | #if wxUSE_STREAMS && !defined(__WXWINCE__) |
e2478fde VZ |
872 | bufOut.Update(); |
873 | bufErr.Update(); | |
79066131 VZ |
874 | #endif // wxUSE_STREAMS |
875 | ||
e2478fde VZ |
876 | // don't eat 100% of the CPU -- ugly but anything else requires |
877 | // real async IO which we don't have for the moment | |
878 | ::Sleep(50); | |
e6045e08 | 879 | |
e2478fde VZ |
880 | // we must process messages or we'd never get wxWM_PROC_TERMINATED |
881 | traits->AlwaysYield(); | |
cd6ce4a9 | 882 | } |
068a7cfe | 883 | |
e2478fde | 884 | traits->AfterChildWaitLoop(cookie); |
0d7ea902 | 885 | |
e6045e08 | 886 | DWORD dwExitCode = data->dwExitCode; |
cb6827a8 VZ |
887 | delete data; |
888 | ||
e6045e08 VZ |
889 | // return the exit code |
890 | return dwExitCode; | |
32592631 | 891 | } |
c740f496 | 892 | |
0493ba13 | 893 | long wxExecute(wxChar **argv, int flags, wxProcess *handler) |
c740f496 | 894 | { |
cb6827a8 | 895 | wxString command; |
e6045e08 | 896 | |
0493ba13 | 897 | for ( ;; ) |
cb6827a8 | 898 | { |
0493ba13 VZ |
899 | command += *argv++; |
900 | if ( !*argv ) | |
901 | break; | |
cb6827a8 | 902 | |
0493ba13 VZ |
903 | command += _T(' '); |
904 | } | |
cb6827a8 | 905 | |
fbf456aa | 906 | return wxExecute(command, flags, handler); |
c740f496 | 907 | } |
006162a9 | 908 |