]> git.sesse.net Git - casparcg/blob - protocol/amcp/amcp_command_repository.h
Removed a parameter from the "data retrieve" documentation. [data:string] is never...
[casparcg] / protocol / amcp / amcp_command_repository.h
1 /*
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
3 *
4 * This file is part of CasparCG (www.casparcg.com).
5 *
6 * CasparCG is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * CasparCG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Helge Norberg, helge.norberg@svt.se
20 */
21
22 #pragma once
23
24 #include "AMCPCommand.h"
25 #include "../util/ClientInfo.h"
26
27 #include <common/memory.h>
28
29 #include <core/fwd.h>
30 #include <core/help/help_repository.h>
31
32 #include <future>
33
34 namespace caspar { namespace protocol { namespace amcp {
35
36 class amcp_command_repository : boost::noncopyable
37 {
38 public:
39         amcp_command_repository(
40                         const std::vector<spl::shared_ptr<core::video_channel>>& channels,
41                         const std::shared_ptr<core::thumbnail_generator>& thumb_gen,
42                         const spl::shared_ptr<core::media_info_repository>& media_info_repo,
43                         const spl::shared_ptr<core::system_info_provider_repository>& system_info_provider_repo,
44                         const spl::shared_ptr<core::cg_producer_registry>& cg_registry,
45                         const spl::shared_ptr<core::help_repository>& help_repo,
46                         const spl::shared_ptr<const core::frame_producer_registry>& producer_registry,
47                         const spl::shared_ptr<const core::frame_consumer_registry>& consumer_registry,
48                         const std::shared_ptr<accelerator::ogl::device>& ogl_device,
49                         std::promise<bool>& shutdown_server_now);
50
51         AMCPCommand::ptr_type create_command(const std::wstring& s, IO::ClientInfoPtr client, std::list<std::wstring>& tokens) const;
52         AMCPCommand::ptr_type create_channel_command(
53                         const std::wstring& s,
54                         IO::ClientInfoPtr client,
55                         unsigned int channel_index,
56                         int layer_index,
57                         std::list<std::wstring>& tokens) const;
58
59         const std::vector<channel_context>& channels() const;
60
61         void register_command(std::wstring category, std::wstring name, core::help_item_describer describer, amcp_command_func command, int min_num_params);
62         void register_channel_command(std::wstring category, std::wstring name, core::help_item_describer describer, amcp_command_func command, int min_num_params);
63 private:
64         struct impl;
65         spl::shared_ptr<impl> impl_;
66 };
67
68 }}}