]>
git.saurik.com Git - wxWidgets.git/blob - src/common/utilscmn.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Miscellaneous utility functions and classes
4 // Author: Julian Smart
8 // Copyright: (c) 1998 Julian Smart
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "utils.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
33 #include "wx/string.h"
39 #include "wx/window.h"
42 #include "wx/msgdlg.h"
43 #include "wx/textdlg.h"
45 #include "wx/menuitem.h"
52 #include "wx/process.h"
53 #include "wx/txtstrm.h"
61 #if !defined(__WATCOMC__)
62 #if !(defined(_MSC_VER) && (_MSC_VER > 800))
68 #include "wx/colordlg.h"
74 #include <sys/types.h>
83 #include "wx/msw/private.h"
86 // ----------------------------------------------------------------------------
88 // ----------------------------------------------------------------------------
91 static wxWindow
*wxFindWindowByLabel1(const wxString
& title
, wxWindow
*parent
);
92 static wxWindow
*wxFindWindowByName1 (const wxString
& title
, wxWindow
*parent
);
95 // ============================================================================
97 // ============================================================================
99 // ----------------------------------------------------------------------------
101 // ----------------------------------------------------------------------------
104 int strcasecmp(const char *str_1
, const char *str_2
)
106 register char c1
, c2
;
108 c1
= tolower(*str_1
++);
109 c2
= tolower(*str_2
++);
110 } while ( c1
&& (c1
== c2
) );
115 int strncasecmp(const char *str_1
, const char *str_2
, size_t maxchar
)
118 register char c1
, c2
;
121 c1
= tolower(*str_1
++);
122 c2
= tolower(*str_2
++);
134 #if defined( __VMS__ ) && ( __VMS_VER < 70000000 )
135 // we have no strI functions under VMS, therefore I have implemented
136 // an inefficient but portable version: convert copies of strings to lowercase
137 // and then use the normal comparison
138 static void myLowerString(char *s
)
141 if(isalpha(*s
)) *s
= (char)tolower(*s
);
146 int strcasecmp(const char *str_1
, const char *str_2
)
148 char *temp1
= new char[strlen(str_1
)+1];
149 char *temp2
= new char[strlen(str_2
)+1];
152 myLowerString(temp1
);
153 myLowerString(temp2
);
155 int result
= wxStrcmp(temp1
,temp2
);
162 int strncasecmp(const char *str_1
, const char *str_2
, size_t maxchar
)
164 char *temp1
= new char[strlen(str_1
)+1];
165 char *temp2
= new char[strlen(str_2
)+1];
168 myLowerString(temp1
);
169 myLowerString(temp2
);
171 int result
= strncmp(temp1
,temp2
,maxchar
);
183 #define strcasecmp stricmp
184 #define strncasecmp strnicmp
186 #define strcasecmp _stricmp
187 #define strncasecmp _strnicmp
194 #define strcasecmp stricmp
195 #define strncasecmp strnicmp
198 // This declaration is missing in SunOS!
199 // (Yes, I know it is NOT ANSI-C but its in BSD libc)
200 #if defined(__xlC) || defined(__AIX__) || defined(__GNUG__)
203 int strcasecmp (const char *, const char *);
204 int strncasecmp (const char *, const char *, size_t);
207 #endif /* __WXMSW__ */
210 #define strcasecmp stricmp
211 #define strncasecmp strnicmp
215 copystring (const wxChar
*s
)
217 if (s
== NULL
) s
= wxT("");
218 size_t len
= wxStrlen (s
) + 1;
220 wxChar
*news
= new wxChar
[len
];
221 memcpy (news
, s
, len
* sizeof(wxChar
)); // Should be the fastest
227 static long wxCurrentId
= 100;
232 return wxCurrentId
++;
236 wxGetCurrentId(void) { return wxCurrentId
; }
239 wxRegisterId (long id
)
241 if (id
>= wxCurrentId
)
242 wxCurrentId
= id
+ 1;
246 StringToFloat (wxChar
*s
, float *number
)
248 if (s
&& *s
&& number
)
249 *number
= (float) wxStrtod (s
, (wxChar
**) NULL
);
253 StringToDouble (wxChar
*s
, double *number
)
255 if (s
&& *s
&& number
)
256 *number
= wxStrtod (s
, (wxChar
**) NULL
);
260 FloatToString (float number
, const wxChar
*fmt
)
262 static wxChar buf
[256];
264 // sprintf (buf, "%.2f", number);
265 wxSprintf (buf
, fmt
, number
);
270 DoubleToString (double number
, const wxChar
*fmt
)
272 static wxChar buf
[256];
274 wxSprintf (buf
, fmt
, number
);
279 StringToInt (wxChar
*s
, int *number
)
281 if (s
&& *s
&& number
)
282 *number
= (int) wxStrtol (s
, (wxChar
**) NULL
, 10);
286 StringToLong (wxChar
*s
, long *number
)
288 if (s
&& *s
&& number
)
289 *number
= wxStrtol (s
, (wxChar
**) NULL
, 10);
293 IntToString (int number
)
295 static wxChar buf
[20];
297 wxSprintf (buf
, wxT("%d"), number
);
302 LongToString (long number
)
304 static wxChar buf
[20];
306 wxSprintf (buf
, wxT("%ld"), number
);
310 // Array used in DecToHex conversion routine.
311 static wxChar hexArray
[] = wxT("0123456789ABCDEF");
313 // Convert 2-digit hex number to decimal
314 int wxHexToDec(const wxString
& buf
)
316 int firstDigit
, secondDigit
;
318 if (buf
.GetChar(0) >= wxT('A'))
319 firstDigit
= buf
.GetChar(0) - wxT('A') + 10;
321 firstDigit
= buf
.GetChar(0) - wxT('0');
323 if (buf
.GetChar(1) >= wxT('A'))
324 secondDigit
= buf
.GetChar(1) - wxT('A') + 10;
326 secondDigit
= buf
.GetChar(1) - wxT('0');
328 return firstDigit
* 16 + secondDigit
;
331 // Convert decimal integer to 2-character hex string
332 void wxDecToHex(int dec
, wxChar
*buf
)
334 int firstDigit
= (int)(dec
/16.0);
335 int secondDigit
= (int)(dec
- (firstDigit
*16.0));
336 buf
[0] = hexArray
[firstDigit
];
337 buf
[1] = hexArray
[secondDigit
];
341 // Convert decimal integer to 2-character hex string
342 wxString
wxDecToHex(int dec
)
345 wxDecToHex(dec
, buf
);
346 return wxString(buf
);
349 // Match a string INDEPENDENT OF CASE
351 StringMatch (char *str1
, char *str2
, bool subString
, bool exact
)
353 if (str1
== NULL
|| str2
== NULL
)
360 int len1
= strlen (str1
);
361 int len2
= strlen (str2
);
364 // Search for str1 in str2
365 // Slow .... but acceptable for short strings
366 for (i
= 0; i
<= len2
- len1
; i
++)
368 if (strncasecmp (str1
, str2
+ i
, len1
) == 0)
374 if (strcasecmp (str1
, str2
) == 0)
379 int len1
= strlen (str1
);
380 int len2
= strlen (str2
);
382 if (strncasecmp (str1
, str2
, wxMin (len1
, len2
)) == 0)
389 // Return the current date/time
393 time_t now
= time((time_t *) NULL
);
394 char *date
= ctime(&now
);
396 return wxString(date
);
401 // ----------------------------------------------------------------------------
402 // Menu accelerators related functions
403 // ----------------------------------------------------------------------------
405 wxChar
*wxStripMenuCodes (wxChar
*in
, wxChar
*out
)
408 return (wxChar
*) NULL
;
411 out
= copystring(in
);
413 wxChar
*tmpOut
= out
;
419 // Check && -> &, &x -> x
420 if (*++in
== wxT('&'))
423 else if (*in
== wxT('\t'))
425 // Remove all stuff after \t in X mode, and let the stuff as is
427 // Accelerators are handled in wx_item.cc for Motif, and are not
428 // YET supported in XView
440 wxString
wxStripMenuCodes(const wxString
& str
)
442 wxChar
*buf
= new wxChar
[str
.Length() + 1];
443 wxStripMenuCodes(WXSTRINGCAST str
, buf
);
451 // return wxAcceleratorEntry for the given menu string or NULL if none
453 wxAcceleratorEntry
*wxGetAccelFromString(const wxString
& label
)
455 // check for accelerators: they are given after '\t'
456 int posTab
= label
.Find(wxT('\t'));
457 if ( posTab
!= wxNOT_FOUND
) {
458 // parse the accelerator string
460 int accelFlags
= wxACCEL_NORMAL
;
462 for ( size_t n
= (size_t)posTab
+ 1; n
< label
.Len(); n
++ ) {
463 if ( (label
[n
] == '+') || (label
[n
] == '-') ) {
464 if ( current
== _("ctrl") )
465 accelFlags
|= wxACCEL_CTRL
;
466 else if ( current
== _("alt") )
467 accelFlags
|= wxACCEL_ALT
;
468 else if ( current
== _("shift") )
469 accelFlags
|= wxACCEL_SHIFT
;
471 wxLogDebug(wxT("Unknown accel modifier: '%s'"),
478 current
+= wxTolower(label
[n
]);
482 if ( current
.IsEmpty() ) {
483 wxLogDebug(wxT("No accel key found, accel string ignored."));
486 if ( current
.Len() == 1 ) {
488 keyCode
= wxToupper(current
[0U]);
491 // is it a function key?
492 if ( current
[0U] == 'f' && isdigit(current
[1U]) &&
493 (current
.Len() == 2 ||
494 (current
.Len() == 3 && isdigit(current
[2U]))) ) {
496 wxSscanf(current
.c_str() + 1, wxT("%d"), &n
);
498 keyCode
= WXK_F1
+ n
- 1;
501 // several special cases
503 if ( current
== wxT("DEL") ) {
504 keyCode
= WXK_DELETE
;
506 else if ( current
== wxT("DELETE") ) {
507 keyCode
= WXK_DELETE
;
509 else if ( current
== wxT("INS") ) {
510 keyCode
= WXK_INSERT
;
512 else if ( current
== wxT("INSERT") ) {
513 keyCode
= WXK_INSERT
;
516 else if ( current
== wxT("PGUP") ) {
519 else if ( current
== wxT("PGDN") ) {
525 wxLogDebug(wxT("Unrecognized accel key '%s', accel string ignored."),
533 // we do have something
534 return new wxAcceleratorEntry(accelFlags
, keyCode
);
538 return (wxAcceleratorEntry
*)NULL
;
541 #endif // wxUSE_ACCEL
543 // ----------------------------------------------------------------------------
544 // Window search functions
545 // ----------------------------------------------------------------------------
548 * If parent is non-NULL, look through children for a label or title
549 * matching the specified string. If NULL, look through all top-level windows.
554 wxFindWindowByLabel (const wxString
& title
, wxWindow
* parent
)
558 return wxFindWindowByLabel1(title
, parent
);
562 for ( wxWindowList::Node
* node
= wxTopLevelWindows
.GetFirst();
564 node
= node
->GetNext() )
566 wxWindow
*win
= node
->GetData();
567 wxWindow
*retwin
= wxFindWindowByLabel1 (title
, win
);
573 return (wxWindow
*) NULL
;
578 wxFindWindowByLabel1 (const wxString
& title
, wxWindow
* parent
)
582 if (parent
->GetLabel() == title
)
588 for ( wxWindowList::Node
* node
= parent
->GetChildren().GetFirst();
590 node
= node
->GetNext() )
592 wxWindow
*win
= (wxWindow
*)node
->GetData();
593 wxWindow
*retwin
= wxFindWindowByLabel1 (title
, win
);
600 return (wxWindow
*) NULL
; // Not found
604 * If parent is non-NULL, look through children for a name
605 * matching the specified string. If NULL, look through all top-level windows.
610 wxFindWindowByName (const wxString
& title
, wxWindow
* parent
)
614 return wxFindWindowByName1 (title
, parent
);
618 for ( wxWindowList::Node
* node
= wxTopLevelWindows
.GetFirst();
620 node
= node
->GetNext() )
622 wxWindow
*win
= node
->GetData();
623 wxWindow
*retwin
= wxFindWindowByName1 (title
, win
);
630 // Failed? Try by label instead.
631 return wxFindWindowByLabel(title
, parent
);
636 wxFindWindowByName1 (const wxString
& title
, wxWindow
* parent
)
640 if ( parent
->GetName() == title
)
646 for (wxNode
* node
= parent
->GetChildren().First (); node
; node
= node
->Next ())
648 wxWindow
*win
= (wxWindow
*) node
->Data ();
649 wxWindow
*retwin
= wxFindWindowByName1 (title
, win
);
656 return (wxWindow
*) NULL
; // Not found
660 // Returns menu item id or -1 if none.
662 wxFindMenuItemId (wxFrame
* frame
, const wxString
& menuString
, const wxString
& itemString
)
664 wxMenuBar
*menuBar
= frame
->GetMenuBar ();
667 return menuBar
->FindMenuItem (menuString
, itemString
);
673 On Fri, 21 Jul 1995, Paul Craven wrote:
675 > Is there a way to find the path of running program's executable? I can get
676 > my home directory, and the current directory, but I don't know how to get the
677 > executable directory.
680 The code below (warty as it is), does what you want on most Unix,
681 DOS, and Mac platforms (it's from the ALS Prolog main).
683 || Ken Bowen Applied Logic Systems, Inc. PO Box 180,
684 ||==== Voice: +1 (617)965-9191 Newton Centre,
685 || FAX: +1 (617)965-1636 MA 02159 USA
686 Email: ken@als.com WWW: http://www.als.com
687 ------------------------------------------------------------------------
690 // This code is commented out but it may be integrated with wxWin at
691 // a later date, after testing. Thanks Ken!
694 /*--------------------------------------------------------------------*
695 | whereami is given a filename f in the form: whereami(argv[0])
696 | It returns the directory in which the executable file (containing
697 | this code [main.c] ) may be found. A dot will be returned to indicate
698 | the current directory.
699 *--------------------------------------------------------------------*/
705 register char *cutoff
= NULL
; /* stifle -Wall */
712 * See if the file is accessible either through the current directory
713 * or through an absolute path.
716 if (access(name
, R_OK
) == 0) {
718 /*-------------------------------------------------------------*
719 * The file was accessible without any other work. But the current
720 * working directory might change on us, so if it was accessible
721 * through the cwd, then we should get it for later accesses.
722 *-------------------------------------------------------------*/
725 if (!absolute_pathname(name
)) {
726 #if defined(DOS) || defined(__WIN32__)
732 if (*(name
+ 1) == ':') {
733 if (*name
>= 'a' && *name
<= 'z')
734 drive
= (int) (*name
- 'a' + 1);
736 drive
= (int) (*name
- 'A' + 1);
738 *newrbuf
++ = *(name
+ 1);
739 *newrbuf
++ = DIR_SEPARATOR
;
743 *newrbuf
++ = DIR_SEPARATOR
;
745 if (getcwd(newrbuf
, drive
) == 0) { /* } */
747 if (getcwd(newrbuf
, 1024) == 0) { /* } */
751 if (getwd(imagedir
) == 0) { /* } */
752 #else /* !HAVE_GETWD */
753 if (getcwd(imagedir
, 1024) == 0) {
754 #endif /* !HAVE_GETWD */
756 fatal_error(FE_GETCWD
, 0);
758 for (; *t
; t
++) /* Set t to end of buffer */
760 if (*(t
- 1) == DIR_SEPARATOR
) /* leave slash if already
765 cutoff
= t
; /* otherwise put one in */
766 *t
++ = DIR_SEPARATOR
;
769 #if (!defined(__MAC__) && !defined(__DJGPP__) && !defined(__GO32__) && !defined(__WIN32__))
771 (*t
++ = DIR_SEPARATOR
);
774 /*-------------------------------------------------------------*
775 * Copy the rest of the string and set the cutoff if it was not
776 * already set. If the first character of name is a slash, cutoff
777 * is not presently set but will be on the first iteration of the
779 *-------------------------------------------------------------*/
781 for ((*name
== DIR_SEPARATOR
? (s
= name
+1) : (s
= name
));;) {
782 if (*s
== DIR_SEPARATOR
)
791 /*-------------------------------------------------------------*
792 * Get the path list from the environment. If the path list is
793 * inaccessible for any reason, leave with fatal error.
794 *-------------------------------------------------------------*/
797 if ((s
= getenv("Commands")) == (char *) 0)
799 if ((s
= getenv("PATH")) == (char *) 0)
801 fatal_error(FE_PATH
, 0);
804 * Copy path list into ebuf and set the source pointer to the
805 * beginning of this buffer.
813 while (*s
&& *s
!= PATH_SEPARATOR
)
815 if (t
> imagedir
&& *(t
- 1) == DIR_SEPARATOR
)
816 ; /* do nothing -- slash already is in place */
818 *t
++ = DIR_SEPARATOR
; /* put in the slash */
819 cutoff
= t
- 1; /* set cutoff */
821 if (access(imagedir
, R_OK
) == 0)
825 s
++; /* advance source pointer */
827 fatal_error(FE_INFND
, 0);
832 /*-------------------------------------------------------------*
833 | At this point the full pathname should exist in imagedir and
834 | cutoff should be set to the final slash. We must now determine
835 | whether the file name is a symbolic link or not and chase it down
836 | if it is. Note that we reuse ebuf for getting the link.
837 *-------------------------------------------------------------*/
840 while ((cc
= readlink(imagedir
, ebuf
, 512)) != -1) {
843 if (*s
== DIR_SEPARATOR
) {
850 if (*s
== DIR_SEPARATOR
)
851 cutoff
= t
; /* mark the last slash seen */
852 if (!(*t
++ = *s
++)) /* copy the character */
857 #endif /* HAVE_SYMLINK */
859 strcpy(imagename
, cutoff
+ 1); /* keep the image name */
860 *(cutoff
+ 1) = 0; /* chop off the filename part */
867 // ----------------------------------------------------------------------------
869 // ----------------------------------------------------------------------------
872 * N.B. these convenience functions must be separate from msgdlgg.cpp, textdlgg.cpp
873 * since otherwise the generic code may be pulled in unnecessarily.
876 int wxMessageBox(const wxString
& message
, const wxString
& caption
, long style
,
877 wxWindow
*parent
, int WXUNUSED(x
), int WXUNUSED(y
) )
879 wxMessageDialog
dialog(parent
, message
, caption
, style
);
881 int ans
= dialog
.ShowModal();
894 wxFAIL_MSG( _T("unexpected return code from wxMessageDialog") );
900 wxString
wxGetTextFromUser(const wxString
& message
, const wxString
& caption
,
901 const wxString
& defaultValue
, wxWindow
*parent
,
902 int x
, int y
, bool WXUNUSED(centre
) )
905 wxTextEntryDialog
dialog(parent
, message
, caption
, defaultValue
, wxOK
|wxCANCEL
, wxPoint(x
, y
));
906 if (dialog
.ShowModal() == wxID_OK
)
908 str
= dialog
.GetValue();
914 wxString
wxGetPasswordFromUser(const wxString
& message
,
915 const wxString
& caption
,
916 const wxString
& defaultValue
,
920 wxTextEntryDialog
dialog(parent
, message
, caption
, defaultValue
,
921 wxOK
| wxCANCEL
| wxTE_PASSWORD
);
922 if ( dialog
.ShowModal() == wxID_OK
)
924 str
= dialog
.GetValue();
930 #endif // wxUSE_TEXTDLG
932 wxColour
wxGetColourFromUser(wxWindow
*parent
, const wxColour
& colInit
)
935 data
.SetChooseFull(TRUE
);
938 data
.SetColour((wxColour
&)colInit
); // const_cast
942 wxColourDialog
dialog(parent
, &data
);
943 if ( dialog
.ShowModal() == wxID_OK
)
945 colRet
= dialog
.GetColourData().GetColour();
947 //else: leave it invalid
952 // ----------------------------------------------------------------------------
953 // missing C RTL functions (FIXME shouldn't be here at all)
954 // ----------------------------------------------------------------------------
957 char *strdup(const char *s
)
959 return strcpy( (char*) malloc( strlen( s
) + 1 ) , s
) ;
964 return ( c
>= 0 && c
< 128 ) ;
968 // ----------------------------------------------------------------------------
969 // wxSafeYield and supporting functions
970 // ----------------------------------------------------------------------------
972 void wxEnableTopLevelWindows(bool enable
)
974 wxWindowList::Node
*node
;
975 for ( node
= wxTopLevelWindows
.GetFirst(); node
; node
= node
->GetNext() )
976 node
->GetData()->Enable(enable
);
979 wxWindowDisabler::wxWindowDisabler(wxWindow
*winToSkip
)
983 // and the top level window too
984 HWND hwndFG
= ::GetForegroundWindow();
985 m_winTop
= hwndFG
? wxFindWinFromHandle((WXHWND
)hwndFG
) : (wxWindow
*)NULL
;
987 HWND hwndFG
= ::GetTopWindow(0);
988 m_winTop
= hwndFG
? wxFindWinFromHandle((WXHWND
)hwndFG
) : (wxWindow
*)NULL
;
992 // remember the top level windows which were already disabled, so that we
993 // don't reenable them later
994 m_winDisabled
= NULL
;
996 wxWindowList::Node
*node
;
997 for ( node
= wxTopLevelWindows
.GetFirst(); node
; node
= node
->GetNext() )
999 wxWindow
*winTop
= node
->GetData();
1000 if ( winTop
== winToSkip
)
1003 if ( winTop
->IsEnabled() )
1009 if ( !m_winDisabled
)
1011 m_winDisabled
= new wxWindowList
;
1014 m_winDisabled
->Append(winTop
);
1019 wxWindowDisabler::~wxWindowDisabler()
1021 wxWindowList::Node
*node
;
1022 for ( node
= wxTopLevelWindows
.GetFirst(); node
; node
= node
->GetNext() )
1024 wxWindow
*winTop
= node
->GetData();
1025 if ( !m_winDisabled
|| !m_winDisabled
->Find(winTop
) )
1029 //else: had been already disabled, don't reenable
1032 delete m_winDisabled
;
1038 if ( !::SetForegroundWindow(GetHwndOf(m_winTop
)) )
1040 wxLogLastError(wxT("SetForegroundWindow"));
1046 // 16-bit SetForegroundWindow() replacement
1048 GetWindowRect((HWND
) m_winTop
, &reWin
);
1049 SetWindowPos ((HWND
) m_winTop
, HWND_TOP
,
1050 reWin
.left
, reWin
.top
,
1051 reWin
.right
- reWin
.left
, reWin
.bottom
,
1058 // Yield to other apps/messages and disable user input to all windows except
1060 bool wxSafeYield(wxWindow
*win
)
1062 wxWindowDisabler
wd(win
);
1064 bool rc
= wxYield();
1069 // ----------------------------------------------------------------------------
1071 // ----------------------------------------------------------------------------
1073 // Don't synthesize KeyUp events holding down a key and producing KeyDown
1074 // events with autorepeat. On by default and always on in wxMSW. wxGTK version
1077 bool wxSetDetectableAutoRepeat( bool WXUNUSED(flag
) )
1079 return TRUE
; // detectable auto-repeat is the only mode MSW supports
1085 // ----------------------------------------------------------------------------
1086 // network and user id functions
1087 // ----------------------------------------------------------------------------
1089 // Get Full RFC822 style email address
1090 bool wxGetEmailAddress(wxChar
*address
, int maxSize
)
1092 wxString email
= wxGetEmailAddress();
1096 wxStrncpy(address
, email
, maxSize
- 1);
1097 address
[maxSize
- 1] = wxT('\0');
1102 wxString
wxGetEmailAddress()
1106 wxString host
= wxGetFullHostName();
1109 wxString user
= wxGetUserId();
1112 email
<< user
<< wxT('@') << host
;
1119 wxString
wxGetUserId()
1121 static const int maxLoginLen
= 256; // FIXME arbitrary number
1124 bool ok
= wxGetUserId(buf
.GetWriteBuf(maxLoginLen
), maxLoginLen
);
1125 buf
.UngetWriteBuf();
1133 wxString
wxGetUserName()
1135 static const int maxUserNameLen
= 1024; // FIXME arbitrary number
1138 bool ok
= wxGetUserName(buf
.GetWriteBuf(maxUserNameLen
), maxUserNameLen
);
1139 buf
.UngetWriteBuf();
1147 wxString
wxGetHostName()
1149 static const size_t hostnameSize
= 257;
1152 bool ok
= wxGetHostName(buf
.GetWriteBuf(hostnameSize
), hostnameSize
);
1154 buf
.UngetWriteBuf();
1162 wxString
wxGetFullHostName()
1164 static const size_t hostnameSize
= 257;
1167 bool ok
= wxGetFullHostName(buf
.GetWriteBuf(hostnameSize
), hostnameSize
);
1169 buf
.UngetWriteBuf();
1177 wxString
wxGetHomeDir()
1180 wxGetHomeDir(&home
);
1187 wxString
wxGetCurrentDir()
1194 ok
= getcwd(dir
.GetWriteBuf(len
+ 1), len
) != NULL
;
1195 dir
.UngetWriteBuf();
1199 if ( errno
!= ERANGE
)
1201 wxLogSysError(_T("Failed to get current directory"));
1203 return wxEmptyString
;
1207 // buffer was too small, retry with a larger one
1219 // ----------------------------------------------------------------------------
1221 // ----------------------------------------------------------------------------
1223 // this is a private function because it hasn't a clean interface: the first
1224 // array is passed by reference, the second by pointer - instead we have 2
1225 // public versions of wxExecute() below
1226 static long wxDoExecuteWithCapture(const wxString
& command
,
1227 wxArrayString
& output
,
1228 wxArrayString
* error
)
1231 wxFAIL_MSG("Sorry, this version of wxExecute not implemented on WIN16.");
1235 // create a wxProcess which will capture the output
1236 wxProcess
*process
= new wxProcess
;
1237 process
->Redirect();
1239 long rc
= wxExecute(command
, TRUE
/* sync */, process
);
1244 wxInputStream
* is
= process
->GetInputStream();
1245 wxCHECK_MSG( is
, -1, _T("if wxExecute() succeded, stream can't be NULL") );
1246 wxTextInputStream
tis(*is
);
1248 wxTextInputStream
*tes
= NULL
;
1249 wxInputStream
*es
= NULL
;
1252 es
= process
->GetErrorStream();
1254 wxCHECK_MSG( es
, -1, _T("stderr can't be NULL") );
1256 tes
= new wxTextInputStream(*es
);
1264 if ( !is
->Eof() && is
->IsOk() )
1266 wxString line
= tis
.ReadLine();
1267 if ( is
->LastError() )
1275 if ( error
&& !es
->Eof() && es
->IsOk() )
1277 wxString line
= tes
->ReadLine();
1278 if ( es
->LastError() )
1290 #endif // wxUSE_STREAMS
1295 #endif // IO redirection supoprted
1298 long wxExecute(const wxString
& command
, wxArrayString
& output
)
1300 return wxDoExecuteWithCapture(command
, output
, NULL
);
1303 long wxExecute(const wxString
& command
,
1304 wxArrayString
& output
,
1305 wxArrayString
& error
)
1307 return wxDoExecuteWithCapture(command
, output
, &error
);