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