Open Lighting Architecture  0.9.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Thread.h
1 /*
2  * This library is free software; you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public
4  * License as published by the Free Software Foundation; either
5  * version 2.1 of the License, or (at your option) any later version.
6  *
7  * This library is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10  * Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public
13  * License along with this library; if not, write to the Free Software
14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15  *
16  * Thread.h
17  * A thread object.
18  * Copyright (C) 2010 Simon Newton
19  */
20 
21 #ifndef INCLUDE_OLA_THREAD_THREAD_H_
22 #define INCLUDE_OLA_THREAD_THREAD_H_
23 
24 #include <pthread.h>
25 #include <ola/base/Macro.h>
26 #include <ola/thread/Mutex.h>
27 
28 namespace ola {
29 namespace thread {
30 
31 typedef pthread_t ThreadId;
32 
36 class Thread {
37  public:
38  Thread(): m_thread_id(), m_running(false) {}
39  virtual ~Thread() {}
40 
41  virtual bool Start();
42  virtual bool FastStart();
43  virtual bool Join(void *ptr = NULL);
44  bool IsRunning();
45 
46  ThreadId Id() const { return m_thread_id; }
47 
48  // Called by pthread_create
49  void *_InternalRun();
50 
51  static inline ThreadId Self() { return pthread_self(); }
52 
53  protected:
54  // Sub classes implement this.
55  virtual void *Run() = 0;
56 
57  private:
58  pthread_t m_thread_id;
59  bool m_running;
60  Mutex m_mutex; // protects m_running
61  ConditionVariable m_condition; // use to wait for the thread to start
62 
63  DISALLOW_COPY_AND_ASSIGN(Thread);
64 };
65 } // namespace thread
66 } // namespace ola
67 #endif // INCLUDE_OLA_THREAD_THREAD_H_