]> git.sesse.net Git - casparcg/blob - protocol/amcp/AMCPCommand.h
2.0 image_mixer: Refactored, core: Fixed destruction proxy usage.
[casparcg] / protocol / amcp / AMCPCommand.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 "../util/clientinfo.h"\r
23 \r
24 #include <core/consumer/frame_consumer.h>\r
25 #include <core/video_channel.h>\r
26 \r
27 #include <boost/algorithm/string.hpp>\r
28 \r
29 namespace caspar { namespace protocol {\r
30 namespace amcp {\r
31 \r
32         enum AMCPCommandScheduling\r
33         {\r
34                 Default = 0,\r
35                 AddToQueue,\r
36                 ImmediatelyAndClear\r
37         };\r
38 \r
39         class AMCPCommand\r
40         {\r
41                 AMCPCommand(const AMCPCommand&);\r
42                 AMCPCommand& operator=(const AMCPCommand&);\r
43         public:\r
44                 AMCPCommand();\r
45                 virtual ~AMCPCommand() {}\r
46                 virtual bool Execute() = 0;\r
47 \r
48                 virtual bool NeedChannel() = 0;\r
49                 virtual AMCPCommandScheduling GetDefaultScheduling() = 0;\r
50                 virtual int GetMinimumParameters() = 0;\r
51 \r
52                 void SendReply();\r
53 \r
54                 void AddParameter(const std::wstring& param){_parameters.push_back(param);}\r
55 \r
56                 void SetClientInfo(IO::ClientInfoPtr& s){pClientInfo_ = s;}\r
57                 IO::ClientInfoPtr GetClientInfo(){return pClientInfo_;}\r
58 \r
59                 void SetChannel(const std::shared_ptr<core::video_channel>& pChannel){pChannel_ = pChannel;}\r
60                 std::shared_ptr<core::video_channel> GetChannel(){return pChannel_;}\r
61 \r
62                 void SetChannels(const std::vector<safe_ptr<core::video_channel>>& channels){channels_ = channels;}\r
63                 const std::vector<safe_ptr<core::video_channel>>& GetChannels() { return channels_; }\r
64 \r
65                 void SetChannelIndex(unsigned int channelIndex){channelIndex_ = channelIndex;}\r
66                 unsigned int GetChannelIndex(){return channelIndex_;}\r
67 \r
68                 void SetLayerIntex(int layerIndex){layerIndex_ = layerIndex;}\r
69                 int GetLayerIndex(int defaultValue = 0) const{return layerIndex_ != -1 ? layerIndex_ : defaultValue;}\r
70 \r
71                 virtual void Clear();\r
72 \r
73                 AMCPCommandScheduling GetScheduling()\r
74                 {\r
75                         return scheduling_ == Default ? GetDefaultScheduling() : scheduling_;\r
76                 }\r
77 \r
78                 virtual std::wstring print() const = 0;\r
79 \r
80                 void SetScheduling(AMCPCommandScheduling s){scheduling_ = s;}\r
81 \r
82         protected:\r
83                 void SetReplyString(const std::wstring& str){replyString_ = str;}\r
84                 std::vector<std::wstring> _parameters;\r
85                 std::vector<std::wstring> _parameters2;\r
86 \r
87         private:\r
88                 unsigned int channelIndex_;\r
89                 int layerIndex_;\r
90                 IO::ClientInfoPtr pClientInfo_;\r
91                 std::shared_ptr<core::video_channel> pChannel_;\r
92                 std::vector<safe_ptr<core::video_channel>> channels_;\r
93                 AMCPCommandScheduling scheduling_;\r
94                 std::wstring replyString_;\r
95         };\r
96 \r
97         typedef std::tr1::shared_ptr<AMCPCommand> AMCPCommandPtr;\r
98 \r
99         template<bool TNeedChannel, AMCPCommandScheduling TScheduling, int TMinParameters>\r
100         class AMCPCommandBase : public AMCPCommand\r
101         {\r
102         public:\r
103                 virtual bool Execute()\r
104                 {\r
105                         _parameters2 = _parameters;\r
106                         for(size_t n = 0; n < _parameters.size(); ++n)\r
107                                 _parameters[n] = boost::to_upper_copy(_parameters[n]);\r
108                         return (TNeedChannel && !GetChannel()) || _parameters.size() < TMinParameters ? false : DoExecute();\r
109                 }\r
110 \r
111                 virtual bool NeedChannel(){return TNeedChannel;}                \r
112                 virtual AMCPCommandScheduling GetDefaultScheduling(){return TScheduling;}\r
113                 virtual int GetMinimumParameters(){return TMinParameters;}\r
114         protected:\r
115                 ~AMCPCommandBase(){}\r
116         private:\r
117                 virtual bool DoExecute() = 0;\r
118         };      \r
119 \r
120 }}}\r