]> git.sesse.net Git - casparcg/blob - protocol/amcp/AMCPProtocolStrategy.h
git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/branches...
[casparcg] / protocol / amcp / AMCPProtocolStrategy.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/protocolstrategy.h"\r
23 #include <core/video_channel.h>\r
24 \r
25 #include "AMCPCommand.h"\r
26 #include "AMCPCommandQueue.h"\r
27 \r
28 #include <boost/noncopyable.hpp>\r
29 \r
30 namespace caspar { namespace protocol { namespace amcp {\r
31 \r
32 class AMCPProtocolStrategy : public IO::IProtocolStrategy, boost::noncopyable\r
33 {\r
34         enum MessageParserState {\r
35                 New = 0,\r
36                 GetSwitch,\r
37                 GetCommand,\r
38                 GetParameters,\r
39                 GetChannel,\r
40                 Done\r
41         };\r
42 \r
43         AMCPProtocolStrategy(const AMCPProtocolStrategy&);\r
44         AMCPProtocolStrategy& operator=(const AMCPProtocolStrategy&);\r
45 \r
46 public:\r
47         AMCPProtocolStrategy(const std::vector<safe_ptr<core::video_channel>>& channels);\r
48         virtual ~AMCPProtocolStrategy();\r
49 \r
50         virtual void Parse(const TCHAR* pData, int charCount, IO::ClientInfoPtr pClientInfo);\r
51         virtual UINT GetCodepage() {\r
52                 return CP_UTF8;\r
53         }\r
54 \r
55         AMCPCommandPtr InterpretCommandString(const std::wstring& str, MessageParserState* pOutState=0);\r
56 \r
57 private:\r
58         friend class AMCPCommand;\r
59 \r
60         void ProcessMessage(const std::wstring& message, IO::ClientInfoPtr& pClientInfo);\r
61         std::size_t TokenizeMessage(const std::wstring& message, std::vector<std::wstring>* pTokenVector);\r
62         AMCPCommandPtr CommandFactory(const std::wstring& str);\r
63 \r
64         bool QueueCommand(AMCPCommandPtr);\r
65 \r
66         std::vector<safe_ptr<core::video_channel>> channels_;\r
67         std::vector<AMCPCommandQueuePtr> commandQueues_;\r
68         static const std::wstring MessageDelimiter;\r
69 };\r
70 \r
71 }}}\r