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