]>
git.saurik.com Git - wxWidgets.git/blob - src/unix/utilsunx.cpp
9121c39e87e43a8d00d65267d90dc18be38aecb6
1 /////////////////////////////////////////////////////////////////////////////
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"
25 #include "wx/process.h"
27 #include "wx/unix/execute.h"
33 #include <sys/types.h>
40 #include <fcntl.h> // for O_WRONLY and friends
41 #include <time.h> // nanosleep() and/or usleep()
42 #include <ctype.h> // isspace()
44 #include <sys/utsname.h> // for uname()
47 // ----------------------------------------------------------------------------
48 // conditional compilation
49 // ----------------------------------------------------------------------------
51 // many versions of Unices have this function, but it is not defined in system
52 // headers - please add your system here if it is the case for your OS.
53 // SunOS < 5.6 (i.e. Solaris < 2.6) and DG-UX are like this.
54 #if !defined(HAVE_USLEEP) && \
55 (defined(__SUN__) && !defined(__SunOs_5_6) && \
56 !defined(__SunOs_5_7) && !defined(__SUNPRO_CC)) || \
61 int usleep(unsigned int usec
);
63 void usleep(unsigned long usec
);
66 #endif // Unices without usleep()
68 // many versions of Unices have this function, but it is not defined in system
69 // headers - please add your system here if it is the case for your OS.
70 // SunOS (and Solaris) and DG-UX are like this.
72 #if defined(__SOLARIS__) || defined(__osf__)
75 pid_t
wait4(pid_t pid
, int *statusp
, int options
,
76 struct rusage
*rusage
);
80 #define wxWait4(pid, stat, flags, rusage) wait4(pid, stat, flags, rusage)
82 // no wait4() at all on these systems
83 // TODO verify whether wait3() really works in this situation
84 #define wxWait4(pid, stat, flags, rusage) wait3(stat, flags, rusage)
87 // ============================================================================
89 // ============================================================================
91 // ----------------------------------------------------------------------------
93 // ----------------------------------------------------------------------------
95 void wxSleep(int nSecs
)
100 void wxUsleep(unsigned long milliseconds
)
102 #if defined(HAVE_NANOSLEEP)
104 tmReq
.tv_sec
= milliseconds
/ 1000;
105 tmReq
.tv_nsec
= (milliseconds
% 1000) * 1000 * 1000;
107 // we're not interested in remaining time nor in return value
108 (void)nanosleep(&tmReq
, (timespec
*)NULL
);
109 #elif defined(HAVE_USLEEP)
110 // uncomment this if you feel brave or if you are sure that your version
111 // of Solaris has a safe usleep() function but please notice that usleep()
112 // is known to lead to crashes in MT programs in Solaris 2.[67] and is not
113 // documented as MT-Safe
114 #if defined(__SUN__) && defined(wxUSE_THREADS)
115 #error "usleep() cannot be used in MT programs under Solaris."
118 usleep(milliseconds
* 1000); // usleep(3) wants microseconds
119 #else // !sleep function
120 #error "usleep() or nanosleep() function required for wxUsleep"
121 #endif // sleep function
124 // ----------------------------------------------------------------------------
125 // process management
126 // ----------------------------------------------------------------------------
128 int wxKill(long pid
, int sig
)
130 return kill(pid
, sig
);
133 #define WXEXECUTE_NARGS 127
135 long wxExecute( const wxString
& command
, bool sync
, wxProcess
*process
)
137 wxCHECK_MSG( !command
.IsEmpty(), 0, "can't exec empty command" );
140 char *argv
[WXEXECUTE_NARGS
];
142 const char *cptr
= command
.c_str();
143 char quotechar
= '\0'; // is arg quoted?
144 bool escaped
= FALSE
;
150 // eat leading whitespace:
151 while(*cptr
&& isspace(*cptr
))
153 if(*cptr
== '\'' || *cptr
== '"')
157 if(*cptr
== '\\' && ! escaped
)
163 // all other characters:
164 argument
+= *cptr
++;
166 // Have we reached the end of the argument?
167 if((*cptr
== quotechar
&& ! escaped
)
168 || (quotechar
== '\0' && isspace(*cptr
))
171 wxASSERT(argc
< WXEXECUTE_NARGS
);
172 argv
[argc
] = new char[argument
.Len()+1];
173 strcpy(argv
[argc
], argument
.c_str());
175 // if not at end of buffer, swallow last character:
177 break; // done with this one, start over
183 long lRc
= wxExecute(argv
, sync
, process
);
187 delete [] argv
[argc
++];
192 bool wxShell(const wxString
& command
)
196 cmd
.Printf("xterm -e %s", command
.c_str());
200 return wxExecute(cmd
) != 0;
203 void wxHandleProcessTermination(wxEndProcessData
*proc_data
)
205 int pid
= (proc_data
->pid
> 0) ? proc_data
->pid
: -(proc_data
->pid
);
208 wxWait4(pid
, &status
, 0, (rusage
*) NULL
);
210 if (proc_data
->process
)
211 proc_data
->process
->OnTerminate(proc_data
->pid
, status
);
213 if (proc_data
->pid
> 0)
219 // wxExecute() will know about it
220 proc_data
->exitcode
= status
;
226 long wxExecute( char **argv
, bool sync
, wxProcess
*process
)
228 wxCHECK_MSG( *argv
, 0, "can't exec empty command" );
230 int end_proc_detect
[2];
233 if (pipe(end_proc_detect
) == -1)
235 wxLogSysError( _("Pipe creation failed") );
247 wxLogSysError( _("Fork failed") );
253 close(end_proc_detect
[0]); // close reading side
255 // These three lines close the open file descriptors to to avoid any
256 // input/output which might block the process or irritate the user. If
257 // one wants proper IO for the subprocess, the "right thing to do is
258 // to start an xterm executing it.
261 // leave stderr opened, it won't do any hurm
262 for ( int fd
= 0; fd
< FD_SETSIZE
; fd
++ )
264 if ( fd
!= end_proc_detect
[1] && fd
!= STDERR_FILENO
)
270 close(STDERR_FILENO
);
272 // some programs complain about stderr not being open, so redirect
274 open("/dev/null", O_RDONLY
); // stdin
275 open("/dev/null", O_WRONLY
); // stdout
276 open("/dev/null", O_WRONLY
); // stderr
279 execvp (*argv
, argv
);
281 // there is no return after successful exec()
282 fprintf(stderr
, _("Can't execute '%s'\n"), *argv
);
289 close(end_proc_detect
[1]); // close writing side
291 wxEndProcessData
*data
= new wxEndProcessData
;
292 data
->tag
= wxAddProcessCallback(data
, end_proc_detect
[0]);
296 wxASSERT_MSG( !process
, "wxProcess param ignored for sync exec" );
297 data
->process
= NULL
;
299 // sync execution: indicate it by negating the pid
302 // it will be set to 0 from GTK_EndProcessDetector
303 while (data
->pid
!= 0)
306 int exitcode
= data
->exitcode
;
314 // async execution, nothing special to do - caller will be
315 // notified about the process terminationif process != NULL, data
316 // will be deleted in GTK_EndProcessDetector
317 data
->process
= process
;
325 // ----------------------------------------------------------------------------
326 // file and directory functions
327 // ----------------------------------------------------------------------------
329 const char* wxGetHomeDir( wxString
*home
)
331 *home
= wxGetUserHome( wxString() );
332 if ( home
->IsEmpty() )
335 return home
->c_str();
338 char *wxGetUserHome( const wxString
&user
)
340 struct passwd
*who
= (struct passwd
*) NULL
;
342 if (user
.IsNull() || (user
== ""))
346 if ((ptr
= getenv("HOME")) != NULL
)
350 if ((ptr
= getenv("USER")) != NULL
|| (ptr
= getenv("LOGNAME")) != NULL
)
355 // We now make sure the the user exists!
358 who
= getpwuid(getuid());
363 who
= getpwnam (user
);
366 return who
? who
->pw_dir
: (char*)NULL
;
369 // ----------------------------------------------------------------------------
371 // ----------------------------------------------------------------------------
373 bool wxGetHostName(char *buf
, int sz
)
375 wxCHECK_MSG( buf
, FALSE
, "NULL pointer in wxGetHostName" );
379 // we're using uname() which is POSIX instead of less standard sysinfo()
380 #if defined(HAVE_UNAME)
382 bool ok
= uname(&uts
) != -1;
385 strncpy(buf
, uts
.nodename
, sz
- 1);
388 #elif defined(HAVE_GETHOSTNAME)
389 bool ok
= gethostname(buf
, sz
) != -1;
391 wxFAIL_MSG("don't know host name for this machibe");
398 wxLogSysError(_("Cannot get the hostname"));
404 bool wxGetUserId(char *buf
, int sz
)
409 if ((who
= getpwuid(getuid ())) != NULL
)
411 strncpy (buf
, who
->pw_name
, sz
- 1);
418 bool wxGetUserName(char *buf
, int sz
)
424 if ((who
= getpwuid (getuid ())) != NULL
) {
425 comma
= strchr(who
->pw_gecos
, ',');
427 *comma
= '\0'; // cut off non-name comment fields
428 strncpy (buf
, who
->pw_gecos
, sz
- 1);
435 // ----------------------------------------------------------------------------
436 // error and debug output routines (deprecated, use wxLog)
437 // ----------------------------------------------------------------------------
439 void wxDebugMsg( const char *format
, ... )
442 va_start( ap
, format
);
443 vfprintf( stderr
, format
, ap
);
448 void wxError( const wxString
&msg
, const wxString
&title
)
450 fprintf( stderr
, _("Error ") );
451 if (!title
.IsNull()) fprintf( stderr
, "%s ", WXSTRINGCAST(title
) );
452 if (!msg
.IsNull()) fprintf( stderr
, ": %s", WXSTRINGCAST(msg
) );
453 fprintf( stderr
, ".\n" );
456 void wxFatalError( const wxString
&msg
, const wxString
&title
)
458 fprintf( stderr
, _("Error ") );
459 if (!title
.IsNull()) fprintf( stderr
, "%s ", WXSTRINGCAST(title
) );
460 if (!msg
.IsNull()) fprintf( stderr
, ": %s", WXSTRINGCAST(msg
) );
461 fprintf( stderr
, ".\n" );
462 exit(3); // the same exit code as for abort()
465 //------------------------------------------------------------------------
466 // directory routines
467 //------------------------------------------------------------------------
469 bool wxDirExists( const wxString
& dir
)
472 strcpy( buf
, WXSTRINGCAST(dir
) );
474 return ((stat(buf
, &sbuf
) != -1) && S_ISDIR(sbuf
.st_mode
) ? TRUE
: FALSE
);