]>
Commit | Line | Data |
---|---|---|
e9576ca5 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: thread.cpp | |
e7549107 | 3 | // Purpose: wxThread Implementation |
a959b088 SC |
4 | // Author: Original from Wolfram Gloger/Guilhem Lavaux/Vadim Zeitlin |
5 | // Modified by: Stefan Csomor | |
e9576ca5 SC |
6 | // Created: 04/22/98 |
7 | // RCS-ID: $Id$ | |
e7549107 | 8 | // Copyright: (c) Wolfram Gloger (1996, 1997); Guilhem Lavaux (1998), |
a959b088 | 9 | // Vadim Zeitlin (1999) , Stefan Csomor (2000) |
e9576ca5 SC |
10 | // Licence: wxWindows licence |
11 | ///////////////////////////////////////////////////////////////////////////// | |
12 | ||
13 | #ifdef __GNUG__ | |
e7549107 | 14 | #pragma implementation "thread.h" |
e9576ca5 SC |
15 | #endif |
16 | ||
e7549107 SC |
17 | // ---------------------------------------------------------------------------- |
18 | // headers | |
19 | // ---------------------------------------------------------------------------- | |
20 | ||
21 | // For compilers that support precompilation, includes "wx.h". | |
22 | #include "wx/wxprec.h" | |
23 | ||
24 | #if defined(__BORLANDC__) | |
25 | #pragma hdrstop | |
26 | #endif | |
27 | ||
28 | #ifndef WX_PRECOMP | |
29 | #include "wx/wx.h" | |
30 | #endif | |
31 | ||
32 | #if wxUSE_THREADS | |
33 | ||
e9576ca5 SC |
34 | #include "wx/module.h" |
35 | #include "wx/thread.h" | |
e9576ca5 | 36 | |
76a5e5d2 | 37 | #ifdef __WXMAC__ |
66a09d47 | 38 | #include <Threads.h> |
9c152f80 | 39 | #include "wx/mac/uma.h" |
76a5e5d2 SC |
40 | #endif |
41 | ||
ad816ba5 SC |
42 | #define INFINITE 0xFFFFFFFF |
43 | ||
a959b088 SC |
44 | // ---------------------------------------------------------------------------- |
45 | // constants | |
46 | // ---------------------------------------------------------------------------- | |
47 | ||
e7549107 SC |
48 | // the possible states of the thread ("=>" shows all possible transitions from |
49 | // this state) | |
50 | enum wxThreadState | |
51 | { | |
52 | STATE_NEW, // didn't start execution yet (=> RUNNING) | |
53 | STATE_RUNNING, // thread is running (=> PAUSED, CANCELED) | |
54 | STATE_PAUSED, // thread is temporarily suspended (=> RUNNING) | |
55 | STATE_CANCELED, // thread should terminate a.s.a.p. (=> EXITED) | |
56 | STATE_EXITED // thread is terminating | |
e9576ca5 SC |
57 | }; |
58 | ||
e7549107 | 59 | // ---------------------------------------------------------------------------- |
a959b088 | 60 | // this module globals |
e7549107 | 61 | // ---------------------------------------------------------------------------- |
169935ad | 62 | |
a959b088 SC |
63 | static ThreadID gs_idMainThread = kNoThreadID ; |
64 | static bool gs_waitingForThread = FALSE ; | |
e9576ca5 | 65 | |
e7549107 | 66 | // ============================================================================ |
a959b088 | 67 | // MacOS implementation of thread classes |
e7549107 SC |
68 | // ============================================================================ |
69 | ||
a959b088 SC |
70 | class wxMacStCritical |
71 | { | |
72 | public : | |
ea736fec | 73 | wxMacStCritical() |
6fe73788 | 74 | { |
9c152f80 SC |
75 | if ( UMASystemIsInitialized() ) |
76 | ThreadBeginCritical() ; | |
6fe73788 RL |
77 | } |
78 | ~wxMacStCritical() | |
79 | { | |
9c152f80 SC |
80 | if ( UMASystemIsInitialized() ) |
81 | ThreadEndCritical() ; | |
6fe73788 RL |
82 | } |
83 | }; | |
a959b088 | 84 | |
e7549107 SC |
85 | // ---------------------------------------------------------------------------- |
86 | // wxMutex implementation | |
87 | // ---------------------------------------------------------------------------- | |
a959b088 | 88 | |
e7549107 SC |
89 | class wxMutexInternal |
90 | { | |
e9576ca5 | 91 | public: |
ad816ba5 | 92 | wxMutexInternal(wxMutexType WXUNUSED(mutexType)) |
a959b088 | 93 | { |
6fe73788 | 94 | m_owner = kNoThreadID ; |
ad816ba5 | 95 | m_locked = 0; |
a959b088 SC |
96 | } |
97 | ||
ea736fec | 98 | ~wxMutexInternal() |
a959b088 | 99 | { |
ad816ba5 SC |
100 | if ( m_locked > 0 ) |
101 | { | |
102 | wxLogDebug(_T("Warning: freeing a locked mutex (%d locks)."), m_locked); | |
103 | } | |
a959b088 SC |
104 | } |
105 | ||
ad816ba5 SC |
106 | bool IsOk() const { return true; } |
107 | ||
108 | wxMutexError Lock() ; | |
109 | wxMutexError TryLock() ; | |
110 | wxMutexError Unlock(); | |
a959b088 SC |
111 | public: |
112 | ThreadID m_owner ; | |
113 | wxArrayLong m_waiters ; | |
ad816ba5 | 114 | long m_locked ; |
e9576ca5 SC |
115 | }; |
116 | ||
ad816ba5 | 117 | wxMutexError wxMutexInternal::Lock() |
e9576ca5 | 118 | { |
6fe73788 | 119 | wxMacStCritical critical ; |
9c152f80 | 120 | if ( UMASystemIsInitialized() ) |
6fe73788 | 121 | { |
9c152f80 SC |
122 | OSErr err ; |
123 | ThreadID current = kNoThreadID; | |
124 | err = ::MacGetCurrentThread(¤t); | |
125 | // if we are not the owner, add this thread to the list of waiting threads, stop this thread | |
126 | // and invoke the scheduler to continue executing the owner's thread | |
ad816ba5 | 127 | while ( m_owner != kNoThreadID && m_owner != current) |
9c152f80 | 128 | { |
ad816ba5 SC |
129 | m_waiters.Add(current); |
130 | err = ::SetThreadStateEndCritical(kCurrentThreadID, kStoppedThreadState, m_owner); | |
9c152f80 SC |
131 | err = ::ThreadBeginCritical(); |
132 | } | |
ad816ba5 | 133 | m_owner = current; |
6fe73788 | 134 | } |
e9576ca5 | 135 | m_locked++; |
a959b088 | 136 | |
e9576ca5 SC |
137 | return wxMUTEX_NO_ERROR; |
138 | } | |
139 | ||
ad816ba5 | 140 | wxMutexError wxMutexInternal::TryLock() |
e9576ca5 | 141 | { |
6fe73788 | 142 | wxMacStCritical critical ; |
9c152f80 | 143 | if ( UMASystemIsInitialized() ) |
ea736fec | 144 | { |
9c152f80 SC |
145 | ThreadID current = kNoThreadID; |
146 | ::MacGetCurrentThread(¤t); | |
147 | // if we are not the owner, give an error back | |
ad816ba5 | 148 | if ( m_owner != kNoThreadID && m_owner != current ) |
9c152f80 | 149 | return wxMUTEX_BUSY; |
ea736fec | 150 | |
ad816ba5 | 151 | m_owner = current; |
9c152f80 | 152 | } |
e9576ca5 | 153 | m_locked++; |
a959b088 SC |
154 | |
155 | return wxMUTEX_NO_ERROR; | |
e9576ca5 SC |
156 | } |
157 | ||
ad816ba5 | 158 | wxMutexError wxMutexInternal::Unlock() |
e9576ca5 | 159 | { |
9c152f80 | 160 | if ( UMASystemIsInitialized() ) |
ea736fec | 161 | { |
9c152f80 SC |
162 | OSErr err; |
163 | err = ::ThreadBeginCritical(); | |
ea736fec | 164 | |
9c152f80 SC |
165 | if (m_locked > 0) |
166 | m_locked--; | |
167 | ||
168 | // this mutex is not owned by anybody anmore | |
ad816ba5 | 169 | m_owner = kNoThreadID; |
9c152f80 SC |
170 | |
171 | // now pass on to the first waiting thread | |
172 | ThreadID firstWaiting = kNoThreadID; | |
173 | bool found = false; | |
ad816ba5 | 174 | while (!m_waiters.IsEmpty() && !found) |
9c152f80 | 175 | { |
ad816ba5 | 176 | firstWaiting = m_waiters[0]; |
9c152f80 SC |
177 | err = ::SetThreadState(firstWaiting, kReadyThreadState, kNoThreadID); |
178 | // in case this was not successful (dead thread), we just loop on and reset the id | |
ea736fec | 179 | found = (err != threadNotFoundErr); |
9c152f80 SC |
180 | if ( !found ) |
181 | firstWaiting = kNoThreadID ; | |
ad816ba5 | 182 | m_waiters.RemoveAt(0) ; |
9c152f80 SC |
183 | } |
184 | // now we have a valid firstWaiting thread, which has been scheduled to run next, just end the | |
185 | // critical section and invoke the scheduler | |
186 | err = ::SetThreadStateEndCritical(kCurrentThreadID, kReadyThreadState, firstWaiting); | |
187 | } | |
188 | else | |
6fe73788 | 189 | { |
9c152f80 SC |
190 | if (m_locked > 0) |
191 | m_locked--; | |
6fe73788 | 192 | } |
e9576ca5 SC |
193 | return wxMUTEX_NO_ERROR; |
194 | } | |
195 | ||
ad816ba5 SC |
196 | // -------------------------------------------------------------------------- |
197 | // wxSemaphore | |
198 | // -------------------------------------------------------------------------- | |
199 | ||
200 | // TODO not yet implemented | |
201 | ||
202 | class wxSemaphoreInternal | |
203 | { | |
204 | public: | |
205 | wxSemaphoreInternal(int initialcount, int maxcount); | |
206 | ~wxSemaphoreInternal(); | |
207 | ||
208 | bool IsOk() const { return true ; } | |
209 | ||
210 | wxSemaError Wait() { return WaitTimeout(INFINITE); } | |
211 | wxSemaError TryWait() { return WaitTimeout(0); } | |
212 | wxSemaError WaitTimeout(unsigned long milliseconds); | |
213 | ||
214 | wxSemaError Post(); | |
215 | ||
216 | private: | |
217 | }; | |
218 | ||
219 | wxSemaphoreInternal::wxSemaphoreInternal(int initialcount, int maxcount) | |
220 | { | |
221 | if ( maxcount == 0 ) | |
222 | { | |
223 | // make it practically infinite | |
224 | maxcount = INT_MAX; | |
225 | } | |
226 | } | |
227 | ||
228 | wxSemaphoreInternal::~wxSemaphoreInternal() | |
229 | { | |
230 | } | |
231 | ||
232 | wxSemaError wxSemaphoreInternal::WaitTimeout(unsigned long milliseconds) | |
233 | { | |
234 | return wxSEMA_MISC_ERROR; | |
235 | } | |
236 | ||
237 | wxSemaError wxSemaphoreInternal::Post() | |
238 | { | |
239 | return wxSEMA_MISC_ERROR; | |
240 | } | |
241 | ||
e7549107 SC |
242 | // ---------------------------------------------------------------------------- |
243 | // wxCondition implementation | |
244 | // ---------------------------------------------------------------------------- | |
245 | ||
ad816ba5 SC |
246 | // TODO this is not yet completed |
247 | ||
e7549107 SC |
248 | class wxConditionInternal |
249 | { | |
e9576ca5 | 250 | public: |
71110b40 | 251 | wxConditionInternal(wxMutex& mutex) : m_mutex(mutex) |
a959b088 | 252 | { |
6fe73788 | 253 | m_excessSignals = 0 ; |
a959b088 SC |
254 | } |
255 | ~wxConditionInternal() | |
256 | { | |
257 | } | |
e9576ca5 | 258 | |
ad816ba5 SC |
259 | bool IsOk() const { return m_mutex.IsOk() ; } |
260 | ||
261 | wxCondError Wait() | |
262 | { | |
263 | return WaitTimeout(0xFFFFFFFF ); | |
264 | } | |
265 | ||
266 | wxCondError WaitTimeout(unsigned long msectimeout) | |
e7549107 | 267 | { |
6fe73788 RL |
268 | wxMacStCritical critical ; |
269 | if ( m_excessSignals > 0 ) | |
270 | { | |
271 | --m_excessSignals ; | |
ad816ba5 | 272 | return wxCOND_NO_ERROR ; |
6fe73788 RL |
273 | } |
274 | else if ( msectimeout == 0 ) | |
275 | { | |
ad816ba5 | 276 | return wxCOND_MISC_ERROR ; |
6fe73788 RL |
277 | } |
278 | else | |
279 | { | |
280 | } | |
281 | /* | |
a959b088 SC |
282 | waiters++; |
283 | ||
284 | // FIXME this should be MsgWaitForMultipleObjects() as well probably | |
285 | DWORD rc = ::WaitForSingleObject(event, timeout); | |
286 | ||
287 | waiters--; | |
288 | ||
289 | return rc != WAIT_TIMEOUT; | |
290 | */ | |
ad816ba5 | 291 | return wxCOND_NO_ERROR ; |
e7549107 | 292 | } |
ad816ba5 | 293 | wxCondError Signal() |
6fe73788 RL |
294 | { |
295 | wxMacStCritical critical ; | |
ad816ba5 | 296 | return wxCOND_NO_ERROR; |
6fe73788 | 297 | } |
a959b088 | 298 | |
ad816ba5 SC |
299 | wxCondError Broadcast() |
300 | { | |
301 | wxMacStCritical critical ; | |
302 | return wxCOND_NO_ERROR; | |
303 | } | |
304 | ||
a959b088 | 305 | wxArrayLong m_waiters ; |
6fe73788 | 306 | wxInt32 m_excessSignals ; |
71110b40 | 307 | wxMutex& m_mutex; |
a959b088 | 308 | }; |
e7549107 | 309 | |
e7549107 SC |
310 | // ---------------------------------------------------------------------------- |
311 | // wxCriticalSection implementation | |
312 | // ---------------------------------------------------------------------------- | |
313 | ||
a959b088 | 314 | // it's implemented as a mutex on mac os, so it is defined in the headers |
e7549107 SC |
315 | |
316 | // ---------------------------------------------------------------------------- | |
317 | // wxThread implementation | |
318 | // ---------------------------------------------------------------------------- | |
319 | ||
320 | // wxThreadInternal class | |
321 | // ---------------------- | |
322 | ||
e7549107 SC |
323 | class wxThreadInternal |
324 | { | |
325 | public: | |
326 | wxThreadInternal() | |
327 | { | |
a959b088 | 328 | m_tid = kNoThreadID ; |
e7549107 SC |
329 | m_state = STATE_NEW; |
330 | m_priority = WXTHREAD_DEFAULT_PRIORITY; | |
331 | } | |
332 | ||
a959b088 SC |
333 | ~wxThreadInternal() |
334 | { | |
335 | } | |
336 | ||
337 | void Free() | |
338 | { | |
339 | } | |
340 | ||
e7549107 | 341 | // create a new (suspended) thread (for the given thread object) |
6fe73788 | 342 | bool Create(wxThread *thread, unsigned int stackSize); |
e7549107 SC |
343 | |
344 | // suspend/resume/terminate | |
345 | bool Suspend(); | |
346 | bool Resume(); | |
347 | void Cancel() { m_state = STATE_CANCELED; } | |
348 | ||
349 | // thread state | |
350 | void SetState(wxThreadState state) { m_state = state; } | |
351 | wxThreadState GetState() const { return m_state; } | |
352 | ||
353 | // thread priority | |
a959b088 | 354 | void SetPriority(unsigned int priority); |
e7549107 | 355 | unsigned int GetPriority() const { return m_priority; } |
ea736fec | 356 | |
a959b088 SC |
357 | void SetResult( void *res ) { m_result = res ; } |
358 | void *GetResult() { return m_result ; } | |
e7549107 SC |
359 | |
360 | // thread handle and id | |
a959b088 | 361 | ThreadID GetId() const { return m_tid; } |
e7549107 SC |
362 | |
363 | // thread function | |
6fe73788 | 364 | static pascal void* MacThreadStart(wxThread* arg); |
e7549107 SC |
365 | |
366 | private: | |
6fe73788 RL |
367 | wxThreadState m_state; // state, see wxThreadState enum |
368 | unsigned int m_priority; // thread priority in "wx" units | |
369 | ThreadID m_tid; // thread id | |
370 | void* m_result; | |
371 | static ThreadEntryUPP s_threadEntry ; | |
e7549107 SC |
372 | }; |
373 | ||
a959b088 SC |
374 | static wxArrayPtrVoid s_threads ; |
375 | ||
376 | ThreadEntryUPP wxThreadInternal::s_threadEntry = NULL ; | |
377 | pascal void* wxThreadInternal::MacThreadStart(wxThread *thread) | |
e7549107 | 378 | { |
a959b088 SC |
379 | // first of all, check whether we hadn't been cancelled already |
380 | if ( thread->m_internal->GetState() == STATE_EXITED ) | |
e7549107 | 381 | { |
a959b088 | 382 | return (void*)-1; |
e7549107 SC |
383 | } |
384 | ||
a959b088 SC |
385 | void* rc = thread->Entry(); |
386 | ||
387 | // enter m_critsect before changing the thread state | |
388 | thread->m_critsect.Enter(); | |
389 | bool wasCancelled = thread->m_internal->GetState() == STATE_CANCELED; | |
390 | thread->m_internal->SetState(STATE_EXITED); | |
391 | thread->m_critsect.Leave(); | |
392 | ||
e7549107 SC |
393 | thread->OnExit(); |
394 | ||
a959b088 SC |
395 | // if the thread was cancelled (from Delete()), then it the handle is still |
396 | // needed there | |
397 | if ( thread->IsDetached() && !wasCancelled ) | |
398 | { | |
399 | // auto delete | |
400 | delete thread; | |
401 | } | |
402 | //else: the joinable threads handle will be closed when Wait() is done | |
e7549107 | 403 | |
a959b088 SC |
404 | return rc; |
405 | } | |
406 | void wxThreadInternal::SetPriority(unsigned int priority) | |
407 | { | |
6fe73788 | 408 | // Priorities don't exist on Mac |
e7549107 SC |
409 | } |
410 | ||
6fe73788 | 411 | bool wxThreadInternal::Create(wxThread *thread, unsigned int stackSize) |
e7549107 | 412 | { |
6fe73788 RL |
413 | if ( s_threadEntry == NULL ) |
414 | { | |
415 | s_threadEntry = NewThreadEntryUPP( (ThreadEntryProcPtr) MacThreadStart ) ; | |
416 | } | |
417 | OSErr err = NewThread( kCooperativeThread, | |
418 | s_threadEntry, | |
419 | (void*) thread, | |
420 | stackSize, | |
421 | kNewSuspend, | |
422 | &m_result, | |
423 | &m_tid ); | |
a959b088 SC |
424 | |
425 | if ( err != noErr ) | |
e7549107 SC |
426 | { |
427 | wxLogSysError(_("Can't create thread")); | |
e7549107 SC |
428 | return FALSE; |
429 | } | |
430 | ||
a959b088 | 431 | if ( m_priority != WXTHREAD_DEFAULT_PRIORITY ) |
e7549107 | 432 | { |
a959b088 | 433 | SetPriority(m_priority); |
e7549107 SC |
434 | } |
435 | ||
436 | return TRUE; | |
437 | } | |
438 | ||
439 | bool wxThreadInternal::Suspend() | |
440 | { | |
6fe73788 | 441 | OSErr err ; |
ea736fec | 442 | |
6fe73788 | 443 | ::ThreadBeginCritical(); |
e7549107 | 444 | |
6fe73788 | 445 | if ( m_state != STATE_RUNNING ) |
a959b088 | 446 | { |
6fe73788 | 447 | ::ThreadEndCritical() ; |
a959b088 | 448 | wxLogSysError(_("Can not suspend thread %x"), m_tid); |
e7549107 SC |
449 | return FALSE; |
450 | } | |
451 | ||
452 | m_state = STATE_PAUSED; | |
453 | ||
6fe73788 | 454 | err = ::SetThreadStateEndCritical(m_tid, kStoppedThreadState, kNoThreadID); |
a959b088 | 455 | |
e7549107 SC |
456 | return TRUE; |
457 | } | |
458 | ||
459 | bool wxThreadInternal::Resume() | |
460 | { | |
6fe73788 RL |
461 | ThreadID current ; |
462 | OSErr err ; | |
463 | err = MacGetCurrentThread( ¤t ) ; | |
464 | ||
465 | wxASSERT( err == noErr ) ; | |
466 | wxASSERT( current != m_tid ) ; | |
ea736fec | 467 | |
6fe73788 RL |
468 | ::ThreadBeginCritical(); |
469 | if ( m_state != STATE_PAUSED && m_state != STATE_NEW ) | |
470 | { | |
471 | ::ThreadEndCritical() ; | |
a959b088 | 472 | wxLogSysError(_("Can not resume thread %x"), m_tid); |
e7549107 | 473 | return FALSE; |
ea736fec | 474 | |
6fe73788 RL |
475 | } |
476 | err = ::SetThreadStateEndCritical(m_tid, kReadyThreadState, kNoThreadID); | |
477 | wxASSERT( err == noErr ) ; | |
ea736fec | 478 | |
e7549107 | 479 | m_state = STATE_RUNNING; |
6fe73788 RL |
480 | ::ThreadEndCritical() ; |
481 | ::YieldToAnyThread() ; | |
e7549107 SC |
482 | return TRUE; |
483 | } | |
484 | ||
485 | // static functions | |
486 | // ---------------- | |
e7549107 SC |
487 | wxThread *wxThread::This() |
488 | { | |
6fe73788 | 489 | wxMacStCritical critical ; |
ea736fec | 490 | |
6fe73788 RL |
491 | ThreadID current ; |
492 | OSErr err ; | |
ea736fec | 493 | |
6fe73788 | 494 | err = MacGetCurrentThread( ¤t ) ; |
ea736fec | 495 | |
d84afea9 | 496 | for ( size_t i = 0 ; i < s_threads.Count() ; ++i ) |
6fe73788 RL |
497 | { |
498 | if ( ( (wxThread*) s_threads[i] )->GetId() == current ) | |
499 | return (wxThread*) s_threads[i] ; | |
500 | } | |
e7549107 | 501 | |
a959b088 SC |
502 | wxLogSysError(_("Couldn't get the current thread pointer")); |
503 | return NULL; | |
e7549107 SC |
504 | } |
505 | ||
506 | bool wxThread::IsMain() | |
507 | { | |
6fe73788 RL |
508 | ThreadID current ; |
509 | OSErr err ; | |
ea736fec | 510 | |
6fe73788 | 511 | err = MacGetCurrentThread( ¤t ) ; |
a959b088 | 512 | return current == gs_idMainThread; |
e7549107 SC |
513 | } |
514 | ||
515 | #ifdef Yield | |
a959b088 | 516 | #undef Yield |
e7549107 SC |
517 | #endif |
518 | ||
519 | void wxThread::Yield() | |
520 | { | |
6fe73788 | 521 | ::YieldToAnyThread() ; |
e7549107 SC |
522 | } |
523 | ||
524 | void wxThread::Sleep(unsigned long milliseconds) | |
525 | { | |
6fe73788 | 526 | clock_t start = clock() ; |
ea736fec | 527 | do |
6fe73788 RL |
528 | { |
529 | YieldToAnyThread() ; | |
530 | } while( clock() - start < milliseconds / CLOCKS_PER_SEC ) ; | |
a959b088 SC |
531 | } |
532 | ||
533 | int wxThread::GetCPUCount() | |
534 | { | |
6fe73788 | 535 | // we will use whatever MP API will be used for the new MP Macs |
a959b088 SC |
536 | return 1; |
537 | } | |
538 | ||
ea736fec RD |
539 | unsigned long wxThread::GetCurrentId() |
540 | { | |
541 | ThreadID current ; | |
542 | MacGetCurrentThread( ¤t ) ; | |
543 | return (unsigned long)current; | |
544 | } | |
545 | ||
a959b088 SC |
546 | bool wxThread::SetConcurrency(size_t level) |
547 | { | |
548 | wxASSERT_MSG( IsMain(), _T("should only be called from the main thread") ); | |
549 | ||
550 | // ok only for the default one | |
551 | if ( level == 0 ) | |
552 | return 0; | |
553 | ||
554 | // how many CPUs have we got? | |
555 | if ( GetCPUCount() == 1 ) | |
556 | { | |
557 | // don't bother with all this complicated stuff - on a single | |
558 | // processor system it doesn't make much sense anyhow | |
559 | return level == 1; | |
560 | } | |
ea736fec | 561 | |
a959b088 SC |
562 | return TRUE ; |
563 | } | |
564 | ||
565 | // ctor and dtor | |
566 | // ------------- | |
567 | ||
568 | wxThread::wxThread(wxThreadKind kind) | |
569 | { | |
570 | m_internal = new wxThreadInternal(); | |
571 | ||
572 | m_isDetached = kind == wxTHREAD_DETACHED; | |
573 | s_threads.Add( (void*) this ) ; | |
574 | } | |
575 | ||
576 | wxThread::~wxThread() | |
577 | { | |
6fe73788 | 578 | s_threads.Remove( (void*) this ) ; |
a959b088 | 579 | delete m_internal; |
e7549107 SC |
580 | } |
581 | ||
582 | // create/start thread | |
583 | // ------------------- | |
584 | ||
6fe73788 | 585 | wxThreadError wxThread::Create(unsigned int stackSize) |
e9576ca5 | 586 | { |
a959b088 SC |
587 | wxCriticalSectionLocker lock(m_critsect); |
588 | ||
6fe73788 | 589 | if ( !m_internal->Create(this, stackSize) ) |
e7549107 SC |
590 | return wxTHREAD_NO_RESOURCE; |
591 | ||
e9576ca5 SC |
592 | return wxTHREAD_NO_ERROR; |
593 | } | |
594 | ||
e7549107 | 595 | wxThreadError wxThread::Run() |
e9576ca5 | 596 | { |
e7549107 SC |
597 | wxCriticalSectionLocker lock(m_critsect); |
598 | ||
a959b088 | 599 | if ( m_internal->GetState() != STATE_NEW ) |
e7549107 SC |
600 | { |
601 | // actually, it may be almost any state at all, not only STATE_RUNNING | |
602 | return wxTHREAD_RUNNING; | |
603 | } | |
604 | ||
a959b088 | 605 | // the thread has just been created and is still suspended - let it run |
e7549107 | 606 | return Resume(); |
e9576ca5 SC |
607 | } |
608 | ||
e7549107 SC |
609 | // suspend/resume thread |
610 | // --------------------- | |
611 | ||
e9576ca5 SC |
612 | wxThreadError wxThread::Pause() |
613 | { | |
e7549107 SC |
614 | wxCriticalSectionLocker lock(m_critsect); |
615 | ||
a959b088 | 616 | return m_internal->Suspend() ? wxTHREAD_NO_ERROR : wxTHREAD_MISC_ERROR; |
e9576ca5 SC |
617 | } |
618 | ||
619 | wxThreadError wxThread::Resume() | |
620 | { | |
e7549107 | 621 | wxCriticalSectionLocker lock(m_critsect); |
e9576ca5 | 622 | |
a959b088 | 623 | return m_internal->Resume() ? wxTHREAD_NO_ERROR : wxTHREAD_MISC_ERROR; |
e9576ca5 SC |
624 | } |
625 | ||
e7549107 SC |
626 | // stopping thread |
627 | // --------------- | |
628 | ||
a959b088 SC |
629 | wxThread::ExitCode wxThread::Wait() |
630 | { | |
631 | // although under MacOS we can wait for any thread, it's an error to | |
632 | // wait for a detached one in wxWin API | |
633 | wxCHECK_MSG( !IsDetached(), (ExitCode)-1, | |
634 | _T("can't wait for detached thread") ); | |
635 | ||
636 | ExitCode rc = (ExitCode)-1; | |
637 | ||
638 | (void)Delete(&rc); | |
639 | ||
640 | m_internal->Free(); | |
641 | ||
642 | return rc; | |
643 | } | |
644 | ||
645 | wxThreadError wxThread::Delete(ExitCode *pRc) | |
e9576ca5 | 646 | { |
e7549107 SC |
647 | ExitCode rc = 0; |
648 | ||
649 | // Delete() is always safe to call, so consider all possible states | |
a959b088 SC |
650 | |
651 | // has the thread started to run? | |
652 | bool shouldResume = FALSE; | |
653 | ||
654 | { | |
655 | wxCriticalSectionLocker lock(m_critsect); | |
656 | ||
657 | if ( m_internal->GetState() == STATE_NEW ) | |
658 | { | |
659 | // WinThreadStart() will see it and terminate immediately | |
660 | m_internal->SetState(STATE_EXITED); | |
661 | ||
662 | shouldResume = TRUE; | |
663 | } | |
664 | } | |
665 | ||
666 | // is the thread paused? | |
667 | if ( shouldResume || IsPaused() ) | |
e7549107 SC |
668 | Resume(); |
669 | ||
a959b088 | 670 | // does is still run? |
e7549107 SC |
671 | if ( IsRunning() ) |
672 | { | |
673 | if ( IsMain() ) | |
674 | { | |
675 | // set flag for wxIsWaitingForThread() | |
a959b088 | 676 | gs_waitingForThread = TRUE; |
e7549107 | 677 | |
a959b088 | 678 | #if wxUSE_GUI |
e7549107 | 679 | wxBeginBusyCursor(); |
a959b088 | 680 | #endif // wxUSE_GUI |
e7549107 SC |
681 | } |
682 | ||
a959b088 | 683 | // ask the thread to terminate |
e7549107 SC |
684 | { |
685 | wxCriticalSectionLocker lock(m_critsect); | |
686 | ||
a959b088 | 687 | m_internal->Cancel(); |
e7549107 SC |
688 | } |
689 | ||
a959b088 SC |
690 | #if wxUSE_GUI |
691 | // simply wait for the thread to terminate | |
6fe73788 RL |
692 | while( TestDestroy() ) |
693 | { | |
694 | ::YieldToAnyThread() ; | |
695 | } | |
a959b088 SC |
696 | #else // !wxUSE_GUI |
697 | // simply wait for the thread to terminate | |
6fe73788 RL |
698 | while( TestDestroy() ) |
699 | { | |
700 | ::YieldToAnyThread() ; | |
701 | } | |
a959b088 | 702 | #endif // wxUSE_GUI/!wxUSE_GUI |
e7549107 SC |
703 | |
704 | if ( IsMain() ) | |
705 | { | |
a959b088 | 706 | gs_waitingForThread = FALSE; |
e7549107 | 707 | |
a959b088 | 708 | #if wxUSE_GUI |
e7549107 | 709 | wxEndBusyCursor(); |
a959b088 | 710 | #endif // wxUSE_GUI |
e7549107 | 711 | } |
a959b088 | 712 | } |
e7549107 | 713 | |
a959b088 SC |
714 | // if ( !::GetExitCodeThread(hThread, (LPDWORD)&rc) ) |
715 | { | |
716 | wxLogLastError("GetExitCodeThread"); | |
e7549107 | 717 | |
a959b088 SC |
718 | rc = (ExitCode)-1; |
719 | } | |
e7549107 | 720 | |
a959b088 SC |
721 | if ( IsDetached() ) |
722 | { | |
723 | // if the thread exits normally, this is done in WinThreadStart, but in | |
724 | // this case it would have been too early because | |
725 | // MsgWaitForMultipleObject() would fail if the therad handle was | |
726 | // closed while we were waiting on it, so we must do it here | |
727 | delete this; | |
e7549107 SC |
728 | } |
729 | ||
a959b088 SC |
730 | // wxASSERT_MSG( (DWORD)rc != STILL_ACTIVE, |
731 | // wxT("thread must be already terminated.") ); | |
732 | ||
733 | if ( pRc ) | |
734 | *pRc = rc; | |
735 | ||
736 | return rc == (ExitCode)-1 ? wxTHREAD_MISC_ERROR : wxTHREAD_NO_ERROR; | |
e9576ca5 SC |
737 | } |
738 | ||
e7549107 | 739 | wxThreadError wxThread::Kill() |
e9576ca5 | 740 | { |
e7549107 SC |
741 | if ( !IsRunning() ) |
742 | return wxTHREAD_NOT_RUNNING; | |
743 | ||
a959b088 | 744 | // if ( !::TerminateThread(m_internal->GetHandle(), (DWORD)-1) ) |
e7549107 SC |
745 | { |
746 | wxLogSysError(_("Couldn't terminate thread")); | |
747 | ||
748 | return wxTHREAD_MISC_ERROR; | |
749 | } | |
750 | ||
a959b088 SC |
751 | m_internal->Free(); |
752 | ||
753 | if ( IsDetached() ) | |
754 | { | |
755 | delete this; | |
756 | } | |
e7549107 SC |
757 | |
758 | return wxTHREAD_NO_ERROR; | |
e9576ca5 SC |
759 | } |
760 | ||
a959b088 | 761 | void wxThread::Exit(ExitCode status) |
e9576ca5 | 762 | { |
a959b088 | 763 | m_internal->Free(); |
e7549107 | 764 | |
a959b088 SC |
765 | if ( IsDetached() ) |
766 | { | |
767 | delete this; | |
768 | } | |
e7549107 | 769 | |
6fe73788 | 770 | m_internal->SetResult( status ) ; |
a959b088 | 771 | |
ea736fec | 772 | /* |
a959b088 SC |
773 | #if defined(__VISUALC__) || (defined(__BORLANDC__) && (__BORLANDC__ >= 0x500)) |
774 | _endthreadex((unsigned)status); | |
775 | #else // !VC++ | |
776 | ::ExitThread((DWORD)status); | |
777 | #endif // VC++/!VC++ | |
778 | */ | |
e7549107 | 779 | wxFAIL_MSG(wxT("Couldn't return from ExitThread()!")); |
e9576ca5 SC |
780 | } |
781 | ||
a959b088 SC |
782 | // priority setting |
783 | // ---------------- | |
784 | ||
785 | // since all these calls are execute cooperatively we don't have to use the critical section | |
786 | ||
e7549107 | 787 | void wxThread::SetPriority(unsigned int prio) |
e9576ca5 | 788 | { |
a959b088 | 789 | m_internal->SetPriority(prio); |
e9576ca5 SC |
790 | } |
791 | ||
e7549107 | 792 | unsigned int wxThread::GetPriority() const |
e9576ca5 | 793 | { |
a959b088 | 794 | return m_internal->GetPriority(); |
e9576ca5 SC |
795 | } |
796 | ||
a959b088 | 797 | unsigned long wxThread::GetId() const |
e9576ca5 | 798 | { |
a959b088 | 799 | return (unsigned long)m_internal->GetId(); |
e9576ca5 SC |
800 | } |
801 | ||
e7549107 | 802 | bool wxThread::IsRunning() const |
e9576ca5 | 803 | { |
a959b088 | 804 | return m_internal->GetState() == STATE_RUNNING; |
e9576ca5 | 805 | } |
e9576ca5 SC |
806 | |
807 | bool wxThread::IsAlive() const | |
808 | { | |
a959b088 SC |
809 | return (m_internal->GetState() == STATE_RUNNING) || |
810 | (m_internal->GetState() == STATE_PAUSED); | |
e9576ca5 SC |
811 | } |
812 | ||
e7549107 | 813 | bool wxThread::IsPaused() const |
e9576ca5 | 814 | { |
a959b088 | 815 | return m_internal->GetState() == STATE_PAUSED; |
e9576ca5 SC |
816 | } |
817 | ||
e7549107 | 818 | bool wxThread::TestDestroy() |
e9576ca5 | 819 | { |
a959b088 | 820 | return m_internal->GetState() == STATE_CANCELED; |
e9576ca5 SC |
821 | } |
822 | ||
e7549107 SC |
823 | // ---------------------------------------------------------------------------- |
824 | // Automatic initialization for thread module | |
825 | // ---------------------------------------------------------------------------- | |
e9576ca5 | 826 | |
e7549107 SC |
827 | class wxThreadModule : public wxModule |
828 | { | |
e9576ca5 | 829 | public: |
e7549107 SC |
830 | virtual bool OnInit(); |
831 | virtual void OnExit(); | |
e9576ca5 | 832 | |
e7549107 SC |
833 | private: |
834 | DECLARE_DYNAMIC_CLASS(wxThreadModule) | |
e9576ca5 SC |
835 | }; |
836 | ||
837 | IMPLEMENT_DYNAMIC_CLASS(wxThreadModule, wxModule) | |
838 | ||
e7549107 SC |
839 | bool wxThreadModule::OnInit() |
840 | { | |
6fe73788 RL |
841 | long response; |
842 | bool hasThreadManager ; | |
843 | hasThreadManager = Gestalt( gestaltThreadMgrAttr, &response) == noErr && response & 1; | |
5b781a67 SC |
844 | #if !TARGET_CARBON |
845 | #if GENERATINGCFM | |
6fe73788 RL |
846 | // verify presence of shared library |
847 | hasThreadManager = hasThreadManager && ((Ptr)NewThread != (Ptr)kUnresolvedCFragSymbolAddress); | |
5b781a67 | 848 | #endif |
a959b088 | 849 | #endif |
6fe73788 RL |
850 | if ( !hasThreadManager ) |
851 | { | |
852 | wxMessageBox( "Error" , "Thread Support is not available on this System" , wxOK ) ; | |
853 | return FALSE ; | |
854 | } | |
e7549107 SC |
855 | |
856 | // no error return for GetCurrentThreadId() | |
a959b088 | 857 | MacGetCurrentThread( &gs_idMainThread ) ; |
e7549107 SC |
858 | |
859 | return TRUE; | |
860 | } | |
861 | ||
862 | void wxThreadModule::OnExit() | |
863 | { | |
e7549107 SC |
864 | } |
865 | ||
866 | // ---------------------------------------------------------------------------- | |
a959b088 SC |
867 | // under MacOS we don't have currently preemptive threads, so any thread may access |
868 | // the GUI at any time | |
e7549107 SC |
869 | // ---------------------------------------------------------------------------- |
870 | ||
871 | void WXDLLEXPORT wxMutexGuiEnter() | |
872 | { | |
e7549107 SC |
873 | } |
874 | ||
875 | void WXDLLEXPORT wxMutexGuiLeave() | |
876 | { | |
e7549107 SC |
877 | } |
878 | ||
879 | void WXDLLEXPORT wxMutexGuiLeaveOrEnter() | |
880 | { | |
e7549107 SC |
881 | } |
882 | ||
883 | bool WXDLLEXPORT wxGuiOwnedByMainThread() | |
884 | { | |
a959b088 | 885 | return false ; |
e7549107 SC |
886 | } |
887 | ||
ea736fec | 888 | // wake up the main thread |
e7549107 SC |
889 | void WXDLLEXPORT wxWakeUpMainThread() |
890 | { | |
6fe73788 | 891 | wxMacWakeUp() ; |
e7549107 SC |
892 | } |
893 | ||
894 | bool WXDLLEXPORT wxIsWaitingForThread() | |
895 | { | |
a959b088 | 896 | return false ; |
e7549107 | 897 | } |
e7549107 | 898 | |
ad816ba5 SC |
899 | #include "wx/thrimpl.cpp" |
900 | ||
e7549107 | 901 | #endif // wxUSE_THREADS |
a959b088 | 902 | |
6fe73788 | 903 | // vi:sts=4:sw=4:et |