]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk1/utilsgtk.cpp
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
12 //#pragma implementation "utils.h"
16 #include "wx/string.h"
21 #include "wx/process.h"
27 #include <sys/types.h>
34 #include <fcntl.h> // for O_WRONLY and friends
39 #include "gtk/gtkfeatures.h"
43 #include <sys/systeminfo.h>
47 // somehow missing from sys/wait.h but in the system's docs
50 pid_t
wait4(pid_t pid
, int *statusp
, int options
, struct rusage
55 //------------------------------------------------------------------------
57 //------------------------------------------------------------------------
64 void wxSleep(int nSecs
)
69 int wxKill(long pid
, int sig
)
71 return kill(pid
, sig
);
74 void wxDisplaySize( int *width
, int *height
)
76 if (width
) *width
= gdk_screen_width();
77 if (height
) *height
= gdk_screen_height();
80 void wxGetMousePosition( int* x
, int* y
)
82 gdk_window_get_pointer( (GdkWindow
*) NULL
, x
, y
, (GdkModifierType
*) NULL
);
85 bool wxColourDisplay(void)
90 int wxDisplayDepth(void)
92 return gdk_window_get_visual( (GdkWindow
*) &gdk_root_parent
)->depth
;
95 int wxGetOsVersion(int *majorVsn
, int *minorVsn
)
97 if (majorVsn
) *majorVsn
= GTK_MAJOR_VERSION
;
98 if (minorVsn
) *minorVsn
= GTK_MINOR_VERSION
;
103 //------------------------------------------------------------------------
104 // user and home routines
105 //------------------------------------------------------------------------
107 const char* wxGetHomeDir( wxString
*home
)
109 *home
= wxGetUserHome( wxString() );
110 if (home
->IsNull()) *home
= "/";
114 char *wxGetUserHome( const wxString
&user
)
116 struct passwd
*who
= (struct passwd
*) NULL
;
118 if (user
.IsNull() || (user
== ""))
122 if ((ptr
= getenv("HOME")) != NULL
)
126 if ((ptr
= getenv("USER")) != NULL
|| (ptr
= getenv("LOGNAME")) != NULL
)
131 /* We now make sure the the user exists! */
134 who
= getpwuid(getuid());
139 who
= getpwnam (user
);
142 return who
? who
->pw_dir
: (char*)NULL
;
145 //------------------------------------------------------------------------
147 //------------------------------------------------------------------------
149 bool wxGetHostName(char *buf
, int sz
)
152 #if defined(__SVR4__) && !defined(__sgi)
153 //KB: does this return the fully qualified host.domain name?
154 return (sysinfo(SI_HOSTNAME
, buf
, sz
) != -1);
155 #else /* BSD Sockets */
156 char name
[255], domain
[255];
159 if (gethostname(name
, sizeof(name
)/sizeof(char)-1) == -1)
161 if (getdomainname(domain
, sizeof(domain
)/sizeof(char)-1) == -1)
163 // Get official full name of host
164 // doesn't return the full qualified name, replaced by following
166 // strncpy(buf, (h=gethostbyname(name))!=NULL ? h->h_name : name, sz-1);
167 if((unsigned)sz
> strlen(name
)+strlen(domain
)+1)
170 if(strcmp(domain
,"(none)") == 0) // standalone machine
182 bool wxGetUserId(char *buf
, int sz
)
187 if ((who
= getpwuid(getuid ())) != NULL
) {
188 strncpy (buf
, who
->pw_name
, sz
-1);
194 bool wxGetUserName(char *buf
, int sz
)
200 if ((who
= getpwuid (getuid ())) != NULL
) {
201 comma
= strchr(who
->pw_gecos
,'c');
202 if(comma
) *comma
= '\0'; // cut off non-name comment fields
203 strncpy (buf
, who
->pw_gecos
, sz
- 1);
209 //------------------------------------------------------------------------
210 // error and debug output routines
211 //------------------------------------------------------------------------
213 void wxDebugMsg( const char *format
, ... )
216 va_start( ap
, format
);
217 vfprintf( stderr
, format
, ap
);
222 void wxError( const wxString
&msg
, const wxString
&title
)
224 fprintf( stderr
, "Error " );
225 if (!title
.IsNull()) fprintf( stderr
, "%s ", WXSTRINGCAST(title
) );
226 if (!msg
.IsNull()) fprintf( stderr
, ": %s", WXSTRINGCAST(msg
) );
227 fprintf( stderr
, ".\n" );
230 void wxFatalError( const wxString
&msg
, const wxString
&title
)
232 fprintf( stderr
, "Error " );
233 if (!title
.IsNull()) fprintf( stderr
, "%s ", WXSTRINGCAST(title
) );
234 if (!msg
.IsNull()) fprintf( stderr
, ": %s", WXSTRINGCAST(msg
) );
235 fprintf( stderr
, ".\n" );
236 exit(3); // the same exit code as for abort()
239 //------------------------------------------------------------------------
240 // directory routines
241 //------------------------------------------------------------------------
243 bool wxDirExists( const wxString
& dir
)
246 strcpy( buf
, WXSTRINGCAST(dir
) );
248 return ((stat(buf
, &sbuf
) != -1) && S_ISDIR(sbuf
.st_mode
) ? TRUE
: FALSE
);
251 //------------------------------------------------------------------------
252 // subprocess routines
253 //------------------------------------------------------------------------
255 // if pid > 0, the execution is async and the data is freed in
256 // GTK_EndProcessDetector, if pid < 0, the execution is synchronous and the
257 // caller (wxExecute) frees the data
258 struct wxEndProcessData
265 static void GTK_EndProcessDetector(gpointer data
, gint source
,
266 GdkInputCondition
WXUNUSED(condition
) )
268 wxEndProcessData
*proc_data
= (wxEndProcessData
*)data
;
271 pid
= (proc_data
->pid
> 0) ? proc_data
->pid
: -(proc_data
->pid
);
273 /* wait4 is not part of any standard, use at own risk
274 * not sure what wait4 does, but wait3 seems to be closest, whats a digit ;-)
275 * --- offer@sgi.com */
276 // VZ: wait4() will be woken up by a signal, not wait3 - so it's quite
277 // different (also, wait3() waits for any child, wait4() only for this
281 wait4(pid
, &status
, 0, (rusage
*) NULL
);
283 wait3(&status
, 0, (rusage
*) NULL
);
287 gdk_input_remove(proc_data
->tag
);
289 if (proc_data
->process
)
290 proc_data
->process
->OnTerminate(proc_data
->pid
, status
);
292 if (proc_data
->pid
> 0)
298 // wxExecute() will know about it
299 proc_data
->exitcode
= status
;
305 long wxExecute( char **argv
, bool sync
, wxProcess
*process
)
307 wxEndProcessData
*data
= new wxEndProcessData
;
308 int end_proc_detect
[2];
310 wxCHECK_MSG( *argv
, 0, "can't exec empty command" );
313 if (pipe(end_proc_detect
) == -1)
315 wxLogSysError( _("Pipe creation failed") );
319 /* fork the process */
320 #if defined(sun) || defined(__ultrix) || defined(__bsdi__)
327 wxLogSysError( _("Fork failed") );
333 close(end_proc_detect
[0]); // close reading side
335 // These three lines close the open file descriptors to to avoid any
336 // input/output which might block the process or irritate the user. If
337 // one wants proper IO for the subprocess, the "right thing to do is
338 // to start an xterm executing it.
340 close(STDOUT_FILENO
);
342 // leave stderr opened, it won't do any hurm
344 close(STDERR_FILENO
);
346 // some programs complain about stderr not being open, so redirect
348 open("/dev/null", O_RDONLY
); // stdin
349 open("/dev/null", O_WRONLY
); // stdout
350 open("/dev/null", O_WRONLY
); // stderr
354 execvp ((const char *)*argv
, (const char **)argv
);
356 execvp (*argv
, argv
);
359 // there is no return after successful exec()
360 fprintf(stderr
, _("Can't execute '%s'\n"), *argv
);
367 close(end_proc_detect
[1]); // close writing side
368 data
->tag
= gdk_input_add(end_proc_detect
[0], GDK_INPUT_READ
,
369 GTK_EndProcessDetector
, (gpointer
)data
);
372 wxASSERT_MSG( !process
, "wxProcess param ignored for sync exec" );
373 data
->process
= NULL
;
375 // sync execution: indicate it by negating the pid
378 // it will be set to 0 from GTK_EndProcessDetector
379 while (data
->pid
!= 0)
382 int exitcode
= data
->exitcode
;
390 // async execution, nothing special to do - caller will be
391 // notified about the process terminationif process != NULL, data
392 // will be deleted in GTK_EndProcessDetector
393 data
->process
= process
;
401 long wxExecute( const wxString
& command
, bool sync
, wxProcess
*process
)
403 static const char *IFS
= " \t\n";
405 wxCHECK_MSG( !command
.IsEmpty(), 0, "can't exec empty command" );
409 char *tmp
= new char[command
.Len() + 1];
410 strcpy(tmp
, command
);
412 argv
[argc
++] = strtok(tmp
, IFS
);
413 while ((argv
[argc
++] = strtok((char *) NULL
, IFS
)) != NULL
)
416 long lRc
= wxExecute(argv
, sync
, process
);