moved SEH stuff to crashrpt.cpp
[wxWidgets.git] / src / msw / utils.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/utils.cpp
3 // Purpose: Various utilities
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
22
23 #ifdef __BORLANDC__
24 #pragma hdrstop
25 #endif
26
27 #ifndef WX_PRECOMP
28 #include "wx/utils.h"
29 #include "wx/app.h"
30 #include "wx/intl.h"
31 #include "wx/log.h"
32 #endif //WX_PRECOMP
33
34 #include "wx/apptrait.h"
35
36 #include "wx/msw/private.h" // includes <windows.h>
37 #include "wx/msw/missing.h" // CHARSET_HANGUL
38
39 #if defined(__GNUWIN32_OLD__) || defined(__WXWINCE__)
40 // apparently we need to include winsock.h to get WSADATA and other stuff
41 // used in wxGetFullHostName() with the old mingw32 versions
42 #include <winsock.h>
43 #endif
44
45 #include "wx/timer.h"
46
47 #if !defined(__GNUWIN32__) && !defined(__SALFORDC__) && !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
48 #include <direct.h>
49
50 #ifndef __MWERKS__
51 #include <dos.h>
52 #endif
53 #endif //GNUWIN32
54
55 #if defined(__CYGWIN__)
56 #include <sys/unistd.h>
57 #include <sys/stat.h>
58 #include <sys/cygwin.h> // for cygwin_conv_to_full_win32_path()
59 #endif //GNUWIN32
60
61 #ifdef __BORLANDC__ // Please someone tell me which version of Borland needs
62 // this (3.1 I believe) and how to test for it.
63 // If this works for Borland 4.0 as well, then no worries.
64 #include <dir.h>
65 #endif
66
67 // VZ: there is some code using NetXXX() functions to get the full user name:
68 // I don't think it's a good idea because they don't work under Win95 and
69 // seem to return the same as wxGetUserId() under NT. If you really want
70 // to use them, just #define USE_NET_API
71 #undef USE_NET_API
72
73 #ifdef USE_NET_API
74 #include <lm.h>
75 #endif // USE_NET_API
76
77 #if defined(__WIN32__) && !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
78 #ifndef __UNIX__
79 #include <io.h>
80 #endif
81
82 #ifndef __GNUWIN32__
83 #include <shellapi.h>
84 #endif
85 #endif
86
87 #ifndef __WATCOMC__
88 #if !(defined(_MSC_VER) && (_MSC_VER > 800))
89 #include <errno.h>
90 #endif
91 #endif
92
93 // ----------------------------------------------------------------------------
94 // constants
95 // ----------------------------------------------------------------------------
96
97 // In the WIN.INI file
98 static const wxChar WX_SECTION[] = wxT("wxWindows");
99 static const wxChar eUSERNAME[] = wxT("UserName");
100
101 // these are only used under Win16
102 #if !defined(__WIN32__) && !defined(__WXMICROWIN__)
103 static const wxChar eHOSTNAME[] = wxT("HostName");
104 static const wxChar eUSERID[] = wxT("UserId");
105 #endif // !Win32
106
107 // ============================================================================
108 // implementation
109 // ============================================================================
110
111 // ----------------------------------------------------------------------------
112 // get host name and related
113 // ----------------------------------------------------------------------------
114
115 // Get hostname only (without domain name)
116 bool wxGetHostName(wxChar *buf, int maxSize)
117 {
118 #if defined(__WXWINCE__)
119 return FALSE;
120 #elif defined(__WIN32__) && !defined(__WXMICROWIN__)
121 DWORD nSize = maxSize;
122 if ( !::GetComputerName(buf, &nSize) )
123 {
124 wxLogLastError(wxT("GetComputerName"));
125
126 return FALSE;
127 }
128
129 return TRUE;
130 #else
131 wxChar *sysname;
132 const wxChar *default_host = wxT("noname");
133
134 if ((sysname = wxGetenv(wxT("SYSTEM_NAME"))) == NULL) {
135 GetProfileString(WX_SECTION, eHOSTNAME, default_host, buf, maxSize - 1);
136 } else
137 wxStrncpy(buf, sysname, maxSize - 1);
138 buf[maxSize] = wxT('\0');
139 return *buf ? TRUE : FALSE;
140 #endif
141 }
142
143 // get full hostname (with domain name if possible)
144 bool wxGetFullHostName(wxChar *buf, int maxSize)
145 {
146 #if defined(__WIN32__) && !defined(__WXMICROWIN__) && ! (defined(__GNUWIN32__) && !defined(__MINGW32__))
147 // TODO should use GetComputerNameEx() when available
148
149 // the idea is that if someone had set wxUSE_SOCKETS to 0 the code
150 // shouldn't use winsock.dll (a.k.a. ws2_32.dll) at all so only use this
151 // code if we link with it anyhow
152 #if wxUSE_SOCKETS
153 WSADATA wsa;
154 if ( WSAStartup(MAKEWORD(1, 1), &wsa) == 0 )
155 {
156 wxString host;
157 char bufA[256];
158 if ( gethostname(bufA, WXSIZEOF(bufA)) == 0 )
159 {
160 // gethostname() won't usually include the DNS domain name, for
161 // this we need to work a bit more
162 if ( !strchr(bufA, '.') )
163 {
164 struct hostent *pHostEnt = gethostbyname(bufA);
165
166 if ( pHostEnt )
167 {
168 // Windows will use DNS internally now
169 pHostEnt = gethostbyaddr(pHostEnt->h_addr, 4, AF_INET);
170 }
171
172 if ( pHostEnt )
173 {
174 host = wxString::FromAscii(pHostEnt->h_name);
175 }
176 }
177 }
178
179 WSACleanup();
180
181 if ( !host.empty() )
182 {
183 wxStrncpy(buf, host, maxSize);
184
185 return TRUE;
186 }
187 }
188
189 #endif // wxUSE_SOCKETS
190
191 #endif // Win32
192
193 return wxGetHostName(buf, maxSize);
194 }
195
196 // Get user ID e.g. jacs
197 bool wxGetUserId(wxChar *buf, int maxSize)
198 {
199 #if defined(__WXWINCE__)
200 return FALSE;
201 #elif defined(__WIN32__) && !defined(__win32s__) && !defined(__WXMICROWIN__)
202 DWORD nSize = maxSize;
203 if ( ::GetUserName(buf, &nSize) == 0 )
204 {
205 // actually, it does happen on Win9x if the user didn't log on
206 DWORD res = ::GetEnvironmentVariable(wxT("username"), buf, maxSize);
207 if ( res == 0 )
208 {
209 // not found
210 return FALSE;
211 }
212 }
213
214 return TRUE;
215 #else // Win16 or Win32s
216 wxChar *user;
217 const wxChar *default_id = wxT("anonymous");
218
219 // Can't assume we have NIS (PC-NFS) or some other ID daemon
220 // So we ...
221 if ( (user = wxGetenv(wxT("USER"))) == NULL &&
222 (user = wxGetenv(wxT("LOGNAME"))) == NULL )
223 {
224 // Use wxWindows configuration data (comming soon)
225 GetProfileString(WX_SECTION, eUSERID, default_id, buf, maxSize - 1);
226 }
227 else
228 {
229 wxStrncpy(buf, user, maxSize - 1);
230 }
231
232 return *buf ? TRUE : FALSE;
233 #endif
234 }
235
236 // Get user name e.g. Julian Smart
237 bool wxGetUserName(wxChar *buf, int maxSize)
238 {
239 #if defined(__WXWINCE__)
240 return FALSE;
241 #elif defined(USE_NET_API)
242 CHAR szUserName[256];
243 if ( !wxGetUserId(szUserName, WXSIZEOF(szUserName)) )
244 return FALSE;
245
246 // TODO how to get the domain name?
247 CHAR *szDomain = "";
248
249 // the code is based on the MSDN example (also see KB article Q119670)
250 WCHAR wszUserName[256]; // Unicode user name
251 WCHAR wszDomain[256];
252 LPBYTE ComputerName;
253
254 USER_INFO_2 *ui2; // User structure
255
256 // Convert ANSI user name and domain to Unicode
257 MultiByteToWideChar( CP_ACP, 0, szUserName, strlen(szUserName)+1,
258 wszUserName, WXSIZEOF(wszUserName) );
259 MultiByteToWideChar( CP_ACP, 0, szDomain, strlen(szDomain)+1,
260 wszDomain, WXSIZEOF(wszDomain) );
261
262 // Get the computer name of a DC for the domain.
263 if ( NetGetDCName( NULL, wszDomain, &ComputerName ) != NERR_Success )
264 {
265 wxLogError(wxT("Can not find domain controller"));
266
267 goto error;
268 }
269
270 // Look up the user on the DC
271 NET_API_STATUS status = NetUserGetInfo( (LPWSTR)ComputerName,
272 (LPWSTR)&wszUserName,
273 2, // level - we want USER_INFO_2
274 (LPBYTE *) &ui2 );
275 switch ( status )
276 {
277 case NERR_Success:
278 // ok
279 break;
280
281 case NERR_InvalidComputer:
282 wxLogError(wxT("Invalid domain controller name."));
283
284 goto error;
285
286 case NERR_UserNotFound:
287 wxLogError(wxT("Invalid user name '%s'."), szUserName);
288
289 goto error;
290
291 default:
292 wxLogSysError(wxT("Can't get information about user"));
293
294 goto error;
295 }
296
297 // Convert the Unicode full name to ANSI
298 WideCharToMultiByte( CP_ACP, 0, ui2->usri2_full_name, -1,
299 buf, maxSize, NULL, NULL );
300
301 return TRUE;
302
303 error:
304 wxLogError(wxT("Couldn't look up full user name."));
305
306 return FALSE;
307 #else // !USE_NET_API
308 // Could use NIS, MS-Mail or other site specific programs
309 // Use wxWindows configuration data
310 bool ok = GetProfileString(WX_SECTION, eUSERNAME, wxEmptyString, buf, maxSize - 1) != 0;
311 if ( !ok )
312 {
313 ok = wxGetUserId(buf, maxSize);
314 }
315
316 if ( !ok )
317 {
318 wxStrncpy(buf, wxT("Unknown User"), maxSize);
319 }
320 #endif // Win32/16
321
322 return TRUE;
323 }
324
325 const wxChar* wxGetHomeDir(wxString *pstr)
326 {
327 wxString& strDir = *pstr;
328
329 #if defined(__UNIX__)
330 const wxChar *szHome = wxGetenv("HOME");
331 if ( szHome == NULL ) {
332 // we're homeless...
333 wxLogWarning(_("can't find user's HOME, using current directory."));
334 strDir = wxT(".");
335 }
336 else
337 strDir = szHome;
338
339 // add a trailing slash if needed
340 if ( strDir.Last() != wxT('/') )
341 strDir << wxT('/');
342
343 #ifdef __CYGWIN__
344 // Cygwin returns unix type path but that does not work well
345 static wxChar windowsPath[MAX_PATH];
346 cygwin_conv_to_full_win32_path(strDir, windowsPath);
347 strDir = windowsPath;
348 #endif
349 #elif defined(__WXWINCE__)
350 // Nothing
351 #else
352 #ifdef __WIN32__
353 strDir.clear();
354
355 // If we have a valid HOME directory, as is used on many machines that
356 // have unix utilities on them, we should use that.
357 const wxChar *szHome = wxGetenv(wxT("HOME"));
358
359 if ( szHome != NULL )
360 {
361 strDir = szHome;
362 }
363 else // no HOME, try HOMEDRIVE/PATH
364 {
365 szHome = wxGetenv(wxT("HOMEDRIVE"));
366 if ( szHome != NULL )
367 strDir << szHome;
368 szHome = wxGetenv(wxT("HOMEPATH"));
369
370 if ( szHome != NULL )
371 {
372 strDir << szHome;
373
374 // the idea is that under NT these variables have default values
375 // of "%systemdrive%:" and "\\". As we don't want to create our
376 // config files in the root directory of the system drive, we will
377 // create it in our program's dir. However, if the user took care
378 // to set HOMEPATH to something other than "\\", we suppose that he
379 // knows what he is doing and use the supplied value.
380 if ( wxStrcmp(szHome, wxT("\\")) == 0 )
381 strDir.clear();
382 }
383 }
384
385 if ( strDir.empty() )
386 {
387 // If we have a valid USERPROFILE directory, as is the case in
388 // Windows NT, 2000 and XP, we should use that as our home directory.
389 szHome = wxGetenv(wxT("USERPROFILE"));
390
391 if ( szHome != NULL )
392 strDir = szHome;
393 }
394
395 if ( !strDir.empty() )
396 {
397 return strDir.c_str();
398 }
399 //else: fall back to the prograrm directory
400 #else // Win16
401 // Win16 has no idea about home, so use the executable directory instead
402 #endif // WIN16/32
403
404 // 260 was taken from windef.h
405 #ifndef MAX_PATH
406 #define MAX_PATH 260
407 #endif
408
409 wxString strPath;
410 ::GetModuleFileName(::GetModuleHandle(NULL),
411 strPath.GetWriteBuf(MAX_PATH), MAX_PATH);
412 strPath.UngetWriteBuf();
413
414 // extract the dir name
415 wxSplitPath(strPath, &strDir, NULL, NULL);
416
417 #endif // UNIX/Win
418
419 return strDir.c_str();
420 }
421
422 wxChar *wxGetUserHome(const wxString& WXUNUSED(user))
423 {
424 // VZ: the old code here never worked for user != "" anyhow! Moreover, it
425 // returned sometimes a malloc()'d pointer, sometimes a pointer to a
426 // static buffer and sometimes I don't even know what.
427 static wxString s_home;
428
429 return (wxChar *)wxGetHomeDir(&s_home);
430 }
431
432 bool wxDirExists(const wxString& dir)
433 {
434 #ifdef __WXMICROWIN__
435 return wxPathExist(dir);
436 #elif defined(__WIN32__)
437 DWORD attribs = GetFileAttributes(dir);
438 return ((attribs != (DWORD)-1) && (attribs & FILE_ATTRIBUTE_DIRECTORY));
439 #else // Win16
440 #ifdef __BORLANDC__
441 struct ffblk fileInfo;
442 #else
443 struct find_t fileInfo;
444 #endif
445 // In Borland findfirst has a different argument
446 // ordering from _dos_findfirst. But _dos_findfirst
447 // _should_ be ok in both MS and Borland... why not?
448 #ifdef __BORLANDC__
449 return (findfirst(dir, &fileInfo, _A_SUBDIR) == 0 &&
450 (fileInfo.ff_attrib & _A_SUBDIR) != 0);
451 #else
452 return (_dos_findfirst(dir, _A_SUBDIR, &fileInfo) == 0) &&
453 ((fileInfo.attrib & _A_SUBDIR) != 0);
454 #endif
455 #endif // Win32/16
456 }
457
458 bool wxGetDiskSpace(const wxString& path, wxLongLong *pTotal, wxLongLong *pFree)
459 {
460 #ifdef __WXWINCE__
461 return FALSE;
462 #else
463 if ( path.empty() )
464 return FALSE;
465
466 // old w32api don't have ULARGE_INTEGER
467 #if defined(__WIN32__) && \
468 (!defined(__GNUWIN32__) || wxCHECK_W32API_VERSION( 0, 3 ))
469 // GetDiskFreeSpaceEx() is not available under original Win95, check for
470 // it
471 typedef BOOL (WINAPI *GetDiskFreeSpaceEx_t)(LPCTSTR,
472 PULARGE_INTEGER,
473 PULARGE_INTEGER,
474 PULARGE_INTEGER);
475
476 GetDiskFreeSpaceEx_t
477 pGetDiskFreeSpaceEx = (GetDiskFreeSpaceEx_t)::GetProcAddress
478 (
479 ::GetModuleHandle(_T("kernel32.dll")),
480 #if wxUSE_UNICODE
481 "GetDiskFreeSpaceExW"
482 #else
483 "GetDiskFreeSpaceExA"
484 #endif
485 );
486
487 if ( pGetDiskFreeSpaceEx )
488 {
489 ULARGE_INTEGER bytesFree, bytesTotal;
490
491 // may pass the path as is, GetDiskFreeSpaceEx() is smart enough
492 if ( !pGetDiskFreeSpaceEx(path,
493 &bytesFree,
494 &bytesTotal,
495 NULL) )
496 {
497 wxLogLastError(_T("GetDiskFreeSpaceEx"));
498
499 return FALSE;
500 }
501
502 // ULARGE_INTEGER is a union of a 64 bit value and a struct containing
503 // two 32 bit fields which may be or may be not named - try to make it
504 // compile in all cases
505 #if defined(__BORLANDC__) && !defined(_ANONYMOUS_STRUCT)
506 #define UL(ul) ul.u
507 #else // anon union
508 #define UL(ul) ul
509 #endif
510 if ( pTotal )
511 {
512 *pTotal = wxLongLong(UL(bytesTotal).HighPart, UL(bytesTotal).LowPart);
513 }
514
515 if ( pFree )
516 {
517 *pFree = wxLongLong(UL(bytesFree).HighPart, UL(bytesFree).LowPart);
518 }
519 }
520 else
521 #endif // Win32
522 {
523 // there's a problem with drives larger than 2GB, GetDiskFreeSpaceEx()
524 // should be used instead - but if it's not available, fall back on
525 // GetDiskFreeSpace() nevertheless...
526
527 DWORD lSectorsPerCluster,
528 lBytesPerSector,
529 lNumberOfFreeClusters,
530 lTotalNumberOfClusters;
531
532 // FIXME: this is wrong, we should extract the root drive from path
533 // instead, but this is the job for wxFileName...
534 if ( !::GetDiskFreeSpace(path,
535 &lSectorsPerCluster,
536 &lBytesPerSector,
537 &lNumberOfFreeClusters,
538 &lTotalNumberOfClusters) )
539 {
540 wxLogLastError(_T("GetDiskFreeSpace"));
541
542 return FALSE;
543 }
544
545 wxLongLong lBytesPerCluster = lSectorsPerCluster;
546 lBytesPerCluster *= lBytesPerSector;
547
548 if ( pTotal )
549 {
550 *pTotal = lBytesPerCluster;
551 *pTotal *= lTotalNumberOfClusters;
552 }
553
554 if ( pFree )
555 {
556 *pFree = lBytesPerCluster;
557 *pFree *= lNumberOfFreeClusters;
558 }
559 }
560
561 return TRUE;
562 #endif
563 // __WXWINCE__
564 }
565
566 // ----------------------------------------------------------------------------
567 // env vars
568 // ----------------------------------------------------------------------------
569
570 bool wxGetEnv(const wxString& var, wxString *value)
571 {
572 #ifdef __WXWINCE__
573 return FALSE;
574 #elif defined(__WIN16__)
575 const wxChar* ret = wxGetenv(var);
576 if ( !ret )
577 return FALSE;
578
579 if ( value )
580 {
581 *value = ret;
582 }
583
584 return TRUE;
585 #else // Win32
586 // first get the size of the buffer
587 DWORD dwRet = ::GetEnvironmentVariable(var, NULL, 0);
588 if ( !dwRet )
589 {
590 // this means that there is no such variable
591 return FALSE;
592 }
593
594 if ( value )
595 {
596 (void)::GetEnvironmentVariable(var, value->GetWriteBuf(dwRet), dwRet);
597 value->UngetWriteBuf();
598 }
599
600 return TRUE;
601 #endif // Win16/32
602 }
603
604 bool wxSetEnv(const wxString& var, const wxChar *value)
605 {
606 // some compilers have putenv() or _putenv() or _wputenv() but it's better
607 // to always use Win32 function directly instead of dealing with them
608 #if defined(__WIN32__) && !defined(__WXWINCE__)
609 if ( !::SetEnvironmentVariable(var, value) )
610 {
611 wxLogLastError(_T("SetEnvironmentVariable"));
612
613 return FALSE;
614 }
615
616 return TRUE;
617 #else // no way to set env vars
618 return FALSE;
619 #endif
620 }
621
622 // ----------------------------------------------------------------------------
623 // process management
624 // ----------------------------------------------------------------------------
625
626 // structure used to pass parameters from wxKill() to wxEnumFindByPidProc()
627 struct wxFindByPidParams
628 {
629 wxFindByPidParams() { hwnd = 0; pid = 0; }
630
631 // the HWND used to return the result
632 HWND hwnd;
633
634 // the PID we're looking from
635 DWORD pid;
636
637 DECLARE_NO_COPY_CLASS(wxFindByPidParams)
638 };
639
640 // wxKill helper: EnumWindows() callback which is used to find the first (top
641 // level) window belonging to the given process
642 BOOL CALLBACK wxEnumFindByPidProc(HWND hwnd, LPARAM lParam)
643 {
644 DWORD pid;
645 (void)::GetWindowThreadProcessId(hwnd, &pid);
646
647 wxFindByPidParams *params = (wxFindByPidParams *)lParam;
648 if ( pid == params->pid )
649 {
650 // remember the window we found
651 params->hwnd = hwnd;
652
653 // return FALSE to stop the enumeration
654 return FALSE;
655 }
656
657 // continue enumeration
658 return TRUE;
659 }
660
661 int wxKill(long pid, wxSignal sig, wxKillError *krc)
662 {
663 // get the process handle to operate on
664 HANDLE hProcess = ::OpenProcess(SYNCHRONIZE |
665 PROCESS_TERMINATE |
666 PROCESS_QUERY_INFORMATION,
667 FALSE, // not inheritable
668 (DWORD)pid);
669 if ( hProcess == NULL )
670 {
671 if ( krc )
672 {
673 if ( ::GetLastError() == ERROR_ACCESS_DENIED )
674 {
675 *krc = wxKILL_ACCESS_DENIED;
676 }
677 else
678 {
679 *krc = wxKILL_NO_PROCESS;
680 }
681 }
682
683 return -1;
684 }
685
686 bool ok = TRUE;
687 switch ( sig )
688 {
689 case wxSIGKILL:
690 // kill the process forcefully returning -1 as error code
691 if ( !::TerminateProcess(hProcess, (UINT)-1) )
692 {
693 wxLogSysError(_("Failed to kill process %d"), pid);
694
695 if ( krc )
696 {
697 // this is not supposed to happen if we could open the
698 // process
699 *krc = wxKILL_ERROR;
700 }
701
702 ok = FALSE;
703 }
704 break;
705
706 case wxSIGNONE:
707 // do nothing, we just want to test for process existence
708 break;
709
710 default:
711 // any other signal means "terminate"
712 {
713 wxFindByPidParams params;
714 params.pid = (DWORD)pid;
715
716 // EnumWindows() has nice semantics: it returns 0 if it found
717 // something or if an error occured and non zero if it
718 // enumerated all the window
719 if ( !::EnumWindows(wxEnumFindByPidProc, (LPARAM)&params) )
720 {
721 // did we find any window?
722 if ( params.hwnd )
723 {
724 // tell the app to close
725 //
726 // NB: this is the harshest way, the app won't have
727 // opportunity to save any files, for example, but
728 // this is probably what we want here. If not we
729 // can also use SendMesageTimeout(WM_CLOSE)
730 if ( !::PostMessage(params.hwnd, WM_QUIT, 0, 0) )
731 {
732 wxLogLastError(_T("PostMessage(WM_QUIT)"));
733 }
734 }
735 else // it was an error then
736 {
737 wxLogLastError(_T("EnumWindows"));
738
739 ok = FALSE;
740 }
741 }
742 else // no windows for this PID
743 {
744 if ( krc )
745 {
746 *krc = wxKILL_ERROR;
747 }
748
749 ok = FALSE;
750 }
751 }
752 }
753
754 // the return code
755 DWORD rc;
756
757 if ( ok )
758 {
759 // as we wait for a short time, we can use just WaitForSingleObject()
760 // and not MsgWaitForMultipleObjects()
761 switch ( ::WaitForSingleObject(hProcess, 500 /* msec */) )
762 {
763 case WAIT_OBJECT_0:
764 // process terminated
765 if ( !::GetExitCodeProcess(hProcess, &rc) )
766 {
767 wxLogLastError(_T("GetExitCodeProcess"));
768 }
769 break;
770
771 default:
772 wxFAIL_MSG( _T("unexpected WaitForSingleObject() return") );
773 // fall through
774
775 case WAIT_FAILED:
776 wxLogLastError(_T("WaitForSingleObject"));
777 // fall through
778
779 case WAIT_TIMEOUT:
780 if ( krc )
781 {
782 *krc = wxKILL_ERROR;
783 }
784
785 rc = STILL_ACTIVE;
786 break;
787 }
788 }
789 else // !ok
790 {
791 // just to suppress the warnings about uninitialized variable
792 rc = 0;
793 }
794
795 ::CloseHandle(hProcess);
796
797 // the return code is the same as from Unix kill(): 0 if killed
798 // successfully or -1 on error
799 //
800 // be careful to interpret rc correctly: for wxSIGNONE we return success if
801 // the process exists, for all the other sig values -- if it doesn't
802 if ( ok &&
803 ((sig == wxSIGNONE) == (rc == STILL_ACTIVE)) )
804 {
805 if ( krc )
806 {
807 *krc = wxKILL_OK;
808 }
809
810 return 0;
811 }
812
813 // error
814 return -1;
815 }
816
817 // Execute a program in an Interactive Shell
818 bool wxShell(const wxString& command)
819 {
820 #ifdef __WXWINCE__
821 return FALSE;
822 #else
823 wxChar *shell = wxGetenv(wxT("COMSPEC"));
824 if ( !shell )
825 shell = (wxChar*) wxT("\\COMMAND.COM");
826
827 wxString cmd;
828 if ( !command )
829 {
830 // just the shell
831 cmd = shell;
832 }
833 else
834 {
835 // pass the command to execute to the command processor
836 cmd.Printf(wxT("%s /c %s"), shell, command.c_str());
837 }
838
839 return wxExecute(cmd, wxEXEC_SYNC) == 0;
840 #endif
841 }
842
843 // Shutdown or reboot the PC
844 bool wxShutdown(wxShutdownFlags wFlags)
845 {
846 #ifdef __WXWINCE__
847 return FALSE;
848 #elif defined(__WIN32__)
849 bool bOK = TRUE;
850
851 if ( wxGetOsVersion(NULL, NULL) == wxWINDOWS_NT ) // if is NT or 2K
852 {
853 // Get a token for this process.
854 HANDLE hToken;
855 bOK = ::OpenProcessToken(GetCurrentProcess(),
856 TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY,
857 &hToken) != 0;
858 if ( bOK )
859 {
860 TOKEN_PRIVILEGES tkp;
861
862 // Get the LUID for the shutdown privilege.
863 ::LookupPrivilegeValue(NULL, SE_SHUTDOWN_NAME,
864 &tkp.Privileges[0].Luid);
865
866 tkp.PrivilegeCount = 1; // one privilege to set
867 tkp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
868
869 // Get the shutdown privilege for this process.
870 ::AdjustTokenPrivileges(hToken, FALSE, &tkp, 0,
871 (PTOKEN_PRIVILEGES)NULL, 0);
872
873 // Cannot test the return value of AdjustTokenPrivileges.
874 bOK = ::GetLastError() == ERROR_SUCCESS;
875 }
876 }
877
878 if ( bOK )
879 {
880 UINT flags = EWX_SHUTDOWN | EWX_FORCE;
881 switch ( wFlags )
882 {
883 case wxSHUTDOWN_POWEROFF:
884 flags |= EWX_POWEROFF;
885 break;
886
887 case wxSHUTDOWN_REBOOT:
888 flags |= EWX_REBOOT;
889 break;
890
891 default:
892 wxFAIL_MSG( _T("unknown wxShutdown() flag") );
893 return FALSE;
894 }
895
896 bOK = ::ExitWindowsEx(EWX_SHUTDOWN | EWX_FORCE | EWX_REBOOT, 0) != 0;
897 }
898
899 return bOK;
900 #else // Win16
901 return FALSE;
902 #endif // Win32/16
903 }
904
905 // ----------------------------------------------------------------------------
906 // misc
907 // ----------------------------------------------------------------------------
908
909 // Get free memory in bytes, or -1 if cannot determine amount (e.g. on UNIX)
910 long wxGetFreeMemory()
911 {
912 #if defined(__WIN32__) && !defined(__BORLANDC__)
913 MEMORYSTATUS memStatus;
914 memStatus.dwLength = sizeof(MEMORYSTATUS);
915 GlobalMemoryStatus(&memStatus);
916 return memStatus.dwAvailPhys;
917 #else
918 return (long)GetFreeSpace(0);
919 #endif
920 }
921
922 unsigned long wxGetProcessId()
923 {
924 #ifdef __WIN32__
925 return ::GetCurrentProcessId();
926 #else
927 return 0;
928 #endif
929 }
930
931 // Emit a beeeeeep
932 void wxBell()
933 {
934 ::MessageBeep((UINT)-1); // default sound
935 }
936
937 wxString wxGetOsDescription()
938 {
939 #ifdef __WIN32__
940 wxString str;
941
942 OSVERSIONINFO info;
943 wxZeroMemory(info);
944
945 info.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
946 if ( ::GetVersionEx(&info) )
947 {
948 switch ( info.dwPlatformId )
949 {
950 case VER_PLATFORM_WIN32s:
951 str = _("Win32s on Windows 3.1");
952 break;
953
954 case VER_PLATFORM_WIN32_WINDOWS:
955 str.Printf(_("Windows 9%c"),
956 info.dwMinorVersion == 0 ? _T('5') : _T('8'));
957 if ( !wxIsEmpty(info.szCSDVersion) )
958 {
959 str << _T(" (") << info.szCSDVersion << _T(')');
960 }
961 break;
962
963 case VER_PLATFORM_WIN32_NT:
964 str.Printf(_T("Windows NT %lu.%lu (build %lu"),
965 info.dwMajorVersion,
966 info.dwMinorVersion,
967 info.dwBuildNumber);
968 if ( !wxIsEmpty(info.szCSDVersion) )
969 {
970 str << _T(", ") << info.szCSDVersion;
971 }
972 str << _T(')');
973 break;
974 }
975 }
976 else
977 {
978 wxFAIL_MSG( _T("GetVersionEx() failed") ); // should never happen
979 }
980
981 return str;
982 #else // Win16
983 return _("Windows 3.1");
984 #endif // Win32/16
985 }
986
987 int wxAppTraits::GetOSVersion(int *verMaj, int *verMin)
988 {
989 // cache the version info, it's not going to change
990 //
991 // NB: this is MT-safe, we may use these static vars from different threads
992 // but as they always have the same value it doesn't matter
993 static int s_ver = -1,
994 s_major = -1,
995 s_minor = -1;
996
997 if ( s_ver == -1 )
998 {
999 OSVERSIONINFO info;
1000 wxZeroMemory(info);
1001
1002 s_ver = wxWINDOWS;
1003 info.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
1004 if ( ::GetVersionEx(&info) )
1005 {
1006 s_major = info.dwMajorVersion;
1007 s_minor = info.dwMinorVersion;
1008
1009 switch ( info.dwPlatformId )
1010 {
1011 case VER_PLATFORM_WIN32s:
1012 s_ver = wxWIN32S;
1013 break;
1014
1015 case VER_PLATFORM_WIN32_WINDOWS:
1016 s_ver = wxWIN95;
1017 break;
1018
1019 case VER_PLATFORM_WIN32_NT:
1020 s_ver = wxWINDOWS_NT;
1021 break;
1022 #ifdef __WXWINCE__
1023 case VER_PLATFORM_WIN32_CE:
1024 s_ver = wxWINDOWS_CE;
1025 break;
1026 #endif
1027 }
1028 }
1029 }
1030
1031 if ( verMaj )
1032 *verMaj = s_major;
1033 if ( verMin )
1034 *verMin = s_minor;
1035
1036 return s_ver;
1037 }
1038
1039 // ----------------------------------------------------------------------------
1040 // sleep functions
1041 // ----------------------------------------------------------------------------
1042
1043 void wxUsleep(unsigned long milliseconds)
1044 {
1045 ::Sleep(milliseconds);
1046 }
1047
1048 void wxSleep(int nSecs)
1049 {
1050 wxUsleep(1000*nSecs);
1051 }
1052
1053 // ----------------------------------------------------------------------------
1054 // font encoding <-> Win32 codepage conversion functions
1055 // ----------------------------------------------------------------------------
1056
1057 extern WXDLLIMPEXP_BASE long wxEncodingToCharset(wxFontEncoding encoding)
1058 {
1059 switch ( encoding )
1060 {
1061 // although this function is supposed to return an exact match, do do
1062 // some mappings here for the most common case of "standard" encoding
1063 case wxFONTENCODING_SYSTEM:
1064 return DEFAULT_CHARSET;
1065
1066 case wxFONTENCODING_ISO8859_1:
1067 case wxFONTENCODING_ISO8859_15:
1068 case wxFONTENCODING_CP1252:
1069 return ANSI_CHARSET;
1070
1071 #if !defined(__WXMICROWIN__)
1072 // The following four fonts are multi-byte charsets
1073 case wxFONTENCODING_CP932:
1074 return SHIFTJIS_CHARSET;
1075
1076 case wxFONTENCODING_CP936:
1077 return GB2312_CHARSET;
1078
1079 case wxFONTENCODING_CP949:
1080 return HANGUL_CHARSET;
1081
1082 case wxFONTENCODING_CP950:
1083 return CHINESEBIG5_CHARSET;
1084
1085 // The rest are single byte encodings
1086 case wxFONTENCODING_CP1250:
1087 return EASTEUROPE_CHARSET;
1088
1089 case wxFONTENCODING_CP1251:
1090 return RUSSIAN_CHARSET;
1091
1092 case wxFONTENCODING_CP1253:
1093 return GREEK_CHARSET;
1094
1095 case wxFONTENCODING_CP1254:
1096 return TURKISH_CHARSET;
1097
1098 case wxFONTENCODING_CP1255:
1099 return HEBREW_CHARSET;
1100
1101 case wxFONTENCODING_CP1256:
1102 return ARABIC_CHARSET;
1103
1104 case wxFONTENCODING_CP1257:
1105 return BALTIC_CHARSET;
1106
1107 case wxFONTENCODING_CP874:
1108 return THAI_CHARSET;
1109 #endif // !__WXMICROWIN__
1110
1111 case wxFONTENCODING_CP437:
1112 return OEM_CHARSET;
1113
1114 default:
1115 // no way to translate this encoding into a Windows charset
1116 return -1;
1117 }
1118 }
1119
1120 // we have 2 versions of wxCharsetToCodepage(): the old one which directly
1121 // looks up the vlaues in the registry and the new one which is more
1122 // politically correct and has more chances to work on other Windows versions
1123 // as well but the old version is still needed for !wxUSE_FONTMAP case
1124 #if wxUSE_FONTMAP
1125
1126 #include "wx/fontmap.h"
1127
1128 extern WXDLLIMPEXP_BASE long wxEncodingToCodepage(wxFontEncoding encoding)
1129 {
1130 // translate encoding into the Windows CHARSET
1131 long charset = wxEncodingToCharset(encoding);
1132 if ( charset == -1 )
1133 return -1;
1134
1135 // translate CHARSET to code page
1136 CHARSETINFO csetInfo;
1137 if ( !::TranslateCharsetInfo((DWORD *)(DWORD)charset,
1138 &csetInfo,
1139 TCI_SRCCHARSET) )
1140 {
1141 wxLogLastError(_T("TranslateCharsetInfo(TCI_SRCCHARSET)"));
1142
1143 return -1;
1144 }
1145
1146 return csetInfo.ciACP;
1147 }
1148
1149 extern long wxCharsetToCodepage(const wxChar *name)
1150 {
1151 // first get the font encoding for this charset
1152 if ( !name )
1153 return -1;
1154
1155 wxFontEncoding enc = wxFontMapper::Get()->CharsetToEncoding(name, FALSE);
1156 if ( enc == wxFONTENCODING_SYSTEM )
1157 return -1;
1158
1159 // the use the helper function
1160 return wxEncodingToCodepage(enc);
1161 }
1162
1163 #else // !wxUSE_FONTMAP
1164
1165 #include "wx/msw/registry.h"
1166
1167 // this should work if Internet Exploiter is installed
1168 extern long wxCharsetToCodepage(const wxChar *name)
1169 {
1170 if (!name)
1171 return GetACP();
1172
1173 long CP = -1;
1174
1175 wxString path(wxT("MIME\\Database\\Charset\\"));
1176 wxString cn(name);
1177
1178 // follow the alias loop
1179 for ( ;; )
1180 {
1181 wxRegKey key(wxRegKey::HKCR, path + cn);
1182
1183 if (!key.Exists())
1184 break;
1185
1186 // two cases: either there's an AliasForCharset string,
1187 // or there are Codepage and InternetEncoding dwords.
1188 // The InternetEncoding gives us the actual encoding,
1189 // the Codepage just says which Windows character set to
1190 // use when displaying the data.
1191 if (key.HasValue(wxT("InternetEncoding")) &&
1192 key.QueryValue(wxT("InternetEncoding"), &CP))
1193 break;
1194
1195 // no encoding, see if it's an alias
1196 if (!key.HasValue(wxT("AliasForCharset")) ||
1197 !key.QueryValue(wxT("AliasForCharset"), cn))
1198 break;
1199 }
1200
1201 return CP;
1202 }
1203
1204 #endif // wxUSE_FONTMAP/!wxUSE_FONTMAP
1205