1 /////////////////////////////////////////////////////////////////////////////
2 // Name: unix/utilsunx.cpp
3 // Purpose: generic Unix implementation of many wx functions
4 // Author: Vadim Zeitlin
6 // Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // ============================================================================
12 // ============================================================================
14 // ----------------------------------------------------------------------------
16 // ----------------------------------------------------------------------------
18 // for compilers that support precompilation, includes "wx.h".
19 #include "wx/wxprec.h"
22 #include "wx/string.h"
27 #include "wx/apptrait.h"
30 #include "wx/process.h"
31 #include "wx/thread.h"
33 #include "wx/wfstream.h"
35 #include "wx/unix/execute.h"
39 // define this to let wxexec.cpp know that we know what we're doing
40 #define _WX_USED_BY_WXEXECUTE_
41 #include "../common/execcmn.cpp"
43 #endif // wxUSE_STREAMS
47 #if defined( __MWERKS__ ) && defined(__MACH__)
48 #define WXWIN_OS_DESCRIPTION "MacOS X"
49 #define HAVE_NANOSLEEP
53 // not only the statfs syscall is called differently depending on platform, but
54 // one of its incarnations, statvfs(), takes different arguments under
55 // different platforms and even different versions of the same system (Solaris
56 // 7 and 8): if you want to test for this, don't forget that the problems only
57 // appear if the large files support is enabled
60 #include <sys/param.h>
61 #include <sys/mount.h>
64 #endif // __BSD__/!__BSD__
66 #define wxStatfs statfs
70 #include <sys/statvfs.h>
72 #define wxStatfs statvfs
73 #endif // HAVE_STATVFS
75 #if defined(HAVE_STATFS) || defined(HAVE_STATVFS)
76 // WX_STATFS_T is detected by configure
77 #define wxStatfs_t WX_STATFS_T
80 // SGI signal.h defines signal handler arguments differently depending on
81 // whether _LANGUAGE_C_PLUS_PLUS is set or not - do set it
82 #if defined(__SGI__) && !defined(_LANGUAGE_C_PLUS_PLUS)
83 #define _LANGUAGE_C_PLUS_PLUS 1
90 #include <sys/types.h>
97 #include <fcntl.h> // for O_WRONLY and friends
98 #include <time.h> // nanosleep() and/or usleep()
99 #include <ctype.h> // isspace()
100 #include <sys/time.h> // needed for FD_SETSIZE
103 #include <sys/utsname.h> // for uname()
106 // ----------------------------------------------------------------------------
107 // conditional compilation
108 // ----------------------------------------------------------------------------
110 // many versions of Unices have this function, but it is not defined in system
111 // headers - please add your system here if it is the case for your OS.
112 // SunOS < 5.6 (i.e. Solaris < 2.6) and DG-UX are like this.
113 #if !defined(HAVE_USLEEP) && \
114 (defined(__SUN__) && !defined(__SunOs_5_6) && \
115 !defined(__SunOs_5_7) && !defined(__SUNPRO_CC)) || \
116 defined(__osf__) || defined(__EMX__)
120 int usleep(unsigned int usec
);
123 /* I copied this from the XFree86 diffs. AV. */
124 #define INCL_DOSPROCESS
126 inline void usleep(unsigned long delay
)
128 DosSleep(delay
? (delay
/1000l) : 1l);
130 #else // !Sun && !EMX
131 void usleep(unsigned long usec
);
133 #endif // Sun/EMX/Something else
136 #define HAVE_USLEEP 1
137 #endif // Unices without usleep()
139 // ============================================================================
141 // ============================================================================
143 // ----------------------------------------------------------------------------
145 // ----------------------------------------------------------------------------
147 void wxSleep(int nSecs
)
152 void wxUsleep(unsigned long milliseconds
)
154 #if defined(HAVE_NANOSLEEP)
156 tmReq
.tv_sec
= (time_t)(milliseconds
/ 1000);
157 tmReq
.tv_nsec
= (milliseconds
% 1000) * 1000 * 1000;
159 // we're not interested in remaining time nor in return value
160 (void)nanosleep(&tmReq
, (timespec
*)NULL
);
161 #elif defined(HAVE_USLEEP)
162 // uncomment this if you feel brave or if you are sure that your version
163 // of Solaris has a safe usleep() function but please notice that usleep()
164 // is known to lead to crashes in MT programs in Solaris 2.[67] and is not
165 // documented as MT-Safe
166 #if defined(__SUN__) && wxUSE_THREADS
167 #error "usleep() cannot be used in MT programs under Solaris."
170 usleep(milliseconds
* 1000); // usleep(3) wants microseconds
171 #elif defined(HAVE_SLEEP)
172 // under BeOS sleep() takes seconds (what about other platforms, if any?)
173 sleep(milliseconds
* 1000);
174 #else // !sleep function
175 #error "usleep() or nanosleep() function required for wxUsleep"
176 #endif // sleep function
179 // ----------------------------------------------------------------------------
180 // process management
181 // ----------------------------------------------------------------------------
183 int wxKill(long pid
, wxSignal sig
, wxKillError
*rc
)
185 int err
= kill((pid_t
)pid
, (int)sig
);
195 *rc
= wxKILL_BAD_SIGNAL
;
199 *rc
= wxKILL_ACCESS_DENIED
;
203 *rc
= wxKILL_NO_PROCESS
;
207 // this goes against Unix98 docs so log it
208 wxLogDebug(_T("unexpected kill(2) return value %d"), err
);
218 #define WXEXECUTE_NARGS 127
220 long wxExecute( const wxString
& command
, int flags
, wxProcess
*process
)
222 wxCHECK_MSG( !command
.IsEmpty(), 0, wxT("can't exec empty command") );
225 // fork() doesn't mix well with POSIX threads: on many systems the program
226 // deadlocks or crashes for some reason. Probably our code is buggy and
227 // doesn't do something which must be done to allow this to work, but I
228 // don't know what yet, so for now just warn the user (this is the least we
230 wxASSERT_MSG( wxThread::IsMain(),
231 _T("wxExecute() can be called only from the main thread") );
232 #endif // wxUSE_THREADS
235 wxChar
*argv
[WXEXECUTE_NARGS
];
237 const wxChar
*cptr
= command
.c_str();
238 wxChar quotechar
= wxT('\0'); // is arg quoted?
239 bool escaped
= FALSE
;
241 // split the command line in arguments
245 quotechar
= wxT('\0');
247 // eat leading whitespace:
248 while ( wxIsspace(*cptr
) )
251 if ( *cptr
== wxT('\'') || *cptr
== wxT('"') )
256 if ( *cptr
== wxT('\\') && ! escaped
)
263 // all other characters:
267 // have we reached the end of the argument?
268 if ( (*cptr
== quotechar
&& ! escaped
)
269 || (quotechar
== wxT('\0') && wxIsspace(*cptr
))
270 || *cptr
== wxT('\0') )
272 wxASSERT_MSG( argc
< WXEXECUTE_NARGS
,
273 wxT("too many arguments in wxExecute") );
275 argv
[argc
] = new wxChar
[argument
.length() + 1];
276 wxStrcpy(argv
[argc
], argument
.c_str());
279 // if not at end of buffer, swallow last character:
283 break; // done with this one, start over
289 // do execute the command
290 long lRc
= wxExecute(argv
, flags
, process
);
295 delete [] argv
[argc
++];
300 // ----------------------------------------------------------------------------
302 // ----------------------------------------------------------------------------
304 static wxString
wxMakeShellCommand(const wxString
& command
)
309 // just an interactive shell
314 // execute command in a shell
315 cmd
<< _T("/bin/sh -c '") << command
<< _T('\'');
321 bool wxShell(const wxString
& command
)
323 return wxExecute(wxMakeShellCommand(command
), wxEXEC_SYNC
) == 0;
326 bool wxShell(const wxString
& command
, wxArrayString
& output
)
328 wxCHECK_MSG( !!command
, FALSE
, _T("can't exec shell non interactively") );
330 return wxExecute(wxMakeShellCommand(command
), output
);
333 // Shutdown or reboot the PC
334 bool wxShutdown(wxShutdownFlags wFlags
)
339 case wxSHUTDOWN_POWEROFF
:
343 case wxSHUTDOWN_REBOOT
:
348 wxFAIL_MSG( _T("unknown wxShutdown() flag") );
352 return system(wxString::Format(_T("init %c"), level
).mb_str()) == 0;
356 // ----------------------------------------------------------------------------
357 // wxStream classes to support IO redirection in wxExecute
358 // ----------------------------------------------------------------------------
362 bool wxPipeInputStream::CanRead() const
364 if ( m_lasterror
== wxSTREAM_EOF
)
367 // check if there is any input available
372 const int fd
= m_file
->fd();
376 FD_SET(fd
, &readfds
);
377 switch ( select(fd
+ 1, &readfds
, NULL
, NULL
, &tv
) )
380 wxLogSysError(_("Impossible to get child process input"));
387 wxFAIL_MSG(_T("unexpected select() return value"));
388 // still fall through
391 // input available -- or maybe not, as select() returns 1 when a
392 // read() will complete without delay, but it could still not read
398 #endif // wxUSE_STREAMS
400 // ----------------------------------------------------------------------------
401 // wxExecute: the real worker function
402 // ----------------------------------------------------------------------------
405 #pragma message disable codeunreachable
408 long wxExecute(wxChar
**argv
,
412 // for the sync execution, we return -1 to indicate failure, but for async
413 // case we return 0 which is never a valid PID
415 // we define this as a macro, not a variable, to avoid compiler warnings
416 // about "ERROR_RETURN_CODE value may be clobbered by fork()"
417 #define ERROR_RETURN_CODE ((flags & wxEXEC_SYNC) ? -1 : 0)
419 wxCHECK_MSG( *argv
, ERROR_RETURN_CODE
, wxT("can't exec empty command") );
423 char *mb_argv
[WXEXECUTE_NARGS
];
425 while (argv
[mb_argc
])
427 wxWX2MBbuf mb_arg
= wxConvertWX2MB(argv
[mb_argc
]);
428 mb_argv
[mb_argc
] = strdup(mb_arg
);
431 mb_argv
[mb_argc
] = (char *) NULL
;
433 // this macro will free memory we used above
434 #define ARGS_CLEANUP \
435 for ( mb_argc = 0; mb_argv[mb_argc]; mb_argc++ ) \
436 free(mb_argv[mb_argc])
438 // no need for cleanup
441 wxChar
**mb_argv
= argv
;
442 #endif // Unicode/ANSI
444 // we want this function to work even if there is no wxApp so ensure that
445 // we have a valid traits pointer
446 wxConsoleAppTraits traitsConsole
;
447 wxAppTraits
*traits
= wxTheApp
? wxTheApp
->GetTraits() : NULL
;
449 traits
= &traitsConsole
;
451 // this struct contains all information which we pass to and from
452 // wxAppTraits methods
453 wxExecuteData execData
;
454 execData
.flags
= flags
;
455 execData
.process
= process
;
458 if ( !traits
->CreateEndProcessPipe(execData
) )
460 wxLogError( _("Failed to execute '%s'\n"), *argv
);
464 return ERROR_RETURN_CODE
;
467 // pipes for inter process communication
468 wxPipe pipeIn
, // stdin
472 if ( process
&& process
->IsRedirected() )
474 if ( !pipeIn
.Create() || !pipeOut
.Create() || !pipeErr
.Create() )
476 wxLogError( _("Failed to execute '%s'\n"), *argv
);
480 return ERROR_RETURN_CODE
;
486 // NB: do *not* use vfork() here, it completely breaks this code for some
487 // reason under Solaris (and maybe others, although not under Linux)
488 // But on OpenVMS we do not have fork so we have to use vfork and
489 // cross our fingers that it works.
495 if ( pid
== -1 ) // error?
497 wxLogSysError( _("Fork failed") );
501 return ERROR_RETURN_CODE
;
503 else if ( pid
== 0 ) // we're in child
505 // These lines close the open file descriptors to to avoid any
506 // input/output which might block the process or irritate the user. If
507 // one wants proper IO for the subprocess, the right thing to do is to
508 // start an xterm executing it.
509 if ( !(flags
& wxEXEC_SYNC
) )
511 for ( int fd
= 0; fd
< FD_SETSIZE
; fd
++ )
513 if ( fd
== pipeIn
[wxPipe::Read
]
514 || fd
== pipeOut
[wxPipe::Write
]
515 || fd
== pipeErr
[wxPipe::Write
]
516 || traits
->IsWriteFDOfEndProcessPipe(execData
, fd
) )
518 // don't close this one, we still need it
522 // leave stderr opened too, it won't do any harm
523 if ( fd
!= STDERR_FILENO
)
528 #if !defined(__VMS) && !defined(__EMX__)
529 if ( flags
& wxEXEC_MAKE_GROUP_LEADER
)
531 // Set process group to child process' pid. Then killing -pid
532 // of the parent will kill the process and all of its children.
537 // reading side can be safely closed but we should keep the write one
539 traits
->DetachWriteFDOfEndProcessPipe(execData
);
541 // redirect stdin, stdout and stderr
544 if ( dup2(pipeIn
[wxPipe::Read
], STDIN_FILENO
) == -1 ||
545 dup2(pipeOut
[wxPipe::Write
], STDOUT_FILENO
) == -1 ||
546 dup2(pipeErr
[wxPipe::Write
], STDERR_FILENO
) == -1 )
548 wxLogSysError(_("Failed to redirect child process input/output"));
556 execvp (*mb_argv
, mb_argv
);
558 fprintf(stderr
, "execvp(");
559 // CS changed ppc to ppc_ as ppc is not available under mac os CW Mach-O
560 for ( char **ppc_
= mb_argv
; *ppc_
; ppc_
++ )
561 fprintf(stderr
, "%s%s", ppc_
== mb_argv
? "" : ", ", *ppc_
);
562 fprintf(stderr
, ") failed with error %d!\n", errno
);
564 // there is no return after successful exec()
567 // some compilers complain about missing return - of course, they
568 // should know that exit() doesn't return but what else can we do if
571 // and, sure enough, other compilers complain about unreachable code
572 // after exit() call, so we can just always have return here...
573 #if defined(__VMS) || defined(__INTEL_COMPILER)
577 else // we're in parent
581 // save it for WaitForChild() use
584 // prepare for IO redirection
587 // the input buffer bufOut is connected to stdout, this is why it is
588 // called bufOut and not bufIn
589 wxStreamTempInputBuffer bufOut
,
591 #endif // wxUSE_STREAMS
593 if ( process
&& process
->IsRedirected() )
596 wxOutputStream
*inStream
=
597 new wxFileOutputStream(pipeIn
.Detach(wxPipe::Write
));
599 wxPipeInputStream
*outStream
=
600 new wxPipeInputStream(pipeOut
.Detach(wxPipe::Read
));
602 wxPipeInputStream
*errStream
=
603 new wxPipeInputStream(pipeErr
.Detach(wxPipe::Read
));
605 process
->SetPipeStreams(outStream
, inStream
, errStream
);
607 bufOut
.Init(outStream
);
608 bufErr
.Init(errStream
);
610 execData
.bufOut
= &bufOut
;
611 execData
.bufErr
= &bufErr
;
612 #endif // wxUSE_STREAMS
622 return traits
->WaitForChild(execData
);
625 return ERROR_RETURN_CODE
;
629 #pragma message enable codeunreachable
632 #undef ERROR_RETURN_CODE
635 // ----------------------------------------------------------------------------
636 // file and directory functions
637 // ----------------------------------------------------------------------------
639 const wxChar
* wxGetHomeDir( wxString
*home
)
641 *home
= wxGetUserHome( wxString() );
643 if ( home
->IsEmpty() )
647 if ( tmp
.Last() != wxT(']'))
648 if ( tmp
.Last() != wxT('/')) *home
<< wxT('/');
650 return home
->c_str();
654 const wxMB2WXbuf
wxGetUserHome( const wxString
&user
)
655 #else // just for binary compatibility -- there is no 'const' here
656 char *wxGetUserHome( const wxString
&user
)
659 struct passwd
*who
= (struct passwd
*) NULL
;
665 if ((ptr
= wxGetenv(wxT("HOME"))) != NULL
)
668 wxWCharBuffer
buffer( ptr
);
674 if ((ptr
= wxGetenv(wxT("USER"))) != NULL
|| (ptr
= wxGetenv(wxT("LOGNAME"))) != NULL
)
676 who
= getpwnam(wxConvertWX2MB(ptr
));
679 // We now make sure the the user exists!
682 who
= getpwuid(getuid());
687 who
= getpwnam (user
.mb_str());
690 return wxConvertMB2WX(who
? who
->pw_dir
: 0);
693 // ----------------------------------------------------------------------------
694 // network and user id routines
695 // ----------------------------------------------------------------------------
697 // retrieve either the hostname or FQDN depending on platform (caller must
698 // check whether it's one or the other, this is why this function is for
700 static bool wxGetHostNameInternal(wxChar
*buf
, int sz
)
702 wxCHECK_MSG( buf
, FALSE
, wxT("NULL pointer in wxGetHostNameInternal") );
706 // we're using uname() which is POSIX instead of less standard sysinfo()
707 #if defined(HAVE_UNAME)
709 bool ok
= uname(&uts
) != -1;
712 wxStrncpy(buf
, wxConvertMB2WX(uts
.nodename
), sz
- 1);
715 #elif defined(HAVE_GETHOSTNAME)
716 bool ok
= gethostname(buf
, sz
) != -1;
717 #else // no uname, no gethostname
718 wxFAIL_MSG(wxT("don't know host name for this machine"));
721 #endif // uname/gethostname
725 wxLogSysError(_("Cannot get the hostname"));
731 bool wxGetHostName(wxChar
*buf
, int sz
)
733 bool ok
= wxGetHostNameInternal(buf
, sz
);
737 // BSD systems return the FQDN, we only want the hostname, so extract
738 // it (we consider that dots are domain separators)
739 wxChar
*dot
= wxStrchr(buf
, wxT('.'));
750 bool wxGetFullHostName(wxChar
*buf
, int sz
)
752 bool ok
= wxGetHostNameInternal(buf
, sz
);
756 if ( !wxStrchr(buf
, wxT('.')) )
758 struct hostent
*host
= gethostbyname(wxConvertWX2MB(buf
));
761 wxLogSysError(_("Cannot get the official hostname"));
767 // the canonical name
768 wxStrncpy(buf
, wxConvertMB2WX(host
->h_name
), sz
);
771 //else: it's already a FQDN (BSD behaves this way)
777 bool wxGetUserId(wxChar
*buf
, int sz
)
782 if ((who
= getpwuid(getuid ())) != NULL
)
784 wxStrncpy (buf
, wxConvertMB2WX(who
->pw_name
), sz
- 1);
791 bool wxGetUserName(wxChar
*buf
, int sz
)
796 if ((who
= getpwuid (getuid ())) != NULL
)
798 // pw_gecos field in struct passwd is not standard
800 char *comma
= strchr(who
->pw_gecos
, ',');
802 *comma
= '\0'; // cut off non-name comment fields
803 wxStrncpy (buf
, wxConvertMB2WX(who
->pw_gecos
), sz
- 1);
804 #else // !HAVE_PW_GECOS
805 wxStrncpy (buf
, wxConvertMB2WX(who
->pw_name
), sz
- 1);
806 #endif // HAVE_PW_GECOS/!HAVE_PW_GECOS
813 // this function is in mac/utils.cpp for wxMac
816 wxString
wxGetOsDescription()
818 #ifndef WXWIN_OS_DESCRIPTION
819 #error WXWIN_OS_DESCRIPTION should be defined in config.h by configure
821 return wxString::FromAscii( WXWIN_OS_DESCRIPTION
);
827 unsigned long wxGetProcessId()
829 return (unsigned long)getpid();
832 long wxGetFreeMemory()
834 #if defined(__LINUX__)
835 // get it from /proc/meminfo
836 FILE *fp
= fopen("/proc/meminfo", "r");
842 if ( fgets(buf
, WXSIZEOF(buf
), fp
) && fgets(buf
, WXSIZEOF(buf
), fp
) )
844 long memTotal
, memUsed
;
845 sscanf(buf
, "Mem: %ld %ld %ld", &memTotal
, &memUsed
, &memFree
);
852 #elif defined(__SUN__) && defined(_SC_AVPHYS_PAGES)
853 return sysconf(_SC_AVPHYS_PAGES
)*sysconf(_SC_PAGESIZE
);
854 //#elif defined(__FREEBSD__) -- might use sysctl() to find it out, probably
861 bool wxGetDiskSpace(const wxString
& path
, wxLongLong
*pTotal
, wxLongLong
*pFree
)
863 #if defined(HAVE_STATFS) || defined(HAVE_STATVFS)
864 // the case to "char *" is needed for AIX 4.3
866 if ( wxStatfs((char *)(const char*)path
.fn_str(), &fs
) != 0 )
868 wxLogSysError( wxT("Failed to get file system statistics") );
873 // under Solaris we also have to use f_frsize field instead of f_bsize
874 // which is in general a multiple of f_frsize
876 wxLongLong blockSize
= fs
.f_frsize
;
878 wxLongLong blockSize
= fs
.f_bsize
;
879 #endif // HAVE_STATVFS/HAVE_STATFS
883 *pTotal
= wxLongLong(fs
.f_blocks
) * blockSize
;
888 *pFree
= wxLongLong(fs
.f_bavail
) * blockSize
;
892 #else // !HAVE_STATFS && !HAVE_STATVFS
894 #endif // HAVE_STATFS
897 // ----------------------------------------------------------------------------
899 // ----------------------------------------------------------------------------
901 bool wxGetEnv(const wxString
& var
, wxString
*value
)
903 // wxGetenv is defined as getenv()
904 wxChar
*p
= wxGetenv(var
);
916 bool wxSetEnv(const wxString
& variable
, const wxChar
*value
)
918 #if defined(HAVE_SETENV)
919 return setenv(variable
.mb_str(),
920 value
? (const char *)wxString(value
).mb_str()
922 1 /* overwrite */) == 0;
923 #elif defined(HAVE_PUTENV)
924 wxString s
= variable
;
926 s
<< _T('=') << value
;
929 const char *p
= s
.mb_str();
931 // the string will be free()d by libc
932 char *buf
= (char *)malloc(strlen(p
) + 1);
935 return putenv(buf
) == 0;
936 #else // no way to set an env var
941 // ----------------------------------------------------------------------------
943 // ----------------------------------------------------------------------------
945 #if wxUSE_ON_FATAL_EXCEPTION
949 extern "C" void wxFatalSignalHandler(wxTYPE_SA_HANDLER
)
953 // give the user a chance to do something special about this
954 wxTheApp
->OnFatalException();
960 bool wxHandleFatalExceptions(bool doit
)
963 static bool s_savedHandlers
= FALSE
;
964 static struct sigaction s_handlerFPE
,
970 if ( doit
&& !s_savedHandlers
)
972 // install the signal handler
973 struct sigaction act
;
975 // some systems extend it with non std fields, so zero everything
976 memset(&act
, 0, sizeof(act
));
978 act
.sa_handler
= wxFatalSignalHandler
;
979 sigemptyset(&act
.sa_mask
);
982 ok
&= sigaction(SIGFPE
, &act
, &s_handlerFPE
) == 0;
983 ok
&= sigaction(SIGILL
, &act
, &s_handlerILL
) == 0;
984 ok
&= sigaction(SIGBUS
, &act
, &s_handlerBUS
) == 0;
985 ok
&= sigaction(SIGSEGV
, &act
, &s_handlerSEGV
) == 0;
988 wxLogDebug(_T("Failed to install our signal handler."));
991 s_savedHandlers
= TRUE
;
993 else if ( s_savedHandlers
)
995 // uninstall the signal handler
996 ok
&= sigaction(SIGFPE
, &s_handlerFPE
, NULL
) == 0;
997 ok
&= sigaction(SIGILL
, &s_handlerILL
, NULL
) == 0;
998 ok
&= sigaction(SIGBUS
, &s_handlerBUS
, NULL
) == 0;
999 ok
&= sigaction(SIGSEGV
, &s_handlerSEGV
, NULL
) == 0;
1002 wxLogDebug(_T("Failed to uninstall our signal handler."));
1005 s_savedHandlers
= FALSE
;
1007 //else: nothing to do
1012 #endif // wxUSE_ON_FATAL_EXCEPTION
1014 // ----------------------------------------------------------------------------
1015 // error and debug output routines (deprecated, use wxLog)
1016 // ----------------------------------------------------------------------------
1018 #if WXWIN_COMPATIBILITY_2_2
1020 void wxDebugMsg( const char *format
, ... )
1023 va_start( ap
, format
);
1024 vfprintf( stderr
, format
, ap
);
1029 void wxError( const wxString
&msg
, const wxString
&title
)
1031 wxFprintf( stderr
, _("Error ") );
1032 if (!title
.IsNull()) wxFprintf( stderr
, wxT("%s "), WXSTRINGCAST(title
) );
1033 if (!msg
.IsNull()) wxFprintf( stderr
, wxT(": %s"), WXSTRINGCAST(msg
) );
1034 wxFprintf( stderr
, wxT(".\n") );
1037 void wxFatalError( const wxString
&msg
, const wxString
&title
)
1039 wxFprintf( stderr
, _("Error ") );
1040 if (!title
.IsNull()) wxFprintf( stderr
, wxT("%s "), WXSTRINGCAST(title
) );
1041 if (!msg
.IsNull()) wxFprintf( stderr
, wxT(": %s"), WXSTRINGCAST(msg
) );
1042 wxFprintf( stderr
, wxT(".\n") );
1043 exit(3); // the same exit code as for abort()
1046 #endif // WXWIN_COMPATIBILITY_2_2
1048 #endif // wxUSE_BASE
1052 // ----------------------------------------------------------------------------
1053 // wxExecute support
1054 // ----------------------------------------------------------------------------
1056 // Darwin doesn't use the same process end detection mechanisms so we don't
1057 // need wxExecute-related helpers for it
1058 #if !(defined(__DARWIN__) && defined(__WXMAC__))
1060 bool wxGUIAppTraits::CreateEndProcessPipe(wxExecuteData
& execData
)
1062 return execData
.pipeEndProcDetect
.Create();
1065 bool wxGUIAppTraits::IsWriteFDOfEndProcessPipe(wxExecuteData
& execData
, int fd
)
1067 return fd
== (execData
.pipeEndProcDetect
)[wxPipe::Write
];
1070 void wxGUIAppTraits::DetachWriteFDOfEndProcessPipe(wxExecuteData
& execData
)
1072 execData
.pipeEndProcDetect
.Detach(wxPipe::Write
);
1073 execData
.pipeEndProcDetect
.Close();
1078 bool wxGUIAppTraits::CreateEndProcessPipe(wxExecuteData
& WXUNUSED(execData
))
1084 wxGUIAppTraits::IsWriteFDOfEndProcessPipe(wxExecuteData
& WXUNUSED(execData
),
1091 wxGUIAppTraits::DetachWriteFDOfEndProcessPipe(wxExecuteData
& WXUNUSED(execData
))
1093 // nothing to do here, we don't use the pipe
1096 #endif // !Darwin/Darwin
1098 int wxGUIAppTraits::WaitForChild(wxExecuteData
& execData
)
1100 wxEndProcessData
*endProcData
= new wxEndProcessData
;
1102 // wxAddProcessCallback is now (with DARWIN) allowed to call the
1103 // callback function directly if the process terminates before
1104 // the callback can be added to the run loop. Set up the endProcData.
1105 if ( execData
.flags
& wxEXEC_SYNC
)
1107 // we may have process for capturing the program output, but it's
1108 // not used in wxEndProcessData in the case of sync execution
1109 endProcData
->process
= NULL
;
1111 // sync execution: indicate it by negating the pid
1112 endProcData
->pid
= -execData
.pid
;
1116 // async execution, nothing special to do -- caller will be
1117 // notified about the process termination if process != NULL, endProcData
1118 // will be deleted in GTK_EndProcessDetector
1119 endProcData
->process
= execData
.process
;
1120 endProcData
->pid
= execData
.pid
;
1124 #if defined(__DARWIN__) && defined(__WXMAC__)
1125 endProcData
->tag
= wxAddProcessCallbackForPid(endProcData
, execData
.pid
);
1127 endProcData
->tag
= wxAddProcessCallback
1130 execData
.pipeEndProcDetect
.Detach(wxPipe::Read
)
1133 execData
.pipeEndProcDetect
.Close();
1134 #endif // defined(__DARWIN__) && defined(__WXMAC__)
1136 if ( execData
.flags
& wxEXEC_SYNC
)
1139 wxWindowDisabler wd
;
1141 // endProcData->pid will be set to 0 from GTK_EndProcessDetector when the
1142 // process terminates
1143 while ( endProcData
->pid
!= 0 )
1148 if ( execData
.bufOut
)
1150 execData
.bufOut
->Update();
1154 if ( execData
.bufErr
)
1156 execData
.bufErr
->Update();
1159 #endif // wxUSE_STREAMS
1161 // don't consume 100% of the CPU while we're sitting this in this
1166 // give GTK+ a chance to call GTK_EndProcessDetector here and
1167 // also repaint the GUI
1171 int exitcode
= endProcData
->exitcode
;
1177 else // async execution
1179 return execData
.pid
;
1186 void wxHandleProcessTermination(wxEndProcessData
*proc_data
)
1188 // notify user about termination if required
1189 if ( proc_data
->process
)
1191 proc_data
->process
->OnTerminate(proc_data
->pid
, proc_data
->exitcode
);
1195 if ( proc_data
->pid
> 0 )
1201 // let wxExecute() know that the process has terminated
1206 #endif // wxUSE_BASE