1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxWindows thread sample
4 // Author: Guilhem Lavaux, Vadim Zeitlin
8 // Copyright: (c) 1998-2002 wxWindows team
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx/wx.h".
13 #include "wx/wxprec.h"
24 #error "This sample requires thread support!"
25 #endif // wxUSE_THREADS
27 #include "wx/thread.h"
28 #include "wx/dynarray.h"
30 #include "wx/progdlg.h"
32 // define this to use wxExecute in the exec tests, otherwise just use system
36 #define EXEC(cmd) wxExecute((cmd), wxEXEC_SYNC)
38 #define EXEC(cmd) system(cmd)
42 WX_DEFINE_ARRAY_NO_PTR(wxThread
*, wxArrayThread
);
44 // Define a new application type
45 class MyApp
: public wxApp
51 virtual bool OnInit();
54 // all the threads currently alive - as soon as the thread terminates, it's
55 // removed from the array
56 wxArrayThread m_threads
;
58 // crit section protects access to all of the arrays below
59 wxCriticalSection m_critsect
;
61 // semaphore used to wait for the threads to exit, see MyFrame::OnQuit()
62 wxSemaphore m_semAllDone
;
64 // the last exiting thread should post to m_semAllDone if this is true
65 // (protected by the same m_critsect)
66 bool m_waitingUntilAllDone
;
69 // Create a new application object
72 // Define a new frame type
73 class MyFrame
: public wxFrame
77 MyFrame(wxFrame
*frame
, const wxString
& title
, int x
, int y
, int w
, int h
);
80 void WriteText(const wxString
& text
) { m_txtctrl
->WriteText(text
); }
82 // accessors for MyWorkerThread (called in its context!)
87 void OnQuit(wxCommandEvent
& event
);
88 void OnClear(wxCommandEvent
& event
);
90 void OnStartThread(wxCommandEvent
& event
);
91 void OnStartThreads(wxCommandEvent
& event
);
92 void OnStopThread(wxCommandEvent
& event
);
93 void OnPauseThread(wxCommandEvent
& event
);
94 void OnResumeThread(wxCommandEvent
& event
);
96 void OnStartWorker(wxCommandEvent
& event
);
97 void OnWorkerEvent(wxCommandEvent
& event
);
98 void OnUpdateWorker(wxUpdateUIEvent
& event
);
100 void OnExecMain(wxCommandEvent
& event
);
101 void OnExecThread(wxCommandEvent
& event
);
103 void OnShowCPUs(wxCommandEvent
& event
);
104 void OnAbout(wxCommandEvent
& event
);
106 void OnIdle(wxIdleEvent
&event
);
109 // helper function - creates a new thread (but doesn't run it)
110 MyThread
*CreateThread();
112 // just some place to put our messages in
113 wxTextCtrl
*m_txtctrl
;
115 // remember the number of running threads and total number of threads
116 size_t m_nRunning
, m_nCount
;
118 // the progress dialog which we show while worker thread is running
119 wxProgressDialog
*m_dlgProgress
;
121 // was the worker thread cancelled by user?
124 // protects m_cancelled
125 wxCriticalSection m_critsectWork
;
127 DECLARE_EVENT_TABLE()
130 // ID for the menu commands
136 THREAD_START_THREAD
= 201,
137 THREAD_START_THREADS
,
140 THREAD_RESUME_THREAD
,
149 WORKER_EVENT
// this one gets sent from the worker thread
152 // ----------------------------------------------------------------------------
154 // ----------------------------------------------------------------------------
156 class MyThread
: public wxThread
159 MyThread(MyFrame
*frame
);
161 // thread execution starts here
162 virtual void *Entry();
164 // called when the thread exits - whether it terminates normally or is
165 // stopped with Delete() (but not when it is Kill()ed!)
166 virtual void OnExit();
168 // write something to the text control
169 void WriteText(const wxString
& text
);
176 MyThread::MyThread(MyFrame
*frame
)
183 void MyThread::WriteText(const wxString
& text
)
187 // before doing any GUI calls we must ensure that this thread is the only
193 m_frame
->WriteText(msg
);
198 void MyThread::OnExit()
200 wxCriticalSectionLocker
locker(wxGetApp().m_critsect
);
202 wxArrayThread
& threads
= wxGetApp().m_threads
;
203 threads
.Remove(this);
205 if ( threads
.IsEmpty() )
207 // signal the main thread that there are no more threads left if it is
209 if ( wxGetApp().m_waitingUntilAllDone
)
211 wxGetApp().m_waitingUntilAllDone
= FALSE
;
213 wxGetApp().m_semAllDone
.Post();
218 void *MyThread::Entry()
222 text
.Printf(wxT("Thread 0x%lx started (priority = %u).\n"),
223 GetId(), GetPriority());
225 // wxLogMessage(text); -- test wxLog thread safeness
227 for ( m_count
= 0; m_count
< 10; m_count
++ )
229 // check if we were asked to exit
233 text
.Printf(wxT("[%u] Thread 0x%lx here.\n"), m_count
, GetId());
236 // wxSleep() can't be called from non-GUI thread!
237 wxThread::Sleep(1000);
240 text
.Printf(wxT("Thread 0x%lx finished.\n"), GetId());
242 // wxLogMessage(text); -- test wxLog thread safeness
247 // ----------------------------------------------------------------------------
249 // ----------------------------------------------------------------------------
251 class MyWorkerThread
: public wxThread
254 MyWorkerThread(MyFrame
*frame
);
256 // thread execution starts here
257 virtual void *Entry();
259 // called when the thread exits - whether it terminates normally or is
260 // stopped with Delete() (but not when it is Kill()ed!)
261 virtual void OnExit();
268 MyWorkerThread::MyWorkerThread(MyFrame
*frame
)
275 void MyWorkerThread::OnExit()
279 void *MyWorkerThread::Entry()
281 for ( m_count
= 0; !m_frame
->Cancelled() && (m_count
< 100); m_count
++ )
283 // check if we were asked to exit
287 // create any type of command event here
288 wxCommandEvent
event( wxEVT_COMMAND_MENU_SELECTED
, WORKER_EVENT
);
289 event
.SetInt( m_count
);
291 // send in a thread-safe way
292 wxPostEvent( m_frame
, event
);
294 // wxSleep() can't be called from non-main thread!
295 wxThread::Sleep(200);
298 wxCommandEvent
event( wxEVT_COMMAND_MENU_SELECTED
, WORKER_EVENT
);
299 event
.SetInt(-1); // that's all
300 wxPostEvent( m_frame
, event
);
305 // ----------------------------------------------------------------------------
306 // a thread which simply calls wxExecute
307 // ----------------------------------------------------------------------------
309 class MyExecThread
: public wxThread
312 MyExecThread(const wxChar
*command
) : wxThread(wxTHREAD_JOINABLE
),
318 virtual ExitCode
Entry()
320 return (ExitCode
)EXEC(m_command
);
327 // ----------------------------------------------------------------------------
329 // ----------------------------------------------------------------------------
331 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
332 EVT_MENU(THREAD_QUIT
, MyFrame::OnQuit
)
333 EVT_MENU(THREAD_CLEAR
, MyFrame::OnClear
)
334 EVT_MENU(THREAD_START_THREAD
, MyFrame::OnStartThread
)
335 EVT_MENU(THREAD_START_THREADS
, MyFrame::OnStartThreads
)
336 EVT_MENU(THREAD_STOP_THREAD
, MyFrame::OnStopThread
)
337 EVT_MENU(THREAD_PAUSE_THREAD
, MyFrame::OnPauseThread
)
338 EVT_MENU(THREAD_RESUME_THREAD
, MyFrame::OnResumeThread
)
340 EVT_MENU(THREAD_EXEC_MAIN
, MyFrame::OnExecMain
)
341 EVT_MENU(THREAD_EXEC_THREAD
, MyFrame::OnExecThread
)
343 EVT_MENU(THREAD_SHOWCPUS
, MyFrame::OnShowCPUs
)
344 EVT_MENU(THREAD_ABOUT
, MyFrame::OnAbout
)
346 EVT_UPDATE_UI(THREAD_START_WORKER
, MyFrame::OnUpdateWorker
)
347 EVT_MENU(THREAD_START_WORKER
, MyFrame::OnStartWorker
)
348 EVT_MENU(WORKER_EVENT
, MyFrame::OnWorkerEvent
)
350 EVT_IDLE(MyFrame::OnIdle
)
356 m_waitingUntilAllDone
= FALSE
;
363 // `Main program' equivalent, creating windows and returning main app frame
366 // uncomment this to get some debugging messages from the trace code
367 // on the console (or just set WXTRACE env variable to include "thread")
368 //wxLog::AddTraceMask("thread");
370 // Create the main frame window
371 MyFrame
*frame
= new MyFrame((wxFrame
*)NULL
, _T("wxWindows threads sample"),
375 wxMenuBar
*menuBar
= new wxMenuBar
;
377 wxMenu
*menuFile
= new wxMenu
;
378 menuFile
->Append(THREAD_CLEAR
, _T("&Clear log\tCtrl-L"));
379 menuFile
->AppendSeparator();
380 menuFile
->Append(THREAD_QUIT
, _T("E&xit\tAlt-X"));
381 menuBar
->Append(menuFile
, _T("&File"));
383 wxMenu
*menuThread
= new wxMenu
;
384 menuThread
->Append(THREAD_START_THREAD
, _T("&Start a new thread\tCtrl-N"));
385 menuThread
->Append(THREAD_START_THREADS
, _T("Start &many threads at once"));
386 menuThread
->Append(THREAD_STOP_THREAD
, _T("S&top a running thread\tCtrl-S"));
387 menuThread
->AppendSeparator();
388 menuThread
->Append(THREAD_PAUSE_THREAD
, _T("&Pause a running thread\tCtrl-P"));
389 menuThread
->Append(THREAD_RESUME_THREAD
, _T("&Resume suspended thread\tCtrl-R"));
390 menuThread
->AppendSeparator();
391 menuThread
->Append(THREAD_START_WORKER
, _T("Start &worker thread\tCtrl-W"));
392 menuBar
->Append(menuThread
, _T("&Thread"));
394 wxMenu
*menuExec
= new wxMenu
;
395 menuExec
->Append(THREAD_EXEC_MAIN
, _T("&Launch a program from main thread\tF5"));
396 menuExec
->Append(THREAD_EXEC_THREAD
, _T("L&aunch a program from a thread\tCtrl-F5"));
397 menuBar
->Append(menuExec
, _T("&Execute"));
399 wxMenu
*menuHelp
= new wxMenu
;
400 menuHelp
->Append(THREAD_SHOWCPUS
, _T("&Show CPU count"));
401 menuHelp
->AppendSeparator();
402 menuHelp
->Append(THREAD_ABOUT
, _T("&About..."));
403 menuBar
->Append(menuHelp
, _T("&Help"));
405 frame
->SetMenuBar(menuBar
);
415 // My frame constructor
416 MyFrame::MyFrame(wxFrame
*frame
, const wxString
& title
,
417 int x
, int y
, int w
, int h
)
418 : wxFrame(frame
, -1, title
, wxPoint(x
, y
), wxSize(w
, h
))
420 m_nRunning
= m_nCount
= 0;
422 m_dlgProgress
= (wxProgressDialog
*)NULL
;
426 m_txtctrl
= new wxTextCtrl(this, -1, _T(""), wxPoint(0, 0), wxSize(0, 0),
427 wxTE_MULTILINE
| wxTE_READONLY
);
431 MyThread
*MyFrame::CreateThread()
433 MyThread
*thread
= new MyThread(this);
435 if ( thread
->Create() != wxTHREAD_NO_ERROR
)
437 wxLogError(wxT("Can't create thread!"));
440 wxCriticalSectionLocker
enter(wxGetApp().m_critsect
);
441 wxGetApp().m_threads
.Add(thread
);
446 void MyFrame::OnStartThreads(wxCommandEvent
& WXUNUSED(event
) )
448 static long s_num
= 10;
450 s_num
= wxGetNumberFromUser(_T("How many threads to start: "), _T(""),
451 _T("wxThread sample"), s_num
, 1, 10000, this);
459 size_t count
= (size_t)s_num
, n
;
461 wxArrayThread threads
;
463 // first create them all...
464 for ( n
= 0; n
< count
; n
++ )
466 wxThread
*thr
= CreateThread();
468 // we want to show the effect of SetPriority(): the first thread will
469 // have the lowest priority, the second - the highest, all the rest
472 thr
->SetPriority(WXTHREAD_MIN_PRIORITY
);
474 thr
->SetPriority(WXTHREAD_MAX_PRIORITY
);
476 thr
->SetPriority(WXTHREAD_DEFAULT_PRIORITY
);
482 msg
.Printf(wxT("%d new threads created."), count
);
483 SetStatusText(msg
, 1);
485 // ...and then start them
486 for ( n
= 0; n
< count
; n
++ )
492 void MyFrame::OnStartThread(wxCommandEvent
& WXUNUSED(event
) )
494 MyThread
*thread
= CreateThread();
496 if ( thread
->Run() != wxTHREAD_NO_ERROR
)
498 wxLogError(wxT("Can't start thread!"));
501 SetStatusText(_T("New thread started."), 1);
504 void MyFrame::OnStopThread(wxCommandEvent
& WXUNUSED(event
) )
506 wxGetApp().m_critsect
.Enter();
508 // stop the last thread
509 if ( wxGetApp().m_threads
.IsEmpty() )
511 wxLogError(wxT("No thread to stop!"));
513 wxGetApp().m_critsect
.Leave();
517 wxThread
*thread
= wxGetApp().m_threads
.Last();
519 // it's important to leave critical section before calling Delete()
520 // because delete will (implicitly) call OnExit() which also tries
521 // to enter the same crit section - would dead lock.
522 wxGetApp().m_critsect
.Leave();
526 SetStatusText(_T("Thread stopped."), 1);
530 void MyFrame::OnResumeThread(wxCommandEvent
& WXUNUSED(event
) )
532 wxCriticalSectionLocker
enter(wxGetApp().m_critsect
);
534 // resume first suspended thread
535 size_t n
= 0, count
= wxGetApp().m_threads
.Count();
536 while ( n
< count
&& !wxGetApp().m_threads
[n
]->IsPaused() )
541 wxLogError(wxT("No thread to resume!"));
545 wxGetApp().m_threads
[n
]->Resume();
547 SetStatusText(_T("Thread resumed."), 1);
551 void MyFrame::OnPauseThread(wxCommandEvent
& WXUNUSED(event
) )
553 wxCriticalSectionLocker
enter(wxGetApp().m_critsect
);
555 // pause last running thread
556 int n
= wxGetApp().m_threads
.Count() - 1;
557 while ( n
>= 0 && !wxGetApp().m_threads
[n
]->IsRunning() )
562 wxLogError(wxT("No thread to pause!"));
566 wxGetApp().m_threads
[n
]->Pause();
568 SetStatusText(_T("Thread paused."), 1);
572 // set the frame title indicating the current number of threads
573 void MyFrame::OnIdle(wxIdleEvent
& event
)
575 wxCriticalSectionLocker
enter(wxGetApp().m_critsect
);
577 // update the counts of running/total threads
579 nCount
= wxGetApp().m_threads
.Count();
580 for ( size_t n
= 0; n
< nCount
; n
++ )
582 if ( wxGetApp().m_threads
[n
]->IsRunning() )
586 if ( nCount
!= m_nCount
|| nRunning
!= m_nRunning
)
588 m_nRunning
= nRunning
;
591 wxLogStatus(this, wxT("%u threads total, %u running."), nCount
, nRunning
);
593 //else: avoid flicker - don't print anything
598 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
) )
600 // NB: although the OS will terminate all the threads anyhow when the main
601 // one exits, it's good practice to do it ourselves -- even if it's not
602 // completely trivial in this example
604 // tell all the threads to terminate: note that they can't terminate while
605 // we're deleting them because they will block in their OnExit() -- this is
606 // important as otherwise we might access invalid array elements
610 wxGetApp().m_critsect
.Enter();
612 // check if we have any threads running first
613 const wxArrayThread
& threads
= wxGetApp().m_threads
;
614 size_t count
= threads
.GetCount();
618 // set the flag for MyThread::OnExit()
619 wxGetApp().m_waitingUntilAllDone
= TRUE
;
622 while ( ! threads
.IsEmpty() )
624 thread
= threads
.Last();
626 wxGetApp().m_critsect
.Leave();
630 wxGetApp().m_critsect
.Enter();
634 wxGetApp().m_critsect
.Leave();
638 // now wait for them to really terminate
639 wxGetApp().m_semAllDone
.Wait();
641 //else: no threads to terminate, no condition to wait for
647 void MyFrame::OnExecMain(wxCommandEvent
& WXUNUSED(event
))
649 wxLogMessage(wxT("The exit code from the main program is %ld"),
650 EXEC(_T("/bin/echo \"main program\"")));
653 void MyFrame::OnExecThread(wxCommandEvent
& WXUNUSED(event
))
655 MyExecThread
thread(wxT("/bin/echo \"child thread\""));
658 wxLogMessage(wxT("The exit code from a child thread is %ld"),
659 (long)thread
.Wait());
662 void MyFrame::OnShowCPUs(wxCommandEvent
& WXUNUSED(event
))
666 int nCPUs
= wxThread::GetCPUCount();
670 msg
= _T("Unknown number of CPUs");
674 msg
= _T("WARNING: you're running without any CPUs!");
678 msg
= _T("This system only has one CPU.");
682 msg
.Printf(wxT("This system has %d CPUs"), nCPUs
);
688 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
) )
690 wxMessageDialog
dialog(this,
691 _T("wxWindows multithreaded application sample\n")
692 _T("(c) 1998 Julian Smart, Guilhem Lavaux\n")
693 _T("(c) 1999 Vadim Zeitlin\n")
694 _T("(c) 2000 Robert Roebling"),
695 _T("About wxThread sample"),
696 wxOK
| wxICON_INFORMATION
);
701 void MyFrame::OnClear(wxCommandEvent
& WXUNUSED(event
))
706 void MyFrame::OnUpdateWorker(wxUpdateUIEvent
& event
)
708 event
.Enable( m_dlgProgress
== NULL
);
711 void MyFrame::OnStartWorker(wxCommandEvent
& WXUNUSED(event
))
713 MyWorkerThread
*thread
= new MyWorkerThread(this);
715 if ( thread
->Create() != wxTHREAD_NO_ERROR
)
717 wxLogError(wxT("Can't create thread!"));
720 m_dlgProgress
= new wxProgressDialog
722 _T("Progress dialog"),
723 _T("Wait until the thread terminates or press [Cancel]"),
729 wxPD_ESTIMATED_TIME
|
733 // thread is not running yet, no need for crit sect
739 void MyFrame::OnWorkerEvent(wxCommandEvent
& event
)
742 WriteText( _T("Got message from worker thread: ") );
743 WriteText( event
.GetString() );
744 WriteText( _T("\n") );
746 int n
= event
.GetInt();
749 m_dlgProgress
->Destroy();
750 m_dlgProgress
= (wxProgressDialog
*)NULL
;
752 // the dialog is aborted because the event came from another thread, so
753 // we may need to wake up the main event loop for the dialog to be
759 if ( !m_dlgProgress
->Update(n
) )
761 wxCriticalSectionLocker
lock(m_critsectWork
);
769 bool MyFrame::Cancelled()
771 wxCriticalSectionLocker
lock(m_critsectWork
);