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 // ----------------------------------------------------------------------------
19 #include "wx/string.h"
26 #include "wx/process.h"
27 #include "wx/thread.h"
29 #include "wx/wfstream.h"
31 // not only the statfs syscall is called differently depending on platform, but
32 // one of its incarnations, statvfs(), takes different arguments under
33 // different platforms and even different versions of the same system (Solaris
34 // 7 and 8): if you want to test for this, don't forget that the problems only
35 // appear if the large files support is enabled
38 #include <sys/param.h>
39 #include <sys/mount.h>
42 #endif // __BSD__/!__BSD__
44 #define wxStatfs statfs
48 #include <sys/statvfs.h>
50 #define wxStatfs statvfs
51 #endif // HAVE_STATVFS
53 #if defined(HAVE_STATFS) || defined(HAVE_STATVFS)
54 // WX_STATFS_T is detected by configure
55 #define wxStatfs_t WX_STATFS_T
59 #include "wx/unix/execute.h"
62 // SGI signal.h defines signal handler arguments differently depending on
63 // whether _LANGUAGE_C_PLUS_PLUS is set or not - do set it
64 #if defined(__SGI__) && !defined(_LANGUAGE_C_PLUS_PLUS)
65 #define _LANGUAGE_C_PLUS_PLUS 1
72 #include <sys/types.h>
79 #include <fcntl.h> // for O_WRONLY and friends
80 #include <time.h> // nanosleep() and/or usleep()
81 #include <ctype.h> // isspace()
82 #include <sys/time.h> // needed for FD_SETSIZE
85 #include <sys/utsname.h> // for uname()
88 // ----------------------------------------------------------------------------
89 // conditional compilation
90 // ----------------------------------------------------------------------------
92 // many versions of Unices have this function, but it is not defined in system
93 // headers - please add your system here if it is the case for your OS.
94 // SunOS < 5.6 (i.e. Solaris < 2.6) and DG-UX are like this.
95 #if !defined(HAVE_USLEEP) && \
96 (defined(__SUN__) && !defined(__SunOs_5_6) && \
97 !defined(__SunOs_5_7) && !defined(__SUNPRO_CC)) || \
98 defined(__osf__) || defined(__EMX__)
102 int usleep(unsigned int usec
);
105 /* I copied this from the XFree86 diffs. AV. */
106 #define INCL_DOSPROCESS
108 inline void usleep(unsigned long delay
)
110 DosSleep(delay
? (delay
/1000l) : 1l);
112 #else // !Sun && !EMX
113 void usleep(unsigned long usec
);
115 #endif // Sun/EMX/Something else
118 #define HAVE_USLEEP 1
119 #endif // Unices without usleep()
121 // ============================================================================
123 // ============================================================================
125 // ----------------------------------------------------------------------------
127 // ----------------------------------------------------------------------------
129 void wxSleep(int nSecs
)
134 void wxUsleep(unsigned long milliseconds
)
136 #if defined(HAVE_NANOSLEEP)
138 tmReq
.tv_sec
= (time_t)(milliseconds
/ 1000);
139 tmReq
.tv_nsec
= (milliseconds
% 1000) * 1000 * 1000;
141 // we're not interested in remaining time nor in return value
142 (void)nanosleep(&tmReq
, (timespec
*)NULL
);
143 #elif defined(HAVE_USLEEP)
144 // uncomment this if you feel brave or if you are sure that your version
145 // of Solaris has a safe usleep() function but please notice that usleep()
146 // is known to lead to crashes in MT programs in Solaris 2.[67] and is not
147 // documented as MT-Safe
148 #if defined(__SUN__) && wxUSE_THREADS
149 #error "usleep() cannot be used in MT programs under Solaris."
152 usleep(milliseconds
* 1000); // usleep(3) wants microseconds
153 #elif defined(HAVE_SLEEP)
154 // under BeOS sleep() takes seconds (what about other platforms, if any?)
155 sleep(milliseconds
* 1000);
156 #else // !sleep function
157 #error "usleep() or nanosleep() function required for wxUsleep"
158 #endif // sleep function
161 // ----------------------------------------------------------------------------
162 // process management
163 // ----------------------------------------------------------------------------
165 int wxKill(long pid
, wxSignal sig
, wxKillError
*rc
)
167 int err
= kill((pid_t
)pid
, (int)sig
);
177 *rc
= wxKILL_BAD_SIGNAL
;
181 *rc
= wxKILL_ACCESS_DENIED
;
185 *rc
= wxKILL_NO_PROCESS
;
189 // this goes against Unix98 docs so log it
190 wxLogDebug(_T("unexpected kill(2) return value %d"), err
);
200 #define WXEXECUTE_NARGS 127
202 long wxExecute( const wxString
& command
, int flags
, wxProcess
*process
)
204 wxCHECK_MSG( !command
.IsEmpty(), 0, wxT("can't exec empty command") );
207 // fork() doesn't mix well with POSIX threads: on many systems the program
208 // deadlocks or crashes for some reason. Probably our code is buggy and
209 // doesn't do something which must be done to allow this to work, but I
210 // don't know what yet, so for now just warn the user (this is the least we
212 wxASSERT_MSG( wxThread::IsMain(),
213 _T("wxExecute() can be called only from the main thread") );
214 #endif // wxUSE_THREADS
217 wxChar
*argv
[WXEXECUTE_NARGS
];
219 const wxChar
*cptr
= command
.c_str();
220 wxChar quotechar
= wxT('\0'); // is arg quoted?
221 bool escaped
= FALSE
;
223 // split the command line in arguments
227 quotechar
= wxT('\0');
229 // eat leading whitespace:
230 while ( wxIsspace(*cptr
) )
233 if ( *cptr
== wxT('\'') || *cptr
== wxT('"') )
238 if ( *cptr
== wxT('\\') && ! escaped
)
245 // all other characters:
249 // have we reached the end of the argument?
250 if ( (*cptr
== quotechar
&& ! escaped
)
251 || (quotechar
== wxT('\0') && wxIsspace(*cptr
))
252 || *cptr
== wxT('\0') )
254 wxASSERT_MSG( argc
< WXEXECUTE_NARGS
,
255 wxT("too many arguments in wxExecute") );
257 argv
[argc
] = new wxChar
[argument
.length() + 1];
258 wxStrcpy(argv
[argc
], argument
.c_str());
261 // if not at end of buffer, swallow last character:
265 break; // done with this one, start over
271 // do execute the command
272 long lRc
= wxExecute(argv
, flags
, process
);
277 delete [] argv
[argc
++];
282 // ----------------------------------------------------------------------------
284 // ----------------------------------------------------------------------------
286 static wxString
wxMakeShellCommand(const wxString
& command
)
291 // just an interactive shell
296 // execute command in a shell
297 cmd
<< _T("/bin/sh -c '") << command
<< _T('\'');
303 bool wxShell(const wxString
& command
)
305 return wxExecute(wxMakeShellCommand(command
), wxEXEC_SYNC
) == 0;
308 bool wxShell(const wxString
& command
, wxArrayString
& output
)
310 wxCHECK_MSG( !!command
, FALSE
, _T("can't exec shell non interactively") );
312 return wxExecute(wxMakeShellCommand(command
), output
);
315 // Shutdown or reboot the PC
316 bool wxShutdown(wxShutdownFlags wFlags
)
321 case wxSHUTDOWN_POWEROFF
:
325 case wxSHUTDOWN_REBOOT
:
330 wxFAIL_MSG( _T("unknown wxShutdown() flag") );
334 return system(wxString::Format(_T("init %c"), level
).mb_str()) == 0;
340 void wxHandleProcessTermination(wxEndProcessData
*proc_data
)
342 // notify user about termination if required
343 if ( proc_data
->process
)
345 proc_data
->process
->OnTerminate(proc_data
->pid
, proc_data
->exitcode
);
349 if ( proc_data
->pid
> 0 )
355 // let wxExecute() know that the process has terminated
362 // ----------------------------------------------------------------------------
363 // wxStream classes to support IO redirection in wxExecute
364 // ----------------------------------------------------------------------------
368 // ----------------------------------------------------------------------------
369 // wxPipeInputStream: stream for reading from a pipe
370 // ----------------------------------------------------------------------------
372 class wxPipeInputStream
: public wxFileInputStream
375 wxPipeInputStream(int fd
) : wxFileInputStream(fd
) { }
377 // return TRUE if the pipe is still opened
378 bool IsOpened() const { return !Eof(); }
380 // return TRUE if we have anything to read, don't block
381 virtual bool CanRead() const;
384 bool wxPipeInputStream::CanRead() const
386 if ( m_lasterror
== wxSTREAM_EOF
)
389 // check if there is any input available
394 const int fd
= m_file
->fd();
398 FD_SET(fd
, &readfds
);
399 switch ( select(fd
+ 1, &readfds
, NULL
, NULL
, &tv
) )
402 wxLogSysError(_("Impossible to get child process input"));
409 wxFAIL_MSG(_T("unexpected select() return value"));
410 // still fall through
413 // input available -- or maybe not, as select() returns 1 when a
414 // read() will complete without delay, but it could still not read
420 // define this to let wxexec.cpp know that we know what we're doing
421 #define _WX_USED_BY_WXEXECUTE_
422 #include "../common/execcmn.cpp"
424 #endif // wxUSE_STREAMS
426 // ----------------------------------------------------------------------------
427 // wxPipe: this encapsulates pipe() system call
428 // ----------------------------------------------------------------------------
433 // the symbolic names for the pipe ends
445 // default ctor doesn't do anything
446 wxPipe() { m_fds
[Read
] = m_fds
[Write
] = INVALID_FD
; }
448 // create the pipe, return TRUE if ok, FALSE on error
451 if ( pipe(m_fds
) == -1 )
453 wxLogSysError(_("Pipe creation failed"));
461 // return TRUE if we were created successfully
462 bool IsOk() const { return m_fds
[Read
] != INVALID_FD
; }
464 // return the descriptor for one of the pipe ends
465 int operator[](Direction which
) const
467 wxASSERT_MSG( which
>= 0 && (size_t)which
< WXSIZEOF(m_fds
),
468 _T("invalid pipe index") );
473 // detach a descriptor, meaning that the pipe dtor won't close it, and
475 int Detach(Direction which
)
477 wxASSERT_MSG( which
>= 0 && (size_t)which
< WXSIZEOF(m_fds
),
478 _T("invalid pipe index") );
480 int fd
= m_fds
[which
];
481 m_fds
[which
] = INVALID_FD
;
486 // close the pipe descriptors
489 for ( size_t n
= 0; n
< WXSIZEOF(m_fds
); n
++ )
491 if ( m_fds
[n
] != INVALID_FD
)
496 // dtor closes the pipe descriptors
497 ~wxPipe() { Close(); }
503 // ----------------------------------------------------------------------------
504 // wxExecute: the real worker function
505 // ----------------------------------------------------------------------------
508 #pragma message disable codeunreachable
511 long wxExecute(wxChar
**argv
,
515 // for the sync execution, we return -1 to indicate failure, but for async
516 // case we return 0 which is never a valid PID
518 // we define this as a macro, not a variable, to avoid compiler warnings
519 // about "ERROR_RETURN_CODE value may be clobbered by fork()"
520 #define ERROR_RETURN_CODE ((flags & wxEXEC_SYNC) ? -1 : 0)
522 wxCHECK_MSG( *argv
, ERROR_RETURN_CODE
, wxT("can't exec empty command") );
526 char *mb_argv
[WXEXECUTE_NARGS
];
528 while (argv
[mb_argc
])
530 wxWX2MBbuf mb_arg
= wxConvertWX2MB(argv
[mb_argc
]);
531 mb_argv
[mb_argc
] = strdup(mb_arg
);
534 mb_argv
[mb_argc
] = (char *) NULL
;
536 // this macro will free memory we used above
537 #define ARGS_CLEANUP \
538 for ( mb_argc = 0; mb_argv[mb_argc]; mb_argc++ ) \
539 free(mb_argv[mb_argc])
541 // no need for cleanup
544 wxChar
**mb_argv
= argv
;
545 #endif // Unicode/ANSI
549 wxPipe pipeEndProcDetect
;
550 if ( !pipeEndProcDetect
.Create() )
552 wxLogError( _("Failed to execute '%s'\n"), *argv
);
556 return ERROR_RETURN_CODE
;
560 // pipes for inter process communication
561 wxPipe pipeIn
, // stdin
565 if ( process
&& process
->IsRedirected() )
567 if ( !pipeIn
.Create() || !pipeOut
.Create() || !pipeErr
.Create() )
569 wxLogError( _("Failed to execute '%s'\n"), *argv
);
573 return ERROR_RETURN_CODE
;
579 // NB: do *not* use vfork() here, it completely breaks this code for some
580 // reason under Solaris (and maybe others, although not under Linux)
581 // But on OpenVMS we do not have fork so we have to use vfork and
582 // cross our fingers that it works.
588 if ( pid
== -1 ) // error?
590 wxLogSysError( _("Fork failed") );
594 return ERROR_RETURN_CODE
;
596 else if ( pid
== 0 ) // we're in child
598 // These lines close the open file descriptors to to avoid any
599 // input/output which might block the process or irritate the user. If
600 // one wants proper IO for the subprocess, the right thing to do is to
601 // start an xterm executing it.
602 if ( !(flags
& wxEXEC_SYNC
) )
604 for ( int fd
= 0; fd
< FD_SETSIZE
; fd
++ )
606 if ( fd
== pipeIn
[wxPipe::Read
]
607 || fd
== pipeOut
[wxPipe::Write
]
608 || fd
== pipeErr
[wxPipe::Write
]
610 || fd
== pipeEndProcDetect
[wxPipe::Write
]
614 // don't close this one, we still need it
618 // leave stderr opened too, it won't do any harm
619 if ( fd
!= STDERR_FILENO
)
624 #if !defined(__VMS) && !defined(__EMX__)
625 if ( flags
& wxEXEC_MAKE_GROUP_LEADER
)
627 // Set process group to child process' pid. Then killing -pid
628 // of the parent will kill the process and all of its children.
634 // reading side can be safely closed but we should keep the write one
636 pipeEndProcDetect
.Detach(wxPipe::Write
);
637 pipeEndProcDetect
.Close();
640 // redirect stdin, stdout and stderr
643 if ( dup2(pipeIn
[wxPipe::Read
], STDIN_FILENO
) == -1 ||
644 dup2(pipeOut
[wxPipe::Write
], STDOUT_FILENO
) == -1 ||
645 dup2(pipeErr
[wxPipe::Write
], STDERR_FILENO
) == -1 )
647 wxLogSysError(_("Failed to redirect child process input/output"));
655 execvp (*mb_argv
, mb_argv
);
657 // there is no return after successful exec()
660 // some compilers complain about missing return - of course, they
661 // should know that exit() doesn't return but what else can we do if
664 // and, sure enough, other compilers complain about unreachable code
665 // after exit() call, so we can just always have return here...
666 #if defined(__VMS) || defined(__INTEL_COMPILER)
670 else // we're in parent
674 // prepare for IO redirection
677 // the input buffer bufOut is connected to stdout, this is why it is
678 // called bufOut and not bufIn
679 wxStreamTempInputBuffer bufOut
,
681 #endif // wxUSE_STREAMS
683 if ( process
&& process
->IsRedirected() )
686 wxOutputStream
*inStream
=
687 new wxFileOutputStream(pipeIn
.Detach(wxPipe::Write
));
689 wxPipeInputStream
*outStream
=
690 new wxPipeInputStream(pipeOut
.Detach(wxPipe::Read
));
692 wxPipeInputStream
*errStream
=
693 new wxPipeInputStream(pipeErr
.Detach(wxPipe::Read
));
695 process
->SetPipeStreams(outStream
, inStream
, errStream
);
697 bufOut
.Init(outStream
);
698 bufErr
.Init(errStream
);
699 #endif // wxUSE_STREAMS
709 #if wxUSE_GUI && !defined(__WXMICROWIN__)
710 wxEndProcessData
*data
= new wxEndProcessData
;
712 data
->tag
= wxAddProcessCallback
715 pipeEndProcDetect
.Detach(wxPipe::Read
)
718 pipeEndProcDetect
.Close();
720 if ( flags
& wxEXEC_SYNC
)
722 // we may have process for capturing the program output, but it's
723 // not used in wxEndProcessData in the case of sync execution
724 data
->process
= NULL
;
726 // sync execution: indicate it by negating the pid
732 // data->pid will be set to 0 from GTK_EndProcessDetector when the
733 // process terminates
734 while ( data
->pid
!= 0 )
739 #endif // wxUSE_STREAMS
741 // give GTK+ a chance to call GTK_EndProcessDetector here and
742 // also repaint the GUI
746 int exitcode
= data
->exitcode
;
752 else // async execution
754 // async execution, nothing special to do - caller will be
755 // notified about the process termination if process != NULL, data
756 // will be deleted in GTK_EndProcessDetector
757 data
->process
= process
;
764 wxASSERT_MSG( flags
& wxEXEC_SYNC
,
765 wxT("async execution not supported yet") );
768 if ( waitpid(pid
, &exitcode
, 0) == -1 || !WIFEXITED(exitcode
) )
770 wxLogSysError(_("Waiting for subprocess termination failed"));
777 return ERROR_RETURN_CODE
;
781 #pragma message enable codeunreachable
784 #undef ERROR_RETURN_CODE
787 // ----------------------------------------------------------------------------
788 // file and directory functions
789 // ----------------------------------------------------------------------------
791 const wxChar
* wxGetHomeDir( wxString
*home
)
793 *home
= wxGetUserHome( wxString() );
795 if ( home
->IsEmpty() )
799 if ( tmp
.Last() != wxT(']'))
800 if ( tmp
.Last() != wxT('/')) *home
<< wxT('/');
802 return home
->c_str();
806 const wxMB2WXbuf
wxGetUserHome( const wxString
&user
)
807 #else // just for binary compatibility -- there is no 'const' here
808 char *wxGetUserHome( const wxString
&user
)
811 struct passwd
*who
= (struct passwd
*) NULL
;
817 if ((ptr
= wxGetenv(wxT("HOME"))) != NULL
)
820 wxWCharBuffer
buffer( ptr
);
826 if ((ptr
= wxGetenv(wxT("USER"))) != NULL
|| (ptr
= wxGetenv(wxT("LOGNAME"))) != NULL
)
828 who
= getpwnam(wxConvertWX2MB(ptr
));
831 // We now make sure the the user exists!
834 who
= getpwuid(getuid());
839 who
= getpwnam (user
.mb_str());
842 return wxConvertMB2WX(who
? who
->pw_dir
: 0);
845 // ----------------------------------------------------------------------------
846 // network and user id routines
847 // ----------------------------------------------------------------------------
849 // retrieve either the hostname or FQDN depending on platform (caller must
850 // check whether it's one or the other, this is why this function is for
852 static bool wxGetHostNameInternal(wxChar
*buf
, int sz
)
854 wxCHECK_MSG( buf
, FALSE
, wxT("NULL pointer in wxGetHostNameInternal") );
858 // we're using uname() which is POSIX instead of less standard sysinfo()
859 #if defined(HAVE_UNAME)
861 bool ok
= uname(&uts
) != -1;
864 wxStrncpy(buf
, wxConvertMB2WX(uts
.nodename
), sz
- 1);
867 #elif defined(HAVE_GETHOSTNAME)
868 bool ok
= gethostname(buf
, sz
) != -1;
869 #else // no uname, no gethostname
870 wxFAIL_MSG(wxT("don't know host name for this machine"));
873 #endif // uname/gethostname
877 wxLogSysError(_("Cannot get the hostname"));
883 bool wxGetHostName(wxChar
*buf
, int sz
)
885 bool ok
= wxGetHostNameInternal(buf
, sz
);
889 // BSD systems return the FQDN, we only want the hostname, so extract
890 // it (we consider that dots are domain separators)
891 wxChar
*dot
= wxStrchr(buf
, wxT('.'));
902 bool wxGetFullHostName(wxChar
*buf
, int sz
)
904 bool ok
= wxGetHostNameInternal(buf
, sz
);
908 if ( !wxStrchr(buf
, wxT('.')) )
910 struct hostent
*host
= gethostbyname(wxConvertWX2MB(buf
));
913 wxLogSysError(_("Cannot get the official hostname"));
919 // the canonical name
920 wxStrncpy(buf
, wxConvertMB2WX(host
->h_name
), sz
);
923 //else: it's already a FQDN (BSD behaves this way)
929 bool wxGetUserId(wxChar
*buf
, int sz
)
934 if ((who
= getpwuid(getuid ())) != NULL
)
936 wxStrncpy (buf
, wxConvertMB2WX(who
->pw_name
), sz
- 1);
943 bool wxGetUserName(wxChar
*buf
, int sz
)
948 if ((who
= getpwuid (getuid ())) != NULL
)
950 // pw_gecos field in struct passwd is not standard
952 char *comma
= strchr(who
->pw_gecos
, ',');
954 *comma
= '\0'; // cut off non-name comment fields
955 wxStrncpy (buf
, wxConvertMB2WX(who
->pw_gecos
), sz
- 1);
956 #else // !HAVE_PW_GECOS
957 wxStrncpy (buf
, wxConvertMB2WX(who
->pw_name
), sz
- 1);
958 #endif // HAVE_PW_GECOS/!HAVE_PW_GECOS
966 wxString
wxGetOsDescription()
968 #ifndef WXWIN_OS_DESCRIPTION
969 #error WXWIN_OS_DESCRIPTION should be defined in config.h by configure
971 return wxString::FromAscii( WXWIN_OS_DESCRIPTION
);
976 // this function returns the GUI toolkit version in GUI programs, but OS
977 // version in non-GUI ones
980 int wxGetOsVersion(int *majorVsn
, int *minorVsn
)
985 if ( sscanf(WXWIN_OS_DESCRIPTION
, "%s %d.%d", name
, &major
, &minor
) != 3 )
987 // unreckognized uname string format
1001 unsigned long wxGetProcessId()
1003 return (unsigned long)getpid();
1006 long wxGetFreeMemory()
1008 #if defined(__LINUX__)
1009 // get it from /proc/meminfo
1010 FILE *fp
= fopen("/proc/meminfo", "r");
1016 if ( fgets(buf
, WXSIZEOF(buf
), fp
) && fgets(buf
, WXSIZEOF(buf
), fp
) )
1018 long memTotal
, memUsed
;
1019 sscanf(buf
, "Mem: %ld %ld %ld", &memTotal
, &memUsed
, &memFree
);
1026 #elif defined(__SUN__) && defined(_SC_AVPHYS_PAGES)
1027 return sysconf(_SC_AVPHYS_PAGES
)*sysconf(_SC_PAGESIZE
);
1028 //#elif defined(__FREEBSD__) -- might use sysctl() to find it out, probably
1031 // can't find it out
1035 bool wxGetDiskSpace(const wxString
& path
, wxLongLong
*pTotal
, wxLongLong
*pFree
)
1037 #if defined(HAVE_STATFS) || defined(HAVE_STATVFS)
1038 // the case to "char *" is needed for AIX 4.3
1040 if ( wxStatfs((char *)(const char*)path
.fn_str(), &fs
) != 0 )
1042 wxLogSysError( wxT("Failed to get file system statistics") );
1047 // under Solaris we also have to use f_frsize field instead of f_bsize
1048 // which is in general a multiple of f_frsize
1050 wxLongLong blockSize
= fs
.f_frsize
;
1051 #else // HAVE_STATFS
1052 wxLongLong blockSize
= fs
.f_bsize
;
1053 #endif // HAVE_STATVFS/HAVE_STATFS
1057 *pTotal
= wxLongLong(fs
.f_blocks
) * blockSize
;
1062 *pFree
= wxLongLong(fs
.f_bavail
) * blockSize
;
1066 #else // !HAVE_STATFS && !HAVE_STATVFS
1068 #endif // HAVE_STATFS
1071 // ----------------------------------------------------------------------------
1073 // ----------------------------------------------------------------------------
1075 bool wxGetEnv(const wxString
& var
, wxString
*value
)
1077 // wxGetenv is defined as getenv()
1078 wxChar
*p
= wxGetenv(var
);
1090 bool wxSetEnv(const wxString
& variable
, const wxChar
*value
)
1092 #if defined(HAVE_SETENV)
1093 return setenv(variable
.mb_str(),
1094 value
? (const char *)wxString(value
).mb_str()
1096 1 /* overwrite */) == 0;
1097 #elif defined(HAVE_PUTENV)
1098 wxString s
= variable
;
1100 s
<< _T('=') << value
;
1102 // transform to ANSI
1103 const char *p
= s
.mb_str();
1105 // the string will be free()d by libc
1106 char *buf
= (char *)malloc(strlen(p
) + 1);
1109 return putenv(buf
) == 0;
1110 #else // no way to set an env var
1115 // ----------------------------------------------------------------------------
1117 // ----------------------------------------------------------------------------
1119 #if wxUSE_ON_FATAL_EXCEPTION
1123 extern "C" void wxFatalSignalHandler(wxTYPE_SA_HANDLER
)
1127 // give the user a chance to do something special about this
1128 wxTheApp
->OnFatalException();
1134 bool wxHandleFatalExceptions(bool doit
)
1137 static bool s_savedHandlers
= FALSE
;
1138 static struct sigaction s_handlerFPE
,
1144 if ( doit
&& !s_savedHandlers
)
1146 // install the signal handler
1147 struct sigaction act
;
1149 // some systems extend it with non std fields, so zero everything
1150 memset(&act
, 0, sizeof(act
));
1152 act
.sa_handler
= wxFatalSignalHandler
;
1153 sigemptyset(&act
.sa_mask
);
1156 ok
&= sigaction(SIGFPE
, &act
, &s_handlerFPE
) == 0;
1157 ok
&= sigaction(SIGILL
, &act
, &s_handlerILL
) == 0;
1158 ok
&= sigaction(SIGBUS
, &act
, &s_handlerBUS
) == 0;
1159 ok
&= sigaction(SIGSEGV
, &act
, &s_handlerSEGV
) == 0;
1162 wxLogDebug(_T("Failed to install our signal handler."));
1165 s_savedHandlers
= TRUE
;
1167 else if ( s_savedHandlers
)
1169 // uninstall the signal handler
1170 ok
&= sigaction(SIGFPE
, &s_handlerFPE
, NULL
) == 0;
1171 ok
&= sigaction(SIGILL
, &s_handlerILL
, NULL
) == 0;
1172 ok
&= sigaction(SIGBUS
, &s_handlerBUS
, NULL
) == 0;
1173 ok
&= sigaction(SIGSEGV
, &s_handlerSEGV
, NULL
) == 0;
1176 wxLogDebug(_T("Failed to uninstall our signal handler."));
1179 s_savedHandlers
= FALSE
;
1181 //else: nothing to do
1186 #endif // wxUSE_ON_FATAL_EXCEPTION
1188 // ----------------------------------------------------------------------------
1189 // error and debug output routines (deprecated, use wxLog)
1190 // ----------------------------------------------------------------------------
1192 #if WXWIN_COMPATIBILITY_2_2
1194 void wxDebugMsg( const char *format
, ... )
1197 va_start( ap
, format
);
1198 vfprintf( stderr
, format
, ap
);
1203 void wxError( const wxString
&msg
, const wxString
&title
)
1205 wxFprintf( stderr
, _("Error ") );
1206 if (!title
.IsNull()) wxFprintf( stderr
, wxT("%s "), WXSTRINGCAST(title
) );
1207 if (!msg
.IsNull()) wxFprintf( stderr
, wxT(": %s"), WXSTRINGCAST(msg
) );
1208 wxFprintf( stderr
, wxT(".\n") );
1211 void wxFatalError( const wxString
&msg
, const wxString
&title
)
1213 wxFprintf( stderr
, _("Error ") );
1214 if (!title
.IsNull()) wxFprintf( stderr
, wxT("%s "), WXSTRINGCAST(title
) );
1215 if (!msg
.IsNull()) wxFprintf( stderr
, wxT(": %s"), WXSTRINGCAST(msg
) );
1216 wxFprintf( stderr
, wxT(".\n") );
1217 exit(3); // the same exit code as for abort()
1220 #endif // WXWIN_COMPATIBILITY_2_2