2 * This file is part of the libCEC(R) library.
4 * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
9 * This program is dual-licensed; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
27 * For more information contact:
28 * Pulse-Eight Licensing <license@pulse-eight.com>
29 * http://www.pulse-eight.com/
30 * http://www.pulse-eight.net/
34 #include "timeutils.h"
38 CMutex::CMutex(bool bRecursive
/* = true */)
40 pthread_mutex_init(&m_mutex
, bRecursive
? GetMutexAttribute() : NULL
);
45 pthread_mutex_destroy(&m_mutex
);
48 bool CMutex::TryLock(void)
50 return (pthread_mutex_trylock(&m_mutex
) == 0);
53 bool CMutex::Lock(void)
55 return (pthread_mutex_lock(&m_mutex
) == 0);
58 void CMutex::Unlock(void)
60 pthread_mutex_unlock(&m_mutex
);
63 static pthread_mutexattr_t g_mutexAttr
;
64 pthread_mutexattr_t
*CMutex::GetMutexAttribute()
66 static bool bAttributeInitialised
= false;
67 if (!bAttributeInitialised
)
69 pthread_mutexattr_init(&g_mutexAttr
);
70 pthread_mutexattr_settype(&g_mutexAttr
, PTHREAD_MUTEX_RECURSIVE
);
71 bAttributeInitialised
= true;
76 CLockObject::CLockObject(CMutex
*mutex
, bool bTryLock
/* = false */) :
80 m_bLocked
= bTryLock
? m_mutex
->TryLock() : m_mutex
->Lock();
83 CLockObject::~CLockObject(void)
89 void CLockObject::Leave(void)
91 if (m_mutex
&& m_bLocked
)
98 void CLockObject::Lock(void)
101 m_bLocked
= m_mutex
->Lock();
104 CCondition::CCondition(void)
106 pthread_cond_init(&m_cond
, NULL
);
109 CCondition::~CCondition(void)
111 pthread_cond_broadcast(&m_cond
);
112 pthread_cond_destroy(&m_cond
);
115 void CCondition::Broadcast(void)
117 pthread_cond_broadcast(&m_cond
);
120 void CCondition::Signal(void)
122 pthread_cond_signal(&m_cond
);
125 bool CCondition::Wait(CMutex
*mutex
, uint32_t iTimeout
/* = 0 */)
133 struct timespec abstime
;
135 gettimeofday(&now
, NULL
);
136 iTimeout
+= now
.tv_usec
/ 1000;
137 abstime
.tv_sec
= now
.tv_sec
+ (time_t)(iTimeout
/ 1000);
138 abstime
.tv_nsec
= (int32_t)((iTimeout
% (uint32_t)1000) * (uint32_t)1000000);
139 bReturn
= (pthread_cond_timedwait(&m_cond
, &mutex
->m_mutex
, &abstime
) == 0);
143 bReturn
= (pthread_cond_wait(&m_cond
, &mutex
->m_mutex
) == 0);
150 void CCondition::Sleep(uint32_t iTimeout
)
154 CLockObject
lock(&m
);
155 w
.Wait(&m
, iTimeout
);
158 CThread::CThread(void) :
164 CThread::~CThread(void)
169 bool CThread::CreateThread(bool bWait
/* = true */)
173 CLockObject
lock(&m_threadMutex
);
175 if (!m_bRunning
&& pthread_create(&m_thread
, NULL
, (void *(*) (void *))&CThread::ThreadHandler
, (void *)this) == 0)
178 m_threadCondition
.Wait(&m_threadMutex
);
185 void *CThread::ThreadHandler(CThread
*thread
)
191 CLockObject
lock(&thread
->m_threadMutex
);
192 thread
->m_bRunning
= true;
194 thread
->m_threadCondition
.Broadcast();
196 retVal
= thread
->Process();
199 thread
->m_bRunning
= false;
201 thread
->m_threadCondition
.Broadcast();
207 bool CThread::StopThread(bool bWaitForExit
/* = true */)
212 m_threadCondition
.Broadcast();
215 if (bWaitForExit
&& m_bRunning
)
216 bReturn
= (pthread_join(m_thread
, &retVal
) == 0);
221 bool CThread::Sleep(uint32_t iTimeout
)
223 CLockObject
lock(&m_threadMutex
);
224 return m_bStop
? false : m_threadCondition
.Wait(&m_threadMutex
, iTimeout
);