]> git.saurik.com Git - wxWidgets.git/blame - src/unix/utilsunx.cpp
added check for index validity to OnTabButton()
[wxWidgets.git] / src / unix / utilsunx.cpp
CommitLineData
518b5d2f 1/////////////////////////////////////////////////////////////////////////////
7520f3da 2// Name: src/unix/utilsunx.cpp
518b5d2f
VZ
3// Purpose: generic Unix implementation of many wx functions
4// Author: Vadim Zeitlin
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin
65571936 7// Licence: wxWindows licence
518b5d2f
VZ
8/////////////////////////////////////////////////////////////////////////////
9
10// ============================================================================
11// declarations
12// ============================================================================
13
14// ----------------------------------------------------------------------------
15// headers
16// ----------------------------------------------------------------------------
17
14f355c2
VS
18// for compilers that support precompilation, includes "wx.h".
19#include "wx/wxprec.h"
20
88a7a4e1
WS
21#include "wx/utils.h"
22
7520f3da
WS
23#ifndef WX_PRECOMP
24 #include "wx/string.h"
88a7a4e1 25 #include "wx/intl.h"
e4db172a 26 #include "wx/log.h"
670f9935 27 #include "wx/app.h"
7520f3da 28#endif
518b5d2f 29
46446cc2 30#include "wx/apptrait.h"
518b5d2f 31
518b5d2f 32#include "wx/process.h"
bdc72a22 33#include "wx/thread.h"
518b5d2f 34
80d6dc0a 35#include "wx/wfstream.h"
8b33ae2d 36
e2478fde 37#include "wx/unix/execute.h"
17a1ebd1
VZ
38#include "wx/unix/private.h"
39
40#include <pwd.h>
e2478fde 41
bc023abb
MW
42#ifdef HAVE_SYS_SELECT_H
43# include <sys/select.h>
44#endif
45
1f3b2af0
VS
46#define HAS_PIPE_INPUT_STREAM (wxUSE_STREAMS && wxUSE_FILE)
47
48#if HAS_PIPE_INPUT_STREAM
2887179b
VZ
49
50// define this to let wxexec.cpp know that we know what we're doing
51#define _WX_USED_BY_WXEXECUTE_
52#include "../common/execcmn.cpp"
53
1f3b2af0 54#endif // HAS_PIPE_INPUT_STREAM
2887179b 55
ec67cff1 56#if wxUSE_BASE
e2478fde 57
74c719ed
VZ
58#if defined(__MWERKS__) && defined(__MACH__)
59 #ifndef WXWIN_OS_DESCRIPTION
60 #define WXWIN_OS_DESCRIPTION "MacOS X"
61 #endif
62 #ifndef HAVE_NANOSLEEP
63 #define HAVE_NANOSLEEP
64 #endif
65 #ifndef HAVE_UNAME
66 #define HAVE_UNAME
67 #endif
68
69 // our configure test believes we can use sigaction() if the function is
70 // available but Metrowekrs with MSL run-time does have the function but
71 // doesn't have sigaction struct so finally we can't use it...
72 #ifdef __MSL__
73 #undef wxUSE_ON_FATAL_EXCEPTION
74 #define wxUSE_ON_FATAL_EXCEPTION 0
75 #endif
8d4f85ce
SC
76#endif
77
85da04e9
VZ
78// not only the statfs syscall is called differently depending on platform, but
79// one of its incarnations, statvfs(), takes different arguments under
80// different platforms and even different versions of the same system (Solaris
81// 7 and 8): if you want to test for this, don't forget that the problems only
82// appear if the large files support is enabled
eadd7bd2 83#ifdef HAVE_STATFS
85da04e9
VZ
84 #ifdef __BSD__
85 #include <sys/param.h>
86 #include <sys/mount.h>
87 #else // !__BSD__
88 #include <sys/vfs.h>
89 #endif // __BSD__/!__BSD__
90
91 #define wxStatfs statfs
84ae7ca4
VZ
92
93 #ifndef HAVE_STATFS_DECL
94 // some systems lack statfs() prototype in the system headers (AIX 4)
95 extern "C" int statfs(const char *path, struct statfs *buf);
96 #endif
eadd7bd2
VZ
97#endif // HAVE_STATFS
98
9952adac
VZ
99#ifdef HAVE_STATVFS
100 #include <sys/statvfs.h>
101
85da04e9
VZ
102 #define wxStatfs statvfs
103#endif // HAVE_STATVFS
104
105#if defined(HAVE_STATFS) || defined(HAVE_STATVFS)
106 // WX_STATFS_T is detected by configure
107 #define wxStatfs_t WX_STATFS_T
108#endif
9952adac 109
f6bcfd97
BP
110// SGI signal.h defines signal handler arguments differently depending on
111// whether _LANGUAGE_C_PLUS_PLUS is set or not - do set it
112#if defined(__SGI__) && !defined(_LANGUAGE_C_PLUS_PLUS)
113 #define _LANGUAGE_C_PLUS_PLUS 1
114#endif // SGI hack
115
518b5d2f
VZ
116#include <stdarg.h>
117#include <dirent.h>
118#include <string.h>
119#include <sys/stat.h>
120#include <sys/types.h>
518b5d2f 121#include <sys/wait.h>
e2478fde 122#include <unistd.h>
518b5d2f
VZ
123#include <errno.h>
124#include <netdb.h>
125#include <signal.h>
126#include <fcntl.h> // for O_WRONLY and friends
127#include <time.h> // nanosleep() and/or usleep()
fad866f4 128#include <ctype.h> // isspace()
b12915c1 129#include <sys/time.h> // needed for FD_SETSIZE
7bcb11d3 130
0fcdf6dc 131#ifdef HAVE_UNAME
518b5d2f
VZ
132 #include <sys/utsname.h> // for uname()
133#endif // HAVE_UNAME
134
9ad34f61
VZ
135// Used by wxGetFreeMemory().
136#ifdef __SGI__
137 #include <sys/sysmp.h>
138 #include <sys/sysinfo.h> // for SAGET and MINFO structures
139#endif
140
518b5d2f
VZ
141// ----------------------------------------------------------------------------
142// conditional compilation
143// ----------------------------------------------------------------------------
144
145// many versions of Unices have this function, but it is not defined in system
146// headers - please add your system here if it is the case for your OS.
147// SunOS < 5.6 (i.e. Solaris < 2.6) and DG-UX are like this.
1363811b 148#if !defined(HAVE_USLEEP) && \
d67fee71 149 ((defined(__SUN__) && !defined(__SunOs_5_6) && \
518b5d2f 150 !defined(__SunOs_5_7) && !defined(__SUNPRO_CC)) || \
d67fee71 151 defined(__osf__) || defined(__EMX__))
518b5d2f
VZ
152 extern "C"
153 {
1a5e269b
VZ
154 #ifdef __EMX__
155 /* I copied this from the XFree86 diffs. AV. */
156 #define INCL_DOSPROCESS
157 #include <os2.h>
158 inline void usleep(unsigned long delay)
159 {
160 DosSleep(delay ? (delay/1000l) : 1l);
161 }
162 #else // Unix
1363811b 163 int usleep(unsigned int usec);
1a5e269b 164 #endif // __EMX__/Unix
518b5d2f 165 };
bdc72a22
VZ
166
167 #define HAVE_USLEEP 1
518b5d2f
VZ
168#endif // Unices without usleep()
169
518b5d2f
VZ
170// ============================================================================
171// implementation
172// ============================================================================
173
174// ----------------------------------------------------------------------------
175// sleeping
176// ----------------------------------------------------------------------------
177
178void wxSleep(int nSecs)
179{
180 sleep(nSecs);
181}
182
66cd9d7f 183void wxMicroSleep(unsigned long microseconds)
518b5d2f 184{
b12915c1 185#if defined(HAVE_NANOSLEEP)
518b5d2f 186 timespec tmReq;
66cd9d7f
VZ
187 tmReq.tv_sec = (time_t)(microseconds / 1000000);
188 tmReq.tv_nsec = (microseconds % 1000000) * 1000;
518b5d2f
VZ
189
190 // we're not interested in remaining time nor in return value
191 (void)nanosleep(&tmReq, (timespec *)NULL);
b12915c1 192#elif defined(HAVE_USLEEP)
518b5d2f
VZ
193 // uncomment this if you feel brave or if you are sure that your version
194 // of Solaris has a safe usleep() function but please notice that usleep()
195 // is known to lead to crashes in MT programs in Solaris 2.[67] and is not
196 // documented as MT-Safe
ea18eed9 197 #if defined(__SUN__) && wxUSE_THREADS
518b5d2f
VZ
198 #error "usleep() cannot be used in MT programs under Solaris."
199 #endif // Sun
200
66cd9d7f 201 usleep(microseconds);
b12915c1
VZ
202#elif defined(HAVE_SLEEP)
203 // under BeOS sleep() takes seconds (what about other platforms, if any?)
66cd9d7f 204 sleep(microseconds * 1000000);
518b5d2f 205#else // !sleep function
66cd9d7f 206 #error "usleep() or nanosleep() function required for wxMicroSleep"
518b5d2f
VZ
207#endif // sleep function
208}
209
66cd9d7f
VZ
210void wxMilliSleep(unsigned long milliseconds)
211{
212 wxMicroSleep(milliseconds*1000);
213}
214
518b5d2f
VZ
215// ----------------------------------------------------------------------------
216// process management
217// ----------------------------------------------------------------------------
218
e0f6b731 219int wxKill(long pid, wxSignal sig, wxKillError *rc, int flags)
518b5d2f 220{
e0f6b731 221 int err = kill((pid_t) (flags & wxKILL_CHILDREN) ? -pid : pid, (int)sig);
50567b69
VZ
222 if ( rc )
223 {
f0bce4d4 224 switch ( err ? errno : 0 )
50567b69
VZ
225 {
226 case 0:
227 *rc = wxKILL_OK;
228 break;
229
230 case EINVAL:
231 *rc = wxKILL_BAD_SIGNAL;
232 break;
233
234 case EPERM:
235 *rc = wxKILL_ACCESS_DENIED;
236 break;
237
238 case ESRCH:
239 *rc = wxKILL_NO_PROCESS;
240 break;
241
242 default:
243 // this goes against Unix98 docs so log it
244 wxLogDebug(_T("unexpected kill(2) return value %d"), err);
245
246 // something else...
247 *rc = wxKILL_ERROR;
248 }
249 }
250
251 return err;
518b5d2f
VZ
252}
253
fad866f4
KB
254#define WXEXECUTE_NARGS 127
255
62705a27
RN
256#if defined(__DARWIN__)
257long wxMacExecute(wxChar **argv,
258 int flags,
259 wxProcess *process);
260#endif
261
fbf456aa 262long wxExecute( const wxString& command, int flags, wxProcess *process )
518b5d2f 263{
8ea92b4d 264 wxCHECK_MSG( !command.empty(), 0, wxT("can't exec empty command") );
ba2eff22
VZ
265
266 wxLogTrace(wxT("exec"), wxT("Executing \"%s\""), command.c_str());
518b5d2f 267
647b8e37
VZ
268#if wxUSE_THREADS
269 // fork() doesn't mix well with POSIX threads: on many systems the program
270 // deadlocks or crashes for some reason. Probably our code is buggy and
271 // doesn't do something which must be done to allow this to work, but I
272 // don't know what yet, so for now just warn the user (this is the least we
273 // can do) about it
274 wxASSERT_MSG( wxThread::IsMain(),
275 _T("wxExecute() can be called only from the main thread") );
276#endif // wxUSE_THREADS
277
518b5d2f 278 int argc = 0;
05079acc 279 wxChar *argv[WXEXECUTE_NARGS];
fad866f4 280 wxString argument;
05079acc 281 const wxChar *cptr = command.c_str();
223d09f6 282 wxChar quotechar = wxT('\0'); // is arg quoted?
9d8aca48 283 bool escaped = false;
518b5d2f 284
0ed9a934 285 // split the command line in arguments
fad866f4
KB
286 do
287 {
7520f3da 288 argument = wxEmptyString;
223d09f6 289 quotechar = wxT('\0');
0ed9a934 290
fad866f4 291 // eat leading whitespace:
05079acc 292 while ( wxIsspace(*cptr) )
fad866f4 293 cptr++;
0ed9a934 294
223d09f6 295 if ( *cptr == wxT('\'') || *cptr == wxT('"') )
fad866f4 296 quotechar = *cptr++;
0ed9a934 297
fad866f4
KB
298 do
299 {
223d09f6 300 if ( *cptr == wxT('\\') && ! escaped )
fad866f4 301 {
9d8aca48 302 escaped = true;
fad866f4
KB
303 cptr++;
304 continue;
305 }
0ed9a934 306
fad866f4 307 // all other characters:
0ed9a934 308 argument += *cptr++;
9d8aca48 309 escaped = false;
0ed9a934
VZ
310
311 // have we reached the end of the argument?
312 if ( (*cptr == quotechar && ! escaped)
223d09f6
KB
313 || (quotechar == wxT('\0') && wxIsspace(*cptr))
314 || *cptr == wxT('\0') )
fad866f4 315 {
0ed9a934 316 wxASSERT_MSG( argc < WXEXECUTE_NARGS,
223d09f6 317 wxT("too many arguments in wxExecute") );
0ed9a934 318
05079acc
OK
319 argv[argc] = new wxChar[argument.length() + 1];
320 wxStrcpy(argv[argc], argument.c_str());
fad866f4 321 argc++;
0ed9a934 322
fad866f4 323 // if not at end of buffer, swallow last character:
0ed9a934
VZ
324 if(*cptr)
325 cptr++;
326
fad866f4
KB
327 break; // done with this one, start over
328 }
0ed9a934
VZ
329 } while(*cptr);
330 } while(*cptr);
fad866f4 331 argv[argc] = NULL;
0ed9a934 332
62705a27
RN
333 long lRc;
334#if defined(__DARWIN__)
3afdfec4 335 // wxMacExecute only executes app bundles.
fb19fbab
SC
336 // It returns an error code if the target is not an app bundle, thus falling
337 // through to the regular wxExecute for non app bundles.
3afdfec4 338 lRc = wxMacExecute(argv, flags, process);
fb19fbab 339 if( lRc != ((flags & wxEXEC_SYNC) ? -1 : 0))
62705a27
RN
340 return lRc;
341#endif
342
0ed9a934 343 // do execute the command
62705a27 344 lRc = wxExecute(argv, flags, process);
518b5d2f 345
0ed9a934 346 // clean up
fad866f4 347 argc = 0;
0ed9a934 348 while( argv[argc] )
fad866f4 349 delete [] argv[argc++];
518b5d2f
VZ
350
351 return lRc;
352}
353
2c8e4738
VZ
354// ----------------------------------------------------------------------------
355// wxShell
356// ----------------------------------------------------------------------------
357
358static wxString wxMakeShellCommand(const wxString& command)
518b5d2f
VZ
359{
360 wxString cmd;
cd6ce4a9 361 if ( !command )
2c8e4738
VZ
362 {
363 // just an interactive shell
cd6ce4a9 364 cmd = _T("xterm");
2c8e4738 365 }
518b5d2f 366 else
2c8e4738
VZ
367 {
368 // execute command in a shell
369 cmd << _T("/bin/sh -c '") << command << _T('\'');
370 }
371
372 return cmd;
373}
374
375bool wxShell(const wxString& command)
376{
fbf456aa 377 return wxExecute(wxMakeShellCommand(command), wxEXEC_SYNC) == 0;
2c8e4738
VZ
378}
379
380bool wxShell(const wxString& command, wxArrayString& output)
381{
9d8aca48 382 wxCHECK_MSG( !command.empty(), false, _T("can't exec shell non interactively") );
518b5d2f 383
2c8e4738 384 return wxExecute(wxMakeShellCommand(command), output);
518b5d2f
VZ
385}
386
f6ba47d9
VZ
387// Shutdown or reboot the PC
388bool wxShutdown(wxShutdownFlags wFlags)
389{
390 wxChar level;
391 switch ( wFlags )
392 {
393 case wxSHUTDOWN_POWEROFF:
394 level = _T('0');
395 break;
396
397 case wxSHUTDOWN_REBOOT:
398 level = _T('6');
399 break;
400
401 default:
402 wxFAIL_MSG( _T("unknown wxShutdown() flag") );
9d8aca48 403 return false;
f6ba47d9
VZ
404 }
405
406 return system(wxString::Format(_T("init %c"), level).mb_str()) == 0;
407}
408
cd6ce4a9
VZ
409// ----------------------------------------------------------------------------
410// wxStream classes to support IO redirection in wxExecute
411// ----------------------------------------------------------------------------
6dc6fda6 412
1f3b2af0 413#if HAS_PIPE_INPUT_STREAM
1e6feb95 414
2b5f62a0 415bool wxPipeInputStream::CanRead() const
8b33ae2d 416{
cd6ce4a9 417 if ( m_lasterror == wxSTREAM_EOF )
9d8aca48 418 return false;
cd6ce4a9
VZ
419
420 // check if there is any input available
421 struct timeval tv;
422 tv.tv_sec = 0;
423 tv.tv_usec = 0;
424
80d6dc0a
VZ
425 const int fd = m_file->fd();
426
cd6ce4a9 427 fd_set readfds;
17a1ebd1
VZ
428
429 wxFD_ZERO(&readfds);
430 wxFD_SET(fd, &readfds);
431
80d6dc0a 432 switch ( select(fd + 1, &readfds, NULL, NULL, &tv) )
cd6ce4a9
VZ
433 {
434 case -1:
435 wxLogSysError(_("Impossible to get child process input"));
436 // fall through
8b33ae2d 437
cd6ce4a9 438 case 0:
9d8aca48 439 return false;
8b33ae2d 440
cd6ce4a9
VZ
441 default:
442 wxFAIL_MSG(_T("unexpected select() return value"));
443 // still fall through
444
445 case 1:
6f3d3c68
VZ
446 // input available -- or maybe not, as select() returns 1 when a
447 // read() will complete without delay, but it could still not read
448 // anything
449 return !Eof();
cd6ce4a9 450 }
8b33ae2d
GL
451}
452
1f3b2af0 453#endif // HAS_PIPE_INPUT_STREAM
1e6feb95 454
b477f956
VZ
455// ----------------------------------------------------------------------------
456// wxExecute: the real worker function
457// ----------------------------------------------------------------------------
79066131 458
17a1ebd1 459long wxExecute(wxChar **argv, int flags, wxProcess *process)
518b5d2f 460{
f6bcfd97 461 // for the sync execution, we return -1 to indicate failure, but for async
accb3257
VZ
462 // case we return 0 which is never a valid PID
463 //
464 // we define this as a macro, not a variable, to avoid compiler warnings
465 // about "ERROR_RETURN_CODE value may be clobbered by fork()"
fbf456aa 466 #define ERROR_RETURN_CODE ((flags & wxEXEC_SYNC) ? -1 : 0)
f6bcfd97 467
accb3257 468 wxCHECK_MSG( *argv, ERROR_RETURN_CODE, wxT("can't exec empty command") );
518b5d2f 469
05079acc
OK
470#if wxUSE_UNICODE
471 int mb_argc = 0;
472 char *mb_argv[WXEXECUTE_NARGS];
473
e90c1d2a
VZ
474 while (argv[mb_argc])
475 {
69c928ef 476 wxWX2MBbuf mb_arg = wxSafeConvertWX2MB(argv[mb_argc]);
cd6ce4a9
VZ
477 mb_argv[mb_argc] = strdup(mb_arg);
478 mb_argc++;
05079acc
OK
479 }
480 mb_argv[mb_argc] = (char *) NULL;
e90c1d2a
VZ
481
482 // this macro will free memory we used above
483 #define ARGS_CLEANUP \
345b0247 484 for ( mb_argc = 0; mb_argv[mb_argc]; mb_argc++ ) \
e90c1d2a
VZ
485 free(mb_argv[mb_argc])
486#else // ANSI
487 // no need for cleanup
488 #define ARGS_CLEANUP
489
05079acc 490 wxChar **mb_argv = argv;
e90c1d2a 491#endif // Unicode/ANSI
518b5d2f 492
e2478fde
VZ
493 // we want this function to work even if there is no wxApp so ensure that
494 // we have a valid traits pointer
495 wxConsoleAppTraits traitsConsole;
496 wxAppTraits *traits = wxTheApp ? wxTheApp->GetTraits() : NULL;
497 if ( !traits )
498 traits = &traitsConsole;
499
500 // this struct contains all information which we pass to and from
501 // wxAppTraits methods
502 wxExecuteData execData;
503 execData.flags = flags;
504 execData.process = process;
505
518b5d2f 506 // create pipes
e2478fde 507 if ( !traits->CreateEndProcessPipe(execData) )
518b5d2f 508 {
cd6ce4a9 509 wxLogError( _("Failed to execute '%s'\n"), *argv );
e90c1d2a
VZ
510
511 ARGS_CLEANUP;
512
accb3257 513 return ERROR_RETURN_CODE;
518b5d2f
VZ
514 }
515
f6bcfd97 516 // pipes for inter process communication
b477f956
VZ
517 wxPipe pipeIn, // stdin
518 pipeOut, // stdout
519 pipeErr; // stderr
cd6ce4a9
VZ
520
521 if ( process && process->IsRedirected() )
8b33ae2d 522 {
b477f956 523 if ( !pipeIn.Create() || !pipeOut.Create() || !pipeErr.Create() )
8b33ae2d 524 {
cd6ce4a9 525 wxLogError( _("Failed to execute '%s'\n"), *argv );
8b33ae2d
GL
526
527 ARGS_CLEANUP;
528
accb3257 529 return ERROR_RETURN_CODE;
8b33ae2d
GL
530 }
531 }
8b33ae2d 532
518b5d2f 533 // fork the process
ef5f8ab6
VZ
534 //
535 // NB: do *not* use vfork() here, it completely breaks this code for some
536 // reason under Solaris (and maybe others, although not under Linux)
b2ddee86
JJ
537 // But on OpenVMS we do not have fork so we have to use vfork and
538 // cross our fingers that it works.
539#ifdef __VMS
540 pid_t pid = vfork();
541#else
542 pid_t pid = fork();
543#endif
544 if ( pid == -1 ) // error?
518b5d2f
VZ
545 {
546 wxLogSysError( _("Fork failed") );
e90c1d2a
VZ
547
548 ARGS_CLEANUP;
549
accb3257 550 return ERROR_RETURN_CODE;
518b5d2f 551 }
cd6ce4a9 552 else if ( pid == 0 ) // we're in child
518b5d2f 553 {
cd6ce4a9 554 // These lines close the open file descriptors to to avoid any
518b5d2f 555 // input/output which might block the process or irritate the user. If
cd6ce4a9
VZ
556 // one wants proper IO for the subprocess, the right thing to do is to
557 // start an xterm executing it.
fbf456aa 558 if ( !(flags & wxEXEC_SYNC) )
518b5d2f 559 {
35ef537b
VZ
560 // FD_SETSIZE is unsigned under BSD, signed under other platforms
561 // so we need a cast to avoid warnings on all platforms
562 for ( int fd = 0; fd < (int)FD_SETSIZE; fd++ )
518b5d2f 563 {
b477f956
VZ
564 if ( fd == pipeIn[wxPipe::Read]
565 || fd == pipeOut[wxPipe::Write]
566 || fd == pipeErr[wxPipe::Write]
e2478fde 567 || traits->IsWriteFDOfEndProcessPipe(execData, fd) )
cd6ce4a9
VZ
568 {
569 // don't close this one, we still need it
570 continue;
571 }
e90c1d2a 572
b477f956 573 // leave stderr opened too, it won't do any harm
e90c1d2a 574 if ( fd != STDERR_FILENO )
518b5d2f
VZ
575 close(fd);
576 }
0c9c4401 577 }
e1082c9f 578
e8e776aa 579#if !defined(__VMS) && !defined(__EMX__)
0c9c4401
VZ
580 if ( flags & wxEXEC_MAKE_GROUP_LEADER )
581 {
582 // Set process group to child process' pid. Then killing -pid
583 // of the parent will kill the process and all of its children.
584 setsid();
518b5d2f 585 }
0c9c4401
VZ
586#endif // !__VMS
587
0c9c4401
VZ
588 // reading side can be safely closed but we should keep the write one
589 // opened
e2478fde 590 traits->DetachWriteFDOfEndProcessPipe(execData);
518b5d2f 591
80d6dc0a 592 // redirect stdin, stdout and stderr
b477f956 593 if ( pipeIn.IsOk() )
cd6ce4a9 594 {
b477f956
VZ
595 if ( dup2(pipeIn[wxPipe::Read], STDIN_FILENO) == -1 ||
596 dup2(pipeOut[wxPipe::Write], STDOUT_FILENO) == -1 ||
597 dup2(pipeErr[wxPipe::Write], STDERR_FILENO) == -1 )
cd6ce4a9 598 {
f6bcfd97 599 wxLogSysError(_("Failed to redirect child process input/output"));
cd6ce4a9 600 }
518b5d2f 601
b477f956
VZ
602 pipeIn.Close();
603 pipeOut.Close();
604 pipeErr.Close();
cd6ce4a9 605 }
518b5d2f 606
05079acc 607 execvp (*mb_argv, mb_argv);
17a1ebd1 608
d264d709 609 fprintf(stderr, "execvp(");
8d4f85ce
SC
610 // CS changed ppc to ppc_ as ppc is not available under mac os CW Mach-O
611 for ( char **ppc_ = mb_argv; *ppc_; ppc_++ )
612 fprintf(stderr, "%s%s", ppc_ == mb_argv ? "" : ", ", *ppc_);
d264d709
VZ
613 fprintf(stderr, ") failed with error %d!\n", errno);
614
518b5d2f 615 // there is no return after successful exec()
518b5d2f 616 _exit(-1);
1d8dd65e
VZ
617
618 // some compilers complain about missing return - of course, they
619 // should know that exit() doesn't return but what else can we do if
620 // they don't?
b477f956
VZ
621 //
622 // and, sure enough, other compilers complain about unreachable code
623 // after exit() call, so we can just always have return here...
1d8dd65e
VZ
624#if defined(__VMS) || defined(__INTEL_COMPILER)
625 return 0;
626#endif
518b5d2f 627 }
cd6ce4a9 628 else // we're in parent
518b5d2f 629 {
cd6ce4a9
VZ
630 ARGS_CLEANUP;
631
7764f973
VZ
632 // save it for WaitForChild() use
633 execData.pid = pid;
634
80d6dc0a
VZ
635 // prepare for IO redirection
636
1f3b2af0 637#if HAS_PIPE_INPUT_STREAM
80d6dc0a
VZ
638 // the input buffer bufOut is connected to stdout, this is why it is
639 // called bufOut and not bufIn
640 wxStreamTempInputBuffer bufOut,
641 bufErr;
1f3b2af0 642#endif // HAS_PIPE_INPUT_STREAM
0e300ddd 643
cd6ce4a9
VZ
644 if ( process && process->IsRedirected() )
645 {
1f3b2af0 646#if HAS_PIPE_INPUT_STREAM
80d6dc0a
VZ
647 wxOutputStream *inStream =
648 new wxFileOutputStream(pipeIn.Detach(wxPipe::Write));
b477f956 649
79066131
VZ
650 wxPipeInputStream *outStream =
651 new wxPipeInputStream(pipeOut.Detach(wxPipe::Read));
b477f956 652
79066131
VZ
653 wxPipeInputStream *errStream =
654 new wxPipeInputStream(pipeErr.Detach(wxPipe::Read));
f6bcfd97 655
80d6dc0a 656 process->SetPipeStreams(outStream, inStream, errStream);
0e300ddd 657
80d6dc0a 658 bufOut.Init(outStream);
b477f956 659 bufErr.Init(errStream);
e2478fde
VZ
660
661 execData.bufOut = &bufOut;
662 execData.bufErr = &bufErr;
1f3b2af0 663#endif // HAS_PIPE_INPUT_STREAM
b477f956 664 }
1e6feb95 665
b477f956
VZ
666 if ( pipeIn.IsOk() )
667 {
668 pipeIn.Close();
669 pipeOut.Close();
670 pipeErr.Close();
cd6ce4a9
VZ
671 }
672
e2478fde 673 return traits->WaitForChild(execData);
518b5d2f 674 }
79656e30 675
17a1ebd1 676#if !defined(__VMS) && !defined(__INTEL_COMPILER)
79656e30 677 return ERROR_RETURN_CODE;
ef0ed19e 678#endif
17a1ebd1 679}
518b5d2f 680
accb3257 681#undef ERROR_RETURN_CODE
f6bcfd97
BP
682#undef ARGS_CLEANUP
683
518b5d2f
VZ
684// ----------------------------------------------------------------------------
685// file and directory functions
686// ----------------------------------------------------------------------------
687
05079acc 688const wxChar* wxGetHomeDir( wxString *home )
518b5d2f 689{
8ea92b4d 690 *home = wxGetUserHome( wxEmptyString );
79066131 691 wxString tmp;
8ea92b4d 692 if ( home->empty() )
223d09f6 693 *home = wxT("/");
181cbcf4 694#ifdef __VMS
79066131
VZ
695 tmp = *home;
696 if ( tmp.Last() != wxT(']'))
697 if ( tmp.Last() != wxT('/')) *home << wxT('/');
181cbcf4 698#endif
518b5d2f
VZ
699 return home->c_str();
700}
701
05079acc
OK
702#if wxUSE_UNICODE
703const wxMB2WXbuf wxGetUserHome( const wxString &user )
e90c1d2a 704#else // just for binary compatibility -- there is no 'const' here
518b5d2f 705char *wxGetUserHome( const wxString &user )
05079acc 706#endif
518b5d2f
VZ
707{
708 struct passwd *who = (struct passwd *) NULL;
709
0fb67cd1 710 if ( !user )
518b5d2f 711 {
e90c1d2a 712 wxChar *ptr;
518b5d2f 713
223d09f6 714 if ((ptr = wxGetenv(wxT("HOME"))) != NULL)
518b5d2f 715 {
2b5f62a0
VZ
716#if wxUSE_UNICODE
717 wxWCharBuffer buffer( ptr );
718 return buffer;
719#else
518b5d2f 720 return ptr;
2b5f62a0 721#endif
518b5d2f 722 }
223d09f6 723 if ((ptr = wxGetenv(wxT("USER"))) != NULL || (ptr = wxGetenv(wxT("LOGNAME"))) != NULL)
518b5d2f 724 {
69c928ef 725 who = getpwnam(wxSafeConvertWX2MB(ptr));
518b5d2f
VZ
726 }
727
728 // We now make sure the the user exists!
729 if (who == NULL)
730 {
731 who = getpwuid(getuid());
732 }
733 }
734 else
735 {
05079acc 736 who = getpwnam (user.mb_str());
518b5d2f
VZ
737 }
738
69c928ef 739 return wxSafeConvertMB2WX(who ? who->pw_dir : 0);
518b5d2f
VZ
740}
741
742// ----------------------------------------------------------------------------
0fb67cd1 743// network and user id routines
518b5d2f
VZ
744// ----------------------------------------------------------------------------
745
8bb6b2c0
VZ
746// private utility function which returns output of the given command, removing
747// the trailing newline
748static wxString wxGetCommandOutput(const wxString &cmd)
749{
750 FILE *f = popen(cmd.ToAscii(), "r");
751 if ( !f )
752 {
753 wxLogSysError(_T("Executing \"%s\" failed"), cmd.c_str());
754 return wxEmptyString;
755 }
756
757 wxString s;
758 char buf[256];
759 while ( !feof(f) )
760 {
761 if ( !fgets(buf, sizeof(buf), f) )
762 break;
763
764 s += wxString::FromAscii(buf);
765 }
766
767 pclose(f);
768
769 if ( !s.empty() && s.Last() == _T('\n') )
770 s.RemoveLast();
771
772 return s;
773}
774
0fb67cd1
VZ
775// retrieve either the hostname or FQDN depending on platform (caller must
776// check whether it's one or the other, this is why this function is for
777// private use only)
05079acc 778static bool wxGetHostNameInternal(wxChar *buf, int sz)
518b5d2f 779{
9d8aca48 780 wxCHECK_MSG( buf, false, wxT("NULL pointer in wxGetHostNameInternal") );
518b5d2f 781
223d09f6 782 *buf = wxT('\0');
518b5d2f
VZ
783
784 // we're using uname() which is POSIX instead of less standard sysinfo()
785#if defined(HAVE_UNAME)
cc743a6f 786 struct utsname uts;
518b5d2f
VZ
787 bool ok = uname(&uts) != -1;
788 if ( ok )
789 {
69c928ef 790 wxStrncpy(buf, wxSafeConvertMB2WX(uts.nodename), sz - 1);
223d09f6 791 buf[sz] = wxT('\0');
518b5d2f
VZ
792 }
793#elif defined(HAVE_GETHOSTNAME)
1870f50b
RD
794 char cbuf[sz];
795 bool ok = gethostname(cbuf, sz) != -1;
796 if ( ok )
797 {
69c928ef 798 wxStrncpy(buf, wxSafeConvertMB2WX(cbuf), sz - 1);
1870f50b
RD
799 buf[sz] = wxT('\0');
800 }
0fb67cd1 801#else // no uname, no gethostname
223d09f6 802 wxFAIL_MSG(wxT("don't know host name for this machine"));
518b5d2f 803
9d8aca48 804 bool ok = false;
0fb67cd1 805#endif // uname/gethostname
518b5d2f
VZ
806
807 if ( !ok )
808 {
809 wxLogSysError(_("Cannot get the hostname"));
810 }
811
812 return ok;
813}
814
05079acc 815bool wxGetHostName(wxChar *buf, int sz)
0fb67cd1
VZ
816{
817 bool ok = wxGetHostNameInternal(buf, sz);
818
819 if ( ok )
820 {
821 // BSD systems return the FQDN, we only want the hostname, so extract
822 // it (we consider that dots are domain separators)
223d09f6 823 wxChar *dot = wxStrchr(buf, wxT('.'));
0fb67cd1
VZ
824 if ( dot )
825 {
826 // nuke it
223d09f6 827 *dot = wxT('\0');
0fb67cd1
VZ
828 }
829 }
830
831 return ok;
832}
833
05079acc 834bool wxGetFullHostName(wxChar *buf, int sz)
0fb67cd1
VZ
835{
836 bool ok = wxGetHostNameInternal(buf, sz);
837
838 if ( ok )
839 {
223d09f6 840 if ( !wxStrchr(buf, wxT('.')) )
0fb67cd1 841 {
69c928ef 842 struct hostent *host = gethostbyname(wxSafeConvertWX2MB(buf));
0fb67cd1
VZ
843 if ( !host )
844 {
845 wxLogSysError(_("Cannot get the official hostname"));
846
9d8aca48 847 ok = false;
0fb67cd1
VZ
848 }
849 else
850 {
851 // the canonical name
69c928ef 852 wxStrncpy(buf, wxSafeConvertMB2WX(host->h_name), sz);
0fb67cd1
VZ
853 }
854 }
855 //else: it's already a FQDN (BSD behaves this way)
856 }
857
858 return ok;
859}
860
05079acc 861bool wxGetUserId(wxChar *buf, int sz)
518b5d2f
VZ
862{
863 struct passwd *who;
864
223d09f6 865 *buf = wxT('\0');
518b5d2f
VZ
866 if ((who = getpwuid(getuid ())) != NULL)
867 {
69c928ef 868 wxStrncpy (buf, wxSafeConvertMB2WX(who->pw_name), sz - 1);
9d8aca48 869 return true;
518b5d2f
VZ
870 }
871
9d8aca48 872 return false;
518b5d2f
VZ
873}
874
05079acc 875bool wxGetUserName(wxChar *buf, int sz)
518b5d2f 876{
69c928ef 877#ifdef HAVE_PW_GECOS
518b5d2f 878 struct passwd *who;
518b5d2f 879
223d09f6 880 *buf = wxT('\0');
b12915c1
VZ
881 if ((who = getpwuid (getuid ())) != NULL)
882 {
b12915c1 883 char *comma = strchr(who->pw_gecos, ',');
518b5d2f
VZ
884 if (comma)
885 *comma = '\0'; // cut off non-name comment fields
69c928ef 886 wxStrncpy (buf, wxSafeConvertMB2WX(who->pw_gecos), sz - 1);
9d8aca48 887 return true;
518b5d2f
VZ
888 }
889
9d8aca48 890 return false;
69c928ef
VZ
891#else // !HAVE_PW_GECOS
892 return wxGetUserId(buf, sz);
893#endif // HAVE_PW_GECOS/!HAVE_PW_GECOS
518b5d2f
VZ
894}
895
c655557f
VZ
896bool wxIsPlatform64Bit()
897{
898 wxString machine = wxGetCommandOutput(wxT("uname -m"));
899
900 // NOTE: these tests are not 100% reliable!
901 return machine.Contains(wxT("AMD64")) ||
902 machine.Contains(wxT("IA64")) ||
903 machine.Contains(wxT("x64")) ||
904 machine.Contains(wxT("X64")) ||
905 machine.Contains(wxT("alpha")) ||
906 machine.Contains(wxT("hppa64")) ||
907 machine.Contains(wxT("ppc64"));
908}
909
910// these functions are in mac/utils.cpp for wxMac
911#ifndef __WXMAC__
912
8bb6b2c0
VZ
913wxOperatingSystemId wxGetOsVersion(int *verMaj, int *verMin)
914{
915 // get OS version
916 int major, minor;
917 wxString release = wxGetCommandOutput(wxT("uname -r"));
e1379e29 918 if ( release.empty() || wxSscanf(release, wxT("%d.%d"), &major, &minor) != 2 )
8bb6b2c0 919 {
e1379e29 920 // failed to get version string or unrecognized format
8bb6b2c0
VZ
921 major =
922 minor = -1;
923 }
924
925 if ( verMaj )
926 *verMaj = major;
927 if ( verMin )
928 *verMin = minor;
929
930 // try to understand which OS are we running
931 wxString kernel = wxGetCommandOutput(wxT("uname -s"));
932 if ( kernel.empty() )
933 kernel = wxGetCommandOutput(wxT("uname -o"));
934
935 if ( kernel.empty() )
936 return wxOS_UNKNOWN;
937
938 return wxPlatformInfo::GetOperatingSystemId(kernel);
939}
940
bdc72a22
VZ
941wxString wxGetOsDescription()
942{
8bb6b2c0 943 return wxGetCommandOutput(wxT("uname -s -r -m"));
bdc72a22
VZ
944}
945
e2478fde 946#endif // !__WXMAC__
bd3277fe 947
c1cb4153
VZ
948unsigned long wxGetProcessId()
949{
950 return (unsigned long)getpid();
951}
952
9d8aca48 953wxMemorySize wxGetFreeMemory()
bd3277fe
VZ
954{
955#if defined(__LINUX__)
956 // get it from /proc/meminfo
957 FILE *fp = fopen("/proc/meminfo", "r");
958 if ( fp )
959 {
960 long memFree = -1;
961
962 char buf[1024];
963 if ( fgets(buf, WXSIZEOF(buf), fp) && fgets(buf, WXSIZEOF(buf), fp) )
964 {
7c28d921
VZ
965 // /proc/meminfo changed its format in kernel 2.6
966 if ( wxPlatformInfo().CheckOSVersion(2, 6) )
967 {
968 unsigned long cached, buffers;
969 sscanf(buf, "MemFree: %ld", &memFree);
970
971 fgets(buf, WXSIZEOF(buf), fp);
972 sscanf(buf, "Buffers: %lu", &buffers);
973
974 fgets(buf, WXSIZEOF(buf), fp);
975 sscanf(buf, "Cached: %lu", &cached);
976
977 // add to "MemFree" also the "Buffers" and "Cached" values as
978 // free(1) does as otherwise the value never makes sense: for
979 // kernel 2.6 it's always almost 0
980 memFree += buffers + cached;
981
982 // values here are always expressed in kB and we want bytes
983 memFree *= 1024;
984 }
985 else // Linux 2.4 (or < 2.6, anyhow)
986 {
987 long memTotal, memUsed;
988 sscanf(buf, "Mem: %ld %ld %ld", &memTotal, &memUsed, &memFree);
989 }
bd3277fe
VZ
990 }
991
992 fclose(fp);
993
9d8aca48 994 return (wxMemorySize)memFree;
bd3277fe 995 }
9ad34f61
VZ
996#elif defined(__SGI__)
997 struct rminfo realmem;
998 if ( sysmp(MP_SAGET, MPSA_RMINFO, &realmem, sizeof realmem) == 0 )
999 return ((wxMemorySize)realmem.physmem * sysconf(_SC_PAGESIZE));
40f00746
VZ
1000#elif defined(_SC_AVPHYS_PAGES)
1001 return ((wxMemorySize)sysconf(_SC_AVPHYS_PAGES))*sysconf(_SC_PAGESIZE);
bd3277fe
VZ
1002//#elif defined(__FREEBSD__) -- might use sysctl() to find it out, probably
1003#endif
1004
1005 // can't find it out
1006 return -1;
1007}
1008
7ba7c4e6 1009bool wxGetDiskSpace(const wxString& path, wxDiskspaceSize_t *pTotal, wxDiskspaceSize_t *pFree)
eadd7bd2 1010{
9952adac 1011#if defined(HAVE_STATFS) || defined(HAVE_STATVFS)
fbfb3fb3 1012 // the case to "char *" is needed for AIX 4.3
85da04e9
VZ
1013 wxStatfs_t fs;
1014 if ( wxStatfs((char *)(const char*)path.fn_str(), &fs) != 0 )
eadd7bd2 1015 {
401eb3de 1016 wxLogSysError( wxT("Failed to get file system statistics") );
eadd7bd2 1017
9d8aca48 1018 return false;
eadd7bd2
VZ
1019 }
1020
125cb99b
VZ
1021 // under Solaris we also have to use f_frsize field instead of f_bsize
1022 // which is in general a multiple of f_frsize
1023#ifdef HAVE_STATVFS
7ba7c4e6 1024 wxDiskspaceSize_t blockSize = fs.f_frsize;
125cb99b 1025#else // HAVE_STATFS
7ba7c4e6 1026 wxDiskspaceSize_t blockSize = fs.f_bsize;
125cb99b 1027#endif // HAVE_STATVFS/HAVE_STATFS
9952adac 1028
eadd7bd2
VZ
1029 if ( pTotal )
1030 {
7ba7c4e6 1031 *pTotal = wxDiskspaceSize_t(fs.f_blocks) * blockSize;
eadd7bd2
VZ
1032 }
1033
1034 if ( pFree )
1035 {
7ba7c4e6 1036 *pFree = wxDiskspaceSize_t(fs.f_bavail) * blockSize;
eadd7bd2
VZ
1037 }
1038
9d8aca48 1039 return true;
125cb99b 1040#else // !HAVE_STATFS && !HAVE_STATVFS
9d8aca48 1041 return false;
125cb99b 1042#endif // HAVE_STATFS
eadd7bd2
VZ
1043}
1044
8fd0d89b
VZ
1045// ----------------------------------------------------------------------------
1046// env vars
1047// ----------------------------------------------------------------------------
1048
97b305b7 1049bool wxGetEnv(const wxString& var, wxString *value)
308978f6
VZ
1050{
1051 // wxGetenv is defined as getenv()
1052 wxChar *p = wxGetenv(var);
1053 if ( !p )
9d8aca48 1054 return false;
308978f6
VZ
1055
1056 if ( value )
1057 {
1058 *value = p;
1059 }
1060
9d8aca48 1061 return true;
308978f6
VZ
1062}
1063
8fd0d89b
VZ
1064bool wxSetEnv(const wxString& variable, const wxChar *value)
1065{
1066#if defined(HAVE_SETENV)
d90b2df8
VZ
1067 return setenv(variable.mb_str(),
1068 value ? (const char *)wxString(value).mb_str()
1069 : NULL,
1070 1 /* overwrite */) == 0;
8fd0d89b
VZ
1071#elif defined(HAVE_PUTENV)
1072 wxString s = variable;
1073 if ( value )
1074 s << _T('=') << value;
1075
1076 // transform to ANSI
67479dbd 1077 const wxWX2MBbuf p = s.mb_str();
8fd0d89b
VZ
1078
1079 // the string will be free()d by libc
1080 char *buf = (char *)malloc(strlen(p) + 1);
1081 strcpy(buf, p);
1082
1083 return putenv(buf) == 0;
1084#else // no way to set an env var
67479dbd 1085 return false;
8fd0d89b
VZ
1086#endif
1087}
1088
a37a5a73
VZ
1089// ----------------------------------------------------------------------------
1090// signal handling
1091// ----------------------------------------------------------------------------
1092
1093#if wxUSE_ON_FATAL_EXCEPTION
1094
1095#include <signal.h>
1096
90350682 1097extern "C" void wxFatalSignalHandler(wxTYPE_SA_HANDLER)
a37a5a73
VZ
1098{
1099 if ( wxTheApp )
1100 {
1101 // give the user a chance to do something special about this
1102 wxTheApp->OnFatalException();
1103 }
1104
1105 abort();
1106}
1107
1108bool wxHandleFatalExceptions(bool doit)
1109{
1110 // old sig handlers
9d8aca48 1111 static bool s_savedHandlers = false;
a37a5a73
VZ
1112 static struct sigaction s_handlerFPE,
1113 s_handlerILL,
1114 s_handlerBUS,
1115 s_handlerSEGV;
1116
9d8aca48 1117 bool ok = true;
a37a5a73
VZ
1118 if ( doit && !s_savedHandlers )
1119 {
1120 // install the signal handler
1121 struct sigaction act;
1122
1123 // some systems extend it with non std fields, so zero everything
1124 memset(&act, 0, sizeof(act));
1125
1126 act.sa_handler = wxFatalSignalHandler;
1127 sigemptyset(&act.sa_mask);
1128 act.sa_flags = 0;
1129
1130 ok &= sigaction(SIGFPE, &act, &s_handlerFPE) == 0;
1131 ok &= sigaction(SIGILL, &act, &s_handlerILL) == 0;
1132 ok &= sigaction(SIGBUS, &act, &s_handlerBUS) == 0;
1133 ok &= sigaction(SIGSEGV, &act, &s_handlerSEGV) == 0;
1134 if ( !ok )
1135 {
1136 wxLogDebug(_T("Failed to install our signal handler."));
1137 }
1138
9d8aca48 1139 s_savedHandlers = true;
a37a5a73
VZ
1140 }
1141 else if ( s_savedHandlers )
1142 {
1143 // uninstall the signal handler
1144 ok &= sigaction(SIGFPE, &s_handlerFPE, NULL) == 0;
1145 ok &= sigaction(SIGILL, &s_handlerILL, NULL) == 0;
1146 ok &= sigaction(SIGBUS, &s_handlerBUS, NULL) == 0;
1147 ok &= sigaction(SIGSEGV, &s_handlerSEGV, NULL) == 0;
1148 if ( !ok )
1149 {
1150 wxLogDebug(_T("Failed to uninstall our signal handler."));
1151 }
1152
9d8aca48 1153 s_savedHandlers = false;
a37a5a73
VZ
1154 }
1155 //else: nothing to do
1156
1157 return ok;
1158}
1159
1160#endif // wxUSE_ON_FATAL_EXCEPTION
1161
ec67cff1 1162#endif // wxUSE_BASE
e2478fde
VZ
1163
1164#if wxUSE_GUI
1165
1166// ----------------------------------------------------------------------------
1167// wxExecute support
1168// ----------------------------------------------------------------------------
1169
1170// Darwin doesn't use the same process end detection mechanisms so we don't
1171// need wxExecute-related helpers for it
1172#if !(defined(__DARWIN__) && defined(__WXMAC__))
1173
1174bool wxGUIAppTraits::CreateEndProcessPipe(wxExecuteData& execData)
1175{
1176 return execData.pipeEndProcDetect.Create();
1177}
1178
1179bool wxGUIAppTraits::IsWriteFDOfEndProcessPipe(wxExecuteData& execData, int fd)
1180{
46446cc2 1181 return fd == (execData.pipeEndProcDetect)[wxPipe::Write];
e2478fde
VZ
1182}
1183
1184void wxGUIAppTraits::DetachWriteFDOfEndProcessPipe(wxExecuteData& execData)
1185{
1186 execData.pipeEndProcDetect.Detach(wxPipe::Write);
1187 execData.pipeEndProcDetect.Close();
1188}
1189
1190#else // !Darwin
1191
1192bool wxGUIAppTraits::CreateEndProcessPipe(wxExecuteData& WXUNUSED(execData))
1193{
1194 return true;
1195}
1196
1197bool
1198wxGUIAppTraits::IsWriteFDOfEndProcessPipe(wxExecuteData& WXUNUSED(execData),
1199 int WXUNUSED(fd))
1200{
1201 return false;
1202}
1203
1204void
1205wxGUIAppTraits::DetachWriteFDOfEndProcessPipe(wxExecuteData& WXUNUSED(execData))
1206{
1207 // nothing to do here, we don't use the pipe
1208}
1209
1210#endif // !Darwin/Darwin
1211
1212int wxGUIAppTraits::WaitForChild(wxExecuteData& execData)
1213{
1214 wxEndProcessData *endProcData = new wxEndProcessData;
1215
f38f6899
VZ
1216 const int flags = execData.flags;
1217
e2478fde
VZ
1218 // wxAddProcessCallback is now (with DARWIN) allowed to call the
1219 // callback function directly if the process terminates before
1220 // the callback can be added to the run loop. Set up the endProcData.
f38f6899 1221 if ( flags & wxEXEC_SYNC )
e2478fde
VZ
1222 {
1223 // we may have process for capturing the program output, but it's
1224 // not used in wxEndProcessData in the case of sync execution
1225 endProcData->process = NULL;
1226
1227 // sync execution: indicate it by negating the pid
1228 endProcData->pid = -execData.pid;
1229 }
1230 else
1231 {
1232 // async execution, nothing special to do -- caller will be
1233 // notified about the process termination if process != NULL, endProcData
1234 // will be deleted in GTK_EndProcessDetector
1235 endProcData->process = execData.process;
1236 endProcData->pid = execData.pid;
1237 }
1238
1239
f7ef0602 1240#if defined(__DARWIN__) && (defined(__WXMAC__) || defined(__WXCOCOA__))
e2478fde
VZ
1241 endProcData->tag = wxAddProcessCallbackForPid(endProcData, execData.pid);
1242#else
1243 endProcData->tag = wxAddProcessCallback
1244 (
1245 endProcData,
1246 execData.pipeEndProcDetect.Detach(wxPipe::Read)
1247 );
1248
1249 execData.pipeEndProcDetect.Close();
f7ef0602 1250#endif // defined(__DARWIN__) && (defined(__WXMAC__) || defined(__WXCOCOA__))
e2478fde 1251
f38f6899 1252 if ( flags & wxEXEC_SYNC )
e2478fde
VZ
1253 {
1254 wxBusyCursor bc;
f38f6899
VZ
1255 wxWindowDisabler *wd = flags & wxEXEC_NODISABLE ? NULL
1256 : new wxWindowDisabler;
e2478fde
VZ
1257
1258 // endProcData->pid will be set to 0 from GTK_EndProcessDetector when the
1259 // process terminates
1260 while ( endProcData->pid != 0 )
1261 {
05df0f1b
VZ
1262 bool idle = true;
1263
1f3b2af0 1264#if HAS_PIPE_INPUT_STREAM
e2478fde 1265 if ( execData.bufOut )
05df0f1b 1266 {
e2478fde 1267 execData.bufOut->Update();
05df0f1b
VZ
1268 idle = false;
1269 }
e2478fde
VZ
1270
1271 if ( execData.bufErr )
05df0f1b 1272 {
e2478fde 1273 execData.bufErr->Update();
05df0f1b
VZ
1274 idle = false;
1275 }
1f3b2af0 1276#endif // HAS_PIPE_INPUT_STREAM
e2478fde 1277
1012c2ce 1278 // don't consume 100% of the CPU while we're sitting in this
05df0f1b
VZ
1279 // loop
1280 if ( idle )
39ef7151 1281 wxMilliSleep(1);
05df0f1b 1282
e2478fde
VZ
1283 // give GTK+ a chance to call GTK_EndProcessDetector here and
1284 // also repaint the GUI
1285 wxYield();
1286 }
1287
1288 int exitcode = endProcData->exitcode;
1289
f38f6899 1290 delete wd;
e2478fde
VZ
1291 delete endProcData;
1292
1293 return exitcode;
1294 }
1295 else // async execution
1296 {
1297 return execData.pid;
1298 }
1299}
1300
2dbc444a
RD
1301#endif // wxUSE_GUI
1302#if wxUSE_BASE
1303
e2478fde
VZ
1304void wxHandleProcessTermination(wxEndProcessData *proc_data)
1305{
1306 // notify user about termination if required
1307 if ( proc_data->process )
1308 {
1309 proc_data->process->OnTerminate(proc_data->pid, proc_data->exitcode);
1310 }
1311
1312 // clean up
1313 if ( proc_data->pid > 0 )
1314 {
1315 delete proc_data;
1316 }
1317 else
1318 {
1319 // let wxExecute() know that the process has terminated
1320 proc_data->pid = 0;
1321 }
1322}
1323
2dbc444a 1324#endif // wxUSE_BASE