+/////////////////////////////////////////////////////////////////////////////
+// Name: threadpsx.cpp
+// Purpose: wxThread (Posix) Implementation
+// Author: Original from Wolfram Gloger/Guilhem Lavaux
+// Modified by:
+// Created: 04/22/98
+// RCS-ID: $Id$
+// Copyright: (c) Wolfram Gloger (1996, 1997); Guilhem Lavaux (1998)
+// Licence: wxWindows licence
+/////////////////////////////////////////////////////////////////////////////
+#ifdef __GNUG__
+#pragma implementation "thread.h"
+#endif
+
+#include <stdio.h>
+#include <unistd.h>
+#include <sched.h>
+#include <pthread.h>
+
+enum thread_state {
+ STATE_IDLE = 0,
+ STATE_RUNNING,
+ STATE_CANCELED,
+ STATE_EXITED
+};
+
+/////////////////////////////////////////////////////////////////////////////
+// Static variables
+/////////////////////////////////////////////////////////////////////////////
+
+#include "thread.h"
+
+static pthread_t p_mainid;
+wxMutex wxMainMutex; // controls access to all GUI functions
+
+/////////////////////////////////////////////////////////////////////////////
+// GUI thread manager
+/////////////////////////////////////////////////////////////////////////////
+#include "threadgui.inc"
+
+/////////////////////////////////////////////////////////////////////////////
+// wxThread: Posix Thread implementation (Mutex)
+/////////////////////////////////////////////////////////////////////////////
+
+class wxMutexInternal {
+public:
+ pthread_mutex_t p_mutex;
+};
+
+wxMutex::wxMutex(void)
+{
+ p_internal = new wxMutexInternal;
+ pthread_mutex_init(&(p_internal->p_mutex), NULL);
+ m_locked = false;
+}
+
+wxMutex::~wxMutex(void)
+{
+ if (m_locked)
+ pthread_mutex_unlock(&(p_internal->p_mutex));
+ pthread_mutex_destroy(&(p_internal->p_mutex));
+ delete p_internal;
+}
+
+wxMutexError wxMutex::Lock(void)
+{
+ int err;
+
+ err = pthread_mutex_lock(&(p_internal->p_mutex));
+ switch (err) {
+ case EDEADLK: return MUTEX_DEAD_LOCK;
+ }
+ m_locked++;
+ return MUTEX_NO_ERROR;
+}
+
+wxMutexError wxMutex::TryLock(void)
+{
+ int err;
+
+ if (m_locked)
+ return MUTEX_BUSY;
+ err = pthread_mutex_trylock(&(p_internal->p_mutex));
+ switch (err) {
+ case EBUSY: return MUTEX_BUSY;
+ }
+ m_locked++;
+ return MUTEX_NO_ERROR;
+}
+
+wxMutexError wxMutex::Unlock(void)
+{
+ if (m_locked > 0) m_locked--;
+ pthread_mutex_unlock(&(p_internal->p_mutex));
+ return MUTEX_NO_ERROR;
+}
+
+/////////////////////////////////////////////////////////////////////////////
+// wxThread: Posix Thread implementation (Condition)
+/////////////////////////////////////////////////////////////////////////////
+
+class wxConditionInternal {
+public:
+ pthread_cond_t p_condition;
+};
+
+wxCondition::wxCondition(void)
+{
+ p_internal = new wxConditionInternal;
+ pthread_cond_init(&(p_internal->p_condition), NULL);
+}
+
+wxCondition::~wxCondition(void)
+{
+ pthread_cond_destroy(&(p_internal->p_condition));
+ delete p_internal;
+}
+
+void wxCondition::Wait(wxMutex& mutex)
+{
+ pthread_cond_wait(&(p_internal->p_condition), &(mutex.p_internal->p_mutex));
+}
+
+bool wxCondition::Wait(wxMutex& mutex, unsigned long sec, unsigned long nsec)
+{
+ struct timespec tspec;
+
+ tspec.tv_sec = time(NULL)+sec;
+ tspec.tv_nsec = nsec;
+ return (pthread_cond_timedwait(&(p_internal->p_condition), &(mutex.p_internal->p_mutex), &tspec) != ETIMEDOUT);
+}
+
+void wxCondition::Signal(void)
+{
+ pthread_cond_signal(&(p_internal->p_condition));
+}
+
+void wxCondition::Broadcast(void)
+{
+ pthread_cond_broadcast(&(p_internal->p_condition));
+}
+
+/////////////////////////////////////////////////////////////////////////////
+// wxThread: Posix Thread implementation (Thread)
+/////////////////////////////////////////////////////////////////////////////
+
+class wxThreadInternal {
+public:
+ wxThreadInternal() { state = STATE_IDLE; }
+ ~wxThreadInternal() {}
+ static void *PthreadStart(void *ptr);
+ pthread_t thread_id;
+ int state;
+ int prio;
+};
+
+void *wxThreadInternal::PthreadStart(void *ptr)
+{
+ wxThread *thread = (wxThread *)ptr;
+
+ pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
+ void* status = thread->Entry();
+ thread->Exit(status);
+
+ return NULL;
+}
+
+wxThreadError wxThread::Create()
+{
+ pthread_attr_t a;
+ int min_prio, max_prio, p;
+ struct sched_param sp;
+
+ if (p_internal->state != STATE_IDLE)
+ return THREAD_RUNNING;
+
+ // Change thread priority
+ pthread_attr_init(&a);
+ pthread_attr_getschedpolicy(&a, &p);
+
+ min_prio = sched_get_priority_min(p);
+ max_prio = sched_get_priority_max(p);
+
+ pthread_attr_getschedparam(&a, &sp);
+ sp.sched_priority = min_prio +
+ (p_internal->prio*(max_prio-min_prio))/100;
+ pthread_attr_setschedparam(&a, &sp);
+
+ // this is the point of no return
+ p_internal->state = STATE_RUNNING;
+ if (pthread_create(&p_internal->thread_id, &a,
+ wxThreadInternal::PthreadStart, (void *)this) != 0) {
+ p_internal->state = STATE_IDLE;
+ pthread_attr_destroy(&a);
+ return THREAD_NO_RESOURCE;
+ }
+ pthread_attr_destroy(&a);
+ return THREAD_NO_ERROR;
+}
+
+void wxThread::SetPriority(int prio)
+{
+ if (p_internal->state == STATE_RUNNING)
+ return;
+
+ if (prio > 100)
+ prio = 100;
+ if (prio < 0)
+ prio = 0;
+ p_internal->prio = prio;
+}
+
+int wxThread::GetPriority(void)
+{
+ return p_internal->prio;
+}
+
+void wxThread::DeferDestroy(bool on)
+{
+ if (on)
+ pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, NULL);
+ else
+ pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
+}
+
+wxThreadError wxThread::Destroy(void)
+{
+ int res = 0;
+
+ if (p_internal->state == STATE_RUNNING) {
+ res = pthread_cancel(p_internal->thread_id);
+ if (res == 0)
+ p_internal->state = STATE_CANCELED;
+ }
+ return THREAD_NO_ERROR;
+}
+
+void *wxThread::Join()
+{
+ void* status = 0;
+
+ if (p_internal->state != STATE_IDLE) {
+ bool do_unlock = wxThread::IsMain();
+
+ while (p_internal->state == STATE_RUNNING)
+ wxYield();
+
+ if (do_unlock)
+ wxMainMutex.Unlock();
+ pthread_join(p_internal->thread_id, &status);
+ if (do_unlock)
+ wxMainMutex.Lock();
+ p_internal->state = STATE_IDLE;
+ }
+ return status;
+}
+
+unsigned long wxThread::GetID()
+{
+ return (unsigned long)p_internal->thread_id;
+}
+
+void wxThread::Exit(void *status)
+{
+ wxThread* ptr = this;
+
+ THREAD_SEND_EXIT_MSG(ptr);
+ p_internal->state = STATE_EXITED;
+ pthread_exit(status);
+}
+
+void wxThread::TestDestroy()
+{
+ pthread_testcancel();
+}
+
+bool wxThread::IsMain(void)
+{
+ return (bool)pthread_equal(pthread_self(), p_mainid);
+}
+
+wxThread::wxThread()
+{
+ p_internal = new wxThreadInternal();
+}
+
+wxThread::~wxThread()
+{
+ Destroy();
+ Join();
+ delete p_internal;
+}
+
+// The default callback just joins the thread and throws away the result.
+void wxThread::OnExit()
+{
+}
+
+// Automatic initialization
+class wxThreadModule : public wxModule {
+ DECLARE_DYNAMIC_CLASS(wxThreadModule)
+public:
+ virtual bool OnInit(void) {
+ wxThreadGuiInit();
+ p_mainid = pthread_self();
+ wxMainMutex.Lock();
+
+ return TRUE;
+ }
+
+ virtual void OnExit(void) {
+ wxMainMutex.Unlock();
+ wxThreadGuiExit();
+ }
+};
+
+IMPLEMENT_DYNAMIC_CLASS(wxThreadModule, wxModule)