]> git.sesse.net Git - casparcg/blob - shell/server.cpp
* Enforce help descriptions for producers in code.
[casparcg] / shell / server.cpp
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: Robert Nagy, ronag89@gmail.com
20 */
21
22 #include "stdafx.h"
23
24 #include "server.h"
25 #include "included_modules.h"
26
27 #include <accelerator/accelerator.h>
28
29 #include <common/env.h>
30 #include <common/except.h>
31 #include <common/utf.h>
32 #include <common/memory.h>
33 #include <common/polling_filesystem_monitor.h>
34
35 #include <core/video_channel.h>
36 #include <core/video_format.h>
37 #include <core/producer/stage.h>
38 #include <core/producer/frame_producer.h>
39 #include <core/producer/scene/scene_producer.h>
40 #include <core/producer/scene/xml_scene_producer.h>
41 #include <core/producer/text/text_producer.h>
42 #include <core/consumer/output.h>
43 #include <core/thumbnail_generator.h>
44 #include <core/producer/media_info/media_info.h>
45 #include <core/producer/media_info/media_info_repository.h>
46 #include <core/producer/media_info/in_memory_media_info_repository.h>
47 #include <core/producer/cg_proxy.h>
48 #include <core/diagnostics/subject_diagnostics.h>
49 #include <core/diagnostics/call_context.h>
50 #include <core/diagnostics/osd_graph.h>
51 #include <core/system_info_provider.h>
52 #include <core/help/help_repository.h>
53
54 #include <modules/image/consumer/image_consumer.h>
55
56 #include <protocol/asio/io_service_manager.h>
57 #include <protocol/amcp/AMCPProtocolStrategy.h>
58 #include <protocol/amcp/amcp_command_repository.h>
59 #include <protocol/amcp/AMCPCommandsImpl.h>
60 #include <protocol/cii/CIIProtocolStrategy.h>
61 #include <protocol/clk/CLKProtocolStrategy.h>
62 #include <protocol/util/AsyncEventServer.h>
63 #include <protocol/util/strategy_adapters.h>
64 #include <protocol/osc/client.h>
65
66 #include <boost/algorithm/string.hpp>
67 #include <boost/thread.hpp>
68 #include <boost/lexical_cast.hpp>
69 #include <boost/property_tree/ptree.hpp>
70 #include <boost/property_tree/xml_parser.hpp>
71
72 #include <tbb/atomic.h>
73
74 #include <future>
75
76 namespace caspar {
77
78 using namespace core;
79 using namespace protocol;
80
81 struct server::impl : boost::noncopyable
82 {
83         protocol::asio::io_service_manager                                      io_service_manager_;
84         spl::shared_ptr<monitor::subject>                                       monitor_subject_;
85         spl::shared_ptr<monitor::subject>                                       diag_subject_                                   = core::diagnostics::get_or_create_subject();
86         accelerator::accelerator                                                        accelerator_;
87         spl::shared_ptr<help_repository>                                        help_repo_;
88         std::shared_ptr<amcp::amcp_command_repository>          amcp_command_repo_;
89         std::vector<spl::shared_ptr<IO::AsyncEventServer>>      async_servers_;
90         std::shared_ptr<IO::AsyncEventServer>                           primary_amcp_server_;
91         osc::client                                                                                     osc_client_;
92         std::vector<std::shared_ptr<void>>                                      predefined_osc_subscriptions_;
93         std::vector<spl::shared_ptr<video_channel>>                     channels_;
94         spl::shared_ptr<media_info_repository>                          media_info_repo_;
95         boost::thread                                                                           initial_media_info_thread_;
96         spl::shared_ptr<system_info_provider_repository>        system_info_provider_repo_;
97         spl::shared_ptr<core::cg_producer_registry>                     cg_registry_;
98         spl::shared_ptr<core::frame_producer_registry>          producer_registry_;
99         spl::shared_ptr<core::frame_consumer_registry>          consumer_registry_;
100         tbb::atomic<bool>                                                                       running_;
101         std::shared_ptr<thumbnail_generator>                            thumbnail_generator_;
102         std::promise<bool>&                                                                     shutdown_server_now_;
103
104         explicit impl(std::promise<bool>& shutdown_server_now)          
105                 : accelerator_(env::properties().get(L"configuration.accelerator", L"auto"))
106                 , osc_client_(io_service_manager_.service())
107                 , media_info_repo_(create_in_memory_media_info_repository())
108                 , producer_registry_(spl::make_shared<core::frame_producer_registry>(help_repo_))
109                 , shutdown_server_now_(shutdown_server_now)
110         {
111                 running_ = false;
112                 core::diagnostics::osd::register_sink();
113                 diag_subject_->attach_parent(monitor_subject_);
114
115                 module_dependencies dependencies(
116                                 system_info_provider_repo_,
117                                 cg_registry_,
118                                 media_info_repo_,
119                                 producer_registry_,
120                                 consumer_registry_);
121
122                 initialize_modules(dependencies);
123                 core::text::init(dependencies);
124                 core::scene::init(dependencies);
125         }
126
127         void start()
128         {
129                 running_ = true;
130
131                 setup_channels(env::properties());
132                 CASPAR_LOG(info) << L"Initialized channels.";
133
134                 setup_thumbnail_generation(env::properties());
135                 CASPAR_LOG(info) << L"Initialized thumbnail generator.";
136
137                 setup_controllers(env::properties());
138                 CASPAR_LOG(info) << L"Initialized controllers.";
139
140                 setup_osc(env::properties());
141                 CASPAR_LOG(info) << L"Initialized osc.";
142
143                 start_initial_media_info_scan();
144                 CASPAR_LOG(info) << L"Started initial media information retrieval.";
145         }
146
147         ~impl()
148         {
149                 if (running_)
150                 {
151                         running_ = false;
152                         initial_media_info_thread_.join();
153                 }
154
155                 thumbnail_generator_.reset();
156                 primary_amcp_server_.reset();
157                 async_servers_.clear();
158                 channels_.clear();
159
160                 boost::this_thread::sleep_for(boost::chrono::milliseconds(500));
161                 //Sleep(500); // HACK: Wait for asynchronous destruction of producers and consumers.
162
163                 uninitialize_modules();
164                 core::diagnostics::osd::shutdown();
165         }
166                                 
167         void setup_channels(const boost::property_tree::wptree& pt)
168         {   
169                 using boost::property_tree::wptree;
170                 for (auto& xml_channel : pt.get_child(L"configuration.channels"))
171                 {               
172                         auto format_desc = video_format_desc(xml_channel.second.get(L"video-mode", L"PAL"));            
173                         if(format_desc.format == video_format::invalid)
174                                 CASPAR_THROW_EXCEPTION(caspar_exception() << msg_info("Invalid video-mode."));
175                         
176                         auto channel = spl::make_shared<video_channel>(static_cast<int>(channels_.size()+1), format_desc, accelerator_.create_image_mixer());
177
178                         core::diagnostics::scoped_call_context save;
179                         core::diagnostics::call_context::for_thread().video_channel = channel->index();
180                         
181                         for (auto& xml_consumer : xml_channel.second.get_child(L"consumers"))
182                         {
183                                 try
184                                 {
185                                         auto name = xml_consumer.first;
186                                         
187                                         if (name != L"<xmlcomment>")
188                                                 channel->output().add(consumer_registry_->create_consumer(name, xml_consumer.second, &channel->stage()));
189                                 }
190                                 catch(...)
191                                 {
192                                         CASPAR_LOG_CURRENT_EXCEPTION();
193                                 }
194                         }               
195
196                     channel->monitor_output().attach_parent(monitor_subject_);
197                         channels_.push_back(channel);
198                 }
199
200                 // Dummy diagnostics channel
201                 if(env::properties().get(L"configuration.channel-grid", false))
202                         channels_.push_back(spl::make_shared<video_channel>(static_cast<int>(channels_.size()+1), core::video_format_desc(core::video_format::x576p2500), accelerator_.create_image_mixer()));
203         }
204
205         void setup_osc(const boost::property_tree::wptree& pt)
206         {               
207                 using boost::property_tree::wptree;
208                 using namespace boost::asio::ip;
209
210                 monitor_subject_->attach_parent(osc_client_.sink());
211                 
212                 auto default_port =
213                                 pt.get<unsigned short>(L"configuration.osc.default-port", 6250);
214                 auto predefined_clients =
215                                 pt.get_child_optional(L"configuration.osc.predefined-clients");
216
217                 if (predefined_clients)
218                 {
219                         for (auto& predefined_client : *predefined_clients)
220                         {
221                                 const auto address =
222                                                 predefined_client.second.get<std::wstring>(L"address");
223                                 const auto port =
224                                                 predefined_client.second.get<unsigned short>(L"port");
225                                 predefined_osc_subscriptions_.push_back(
226                                                 osc_client_.get_subscription_token(udp::endpoint(
227                                                                 address_v4::from_string(u8(address)),
228                                                                 port)));
229                         }
230                 }
231
232                 if (primary_amcp_server_)
233                         primary_amcp_server_->add_client_lifecycle_object_factory(
234                                         [=] (const std::string& ipv4_address)
235                                                         -> std::pair<std::wstring, std::shared_ptr<void>>
236                                         {
237                                                 using namespace boost::asio::ip;
238
239                                                 return std::make_pair(
240                                                                 std::wstring(L"osc_subscribe"),
241                                                                 osc_client_.get_subscription_token(
242                                                                                 udp::endpoint(
243                                                                                                 address_v4::from_string(
244                                                                                                                 ipv4_address),
245                                                                                                 default_port)));
246                                         });
247         }
248
249         void setup_thumbnail_generation(const boost::property_tree::wptree& pt)
250         {
251                 if (!pt.get(L"configuration.thumbnails.generate-thumbnails", true))
252                         return;
253
254                 auto scan_interval_millis = pt.get(L"configuration.thumbnails.scan-interval-millis", 5000);
255
256                 polling_filesystem_monitor_factory monitor_factory(scan_interval_millis);
257                 thumbnail_generator_.reset(new thumbnail_generator(
258                         monitor_factory, 
259                         env::media_folder(),
260                         env::thumbnails_folder(),
261                         pt.get(L"configuration.thumbnails.width", 256),
262                         pt.get(L"configuration.thumbnails.height", 144),
263                         core::video_format_desc(pt.get(L"configuration.thumbnails.video-mode", L"720p2500")),
264                         accelerator_.create_image_mixer(),
265                         pt.get(L"configuration.thumbnails.generate-delay-millis", 2000),
266                         &image::write_cropped_png,
267                         media_info_repo_,
268                         producer_registry_,
269                         pt.get(L"configuration.thumbnails.mipmap", true)));
270
271                 CASPAR_LOG(info) << L"Initialized thumbnail generator.";
272         }
273                 
274         void setup_controllers(const boost::property_tree::wptree& pt)
275         {
276                 amcp_command_repo_ = spl::make_shared<amcp::amcp_command_repository>(
277                                 channels_,
278                                 thumbnail_generator_,
279                                 media_info_repo_,
280                                 system_info_provider_repo_,
281                                 cg_registry_,
282                                 help_repo_,
283                                 producer_registry_,
284                                 consumer_registry_,
285                                 shutdown_server_now_);
286                 amcp::register_commands(*amcp_command_repo_);
287
288                 using boost::property_tree::wptree;
289                 for (auto& xml_controller : pt.get_child(L"configuration.controllers"))
290                 {
291                         try
292                         {
293                                 auto name = xml_controller.first;
294                                 auto protocol = xml_controller.second.get<std::wstring>(L"protocol");   
295
296                                 if(name == L"tcp")
297                                 {                                       
298                                         unsigned int port = xml_controller.second.get(L"port", 5250);
299                                         auto asyncbootstrapper = spl::make_shared<IO::AsyncEventServer>(create_protocol(protocol), port);
300                                         async_servers_.push_back(asyncbootstrapper);
301
302                                         if (!primary_amcp_server_ && boost::iequals(protocol, L"AMCP"))
303                                                 primary_amcp_server_ = asyncbootstrapper;
304                                 }
305                                 else
306                                         CASPAR_LOG(warning) << "Invalid controller: " << name;  
307                         }
308                         catch(...)
309                         {
310                                 CASPAR_LOG_CURRENT_EXCEPTION();
311                         }
312                 }
313         }
314
315         IO::protocol_strategy_factory<char>::ptr create_protocol(const std::wstring& name) const
316         {
317                 using namespace IO;
318
319                 if(boost::iequals(name, L"AMCP"))
320                         return wrap_legacy_protocol("\r\n", spl::make_shared<amcp::AMCPProtocolStrategy>(spl::make_shared_ptr(amcp_command_repo_)));
321                 else if(boost::iequals(name, L"CII"))
322                         return wrap_legacy_protocol("\r\n", spl::make_shared<cii::CIIProtocolStrategy>(channels_, cg_registry_, producer_registry_));
323                 else if(boost::iequals(name, L"CLOCK"))
324                         return spl::make_shared<to_unicode_adapter_factory>(
325                                         "ISO-8859-1",
326                                         spl::make_shared<CLK::clk_protocol_strategy_factory>(channels_, cg_registry_, producer_registry_));
327                 
328                 CASPAR_THROW_EXCEPTION(caspar_exception() << arg_name_info(L"name") << arg_value_info(name) << msg_info(L"Invalid protocol"));
329         }
330
331         void start_initial_media_info_scan()
332         {
333                 initial_media_info_thread_ = boost::thread([this]
334                 {
335                         for (boost::filesystem::wrecursive_directory_iterator iter(env::media_folder()), end; iter != end; ++iter)
336                         {
337                                 if (running_)
338                                 {
339                                         if (boost::filesystem::is_regular_file(iter->path()))
340                                                 media_info_repo_->get(iter->path().wstring());
341                                 }
342                                 else
343                                 {
344                                         CASPAR_LOG(info) << L"Initial media information retrieval aborted.";
345                                         return;
346                                 }
347                         }
348
349                         CASPAR_LOG(info) << L"Initial media information retrieval finished.";
350                 });
351         }
352 };
353
354 server::server(std::promise<bool>& shutdown_server_now) : impl_(new impl(shutdown_server_now)){}
355 void server::start() { impl_->start(); }
356 spl::shared_ptr<core::system_info_provider_repository> server::get_system_info_provider_repo() const { return impl_->system_info_provider_repo_; }
357 spl::shared_ptr<protocol::amcp::amcp_command_repository> server::get_amcp_command_repository() const { return spl::make_shared_ptr(impl_->amcp_command_repo_); }
358 core::monitor::subject& server::monitor_output() { return *impl_->monitor_subject_; }
359
360 }