1 /////////////////////////////////////////////////////////////////////////////
2 // Name: include/wx/thrimpl.cpp
3 // Purpose: common part of wxThread Implementations
4 // Author: Vadim Zeitlin
6 // Created: 04.06.02 (extracted from src/*/thread.cpp files)
8 // Copyright: (c) Vadim Zeitlin (2002)
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // this file is supposed to be included only by the various thread.cpp
14 // ----------------------------------------------------------------------------
16 // ----------------------------------------------------------------------------
18 wxMutex::wxMutex(wxMutexType mutexType
)
20 m_internal
= new wxMutexInternal(mutexType
);
22 if ( !m_internal
->IsOk() )
34 bool wxMutex::IsOk() const
36 return m_internal
!= NULL
;
39 wxMutexError
wxMutex::Lock()
41 wxCHECK_MSG( m_internal
, wxMUTEX_INVALID
,
42 _T("wxMutex::Lock(): not initialized") );
44 return m_internal
->Lock();
47 wxMutexError
wxMutex::TryLock()
49 wxCHECK_MSG( m_internal
, wxMUTEX_INVALID
,
50 _T("wxMutex::TryLock(): not initialized") );
52 return m_internal
->TryLock();
55 wxMutexError
wxMutex::Unlock()
57 wxCHECK_MSG( m_internal
, wxMUTEX_INVALID
,
58 _T("wxMutex::Unlock(): not initialized") );
60 return m_internal
->Unlock();
63 // --------------------------------------------------------------------------
64 // wxConditionInternal
65 // --------------------------------------------------------------------------
67 #if defined(__WXMSW__) || defined(__OS2__) || defined(__EMX__)
68 // Win32 and OS/2 don't have explicit support for the POSIX condition
69 // variables and their events/event semaphores have quite different semantics,
70 // so we reimplement the conditions from scratch using the mutexes and
72 #if defined(__OS2__) || defined(__EMX__)
73 void InterlockedIncrement(LONG
*num
)
81 class wxConditionInternal
84 wxConditionInternal(wxMutex
& mutex
);
86 bool IsOk() const { return m_mutex
.IsOk() && m_semaphore
.IsOk(); }
89 wxCondError
WaitTimeout(unsigned long milliseconds
);
92 wxCondError
Broadcast();
95 // the number of threads currently waiting for this condition
98 // the critical section protecting m_numWaiters
99 wxCriticalSection m_csWaiters
;
102 wxSemaphore m_semaphore
;
104 DECLARE_NO_COPY_CLASS(wxConditionInternal
)
107 wxConditionInternal::wxConditionInternal(wxMutex
& mutex
)
110 // another thread can't access it until we return from ctor, so no need to
111 // protect access to m_numWaiters here
115 wxCondError
wxConditionInternal::Wait()
117 // increment the number of waiters
118 ::InterlockedIncrement(&m_numWaiters
);
122 // a potential race condition can occur here
124 // after a thread increments nwaiters, and unlocks the mutex and before the
125 // semaphore.Wait() is called, if another thread can cause a signal to be
128 // this race condition is handled by using a semaphore and incrementing the
129 // semaphore only if 'nwaiters' is greater that zero since the semaphore,
130 // can 'remember' signals the race condition will not occur
132 // wait ( if necessary ) and decrement semaphore
133 wxSemaError err
= m_semaphore
.Wait();
136 if ( err
== wxSEMA_NO_ERROR
)
137 return wxCOND_NO_ERROR
;
138 else if ( err
== wxSEMA_TIMEOUT
)
139 return wxCOND_TIMEOUT
;
141 return wxCOND_MISC_ERROR
;
144 wxCondError
wxConditionInternal::WaitTimeout(unsigned long milliseconds
)
146 ::InterlockedIncrement(&m_numWaiters
);
150 // a race condition can occur at this point in the code
152 // please see the comments in Wait(), for details
154 wxSemaError err
= m_semaphore
.WaitTimeout(milliseconds
);
156 if ( err
== wxSEMA_TIMEOUT
)
158 // another potential race condition exists here it is caused when a
159 // 'waiting' thread timesout, and returns from WaitForSingleObject, but
160 // has not yet decremented 'nwaiters'.
162 // at this point if another thread calls signal() then the semaphore
163 // will be incremented, but the waiting thread will miss it.
165 // to handle this particular case, the waiting thread calls
166 // WaitForSingleObject again with a timeout of 0, after locking
167 // 'nwaiters_mutex'. this call does not block because of the zero
168 // timeout, but will allow the waiting thread to catch the missed
170 wxCriticalSectionLocker
lock(m_csWaiters
);
172 err
= m_semaphore
.WaitTimeout(0);
174 if ( err
!= wxSEMA_NO_ERROR
)
182 return err
== wxSEMA_NO_ERROR
? wxCOND_NO_ERROR
183 : err
== wxSEMA_TIMEOUT
? wxCOND_TIMEOUT
187 wxCondError
wxConditionInternal::Signal()
189 wxCriticalSectionLocker
lock(m_csWaiters
);
191 if ( m_numWaiters
> 0 )
193 // increment the semaphore by 1
194 if ( m_semaphore
.Post() != wxSEMA_NO_ERROR
)
195 return wxCOND_MISC_ERROR
;
200 return wxCOND_NO_ERROR
;
203 wxCondError
wxConditionInternal::Broadcast()
205 wxCriticalSectionLocker
lock(m_csWaiters
);
207 while ( m_numWaiters
> 0 )
209 if ( m_semaphore
.Post() != wxSEMA_NO_ERROR
)
210 return wxCOND_MISC_ERROR
;
215 return wxCOND_NO_ERROR
;
219 // ----------------------------------------------------------------------------
221 // ----------------------------------------------------------------------------
223 wxCondition::wxCondition(wxMutex
& mutex
)
225 m_internal
= new wxConditionInternal(mutex
);
227 if ( !m_internal
->IsOk() )
234 wxCondition::~wxCondition()
239 bool wxCondition::IsOk() const
241 return m_internal
!= NULL
;
244 wxCondError
wxCondition::Wait()
246 wxCHECK_MSG( m_internal
, wxCOND_INVALID
,
247 _T("wxCondition::Wait(): not initialized") );
249 return m_internal
->Wait();
252 wxCondError
wxCondition::WaitTimeout(unsigned long milliseconds
)
254 wxCHECK_MSG( m_internal
, wxCOND_INVALID
,
255 _T("wxCondition::Wait(): not initialized") );
257 return m_internal
->WaitTimeout(milliseconds
);
260 wxCondError
wxCondition::Signal()
262 wxCHECK_MSG( m_internal
, wxCOND_INVALID
,
263 _T("wxCondition::Signal(): not initialized") );
265 return m_internal
->Signal();
268 wxCondError
wxCondition::Broadcast()
270 wxCHECK_MSG( m_internal
, wxCOND_INVALID
,
271 _T("wxCondition::Broadcast(): not initialized") );
273 return m_internal
->Broadcast();
276 // --------------------------------------------------------------------------
278 // --------------------------------------------------------------------------
280 wxSemaphore::wxSemaphore(int initialcount
, int maxcount
)
282 m_internal
= new wxSemaphoreInternal( initialcount
, maxcount
);
283 if ( !m_internal
->IsOk() )
290 wxSemaphore::~wxSemaphore()
295 bool wxSemaphore::IsOk() const
297 return m_internal
!= NULL
;
300 wxSemaError
wxSemaphore::Wait()
302 wxCHECK_MSG( m_internal
, wxSEMA_INVALID
,
303 _T("wxSemaphore::Wait(): not initialized") );
305 return m_internal
->Wait();
308 wxSemaError
wxSemaphore::TryWait()
310 wxCHECK_MSG( m_internal
, wxSEMA_INVALID
,
311 _T("wxSemaphore::TryWait(): not initialized") );
313 return m_internal
->TryWait();
316 wxSemaError
wxSemaphore::WaitTimeout(unsigned long milliseconds
)
318 wxCHECK_MSG( m_internal
, wxSEMA_INVALID
,
319 _T("wxSemaphore::WaitTimeout(): not initialized") );
321 return m_internal
->WaitTimeout(milliseconds
);
324 wxSemaError
wxSemaphore::Post()
326 wxCHECK_MSG( m_internal
, wxSEMA_INVALID
,
327 _T("wxSemaphore::Post(): not initialized") );
329 return m_internal
->Post();