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