]> git.sesse.net Git - casparcg/blob - protocol/util/Thread.h
* Created custom decklink allocator for reducing memory footprint.
[casparcg] / protocol / util / Thread.h
1 /*\r
2 * Copyright 2013 Sveriges Television AB http://casparcg.com/\r
3 *\r
4 * This file is part of CasparCG (www.casparcg.com).\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 * Author: Nicklas P Andersson\r
20 */\r
21 \r
22 #pragma once\r
23 \r
24 #include "event.h"\r
25 \r
26 #include <exception>\r
27 #include <memory>\r
28 \r
29 namespace caspar {\r
30         \r
31 class IRunnable\r
32 {\r
33 public:\r
34         virtual ~IRunnable() {}\r
35         virtual void Run(HANDLE stopEvent) = 0;\r
36         virtual bool OnUnhandledException(const std::exception&) throw() = 0;\r
37 };\r
38 \r
39 class Event\r
40 {\r
41 public:\r
42         Event(bool bManualReset, bool bInitialState);\r
43         ~Event();\r
44 \r
45         operator const HANDLE() const {\r
46                 return handle_;\r
47         }\r
48 \r
49         HANDLE Handle() const\r
50         {\r
51                 return handle_;\r
52         }\r
53 \r
54         void Set();\r
55         void Reset();\r
56 \r
57 private:\r
58         HANDLE handle_;\r
59 };\r
60 \r
61 typedef std::shared_ptr<Event> EventPtr;\r
62 \r
63 class Thread\r
64 {\r
65         Thread(const Thread&);\r
66         Thread& operator=(const Thread&);\r
67 public:\r
68         Thread();\r
69         ~Thread();\r
70 \r
71         bool Start(IRunnable*);\r
72         bool Stop(bool bWait = true);\r
73 \r
74         bool IsRunning();\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 };\r
94 \r
95 }