]> git.sesse.net Git - casparcg/blob - server/Monitor.h
- Reconfiguration of code
[casparcg] / server / 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  \r
21 #pragma once\r
22 \r
23 #include "utils/noncopyable.hpp"\r
24 #include "utils/lockable.h"\r
25 #include "io/clientinfo.h"\r
26 #include <list>\r
27 #include <functional>\r
28 \r
29 #include "utils/functiontask.hpp"\r
30 \r
31 namespace caspar {\r
32 \r
33 typedef std::function<tstring(const tstring&)> MonitorParameterFormatter;\r
34 \r
35 enum MonitorEventType\r
36 {\r
37         LOADBG,\r
38         LOAD,\r
39         PLAY,\r
40         STOPPED,\r
41         CLEAR,\r
42 \r
43         CG_ADD,\r
44         CG_CLEAR,\r
45         CG_PLAY,\r
46         CG_STOP,\r
47         CG_NEXT,\r
48         CG_REMOVE,\r
49         CG_UPDATE,\r
50         CG_INVOKE\r
51 };\r
52 \r
53 class Monitor : private utils::LockableObject, private utils::Noncopyable\r
54 {\r
55 public:\r
56         static const int ResponseCodeNoParam;\r
57         static const int ResponseCodeWithParam;\r
58 \r
59         //removes the client from all monitors\r
60         static void ClearListener(const caspar::IO::ClientInfoPtr& pClient);\r
61 \r
62         explicit Monitor(int channelIndex);\r
63         virtual ~Monitor();\r
64 \r
65         void Inform(MonitorEventType type, const tstring& parameter = TEXT(""), MonitorParameterFormatter formatter = 0);\r
66 \r
67         void AddListener(caspar::IO::ClientInfoPtr& pClient);\r
68         void RemoveListener(const caspar::IO::ClientInfoPtr& pClient);\r
69 \r
70 private:\r
71         void internal_Inform(MonitorEventType type, const tstring parameter, MonitorParameterFormatter formatter);\r
72 \r
73         void FormatInfo(tstringstream& sstream, MonitorEventType type);\r
74 \r
75         int channelIndex_;\r
76         typedef std::list<caspar::IO::ClientInfoPtr> ListenerList;\r
77         typedef std::list<Monitor*> MonitorList;\r
78 \r
79         function_task_serializer taskSeraializer_;\r
80 \r
81         ListenerList listeners_;\r
82         static MonitorList monitors_;\r
83 };\r
84 \r
85 }       //namespace caspar