]> git.sesse.net Git - casparcg/blob - server/utils/Thread.h
162914e7e303f7492dc985704872270155354e50
[casparcg] / server / utils / Thread.h
1 /*\r
2 * copyright (c) 2010 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 *  This file is part of CasparCG.\r
5 *\r
6 *    CasparCG is free software: you can redistribute it and/or modify\r
7 *    it under the terms of the GNU General Public License as published by\r
8 *    the Free Software Foundation, either version 3 of the License, or\r
9 *    (at your option) any later version.\r
10 *\r
11 *    CasparCG is distributed in the hope that it will be useful,\r
12 *    but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 *    GNU General Public License for more details.\r
15 \r
16 *    You should have received a copy of the GNU General Public License\r
17 *    along with CasparCG.  If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 */\r
20  \r
21 #ifndef _CASPAR_THREAD_H__\r
22 #define _CASPAR_THREAD_H__\r
23 \r
24 #pragma once\r
25 \r
26 #include "runnable.h"\r
27 #include "event.h"\r
28 \r
29 namespace caspar {\r
30 namespace utils {\r
31 \r
32 class Thread\r
33 {\r
34         Thread(const Thread&);\r
35         Thread& operator=(const Thread&);\r
36 public:\r
37         Thread();\r
38         ~Thread();\r
39 \r
40         bool Start(IRunnable*);\r
41         bool Stop(bool bWait = true);\r
42 \r
43         bool IsRunning();\r
44 \r
45         static void EnableWin32ExceptionHandler(bool bEnable);\r
46 \r
47         void SetTimeout(DWORD timeout) {\r
48                 timeout_ = timeout;\r
49         }\r
50         DWORD GetTimeout() {\r
51                 return timeout_;\r
52         }\r
53 \r
54 private:\r
55         static DWORD WINAPI ThreadEntrypoint(LPVOID pParam);\r
56         void Run();\r
57 \r
58         HANDLE                  hThread_;\r
59         IRunnable*              pRunnable_;\r
60 \r
61         Event                   stopEvent_;\r
62 \r
63         DWORD                   timeout_;\r
64         static bool             static_bInstallWin32ExceptionHandler_;\r
65 };\r
66 \r
67 }       //namespace utils\r
68 }       //namespace caspar\r
69 \r
70 \r
71 #endif  //_CASPAR_THREAD_H__\r