]>
Commit | Line | Data |
---|---|---|
0e320a79 DW |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: utils.cpp | |
3 | // Purpose: Various utilities | |
45fcbf3b | 4 | // Author: David Webster |
0e320a79 | 5 | // Modified by: |
45fcbf3b | 6 | // Created: 09/17/99 |
0e320a79 | 7 | // RCS-ID: $Id$ |
45fcbf3b | 8 | // Copyright: (c) David Webster |
65571936 | 9 | // Licence: wxWindows licence |
0e320a79 DW |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
45fcbf3b DW |
12 | // For compilers that support precompilation, includes "wx.h". |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #ifndef WX_PRECOMP | |
16 | #include "wx/setup.h" | |
17 | #include "wx/utils.h" | |
18 | #include "wx/app.h" | |
45fcbf3b DW |
19 | #endif //WX_PRECOMP |
20 | ||
21 | #include "wx/os2/private.h" | |
45fcbf3b | 22 | #include "wx/intl.h" |
cd478a95 | 23 | #include "wx/apptrait.h" |
45fcbf3b | 24 | |
0e320a79 | 25 | #include <ctype.h> |
06298235 SN |
26 | #ifdef __EMX__ |
27 | #include <dirent.h> | |
06298235 | 28 | #endif |
45fcbf3b DW |
29 | |
30 | #include "wx/log.h" | |
31 | ||
32 | #include <io.h> | |
0e320a79 DW |
33 | |
34 | #include <stdio.h> | |
35 | #include <stdlib.h> | |
36 | #include <string.h> | |
45fcbf3b | 37 | #include <errno.h> |
0e320a79 DW |
38 | #include <stdarg.h> |
39 | ||
d90895ac | 40 | #define PURE_32 |
468e327a | 41 | |
6670f564 WS |
42 | #if defined(__WATCOMC__) |
43 | extern "C" | |
44 | { | |
45 | #include <upm.h> | |
46 | } | |
47 | #elif !defined(__EMX__) | |
48 | #include <upm.h> | |
49 | #include <netcons.h> | |
50 | #include <netbios.h> | |
06298235 | 51 | #endif |
45fcbf3b | 52 | |
77ffb593 | 53 | static const wxChar WX_SECTION[] = _T("wxWidgets"); |
86de7616 | 54 | static const wxChar eHOSTNAME[] = _T("HostName"); |
45fcbf3b DW |
55 | |
56 | // For the following functions we SHOULD fill in support | |
57 | // for Windows-NT (which I don't know) as I assume it begin | |
58 | // a POSIX Unix (so claims MS) that it has some special | |
59 | // functions beyond those provided by WinSock | |
60 | ||
0e320a79 | 61 | // Get full hostname (eg. DoDo.BSn-Germany.crg.de) |
10e5b930 DW |
62 | bool wxGetHostName( |
63 | wxChar* zBuf | |
64 | , int nMaxSize | |
65 | ) | |
0e320a79 | 66 | { |
d90895ac | 67 | #if wxUSE_NET_API |
10e5b930 DW |
68 | char zServer[256]; |
69 | char zComputer[256]; | |
909b4f08 | 70 | unsigned long ulLevel = 0; |
9dea36ef DW |
71 | unsigned char* zBuffer = NULL; |
72 | unsigned long ulBuffer = 256; | |
73 | unsigned long* pulTotalAvail = NULL; | |
10e5b930 | 74 | |
dde11e60 DW |
75 | NetBios32GetInfo( (const unsigned char*)zServer |
76 | ,(const unsigned char*)zComputer | |
909b4f08 | 77 | ,ulLevel |
dde11e60 | 78 | ,zBuffer |
909b4f08 DW |
79 | ,ulBuffer |
80 | ,pulTotalAvail | |
dde11e60 | 81 | ); |
10e5b930 | 82 | strcpy(zBuf, zServer); |
45fcbf3b | 83 | #else |
10e5b930 DW |
84 | wxChar* zSysname; |
85 | const wxChar* zDefaultHost = _T("noname"); | |
45fcbf3b | 86 | |
10e5b930 DW |
87 | if ((zSysname = wxGetenv(_T("SYSTEM_NAME"))) == NULL) |
88 | { | |
9923c37d DW |
89 | ::PrfQueryProfileString( HINI_PROFILE |
90 | ,(PSZ)WX_SECTION | |
91 | ,(PSZ)eHOSTNAME | |
92 | ,(PSZ)zDefaultHost | |
93 | ,(void*)zBuf | |
94 | ,(ULONG)nMaxSize - 1 | |
95 | ); | |
10e5b930 DW |
96 | } |
97 | else | |
98 | wxStrncpy(zBuf, zSysname, nMaxSize - 1); | |
99 | zBuf[nMaxSize] = _T('\0'); | |
45fcbf3b | 100 | #endif |
9d8aca48 | 101 | return *zBuf ? true : false; |
0e320a79 DW |
102 | } |
103 | ||
104 | // Get user ID e.g. jacs | |
6670f564 | 105 | bool wxGetUserId(wxChar* zBuf, int nType) |
0e320a79 | 106 | { |
6670f564 | 107 | #if defined(__VISAGECPP__) || defined(__WATCOMC__) |
2bd5bbc9 | 108 | // UPM procs return 0 on success |
6670f564 | 109 | long lrc = U32ELOCU((PUCHAR)zBuf, (PULONG)&nType); |
9d8aca48 | 110 | if (lrc == 0) return true; |
06298235 | 111 | #endif |
9d8aca48 | 112 | return false; |
0e320a79 DW |
113 | } |
114 | ||
6670f564 | 115 | bool wxGetUserName( wxChar* zBuf, int nMaxSize ) |
0e320a79 | 116 | { |
45fcbf3b | 117 | #ifdef USE_NET_API |
6670f564 | 118 | wxGetUserId( zBuf, nMaxSize ); |
45fcbf3b | 119 | #else |
10e5b930 | 120 | wxStrncpy(zBuf, _T("Unknown User"), nMaxSize); |
45fcbf3b | 121 | #endif |
9d8aca48 | 122 | return true; |
0e320a79 DW |
123 | } |
124 | ||
6670f564 WS |
125 | int wxKill(long lPid, |
126 | wxSignal WXUNUSED(eSig), | |
127 | wxKillError* WXUNUSED(peError), | |
128 | int WXUNUSED(flags)) | |
0e320a79 | 129 | { |
10e5b930 | 130 | return((int)::DosKillProcess(0, (PID)lPid)); |
0e320a79 DW |
131 | } |
132 | ||
133 | // | |
134 | // Execute a program in an Interactive Shell | |
135 | // | |
10e5b930 DW |
136 | bool wxShell( |
137 | const wxString& rCommand | |
138 | ) | |
0e320a79 | 139 | { |
c5fb56c0 DW |
140 | wxChar* zShell = _T("CMD.EXE"); |
141 | wxString sInputs; | |
c5fb56c0 DW |
142 | STARTDATA SData = {0}; |
143 | PSZ PgmTitle = "Command Shell"; | |
144 | APIRET rc; | |
145 | PID vPid = 0; | |
146 | ULONG ulSessID = 0; | |
147 | UCHAR achObjBuf[256] = {0}; //error data if DosStart fails | |
148 | RESULTCODES vResult; | |
149 | ||
150 | SData.Length = sizeof(STARTDATA); | |
151 | SData.Related = SSF_RELATED_INDEPENDENT; | |
152 | SData.FgBg = SSF_FGBG_FORE; | |
153 | SData.TraceOpt = SSF_TRACEOPT_NONE; | |
154 | SData.PgmTitle = PgmTitle; | |
0fba44b4 | 155 | SData.PgmName = (char*)zShell; |
c5fb56c0 | 156 | |
0fba44b4 | 157 | sInputs = _T("/C ") + rCommand; |
9ac6ff7b | 158 | SData.PgmInputs = (BYTE*)sInputs.c_str(); |
c5fb56c0 DW |
159 | SData.TermQ = 0; |
160 | SData.Environment = 0; | |
161 | SData.InheritOpt = SSF_INHERTOPT_SHELL; | |
162 | SData.SessionType = SSF_TYPE_WINDOWABLEVIO; | |
163 | SData.IconFile = 0; | |
164 | SData.PgmHandle = 0; | |
165 | SData.PgmControl = SSF_CONTROL_VISIBLE | SSF_CONTROL_MAXIMIZE; | |
166 | SData.InitXPos = 30; | |
167 | SData.InitYPos = 40; | |
168 | SData.InitXSize = 200; | |
169 | SData.InitYSize = 140; | |
170 | SData.Reserved = 0; | |
171 | SData.ObjectBuffer = (char*)achObjBuf; | |
172 | SData.ObjectBuffLen = (ULONG)sizeof(achObjBuf); | |
173 | ||
174 | rc = ::DosStartSession(&SData, &ulSessID, &vPid); | |
9ac6ff7b | 175 | if (rc == 0 || rc == 457) // NO_ERROR or SMG_START_IN_BACKGROUND |
c5fb56c0 DW |
176 | { |
177 | PTIB ptib; | |
178 | PPIB ppib; | |
10e5b930 | 179 | |
c5fb56c0 | 180 | ::DosGetInfoBlocks(&ptib, &ppib); |
10e5b930 | 181 | |
c5fb56c0 DW |
182 | ::DosWaitChild( DCWA_PROCESS |
183 | ,DCWW_WAIT | |
184 | ,&vResult | |
185 | ,&ppib->pib_ulpid | |
186 | ,vPid | |
187 | ); | |
188 | } | |
189 | return (rc != 0); | |
0e320a79 DW |
190 | } |
191 | ||
a23692f0 | 192 | // Shutdown or reboot the PC |
6670f564 | 193 | bool wxShutdown(wxShutdownFlags WXUNUSED(wFlags)) |
f6ba47d9 VZ |
194 | { |
195 | // TODO | |
9d8aca48 | 196 | return false; |
f6ba47d9 VZ |
197 | } |
198 | ||
8ea92b4d WS |
199 | wxPowerType wxGetPowerType() |
200 | { | |
201 | // TODO | |
202 | return wxPOWER_UNKNOWN; | |
203 | } | |
204 | ||
205 | wxBatteryState wxGetBatteryState() | |
206 | { | |
207 | // TODO | |
208 | return wxBATTERY_UNKNOWN_STATE; | |
209 | } | |
210 | ||
0e320a79 | 211 | // Get free memory in bytes, or -1 if cannot determine amount (e.g. on UNIX) |
9d8aca48 | 212 | wxMemorySize wxGetFreeMemory() |
0e320a79 | 213 | { |
5a23a495 WS |
214 | void* pMemptr = NULL; |
215 | LONG lSize; | |
216 | ULONG lMemFlags; | |
217 | APIRET rc; | |
78d50441 DW |
218 | |
219 | lMemFlags = PAG_FREE; | |
0d598bae | 220 | rc = ::DosQueryMem(pMemptr, (PULONG)&lSize, &lMemFlags); |
78d50441 | 221 | if (rc != 0) |
9d8aca48 WS |
222 | lSize = -1L; |
223 | return (wxMemorySize)lSize; | |
45fcbf3b DW |
224 | } |
225 | ||
264f00e7 SN |
226 | // Get Process ID |
227 | unsigned long wxGetProcessId() | |
228 | { | |
229 | return (unsigned long)getpid(); | |
230 | } | |
231 | ||
8269a903 SN |
232 | // ---------------------------------------------------------------------------- |
233 | // env vars | |
234 | // ---------------------------------------------------------------------------- | |
235 | ||
236 | bool wxGetEnv(const wxString& var, wxString *value) | |
237 | { | |
238 | // wxGetenv is defined as getenv() | |
239 | wxChar *p = wxGetenv(var); | |
240 | if ( !p ) | |
9d8aca48 | 241 | return false; |
8269a903 SN |
242 | |
243 | if ( value ) | |
244 | { | |
245 | *value = p; | |
246 | } | |
247 | ||
9d8aca48 | 248 | return true; |
8269a903 SN |
249 | } |
250 | ||
251 | bool wxSetEnv(const wxString& variable, const wxChar *value) | |
252 | { | |
253 | #if defined(HAVE_SETENV) | |
254 | return setenv(variable.mb_str(), value ? wxString(value).mb_str().data() | |
255 | : NULL, 1 /* overwrite */) == 0; | |
256 | #elif defined(HAVE_PUTENV) | |
257 | wxString s = variable; | |
258 | if ( value ) | |
259 | s << _T('=') << value; | |
260 | ||
261 | // transform to ANSI | |
262 | const char *p = s.mb_str(); | |
263 | ||
264 | // the string will be free()d by libc | |
265 | char *buf = (char *)malloc(strlen(p) + 1); | |
266 | strcpy(buf, p); | |
267 | ||
268 | return putenv(buf) == 0; | |
269 | #else // no way to set an env var | |
6670f564 WS |
270 | wxUnusedVar(variable); |
271 | wxUnusedVar(value); | |
9d8aca48 | 272 | return false; |
8269a903 SN |
273 | #endif |
274 | } | |
275 | ||
d3a919bd | 276 | void wxMilliSleep( |
10e5b930 DW |
277 | unsigned long ulMilliseconds |
278 | ) | |
45fcbf3b | 279 | { |
f53a0d32 | 280 | ::DosSleep(ulMilliseconds); |
0e320a79 DW |
281 | } |
282 | ||
d3a919bd SN |
283 | void wxMicroSleep( |
284 | unsigned long ulMicroseconds | |
285 | ) | |
286 | { | |
287 | ::DosSleep(ulMicroseconds/1000); | |
288 | } | |
289 | ||
10e5b930 DW |
290 | void wxSleep( |
291 | int nSecs | |
292 | ) | |
0e320a79 | 293 | { |
10e5b930 | 294 | ::DosSleep(1000 * nSecs); |
0e320a79 DW |
295 | } |
296 | ||
297 | // Consume all events until no more left | |
298 | void wxFlushEvents() | |
299 | { | |
45fcbf3b | 300 | // wxYield(); |
0e320a79 DW |
301 | } |
302 | ||
0e320a79 DW |
303 | // Emit a beeeeeep |
304 | void wxBell() | |
305 | { | |
45fcbf3b | 306 | DosBeep(1000,1000); // 1kHz during 1 sec. |
0e320a79 | 307 | } |
621ccd8a | 308 | |
5a23a495 WS |
309 | wxString wxGetOsDescription() |
310 | { | |
311 | wxString strVer(_T("OS/2")); | |
312 | ULONG ulSysInfo[QSV_MAX] = {0}; | |
313 | ||
314 | if (::DosQuerySysInfo( 1L, | |
315 | QSV_MAX, | |
316 | (PVOID)ulSysInfo, | |
317 | sizeof(ULONG) * QSV_MAX | |
318 | ) == 0L ) | |
319 | { | |
320 | wxString ver; | |
321 | ver.Printf( _T(" ver. %d.%d rev. %c"), | |
322 | int(ulSysInfo[QSV_VERSION_MAJOR] / 10), | |
323 | int(ulSysInfo[QSV_VERSION_MINOR]), | |
324 | char(ulSysInfo[QSV_VERSION_REVISION]) | |
325 | ); | |
326 | strVer += ver; | |
327 | } | |
328 | ||
329 | return strVer; | |
330 | } | |
8329e6c7 | 331 | |
6670f564 | 332 | void wxAppTraits::InitializeGui(unsigned long &WXUNUSED(ulHab)) |
8329e6c7 SN |
333 | { |
334 | } | |
335 | ||
6670f564 | 336 | void wxAppTraits::TerminateGui(unsigned long WXUNUSED(ulHab)) |
8329e6c7 SN |
337 | { |
338 | } | |
339 | ||
621ccd8a | 340 | wxToolkitInfo & wxConsoleAppTraits::GetToolkitInfo() |
10e5b930 | 341 | { |
9d8aca48 WS |
342 | static wxToolkitInfo vInfo; |
343 | ULONG ulSysInfo[QSV_MAX] = {0}; | |
344 | APIRET ulrc; | |
5d4b632b | 345 | |
621ccd8a | 346 | vInfo.name = _T("wxBase"); |
5d4b632b DW |
347 | ulrc = ::DosQuerySysInfo( 1L |
348 | ,QSV_MAX | |
349 | ,(PVOID)ulSysInfo | |
350 | ,sizeof(ULONG) * QSV_MAX | |
351 | ); | |
352 | if (ulrc == 0L) | |
10e5b930 | 353 | { |
621ccd8a SN |
354 | vInfo.versionMajor = ulSysInfo[QSV_VERSION_MAJOR] / 10; |
355 | vInfo.versionMinor = ulSysInfo[QSV_VERSION_MINOR]; | |
10e5b930 | 356 | } |
621ccd8a SN |
357 | vInfo.os = wxOS2_PM; |
358 | return vInfo; | |
0e320a79 | 359 | } |
621ccd8a | 360 | |
45fcbf3b | 361 | // --------------------------------------------------------------------------- |
1be7f92a DW |
362 | const wxChar* wxGetHomeDir( |
363 | wxString* pStr | |
364 | ) | |
45fcbf3b | 365 | { |
1be7f92a | 366 | wxString& rStrDir = *pStr; |
0e320a79 | 367 | |
1be7f92a | 368 | // OS/2 has no idea about home, |
b08c90ca SN |
369 | // so use the working directory instead. |
370 | // However, we might have a valid HOME directory, | |
371 | // as is used on many machines that have unix utilities | |
372 | // on them, so we should use that, if available. | |
45fcbf3b | 373 | |
1be7f92a | 374 | // 256 was taken from os2def.h |
45fcbf3b DW |
375 | #ifndef MAX_PATH |
376 | # define MAX_PATH 256 | |
377 | #endif | |
378 | ||
0fba44b4 | 379 | const wxChar *szHome = wxGetenv((wxChar*)"HOME"); |
b08c90ca SN |
380 | if ( szHome == NULL ) { |
381 | // we're homeless, use current directory. | |
382 | rStrDir = wxT("."); | |
383 | } | |
384 | else | |
385 | rStrDir = szHome; | |
45fcbf3b | 386 | |
1be7f92a | 387 | return rStrDir.c_str(); |
45fcbf3b DW |
388 | } |
389 | ||
10e5b930 | 390 | // Hack for OS/2 |
2173b18f SN |
391 | #if wxUSE_UNICODE |
392 | const wxMB2WXbuf wxGetUserHome( const wxString &rUser ) | |
393 | #else // just for binary compatibility -- there is no 'const' here | |
394 | wxChar* wxGetUserHome ( const wxString &rUser ) | |
395 | #endif | |
1be7f92a | 396 | { |
5a23a495 WS |
397 | wxChar* zHome; |
398 | wxString sUser1(rUser); | |
1be7f92a | 399 | |
0fba44b4 | 400 | wxChar *wxBuffer = new wxChar[256]; |
06298235 | 401 | #ifndef __EMX__ |
27b2dd53 | 402 | if (!sUser1.empty()) |
45fcbf3b | 403 | { |
1be7f92a DW |
404 | wxChar zTmp[64]; |
405 | ||
406 | if (wxGetUserId( zTmp | |
407 | ,sizeof(zTmp)/sizeof(char) | |
408 | )) | |
409 | { | |
410 | // Guests belong in the temp dir | |
411 | if (wxStricmp(zTmp, _T("annonymous")) == 0) | |
412 | { | |
413 | if ((zHome = wxGetenv(_T("TMP"))) != NULL || | |
414 | (zHome = wxGetenv(_T("TMPDIR"))) != NULL || | |
415 | (zHome = wxGetenv(_T("TEMP"))) != NULL) | |
13a4ea8d | 416 | delete[] wxBuffer; |
1be7f92a DW |
417 | return *zHome ? zHome : (wxChar*)_T("\\"); |
418 | } | |
419 | if (wxStricmp(zTmp, WXSTRINGCAST sUser1) == 0) | |
5a23a495 | 420 | sUser1 = wxEmptyString; |
1be7f92a | 421 | } |
45fcbf3b | 422 | } |
06298235 | 423 | #endif |
27b2dd53 | 424 | if (sUser1.empty()) |
13a4ea8d | 425 | { |
1be7f92a DW |
426 | if ((zHome = wxGetenv(_T("HOME"))) != NULL) |
427 | { | |
428 | wxStrcpy(wxBuffer, zHome); | |
2b5f62a0 | 429 | wxUnix2DosFilename(wxBuffer); |
2173b18f | 430 | #if wxUSE_UNICODE |
6670f564 | 431 | wxWCharBuffer retBuffer (wxBuffer); |
2173b18f SN |
432 | delete[] wxBuffer; |
433 | return retBuffer; | |
6670f564 | 434 | #else |
13a4ea8d DW |
435 | wxStrcpy(zHome, wxBuffer); |
436 | delete[] wxBuffer; | |
437 | return zHome; | |
2173b18f | 438 | #endif |
1be7f92a | 439 | } |
13a4ea8d DW |
440 | } |
441 | delete[] wxBuffer; | |
0fba44b4 | 442 | return (wxChar*)wxEmptyString; // No home known! |
0e320a79 DW |
443 | } |
444 | ||
6670f564 | 445 | wxString WXDLLEXPORT wxPMErrorToStr(ERRORID vError) |
914589c2 DW |
446 | { |
447 | wxString sError; | |
448 | ||
449 | // | |
450 | // Remove the high order byte -- it is useless | |
451 | // | |
452 | vError &= 0x0000ffff; | |
453 | switch(vError) | |
454 | { | |
455 | case PMERR_INVALID_HWND: | |
456 | sError = wxT("Invalid window handle specified"); | |
457 | break; | |
458 | ||
459 | case PMERR_INVALID_FLAG: | |
460 | sError = wxT("Invalid flag bit set"); | |
461 | break; | |
462 | ||
463 | case PMERR_NO_MSG_QUEUE: | |
464 | sError = wxT("No message queue available"); | |
465 | break; | |
466 | ||
467 | case PMERR_INVALID_PARM: | |
468 | sError = wxT("Parameter contained invalid data"); | |
469 | break; | |
470 | ||
471 | case PMERR_INVALID_PARAMETERS: | |
472 | sError = wxT("Parameter value is out of range"); | |
473 | break; | |
474 | ||
475 | case PMERR_PARAMETER_OUT_OF_RANGE: | |
476 | sError = wxT("Parameter value is out of range"); | |
477 | break; | |
478 | ||
479 | case PMERR_INVALID_INTEGER_ATOM: | |
480 | sError = wxT("Not a valid atom"); | |
481 | break; | |
482 | ||
483 | case PMERR_INVALID_HATOMTBL: | |
484 | sError = wxT("Atom table handle is invalid"); | |
485 | break; | |
486 | ||
487 | case PMERR_INVALID_ATOM_NAME: | |
488 | sError = wxT("Not a valid atom name"); | |
489 | break; | |
490 | ||
491 | case PMERR_ATOM_NAME_NOT_FOUND: | |
492 | sError = wxT("Valid name format, but cannot find name in atom table"); | |
493 | break; | |
494 | ||
495 | default: | |
496 | sError = wxT("Unknown error"); | |
497 | } | |
498 | return(sError); | |
499 | } // end of wxPMErrorToStr | |
621ccd8a SN |
500 | |
501 | // replacement for implementation in unix/utilsunx.cpp, | |
502 | // to be used by all X11 based ports. | |
503 | struct wxEndProcessData; | |
504 | ||
6670f564 | 505 | void wxHandleProcessTermination(wxEndProcessData *WXUNUSED(proc_data)) |
621ccd8a SN |
506 | { |
507 | // For now, just do nothing. To be filled in as needed. | |
508 | } |