1 ///////////////////////////////////////////////////////////////////////////// 
   3 // Purpose:     Various utilities 
   4 // Author:      David Webster 
   8 // Copyright:   (c) David Webster 
   9 // Licence:     wxWindows licence 
  10 ///////////////////////////////////////////////////////////////////////////// 
  12 // For compilers that support precompilation, includes "wx.h". 
  13 #include "wx/wxprec.h" 
  21 #include "wx/os2/private.h" 
  23 #include "wx/apptrait.h" 
  48 static const wxChar WX_SECTION
[] = _T("wxWidgets"); 
  49 static const wxChar eHOSTNAME
[]  = _T("HostName"); 
  50 static const wxChar eUSERID
[]    = _T("UserId"); 
  51 static const wxChar eUSERNAME
[]  = _T("UserName"); 
  53 // For the following functions we SHOULD fill in support 
  54 // for Windows-NT (which I don't know) as I assume it begin 
  55 // a POSIX Unix (so claims MS) that it has some special 
  56 // functions beyond those provided by WinSock 
  58 // Get full hostname (eg. DoDo.BSn-Germany.crg.de) 
  67     unsigned long                   ulLevel 
= 0; 
  68     unsigned char*                  zBuffer 
= NULL
; 
  69     unsigned long                   ulBuffer 
= 256; 
  70     unsigned long*                  pulTotalAvail 
= NULL
; 
  72     NetBios32GetInfo( (const unsigned char*)zServer
 
  73                      ,(const unsigned char*)zComputer
 
  79     strcpy(zBuf
, zServer
); 
  82     const wxChar
*                   zDefaultHost 
= _T("noname"); 
  84     if ((zSysname 
= wxGetenv(_T("SYSTEM_NAME"))) == NULL
) 
  86         ::PrfQueryProfileString( HINI_PROFILE
 
  95         wxStrncpy(zBuf
, zSysname
, nMaxSize 
- 1); 
  96     zBuf
[nMaxSize
] = _T('\0'); 
  98     return *zBuf 
? true : false; 
 101 // Get user ID e.g. jacs 
 107 #if defined(__VISAGECPP__) 
 109     // UPM procs return 0 on success 
 110     lrc 
= U32ELOCU((unsigned char*)zBuf
, (unsigned long *)&nType
); 
 111     if (lrc 
== 0) return true; 
 126     wxStrncpy(zBuf
, _T("Unknown User"), nMaxSize
); 
 134 , wxKillError
*                      peError
 
 138     return((int)::DosKillProcess(0, (PID
)lPid
)); 
 142 // Execute a program in an Interactive Shell 
 145   const wxString
&                   rCommand
 
 148     wxChar
*                         zShell 
= _T("CMD.EXE"); 
 150     STARTDATA                       SData 
= {0}; 
 151     PSZ                             PgmTitle 
= "Command Shell"; 
 155     UCHAR                           achObjBuf
[256] = {0}; //error data if DosStart fails 
 158     SData
.Length   
= sizeof(STARTDATA
); 
 159     SData
.Related  
= SSF_RELATED_INDEPENDENT
; 
 160     SData
.FgBg     
= SSF_FGBG_FORE
; 
 161     SData
.TraceOpt 
= SSF_TRACEOPT_NONE
; 
 162     SData
.PgmTitle 
= PgmTitle
; 
 163     SData
.PgmName  
= zShell
; 
 165     sInputs 
= "/C " + rCommand
; 
 166     SData
.PgmInputs     
= (BYTE
*)sInputs
.c_str(); 
 168     SData
.Environment   
= 0; 
 169     SData
.InheritOpt    
= SSF_INHERTOPT_SHELL
; 
 170     SData
.SessionType   
= SSF_TYPE_WINDOWABLEVIO
; 
 173     SData
.PgmControl    
= SSF_CONTROL_VISIBLE 
| SSF_CONTROL_MAXIMIZE
; 
 176     SData
.InitXSize     
= 200; 
 177     SData
.InitYSize     
= 140; 
 179     SData
.ObjectBuffer  
= (char*)achObjBuf
; 
 180     SData
.ObjectBuffLen 
= (ULONG
)sizeof(achObjBuf
); 
 182     rc 
= ::DosStartSession(&SData
, &ulSessID
, &vPid
); 
 183     if (rc 
== 0 || rc 
== 457) // NO_ERROR or SMG_START_IN_BACKGROUND 
 188         ::DosGetInfoBlocks(&ptib
, &ppib
); 
 190         ::DosWaitChild( DCWA_PROCESS
 
 200 // Shutdown or reboot the PC 
 201 bool wxShutdown(wxShutdownFlags wFlags
) 
 207 wxPowerType 
wxGetPowerType() 
 210     return wxPOWER_UNKNOWN
; 
 213 wxBatteryState 
wxGetBatteryState() 
 216     return wxBATTERY_UNKNOWN_STATE
; 
 219 // Get free memory in bytes, or -1 if cannot determine amount (e.g. on UNIX) 
 220 wxMemorySize 
wxGetFreeMemory() 
 222     void*                           pMemptr 
= NULL
; 
 227     lMemFlags 
= PAG_FREE
; 
 228     rc 
= ::DosQueryMem(pMemptr
, &lSize
, &lMemFlags
); 
 231     return (wxMemorySize
)lSize
; 
 234 // ---------------------------------------------------------------------------- 
 236 // ---------------------------------------------------------------------------- 
 238 bool wxGetEnv(const wxString
& var
, wxString 
*value
) 
 240     // wxGetenv is defined as getenv() 
 241     wxChar 
*p 
= wxGetenv(var
); 
 253 bool wxSetEnv(const wxString
& variable
, const wxChar 
*value
) 
 255 #if defined(HAVE_SETENV) 
 256     return setenv(variable
.mb_str(), value 
? wxString(value
).mb_str().data() 
 257                                            : NULL
, 1 /* overwrite */) == 0; 
 258 #elif defined(HAVE_PUTENV) 
 259     wxString s 
= variable
; 
 261         s 
<< _T('=') << value
; 
 264     const char *p 
= s
.mb_str(); 
 266     // the string will be free()d by libc 
 267     char *buf 
= (char *)malloc(strlen(p
) + 1); 
 270     return putenv(buf
) == 0; 
 271 #else // no way to set an env var 
 277   unsigned long                     ulMilliseconds
 
 280     ::DosSleep(ulMilliseconds
); 
 284   unsigned long                     ulMicroseconds
 
 287     ::DosSleep(ulMicroseconds
/1000); 
 294     ::DosSleep(1000 * nSecs
); 
 297 // Consume all events until no more left 
 303 #if WXWIN_COMPATIBILITY_2_2 
 305 // Output a debug mess., in a system dependent fashion. 
 307   const wxChar
*                     zFmt 
... 
 311     static wxChar                   zBuffer
[512]; 
 313     if (!wxTheApp
->GetWantDebugOutput()) 
 316     sprintf(zBuffer
, zFmt
, vAp
) ; 
 320 // Non-fatal error: pop up message box and (possibly) continue 
 323 , const wxString
&                   rTitle
 
 326     wxChar 
*wxBuffer 
= new wxChar
[256]; 
 327     wxSprintf(wxBuffer
, "%s\nContinue?", WXSTRINGCAST rMsg
); 
 328     if (::WinMessageBox( HWND_DESKTOP
 
 331                         ,(PSZ
)WXSTRINGCAST rTitle
 
 333                         ,MB_ICONEXCLAMATION 
| MB_YESNO
 
 339 // Fatal error: pop up message box and abort 
 342 , const wxString
&                   rTitle
 
 347     ulRc 
= ::WinMessageBox( HWND_DESKTOP
 
 354     DosExit(EXIT_PROCESS
, ulRc
); 
 357 #endif // WXWIN_COMPATIBILITY_2_2 
 362     DosBeep(1000,1000); // 1kHz during 1 sec. 
 366 void wxAppTraits::InitializeGui(unsigned long &ulHab
) 
 370 void wxAppTraits::TerminateGui(unsigned long ulHab
) 
 374 wxToolkitInfo 
& wxConsoleAppTraits::GetToolkitInfo() 
 376     static wxToolkitInfo  vInfo
; 
 377     ULONG                 ulSysInfo
[QSV_MAX
] = {0}; 
 380     vInfo
.name 
= _T("wxBase"); 
 381     ulrc 
= ::DosQuerySysInfo( 1L 
 384                              ,sizeof(ULONG
) * QSV_MAX
 
 388         vInfo
.versionMajor 
= ulSysInfo
[QSV_VERSION_MAJOR
] / 10; 
 389         vInfo
.versionMinor 
= ulSysInfo
[QSV_VERSION_MINOR
]; 
 395 // --------------------------------------------------------------------------- 
 396 const wxChar
* wxGetHomeDir( 
 400     wxString
&                       rStrDir 
= *pStr
; 
 402     // OS/2 has no idea about home, 
 403     // so use the working directory instead. 
 404     // However, we might have a valid HOME directory, 
 405     // as is used on many machines that have unix utilities 
 406     // on them, so we should use that, if available. 
 408     // 256 was taken from os2def.h 
 410 #  define MAX_PATH  256 
 413     const wxChar 
*szHome 
= wxGetenv("HOME"); 
 414     if ( szHome 
== NULL 
) { 
 415       // we're homeless, use current directory. 
 421     return rStrDir
.c_str(); 
 425 wxChar
* wxGetUserHome ( 
 426   const wxString
&                   rUser
 
 430     wxString                        
sUser1(rUser
); 
 432     char *wxBuffer 
= new wxChar
[256]; 
 434     if (sUser1 
!= _T("")) 
 438         if (wxGetUserId( zTmp
 
 439                         ,sizeof(zTmp
)/sizeof(char) 
 442             // Guests belong in the temp dir 
 443             if (wxStricmp(zTmp
, _T("annonymous")) == 0) 
 445                 if ((zHome 
= wxGetenv(_T("TMP"))) != NULL    
|| 
 446                     (zHome 
= wxGetenv(_T("TMPDIR"))) != NULL 
|| 
 447                     (zHome 
= wxGetenv(_T("TEMP"))) != NULL
) 
 449                     return *zHome 
? zHome 
: (wxChar
*)_T("\\"); 
 451             if (wxStricmp(zTmp
, WXSTRINGCAST sUser1
) == 0) 
 456     if (sUser1 
== _T("")) 
 458         if ((zHome 
= wxGetenv(_T("HOME"))) != NULL
) 
 460             wxStrcpy(wxBuffer
, zHome
); 
 461             wxUnix2DosFilename(wxBuffer
); 
 462             wxStrcpy(zHome
, wxBuffer
); 
 468     return NULL
; // No home known! 
 475     return (::DosSetCurrentDir(WXSTRINGCAST rDir
)); 
 478 wxString WXDLLEXPORT 
wxPMErrorToStr( 
 485     // Remove the high order byte -- it is useless 
 487     vError 
&= 0x0000ffff; 
 490         case PMERR_INVALID_HWND
: 
 491             sError 
= wxT("Invalid window handle specified"); 
 494         case PMERR_INVALID_FLAG
: 
 495             sError 
= wxT("Invalid flag bit set"); 
 498         case PMERR_NO_MSG_QUEUE
: 
 499             sError 
= wxT("No message queue available"); 
 502         case PMERR_INVALID_PARM
: 
 503             sError 
= wxT("Parameter contained invalid data"); 
 506         case PMERR_INVALID_PARAMETERS
: 
 507             sError 
= wxT("Parameter value is out of range"); 
 510         case PMERR_PARAMETER_OUT_OF_RANGE
: 
 511             sError 
= wxT("Parameter value is out of range"); 
 514         case PMERR_INVALID_INTEGER_ATOM
: 
 515             sError 
= wxT("Not a valid atom"); 
 518         case PMERR_INVALID_HATOMTBL
: 
 519             sError 
= wxT("Atom table handle is invalid"); 
 522         case PMERR_INVALID_ATOM_NAME
: 
 523             sError 
= wxT("Not a valid atom name"); 
 526         case PMERR_ATOM_NAME_NOT_FOUND
: 
 527             sError 
= wxT("Valid name format, but cannot find name in atom table"); 
 531             sError 
= wxT("Unknown error"); 
 534 } // end of wxPMErrorToStr 
 536 // replacement for implementation in unix/utilsunx.cpp, 
 537 // to be used by all X11 based ports. 
 538 struct wxEndProcessData
; 
 540 void wxHandleProcessTermination(wxEndProcessData 
*proc_data
) 
 542     // For now, just do nothing. To be filled in as needed.