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