]> git.sesse.net Git - casparcg/blob - core/protocol/monitor/Monitor.h
2.0.0.2: Moved video_format.h into correct folder.
[casparcg] / core / protocol / monitor / Monitor.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 "../../../common/io/ClientInfo.h"\r
23 #include <tbb/mutex.h>\r
24 \r
25 namespace caspar {\r
26 \r
27 typedef std::function<std::wstring(const std::wstring&)> MonitorParameterFormatter;\r
28 \r
29 enum MonitorEventType\r
30 {\r
31         LOADBG,\r
32         LOAD,\r
33         PLAY,\r
34         STOPPED,\r
35         CLEAR,\r
36 \r
37         CG_ADD,\r
38         CG_CLEAR,\r
39         CG_PLAY,\r
40         CG_STOP,\r
41         CG_NEXT,\r
42         CG_REMOVE,\r
43         CG_UPDATE,\r
44         CG_INVOKE\r
45 };\r
46 \r
47 class Monitor : boost::noncopyable\r
48 {\r
49 public:\r
50         static const int ResponseCodeNoParam;\r
51         static const int ResponseCodeWithParam;\r
52 \r
53         //removes the client from all monitors\r
54         static void ClearListener(const caspar::IO::ClientInfoPtr& pClient);\r
55 \r
56         explicit Monitor(int channelIndex);\r
57         virtual ~Monitor();\r
58 \r
59         void Inform(MonitorEventType type, const std::wstring& parameter = TEXT(""), MonitorParameterFormatter formatter = 0);\r
60 \r
61         void AddListener(caspar::IO::ClientInfoPtr& pClient);\r
62         void RemoveListener(const caspar::IO::ClientInfoPtr& pClient);\r
63 \r
64 private:\r
65         void internal_Inform(MonitorEventType type, const std::wstring parameter, MonitorParameterFormatter formatter);\r
66 \r
67         void FormatInfo(std::wstringstream& sstream, MonitorEventType type);\r
68 \r
69         int channelIndex_;\r
70         typedef std::list<caspar::IO::ClientInfoPtr> ListenerList;\r
71         typedef std::list<Monitor*> MonitorList;\r
72 \r
73         ListenerList listeners_;\r
74         static MonitorList monitors_;\r
75         tbb::mutex mutex_;\r
76 };\r
77 \r
78 }