1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/unix/utilsunx.cpp
3 // Purpose: generic Unix implementation of many wx functions (for wxBase)
4 // Author: Vadim Zeitlin
6 // Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin
7 // (c) 2013 Rob Bresalier, Vadim Zeitlin
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // for compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
24 #define USE_PUTENV (!defined(HAVE_SETENV) && defined(HAVE_PUTENV))
27 #include "wx/string.h"
31 #include "wx/wxcrtvararg.h"
33 #include "wx/module.h"
34 #include "wx/hashmap.h"
38 #include "wx/apptrait.h"
40 #include "wx/process.h"
41 #include "wx/scopedptr.h"
42 #include "wx/thread.h"
44 #include "wx/cmdline.h"
46 #include "wx/wfstream.h"
48 #include "wx/private/selectdispatcher.h"
49 #include "wx/private/fdiodispatcher.h"
50 #include "wx/unix/execute.h"
51 #include "wx/unix/private.h"
53 #include "wx/evtloop.h"
54 #include "wx/mstream.h"
55 #include "wx/private/fdioeventloopsourcehandler.h"
58 #include <sys/wait.h> // waitpid()
60 #ifdef HAVE_SYS_SELECT_H
61 # include <sys/select.h>
64 #define HAS_PIPE_STREAMS (wxUSE_STREAMS && wxUSE_FILE)
68 #include "wx/private/pipestream.h"
69 #include "wx/private/streamtempinput.h"
70 #include "wx/unix/private/executeiohandler.h"
72 #endif // HAS_PIPE_STREAMS
74 // not only the statfs syscall is called differently depending on platform, but
75 // one of its incarnations, statvfs(), takes different arguments under
76 // different platforms and even different versions of the same system (Solaris
77 // 7 and 8): if you want to test for this, don't forget that the problems only
78 // appear if the large files support is enabled
81 #include <sys/param.h>
82 #include <sys/mount.h>
85 #endif // __BSD__/!__BSD__
87 #define wxStatfs statfs
89 #ifndef HAVE_STATFS_DECL
90 // some systems lack statfs() prototype in the system headers (AIX 4)
91 extern "C" int statfs(const char *path
, struct statfs
*buf
);
96 #include <sys/statvfs.h>
98 #define wxStatfs statvfs
99 #endif // HAVE_STATVFS
101 #if defined(HAVE_STATFS) || defined(HAVE_STATVFS)
102 // WX_STATFS_T is detected by configure
103 #define wxStatfs_t WX_STATFS_T
106 // SGI signal.h defines signal handler arguments differently depending on
107 // whether _LANGUAGE_C_PLUS_PLUS is set or not - do set it
108 #if defined(__SGI__) && !defined(_LANGUAGE_C_PLUS_PLUS)
109 #define _LANGUAGE_C_PLUS_PLUS 1
115 #include <sys/stat.h>
116 #include <sys/types.h>
117 #include <sys/wait.h>
122 #include <time.h> // nanosleep() and/or usleep()
123 #include <ctype.h> // isspace()
124 #include <sys/time.h> // needed for FD_SETSIZE
127 #include <sys/utsname.h> // for uname()
130 // Used by wxGetFreeMemory().
132 #include <sys/sysmp.h>
133 #include <sys/sysinfo.h> // for SAGET and MINFO structures
136 #ifdef HAVE_SETPRIORITY
137 #include <sys/resource.h> // for setpriority()
140 // ----------------------------------------------------------------------------
141 // conditional compilation
142 // ----------------------------------------------------------------------------
144 // many versions of Unices have this function, but it is not defined in system
145 // headers - please add your system here if it is the case for your OS.
146 // SunOS < 5.6 (i.e. Solaris < 2.6) and DG-UX are like this.
147 #if !defined(HAVE_USLEEP) && \
148 ((defined(__SUN__) && !defined(__SunOs_5_6) && \
149 !defined(__SunOs_5_7) && !defined(__SUNPRO_CC)) || \
150 defined(__osf__) || defined(__EMX__))
154 /* I copied this from the XFree86 diffs. AV. */
155 #define INCL_DOSPROCESS
157 inline void usleep(unsigned long delay
)
159 DosSleep(delay
? (delay
/1000l) : 1l);
162 int usleep(unsigned int usec
);
163 #endif // __EMX__/Unix
166 #define HAVE_USLEEP 1
167 #endif // Unices without usleep()
169 // ============================================================================
171 // ============================================================================
173 // ----------------------------------------------------------------------------
175 // ----------------------------------------------------------------------------
177 void wxSleep(int nSecs
)
182 void wxMicroSleep(unsigned long microseconds
)
184 #if defined(HAVE_NANOSLEEP)
186 tmReq
.tv_sec
= (time_t)(microseconds
/ 1000000);
187 tmReq
.tv_nsec
= (microseconds
% 1000000) * 1000;
189 // we're not interested in remaining time nor in return value
190 (void)nanosleep(&tmReq
, NULL
);
191 #elif defined(HAVE_USLEEP)
192 // uncomment this if you feel brave or if you are sure that your version
193 // of Solaris has a safe usleep() function but please notice that usleep()
194 // is known to lead to crashes in MT programs in Solaris 2.[67] and is not
195 // documented as MT-Safe
196 #if defined(__SUN__) && wxUSE_THREADS
197 #error "usleep() cannot be used in MT programs under Solaris."
200 usleep(microseconds
);
201 #elif defined(HAVE_SLEEP)
202 // under BeOS sleep() takes seconds (what about other platforms, if any?)
203 sleep(microseconds
* 1000000);
204 #else // !sleep function
205 #error "usleep() or nanosleep() function required for wxMicroSleep"
206 #endif // sleep function
209 void wxMilliSleep(unsigned long milliseconds
)
211 wxMicroSleep(milliseconds
*1000);
214 // ----------------------------------------------------------------------------
215 // process management
216 // ----------------------------------------------------------------------------
218 int wxKill(long pid
, wxSignal sig
, wxKillError
*rc
, int flags
)
220 int err
= kill((pid_t
) (flags
& wxKILL_CHILDREN
) ? -pid
: pid
, (int)sig
);
223 switch ( err
? errno
: 0 )
230 *rc
= wxKILL_BAD_SIGNAL
;
234 *rc
= wxKILL_ACCESS_DENIED
;
238 *rc
= wxKILL_NO_PROCESS
;
242 // this goes against Unix98 docs so log it
243 wxLogDebug(wxT("unexpected kill(2) return value %d"), err
);
253 // Shutdown or reboot the PC
254 bool wxShutdown(int flags
)
256 flags
&= ~wxSHUTDOWN_FORCE
;
261 case wxSHUTDOWN_POWEROFF
:
265 case wxSHUTDOWN_REBOOT
:
269 case wxSHUTDOWN_LOGOFF
:
270 // TODO: use dcop to log off?
274 wxFAIL_MSG( wxT("unknown wxShutdown() flag") );
278 return system(wxString::Format("init %c", level
).mb_str()) == 0;
281 // ----------------------------------------------------------------------------
282 // wxStream classes to support IO redirection in wxExecute
283 // ----------------------------------------------------------------------------
287 bool wxPipeInputStream::CanRead() const
289 if ( m_lasterror
== wxSTREAM_EOF
)
292 // check if there is any input available
297 const int fd
= m_file
->fd();
302 wxFD_SET(fd
, &readfds
);
304 switch ( select(fd
+ 1, &readfds
, NULL
, NULL
, &tv
) )
307 wxLogSysError(_("Impossible to get child process input"));
314 wxFAIL_MSG(wxT("unexpected select() return value"));
315 // still fall through
318 // input available -- or maybe not, as select() returns 1 when a
319 // read() will complete without delay, but it could still not read
325 size_t wxPipeOutputStream::OnSysWrite(const void *buffer
, size_t size
)
327 // We need to suppress error logging here, because on writing to a pipe
328 // which is full, wxFile::Write reports a system error. However, this is
329 // not an extraordinary situation, and it should not be reported to the
330 // user (but if really needed, the program can recognize it by checking
331 // whether LastRead() == 0.) Other errors will be reported below.
335 ret
= m_file
->Write(buffer
, size
);
338 switch ( m_file
->GetLastError() )
344 #if defined(EWOULDBLOCK) && (EWOULDBLOCK != EAGAIN)
347 // do not treat it as an error
348 m_file
->ClearLastError();
357 wxLogSysError(_("Can't write to child process's stdin"));
358 m_lasterror
= wxSTREAM_WRITE_ERROR
;
364 #endif // HAS_PIPE_STREAMS
366 // ----------------------------------------------------------------------------
368 // ----------------------------------------------------------------------------
370 static wxString
wxMakeShellCommand(const wxString
& command
)
375 // just an interactive shell
380 // execute command in a shell
381 cmd
<< wxT("/bin/sh -c '") << command
<< wxT('\'');
387 bool wxShell(const wxString
& command
)
389 return wxExecute(wxMakeShellCommand(command
), wxEXEC_SYNC
) == 0;
392 bool wxShell(const wxString
& command
, wxArrayString
& output
)
394 wxCHECK_MSG( !command
.empty(), false, wxT("can't exec shell non interactively") );
396 return wxExecute(wxMakeShellCommand(command
), output
);
402 // helper class for storing arguments as char** array suitable for passing to
403 // execvp(), whatever form they were passed to us
407 ArgsArray(const wxArrayString
& args
)
411 for ( int i
= 0; i
< m_argc
; i
++ )
413 m_argv
[i
] = wxStrdup(args
[i
]);
418 ArgsArray(wchar_t **wargv
)
421 while ( wargv
[argc
] )
426 for ( int i
= 0; i
< m_argc
; i
++ )
428 m_argv
[i
] = wxSafeConvertWX2MB(wargv
[i
]).release();
431 #endif // wxUSE_UNICODE
435 for ( int i
= 0; i
< m_argc
; i
++ )
443 operator char**() const { return m_argv
; }
449 m_argv
= new char *[m_argc
+ 1];
450 m_argv
[m_argc
] = NULL
;
456 wxDECLARE_NO_COPY_CLASS(ArgsArray
);
459 } // anonymous namespace
461 // ----------------------------------------------------------------------------
462 // wxExecute implementations
463 // ----------------------------------------------------------------------------
465 #if defined(__DARWIN__)
466 bool wxMacLaunch(char **argv
);
469 long wxExecute(const wxString
& command
, int flags
, wxProcess
*process
,
470 const wxExecuteEnv
*env
)
472 ArgsArray
argv(wxCmdLineParser::ConvertStringToArgs(command
,
473 wxCMD_LINE_SPLIT_UNIX
));
475 return wxExecute(argv
, flags
, process
, env
);
480 long wxExecute(wchar_t **wargv
, int flags
, wxProcess
*process
,
481 const wxExecuteEnv
*env
)
483 ArgsArray
argv(wargv
);
485 return wxExecute(argv
, flags
, process
, env
);
488 #endif // wxUSE_UNICODE
493 // Helper function of wxExecute(): wait for the process termination without
494 // dispatching any events.
496 // This is used in wxEXEC_NOEVENTS case.
497 int BlockUntilChildExit(wxExecuteData
& execData
)
499 wxCHECK_MSG( wxTheApp
, -1,
500 wxS("Can't block until child exit without wxTheApp") );
502 // Even if we don't want to dispatch events, we still need to handle
503 // child IO notifications and process termination concurrently, i.e.
504 // we can't simply block waiting for the child to terminate as we would
505 // dead lock if it writes more than the pipe buffer size (typically
506 // 4KB) bytes of output -- it would then block waiting for us to read
507 // the data while we'd block waiting for it to terminate.
509 // So while we don't use the full blown event loop, we still do use a
510 // dispatcher with which we register just the 3 FDs we're interested
511 // in: the child stdout and stderr and the pipe written to by the
512 // signal handler so that we could react to the child process
515 // Notice that we must create a new dispatcher object here instead of
516 // reusing the global wxFDIODispatcher::Get() because we want to
517 // monitor only the events on the FDs explicitly registered with this
518 // one and not all the other ones that could be registered with the
519 // global dispatcher (think about the case of nested wxExecute() calls).
520 wxSelectDispatcher dispatcher
;
522 // Do register all the FDs we want to monitor here: first, the one used to
523 // handle the signals asynchronously.
524 wxScopedPtr
<wxFDIOHandler
>
525 signalHandler(wxTheApp
->RegisterSignalWakeUpPipe(dispatcher
));
528 // And then the two for the child output and error streams if necessary.
529 wxScopedPtr
<wxFDIOHandler
>
532 if ( execData
.IsRedirected() )
534 stdoutHandler
.reset(new wxExecuteFDIOHandler
540 stderrHandler
.reset(new wxExecuteFDIOHandler
547 #endif // wxUSE_STREAMS
549 // And dispatch until the PID is reset from wxExecuteData::OnExit().
550 while ( execData
.pid
)
552 dispatcher
.Dispatch();
555 return execData
.exitcode
;
558 } // anonymous namespace
560 // wxExecute: the real worker function
561 long wxExecute(char **argv
, int flags
, wxProcess
*process
,
562 const wxExecuteEnv
*env
)
564 // for the sync execution, we return -1 to indicate failure, but for async
565 // case we return 0 which is never a valid PID
567 // we define this as a macro, not a variable, to avoid compiler warnings
568 // about "ERROR_RETURN_CODE value may be clobbered by fork()"
569 #define ERROR_RETURN_CODE ((flags & wxEXEC_SYNC) ? -1 : 0)
571 wxCHECK_MSG( *argv
, ERROR_RETURN_CODE
, wxT("can't exec empty command") );
574 // fork() doesn't mix well with POSIX threads: on many systems the program
575 // deadlocks or crashes for some reason. Probably our code is buggy and
576 // doesn't do something which must be done to allow this to work, but I
577 // don't know what yet, so for now just warn the user (this is the least we
579 wxASSERT_MSG( wxThread::IsMain(),
580 wxT("wxExecute() can be called only from the main thread") );
581 #endif // wxUSE_THREADS
583 #if defined(__WXCOCOA__) || ( defined(__WXOSX_MAC__) && wxOSX_USE_COCOA_OR_CARBON )
584 // wxMacLaunch() only executes app bundles and only does it asynchronously.
585 // It returns false if the target is not an app bundle, thus falling
586 // through to the regular code for non app bundles.
587 if ( !(flags
& wxEXEC_SYNC
) && wxMacLaunch(argv
) )
589 // we don't have any PID to return so just make up something non null
594 // this struct contains all information which we use for housekeeping
595 wxScopedPtr
<wxExecuteData
> execDataPtr(new wxExecuteData
);
596 wxExecuteData
& execData
= *execDataPtr
;
598 execData
.flags
= flags
;
599 execData
.process
= process
;
601 // create pipes for inter process communication
602 wxPipe pipeIn
, // stdin
606 if ( process
&& process
->IsRedirected() )
608 if ( !pipeIn
.Create() || !pipeOut
.Create() || !pipeErr
.Create() )
610 wxLogError( _("Failed to execute '%s'\n"), *argv
);
612 return ERROR_RETURN_CODE
;
616 // priority: we need to map wxWidgets priority which is in the range 0..100
617 // to Unix nice value which is in the range -20..19. As there is an odd
618 // number of elements in our range and an even number in the Unix one, we
619 // have to do it in this rather ugly way to guarantee that:
620 // 1. wxPRIORITY_{MIN,DEFAULT,MAX} map to -20, 0 and 19 respectively.
621 // 2. The mapping is monotonously increasing.
622 // 3. The mapping is onto the target range.
623 int prio
= process
? process
->GetPriority() : 0;
625 prio
= (2*prio
)/5 - 20;
626 else if ( prio
< 55 )
629 prio
= (2*prio
)/5 - 21;
633 // NB: do *not* use vfork() here, it completely breaks this code for some
634 // reason under Solaris (and maybe others, although not under Linux)
635 // But on OpenVMS we do not have fork so we have to use vfork and
636 // cross our fingers that it works.
642 if ( pid
== -1 ) // error?
644 wxLogSysError( _("Fork failed") );
646 return ERROR_RETURN_CODE
;
648 else if ( pid
== 0 ) // we're in child
650 // NB: we used to close all the unused descriptors of the child here
651 // but this broke some programs which relied on e.g. FD 1 being
652 // always opened so don't do it any more, after all there doesn't
653 // seem to be any real problem with keeping them opened
655 #if !defined(__VMS) && !defined(__EMX__)
656 if ( flags
& wxEXEC_MAKE_GROUP_LEADER
)
658 // Set process group to child process' pid. Then killing -pid
659 // of the parent will kill the process and all of its children.
664 #if defined(HAVE_SETPRIORITY)
665 if ( prio
&& setpriority(PRIO_PROCESS
, 0, prio
) != 0 )
667 wxLogSysError(_("Failed to set process priority"));
669 #endif // HAVE_SETPRIORITY
671 // redirect stdin, stdout and stderr
674 if ( dup2(pipeIn
[wxPipe::Read
], STDIN_FILENO
) == -1 ||
675 dup2(pipeOut
[wxPipe::Write
], STDOUT_FILENO
) == -1 ||
676 dup2(pipeErr
[wxPipe::Write
], STDERR_FILENO
) == -1 )
678 wxLogSysError(_("Failed to redirect child process input/output"));
686 // Close all (presumably accidentally) inherited file descriptors to
687 // avoid descriptor leaks. This means that we don't allow inheriting
688 // them purposefully but this seems like a lesser evil in wx code.
689 // Ideally we'd provide some flag to indicate that none (or some?) of
690 // the descriptors do not need to be closed but for now this is better
691 // than never closing them at all as wx code never used FD_CLOEXEC.
693 // TODO: Iterating up to FD_SETSIZE is both inefficient (because it may
694 // be quite big) and incorrect (because in principle we could
695 // have more opened descriptions than this number). Unfortunately
696 // there is no good portable solution for closing all descriptors
697 // above a certain threshold but non-portable solutions exist for
698 // most platforms, see [http://stackoverflow.com/questions/899038/
699 // getting-the-highest-allocated-file-descriptor]
700 for ( int fd
= 0; fd
< (int)FD_SETSIZE
; ++fd
)
702 if ( fd
!= STDIN_FILENO
&&
703 fd
!= STDOUT_FILENO
&&
704 fd
!= STDERR_FILENO
)
711 // Process additional options if we have any
714 // Change working directory if it is specified
715 if ( !env
->cwd
.empty() )
716 wxSetWorkingDirectory(env
->cwd
);
718 // Change environment if needed.
720 // NB: We can't use execve() currently because we allow using
721 // non full paths to wxExecute(), i.e. we want to search for
722 // the program in PATH. However it just might be simpler/better
723 // to do the search manually and use execve() envp parameter to
724 // set up the environment of the child process explicitly
725 // instead of doing what we do below.
726 if ( !env
->env
.empty() )
728 wxEnvVariableHashMap oldenv
;
729 wxGetEnvMap(&oldenv
);
731 // Remove unwanted variables
732 wxEnvVariableHashMap::const_iterator it
;
733 for ( it
= oldenv
.begin(); it
!= oldenv
.end(); ++it
)
735 if ( env
->env
.find(it
->first
) == env
->env
.end() )
736 wxUnsetEnv(it
->first
);
739 // And add the new ones (possibly replacing the old values)
740 for ( it
= env
->env
.begin(); it
!= env
->env
.end(); ++it
)
741 wxSetEnv(it
->first
, it
->second
);
747 fprintf(stderr
, "execvp(");
748 for ( char **a
= argv
; *a
; a
++ )
749 fprintf(stderr
, "%s%s", a
== argv
? "" : ", ", *a
);
750 fprintf(stderr
, ") failed with error %d!\n", errno
);
752 // there is no return after successful exec()
755 // some compilers complain about missing return - of course, they
756 // should know that exit() doesn't return but what else can we do if
759 // and, sure enough, other compilers complain about unreachable code
760 // after exit() call, so we can just always have return here...
761 #if defined(__VMS) || defined(__INTEL_COMPILER)
765 else // we're in parent
767 execData
.OnStart(pid
);
769 // prepare for IO redirection
773 if ( process
&& process
->IsRedirected() )
775 // Avoid deadlocks which could result from trying to write to the
776 // child input pipe end while the child itself is writing to its
777 // output end and waiting for us to read from it.
778 if ( !pipeIn
.MakeNonBlocking(wxPipe::Write
) )
780 // This message is not terrible useful for the user but what
781 // else can we do? Also, should we fail here or take the risk
782 // to continue and deadlock? Currently we choose the latter but
783 // it might not be the best idea.
784 wxLogSysError(_("Failed to set up non-blocking pipe, "
785 "the program might hang."));
787 wxLog::FlushActive();
791 wxOutputStream
*inStream
=
792 new wxPipeOutputStream(pipeIn
.Detach(wxPipe::Write
));
794 const int fdOut
= pipeOut
.Detach(wxPipe::Read
);
795 wxPipeInputStream
*outStream
= new wxPipeInputStream(fdOut
);
797 const int fdErr
= pipeErr
.Detach(wxPipe::Read
);
798 wxPipeInputStream
*errStream
= new wxPipeInputStream(fdErr
);
800 process
->SetPipeStreams(outStream
, inStream
, errStream
);
802 if ( flags
& wxEXEC_SYNC
)
804 execData
.bufOut
.Init(outStream
);
805 execData
.bufErr
.Init(errStream
);
807 execData
.fdOut
= fdOut
;
808 execData
.fdErr
= fdErr
;
811 #endif // HAS_PIPE_STREAMS
820 // For the asynchronous case we don't have to do anything else, just
821 // let the process run.
822 if ( !(flags
& wxEXEC_SYNC
) )
824 // Ensure that the housekeeping data is kept alive, it will be
825 // destroyed only when the child terminates.
826 execDataPtr
.release();
832 // If we don't need to dispatch any events, things are relatively
833 // simple and we don't need to delegate to wxAppTraits.
834 if ( flags
& wxEXEC_NOEVENTS
)
836 return BlockUntilChildExit(execData
);
840 // If we do need to dispatch events, enter a local event loop waiting
841 // until the child exits. As the exact kind of event loop depends on
842 // the sort of application we're in (console or GUI), we delegate this
843 // to wxAppTraits which virtualizes all the differences between the
844 // console and the GUI programs.
845 return wxApp::GetValidTraits().WaitForChild(execData
);
848 #if !defined(__VMS) && !defined(__INTEL_COMPILER)
849 return ERROR_RETURN_CODE
;
853 #undef ERROR_RETURN_CODE
855 // ----------------------------------------------------------------------------
856 // file and directory functions
857 // ----------------------------------------------------------------------------
859 const wxChar
* wxGetHomeDir( wxString
*home
)
861 *home
= wxGetUserHome();
867 if ( tmp
.Last() != wxT(']'))
868 if ( tmp
.Last() != wxT('/')) *home
<< wxT('/');
870 return home
->c_str();
873 wxString
wxGetUserHome( const wxString
&user
)
875 struct passwd
*who
= (struct passwd
*) NULL
;
881 if ((ptr
= wxGetenv(wxT("HOME"))) != NULL
)
886 if ((ptr
= wxGetenv(wxT("USER"))) != NULL
||
887 (ptr
= wxGetenv(wxT("LOGNAME"))) != NULL
)
889 who
= getpwnam(wxSafeConvertWX2MB(ptr
));
892 // make sure the user exists!
895 who
= getpwuid(getuid());
900 who
= getpwnam (user
.mb_str());
903 return wxSafeConvertMB2WX(who
? who
->pw_dir
: 0);
906 // ----------------------------------------------------------------------------
907 // network and user id routines
908 // ----------------------------------------------------------------------------
910 // private utility function which returns output of the given command, removing
911 // the trailing newline
912 static wxString
wxGetCommandOutput(const wxString
&cmd
)
914 // Suppress stderr from the shell to avoid outputting errors if the command
916 FILE *f
= popen((cmd
+ " 2>/dev/null").ToAscii(), "r");
919 // Notice that this doesn't happen simply if the command doesn't exist,
920 // but only in case of some really catastrophic failure inside popen()
921 // so we should really notify the user about this as this is not normal.
922 wxLogSysError(wxT("Executing \"%s\" failed"), cmd
);
930 if ( !fgets(buf
, sizeof(buf
), f
) )
933 s
+= wxString::FromAscii(buf
);
938 if ( !s
.empty() && s
.Last() == wxT('\n') )
944 // retrieve either the hostname or FQDN depending on platform (caller must
945 // check whether it's one or the other, this is why this function is for
947 static bool wxGetHostNameInternal(wxChar
*buf
, int sz
)
949 wxCHECK_MSG( buf
, false, wxT("NULL pointer in wxGetHostNameInternal") );
953 // we're using uname() which is POSIX instead of less standard sysinfo()
954 #if defined(HAVE_UNAME)
956 bool ok
= uname(&uts
) != -1;
959 wxStrlcpy(buf
, wxSafeConvertMB2WX(uts
.nodename
), sz
);
961 #elif defined(HAVE_GETHOSTNAME)
963 bool ok
= gethostname(cbuf
, sz
) != -1;
966 wxStrlcpy(buf
, wxSafeConvertMB2WX(cbuf
), sz
);
968 #else // no uname, no gethostname
969 wxFAIL_MSG(wxT("don't know host name for this machine"));
972 #endif // uname/gethostname
976 wxLogSysError(_("Cannot get the hostname"));
982 bool wxGetHostName(wxChar
*buf
, int sz
)
984 bool ok
= wxGetHostNameInternal(buf
, sz
);
988 // BSD systems return the FQDN, we only want the hostname, so extract
989 // it (we consider that dots are domain separators)
990 wxChar
*dot
= wxStrchr(buf
, wxT('.'));
1001 bool wxGetFullHostName(wxChar
*buf
, int sz
)
1003 bool ok
= wxGetHostNameInternal(buf
, sz
);
1007 if ( !wxStrchr(buf
, wxT('.')) )
1009 struct hostent
*host
= gethostbyname(wxSafeConvertWX2MB(buf
));
1012 wxLogSysError(_("Cannot get the official hostname"));
1018 // the canonical name
1019 wxStrlcpy(buf
, wxSafeConvertMB2WX(host
->h_name
), sz
);
1022 //else: it's already a FQDN (BSD behaves this way)
1028 bool wxGetUserId(wxChar
*buf
, int sz
)
1033 if ((who
= getpwuid(getuid ())) != NULL
)
1035 wxStrlcpy (buf
, wxSafeConvertMB2WX(who
->pw_name
), sz
);
1042 bool wxGetUserName(wxChar
*buf
, int sz
)
1044 #ifdef HAVE_PW_GECOS
1048 if ((who
= getpwuid (getuid ())) != NULL
)
1050 char *comma
= strchr(who
->pw_gecos
, ',');
1052 *comma
= '\0'; // cut off non-name comment fields
1053 wxStrlcpy(buf
, wxSafeConvertMB2WX(who
->pw_gecos
), sz
);
1058 #else // !HAVE_PW_GECOS
1059 return wxGetUserId(buf
, sz
);
1060 #endif // HAVE_PW_GECOS/!HAVE_PW_GECOS
1063 bool wxIsPlatform64Bit()
1065 const wxString machine
= wxGetCommandOutput(wxT("uname -m"));
1067 // the test for "64" is obviously not 100% reliable but seems to work fine
1069 return machine
.Contains(wxT("64")) ||
1070 machine
.Contains(wxT("alpha"));
1074 wxLinuxDistributionInfo
wxGetLinuxDistributionInfo()
1076 const wxString id
= wxGetCommandOutput(wxT("lsb_release --id"));
1077 const wxString desc
= wxGetCommandOutput(wxT("lsb_release --description"));
1078 const wxString rel
= wxGetCommandOutput(wxT("lsb_release --release"));
1079 const wxString codename
= wxGetCommandOutput(wxT("lsb_release --codename"));
1081 wxLinuxDistributionInfo ret
;
1083 id
.StartsWith("Distributor ID:\t", &ret
.Id
);
1084 desc
.StartsWith("Description:\t", &ret
.Description
);
1085 rel
.StartsWith("Release:\t", &ret
.Release
);
1086 codename
.StartsWith("Codename:\t", &ret
.CodeName
);
1092 // these functions are in src/osx/utilsexc_base.cpp for wxMac
1095 wxOperatingSystemId
wxGetOsVersion(int *verMaj
, int *verMin
)
1099 wxString release
= wxGetCommandOutput(wxT("uname -r"));
1100 if ( release
.empty() ||
1101 wxSscanf(release
.c_str(), wxT("%d.%d"), &major
, &minor
) != 2 )
1103 // failed to get version string or unrecognized format
1113 // try to understand which OS are we running
1114 wxString kernel
= wxGetCommandOutput(wxT("uname -s"));
1115 if ( kernel
.empty() )
1116 kernel
= wxGetCommandOutput(wxT("uname -o"));
1118 if ( kernel
.empty() )
1119 return wxOS_UNKNOWN
;
1121 return wxPlatformInfo::GetOperatingSystemId(kernel
);
1124 wxString
wxGetOsDescription()
1126 return wxGetCommandOutput(wxT("uname -s -r -m"));
1129 #endif // !__DARWIN__
1131 unsigned long wxGetProcessId()
1133 return (unsigned long)getpid();
1136 wxMemorySize
wxGetFreeMemory()
1138 #if defined(__LINUX__)
1139 // get it from /proc/meminfo
1140 FILE *fp
= fopen("/proc/meminfo", "r");
1146 if ( fgets(buf
, WXSIZEOF(buf
), fp
) && fgets(buf
, WXSIZEOF(buf
), fp
) )
1148 // /proc/meminfo changed its format in kernel 2.6
1149 if ( wxPlatformInfo().CheckOSVersion(2, 6) )
1151 unsigned long cached
, buffers
;
1152 sscanf(buf
, "MemFree: %ld", &memFree
);
1154 fgets(buf
, WXSIZEOF(buf
), fp
);
1155 sscanf(buf
, "Buffers: %lu", &buffers
);
1157 fgets(buf
, WXSIZEOF(buf
), fp
);
1158 sscanf(buf
, "Cached: %lu", &cached
);
1160 // add to "MemFree" also the "Buffers" and "Cached" values as
1161 // free(1) does as otherwise the value never makes sense: for
1162 // kernel 2.6 it's always almost 0
1163 memFree
+= buffers
+ cached
;
1165 // values here are always expressed in kB and we want bytes
1168 else // Linux 2.4 (or < 2.6, anyhow)
1170 long memTotal
, memUsed
;
1171 sscanf(buf
, "Mem: %ld %ld %ld", &memTotal
, &memUsed
, &memFree
);
1177 return (wxMemorySize
)memFree
;
1179 #elif defined(__SGI__)
1180 struct rminfo realmem
;
1181 if ( sysmp(MP_SAGET
, MPSA_RMINFO
, &realmem
, sizeof realmem
) == 0 )
1182 return ((wxMemorySize
)realmem
.physmem
* sysconf(_SC_PAGESIZE
));
1183 #elif defined(_SC_AVPHYS_PAGES)
1184 return ((wxMemorySize
)sysconf(_SC_AVPHYS_PAGES
))*sysconf(_SC_PAGESIZE
);
1185 //#elif defined(__FREEBSD__) -- might use sysctl() to find it out, probably
1188 // can't find it out
1192 bool wxGetDiskSpace(const wxString
& path
, wxDiskspaceSize_t
*pTotal
, wxDiskspaceSize_t
*pFree
)
1194 #if defined(HAVE_STATFS) || defined(HAVE_STATVFS)
1195 // the case to "char *" is needed for AIX 4.3
1197 if ( wxStatfs((char *)(const char*)path
.fn_str(), &fs
) != 0 )
1199 wxLogSysError( wxT("Failed to get file system statistics") );
1204 // under Solaris we also have to use f_frsize field instead of f_bsize
1205 // which is in general a multiple of f_frsize
1207 wxDiskspaceSize_t blockSize
= fs
.f_frsize
;
1208 #else // HAVE_STATFS
1209 wxDiskspaceSize_t blockSize
= fs
.f_bsize
;
1210 #endif // HAVE_STATVFS/HAVE_STATFS
1214 *pTotal
= wxDiskspaceSize_t(fs
.f_blocks
) * blockSize
;
1219 *pFree
= wxDiskspaceSize_t(fs
.f_bavail
) * blockSize
;
1223 #else // !HAVE_STATFS && !HAVE_STATVFS
1225 #endif // HAVE_STATFS
1228 // ----------------------------------------------------------------------------
1230 // ----------------------------------------------------------------------------
1234 WX_DECLARE_STRING_HASH_MAP(char *, wxEnvVars
);
1236 static wxEnvVars gs_envVars
;
1238 class wxSetEnvModule
: public wxModule
1241 virtual bool OnInit() { return true; }
1242 virtual void OnExit()
1244 for ( wxEnvVars::const_iterator i
= gs_envVars
.begin();
1245 i
!= gs_envVars
.end();
1254 DECLARE_DYNAMIC_CLASS(wxSetEnvModule
)
1257 IMPLEMENT_DYNAMIC_CLASS(wxSetEnvModule
, wxModule
)
1259 #endif // USE_PUTENV
1261 bool wxGetEnv(const wxString
& var
, wxString
*value
)
1263 // wxGetenv is defined as getenv()
1264 char *p
= wxGetenv(var
);
1276 static bool wxDoSetEnv(const wxString
& variable
, const char *value
)
1278 #if defined(HAVE_SETENV)
1281 #ifdef HAVE_UNSETENV
1282 // don't test unsetenv() return value: it's void on some systems (at
1284 unsetenv(variable
.mb_str());
1287 value
= ""; // we can't pass NULL to setenv()
1291 return setenv(variable
.mb_str(), value
, 1 /* overwrite */) == 0;
1292 #elif defined(HAVE_PUTENV)
1293 wxString s
= variable
;
1295 s
<< wxT('=') << value
;
1297 // transform to ANSI
1298 const wxWX2MBbuf p
= s
.mb_str();
1300 char *buf
= (char *)malloc(strlen(p
) + 1);
1303 // store the string to free() it later
1304 wxEnvVars::iterator i
= gs_envVars
.find(variable
);
1305 if ( i
!= gs_envVars
.end() )
1310 else // this variable hadn't been set before
1312 gs_envVars
[variable
] = buf
;
1315 return putenv(buf
) == 0;
1316 #else // no way to set an env var
1321 bool wxSetEnv(const wxString
& variable
, const wxString
& value
)
1323 return wxDoSetEnv(variable
, value
.mb_str());
1326 bool wxUnsetEnv(const wxString
& variable
)
1328 return wxDoSetEnv(variable
, NULL
);
1331 // ----------------------------------------------------------------------------
1333 // ----------------------------------------------------------------------------
1335 #if wxUSE_ON_FATAL_EXCEPTION
1339 extern "C" void wxFatalSignalHandler(wxTYPE_SA_HANDLER
)
1343 // give the user a chance to do something special about this
1344 wxTheApp
->OnFatalException();
1350 bool wxHandleFatalExceptions(bool doit
)
1353 static bool s_savedHandlers
= false;
1354 static struct sigaction s_handlerFPE
,
1360 if ( doit
&& !s_savedHandlers
)
1362 // install the signal handler
1363 struct sigaction act
;
1365 // some systems extend it with non std fields, so zero everything
1366 memset(&act
, 0, sizeof(act
));
1368 act
.sa_handler
= wxFatalSignalHandler
;
1369 sigemptyset(&act
.sa_mask
);
1372 ok
&= sigaction(SIGFPE
, &act
, &s_handlerFPE
) == 0;
1373 ok
&= sigaction(SIGILL
, &act
, &s_handlerILL
) == 0;
1374 ok
&= sigaction(SIGBUS
, &act
, &s_handlerBUS
) == 0;
1375 ok
&= sigaction(SIGSEGV
, &act
, &s_handlerSEGV
) == 0;
1378 wxLogDebug(wxT("Failed to install our signal handler."));
1381 s_savedHandlers
= true;
1383 else if ( s_savedHandlers
)
1385 // uninstall the signal handler
1386 ok
&= sigaction(SIGFPE
, &s_handlerFPE
, NULL
) == 0;
1387 ok
&= sigaction(SIGILL
, &s_handlerILL
, NULL
) == 0;
1388 ok
&= sigaction(SIGBUS
, &s_handlerBUS
, NULL
) == 0;
1389 ok
&= sigaction(SIGSEGV
, &s_handlerSEGV
, NULL
) == 0;
1392 wxLogDebug(wxT("Failed to uninstall our signal handler."));
1395 s_savedHandlers
= false;
1397 //else: nothing to do
1402 #endif // wxUSE_ON_FATAL_EXCEPTION
1404 // ----------------------------------------------------------------------------
1405 // wxExecute support
1406 // ----------------------------------------------------------------------------
1408 int wxAppTraits::WaitForChild(wxExecuteData
& execData
)
1410 wxConsoleEventLoop loop
;
1411 return RunLoopUntilChildExit(execData
, loop
);
1414 // This function is common code for both console and GUI applications and used
1415 // by wxExecute() to wait for the child exit while dispatching events.
1417 // Notice that it should not be used for all the other cases, e.g. when we
1418 // don't need to wait for the child (wxEXEC_ASYNC) or when the events must not
1419 // dispatched (wxEXEC_NOEVENTS).
1421 wxAppTraits::RunLoopUntilChildExit(wxExecuteData
& execData
,
1422 wxEventLoopBase
& loop
)
1424 // It is possible that wxExecuteData::OnExit() had already been called
1425 // and reset the PID to 0, in which case we don't need to do anything
1427 if ( !execData
.pid
)
1428 return execData
.exitcode
;
1431 // Monitor the child streams if necessary.
1432 wxScopedPtr
<wxEventLoopSourceHandler
>
1435 if ( execData
.IsRedirected() )
1437 stdoutHandler
.reset(new wxExecuteEventLoopSourceHandler
1439 execData
.fdOut
, execData
.bufOut
1441 stderrHandler
.reset(new wxExecuteEventLoopSourceHandler
1443 execData
.fdErr
, execData
.bufErr
1446 #endif // wxUSE_STREAMS
1448 // Store the event loop in the data associated with the child
1449 // process so that it could exit the loop when the child exits.
1450 execData
.syncEventLoop
= &loop
;
1455 // The exit code will have been set when the child termination was detected.
1456 return execData
.exitcode
;
1459 // ----------------------------------------------------------------------------
1461 // ----------------------------------------------------------------------------
1466 // Helper function that checks whether the child with the given PID has exited
1467 // and fills the provided parameter with its return code if it did.
1468 bool CheckForChildExit(int pid
, int* exitcodeOut
)
1470 wxASSERT_MSG( pid
> 0, "invalid PID" );
1474 // loop while we're getting EINTR
1477 rc
= waitpid(pid
, &status
, WNOHANG
);
1479 if ( rc
!= -1 || errno
!= EINTR
)
1486 // No error but the child is still running.
1490 // Checking child status failed. Invalid PID?
1491 wxLogLastError(wxString::Format("waitpid(%d)", pid
));
1495 // Child did terminate.
1496 wxASSERT_MSG( rc
== pid
, "unexpected waitpid() return value" );
1498 // notice that the caller expects the exit code to be signed, e.g. -1
1499 // instead of 255 so don't assign WEXITSTATUS() to an int
1500 signed char exitcode
;
1501 if ( WIFEXITED(status
) )
1502 exitcode
= WEXITSTATUS(status
);
1503 else if ( WIFSIGNALED(status
) )
1504 exitcode
= -WTERMSIG(status
);
1507 wxLogError("Child process (PID %d) exited for unknown reason, "
1508 "status = %d", pid
, status
);
1513 *exitcodeOut
= exitcode
;
1519 } // anonymous namespace
1521 wxExecuteData::ChildProcessesData
wxExecuteData::ms_childProcesses
;
1524 void wxExecuteData::OnSomeChildExited(int WXUNUSED(sig
))
1526 // We know that some child process has terminated, but we don't know which
1527 // one, so check all of them (notice that more than one could have exited).
1529 // An alternative approach would be to call waitpid(-1, &status, WNOHANG)
1530 // (in a loop to take care of the multiple children exiting case) and
1531 // perhaps this would be more efficient. But for now this seems to work.
1534 // Make a copy of the list before iterating over it to avoid problems due
1535 // to deleting entries from it in the process.
1536 const ChildProcessesData allChildProcesses
= ms_childProcesses
;
1537 for ( ChildProcessesData::const_iterator it
= allChildProcesses
.begin();
1538 it
!= allChildProcesses
.end();
1541 const int pid
= it
->first
;
1543 // Check whether this child exited.
1545 if ( !CheckForChildExit(pid
, &exitcode
) )
1548 // And handle its termination if it did.
1550 // Notice that this will implicitly remove it from ms_childProcesses.
1551 it
->second
->OnExit(exitcode
);
1555 void wxExecuteData::OnStart(int pid_
)
1557 wxCHECK_RET( wxTheApp
,
1558 wxS("Ensure wxTheApp is set before calling wxExecute()") );
1560 // Setup the signal handler for SIGCHLD to be able to detect the child
1563 // Notice that SetSignalHandler() is idempotent, so it's fine to call
1564 // it more than once with the same handler.
1565 wxTheApp
->SetSignalHandler(SIGCHLD
, OnSomeChildExited
);
1568 // Remember the child PID to be able to wait for it later.
1571 // Also save it in wxProcess where it will be accessible to the user code.
1573 process
->SetPid(pid
);
1575 // Finally, add this object itself to the list of child processes so that
1576 // we can check for its termination the next time we get SIGCHLD.
1577 ms_childProcesses
[pid
] = this;
1580 void wxExecuteData::OnExit(int exitcode_
)
1582 // Remove this process from the hash list of child processes that are
1583 // still open as soon as possible to ensure we don't process it again even
1584 // if another SIGCHLD happens.
1585 if ( !ms_childProcesses
.erase(pid
) )
1587 wxFAIL_MSG(wxString::Format(wxS("Data for PID %d not in the list?"), pid
));
1591 exitcode
= exitcode_
;
1594 if ( IsRedirected() )
1596 // Read the remaining data in a blocking way: this is fine because the
1597 // child has already exited and hence all the data must be already
1598 // available in the streams buffers.
1602 #endif // wxUSE_STREAMS
1604 // Notify user about termination if required
1605 if ( !(flags
& wxEXEC_SYNC
) )
1608 process
->OnTerminate(pid
, exitcode
);
1610 // in case of asynchronous execution we don't need this object any more
1611 // after the child terminates
1614 else // sync execution
1616 // let wxExecute() know that the process has terminated
1619 // Stop the event loop for synchronous wxExecute() if we're running one.
1620 if ( syncEventLoop
)
1621 syncEventLoop
->ScheduleExit();