]>
Commit | Line | Data |
---|---|---|
518b5d2f VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: utilsunx.cpp | |
3 | // Purpose: generic Unix implementation of many wx functions | |
4 | // Author: Vadim Zeitlin | |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | // ============================================================================ | |
11 | // declarations | |
12 | // ============================================================================ | |
13 | ||
14 | // ---------------------------------------------------------------------------- | |
15 | // headers | |
16 | // ---------------------------------------------------------------------------- | |
17 | ||
18 | #include "wx/defs.h" | |
19 | #include "wx/string.h" | |
20 | ||
21 | #include "wx/intl.h" | |
22 | #include "wx/log.h" | |
a37a5a73 | 23 | #include "wx/app.h" |
518b5d2f VZ |
24 | |
25 | #include "wx/utils.h" | |
26 | #include "wx/process.h" | |
bdc72a22 | 27 | #include "wx/thread.h" |
518b5d2f | 28 | |
8b33ae2d GL |
29 | #include "wx/stream.h" |
30 | ||
6dc6fda6 VZ |
31 | #if wxUSE_GUI |
32 | #include "wx/unix/execute.h" | |
33 | #endif | |
518b5d2f | 34 | |
f6bcfd97 BP |
35 | // SGI signal.h defines signal handler arguments differently depending on |
36 | // whether _LANGUAGE_C_PLUS_PLUS is set or not - do set it | |
37 | #if defined(__SGI__) && !defined(_LANGUAGE_C_PLUS_PLUS) | |
38 | #define _LANGUAGE_C_PLUS_PLUS 1 | |
39 | #endif // SGI hack | |
40 | ||
518b5d2f VZ |
41 | #include <stdarg.h> |
42 | #include <dirent.h> | |
43 | #include <string.h> | |
44 | #include <sys/stat.h> | |
45 | #include <sys/types.h> | |
46 | #include <unistd.h> | |
47 | #include <sys/wait.h> | |
48 | #include <pwd.h> | |
49 | #include <errno.h> | |
50 | #include <netdb.h> | |
51 | #include <signal.h> | |
52 | #include <fcntl.h> // for O_WRONLY and friends | |
53 | #include <time.h> // nanosleep() and/or usleep() | |
fad866f4 | 54 | #include <ctype.h> // isspace() |
b12915c1 | 55 | #include <sys/time.h> // needed for FD_SETSIZE |
7bcb11d3 | 56 | |
0fcdf6dc | 57 | #ifdef HAVE_UNAME |
518b5d2f VZ |
58 | #include <sys/utsname.h> // for uname() |
59 | #endif // HAVE_UNAME | |
60 | ||
61 | // ---------------------------------------------------------------------------- | |
62 | // conditional compilation | |
63 | // ---------------------------------------------------------------------------- | |
64 | ||
65 | // many versions of Unices have this function, but it is not defined in system | |
66 | // headers - please add your system here if it is the case for your OS. | |
67 | // SunOS < 5.6 (i.e. Solaris < 2.6) and DG-UX are like this. | |
1363811b VZ |
68 | #if !defined(HAVE_USLEEP) && \ |
69 | (defined(__SUN__) && !defined(__SunOs_5_6) && \ | |
518b5d2f | 70 | !defined(__SunOs_5_7) && !defined(__SUNPRO_CC)) || \ |
fd9811b1 | 71 | defined(__osf__) || defined(__EMX__) |
518b5d2f VZ |
72 | extern "C" |
73 | { | |
1363811b VZ |
74 | #ifdef __SUN__ |
75 | int usleep(unsigned int usec); | |
76 | #else // !Sun | |
bdc72a22 VZ |
77 | #ifdef __EMX__ |
78 | /* I copied this from the XFree86 diffs. AV. */ | |
79 | #define INCL_DOSPROCESS | |
80 | #include <os2.h> | |
81 | inline void usleep(unsigned long delay) | |
82 | { | |
83 | DosSleep(delay ? (delay/1000l) : 1l); | |
84 | } | |
85 | #else // !Sun && !EMX | |
86 | void usleep(unsigned long usec); | |
87 | #endif | |
e6daf794 | 88 | #endif // Sun/EMX/Something else |
518b5d2f | 89 | }; |
bdc72a22 VZ |
90 | |
91 | #define HAVE_USLEEP 1 | |
518b5d2f VZ |
92 | #endif // Unices without usleep() |
93 | ||
518b5d2f VZ |
94 | // ============================================================================ |
95 | // implementation | |
96 | // ============================================================================ | |
97 | ||
98 | // ---------------------------------------------------------------------------- | |
99 | // sleeping | |
100 | // ---------------------------------------------------------------------------- | |
101 | ||
102 | void wxSleep(int nSecs) | |
103 | { | |
104 | sleep(nSecs); | |
105 | } | |
106 | ||
107 | void wxUsleep(unsigned long milliseconds) | |
108 | { | |
b12915c1 | 109 | #if defined(HAVE_NANOSLEEP) |
518b5d2f | 110 | timespec tmReq; |
13111b2a | 111 | tmReq.tv_sec = (time_t)(milliseconds / 1000); |
518b5d2f VZ |
112 | tmReq.tv_nsec = (milliseconds % 1000) * 1000 * 1000; |
113 | ||
114 | // we're not interested in remaining time nor in return value | |
115 | (void)nanosleep(&tmReq, (timespec *)NULL); | |
b12915c1 | 116 | #elif defined(HAVE_USLEEP) |
518b5d2f VZ |
117 | // uncomment this if you feel brave or if you are sure that your version |
118 | // of Solaris has a safe usleep() function but please notice that usleep() | |
119 | // is known to lead to crashes in MT programs in Solaris 2.[67] and is not | |
120 | // documented as MT-Safe | |
ea18eed9 | 121 | #if defined(__SUN__) && wxUSE_THREADS |
518b5d2f VZ |
122 | #error "usleep() cannot be used in MT programs under Solaris." |
123 | #endif // Sun | |
124 | ||
125 | usleep(milliseconds * 1000); // usleep(3) wants microseconds | |
b12915c1 VZ |
126 | #elif defined(HAVE_SLEEP) |
127 | // under BeOS sleep() takes seconds (what about other platforms, if any?) | |
128 | sleep(milliseconds * 1000); | |
518b5d2f VZ |
129 | #else // !sleep function |
130 | #error "usleep() or nanosleep() function required for wxUsleep" | |
131 | #endif // sleep function | |
132 | } | |
133 | ||
134 | // ---------------------------------------------------------------------------- | |
135 | // process management | |
136 | // ---------------------------------------------------------------------------- | |
137 | ||
0fb67cd1 | 138 | int wxKill(long pid, wxSignal sig) |
518b5d2f | 139 | { |
13111b2a | 140 | return kill((pid_t)pid, (int)sig); |
518b5d2f VZ |
141 | } |
142 | ||
fad866f4 KB |
143 | #define WXEXECUTE_NARGS 127 |
144 | ||
518b5d2f VZ |
145 | long wxExecute( const wxString& command, bool sync, wxProcess *process ) |
146 | { | |
223d09f6 | 147 | wxCHECK_MSG( !command.IsEmpty(), 0, wxT("can't exec empty command") ); |
518b5d2f VZ |
148 | |
149 | int argc = 0; | |
05079acc | 150 | wxChar *argv[WXEXECUTE_NARGS]; |
fad866f4 | 151 | wxString argument; |
05079acc | 152 | const wxChar *cptr = command.c_str(); |
223d09f6 | 153 | wxChar quotechar = wxT('\0'); // is arg quoted? |
fad866f4 | 154 | bool escaped = FALSE; |
518b5d2f | 155 | |
0ed9a934 | 156 | // split the command line in arguments |
fad866f4 KB |
157 | do |
158 | { | |
223d09f6 KB |
159 | argument=wxT(""); |
160 | quotechar = wxT('\0'); | |
0ed9a934 | 161 | |
fad866f4 | 162 | // eat leading whitespace: |
05079acc | 163 | while ( wxIsspace(*cptr) ) |
fad866f4 | 164 | cptr++; |
0ed9a934 | 165 | |
223d09f6 | 166 | if ( *cptr == wxT('\'') || *cptr == wxT('"') ) |
fad866f4 | 167 | quotechar = *cptr++; |
0ed9a934 | 168 | |
fad866f4 KB |
169 | do |
170 | { | |
223d09f6 | 171 | if ( *cptr == wxT('\\') && ! escaped ) |
fad866f4 KB |
172 | { |
173 | escaped = TRUE; | |
174 | cptr++; | |
175 | continue; | |
176 | } | |
0ed9a934 | 177 | |
fad866f4 | 178 | // all other characters: |
0ed9a934 | 179 | argument += *cptr++; |
fad866f4 | 180 | escaped = FALSE; |
0ed9a934 VZ |
181 | |
182 | // have we reached the end of the argument? | |
183 | if ( (*cptr == quotechar && ! escaped) | |
223d09f6 KB |
184 | || (quotechar == wxT('\0') && wxIsspace(*cptr)) |
185 | || *cptr == wxT('\0') ) | |
fad866f4 | 186 | { |
0ed9a934 | 187 | wxASSERT_MSG( argc < WXEXECUTE_NARGS, |
223d09f6 | 188 | wxT("too many arguments in wxExecute") ); |
0ed9a934 | 189 | |
05079acc OK |
190 | argv[argc] = new wxChar[argument.length() + 1]; |
191 | wxStrcpy(argv[argc], argument.c_str()); | |
fad866f4 | 192 | argc++; |
0ed9a934 | 193 | |
fad866f4 | 194 | // if not at end of buffer, swallow last character: |
0ed9a934 VZ |
195 | if(*cptr) |
196 | cptr++; | |
197 | ||
fad866f4 KB |
198 | break; // done with this one, start over |
199 | } | |
0ed9a934 VZ |
200 | } while(*cptr); |
201 | } while(*cptr); | |
fad866f4 | 202 | argv[argc] = NULL; |
0ed9a934 VZ |
203 | |
204 | // do execute the command | |
518b5d2f VZ |
205 | long lRc = wxExecute(argv, sync, process); |
206 | ||
0ed9a934 | 207 | // clean up |
fad866f4 | 208 | argc = 0; |
0ed9a934 | 209 | while( argv[argc] ) |
fad866f4 | 210 | delete [] argv[argc++]; |
518b5d2f VZ |
211 | |
212 | return lRc; | |
213 | } | |
214 | ||
2c8e4738 VZ |
215 | // ---------------------------------------------------------------------------- |
216 | // wxShell | |
217 | // ---------------------------------------------------------------------------- | |
218 | ||
219 | static wxString wxMakeShellCommand(const wxString& command) | |
518b5d2f VZ |
220 | { |
221 | wxString cmd; | |
cd6ce4a9 | 222 | if ( !command ) |
2c8e4738 VZ |
223 | { |
224 | // just an interactive shell | |
cd6ce4a9 | 225 | cmd = _T("xterm"); |
2c8e4738 | 226 | } |
518b5d2f | 227 | else |
2c8e4738 VZ |
228 | { |
229 | // execute command in a shell | |
230 | cmd << _T("/bin/sh -c '") << command << _T('\''); | |
231 | } | |
232 | ||
233 | return cmd; | |
234 | } | |
235 | ||
236 | bool wxShell(const wxString& command) | |
237 | { | |
238 | return wxExecute(wxMakeShellCommand(command), TRUE /* sync */) == 0; | |
239 | } | |
240 | ||
241 | bool wxShell(const wxString& command, wxArrayString& output) | |
242 | { | |
243 | wxCHECK_MSG( !!command, FALSE, _T("can't exec shell non interactively") ); | |
518b5d2f | 244 | |
2c8e4738 | 245 | return wxExecute(wxMakeShellCommand(command), output); |
518b5d2f VZ |
246 | } |
247 | ||
6dc6fda6 VZ |
248 | #if wxUSE_GUI |
249 | ||
518b5d2f VZ |
250 | void wxHandleProcessTermination(wxEndProcessData *proc_data) |
251 | { | |
252 | int pid = (proc_data->pid > 0) ? proc_data->pid : -(proc_data->pid); | |
253 | ||
0ed9a934 VZ |
254 | // waitpid is POSIX so should be available everywhere, however on older |
255 | // systems wait() might be used instead in a loop (until the right pid | |
256 | // terminates) | |
518b5d2f | 257 | int status = 0; |
ab857a4e KB |
258 | int rc; |
259 | ||
bdc72a22 | 260 | // wait for child termination and if waitpid() was interrupted, try again |
ab857a4e | 261 | do |
bdc72a22 | 262 | { |
ab857a4e | 263 | rc = waitpid(pid, &status, 0); |
bdc72a22 VZ |
264 | } |
265 | while ( rc == -1 && errno == EINTR ); | |
266 | ||
ab857a4e | 267 | |
ab857a4e | 268 | if( rc == -1 || ! (WIFEXITED(status) || WIFSIGNALED(status)) ) |
0ed9a934 | 269 | { |
ab857a4e KB |
270 | wxLogSysError(_("Waiting for subprocess termination failed")); |
271 | /* AFAIK, this can only happen if something went wrong within | |
bdc72a22 | 272 | wxGTK, i.e. due to a race condition or some serious bug. |
ab857a4e KB |
273 | After having fixed the order of statements in |
274 | GTK_EndProcessDetector(). (KB) | |
275 | */ | |
0ed9a934 VZ |
276 | } |
277 | else | |
278 | { | |
279 | // notify user about termination if required | |
280 | if (proc_data->process) | |
281 | { | |
282 | proc_data->process->OnTerminate(proc_data->pid, | |
283 | WEXITSTATUS(status)); | |
284 | } | |
ab857a4e KB |
285 | // clean up |
286 | if ( proc_data->pid > 0 ) | |
287 | { | |
288 | delete proc_data; | |
289 | } | |
290 | else | |
291 | { | |
292 | // wxExecute() will know about it | |
293 | proc_data->exitcode = status; | |
bdc72a22 | 294 | |
ab857a4e KB |
295 | proc_data->pid = 0; |
296 | } | |
518b5d2f VZ |
297 | } |
298 | } | |
299 | ||
6dc6fda6 VZ |
300 | #endif // wxUSE_GUI |
301 | ||
cd6ce4a9 VZ |
302 | // ---------------------------------------------------------------------------- |
303 | // wxStream classes to support IO redirection in wxExecute | |
304 | // ---------------------------------------------------------------------------- | |
6dc6fda6 | 305 | |
cd6ce4a9 VZ |
306 | class wxProcessFileInputStream : public wxInputStream |
307 | { | |
308 | public: | |
309 | wxProcessFileInputStream(int fd) { m_fd = fd; } | |
310 | ~wxProcessFileInputStream() { close(m_fd); } | |
8b33ae2d | 311 | |
cd6ce4a9 | 312 | virtual bool Eof() const; |
8b33ae2d | 313 | |
cd6ce4a9 | 314 | protected: |
8b33ae2d GL |
315 | size_t OnSysRead(void *buffer, size_t bufsize); |
316 | ||
cd6ce4a9 | 317 | protected: |
8b33ae2d GL |
318 | int m_fd; |
319 | }; | |
320 | ||
cd6ce4a9 VZ |
321 | class wxProcessFileOutputStream : public wxOutputStream |
322 | { | |
323 | public: | |
324 | wxProcessFileOutputStream(int fd) { m_fd = fd; } | |
325 | ~wxProcessFileOutputStream() { close(m_fd); } | |
8b33ae2d | 326 | |
cd6ce4a9 | 327 | protected: |
8b33ae2d GL |
328 | size_t OnSysWrite(const void *buffer, size_t bufsize); |
329 | ||
cd6ce4a9 | 330 | protected: |
8b33ae2d GL |
331 | int m_fd; |
332 | }; | |
333 | ||
cd6ce4a9 | 334 | bool wxProcessFileInputStream::Eof() const |
8b33ae2d | 335 | { |
cd6ce4a9 VZ |
336 | if ( m_lasterror == wxSTREAM_EOF ) |
337 | return TRUE; | |
338 | ||
339 | // check if there is any input available | |
340 | struct timeval tv; | |
341 | tv.tv_sec = 0; | |
342 | tv.tv_usec = 0; | |
343 | ||
344 | fd_set readfds; | |
345 | FD_ZERO(&readfds); | |
346 | FD_SET(m_fd, &readfds); | |
347 | switch ( select(m_fd + 1, &readfds, NULL, NULL, &tv) ) | |
348 | { | |
349 | case -1: | |
350 | wxLogSysError(_("Impossible to get child process input")); | |
351 | // fall through | |
8b33ae2d | 352 | |
cd6ce4a9 VZ |
353 | case 0: |
354 | return TRUE; | |
8b33ae2d | 355 | |
cd6ce4a9 VZ |
356 | default: |
357 | wxFAIL_MSG(_T("unexpected select() return value")); | |
358 | // still fall through | |
359 | ||
360 | case 1: | |
361 | // input available: check if there is any | |
362 | return wxInputStream::Eof(); | |
8b33ae2d | 363 | } |
8b33ae2d GL |
364 | } |
365 | ||
cd6ce4a9 | 366 | size_t wxProcessFileInputStream::OnSysRead(void *buffer, size_t bufsize) |
8b33ae2d | 367 | { |
cd6ce4a9 VZ |
368 | int ret = read(m_fd, buffer, bufsize); |
369 | if ( ret == 0 ) | |
370 | { | |
371 | m_lasterror = wxSTREAM_EOF; | |
372 | } | |
373 | else if ( ret == -1 ) | |
374 | { | |
375 | m_lasterror = wxSTREAM_READ_ERROR; | |
376 | ret = 0; | |
377 | } | |
378 | else | |
379 | { | |
380 | m_lasterror = wxSTREAM_NOERROR; | |
381 | } | |
8b33ae2d | 382 | |
cd6ce4a9 | 383 | return ret; |
8b33ae2d GL |
384 | } |
385 | ||
386 | size_t wxProcessFileOutputStream::OnSysWrite(const void *buffer, size_t bufsize) | |
387 | { | |
cd6ce4a9 VZ |
388 | int ret = write(m_fd, buffer, bufsize); |
389 | if ( ret == -1 ) | |
390 | { | |
391 | m_lasterror = wxSTREAM_WRITE_ERROR; | |
392 | ret = 0; | |
8b33ae2d | 393 | } |
cd6ce4a9 VZ |
394 | else |
395 | { | |
396 | m_lasterror = wxSTREAM_NOERROR; | |
397 | } | |
398 | ||
8b33ae2d GL |
399 | return ret; |
400 | } | |
401 | ||
6dc6fda6 VZ |
402 | long wxExecute(wxChar **argv, |
403 | bool sync, | |
cd6ce4a9 | 404 | wxProcess *process) |
518b5d2f | 405 | { |
f6bcfd97 | 406 | // for the sync execution, we return -1 to indicate failure, but for async |
accb3257 VZ |
407 | // case we return 0 which is never a valid PID |
408 | // | |
409 | // we define this as a macro, not a variable, to avoid compiler warnings | |
410 | // about "ERROR_RETURN_CODE value may be clobbered by fork()" | |
411 | #define ERROR_RETURN_CODE ((sync) ? -1 : 0) | |
f6bcfd97 | 412 | |
accb3257 | 413 | wxCHECK_MSG( *argv, ERROR_RETURN_CODE, wxT("can't exec empty command") ); |
518b5d2f | 414 | |
05079acc OK |
415 | #if wxUSE_UNICODE |
416 | int mb_argc = 0; | |
417 | char *mb_argv[WXEXECUTE_NARGS]; | |
418 | ||
e90c1d2a VZ |
419 | while (argv[mb_argc]) |
420 | { | |
cd6ce4a9 VZ |
421 | wxWX2MBbuf mb_arg = wxConvertWX2MB(argv[mb_argc]); |
422 | mb_argv[mb_argc] = strdup(mb_arg); | |
423 | mb_argc++; | |
05079acc OK |
424 | } |
425 | mb_argv[mb_argc] = (char *) NULL; | |
e90c1d2a VZ |
426 | |
427 | // this macro will free memory we used above | |
428 | #define ARGS_CLEANUP \ | |
345b0247 | 429 | for ( mb_argc = 0; mb_argv[mb_argc]; mb_argc++ ) \ |
e90c1d2a VZ |
430 | free(mb_argv[mb_argc]) |
431 | #else // ANSI | |
432 | // no need for cleanup | |
433 | #define ARGS_CLEANUP | |
434 | ||
05079acc | 435 | wxChar **mb_argv = argv; |
e90c1d2a | 436 | #endif // Unicode/ANSI |
518b5d2f | 437 | |
e90c1d2a | 438 | #if wxUSE_GUI |
518b5d2f | 439 | // create pipes |
e90c1d2a | 440 | int end_proc_detect[2]; |
cd6ce4a9 | 441 | if ( pipe(end_proc_detect) == -1 ) |
518b5d2f VZ |
442 | { |
443 | wxLogSysError( _("Pipe creation failed") ); | |
cd6ce4a9 | 444 | wxLogError( _("Failed to execute '%s'\n"), *argv ); |
e90c1d2a VZ |
445 | |
446 | ARGS_CLEANUP; | |
447 | ||
accb3257 | 448 | return ERROR_RETURN_CODE; |
518b5d2f | 449 | } |
e90c1d2a | 450 | #endif // wxUSE_GUI |
518b5d2f | 451 | |
f6bcfd97 BP |
452 | // pipes for inter process communication |
453 | int pipeIn[2], // stdin | |
454 | pipeOut[2], // stdout | |
455 | pipeErr[2]; // stderr | |
456 | ||
cd6ce4a9 | 457 | pipeIn[0] = pipeIn[1] = |
f6bcfd97 BP |
458 | pipeOut[0] = pipeOut[1] = |
459 | pipeErr[0] = pipeErr[1] = -1; | |
cd6ce4a9 VZ |
460 | |
461 | if ( process && process->IsRedirected() ) | |
8b33ae2d | 462 | { |
f6bcfd97 | 463 | if ( pipe(pipeIn) == -1 || pipe(pipeOut) == -1 || pipe(pipeErr) == -1 ) |
8b33ae2d | 464 | { |
cd6ce4a9 VZ |
465 | #if wxUSE_GUI |
466 | // free previously allocated resources | |
8b33ae2d GL |
467 | close(end_proc_detect[0]); |
468 | close(end_proc_detect[1]); | |
cd6ce4a9 VZ |
469 | #endif // wxUSE_GUI |
470 | ||
471 | wxLogSysError( _("Pipe creation failed") ); | |
472 | wxLogError( _("Failed to execute '%s'\n"), *argv ); | |
8b33ae2d GL |
473 | |
474 | ARGS_CLEANUP; | |
475 | ||
accb3257 | 476 | return ERROR_RETURN_CODE; |
8b33ae2d GL |
477 | } |
478 | } | |
8b33ae2d | 479 | |
518b5d2f | 480 | // fork the process |
0fcdf6dc | 481 | #ifdef HAVE_VFORK |
518b5d2f VZ |
482 | pid_t pid = vfork(); |
483 | #else | |
484 | pid_t pid = fork(); | |
485 | #endif | |
cd6ce4a9 VZ |
486 | |
487 | if ( pid == -1 ) // error? | |
518b5d2f | 488 | { |
8b33ae2d GL |
489 | #if wxUSE_GUI |
490 | close(end_proc_detect[0]); | |
491 | close(end_proc_detect[1]); | |
cd6ce4a9 VZ |
492 | close(pipeIn[0]); |
493 | close(pipeIn[1]); | |
494 | close(pipeOut[0]); | |
495 | close(pipeOut[1]); | |
f6bcfd97 BP |
496 | close(pipeErr[0]); |
497 | close(pipeErr[1]); | |
cd6ce4a9 VZ |
498 | #endif // wxUSE_GUI |
499 | ||
518b5d2f | 500 | wxLogSysError( _("Fork failed") ); |
e90c1d2a VZ |
501 | |
502 | ARGS_CLEANUP; | |
503 | ||
accb3257 | 504 | return ERROR_RETURN_CODE; |
518b5d2f | 505 | } |
cd6ce4a9 | 506 | else if ( pid == 0 ) // we're in child |
518b5d2f | 507 | { |
e90c1d2a | 508 | #if wxUSE_GUI |
518b5d2f | 509 | close(end_proc_detect[0]); // close reading side |
e90c1d2a | 510 | #endif // wxUSE_GUI |
518b5d2f | 511 | |
cd6ce4a9 | 512 | // These lines close the open file descriptors to to avoid any |
518b5d2f | 513 | // input/output which might block the process or irritate the user. If |
cd6ce4a9 VZ |
514 | // one wants proper IO for the subprocess, the right thing to do is to |
515 | // start an xterm executing it. | |
516 | if ( !sync ) | |
518b5d2f | 517 | { |
518b5d2f VZ |
518 | for ( int fd = 0; fd < FD_SETSIZE; fd++ ) |
519 | { | |
f6bcfd97 | 520 | if ( fd == pipeIn[0] || fd == pipeOut[1] || fd == pipeErr[1] |
e90c1d2a | 521 | #if wxUSE_GUI |
cd6ce4a9 | 522 | || fd == end_proc_detect[1] |
e90c1d2a | 523 | #endif // wxUSE_GUI |
cd6ce4a9 VZ |
524 | ) |
525 | { | |
526 | // don't close this one, we still need it | |
527 | continue; | |
528 | } | |
e90c1d2a | 529 | |
cd6ce4a9 | 530 | // leave stderr opened too, it won't do any hurm |
e90c1d2a | 531 | if ( fd != STDERR_FILENO ) |
518b5d2f VZ |
532 | close(fd); |
533 | } | |
534 | } | |
535 | ||
f6bcfd97 | 536 | // redirect stdio, stdout and stderr |
cd6ce4a9 VZ |
537 | if ( pipeIn[0] != -1 ) |
538 | { | |
539 | if ( dup2(pipeIn[0], STDIN_FILENO) == -1 || | |
f6bcfd97 BP |
540 | dup2(pipeOut[1], STDOUT_FILENO) == -1 || |
541 | dup2(pipeErr[1], STDERR_FILENO) == -1 ) | |
cd6ce4a9 | 542 | { |
f6bcfd97 | 543 | wxLogSysError(_("Failed to redirect child process input/output")); |
cd6ce4a9 | 544 | } |
518b5d2f | 545 | |
cd6ce4a9 VZ |
546 | close(pipeIn[0]); |
547 | close(pipeOut[1]); | |
f6bcfd97 | 548 | close(pipeErr[1]); |
cd6ce4a9 | 549 | } |
518b5d2f | 550 | |
05079acc | 551 | execvp (*mb_argv, mb_argv); |
518b5d2f VZ |
552 | |
553 | // there is no return after successful exec() | |
518b5d2f VZ |
554 | _exit(-1); |
555 | } | |
cd6ce4a9 | 556 | else // we're in parent |
518b5d2f | 557 | { |
cd6ce4a9 VZ |
558 | ARGS_CLEANUP; |
559 | ||
560 | // pipe initialization: construction of the wxStreams | |
561 | if ( process && process->IsRedirected() ) | |
562 | { | |
563 | // These two streams are relative to this process. | |
564 | wxOutputStream *outStream = new wxProcessFileOutputStream(pipeIn[1]); | |
565 | wxInputStream *inStream = new wxProcessFileInputStream(pipeOut[0]); | |
f6bcfd97 BP |
566 | wxInputStream *errStream = new wxProcessFileInputStream(pipeErr[0]); |
567 | ||
cd6ce4a9 VZ |
568 | close(pipeIn[0]); // close reading side |
569 | close(pipeOut[1]); // close writing side | |
f6bcfd97 | 570 | close(pipeErr[1]); // close writing side |
cd6ce4a9 | 571 | |
f6bcfd97 | 572 | process->SetPipeStreams(inStream, outStream, errStream); |
cd6ce4a9 VZ |
573 | } |
574 | ||
e90c1d2a | 575 | #if wxUSE_GUI |
518b5d2f | 576 | wxEndProcessData *data = new wxEndProcessData; |
ab857a4e | 577 | |
518b5d2f VZ |
578 | if ( sync ) |
579 | { | |
cd6ce4a9 VZ |
580 | // we may have process for capturing the program output, but it's |
581 | // not used in wxEndProcessData in the case of sync execution | |
518b5d2f VZ |
582 | data->process = NULL; |
583 | ||
584 | // sync execution: indicate it by negating the pid | |
cd6ce4a9 VZ |
585 | data->pid = -pid; |
586 | data->tag = wxAddProcessCallback(data, end_proc_detect[0]); | |
587 | ||
ab857a4e | 588 | close(end_proc_detect[1]); // close writing side |
518b5d2f | 589 | |
cd6ce4a9 VZ |
590 | wxBusyCursor bc; |
591 | wxWindowDisabler wd; | |
592 | ||
518b5d2f VZ |
593 | // it will be set to 0 from GTK_EndProcessDetector |
594 | while (data->pid != 0) | |
595 | wxYield(); | |
596 | ||
597 | int exitcode = data->exitcode; | |
598 | ||
599 | delete data; | |
600 | ||
601 | return exitcode; | |
602 | } | |
cd6ce4a9 | 603 | else // async execution |
518b5d2f VZ |
604 | { |
605 | // async execution, nothing special to do - caller will be | |
ab857a4e | 606 | // notified about the process termination if process != NULL, data |
518b5d2f | 607 | // will be deleted in GTK_EndProcessDetector |
8b33ae2d GL |
608 | data->process = process; |
609 | data->pid = pid; | |
610 | data->tag = wxAddProcessCallback(data, end_proc_detect[0]); | |
cd6ce4a9 | 611 | |
ab857a4e | 612 | close(end_proc_detect[1]); // close writing side |
518b5d2f VZ |
613 | |
614 | return pid; | |
615 | } | |
e90c1d2a | 616 | #else // !wxUSE_GUI |
223d09f6 | 617 | wxASSERT_MSG( sync, wxT("async execution not supported yet") ); |
e90c1d2a VZ |
618 | |
619 | int exitcode = 0; | |
620 | if ( waitpid(pid, &exitcode, 0) == -1 || !WIFEXITED(exitcode) ) | |
621 | { | |
622 | wxLogSysError(_("Waiting for subprocess termination failed")); | |
623 | } | |
624 | ||
625 | return exitcode; | |
626 | #endif // wxUSE_GUI | |
518b5d2f | 627 | } |
57681e5b JJ |
628 | #ifdef __VMS |
629 | // VMS does not recognise exit as a return and complains about | |
630 | // a missing return | |
631 | // I think VMS is wrong in this | |
632 | // JJ | |
633 | return 0; | |
634 | #endif | |
518b5d2f VZ |
635 | } |
636 | ||
accb3257 | 637 | #undef ERROR_RETURN_CODE |
f6bcfd97 BP |
638 | #undef ARGS_CLEANUP |
639 | ||
518b5d2f VZ |
640 | // ---------------------------------------------------------------------------- |
641 | // file and directory functions | |
642 | // ---------------------------------------------------------------------------- | |
643 | ||
05079acc | 644 | const wxChar* wxGetHomeDir( wxString *home ) |
518b5d2f VZ |
645 | { |
646 | *home = wxGetUserHome( wxString() ); | |
181cbcf4 | 647 | wxString tmp; |
518b5d2f | 648 | if ( home->IsEmpty() ) |
223d09f6 | 649 | *home = wxT("/"); |
181cbcf4 JJ |
650 | #ifdef __VMS |
651 | tmp = *home; | |
652 | if ( tmp.Last() != wxT(']')) | |
653 | if ( tmp.Last() != wxT('/')) *home << wxT('/'); | |
654 | #endif | |
518b5d2f VZ |
655 | return home->c_str(); |
656 | } | |
657 | ||
05079acc OK |
658 | #if wxUSE_UNICODE |
659 | const wxMB2WXbuf wxGetUserHome( const wxString &user ) | |
e90c1d2a | 660 | #else // just for binary compatibility -- there is no 'const' here |
518b5d2f | 661 | char *wxGetUserHome( const wxString &user ) |
05079acc | 662 | #endif |
518b5d2f VZ |
663 | { |
664 | struct passwd *who = (struct passwd *) NULL; | |
665 | ||
0fb67cd1 | 666 | if ( !user ) |
518b5d2f | 667 | { |
e90c1d2a | 668 | wxChar *ptr; |
518b5d2f | 669 | |
223d09f6 | 670 | if ((ptr = wxGetenv(wxT("HOME"))) != NULL) |
518b5d2f VZ |
671 | { |
672 | return ptr; | |
673 | } | |
223d09f6 | 674 | if ((ptr = wxGetenv(wxT("USER"))) != NULL || (ptr = wxGetenv(wxT("LOGNAME"))) != NULL) |
518b5d2f | 675 | { |
e90c1d2a | 676 | who = getpwnam(wxConvertWX2MB(ptr)); |
518b5d2f VZ |
677 | } |
678 | ||
679 | // We now make sure the the user exists! | |
680 | if (who == NULL) | |
681 | { | |
682 | who = getpwuid(getuid()); | |
683 | } | |
684 | } | |
685 | else | |
686 | { | |
05079acc | 687 | who = getpwnam (user.mb_str()); |
518b5d2f VZ |
688 | } |
689 | ||
af111fc3 | 690 | return wxConvertMB2WX(who ? who->pw_dir : 0); |
518b5d2f VZ |
691 | } |
692 | ||
693 | // ---------------------------------------------------------------------------- | |
0fb67cd1 | 694 | // network and user id routines |
518b5d2f VZ |
695 | // ---------------------------------------------------------------------------- |
696 | ||
0fb67cd1 VZ |
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 | |
699 | // private use only) | |
05079acc | 700 | static bool wxGetHostNameInternal(wxChar *buf, int sz) |
518b5d2f | 701 | { |
223d09f6 | 702 | wxCHECK_MSG( buf, FALSE, wxT("NULL pointer in wxGetHostNameInternal") ); |
518b5d2f | 703 | |
223d09f6 | 704 | *buf = wxT('\0'); |
518b5d2f VZ |
705 | |
706 | // we're using uname() which is POSIX instead of less standard sysinfo() | |
707 | #if defined(HAVE_UNAME) | |
cc743a6f | 708 | struct utsname uts; |
518b5d2f VZ |
709 | bool ok = uname(&uts) != -1; |
710 | if ( ok ) | |
711 | { | |
e90c1d2a | 712 | wxStrncpy(buf, wxConvertMB2WX(uts.nodename), sz - 1); |
223d09f6 | 713 | buf[sz] = wxT('\0'); |
518b5d2f VZ |
714 | } |
715 | #elif defined(HAVE_GETHOSTNAME) | |
716 | bool ok = gethostname(buf, sz) != -1; | |
0fb67cd1 | 717 | #else // no uname, no gethostname |
223d09f6 | 718 | wxFAIL_MSG(wxT("don't know host name for this machine")); |
518b5d2f VZ |
719 | |
720 | bool ok = FALSE; | |
0fb67cd1 | 721 | #endif // uname/gethostname |
518b5d2f VZ |
722 | |
723 | if ( !ok ) | |
724 | { | |
725 | wxLogSysError(_("Cannot get the hostname")); | |
726 | } | |
727 | ||
728 | return ok; | |
729 | } | |
730 | ||
05079acc | 731 | bool wxGetHostName(wxChar *buf, int sz) |
0fb67cd1 VZ |
732 | { |
733 | bool ok = wxGetHostNameInternal(buf, sz); | |
734 | ||
735 | if ( ok ) | |
736 | { | |
737 | // BSD systems return the FQDN, we only want the hostname, so extract | |
738 | // it (we consider that dots are domain separators) | |
223d09f6 | 739 | wxChar *dot = wxStrchr(buf, wxT('.')); |
0fb67cd1 VZ |
740 | if ( dot ) |
741 | { | |
742 | // nuke it | |
223d09f6 | 743 | *dot = wxT('\0'); |
0fb67cd1 VZ |
744 | } |
745 | } | |
746 | ||
747 | return ok; | |
748 | } | |
749 | ||
05079acc | 750 | bool wxGetFullHostName(wxChar *buf, int sz) |
0fb67cd1 VZ |
751 | { |
752 | bool ok = wxGetHostNameInternal(buf, sz); | |
753 | ||
754 | if ( ok ) | |
755 | { | |
223d09f6 | 756 | if ( !wxStrchr(buf, wxT('.')) ) |
0fb67cd1 | 757 | { |
e90c1d2a | 758 | struct hostent *host = gethostbyname(wxConvertWX2MB(buf)); |
0fb67cd1 VZ |
759 | if ( !host ) |
760 | { | |
761 | wxLogSysError(_("Cannot get the official hostname")); | |
762 | ||
763 | ok = FALSE; | |
764 | } | |
765 | else | |
766 | { | |
767 | // the canonical name | |
e90c1d2a | 768 | wxStrncpy(buf, wxConvertMB2WX(host->h_name), sz); |
0fb67cd1 VZ |
769 | } |
770 | } | |
771 | //else: it's already a FQDN (BSD behaves this way) | |
772 | } | |
773 | ||
774 | return ok; | |
775 | } | |
776 | ||
05079acc | 777 | bool wxGetUserId(wxChar *buf, int sz) |
518b5d2f VZ |
778 | { |
779 | struct passwd *who; | |
780 | ||
223d09f6 | 781 | *buf = wxT('\0'); |
518b5d2f VZ |
782 | if ((who = getpwuid(getuid ())) != NULL) |
783 | { | |
e90c1d2a | 784 | wxStrncpy (buf, wxConvertMB2WX(who->pw_name), sz - 1); |
518b5d2f VZ |
785 | return TRUE; |
786 | } | |
787 | ||
788 | return FALSE; | |
789 | } | |
790 | ||
05079acc | 791 | bool wxGetUserName(wxChar *buf, int sz) |
518b5d2f VZ |
792 | { |
793 | struct passwd *who; | |
518b5d2f | 794 | |
223d09f6 | 795 | *buf = wxT('\0'); |
b12915c1 VZ |
796 | if ((who = getpwuid (getuid ())) != NULL) |
797 | { | |
798 | // pw_gecos field in struct passwd is not standard | |
bd3277fe | 799 | #ifdef HAVE_PW_GECOS |
b12915c1 | 800 | char *comma = strchr(who->pw_gecos, ','); |
518b5d2f VZ |
801 | if (comma) |
802 | *comma = '\0'; // cut off non-name comment fields | |
e90c1d2a | 803 | wxStrncpy (buf, wxConvertMB2WX(who->pw_gecos), sz - 1); |
b12915c1 | 804 | #else // !HAVE_PW_GECOS |
0fcdf6dc | 805 | wxStrncpy (buf, wxConvertMB2WX(who->pw_name), sz - 1); |
b12915c1 | 806 | #endif // HAVE_PW_GECOS/!HAVE_PW_GECOS |
518b5d2f VZ |
807 | return TRUE; |
808 | } | |
809 | ||
810 | return FALSE; | |
811 | } | |
812 | ||
bdc72a22 VZ |
813 | wxString wxGetOsDescription() |
814 | { | |
815 | #ifndef WXWIN_OS_DESCRIPTION | |
816 | #error WXWIN_OS_DESCRIPTION should be defined in config.h by configure | |
817 | #else | |
818 | return WXWIN_OS_DESCRIPTION; | |
819 | #endif | |
820 | } | |
821 | ||
bd3277fe VZ |
822 | // this function returns the GUI toolkit version in GUI programs, but OS |
823 | // version in non-GUI ones | |
824 | #if !wxUSE_GUI | |
825 | ||
826 | int wxGetOsVersion(int *majorVsn, int *minorVsn) | |
827 | { | |
828 | int major, minor; | |
829 | char name[256]; | |
830 | ||
831 | if ( sscanf(WXWIN_OS_DESCRIPTION, "%s %d.%d", name, &major, &minor) != 3 ) | |
832 | { | |
833 | // unreckognized uname string format | |
834 | major = minor = -1; | |
835 | } | |
836 | ||
837 | if ( majorVsn ) | |
838 | *majorVsn = major; | |
839 | if ( minorVsn ) | |
840 | *minorVsn = minor; | |
841 | ||
842 | return wxUNIX; | |
843 | } | |
844 | ||
845 | #endif // !wxUSE_GUI | |
846 | ||
847 | long wxGetFreeMemory() | |
848 | { | |
849 | #if defined(__LINUX__) | |
850 | // get it from /proc/meminfo | |
851 | FILE *fp = fopen("/proc/meminfo", "r"); | |
852 | if ( fp ) | |
853 | { | |
854 | long memFree = -1; | |
855 | ||
856 | char buf[1024]; | |
857 | if ( fgets(buf, WXSIZEOF(buf), fp) && fgets(buf, WXSIZEOF(buf), fp) ) | |
858 | { | |
859 | long memTotal, memUsed; | |
860 | sscanf(buf, "Mem: %ld %ld %ld", &memTotal, &memUsed, &memFree); | |
861 | } | |
862 | ||
863 | fclose(fp); | |
864 | ||
865 | return memFree; | |
866 | } | |
867 | #elif defined(__SUN__) && defined(_SC_AVPHYS_PAGES) | |
868 | return sysconf(_SC_AVPHYS_PAGES)*sysconf(_SC_PAGESIZE); | |
869 | //#elif defined(__FREEBSD__) -- might use sysctl() to find it out, probably | |
870 | #endif | |
871 | ||
872 | // can't find it out | |
873 | return -1; | |
874 | } | |
875 | ||
8fd0d89b VZ |
876 | // ---------------------------------------------------------------------------- |
877 | // env vars | |
878 | // ---------------------------------------------------------------------------- | |
879 | ||
97b305b7 | 880 | bool wxGetEnv(const wxString& var, wxString *value) |
308978f6 VZ |
881 | { |
882 | // wxGetenv is defined as getenv() | |
883 | wxChar *p = wxGetenv(var); | |
884 | if ( !p ) | |
885 | return FALSE; | |
886 | ||
887 | if ( value ) | |
888 | { | |
889 | *value = p; | |
890 | } | |
891 | ||
892 | return TRUE; | |
893 | } | |
894 | ||
8fd0d89b VZ |
895 | bool wxSetEnv(const wxString& variable, const wxChar *value) |
896 | { | |
897 | #if defined(HAVE_SETENV) | |
898 | return setenv(variable.mb_str(), value ? wxString(value).mb_str().data() | |
899 | : NULL, 1 /* overwrite */) == 0; | |
900 | #elif defined(HAVE_PUTENV) | |
901 | wxString s = variable; | |
902 | if ( value ) | |
903 | s << _T('=') << value; | |
904 | ||
905 | // transform to ANSI | |
906 | const char *p = s.mb_str(); | |
907 | ||
908 | // the string will be free()d by libc | |
909 | char *buf = (char *)malloc(strlen(p) + 1); | |
910 | strcpy(buf, p); | |
911 | ||
912 | return putenv(buf) == 0; | |
913 | #else // no way to set an env var | |
914 | return FALSE; | |
915 | #endif | |
916 | } | |
917 | ||
a37a5a73 VZ |
918 | // ---------------------------------------------------------------------------- |
919 | // signal handling | |
920 | // ---------------------------------------------------------------------------- | |
921 | ||
922 | #if wxUSE_ON_FATAL_EXCEPTION | |
923 | ||
924 | #include <signal.h> | |
925 | ||
f6bcfd97 | 926 | static void wxFatalSignalHandler(wxTYPE_SA_HANDLER) |
a37a5a73 VZ |
927 | { |
928 | if ( wxTheApp ) | |
929 | { | |
930 | // give the user a chance to do something special about this | |
931 | wxTheApp->OnFatalException(); | |
932 | } | |
933 | ||
934 | abort(); | |
935 | } | |
936 | ||
937 | bool wxHandleFatalExceptions(bool doit) | |
938 | { | |
939 | // old sig handlers | |
940 | static bool s_savedHandlers = FALSE; | |
941 | static struct sigaction s_handlerFPE, | |
942 | s_handlerILL, | |
943 | s_handlerBUS, | |
944 | s_handlerSEGV; | |
945 | ||
946 | bool ok = TRUE; | |
947 | if ( doit && !s_savedHandlers ) | |
948 | { | |
949 | // install the signal handler | |
950 | struct sigaction act; | |
951 | ||
952 | // some systems extend it with non std fields, so zero everything | |
953 | memset(&act, 0, sizeof(act)); | |
954 | ||
955 | act.sa_handler = wxFatalSignalHandler; | |
956 | sigemptyset(&act.sa_mask); | |
957 | act.sa_flags = 0; | |
958 | ||
959 | ok &= sigaction(SIGFPE, &act, &s_handlerFPE) == 0; | |
960 | ok &= sigaction(SIGILL, &act, &s_handlerILL) == 0; | |
961 | ok &= sigaction(SIGBUS, &act, &s_handlerBUS) == 0; | |
962 | ok &= sigaction(SIGSEGV, &act, &s_handlerSEGV) == 0; | |
963 | if ( !ok ) | |
964 | { | |
965 | wxLogDebug(_T("Failed to install our signal handler.")); | |
966 | } | |
967 | ||
968 | s_savedHandlers = TRUE; | |
969 | } | |
970 | else if ( s_savedHandlers ) | |
971 | { | |
972 | // uninstall the signal handler | |
973 | ok &= sigaction(SIGFPE, &s_handlerFPE, NULL) == 0; | |
974 | ok &= sigaction(SIGILL, &s_handlerILL, NULL) == 0; | |
975 | ok &= sigaction(SIGBUS, &s_handlerBUS, NULL) == 0; | |
976 | ok &= sigaction(SIGSEGV, &s_handlerSEGV, NULL) == 0; | |
977 | if ( !ok ) | |
978 | { | |
979 | wxLogDebug(_T("Failed to uninstall our signal handler.")); | |
980 | } | |
981 | ||
982 | s_savedHandlers = FALSE; | |
983 | } | |
984 | //else: nothing to do | |
985 | ||
986 | return ok; | |
987 | } | |
988 | ||
989 | #endif // wxUSE_ON_FATAL_EXCEPTION | |
990 | ||
518b5d2f VZ |
991 | // ---------------------------------------------------------------------------- |
992 | // error and debug output routines (deprecated, use wxLog) | |
993 | // ---------------------------------------------------------------------------- | |
994 | ||
995 | void wxDebugMsg( const char *format, ... ) | |
996 | { | |
997 | va_list ap; | |
998 | va_start( ap, format ); | |
999 | vfprintf( stderr, format, ap ); | |
1000 | fflush( stderr ); | |
1001 | va_end(ap); | |
1002 | } | |
1003 | ||
1004 | void wxError( const wxString &msg, const wxString &title ) | |
1005 | { | |
05079acc | 1006 | wxFprintf( stderr, _("Error ") ); |
223d09f6 KB |
1007 | if (!title.IsNull()) wxFprintf( stderr, wxT("%s "), WXSTRINGCAST(title) ); |
1008 | if (!msg.IsNull()) wxFprintf( stderr, wxT(": %s"), WXSTRINGCAST(msg) ); | |
1009 | wxFprintf( stderr, wxT(".\n") ); | |
518b5d2f VZ |
1010 | } |
1011 | ||
1012 | void wxFatalError( const wxString &msg, const wxString &title ) | |
1013 | { | |
05079acc | 1014 | wxFprintf( stderr, _("Error ") ); |
223d09f6 KB |
1015 | if (!title.IsNull()) wxFprintf( stderr, wxT("%s "), WXSTRINGCAST(title) ); |
1016 | if (!msg.IsNull()) wxFprintf( stderr, wxT(": %s"), WXSTRINGCAST(msg) ); | |
1017 | wxFprintf( stderr, wxT(".\n") ); | |
518b5d2f VZ |
1018 | exit(3); // the same exit code as for abort() |
1019 | } | |
93ccaed8 | 1020 |