8b0729db4cf045dccbf3f1bf6777b5d33f6e0df2
[deb_libcec.git] / src / lib / platform / threads.h
1 #pragma once
2 /*
3 * This file is part of the libCEC(R) library.
4 *
5 * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
6 * libCEC(R) is an original work, containing original code.
7 *
8 * libCEC(R) is a trademark of Pulse-Eight Limited.
9 *
10 * This program is dual-licensed; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 *
24 *
25 * Alternatively, you can license this library under a commercial license,
26 * please contact Pulse-Eight Licensing for more information.
27 *
28 * For more information contact:
29 * Pulse-Eight Licensing <license@pulse-eight.com>
30 * http://www.pulse-eight.com/
31 * http://www.pulse-eight.net/
32 */
33
34 #include "os-dependent.h"
35 #include <stdint.h>
36
37 namespace CEC
38 {
39 class CMutex;
40
41 class CCondition
42 {
43 public:
44 CCondition(void);
45 virtual ~CCondition(void);
46
47 void Broadcast(void);
48 void Signal(void);
49 bool Wait(CMutex *mutex, int64_t iTimeout);
50 static void Sleep(int64_t iTimeout);
51
52 private:
53 pthread_cond_t m_cond;
54 };
55
56 class CMutex
57 {
58 public:
59 CMutex(void);
60 virtual ~CMutex(void);
61
62 bool TryLock(void);
63 bool Lock(void);
64 void Unlock(void);
65
66 pthread_mutex_t m_mutex;
67 };
68
69 class CLockObject
70 {
71 public:
72 CLockObject(CMutex *mutex);
73 ~CLockObject(void);
74
75 bool IsLocked(void) const { return m_bLocked; }
76 void Leave(void);
77 void Lock(void);
78
79 private:
80 CMutex *m_mutex;
81 bool m_bLocked;
82 };
83
84 class CThread
85 {
86 public:
87 CThread(void);
88 virtual ~CThread(void);
89
90 virtual bool IsRunning(void) const { return m_bRunning; }
91 virtual bool CreateThread(void);
92 virtual bool StopThread(bool bWaitForExit = true);
93 virtual bool Sleep(uint64_t iTimeout);
94
95 static void *ThreadHandler(CThread *thread);
96 virtual void *Process(void) = 0;
97
98 protected:
99 pthread_t m_thread;
100 CMutex m_threadMutex;
101 CCondition m_threadCondition;
102 bool m_bRunning;
103 bool m_bStop;
104 };
105 };