1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Guilhem Lavaux
5 // Modified by: Vadim Zeitlin (modifications partly inspired by omnithreads
6 // package from Olivetti & Oracle Research Laboratory)
9 // Copyright: (c) Guilhem Lavaux
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // get the value of wxUSE_THREADS configuration flag
25 // only for wxUSE_THREADS - otherwise we'd get undefined symbols
27 #pragma interface "thread.h"
30 // Windows headers define it
35 #include "wx/module.h"
37 // ----------------------------------------------------------------------------
39 // ----------------------------------------------------------------------------
44 wxMUTEX_DEAD_LOCK
, // Mutex has been already locked by THE CALLING thread
45 wxMUTEX_BUSY
, // Mutex has been already locked by ONE thread
52 wxTHREAD_NO_ERROR
= 0, // No error
53 wxTHREAD_NO_RESOURCE
, // No resource left to create a new thread
54 wxTHREAD_RUNNING
, // The thread is already running
55 wxTHREAD_NOT_RUNNING
, // The thread isn't running
56 wxTHREAD_KILLED
, // Thread we waited for had to be killed
57 wxTHREAD_MISC_ERROR
// Some other error
66 // defines the interval of priority
69 WXTHREAD_MIN_PRIORITY
= 0u,
70 WXTHREAD_DEFAULT_PRIORITY
= 50u,
71 WXTHREAD_MAX_PRIORITY
= 100u
74 // ----------------------------------------------------------------------------
75 // A mutex object is a synchronization object whose state is set to signaled
76 // when it is not owned by any thread, and nonsignaled when it is owned. Its
77 // name comes from its usefulness in coordinating mutually-exclusive access to
78 // a shared resource. Only one thread at a time can own a mutex object.
79 // ----------------------------------------------------------------------------
81 // you should consider wxMutexLocker whenever possible instead of directly
82 // working with wxMutex class - it is safer
83 class WXDLLEXPORT wxMutexInternal
;
84 class WXDLLEXPORT wxMutex
87 // constructor & destructor
93 // Try to lock the mutex: if it can't, returns immediately with an error.
94 wxMutexError
TryLock();
96 wxMutexError
Unlock();
98 // Returns true if the mutex is locked.
99 bool IsLocked() const { return (m_locked
> 0); }
102 friend class wxCondition
;
104 // no assignment operator nor copy ctor
105 wxMutex(const wxMutex
&);
106 wxMutex
& operator=(const wxMutex
&);
109 wxMutexInternal
*m_internal
;
112 // a helper class which locks the mutex in the ctor and unlocks it in the dtor:
113 // this ensures that mutex is always unlocked, even if the function returns or
114 // throws an exception before it reaches the end
115 class WXDLLEXPORT wxMutexLocker
118 // lock the mutex in the ctor
119 wxMutexLocker(wxMutex
& mutex
) : m_mutex(mutex
)
120 { m_isOk
= m_mutex
.Lock() == wxMUTEX_NO_ERROR
; }
122 // returns TRUE if mutex was successfully locked in ctor
126 // unlock the mutex in dtor
128 { if ( IsOk() ) m_mutex
.Unlock(); }
131 // no assignment operator nor copy ctor
132 wxMutexLocker(const wxMutexLocker
&);
133 wxMutexLocker
& operator=(const wxMutexLocker
&);
139 // ----------------------------------------------------------------------------
140 // Critical section: this is the same as mutex but is only visible to the
141 // threads of the same process. For the platforms which don't have native
142 // support for critical sections, they're implemented entirely in terms of
145 // NB: wxCriticalSection object does not allocate any memory in its ctor
146 // which makes it possible to have static globals of this class
147 // ----------------------------------------------------------------------------
149 class WXDLLEXPORT wxCriticalSectionInternal
;
151 // in order to avoid any overhead under platforms where critical sections are
152 // just mutexes make all wxCriticalSection class functions inline
153 #if !defined(__WXMSW__) && !defined(__WXPM__)
154 #define WXCRITICAL_INLINE inline
156 #define wxCRITSECT_IS_MUTEX 1
158 #define WXCRITICAL_INLINE
160 #define wxCRITSECT_IS_MUTEX 0
163 // you should consider wxCriticalSectionLocker whenever possible instead of
164 // directly working with wxCriticalSection class - it is safer
165 class WXDLLEXPORT wxCriticalSection
169 WXCRITICAL_INLINE
wxCriticalSection();
170 WXCRITICAL_INLINE
~wxCriticalSection();
172 // enter the section (the same as locking a mutex)
173 WXCRITICAL_INLINE
void Enter();
174 // leave the critical section (same as unlocking a mutex)
175 WXCRITICAL_INLINE
void Leave();
178 // no assignment operator nor copy ctor
179 wxCriticalSection(const wxCriticalSection
&);
180 wxCriticalSection
& operator=(const wxCriticalSection
&);
182 #if wxCRITSECT_IS_MUTEX
184 #elif defined(__WXMSW__)
185 // we can't allocate any memory in the ctor, so use placement new -
186 // unfortunately, we have to hardcode the sizeof() here because we can't
187 // include windows.h from this public header
189 #elif !defined(__WXPM__)
190 wxCriticalSectionInternal
*m_critsect
;
196 // keep your preprocessor name space clean
197 #undef WXCRITICAL_INLINE
199 // wxCriticalSectionLocker is the same to critical sections as wxMutexLocker is
201 class WXDLLEXPORT wxCriticalSectionLocker
204 inline wxCriticalSectionLocker(wxCriticalSection
& critsect
);
205 inline ~wxCriticalSectionLocker();
208 // no assignment operator nor copy ctor
209 wxCriticalSectionLocker(const wxCriticalSectionLocker
&);
210 wxCriticalSectionLocker
& operator=(const wxCriticalSectionLocker
&);
212 wxCriticalSection
& m_critsect
;
215 // ----------------------------------------------------------------------------
216 // Condition variable: allows to block the thread execution until something
217 // happens (== condition is signaled)
218 // ----------------------------------------------------------------------------
220 class wxConditionInternal
;
221 class WXDLLEXPORT wxCondition
224 // constructor & destructor
228 // wait until the condition is signaled
229 // waits indefinitely.
231 // waits until a signal is raised or the timeout elapses
232 bool Wait(unsigned long sec
, unsigned long nsec
);
234 // signal the condition
235 // wakes up one (and only one) of the waiting threads
237 // wakes up all threads waiting on this condition
241 wxConditionInternal
*m_internal
;
244 // ----------------------------------------------------------------------------
246 // ----------------------------------------------------------------------------
248 // there are two different kinds of threads: joinable and detached (default)
249 // ones. Only joinable threads can return a return code and only detached
250 // threads auto-delete themselves - the user should delete the joinable
253 // NB: in the function descriptions the words "this thread" mean the thread
254 // created by the wxThread object while "main thread" is the thread created
255 // during the process initialization (a.k.a. the GUI thread)
257 // On VMS thread pointers are 64 bits (also needed for other systems???
259 typedef unsigned long long wxThreadIdType
;
261 typedef unsigned long wxThreadIdType
;
264 class wxThreadInternal
;
265 class WXDLLEXPORT wxThread
268 // the return type for the thread function
269 typedef void *ExitCode
;
272 // Returns the wxThread object for the calling thread. NULL is returned
273 // if the caller is the main thread (but it's recommended to use
274 // IsMain() and only call This() for threads other than the main one
275 // because NULL is also returned on error). If the thread wasn't
276 // created with wxThread class, the returned value is undefined.
277 static wxThread
*This();
279 // Returns true if current thread is the main thread.
280 static bool IsMain();
282 // Release the rest of our time slice leting the other threads run
285 // Sleep during the specified period of time in milliseconds
287 // NB: at least under MSW worker threads can not call ::wxSleep()!
288 static void Sleep(unsigned long milliseconds
);
290 // get the number of system CPUs - useful with SetConcurrency()
291 // (the "best" value for it is usually number of CPUs + 1)
293 // Returns -1 if unknown, number of CPUs otherwise
294 static int GetCPUCount();
296 // Get the platform specific thread ID and return as a long. This
297 // can be used to uniquely identify threads, even if they are not
298 // wxThreads. This is used by wxPython.
299 static wxThreadIdType
GetCurrentId();
301 // sets the concurrency level: this is, roughly, the number of threads
302 // the system tries to schedule to run in parallel. 0 means the
303 // default value (usually acceptable, but may not yield the best
304 // performance for this process)
306 // Returns TRUE on success, FALSE otherwise (if not implemented, for
308 static bool SetConcurrency(size_t level
);
310 // constructor only creates the C++ thread object and doesn't create (or
311 // start) the real thread
312 wxThread(wxThreadKind kind
= wxTHREAD_DETACHED
);
314 // functions that change the thread state: all these can only be called
315 // from _another_ thread (typically the thread that created this one, e.g.
316 // the main thread), not from the thread itself
318 // create a new thread and optionally set the stack size on
319 // platforms that support that - call Run() to start it
320 // (special cased for watcom which won't accept 0 default)
322 wxThreadError
Create(unsigned int stackSize
= 0);
324 // starts execution of the thread - from the moment Run() is called
325 // the execution of wxThread::Entry() may start at any moment, caller
326 // shouldn't suppose that it starts after (or before) Run() returns.
329 // stops the thread if it's running and deletes the wxThread object if
330 // this is a detached thread freeing its memory - otherwise (for
331 // joinable threads) you still need to delete wxThread object
334 // this function only works if the thread calls TestDestroy()
335 // periodically - the thread will only be deleted the next time it
338 // will fill the rc pointer with the thread exit code if it's !NULL
339 wxThreadError
Delete(ExitCode
*rc
= (ExitCode
*)NULL
);
341 // waits for a joinable thread to finish and returns its exit code
343 // Returns (ExitCode)-1 on error (for example, if the thread is not
347 // kills the thread without giving it any chance to clean up - should
348 // not be used in normal circumstances, use Delete() instead. It is a
349 // dangerous function that should only be used in the most extreme
352 // The wxThread object is deleted by Kill() if the thread is
353 // detachable, but you still have to delete it manually for joinable
355 wxThreadError
Kill();
357 // pause a running thread: as Delete(), this only works if the thread
358 // calls TestDestroy() regularly
359 wxThreadError
Pause();
361 // resume a paused thread
362 wxThreadError
Resume();
365 // Sets the priority to "prio": see WXTHREAD_XXX_PRIORITY constants
367 // NB: the priority can only be set before the thread is created
368 void SetPriority(unsigned int prio
);
370 // Get the current priority.
371 unsigned int GetPriority() const;
373 // thread status inquiries
374 // Returns true if the thread is alive: i.e. running or suspended
375 bool IsAlive() const;
376 // Returns true if the thread is running (not paused, not killed).
377 bool IsRunning() const;
378 // Returns true if the thread is suspended
379 bool IsPaused() const;
381 // is the thread of detached kind?
382 bool IsDetached() const { return m_isDetached
; }
384 // Get the thread ID - a platform dependent number which uniquely
385 // identifies a thread inside a process
386 wxThreadIdType
GetId() const;
388 // called when the thread exits - in the context of this thread
390 // NB: this function will not be called if the thread is Kill()ed
391 virtual void OnExit() { }
393 // dtor is public, but the detached threads should never be deleted - use
394 // Delete() instead (or leave the thread terminate by itself)
398 // Returns TRUE if the thread was asked to terminate: this function should
399 // be called by the thread from time to time, otherwise the main thread
400 // will be left forever in Delete()!
403 // exits from the current thread - can be called only from this thread
404 void Exit(ExitCode exitcode
= 0);
406 // entry point for the thread - called by Run() and executes in the context
408 virtual void *Entry() = 0;
411 // no copy ctor/assignment operator
412 wxThread(const wxThread
&);
413 wxThread
& operator=(const wxThread
&);
415 friend class wxThreadInternal
;
417 // the (platform-dependent) thread class implementation
418 wxThreadInternal
*m_internal
;
420 // protects access to any methods of wxThreadInternal object
421 wxCriticalSection m_critsect
;
423 // true if the thread is detached, false if it is joinable
427 // ----------------------------------------------------------------------------
428 // Automatic initialization
429 // ----------------------------------------------------------------------------
431 // GUI mutex handling.
432 void WXDLLEXPORT
wxMutexGuiEnter();
433 void WXDLLEXPORT
wxMutexGuiLeave();
435 // macros for entering/leaving critical sections which may be used without
436 // having to take them inside "#if wxUSE_THREADS"
437 #define wxENTER_CRIT_SECT(cs) (cs).Enter()
438 #define wxLEAVE_CRIT_SECT(cs) (cs).Leave()
439 #define wxCRIT_SECT_DECLARE(cs) static wxCriticalSection cs
440 #define wxCRIT_SECT_LOCKER(name, cs) wxCriticalSectionLocker name(cs)
442 #else // !wxUSE_THREADS
444 #include "wx/defs.h" // for WXDLLEXPORT
447 inline void WXDLLEXPORT
wxMutexGuiEnter() { }
448 inline void WXDLLEXPORT
wxMutexGuiLeave() { }
450 // macros for entering/leaving critical sections which may be used without
451 // having to take them inside "#if wxUSE_THREADS"
452 #define wxENTER_CRIT_SECT(cs)
453 #define wxLEAVE_CRIT_SECT(cs)
454 #define wxCRIT_SECT_DECLARE(cs)
455 #define wxCRIT_SECT_LOCKER(name, cs)
457 #endif // wxUSE_THREADS
459 // automatically unlock GUI mutex in dtor
460 class WXDLLEXPORT wxMutexGuiLocker
463 wxMutexGuiLocker() { wxMutexGuiEnter(); }
464 ~wxMutexGuiLocker() { wxMutexGuiLeave(); }
467 // -----------------------------------------------------------------------------
468 // implementation only until the end of file
469 // -----------------------------------------------------------------------------
473 #if defined(__WXMSW__)
474 // unlock GUI if there are threads waiting for and lock it back when
475 // there are no more of them - should be called periodically by the main
477 extern void WXDLLEXPORT
wxMutexGuiLeaveOrEnter();
479 // returns TRUE if the main thread has GUI lock
480 extern bool WXDLLEXPORT
wxGuiOwnedByMainThread();
482 // wakes up the main thread if it's sleeping inside ::GetMessage()
483 extern void WXDLLEXPORT
wxWakeUpMainThread();
485 // return TRUE if the main thread is waiting for some other to terminate:
486 // wxApp then should block all "dangerous" messages
487 extern bool WXDLLEXPORT
wxIsWaitingForThread();
488 #elif defined(__WXMAC__)
489 extern void WXDLLEXPORT
wxMutexGuiLeaveOrEnter();
491 // returns TRUE if the main thread has GUI lock
492 extern bool WXDLLEXPORT
wxGuiOwnedByMainThread();
494 // wakes up the main thread if it's sleeping inside ::GetMessage()
495 extern void WXDLLEXPORT
wxWakeUpMainThread();
497 // return TRUE if the main thread is waiting for some other to terminate:
498 // wxApp then should block all "dangerous" messages
499 extern bool WXDLLEXPORT
wxIsWaitingForThread();
501 // implement wxCriticalSection using mutexes
502 inline wxCriticalSection::wxCriticalSection() { }
503 inline wxCriticalSection::~wxCriticalSection() { }
505 inline void wxCriticalSection::Enter() { (void)m_mutex
.Lock(); }
506 inline void wxCriticalSection::Leave() { (void)m_mutex
.Unlock(); }
507 #elif defined(__WXPM__)
508 // unlock GUI if there are threads waiting for and lock it back when
509 // there are no more of them - should be called periodically by the main
511 extern void WXDLLEXPORT
wxMutexGuiLeaveOrEnter();
513 // returns TRUE if the main thread has GUI lock
514 extern bool WXDLLEXPORT
wxGuiOwnedByMainThread();
516 // return TRUE if the main thread is waiting for some other to terminate:
517 // wxApp then should block all "dangerous" messages
518 extern bool WXDLLEXPORT
wxIsWaitingForThread();
521 // implement wxCriticalSection using mutexes
522 inline wxCriticalSection::wxCriticalSection() { }
523 inline wxCriticalSection::~wxCriticalSection() { }
525 inline void wxCriticalSection::Enter() { (void)m_mutex
.Lock(); }
526 inline void wxCriticalSection::Leave() { (void)m_mutex
.Unlock(); }
529 // we can define these inline functions now (they should be defined after
530 // wxCriticalSection::Enter/Leave)
532 wxCriticalSectionLocker:: wxCriticalSectionLocker(wxCriticalSection
& cs
)
533 : m_critsect(cs
) { m_critsect
.Enter(); }
535 wxCriticalSectionLocker::~wxCriticalSectionLocker() { m_critsect
.Leave(); }
536 #endif // wxUSE_THREADS
538 #endif // __THREADH__