]> git.sesse.net Git - casparcg/blob - server/amcp/AMCPCommandQueue.h
1.8.1:
[casparcg] / server / amcp / AMCPCommandQueue.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 _AMCPCOMMANDQUEUE_H__\r
22 #define _AMCPCOMMANDQUEUE_H__\r
23 \r
24 #pragma once\r
25 \r
26 #include <list>\r
27 #include "..\utils\thread.h"\r
28 #include "..\utils\Lockable.h"\r
29 \r
30 #include "AMCPCommand.h"\r
31 \r
32 namespace caspar {\r
33 namespace amcp {\r
34 \r
35 class AMCPCommandQueue : public utils::IRunnable, private utils::LockableObject\r
36 {\r
37         AMCPCommandQueue(const AMCPCommandQueue&);\r
38         AMCPCommandQueue& operator=(const AMCPCommandQueue&);\r
39 public:\r
40         AMCPCommandQueue();\r
41         ~AMCPCommandQueue();\r
42 \r
43         bool Start();\r
44         void Stop();\r
45         void AddCommand(AMCPCommandPtr pCommand);\r
46 \r
47 private:\r
48         utils::Thread                           commandPump_;\r
49         virtual void Run(HANDLE stopEvent);\r
50         virtual bool OnUnhandledException(const std::exception& ex) throw();\r
51 \r
52         utils::Event newCommandEvent_;\r
53 \r
54         //Needs synro-protection\r
55         std::list<AMCPCommandPtr>       commands_;\r
56 };\r
57 typedef std::tr1::shared_ptr<AMCPCommandQueue> AMCPCommandQueuePtr;\r
58 \r
59 }       //namespace amcp\r
60 }       //namespace caspar\r
61 \r
62 #endif  //_AMCPCOMMANDQUEUE_H__