cec: created a separate reader thread and fixed the 'lock timeout' bug
[deb_libcec.git] / src / lib / util / 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
36CMutex::CMutex(void)
37{
38 pthread_mutex_init(&m_mutex, NULL);
39 m_condition = new CCondition();
40 m_bLocked = false;
41}
42
43CMutex::~CMutex(void)
44{
45 delete m_condition;
46 pthread_mutex_destroy(&m_mutex);
47}
48
49bool CMutex::TryLock(int64_t iTimeout)
50{
51 m_bLocked = (pthread_mutex_trylock(&m_mutex) == 0);
52 if (!m_bLocked)
53 {
54 if (m_condition->Wait(this, iTimeout))
55 m_bLocked = (pthread_mutex_trylock(&m_mutex) == 0);
56 }
57
58 return m_bLocked;
59}
60
61bool CMutex::Lock(void)
62{
63 m_bLocked = (pthread_mutex_lock(&m_mutex) == 0);
64 return m_bLocked;
65}
66
67void CMutex::Unlock(void)
68{
69 pthread_mutex_unlock(&m_mutex);
70 m_bLocked = false;
71 m_condition->Signal();
72}
73
74CLockObject::CLockObject(CMutex *mutex, int64_t iTimeout /* = -1 */) :
75 m_mutex(mutex),
76 m_bLocked(false)
77{
78 if (iTimeout > 0)
79 m_bLocked = m_mutex->TryLock(iTimeout);
80 else
81 m_bLocked = m_mutex->Lock();
82}
83
84CLockObject::~CLockObject(void)
a8f0bd18
LOK
85{
86 Leave();
87 m_mutex = NULL;
88}
89
90void CLockObject::Leave(void)
abbca718
LOK
91{
92 m_mutex->Unlock();
93 m_bLocked = false;
a8f0bd18
LOK
94}
95
96void CLockObject::Lock(void)
97{
98 m_mutex->Lock();
99 m_bLocked = true;
abbca718
LOK
100}
101
102CCondition::CCondition(void)
103{
104 pthread_cond_init(&m_cond, NULL);
105 m_bSignaled = false;
106}
107
108CCondition::~CCondition(void)
109{
110 pthread_cond_broadcast(&m_cond);
111 pthread_cond_destroy(&m_cond);
112}
113
114void CCondition::Signal(void)
115{
116 pthread_cond_broadcast(&m_cond);
117}
118
119bool CCondition::Wait(CMutex *mutex, int64_t iTimeout)
120{
121 struct timespec abstime;
122 struct timeval now;
123 if (gettimeofday(&now, NULL) == 0)
124 {
125 iTimeout += now.tv_usec / 1000;
126 abstime.tv_sec = now.tv_sec + (time_t)(iTimeout / 1000);
127 abstime.tv_nsec = (long)((iTimeout % (unsigned long)1000) * (unsigned long)1000000);
128 m_bSignaled = (pthread_cond_timedwait(&m_cond, &mutex->m_mutex, &abstime) == 0);
f99bc831
LOK
129 if (!m_bSignaled)
130 pthread_mutex_unlock(&mutex->m_mutex);
abbca718
LOK
131 }
132
133 bool bReturn = m_bSignaled;
134 m_bSignaled = false;
135
136 return bReturn;
137}
138
139void CCondition::Sleep(int iTimeout)
140{
141 sched_yield();
142 CCondition w;
143 CMutex m;
144 w.Wait(&m, iTimeout);
145}