]> git.sesse.net Git - casparcg/blob - protocol/amcp/AMCPCommandsImpl.h
2.0.0.2:
[casparcg] / protocol / amcp / AMCPCommandsImpl.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 __AMCPCOMMANDSIMPL_H__\r
22 #define __AMCPCOMMANDSIMPL_H__\r
23 \r
24 #include "AMCPCommand.h"\r
25 \r
26 namespace caspar { namespace protocol {\r
27         \r
28 std::wstring ListMedia();\r
29 std::wstring ListTemplates();\r
30 \r
31 namespace amcp {\r
32         \r
33 class AddCommand : public AMCPCommandBase<true, AddToQueue, 1>\r
34 {\r
35         std::wstring print() const { return L"AddCommand";}\r
36         bool DoExecute();\r
37 };\r
38 \r
39 class RemoveCommand : public AMCPCommandBase<true, AddToQueue, 0>\r
40 {\r
41         std::wstring print() const { return L"RemoveCommand";}\r
42         bool DoExecute();\r
43 };\r
44 \r
45 class LoadCommand : public AMCPCommandBase<true, AddToQueue, 1>\r
46 {\r
47         std::wstring print() const { return L"LoadCommand";}\r
48         bool DoExecute();\r
49 };\r
50 \r
51 class LoadbgCommand : public AMCPCommandBase<true, AddToQueue, 1>\r
52 {\r
53         std::wstring print() const { return L"LoadbgCommand";}\r
54         bool DoExecute();\r
55 };\r
56 \r
57 class PlayCommand: public AMCPCommandBase<true, AddToQueue, 0>\r
58 {\r
59         std::wstring print() const { return L"PlayCommand";}\r
60         bool DoExecute();\r
61 };\r
62 \r
63 class PauseCommand: public AMCPCommandBase<true, AddToQueue, 0>\r
64 {\r
65         std::wstring print() const { return L"PauseCommand";}\r
66         bool DoExecute();\r
67 };\r
68 \r
69 class StopCommand : public AMCPCommandBase<true, AddToQueue, 0>\r
70 {\r
71         std::wstring print() const { return L"StopCommand";}\r
72         bool DoExecute();\r
73 };\r
74 \r
75 class ClearCommand : public AMCPCommandBase<true, AddToQueue, 0>\r
76 {\r
77         std::wstring print() const { return L"ClearCommand";}\r
78         bool DoExecute();\r
79 };\r
80 \r
81 class CGCommand : public AMCPCommandBase<true, AddToQueue, 1>\r
82 {\r
83         std::wstring print() const { return L"CGCommand";}\r
84         bool DoExecute();\r
85         bool ValidateLayer(const std::wstring& layerstring);\r
86 \r
87         bool DoExecuteAdd();\r
88         bool DoExecutePlay();\r
89         bool DoExecuteStop();\r
90         bool DoExecuteNext();\r
91         bool DoExecuteRemove();\r
92         bool DoExecuteClear();\r
93         bool DoExecuteUpdate();\r
94         bool DoExecuteInvoke();\r
95         bool DoExecuteInfo();\r
96 };\r
97 \r
98 class DataCommand : public AMCPCommandBase<false, AddToQueue, 1>\r
99 {\r
100         std::wstring print() const { return L"DataCommand";}\r
101         bool DoExecute();\r
102         bool DoExecuteStore();\r
103         bool DoExecuteRetrieve();\r
104         bool DoExecuteList();\r
105 };\r
106 \r
107 class ClsCommand : public AMCPCommandBase<false, AddToQueue, 0>\r
108 {\r
109         std::wstring print() const { return L"ClsCommand";}\r
110         bool DoExecute();\r
111 };\r
112 \r
113 class TlsCommand : public AMCPCommandBase<false, AddToQueue, 0>\r
114 {\r
115         std::wstring print() const { return L"TlsCommand";}\r
116         bool DoExecute();\r
117 };\r
118 \r
119 class CinfCommand : public AMCPCommandBase<false, AddToQueue, 1>\r
120 {\r
121         std::wstring print() const { return L"CinfCommand";}\r
122         bool DoExecute();\r
123 };\r
124 \r
125 class InfoCommand : public AMCPCommandBase<false, AddToQueue, 0>\r
126 {\r
127 public:\r
128         std::wstring print() const { return L"InfoCommand";}\r
129         InfoCommand(const std::vector<safe_ptr<core::channel>>& channels) : channels_(channels){}\r
130         bool DoExecute();\r
131 private:\r
132         const std::vector<safe_ptr<core::channel>>& channels_;\r
133 };\r
134 \r
135 class VersionCommand : public AMCPCommandBase<false, AddToQueue, 0>\r
136 {\r
137         std::wstring print() const { return L"VersionCommand";}\r
138         bool DoExecute();\r
139 };\r
140 \r
141 class ByeCommand : public AMCPCommandBase<false, AddToQueue, 0>\r
142 {\r
143         std::wstring print() const { return L"ByeCommand";}\r
144         bool DoExecute();\r
145 };\r
146 \r
147 class SetCommand : public AMCPCommandBase<true, AddToQueue, 2>\r
148 {\r
149         std::wstring print() const { return L"SetCommand";}\r
150         bool DoExecute();\r
151 };\r
152 \r
153 //class KillCommand : public AMCPCommand\r
154 //{\r
155 //public:\r
156 //      KillCommand() {}\r
157 //      virtual bool DoExecute();\r
158 //      virtual AMCPCommandCondition CheckConditions();\r
159 //\r
160 //      virtual bool NeedChannel() {\r
161 //              return false;\r
162 //      }\r
163 //      virtual AMCPCommandScheduling GetDefaultScheduling() {\r
164 //              return AddToQueue;\r
165 //      }\r
166 //      virtual int GetMinimumParameters() {\r
167 //              return 0;\r
168 //      }\r
169 //};\r
170 \r
171 }       //namespace amcp\r
172 }}      //namespace caspar\r
173 \r
174 #endif  //__AMCPCOMMANDSIMPL_H__