1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Guilhem Lavaux
8 // Copyright: (c) Guilhem Lavaux
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "thread.h"
19 // ----------------------------------------------------------------------------
21 // ----------------------------------------------------------------------------
25 #include "wx/module.h"
27 // ----------------------------------------------------------------------------
29 // ----------------------------------------------------------------------------
34 wxMUTEX_DEAD_LOCK
, // Mutex has been already locked by THE CALLING thread
35 wxMUTEX_BUSY
, // Mutex has been already locked by ONE thread
42 wxTHREAD_NO_ERROR
= 0, // No error
43 wxTHREAD_NO_RESOURCE
, // No resource left to create a new thread
44 wxTHREAD_RUNNING
, // The thread is already running
45 wxTHREAD_NOT_RUNNING
, // The thread isn't running
46 wxTHREAD_MISC_ERROR
// Some other error
49 /* defines the interval of priority. */
50 #define WXTHREAD_MIN_PRIORITY 0
51 #define WXTHREAD_DEFAULT_PRIORITY 50
52 #define WXTHREAD_MAX_PRIORITY 100
54 // ----------------------------------------------------------------------------
55 // A mutex object is a synchronization object whose state is set to signaled
56 // when it is not owned by any thread, and nonsignaled when it is owned. Its
57 // name comes from its usefulness in coordinating mutually-exclusive access to
58 // a shared resource. Only one thread at a time can own a mutex object.
59 // ----------------------------------------------------------------------------
61 // you should consider wxMutexLocker whenever possible instead of directly
62 // working with wxMutex class - it is safer
63 class WXDLLEXPORT wxMutexInternal
;
64 class WXDLLEXPORT wxMutex
67 // constructor & destructor
73 // Try to lock the mutex: if it can't, returns immediately with an error.
74 wxMutexError
TryLock();
76 wxMutexError
Unlock();
78 // Returns true if the mutex is locked.
79 bool IsLocked() const { return (m_locked
> 0); }
82 friend class wxCondition
;
85 wxMutexInternal
*p_internal
;
88 // a helper class which locks the mutex in the ctor and unlocks it in the dtor:
89 // this ensures that mutex is always unlocked, even if the function returns or
90 // throws an exception before it reaches the end
91 class WXDLLEXPORT wxMutexLocker
94 // lock the mutex in the ctor
95 wxMutexLocker(wxMutex
*mutex
)
96 { m_isOk
= mutex
&& ((m_mutex
= mutex
)->Lock() == wxMUTEX_NO_ERROR
); }
98 // returns TRUE if mutex was successfully locked in ctor
99 bool IsOk() const { return m_isOk
; }
101 // unlock the mutex in dtor
102 ~wxMutexLocker() { if ( IsOk() ) m_mutex
->Unlock(); }
111 // ----------------------------------------------------------------------------
112 // Critical section: this is the same as mutex but is only visible to the
113 // threads of the same process. For the platforms which don't have native
114 // support for critical sections, they're implemented entirely in terms of
116 // ----------------------------------------------------------------------------
118 // you should consider wxCriticalSectionLocker whenever possible instead of
119 // directly working with wxCriticalSection class - it is safer
120 class WXDLLEXPORT wxCriticalSectionInternal
;
121 class WXDLLEXPORT wxCriticalSection
126 ~wxCriticalSection();
128 // enter the section (the same as locking a mutex)
130 // leave the critical section (same as unlocking a mutex)
134 wxCriticalSectionInternal
*m_critsect
;
137 // wxCriticalSectionLocker is the same to critical sections as wxMutexLocker is
139 class WXDLLEXPORT wxCriticalSectionLocker
142 wxCriticalSectionLocker(wxCriticalSection
*critsect
)
143 { (m_critsect
= critsect
)->Enter(); }
144 ~wxCriticalSectionLocker()
145 { m_critsect
->Leave(); }
148 wxCriticalSection
*m_critsect
;
153 // ----------------------------------------------------------------------------
154 // Condition handler.
155 // ----------------------------------------------------------------------------
157 class wxConditionInternal
;
158 class WXDLLEXPORT wxCondition
161 // constructor & destructor
165 // Waits indefinitely.
166 void Wait(wxMutex
& mutex
);
167 // Waits until a signal is raised or the timeout is elapsed.
168 bool Wait(wxMutex
& mutex
, unsigned long sec
, unsigned long nsec
);
169 // Raises a signal: only one "Waiter" is released.
171 // Broadcasts to all "Waiters".
175 wxConditionInternal
*p_internal
;
178 // ----------------------------------------------------------------------------
179 // Thread management class
180 // ----------------------------------------------------------------------------
182 class wxThreadInternal
;
183 class WXDLLEXPORT wxThread
186 // constructor & destructor.
190 // Create a new thread, this method should check there is only one thread
191 // running by object.
192 wxThreadError
Create();
194 // Destroys the thread immediately if the defer flag isn't true.
195 wxThreadError
Destroy();
197 // Pause a running thread
198 wxThreadError
Pause();
200 // Resume a paused thread
201 wxThreadError
Resume();
203 // Switches on the defer flag.
204 void DeferDestroy(bool on
);
206 // Waits for the termination of the thread.
209 // Sets the priority to "prio". (Warning: The priority can only be set before
210 // the thread is created)
211 void SetPriority(int prio
);
212 // Get the current priority.
213 int GetPriority() const;
216 unsigned long GetID() const;
218 // Returns true if the thread is alive.
219 bool IsAlive() const;
220 // Returns true if the thread is running (not paused, not killed).
221 bool IsRunning() const;
222 // Returns true if the thread is suspended
223 bool IsPaused() const { return IsAlive() && !IsRunning(); }
225 // Returns true if current thread is the main thread (aka the GUI thread)
226 static bool IsMain();
228 // Called when thread exits.
229 virtual void OnExit();
232 // Returns TRUE if the thread was asked to terminate
235 // Exits from the current thread.
236 void Exit(void *status
= NULL
);
239 // Entry point for the thread.
240 virtual void *Entry() = 0;
243 friend class wxThreadInternal
;
245 wxThreadInternal
*p_internal
;
248 // ----------------------------------------------------------------------------
249 // Automatic initialization
250 // ----------------------------------------------------------------------------
252 // GUI mutex handling.
253 void WXDLLEXPORT
wxMutexGuiEnter();
254 void WXDLLEXPORT
wxMutexGuiLeave();
256 #else // !wxUSE_THREADS
259 inline void WXDLLEXPORT
wxMutexGuiEnter() { }
260 inline void WXDLLEXPORT
wxMutexGuiLeave() { }
262 #endif // wxUSE_THREADS
264 #endif // __THREADH__