]> git.saurik.com Git - wxWidgets.git/blame - src/msw/thread.cpp
reSWIGged
[wxWidgets.git] / src / msw / thread.cpp
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
9e84b847 2// Name: src/msw/thread.cpp
2bda0e17
KB
3// Purpose: wxThread Implementation
4// Author: Original from Wolfram Gloger/Guilhem Lavaux
bee503b0 5// Modified by: Vadim Zeitlin to make it work :-)
2bda0e17
KB
6// Created: 04/22/98
7// RCS-ID: $Id$
9e84b847
VZ
8// Copyright: (c) Wolfram Gloger (1996, 1997), Guilhem Lavaux (1998);
9// Vadim Zeitlin (1999-2002)
65571936 10// Licence: wxWindows licence
2bda0e17
KB
11/////////////////////////////////////////////////////////////////////////////
12
14f355c2 13#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
3222fde2 14 #pragma implementation "thread.h"
2bda0e17
KB
15#endif
16
3222fde2
VZ
17// ----------------------------------------------------------------------------
18// headers
19// ----------------------------------------------------------------------------
20
a3b46648 21// For compilers that support precompilation, includes "wx.h".
2bda0e17
KB
22#include "wx/wxprec.h"
23
24#if defined(__BORLANDC__)
3222fde2 25 #pragma hdrstop
2bda0e17
KB
26#endif
27
28#ifndef WX_PRECOMP
60ab3272
VS
29 #include "wx/intl.h"
30 #include "wx/app.h"
2bda0e17
KB
31#endif
32
3222fde2
VZ
33#if wxUSE_THREADS
34
e2478fde
VZ
35#include "wx/apptrait.h"
36
0d0512bd 37#include "wx/msw/private.h"
17b439e8 38#include "wx/msw/missing.h"
3222fde2 39
2bda0e17
KB
40#include "wx/module.h"
41#include "wx/thread.h"
42
b568d04f
VZ
43// must have this symbol defined to get _beginthread/_endthread declarations
44#ifndef _MT
45 #define _MT
46#endif
47
9f51f2b6
VZ
48#if defined(__BORLANDC__)
49 #if !defined(__MT__)
50 // I can't set -tWM in the IDE (anyone?) so have to do this
51 #define __MT__
52 #endif
53
54 #if !defined(__MFC_COMPAT__)
55 // Needed to know about _beginthreadex etc..
56 #define __MFC_COMPAT__
57 #endif
58#endif // BC++
59
60// define wxUSE_BEGIN_THREAD if the compiler has _beginthreadex() function
61// which should be used instead of Win32 ::CreateThread() if possible
e0256755
GRG
62#if defined(__VISUALC__) || \
63 (defined(__BORLANDC__) && (__BORLANDC__ >= 0x500)) || \
9f51f2b6 64 (defined(__GNUG__) && defined(__MSVCRT__)) || \
ba14d986 65 defined(__WATCOMC__) || defined(__MWERKS__)
ccebc98a 66
4676948b 67#ifndef __WXWINCE__
9f51f2b6
VZ
68 #undef wxUSE_BEGIN_THREAD
69 #define wxUSE_BEGIN_THREAD
8536082d
BJ
70#endif
71
4676948b
JS
72#endif
73
9f51f2b6
VZ
74#ifdef wxUSE_BEGIN_THREAD
75 // this is where _beginthreadex() is declared
b568d04f 76 #include <process.h>
9f51f2b6
VZ
77
78 // the return type of the thread function entry point
79 typedef unsigned THREAD_RETVAL;
80
81 // the calling convention of the thread function entry point
82 #define THREAD_CALLCONV __stdcall
83#else
84 // the settings for CreateThread()
85 typedef DWORD THREAD_RETVAL;
86 #define THREAD_CALLCONV WINAPI
b568d04f
VZ
87#endif
88
89// ----------------------------------------------------------------------------
90// constants
91// ----------------------------------------------------------------------------
92
bf1852e1
VZ
93// the possible states of the thread ("=>" shows all possible transitions from
94// this state)
95enum wxThreadState
96{
97 STATE_NEW, // didn't start execution yet (=> RUNNING)
98 STATE_RUNNING, // thread is running (=> PAUSED, CANCELED)
99 STATE_PAUSED, // thread is temporarily suspended (=> RUNNING)
100 STATE_CANCELED, // thread should terminate a.s.a.p. (=> EXITED)
101 STATE_EXITED // thread is terminating
2bda0e17
KB
102};
103
3222fde2 104// ----------------------------------------------------------------------------
b568d04f 105// this module globals
3222fde2 106// ----------------------------------------------------------------------------
2bda0e17 107
bf1852e1 108// TLS index of the slot where we store the pointer to the current thread
b568d04f 109static DWORD gs_tlsThisThread = 0xFFFFFFFF;
bf1852e1 110
3222fde2
VZ
111// id of the main thread - the one which can call GUI functions without first
112// calling wxMutexGuiEnter()
b568d04f 113static DWORD gs_idMainThread = 0;
bee503b0 114
3ef22a5b
VZ
115// if it's false, some secondary thread is holding the GUI lock
116static bool gs_bGuiOwnedByMainThread = true;
2bda0e17 117
3222fde2
VZ
118// critical section which controls access to all GUI functions: any secondary
119// thread (i.e. except the main one) must enter this crit section before doing
120// any GUI calls
b568d04f 121static wxCriticalSection *gs_critsectGui = NULL;
bee503b0 122
b568d04f
VZ
123// critical section which protects gs_nWaitingForGui variable
124static wxCriticalSection *gs_critsectWaitingForGui = NULL;
bee503b0 125
3ef22a5b
VZ
126// critical section which serializes WinThreadStart() and WaitForTerminate()
127// (this is a potential bottleneck, we use a single crit sect for all threads
128// in the system, but normally time spent inside it should be quite short)
129static wxCriticalSection *gs_critsectThreadDelete = NULL;
130
bee503b0 131// number of threads waiting for GUI in wxMutexGuiEnter()
b568d04f 132static size_t gs_nWaitingForGui = 0;
2bda0e17 133
bf1852e1 134// are we waiting for a thread termination?
3ef22a5b 135static bool gs_waitingForThread = false;
bf1852e1 136
3222fde2 137// ============================================================================
9e84b847 138// Windows implementation of thread and related classes
3222fde2
VZ
139// ============================================================================
140
141// ----------------------------------------------------------------------------
9e84b847
VZ
142// wxCriticalSection
143// ----------------------------------------------------------------------------
144
145wxCriticalSection::wxCriticalSection()
146{
1c6f2414
WS
147 wxCOMPILE_TIME_ASSERT( sizeof(CRITICAL_SECTION) <= sizeof(wxCritSectBuffer),
148 wxCriticalSectionBufferTooSmall );
149
9e84b847
VZ
150 ::InitializeCriticalSection((CRITICAL_SECTION *)m_buffer);
151}
152
153wxCriticalSection::~wxCriticalSection()
154{
155 ::DeleteCriticalSection((CRITICAL_SECTION *)m_buffer);
156}
157
158void wxCriticalSection::Enter()
159{
160 ::EnterCriticalSection((CRITICAL_SECTION *)m_buffer);
161}
162
163void wxCriticalSection::Leave()
164{
165 ::LeaveCriticalSection((CRITICAL_SECTION *)m_buffer);
166}
167
168// ----------------------------------------------------------------------------
169// wxMutex
3222fde2 170// ----------------------------------------------------------------------------
0d0512bd 171
3222fde2
VZ
172class wxMutexInternal
173{
2bda0e17 174public:
9e84b847
VZ
175 wxMutexInternal(wxMutexType mutexType);
176 ~wxMutexInternal();
7f684264 177
9e84b847
VZ
178 bool IsOk() const { return m_mutex != NULL; }
179
180 wxMutexError Lock() { return LockTimeout(INFINITE); }
181 wxMutexError TryLock() { return LockTimeout(0); }
182 wxMutexError Unlock();
183
184private:
185 wxMutexError LockTimeout(DWORD milliseconds);
7f684264 186
7f684264 187 HANDLE m_mutex;
22f3361e
VZ
188
189 DECLARE_NO_COPY_CLASS(wxMutexInternal)
2bda0e17
KB
190};
191
9e84b847
VZ
192// all mutexes are recursive under Win32 so we don't use mutexType
193wxMutexInternal::wxMutexInternal(wxMutexType WXUNUSED(mutexType))
2bda0e17 194{
9e84b847
VZ
195 // create a nameless (hence intra process and always private) mutex
196 m_mutex = ::CreateMutex
197 (
198 NULL, // default secutiry attributes
3ef22a5b 199 false, // not initially locked
9e84b847
VZ
200 NULL // no name
201 );
a6b0bd49 202
9e84b847
VZ
203 if ( !m_mutex )
204 {
205 wxLogLastError(_T("CreateMutex()"));
206 }
2bda0e17
KB
207}
208
9e84b847 209wxMutexInternal::~wxMutexInternal()
2bda0e17 210{
9e84b847 211 if ( m_mutex )
7f684264 212 {
9e84b847
VZ
213 if ( !::CloseHandle(m_mutex) )
214 {
215 wxLogLastError(_T("CloseHandle(mutex)"));
216 }
7f684264 217 }
2bda0e17
KB
218}
219
9e84b847 220wxMutexError wxMutexInternal::LockTimeout(DWORD milliseconds)
2bda0e17 221{
9e84b847
VZ
222 DWORD rc = ::WaitForSingleObject(m_mutex, milliseconds);
223 if ( rc == WAIT_ABANDONED )
3222fde2 224 {
9e84b847
VZ
225 // the previous caller died without releasing the mutex, but now we can
226 // really lock it
227 wxLogDebug(_T("WaitForSingleObject() returned WAIT_ABANDONED"));
228
229 // use 0 timeout, normally we should always get it
230 rc = ::WaitForSingleObject(m_mutex, 0);
231 }
3222fde2 232
9e84b847
VZ
233 switch ( rc )
234 {
3222fde2
VZ
235 case WAIT_OBJECT_0:
236 // ok
237 break;
2bda0e17 238
3222fde2 239 case WAIT_TIMEOUT:
9e84b847
VZ
240 return wxMUTEX_BUSY;
241
242 case WAIT_ABANDONED: // checked for above
3222fde2 243 default:
223d09f6 244 wxFAIL_MSG(wxT("impossible return value in wxMutex::Lock"));
9e84b847 245 // fall through
3222fde2 246
9e84b847
VZ
247 case WAIT_FAILED:
248 wxLogLastError(_T("WaitForSingleObject(mutex)"));
249 return wxMUTEX_MISC_ERROR;
250 }
2bda0e17 251
3222fde2 252 return wxMUTEX_NO_ERROR;
2bda0e17
KB
253}
254
9e84b847 255wxMutexError wxMutexInternal::Unlock()
2bda0e17 256{
9e84b847 257 if ( !::ReleaseMutex(m_mutex) )
3222fde2 258 {
2b5f62a0 259 wxLogLastError(_T("ReleaseMutex()"));
9e84b847 260
3222fde2
VZ
261 return wxMUTEX_MISC_ERROR;
262 }
a6b0bd49 263
3222fde2 264 return wxMUTEX_NO_ERROR;
2bda0e17
KB
265}
266
be809868 267// --------------------------------------------------------------------------
9e84b847 268// wxSemaphore
be809868
VZ
269// --------------------------------------------------------------------------
270
9e84b847 271// a trivial wrapper around Win32 semaphore
be809868 272class wxSemaphoreInternal
3222fde2 273{
2bda0e17 274public:
9e84b847 275 wxSemaphoreInternal(int initialcount, int maxcount);
be809868
VZ
276 ~wxSemaphoreInternal();
277
9e84b847 278 bool IsOk() const { return m_semaphore != NULL; }
be809868 279
9e84b847 280 wxSemaError Wait() { return WaitTimeout(INFINITE); }
918dc519
VZ
281
282 wxSemaError TryWait()
283 {
284 wxSemaError rc = WaitTimeout(0);
285 if ( rc == wxSEMA_TIMEOUT )
286 rc = wxSEMA_BUSY;
287
288 return rc;
289 }
290
9e84b847 291 wxSemaError WaitTimeout(unsigned long milliseconds);
be809868 292
9e84b847 293 wxSemaError Post();
be809868
VZ
294
295private:
296 HANDLE m_semaphore;
22f3361e
VZ
297
298 DECLARE_NO_COPY_CLASS(wxSemaphoreInternal)
be809868
VZ
299};
300
9e84b847 301wxSemaphoreInternal::wxSemaphoreInternal(int initialcount, int maxcount)
be809868 302{
4a268913 303#if !defined(_WIN32_WCE) || (_WIN32_WCE >= 300)
be809868 304 if ( maxcount == 0 )
b568d04f 305 {
be809868
VZ
306 // make it practically infinite
307 maxcount = INT_MAX;
308 }
4d1c1c3c 309
9e84b847
VZ
310 m_semaphore = ::CreateSemaphore
311 (
312 NULL, // default security attributes
313 initialcount,
314 maxcount,
315 NULL // no name
316 );
4676948b 317#endif
be809868
VZ
318 if ( !m_semaphore )
319 {
320 wxLogLastError(_T("CreateSemaphore()"));
b568d04f 321 }
be809868
VZ
322}
323
324wxSemaphoreInternal::~wxSemaphoreInternal()
325{
9e84b847 326 if ( m_semaphore )
b568d04f 327 {
9e84b847
VZ
328 if ( !::CloseHandle(m_semaphore) )
329 {
330 wxLogLastError(_T("CloseHandle(semaphore)"));
331 }
be809868
VZ
332 }
333}
b568d04f 334
9e84b847 335wxSemaError wxSemaphoreInternal::WaitTimeout(unsigned long milliseconds)
be809868 336{
9e84b847 337 DWORD rc = ::WaitForSingleObject( m_semaphore, milliseconds );
be809868 338
9e84b847 339 switch ( rc )
be809868
VZ
340 {
341 case WAIT_OBJECT_0:
9e84b847 342 return wxSEMA_NO_ERROR;
b568d04f 343
be809868 344 case WAIT_TIMEOUT:
918dc519 345 return wxSEMA_TIMEOUT;
be809868
VZ
346
347 default:
9e84b847 348 wxLogLastError(_T("WaitForSingleObject(semaphore)"));
b568d04f
VZ
349 }
350
9e84b847 351 return wxSEMA_MISC_ERROR;
be809868
VZ
352}
353
9e84b847 354wxSemaError wxSemaphoreInternal::Post()
be809868 355{
4a268913 356#if !defined(_WIN32_WCE) || (_WIN32_WCE >= 300)
9e84b847 357 if ( !::ReleaseSemaphore(m_semaphore, 1, NULL /* ptr to previous count */) )
4676948b 358#endif
4d1c1c3c 359 {
be809868 360 wxLogLastError(_T("ReleaseSemaphore"));
be809868 361
9e84b847
VZ
362 return wxSEMA_MISC_ERROR;
363 }
be809868 364
9e84b847 365 return wxSEMA_NO_ERROR;
be809868 366}
4d1c1c3c 367
3222fde2
VZ
368// ----------------------------------------------------------------------------
369// wxThread implementation
370// ----------------------------------------------------------------------------
371
bf1852e1
VZ
372// wxThreadInternal class
373// ----------------------
374
3222fde2
VZ
375class wxThreadInternal
376{
2bda0e17 377public:
3ef22a5b 378 wxThreadInternal(wxThread *thread)
bf1852e1 379 {
3ef22a5b 380 m_thread = thread;
bf1852e1
VZ
381 m_hThread = 0;
382 m_state = STATE_NEW;
383 m_priority = WXTHREAD_DEFAULT_PRIORITY;
3ef22a5b 384 m_nRef = 1;
bf1852e1
VZ
385 }
386
b568d04f
VZ
387 ~wxThreadInternal()
388 {
389 Free();
390 }
391
392 void Free()
393 {
394 if ( m_hThread )
395 {
396 if ( !::CloseHandle(m_hThread) )
397 {
f6bcfd97 398 wxLogLastError(wxT("CloseHandle(thread)"));
b568d04f
VZ
399 }
400
401 m_hThread = 0;
402 }
403 }
404
bf1852e1 405 // create a new (suspended) thread (for the given thread object)
6fe73788 406 bool Create(wxThread *thread, unsigned int stackSize);
bf1852e1 407
68d41720
VZ
408 // wait for the thread to terminate, either by itself, or by asking it
409 // (politely, this is not Kill()!) to do it
3ef22a5b
VZ
410 wxThreadError WaitForTerminate(wxCriticalSection& cs,
411 wxThread::ExitCode *pRc,
412 wxThread *threadToDelete = NULL);
68d41720
VZ
413
414 // kill the thread unconditionally
415 wxThreadError Kill();
416
bf1852e1
VZ
417 // suspend/resume/terminate
418 bool Suspend();
419 bool Resume();
420 void Cancel() { m_state = STATE_CANCELED; }
421
422 // thread state
423 void SetState(wxThreadState state) { m_state = state; }
424 wxThreadState GetState() const { return m_state; }
425
426 // thread priority
b568d04f 427 void SetPriority(unsigned int priority);
bf1852e1
VZ
428 unsigned int GetPriority() const { return m_priority; }
429
430 // thread handle and id
431 HANDLE GetHandle() const { return m_hThread; }
432 DWORD GetId() const { return m_tid; }
433
434 // thread function
9f51f2b6 435 static THREAD_RETVAL THREAD_CALLCONV WinThreadStart(void *thread);
2bda0e17 436
3ef22a5b
VZ
437 void KeepAlive()
438 {
439 if ( m_thread->IsDetached() )
440 ::InterlockedIncrement(&m_nRef);
441 }
442
443 void LetDie()
444 {
445 if ( m_thread->IsDetached() && !::InterlockedDecrement(&m_nRef) )
446 delete m_thread;
447 }
448
bf1852e1 449private:
3ef22a5b
VZ
450 // the thread we're associated with
451 wxThread *m_thread;
452
bf1852e1
VZ
453 HANDLE m_hThread; // handle of the thread
454 wxThreadState m_state; // state, see wxThreadState enum
455 unsigned int m_priority; // thread priority in "wx" units
456 DWORD m_tid; // thread id
22f3361e 457
3ef22a5b
VZ
458 // number of threads which need this thread to remain alive, when the count
459 // reaches 0 we kill the owning wxThread -- and die ourselves with it
460 LONG m_nRef;
461
22f3361e 462 DECLARE_NO_COPY_CLASS(wxThreadInternal)
2bda0e17
KB
463};
464
3ef22a5b
VZ
465// small class which keeps a thread alive during its lifetime
466class wxThreadKeepAlive
467{
468public:
469 wxThreadKeepAlive(wxThreadInternal& thrImpl) : m_thrImpl(thrImpl)
470 { m_thrImpl.KeepAlive(); }
471 ~wxThreadKeepAlive()
472 { m_thrImpl.LetDie(); }
473
474private:
475 wxThreadInternal& m_thrImpl;
476};
477
478
08d7397c 479THREAD_RETVAL THREAD_CALLCONV wxThreadInternal::WinThreadStart(void *param)
2bda0e17 480{
9f51f2b6 481 THREAD_RETVAL rc;
3ef22a5b
VZ
482
483 wxThread * const thread = (wxThread *)param;
f6bcfd97
BP
484
485 // first of all, check whether we hadn't been cancelled already and don't
486 // start the user code at all then
0f00be4b 487 const bool hasExited = thread->m_internal->GetState() == STATE_EXITED;
5eba4394 488
0f00be4b 489 if ( hasExited )
696e1ea0 490 {
9f51f2b6 491 rc = (THREAD_RETVAL)-1;
696e1ea0 492 }
f6bcfd97 493 else // do run thread
bf1852e1 494 {
f6bcfd97
BP
495 // store the thread object in the TLS
496 if ( !::TlsSetValue(gs_tlsThisThread, thread) )
497 {
498 wxLogSysError(_("Can not start thread: error writing TLS."));
bf1852e1 499
f6bcfd97
BP
500 return (DWORD)-1;
501 }
bf1852e1 502
9f51f2b6 503 rc = (THREAD_RETVAL)thread->Entry();
5eba4394
DS
504 }
505
506 thread->OnExit();
507
508 // save IsDetached because thread object can be deleted by joinable
509 // threads after state is changed to STATE_EXITED.
510 bool isDetached = thread->IsDetached();
b568d04f 511
0f00be4b 512 if ( !hasExited )
5eba4394 513 {
f6bcfd97 514 // enter m_critsect before changing the thread state
3ef22a5b 515 wxCriticalSectionLocker lock(thread->m_critsect);
f6bcfd97 516 thread->m_internal->SetState(STATE_EXITED);
f6bcfd97 517 }
b568d04f 518
3ef22a5b 519 // the thread may delete itself now if it wants, we don't need it any more
0f00be4b
VZ
520 if ( isDetached )
521 thread->m_internal->LetDie();
bf1852e1 522
b568d04f 523 return rc;
2bda0e17
KB
524}
525
b568d04f 526void wxThreadInternal::SetPriority(unsigned int priority)
2bda0e17 527{
b568d04f 528 m_priority = priority;
3222fde2 529
77ffb593 530 // translate wxWidgets priority to the Windows one
bf1852e1
VZ
531 int win_priority;
532 if (m_priority <= 20)
533 win_priority = THREAD_PRIORITY_LOWEST;
534 else if (m_priority <= 40)
535 win_priority = THREAD_PRIORITY_BELOW_NORMAL;
536 else if (m_priority <= 60)
537 win_priority = THREAD_PRIORITY_NORMAL;
538 else if (m_priority <= 80)
539 win_priority = THREAD_PRIORITY_ABOVE_NORMAL;
540 else if (m_priority <= 100)
541 win_priority = THREAD_PRIORITY_HIGHEST;
3222fde2
VZ
542 else
543 {
223d09f6 544 wxFAIL_MSG(wxT("invalid value of thread priority parameter"));
bf1852e1 545 win_priority = THREAD_PRIORITY_NORMAL;
3222fde2
VZ
546 }
547
b568d04f 548 if ( !::SetThreadPriority(m_hThread, win_priority) )
bee503b0
VZ
549 {
550 wxLogSysError(_("Can't set thread priority"));
551 }
b568d04f
VZ
552}
553
6fe73788 554bool wxThreadInternal::Create(wxThread *thread, unsigned int stackSize)
b568d04f 555{
50ef4401
VZ
556 wxASSERT_MSG( m_state == STATE_NEW && !m_hThread,
557 _T("Create()ing thread twice?") );
558
b568d04f
VZ
559 // for compilers which have it, we should use C RTL function for thread
560 // creation instead of Win32 API one because otherwise we will have memory
561 // leaks if the thread uses C RTL (and most threads do)
9f51f2b6 562#ifdef wxUSE_BEGIN_THREAD
414c639c
VZ
563
564 // Watcom is reported to not like 0 stack size (which means "use default"
565 // for the other compilers and is also the default value for stackSize)
566#ifdef __WATCOMC__
567 if ( !stackSize )
568 stackSize = 10240;
569#endif // __WATCOMC__
570
9f51f2b6
VZ
571 m_hThread = (HANDLE)_beginthreadex
572 (
6fe73788
RL
573 NULL, // default security
574 stackSize,
575 wxThreadInternal::WinThreadStart, // entry point
576 thread,
577 CREATE_SUSPENDED,
578 (unsigned int *)&m_tid
9f51f2b6 579 );
611cb666 580#else // compiler doesn't have _beginthreadex
b568d04f
VZ
581 m_hThread = ::CreateThread
582 (
583 NULL, // default security
414c639c 584 stackSize, // stack size
9f51f2b6 585 wxThreadInternal::WinThreadStart, // thread entry point
b568d04f
VZ
586 (LPVOID)thread, // parameter
587 CREATE_SUSPENDED, // flags
588 &m_tid // [out] thread id
589 );
611cb666 590#endif // _beginthreadex/CreateThread
b568d04f
VZ
591
592 if ( m_hThread == NULL )
593 {
594 wxLogSysError(_("Can't create thread"));
595
3ef22a5b 596 return false;
b568d04f
VZ
597 }
598
599 if ( m_priority != WXTHREAD_DEFAULT_PRIORITY )
600 {
601 SetPriority(m_priority);
602 }
3222fde2 603
3ef22a5b 604 return true;
2bda0e17
KB
605}
606
68d41720
VZ
607wxThreadError wxThreadInternal::Kill()
608{
609 if ( !::TerminateThread(m_hThread, (DWORD)-1) )
610 {
611 wxLogSysError(_("Couldn't terminate thread"));
612
613 return wxTHREAD_MISC_ERROR;
614 }
615
616 Free();
617
618 return wxTHREAD_NO_ERROR;
619}
620
621wxThreadError
3ef22a5b
VZ
622wxThreadInternal::WaitForTerminate(wxCriticalSection& cs,
623 wxThread::ExitCode *pRc,
624 wxThread *threadToDelete)
68d41720 625{
3ef22a5b
VZ
626 // prevent the thread C++ object from disappearing as long as we are using
627 // it here
628 wxThreadKeepAlive keepAlive(*this);
629
630
631 // we may either wait passively for the thread to terminate (when called
632 // from Wait()) or ask it to terminate (when called from Delete())
633 bool shouldDelete = threadToDelete != NULL;
634
68d41720
VZ
635 wxThread::ExitCode rc = 0;
636
0f00be4b
VZ
637 // we might need to resume the thread if it's currently stopped
638 bool shouldResume = false;
68d41720 639
0f00be4b
VZ
640 // as Delete() (which calls us) is always safe to call we need to consider
641 // all possible states
68d41720
VZ
642 {
643 wxCriticalSectionLocker lock(cs);
644
645 if ( m_state == STATE_NEW )
646 {
3ef22a5b 647 if ( shouldDelete )
68d41720 648 {
63fa42b3
VZ
649 // WinThreadStart() will see it and terminate immediately, no
650 // need to cancel the thread -- but we still need to resume it
651 // to let it run
68d41720
VZ
652 m_state = STATE_EXITED;
653
0f00be4b
VZ
654 // we must call Resume() as the thread hasn't been initially
655 // resumed yet (and as Resume() it knows about STATE_EXITED
656 // special case, it won't touch it and WinThreadStart() will
657 // just exit immediately)
658 shouldResume = true;
3ef22a5b 659 shouldDelete = false;
68d41720 660 }
0f00be4b
VZ
661 //else: shouldResume is correctly set to false here, wait until
662 // someone else runs the thread and it finishes
68d41720 663 }
0f00be4b 664 else // running, paused, cancelled or even exited
68d41720
VZ
665 {
666 shouldResume = m_state == STATE_PAUSED;
667 }
668 }
669
670 // resume the thread if it is paused
671 if ( shouldResume )
672 Resume();
673
0f00be4b
VZ
674 // ask the thread to terminate
675 if ( shouldDelete )
68d41720 676 {
0f00be4b 677 wxCriticalSectionLocker lock(cs);
68d41720 678
0f00be4b
VZ
679 Cancel();
680 }
68d41720 681
68d41720 682
0f00be4b
VZ
683 // now wait for thread to finish
684 if ( wxThread::IsMain() )
685 {
686 // set flag for wxIsWaitingForThread()
687 gs_waitingForThread = true;
688 }
689
690 // we can't just wait for the thread to terminate because it might be
691 // calling some GUI functions and so it will never terminate before we
692 // process the Windows messages that result from these functions
693 // (note that even in console applications we might have to process
694 // messages if we use wxExecute() or timers or ...)
695 DWORD result wxDUMMY_INITIALIZE(0);
696 do
697 {
698 if ( wxThread::IsMain() )
68d41720 699 {
0f00be4b
VZ
700 // give the thread we're waiting for chance to do the GUI call
701 // it might be in
702 if ( (gs_nWaitingForGui > 0) && wxGuiOwnedByMainThread() )
68d41720 703 {
0f00be4b 704 wxMutexGuiLeave();
68d41720 705 }
0f00be4b 706 }
68d41720 707
f54632db 708#if !defined(QS_ALLPOSTMESSAGE)
a92e7f30
JS
709#define QS_ALLPOSTMESSAGE 0
710#endif
711
0f00be4b
VZ
712 result = ::MsgWaitForMultipleObjects
713 (
714 1, // number of objects to wait for
715 &m_hThread, // the objects
716 false, // don't wait for all objects
717 INFINITE, // no timeout
a92e7f30 718 QS_ALLINPUT|QS_ALLPOSTMESSAGE // return as soon as there are any events
0f00be4b
VZ
719 );
720
721 switch ( result )
722 {
723 case 0xFFFFFFFF:
724 // error
725 wxLogSysError(_("Can not wait for thread termination"));
726 Kill();
727 return wxTHREAD_KILLED;
728
729 case WAIT_OBJECT_0:
730 // thread we're waiting for terminated
731 break;
732
733 case WAIT_OBJECT_0 + 1:
734 // new message arrived, process it -- but only if we're the
735 // main thread as we don't support processing messages in
736 // the other ones
737 //
738 // NB: we still must include QS_ALLINPUT even when waiting
739 // in a secondary thread because if it had created some
740 // window somehow (possible not even using wxWidgets)
741 // the system might dead lock then
742 if ( wxThread::IsMain() )
743 {
744 // it looks that sometimes WAIT_OBJECT_0 + 1 is
745 // returned but there are no messages in the thread
746 // queue -- prevent DoMessageFromThreadWait() from
747 // blocking inside ::GetMessage() forever in this case
748 ::PostMessage(NULL, WM_NULL, 0, 0);
749
750 wxAppTraits *traits = wxTheApp ? wxTheApp->GetTraits()
751 : NULL;
752
753 if ( traits && !traits->DoMessageFromThreadWait() )
68d41720 754 {
0f00be4b
VZ
755 // WM_QUIT received: kill the thread
756 Kill();
68d41720 757
0f00be4b
VZ
758 return wxTHREAD_KILLED;
759 }
760 }
761 break;
68d41720 762
0f00be4b
VZ
763 default:
764 wxFAIL_MSG(wxT("unexpected result of MsgWaitForMultipleObject"));
68d41720 765 }
0f00be4b
VZ
766 } while ( result != WAIT_OBJECT_0 );
767
768 if ( wxThread::IsMain() )
769 {
770 gs_waitingForThread = false;
68d41720
VZ
771 }
772
0f00be4b 773
68d41720
VZ
774 // although the thread might be already in the EXITED state it might not
775 // have terminated yet and so we are not sure that it has actually
776 // terminated if the "if" above hadn't been taken
7d0bf46a 777 for ( ;; )
68d41720
VZ
778 {
779 if ( !::GetExitCodeThread(m_hThread, (LPDWORD)&rc) )
780 {
781 wxLogLastError(wxT("GetExitCodeThread"));
782
783 rc = (wxThread::ExitCode)-1;
7d0bf46a
VZ
784
785 break;
68d41720 786 }
7d0bf46a
VZ
787
788 if ( (DWORD)rc != STILL_ACTIVE )
789 break;
790
791 // give the other thread some time to terminate, otherwise we may be
792 // starving it
793 ::Sleep(1);
794 }
68d41720
VZ
795
796 if ( pRc )
797 *pRc = rc;
798
3ef22a5b 799 // we don't need the thread handle any more in any case
4f45ba63
VZ
800 Free();
801
4f45ba63 802
68d41720
VZ
803 return rc == (wxThread::ExitCode)-1 ? wxTHREAD_MISC_ERROR
804 : wxTHREAD_NO_ERROR;
805}
806
bf1852e1 807bool wxThreadInternal::Suspend()
2bda0e17 808{
bf1852e1
VZ
809 DWORD nSuspendCount = ::SuspendThread(m_hThread);
810 if ( nSuspendCount == (DWORD)-1 )
bee503b0 811 {
bf1852e1
VZ
812 wxLogSysError(_("Can not suspend thread %x"), m_hThread);
813
3ef22a5b 814 return false;
bee503b0 815 }
2bda0e17 816
bf1852e1
VZ
817 m_state = STATE_PAUSED;
818
3ef22a5b 819 return true;
a6b0bd49
VZ
820}
821
bf1852e1 822bool wxThreadInternal::Resume()
a6b0bd49 823{
bf1852e1 824 DWORD nSuspendCount = ::ResumeThread(m_hThread);
a6b0bd49
VZ
825 if ( nSuspendCount == (DWORD)-1 )
826 {
bf1852e1 827 wxLogSysError(_("Can not resume thread %x"), m_hThread);
a6b0bd49 828
3ef22a5b 829 return false;
a6b0bd49
VZ
830 }
831
f6bcfd97
BP
832 // don't change the state from STATE_EXITED because it's special and means
833 // we are going to terminate without running any user code - if we did it,
0f00be4b 834 // the code in WaitForTerminate() wouldn't work
f6bcfd97
BP
835 if ( m_state != STATE_EXITED )
836 {
837 m_state = STATE_RUNNING;
838 }
bee503b0 839
3ef22a5b 840 return true;
a6b0bd49
VZ
841}
842
bf1852e1
VZ
843// static functions
844// ----------------
845
846wxThread *wxThread::This()
a6b0bd49 847{
b568d04f 848 wxThread *thread = (wxThread *)::TlsGetValue(gs_tlsThisThread);
bf1852e1
VZ
849
850 // be careful, 0 may be a valid return value as well
851 if ( !thread && (::GetLastError() != NO_ERROR) )
a6b0bd49 852 {
bf1852e1 853 wxLogSysError(_("Couldn't get the current thread pointer"));
a6b0bd49 854
bf1852e1 855 // return NULL...
a6b0bd49
VZ
856 }
857
bf1852e1
VZ
858 return thread;
859}
860
861bool wxThread::IsMain()
862{
5b65f136 863 return ::GetCurrentThreadId() == gs_idMainThread || gs_idMainThread == 0;
bf1852e1
VZ
864}
865
866void wxThread::Yield()
867{
b568d04f
VZ
868 // 0 argument to Sleep() is special and means to just give away the rest of
869 // our timeslice
bf1852e1
VZ
870 ::Sleep(0);
871}
872
873void wxThread::Sleep(unsigned long milliseconds)
874{
875 ::Sleep(milliseconds);
876}
877
ef8d96c2
VZ
878int wxThread::GetCPUCount()
879{
28a4627c
VZ
880 SYSTEM_INFO si;
881 GetSystemInfo(&si);
882
883 return si.dwNumberOfProcessors;
ef8d96c2
VZ
884}
885
4958ea8f
RD
886unsigned long wxThread::GetCurrentId()
887{
888 return (unsigned long)::GetCurrentThreadId();
889}
890
ef8d96c2
VZ
891bool wxThread::SetConcurrency(size_t level)
892{
7010702f
WS
893#ifdef __WXWINCE__
894 wxUnusedVar(level);
895 return false;
896#else
28a4627c
VZ
897 wxASSERT_MSG( IsMain(), _T("should only be called from the main thread") );
898
ef8d96c2 899 // ok only for the default one
28a4627c
VZ
900 if ( level == 0 )
901 return 0;
902
903 // get system affinity mask first
904 HANDLE hProcess = ::GetCurrentProcess();
975b6bcf 905 DWORD_PTR dwProcMask, dwSysMask;
28a4627c
VZ
906 if ( ::GetProcessAffinityMask(hProcess, &dwProcMask, &dwSysMask) == 0 )
907 {
908 wxLogLastError(_T("GetProcessAffinityMask"));
909
3ef22a5b 910 return false;
28a4627c
VZ
911 }
912
913 // how many CPUs have we got?
914 if ( dwSysMask == 1 )
915 {
916 // don't bother with all this complicated stuff - on a single
917 // processor system it doesn't make much sense anyhow
918 return level == 1;
919 }
920
921 // calculate the process mask: it's a bit vector with one bit per
922 // processor; we want to schedule the process to run on first level
923 // CPUs
924 DWORD bit = 1;
925 while ( bit )
926 {
927 if ( dwSysMask & bit )
928 {
929 // ok, we can set this bit
930 dwProcMask |= bit;
931
932 // another process added
933 if ( !--level )
934 {
935 // and that's enough
936 break;
937 }
938 }
939
940 // next bit
941 bit <<= 1;
942 }
943
944 // could we set all bits?
945 if ( level != 0 )
946 {
947 wxLogDebug(_T("bad level %u in wxThread::SetConcurrency()"), level);
948
3ef22a5b 949 return false;
28a4627c
VZ
950 }
951
952 // set it: we can't link to SetProcessAffinityMask() because it doesn't
953 // exist in Win9x, use RT binding instead
954
696e1ea0 955 typedef BOOL (*SETPROCESSAFFINITYMASK)(HANDLE, DWORD);
28a4627c
VZ
956
957 // can use static var because we're always in the main thread here
958 static SETPROCESSAFFINITYMASK pfnSetProcessAffinityMask = NULL;
959
960 if ( !pfnSetProcessAffinityMask )
961 {
962 HMODULE hModKernel = ::LoadLibrary(_T("kernel32"));
963 if ( hModKernel )
964 {
965 pfnSetProcessAffinityMask = (SETPROCESSAFFINITYMASK)
f6bcfd97 966 ::GetProcAddress(hModKernel, "SetProcessAffinityMask");
28a4627c
VZ
967 }
968
969 // we've discovered a MT version of Win9x!
970 wxASSERT_MSG( pfnSetProcessAffinityMask,
f6bcfd97 971 _T("this system has several CPUs but no SetProcessAffinityMask function?") );
28a4627c
VZ
972 }
973
974 if ( !pfnSetProcessAffinityMask )
975 {
976 // msg given above - do it only once
3ef22a5b 977 return false;
28a4627c
VZ
978 }
979
696e1ea0 980 if ( pfnSetProcessAffinityMask(hProcess, dwProcMask) == 0 )
28a4627c
VZ
981 {
982 wxLogLastError(_T("SetProcessAffinityMask"));
983
3ef22a5b 984 return false;
28a4627c 985 }
975b6bcf 986
3ef22a5b 987 return true;
7010702f 988#endif // __WXWINCE__/!__WXWINCE__
ef8d96c2
VZ
989}
990
b568d04f
VZ
991// ctor and dtor
992// -------------
993
994wxThread::wxThread(wxThreadKind kind)
995{
3ef22a5b 996 m_internal = new wxThreadInternal(this);
b568d04f
VZ
997
998 m_isDetached = kind == wxTHREAD_DETACHED;
999}
1000
1001wxThread::~wxThread()
1002{
9fc3ad34 1003 delete m_internal;
b568d04f
VZ
1004}
1005
bf1852e1
VZ
1006// create/start thread
1007// -------------------
1008
6fe73788 1009wxThreadError wxThread::Create(unsigned int stackSize)
bf1852e1 1010{
b568d04f
VZ
1011 wxCriticalSectionLocker lock(m_critsect);
1012
6fe73788 1013 if ( !m_internal->Create(this, stackSize) )
bf1852e1 1014 return wxTHREAD_NO_RESOURCE;
bee503b0 1015
a6b0bd49 1016 return wxTHREAD_NO_ERROR;
2bda0e17
KB
1017}
1018
bf1852e1 1019wxThreadError wxThread::Run()
2bda0e17 1020{
bf1852e1
VZ
1021 wxCriticalSectionLocker lock(m_critsect);
1022
9fc3ad34 1023 if ( m_internal->GetState() != STATE_NEW )
bf1852e1
VZ
1024 {
1025 // actually, it may be almost any state at all, not only STATE_RUNNING
1026 return wxTHREAD_RUNNING;
1027 }
1028
b568d04f 1029 // the thread has just been created and is still suspended - let it run
bf1852e1 1030 return Resume();
2bda0e17
KB
1031}
1032
bf1852e1
VZ
1033// suspend/resume thread
1034// ---------------------
1035
1036wxThreadError wxThread::Pause()
2bda0e17 1037{
bf1852e1
VZ
1038 wxCriticalSectionLocker lock(m_critsect);
1039
9fc3ad34 1040 return m_internal->Suspend() ? wxTHREAD_NO_ERROR : wxTHREAD_MISC_ERROR;
2bda0e17
KB
1041}
1042
bf1852e1 1043wxThreadError wxThread::Resume()
2bda0e17 1044{
bf1852e1
VZ
1045 wxCriticalSectionLocker lock(m_critsect);
1046
9fc3ad34 1047 return m_internal->Resume() ? wxTHREAD_NO_ERROR : wxTHREAD_MISC_ERROR;
2bda0e17
KB
1048}
1049
bf1852e1
VZ
1050// stopping thread
1051// ---------------
1052
b568d04f
VZ
1053wxThread::ExitCode wxThread::Wait()
1054{
1055 // although under Windows we can wait for any thread, it's an error to
1056 // wait for a detached one in wxWin API
1057 wxCHECK_MSG( !IsDetached(), (ExitCode)-1,
68d41720 1058 _T("wxThread::Wait(): can't wait for detached thread") );
b568d04f
VZ
1059
1060 ExitCode rc = (ExitCode)-1;
1061
3ef22a5b 1062 (void)m_internal->WaitForTerminate(m_critsect, &rc);
b568d04f 1063
b568d04f
VZ
1064 return rc;
1065}
1066
1067wxThreadError wxThread::Delete(ExitCode *pRc)
2bda0e17 1068{
3ef22a5b 1069 return m_internal->WaitForTerminate(m_critsect, pRc, this);
2bda0e17
KB
1070}
1071
bf1852e1 1072wxThreadError wxThread::Kill()
2bda0e17 1073{
bf1852e1
VZ
1074 if ( !IsRunning() )
1075 return wxTHREAD_NOT_RUNNING;
1076
68d41720 1077 wxThreadError rc = m_internal->Kill();
b568d04f
VZ
1078
1079 if ( IsDetached() )
1080 {
1081 delete this;
1082 }
57fd9bb2
VZ
1083 else // joinable
1084 {
1085 // update the status of the joinable thread
1086 wxCriticalSectionLocker lock(m_critsect);
1087 m_internal->SetState(STATE_EXITED);
1088 }
bf1852e1 1089
68d41720 1090 return rc;
2bda0e17
KB
1091}
1092
b568d04f 1093void wxThread::Exit(ExitCode status)
2bda0e17 1094{
9fc3ad34 1095 m_internal->Free();
2bda0e17 1096
b568d04f
VZ
1097 if ( IsDetached() )
1098 {
1099 delete this;
1100 }
57fd9bb2
VZ
1101 else // joinable
1102 {
1103 // update the status of the joinable thread
1104 wxCriticalSectionLocker lock(m_critsect);
1105 m_internal->SetState(STATE_EXITED);
1106 }
b568d04f 1107
9f51f2b6 1108#ifdef wxUSE_BEGIN_THREAD
b568d04f
VZ
1109 _endthreadex((unsigned)status);
1110#else // !VC++
bf1852e1 1111 ::ExitThread((DWORD)status);
b568d04f 1112#endif // VC++/!VC++
2bda0e17 1113
223d09f6 1114 wxFAIL_MSG(wxT("Couldn't return from ExitThread()!"));
bf1852e1 1115}
2bda0e17 1116
b568d04f
VZ
1117// priority setting
1118// ----------------
1119
bf1852e1
VZ
1120void wxThread::SetPriority(unsigned int prio)
1121{
1122 wxCriticalSectionLocker lock(m_critsect);
1123
9fc3ad34 1124 m_internal->SetPriority(prio);
bf1852e1 1125}
2bda0e17 1126
bf1852e1
VZ
1127unsigned int wxThread::GetPriority() const
1128{
b568d04f 1129 wxCriticalSectionLocker lock((wxCriticalSection &)m_critsect); // const_cast
2bda0e17 1130
9fc3ad34 1131 return m_internal->GetPriority();
2bda0e17
KB
1132}
1133
b568d04f 1134unsigned long wxThread::GetId() const
2bda0e17 1135{
b568d04f 1136 wxCriticalSectionLocker lock((wxCriticalSection &)m_critsect); // const_cast
bf1852e1 1137
9fc3ad34 1138 return (unsigned long)m_internal->GetId();
2bda0e17
KB
1139}
1140
72fd19a1
JS
1141bool wxThread::IsRunning() const
1142{
b568d04f 1143 wxCriticalSectionLocker lock((wxCriticalSection &)m_critsect); // const_cast
bf1852e1 1144
9fc3ad34 1145 return m_internal->GetState() == STATE_RUNNING;
72fd19a1
JS
1146}
1147
1148bool wxThread::IsAlive() const
1149{
b568d04f 1150 wxCriticalSectionLocker lock((wxCriticalSection &)m_critsect); // const_cast
bf1852e1 1151
9fc3ad34
VZ
1152 return (m_internal->GetState() == STATE_RUNNING) ||
1153 (m_internal->GetState() == STATE_PAUSED);
72fd19a1
JS
1154}
1155
a737331d
GL
1156bool wxThread::IsPaused() const
1157{
b568d04f 1158 wxCriticalSectionLocker lock((wxCriticalSection &)m_critsect); // const_cast
a737331d 1159
9fc3ad34 1160 return m_internal->GetState() == STATE_PAUSED;
a737331d
GL
1161}
1162
8c10faf1 1163bool wxThread::TestDestroy()
2bda0e17 1164{
b568d04f 1165 wxCriticalSectionLocker lock((wxCriticalSection &)m_critsect); // const_cast
bf1852e1 1166
9fc3ad34 1167 return m_internal->GetState() == STATE_CANCELED;
2bda0e17
KB
1168}
1169
3222fde2
VZ
1170// ----------------------------------------------------------------------------
1171// Automatic initialization for thread module
1172// ----------------------------------------------------------------------------
2bda0e17 1173
3222fde2 1174class wxThreadModule : public wxModule
a6b0bd49 1175{
3222fde2
VZ
1176public:
1177 virtual bool OnInit();
1178 virtual void OnExit();
d524867f 1179
3222fde2
VZ
1180private:
1181 DECLARE_DYNAMIC_CLASS(wxThreadModule)
1182};
d524867f
RR
1183
1184IMPLEMENT_DYNAMIC_CLASS(wxThreadModule, wxModule)
1185
3222fde2 1186bool wxThreadModule::OnInit()
d524867f 1187{
bf1852e1 1188 // allocate TLS index for storing the pointer to the current thread
b568d04f
VZ
1189 gs_tlsThisThread = ::TlsAlloc();
1190 if ( gs_tlsThisThread == 0xFFFFFFFF )
bf1852e1
VZ
1191 {
1192 // in normal circumstances it will only happen if all other
1193 // TLS_MINIMUM_AVAILABLE (>= 64) indices are already taken - in other
1194 // words, this should never happen
f6bcfd97 1195 wxLogSysError(_("Thread module initialization failed: impossible to allocate index in thread local storage"));
bf1852e1 1196
3ef22a5b 1197 return false;
bf1852e1
VZ
1198 }
1199
1200 // main thread doesn't have associated wxThread object, so store 0 in the
1201 // TLS instead
b568d04f 1202 if ( !::TlsSetValue(gs_tlsThisThread, (LPVOID)0) )
bf1852e1 1203 {
b568d04f
VZ
1204 ::TlsFree(gs_tlsThisThread);
1205 gs_tlsThisThread = 0xFFFFFFFF;
bf1852e1 1206
f6bcfd97 1207 wxLogSysError(_("Thread module initialization failed: can not store value in thread local storage"));
bf1852e1 1208
3ef22a5b 1209 return false;
bf1852e1
VZ
1210 }
1211
b568d04f 1212 gs_critsectWaitingForGui = new wxCriticalSection();
bee503b0 1213
b568d04f
VZ
1214 gs_critsectGui = new wxCriticalSection();
1215 gs_critsectGui->Enter();
bee503b0 1216
3ef22a5b
VZ
1217 gs_critsectThreadDelete = new wxCriticalSection;
1218
bf1852e1 1219 // no error return for GetCurrentThreadId()
b568d04f 1220 gs_idMainThread = ::GetCurrentThreadId();
3222fde2 1221
3ef22a5b 1222 return true;
d524867f
RR
1223}
1224
3222fde2 1225void wxThreadModule::OnExit()
d524867f 1226{
b568d04f 1227 if ( !::TlsFree(gs_tlsThisThread) )
bf1852e1 1228 {
f6bcfd97 1229 wxLogLastError(wxT("TlsFree failed."));
bf1852e1
VZ
1230 }
1231
3ef22a5b
VZ
1232 delete gs_critsectThreadDelete;
1233 gs_critsectThreadDelete = NULL;
1234
b568d04f 1235 if ( gs_critsectGui )
3222fde2 1236 {
b568d04f
VZ
1237 gs_critsectGui->Leave();
1238 delete gs_critsectGui;
1239 gs_critsectGui = NULL;
3222fde2 1240 }
bee503b0 1241
b568d04f
VZ
1242 delete gs_critsectWaitingForGui;
1243 gs_critsectWaitingForGui = NULL;
3222fde2
VZ
1244}
1245
bee503b0 1246// ----------------------------------------------------------------------------
b568d04f 1247// under Windows, these functions are implemented using a critical section and
3222fde2 1248// not a mutex, so the names are a bit confusing
bee503b0
VZ
1249// ----------------------------------------------------------------------------
1250
0c2f35dc 1251void WXDLLIMPEXP_BASE wxMutexGuiEnter()
3222fde2 1252{
bee503b0
VZ
1253 // this would dead lock everything...
1254 wxASSERT_MSG( !wxThread::IsMain(),
223d09f6 1255 wxT("main thread doesn't want to block in wxMutexGuiEnter()!") );
bee503b0
VZ
1256
1257 // the order in which we enter the critical sections here is crucial!!
1258
1259 // set the flag telling to the main thread that we want to do some GUI
1260 {
b568d04f 1261 wxCriticalSectionLocker enter(*gs_critsectWaitingForGui);
bee503b0 1262
b568d04f 1263 gs_nWaitingForGui++;
bee503b0
VZ
1264 }
1265
1266 wxWakeUpMainThread();
1267
1268 // now we may block here because the main thread will soon let us in
1269 // (during the next iteration of OnIdle())
b568d04f 1270 gs_critsectGui->Enter();
3222fde2
VZ
1271}
1272
0c2f35dc 1273void WXDLLIMPEXP_BASE wxMutexGuiLeave()
3222fde2 1274{
b568d04f 1275 wxCriticalSectionLocker enter(*gs_critsectWaitingForGui);
bee503b0
VZ
1276
1277 if ( wxThread::IsMain() )
1278 {
3ef22a5b 1279 gs_bGuiOwnedByMainThread = false;
bee503b0
VZ
1280 }
1281 else
1282 {
4d1c1c3c 1283 // decrement the number of threads waiting for GUI access now
b568d04f 1284 wxASSERT_MSG( gs_nWaitingForGui > 0,
223d09f6 1285 wxT("calling wxMutexGuiLeave() without entering it first?") );
bee503b0 1286
b568d04f 1287 gs_nWaitingForGui--;
bee503b0
VZ
1288
1289 wxWakeUpMainThread();
1290 }
1291
b568d04f 1292 gs_critsectGui->Leave();
bee503b0
VZ
1293}
1294
0c2f35dc 1295void WXDLLIMPEXP_BASE wxMutexGuiLeaveOrEnter()
bee503b0
VZ
1296{
1297 wxASSERT_MSG( wxThread::IsMain(),
223d09f6 1298 wxT("only main thread may call wxMutexGuiLeaveOrEnter()!") );
bee503b0 1299
b568d04f 1300 wxCriticalSectionLocker enter(*gs_critsectWaitingForGui);
bee503b0 1301
b568d04f 1302 if ( gs_nWaitingForGui == 0 )
bee503b0
VZ
1303 {
1304 // no threads are waiting for GUI - so we may acquire the lock without
1305 // any danger (but only if we don't already have it)
1306 if ( !wxGuiOwnedByMainThread() )
1307 {
b568d04f 1308 gs_critsectGui->Enter();
bee503b0 1309
3ef22a5b 1310 gs_bGuiOwnedByMainThread = true;
bee503b0
VZ
1311 }
1312 //else: already have it, nothing to do
1313 }
1314 else
1315 {
1316 // some threads are waiting, release the GUI lock if we have it
1317 if ( wxGuiOwnedByMainThread() )
1318 {
1319 wxMutexGuiLeave();
1320 }
1321 //else: some other worker thread is doing GUI
1322 }
1323}
1324
0c2f35dc 1325bool WXDLLIMPEXP_BASE wxGuiOwnedByMainThread()
bee503b0 1326{
b568d04f 1327 return gs_bGuiOwnedByMainThread;
bee503b0
VZ
1328}
1329
1330// wake up the main thread if it's in ::GetMessage()
0c2f35dc 1331void WXDLLIMPEXP_BASE wxWakeUpMainThread()
bee503b0
VZ
1332{
1333 // sending any message would do - hopefully WM_NULL is harmless enough
b568d04f 1334 if ( !::PostThreadMessage(gs_idMainThread, WM_NULL, 0, 0) )
bee503b0
VZ
1335 {
1336 // should never happen
f6bcfd97 1337 wxLogLastError(wxT("PostThreadMessage(WM_NULL)"));
bee503b0 1338 }
3222fde2 1339}
d524867f 1340
0c2f35dc 1341bool WXDLLIMPEXP_BASE wxIsWaitingForThread()
bf1852e1 1342{
b568d04f 1343 return gs_waitingForThread;
bf1852e1
VZ
1344}
1345
9e84b847
VZ
1346// ----------------------------------------------------------------------------
1347// include common implementation code
1348// ----------------------------------------------------------------------------
1349
1350#include "wx/thrimpl.cpp"
1351
3222fde2 1352#endif // wxUSE_THREADS
6fe73788 1353