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