thread.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef THREAD_H
00028 #define THREAD_H
00029
00030 #include <list>
00031 #include <glib.h>
00032
00033 namespace common
00034 {
00035
00036 enum ThreadCmd
00037 {
00038 CMD_NONE,
00039 CMD_TERMINATE,
00040 CMD_STOP
00041 };
00042
00043 template <typename T>
00044 class SafeData
00045 {
00046 public:
00047
00048 SafeData()
00049 {
00050 g_static_rw_lock_init(&rw_lock);
00051 }
00052 ~SafeData()
00053 {
00054 g_static_rw_lock_free(&rw_lock);
00055 }
00056
00057
00058 T get_value()
00059 {
00060
00061 g_static_rw_lock_reader_lock(&rw_lock);
00062 T tmp = data;
00063 g_static_rw_lock_reader_unlock(&rw_lock);
00064
00065 return tmp;
00066 }
00067
00068
00069 void set_value(const T& new_value)
00070 {
00071 g_static_rw_lock_writer_lock(&rw_lock);
00072 data = new_value;
00073 g_static_rw_lock_writer_unlock(&rw_lock);
00074 }
00075
00076 private:
00077 GStaticRWLock rw_lock;
00078 T data;
00079 };
00080
00081 class Task
00082 {
00083 public:
00084
00085 Task();
00086 virtual ~Task();
00087
00088
00089 virtual void execute() = 0;
00090
00091
00092 void send_abort_request();
00093
00094 bool is_aborted() const
00095 {
00096 return aborted;
00097 }
00098
00099 private:
00100 bool aborted;
00101 };
00102
00103 class Thread
00104 {
00105 public:
00106
00107 Thread();
00108 ~Thread();
00109
00110
00111 bool start();
00112
00113
00114 void stop(bool cancel_all_tasks = true);
00115
00116
00117 bool append_task(Task* new_task);
00118
00119
00120
00121
00122
00123
00124
00125
00126 bool prepend_task(Task* new_task, bool abort_current);
00127
00128
00129 void clear_all();
00130
00131 private:
00132
00133 bool abort_current_task();
00134
00135
00136 static gpointer thread_func(gpointer args);
00137 gpointer non_static_thread_func();
00138
00139 private:
00140 GThread *thread;
00141 std::list<Task*> task_queue;
00142 ThreadCmd thread_cmd;
00143 Task* running_task;
00144
00145
00146 GMutex *queue_mutex;
00147 GCond *queue_cond;
00148 };
00149
00150 };
00151
00152 #endif // THREAD_H