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
24 /* otherwise we get undefined references for non-thread case (KB)*/
26 #pragma interface "thread.h"
29 // Windows headers define it
34 #include "wx/module.h"
36 // ----------------------------------------------------------------------------
38 // ----------------------------------------------------------------------------
43 wxMUTEX_DEAD_LOCK
, // Mutex has been already locked by THE CALLING thread
44 wxMUTEX_BUSY
, // Mutex has been already locked by ONE thread
51 wxTHREAD_NO_ERROR
= 0, // No error
52 wxTHREAD_NO_RESOURCE
, // No resource left to create a new thread
53 wxTHREAD_RUNNING
, // The thread is already running
54 wxTHREAD_NOT_RUNNING
, // The thread isn't running
55 wxTHREAD_MISC_ERROR
// Some other error
58 // defines the interval of priority
59 #define WXTHREAD_MIN_PRIORITY 0u
60 #define WXTHREAD_DEFAULT_PRIORITY 50u
61 #define WXTHREAD_MAX_PRIORITY 100u
63 // ----------------------------------------------------------------------------
64 // A mutex object is a synchronization object whose state is set to signaled
65 // when it is not owned by any thread, and nonsignaled when it is owned. Its
66 // name comes from its usefulness in coordinating mutually-exclusive access to
67 // a shared resource. Only one thread at a time can own a mutex object.
68 // ----------------------------------------------------------------------------
70 // you should consider wxMutexLocker whenever possible instead of directly
71 // working with wxMutex class - it is safer
72 class WXDLLEXPORT wxMutexInternal
;
73 class WXDLLEXPORT wxMutex
76 // constructor & destructor
82 // Try to lock the mutex: if it can't, returns immediately with an error.
83 wxMutexError
TryLock();
85 wxMutexError
Unlock();
87 // Returns true if the mutex is locked.
88 bool IsLocked() const { return (m_locked
> 0); }
91 friend class wxCondition
;
93 // no assignment operator nor copy ctor
94 wxMutex(const wxMutex
&);
95 wxMutex
& operator=(const wxMutex
&);
98 wxMutexInternal
*p_internal
;
101 // a helper class which locks the mutex in the ctor and unlocks it in the dtor:
102 // this ensures that mutex is always unlocked, even if the function returns or
103 // throws an exception before it reaches the end
104 class WXDLLEXPORT wxMutexLocker
107 // lock the mutex in the ctor
108 wxMutexLocker(wxMutex
& mutex
) : m_mutex(mutex
)
109 { m_isOk
= m_mutex
.Lock() == wxMUTEX_NO_ERROR
; }
111 // returns TRUE if mutex was successfully locked in ctor
115 // unlock the mutex in dtor
117 { if ( IsOk() ) m_mutex
.Unlock(); }
120 // no assignment operator nor copy ctor
121 wxMutexLocker(const wxMutexLocker
&);
122 wxMutexLocker
& operator=(const wxMutexLocker
&);
128 // ----------------------------------------------------------------------------
129 // Critical section: this is the same as mutex but is only visible to the
130 // threads of the same process. For the platforms which don't have native
131 // support for critical sections, they're implemented entirely in terms of
133 // ----------------------------------------------------------------------------
135 // in order to avoid any overhead under !MSW make all wxCriticalSection class
136 // functions inline - but this can't be done under MSW
137 #if defined(__WXMSW__)
138 class WXDLLEXPORT wxCriticalSectionInternal
;
139 #define WXCRITICAL_INLINE
140 #elif defined(__WXPM__)
141 #define WXCRITICAL_INLINE
143 #define WXCRITICAL_INLINE inline
146 // you should consider wxCriticalSectionLocker whenever possible instead of
147 // directly working with wxCriticalSection class - it is safer
148 class WXDLLEXPORT wxCriticalSection
152 WXCRITICAL_INLINE
wxCriticalSection();
153 WXCRITICAL_INLINE
~wxCriticalSection();
155 // enter the section (the same as locking a mutex)
156 WXCRITICAL_INLINE
void Enter();
157 // leave the critical section (same as unlocking a mutex)
158 WXCRITICAL_INLINE
void Leave();
161 // no assignment operator nor copy ctor
162 wxCriticalSection(const wxCriticalSection
&);
163 wxCriticalSection
& operator=(const wxCriticalSection
&);
165 #if defined(__WXMSW__)
166 wxCriticalSectionInternal
*m_critsect
;
172 // keep your preprocessor name space clean
173 #undef WXCRITICAL_INLINE
175 // wxCriticalSectionLocker is the same to critical sections as wxMutexLocker is
177 class WXDLLEXPORT wxCriticalSectionLocker
180 wxCriticalSectionLocker(wxCriticalSection
& critsect
) : m_critsect(critsect
)
181 { m_critsect
.Enter(); }
182 ~wxCriticalSectionLocker()
183 { m_critsect
.Leave(); }
186 // no assignment operator nor copy ctor
187 wxCriticalSectionLocker(const wxCriticalSectionLocker
&);
188 wxCriticalSectionLocker
& operator=(const wxCriticalSectionLocker
&);
190 wxCriticalSection
& m_critsect
;
193 // ----------------------------------------------------------------------------
194 // Condition handler.
195 // ----------------------------------------------------------------------------
197 class wxConditionInternal
;
198 class WXDLLEXPORT wxCondition
201 // constructor & destructor
205 // Waits indefinitely.
206 void Wait(wxMutex
& mutex
);
207 // Waits until a signal is raised or the timeout is elapsed.
208 bool Wait(wxMutex
& mutex
, unsigned long sec
, unsigned long nsec
);
209 // Raises a signal: only one "Waiter" is released.
211 // Broadcasts to all "Waiters".
215 wxConditionInternal
*p_internal
;
218 // ----------------------------------------------------------------------------
219 // Thread management class
220 // ----------------------------------------------------------------------------
222 // FIXME Thread termination model is still unclear. Delete() should probably
223 // have a timeout after which the thread must be Kill()ed.
225 // NB: in the function descriptions the words "this thread" mean the thread
226 // created by the wxThread object while "main thread" is the thread created
227 // during the process initialization (a.k.a. the GUI thread)
228 class wxThreadInternal
;
229 class WXDLLEXPORT wxThread
232 // the return type for the thread function
233 typedef void *ExitCode
;
236 // Returns the wxThread object for the calling thread. NULL is returned
237 // if the caller is the main thread (but it's recommended to use
238 // IsMain() and only call This() for threads other than the main one
239 // because NULL is also returned on error). If the thread wasn't
240 // created with wxThread class, the returned value is undefined.
241 static wxThread
*This();
243 // Returns true if current thread is the main thread.
244 static bool IsMain();
246 // Release the rest of our time slice leting the other threads run
249 // Sleep during the specified period of time in milliseconds
251 // NB: at least under MSW worker threads can not call ::wxSleep()!
252 static void Sleep(unsigned long milliseconds
);
254 // default constructor
257 // function that change the thread state
258 // create a new thread - call Run() to start it
259 wxThreadError
Create();
261 // starts execution of the thread - from the moment Run() is called the
262 // execution of wxThread::Entry() may start at any moment, caller
263 // shouldn't suppose that it starts after (or before) Run() returns.
266 // stops the thread if it's running and deletes the wxThread object
267 // freeing its memory. This function should also be called if the
268 // Create() or Run() fails to free memory (otherwise it will be done by
269 // the thread itself when it terminates). The return value is the
270 // thread exit code if the thread was gracefully terminated, 0 if it
271 // wasn't running and -1 if an error occured.
274 // kills the thread without giving it any chance to clean up - should
275 // not be used in normal circumstances, use Delete() instead. It is a
276 // dangerous function that should only be used in the most extreme
277 // cases! The wxThread object is deleted by Kill() if thread was
278 // killed (i.e. no errors occured).
279 wxThreadError
Kill();
281 // pause a running thread
282 wxThreadError
Pause();
284 // resume a paused thread
285 wxThreadError
Resume();
288 // Sets the priority to "prio": see WXTHREAD_XXX_PRIORITY constants
290 // NB: the priority can only be set before the thread is created
291 void SetPriority(unsigned int prio
);
293 // Get the current priority.
294 unsigned int GetPriority() const;
296 // Get the thread ID - a platform dependent number which uniquely
297 // identifies a thread inside a process
298 unsigned long GetID() const;
300 // thread status inquiries
301 // Returns true if the thread is alive: i.e. running or suspended
302 bool IsAlive() const;
303 // Returns true if the thread is running (not paused, not killed).
304 bool IsRunning() const;
305 // Returns true if the thread is suspended
306 bool IsPaused() const;
308 // called when the thread exits - in the context of this thread
310 // NB: this function will not be called if the thread is Kill()ed
311 virtual void OnExit() { }
314 // Returns TRUE if the thread was asked to terminate: this function should
315 // be called by the thread from time to time, otherwise the main thread
316 // will be left forever in Delete()!
319 // exits from the current thread - can be called only from this thread
320 void Exit(void *exitcode
= 0);
322 // destructor is private - user code can't delete thread objects, they will
323 // auto-delete themselves (and thus must be always allocated on the heap).
324 // Use Delete() or Kill() instead.
326 // NB: derived classes dtors shouldn't be public neither!
329 // entry point for the thread - called by Run() and executes in the context
331 virtual void *Entry() = 0;
334 // no copy ctor/assignment operator
335 wxThread(const wxThread
&);
336 wxThread
& operator=(const wxThread
&);
338 friend class wxThreadInternal
;
340 // the (platform-dependent) thread class implementation
341 wxThreadInternal
*p_internal
;
343 // protects access to any methods of wxThreadInternal object
344 wxCriticalSection m_critsect
;
347 // ----------------------------------------------------------------------------
348 // Automatic initialization
349 // ----------------------------------------------------------------------------
351 // GUI mutex handling.
352 void WXDLLEXPORT
wxMutexGuiEnter();
353 void WXDLLEXPORT
wxMutexGuiLeave();
355 // macros for entering/leaving critical sections which may be used without
356 // having to take them inside "#if wxUSE_THREADS"
357 #define wxENTER_CRIT_SECT(cs) (cs)->Enter()
358 #define wxLEAVE_CRIT_SECT(cs) (cs)->Leave()
359 #define wxCRIT_SECT_LOCKER(name, cs) wxCriticalSectionLocker name(*cs)
361 #else // !wxUSE_THREADS
363 #include "wx/defs.h" // for WXDLLEXPORT
366 inline void WXDLLEXPORT
wxMutexGuiEnter() { }
367 inline void WXDLLEXPORT
wxMutexGuiLeave() { }
369 // macros for entering/leaving critical sections which may be used without
370 // having to take them inside "#if wxUSE_THREADS"
371 #define wxENTER_CRIT_SECT(cs)
372 #define wxLEAVE_CRIT_SECT(cs)
373 #define wxCRIT_SECT_LOCKER(name, cs)
375 #endif // wxUSE_THREADS
377 // automatically unlock GUI mutex in dtor
378 class WXDLLEXPORT wxMutexGuiLocker
381 wxMutexGuiLocker() { wxMutexGuiEnter(); }
382 ~wxMutexGuiLocker() { wxMutexGuiLeave(); }
385 // -----------------------------------------------------------------------------
386 // implementation only until the end of file
387 // -----------------------------------------------------------------------------
389 #if defined(__WXMSW__)
390 // unlock GUI if there are threads waiting for and lock it back when
391 // there are no more of them - should be called periodically by the main
393 extern void WXDLLEXPORT
wxMutexGuiLeaveOrEnter();
395 // returns TRUE if the main thread has GUI lock
396 extern bool WXDLLEXPORT
wxGuiOwnedByMainThread();
398 // wakes up the main thread if it's sleeping inside ::GetMessage()
399 extern void WXDLLEXPORT
wxWakeUpMainThread();
401 // return TRUE if the main thread is waiting for some other to terminate:
402 // wxApp then should block all "dangerous" messages
403 extern bool WXDLLEXPORT
wxIsWaitingForThread();
404 #elif defined(__WXPM__)
405 // unlock GUI if there are threads waiting for and lock it back when
406 // there are no more of them - should be called periodically by the main
408 extern void WXDLLEXPORT
wxMutexGuiLeaveOrEnter();
410 // returns TRUE if the main thread has GUI lock
411 extern bool WXDLLEXPORT
wxGuiOwnedByMainThread();
413 inline wxCriticalSection::wxCriticalSection() { }
414 inline wxCriticalSection::~wxCriticalSection() { }
416 // implement wxCriticalSection using mutexes
417 inline wxCriticalSection::wxCriticalSection() { }
418 inline wxCriticalSection::~wxCriticalSection() { }
420 inline void wxCriticalSection::Enter() { (void)m_mutex
.Lock(); }
421 inline void wxCriticalSection::Leave() { (void)m_mutex
.Unlock(); }
423 #endif // wxUSE_THREADS
425 #endif // __THREADH__