1 /////////////////////////////////////////////////////////////////////////////
2 // Name: samples/console/console.cpp
3 // Purpose: a sample console (as opposed to GUI) progam using wxWindows
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
22 #include <wx/string.h>
26 // ----------------------------------------------------------------------------
27 // conditional compilation
28 // ----------------------------------------------------------------------------
34 //#define TEST_STRINGS
37 //#define TEST_LONGLONG
39 // ============================================================================
41 // ============================================================================
43 // ----------------------------------------------------------------------------
45 // ----------------------------------------------------------------------------
49 #include <wx/longlong.h>
52 static void TestSpeed()
54 static const long max
= 100000000;
61 for ( n
= 0; n
< max
; n
++ )
66 printf("Summing longs took %ld milliseconds.\n", sw
.Time());
73 for ( n
= 0; n
< max
; n
++ )
78 printf("Summing __int64s took %ld milliseconds.\n", sw
.Time());
85 for ( n
= 0; n
< max
; n
++ )
90 printf("Summing wxLongLongs took %ld milliseconds.\n", sw
.Time());
94 static void TestDivision()
96 wxLongLong ll
= 0x38417388; // some number < LONG_MAX
98 wxASSERT( (ll
/ 1000l)*1000l == ll
);
101 #endif // TEST_LONGLONG
103 // ----------------------------------------------------------------------------
105 // ----------------------------------------------------------------------------
109 #include <wx/datetime.h>
113 // ----------------------------------------------------------------------------
115 // ----------------------------------------------------------------------------
119 #include <wx/thread.h>
121 static size_t gs_counter
= (size_t)-1;
122 static wxCriticalSection gs_critsect
;
123 static wxCondition gs_cond
;
125 class MyJoinableThread
: public wxThread
128 MyJoinableThread(size_t n
) : wxThread(wxTHREAD_JOINABLE
)
129 { m_n
= n
; Create(); }
131 // thread execution starts here
132 virtual ExitCode
Entry();
138 wxThread::ExitCode
MyJoinableThread::Entry()
140 unsigned long res
= 1;
141 for ( size_t n
= 1; n
< m_n
; n
++ )
145 // it's a loooong calculation :-)
149 return (ExitCode
)res
;
152 class MyDetachedThread
: public wxThread
155 MyDetachedThread(size_t n
, char ch
) { m_n
= n
; m_ch
= ch
; Create(); }
157 // thread execution starts here
158 virtual ExitCode
Entry();
161 virtual void OnExit();
164 size_t m_n
; // number of characters to write
165 char m_ch
; // character to write
168 wxThread::ExitCode
MyDetachedThread::Entry()
171 wxCriticalSectionLocker
lock(gs_critsect
);
172 if ( gs_counter
== (size_t)-1 )
178 for ( size_t n
= 0; n
< m_n
; n
++ )
186 wxThread::Sleep(100);
192 void MyDetachedThread::OnExit()
194 wxLogTrace("thread", "Thread %ld is in OnExit", GetId());
196 wxCriticalSectionLocker
lock(gs_critsect
);
201 void TestDetachedThreads()
203 puts("*** Testing detached threads ***");
205 static const size_t nThreads
= 3;
206 MyDetachedThread
*threads
[nThreads
];
208 for ( n
= 0; n
< nThreads
; n
++ )
210 threads
[n
] = new MyDetachedThread(10, 'A' + n
);
213 threads
[0]->SetPriority(WXTHREAD_MIN_PRIORITY
);
214 threads
[1]->SetPriority(WXTHREAD_MAX_PRIORITY
);
216 for ( n
= 0; n
< nThreads
; n
++ )
221 // wait until all threads terminate
227 void TestJoinableThreads()
229 puts("*** Testing a joinable thread (a loooong calculation...) ***");
231 // calc 10! in the background
232 MyJoinableThread
thread(10);
235 printf("\nThread terminated with exit code %lu.\n",
236 (unsigned long)thread
.Wait());
239 void TestThreadSuspend()
241 MyDetachedThread
*thread
= new MyDetachedThread(30, 'X');
245 // this is for this demo only, in a real life program we'd use another
246 // condition variable which would be signaled from wxThread::Entry() to
247 // tell us that the thread really started running - but here just wait a
248 // bit and hope that it will be enough (the problem is, of course, that
249 // the thread might still not run when we call Pause() which will result
251 wxThread::Sleep(300);
253 for ( size_t n
= 0; n
< 3; n
++ )
257 puts("\nThread suspended");
260 // don't sleep but resume immediately the first time
261 wxThread::Sleep(300);
263 puts("Going to resume the thread");
268 // wait until the thread terminates
274 #endif // TEST_THREADS
276 // ----------------------------------------------------------------------------
278 // ----------------------------------------------------------------------------
282 void PrintArray(const char* name
, const wxArrayString
& array
)
284 printf("Dump of the array '%s'\n", name
);
286 size_t nCount
= array
.GetCount();
287 for ( size_t n
= 0; n
< nCount
; n
++ )
289 printf("\t%s[%u] = '%s'\n", name
, n
, array
[n
].c_str());
293 #endif // TEST_ARRAYS
295 // ----------------------------------------------------------------------------
297 // ----------------------------------------------------------------------------
301 #include "wx/timer.h"
313 for (int i
= 0; i
< 1000000; ++i
)
317 c
= "! How'ya doin'?";
320 c
= "Hello world! What's up?";
325 printf ("TestString elapsed time: %ld\n", sw
.Time());
336 for (int i
= 0; i
< 1000000; ++i
)
339 strcpy (b
, " world");
340 strcpy (c
, "! How'ya doin'?");
343 strcpy (c
, "Hello world! What's up?");
344 if (strcmp (c
, a
) == 0)
348 printf ("TestPChar elapsed time: %ld\n", sw
.Time());
351 #endif // TEST_STRINGS
353 // ----------------------------------------------------------------------------
355 // ----------------------------------------------------------------------------
357 int main(int argc
, char **argv
)
359 if ( !wxInitialize() )
361 fprintf(stderr
, "Failed to initialize the wxWindows library, aborting.");
367 #endif // TEST_STRINGS
378 puts("*** Initially:");
380 PrintArray("a1", a1
);
382 wxArrayString
a2(a1
);
383 PrintArray("a2", a2
);
385 wxSortedArrayString
a3(a1
);
386 PrintArray("a3", a3
);
388 puts("*** After deleting a string from a1");
391 PrintArray("a1", a1
);
392 PrintArray("a2", a2
);
393 PrintArray("a3", a3
);
395 puts("*** After reassigning a1 to a2 and a3");
397 PrintArray("a2", a2
);
398 PrintArray("a3", a3
);
399 #endif // TEST_ARRAYS
403 for ( size_t n
= 0; n
< 8000; n
++ )
405 s
<< (char)('A' + (n
% 26));
409 msg
.Printf("A very very long message: '%s', the end!\n", s
.c_str());
411 // this one shouldn't be truncated
414 // but this one will because log functions use fixed size buffer
415 // (note that it doesn't need '\n' at the end neither - will be added
417 wxLogMessage("A very very long message 2: '%s', the end!", s
.c_str());
421 if ( argc
> 1 && argv
[1][0] == 't' )
422 wxLog::AddTraceMask("thread");
427 TestDetachedThreads();
428 TestJoinableThreads();
430 #endif // TEST_THREADS
437 #endif // TEST_LONGLONG
440 wxDateTime time
= wxDateTime::Now();
441 printf("Current time: '%s', current year %u is %sa leap one",
442 time
.Format().c_str(),
444 wxDateTime::IsLeapYear(time
.GetYear()) ? "" : "not");