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