libcec v0.5 (WIP)
[deb_libcec.git] / src / lib / platform / threads.cpp
CommitLineData
abbca718
LOK
1/*
2 * This file is part of the libCEC(R) library.
3 *
4 * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
6 *
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
8 *
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.
13 *
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.
18 *
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.
22 *
23 *
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
26 *
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/
31 */
32
33#include "threads.h"
34#include "timeutils.h"
35
b9187cc6
LOK
36using namespace CEC;
37
abbca718
LOK
38CMutex::CMutex(void)
39{
40 pthread_mutex_init(&m_mutex, NULL);
abbca718
LOK
41}
42
43CMutex::~CMutex(void)
44{
abbca718
LOK
45 pthread_mutex_destroy(&m_mutex);
46}
47
60fa4578 48bool CMutex::TryLock(void)
abbca718 49{
60fa4578 50 return (pthread_mutex_trylock(&m_mutex) == 0);
abbca718
LOK
51}
52
53bool CMutex::Lock(void)
54{
60fa4578 55 return (pthread_mutex_lock(&m_mutex) == 0);
abbca718
LOK
56}
57
58void CMutex::Unlock(void)
59{
60 pthread_mutex_unlock(&m_mutex);
abbca718
LOK
61}
62
60fa4578
LOK
63CLockObject::CLockObject(CMutex *mutex) :
64 m_mutex(mutex)
abbca718 65{
5559c36e
LOK
66 if (m_mutex)
67 m_mutex->Lock();
abbca718
LOK
68}
69
70CLockObject::~CLockObject(void)
a8f0bd18
LOK
71{
72 Leave();
73 m_mutex = NULL;
74}
75
76void CLockObject::Leave(void)
abbca718 77{
5559c36e
LOK
78 if (m_mutex)
79 m_mutex->Unlock();
a8f0bd18
LOK
80}
81
82void CLockObject::Lock(void)
83{
5559c36e
LOK
84 if (m_mutex)
85 m_mutex->Lock();
abbca718
LOK
86}
87
88CCondition::CCondition(void)
89{
90 pthread_cond_init(&m_cond, NULL);
abbca718
LOK
91}
92
93CCondition::~CCondition(void)
94{
95 pthread_cond_broadcast(&m_cond);
96 pthread_cond_destroy(&m_cond);
97}
98
5559c36e 99void CCondition::Broadcast(void)
abbca718
LOK
100{
101 pthread_cond_broadcast(&m_cond);
102}
103
5559c36e
LOK
104void CCondition::Signal(void)
105{
106 pthread_cond_signal(&m_cond);
107}
108
25701fa6 109bool CCondition::Wait(CMutex *mutex, uint32_t iTimeout)
abbca718 110{
60fa4578 111 bool bReturn(false);
5559c36e
LOK
112 sched_yield();
113 if (mutex)
abbca718 114 {
5559c36e
LOK
115 struct timespec abstime;
116 struct timeval now;
25701fa6
LOK
117 gettimeofday(&now, NULL);
118 iTimeout += now.tv_usec / 1000;
119 abstime.tv_sec = now.tv_sec + (time_t)(iTimeout / 1000);
120 abstime.tv_nsec = (int32_t)((iTimeout % (uint32_t)1000) * (uint32_t)1000000);
121 bReturn = (pthread_cond_timedwait(&m_cond, &mutex->m_mutex, &abstime) == 0);
abbca718
LOK
122 }
123
abbca718
LOK
124 return bReturn;
125}
126
25701fa6 127void CCondition::Sleep(uint32_t iTimeout)
abbca718 128{
abbca718
LOK
129 CCondition w;
130 CMutex m;
60fa4578 131 CLockObject lock(&m);
5559c36e 132 w.Wait(&m, iTimeout);
abbca718 133}
60fa4578
LOK
134
135CThread::CThread(void) :
136 m_bRunning(false),
137 m_bStop(false)
138{
139}
140
141CThread::~CThread(void)
142{
25701fa6 143 StopThread();
60fa4578
LOK
144}
145
146bool CThread::CreateThread(void)
147{
148 bool bReturn(false);
149
5559c36e
LOK
150 CLockObject lock(&m_threadMutex);
151 m_bStop = false;
60fa4578
LOK
152 if (!m_bRunning && pthread_create(&m_thread, NULL, (void *(*) (void *))&CThread::ThreadHandler, (void *)this) == 0)
153 {
154 m_bRunning = true;
60fa4578
LOK
155 bReturn = true;
156 }
157
158 return bReturn;
159}
160
161void *CThread::ThreadHandler(CThread *thread)
162{
5559c36e
LOK
163 void *retVal = NULL;
164
60fa4578 165 if (thread)
5559c36e
LOK
166 retVal = thread->Process();
167 thread->m_bRunning = false;
168
169 return retVal;
60fa4578
LOK
170}
171
5559c36e 172bool CThread::StopThread(bool bWaitForExit /* = true */)
60fa4578 173{
5559c36e 174 bool bReturn(false);
60fa4578 175 m_bStop = true;
5559c36e
LOK
176
177 m_threadCondition.Broadcast();
25701fa6
LOK
178 if (m_bRunning)
179 {
180 void *retVal;
181 if (bWaitForExit)
182 bReturn = (pthread_join(m_thread, &retVal) == 0);
183
184 m_bRunning = false;
185 }
5559c36e
LOK
186
187 return bReturn;
188}
189
25701fa6 190bool CThread::Sleep(uint32_t iTimeout)
5559c36e
LOK
191{
192 CLockObject lock(&m_threadMutex);
193 return m_bStop ? false :m_threadCondition.Wait(&m_threadMutex, iTimeout);
60fa4578 194}