]> git.sesse.net Git - casparcg/blob - protocol/util/Thread.h
git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/branches...
[casparcg] / protocol / util / 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 #pragma once\r
21 \r
22 #include "event.h"\r
23 \r
24 #include <exception>\r
25 #include <memory>\r
26 \r
27 namespace caspar {\r
28         \r
29 class IRunnable\r
30 {\r
31 public:\r
32         virtual ~IRunnable() {}\r
33         virtual void Run(HANDLE stopEvent) = 0;\r
34         virtual bool OnUnhandledException(const std::exception&) throw() = 0;\r
35 };\r
36 \r
37 class Event\r
38 {\r
39 public:\r
40         Event(bool bManualReset, bool bInitialState);\r
41         ~Event();\r
42 \r
43         operator const HANDLE() const {\r
44                 return handle_;\r
45         }\r
46 \r
47         HANDLE Handle() const\r
48         {\r
49                 return handle_;\r
50         }\r
51 \r
52         void Set();\r
53         void Reset();\r
54 \r
55 private:\r
56         HANDLE handle_;\r
57 };\r
58 \r
59 typedef std::shared_ptr<Event> EventPtr;\r
60 \r
61 class Thread\r
62 {\r
63         Thread(const Thread&);\r
64         Thread& operator=(const Thread&);\r
65 public:\r
66         Thread();\r
67         ~Thread();\r
68 \r
69         bool Start(IRunnable*);\r
70         bool Stop(bool bWait = true);\r
71 \r
72         bool IsRunning();\r
73 \r
74         static void EnableWin32ExceptionHandler(bool bEnable);\r
75 \r
76         void SetTimeout(DWORD timeout) {\r
77                 timeout_ = timeout;\r
78         }\r
79         DWORD GetTimeout() {\r
80                 return timeout_;\r
81         }\r
82 \r
83 private:\r
84         static DWORD WINAPI ThreadEntrypoint(LPVOID pParam);\r
85         void Run();\r
86 \r
87         HANDLE                  hThread_;\r
88         IRunnable*              pRunnable_;\r
89 \r
90         Event                   stopEvent_;\r
91 \r
92         DWORD                   timeout_;\r
93         static bool             static_bInstallWin32ExceptionHandler_;\r
94 };\r
95 \r
96 }