]> git.sesse.net Git - casparcg/blobdiff - shell/server.cpp
2.1.0: Send ffmpeg_consumer frame-number through OSC.
[casparcg] / shell / server.cpp
index d094fdf8dfb7b84d7ab3af754d69994099c5d498..2da08565a1c8833f8813022900ccf6058182a5ba 100644 (file)
@@ -1,31 +1,35 @@
 /*\r
-* copyright (c) 2010 Sveriges Television AB <info@casparcg.com>\r
+* Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>\r
 *\r
-*  This file is part of CasparCG.\r
+* This file is part of CasparCG (www.casparcg.com).\r
 *\r
-*    CasparCG is free software: you can redistribute it and/or modify\r
-*    it under the terms of the GNU General Public License as published by\r
-*    the Free Software Foundation, either version 3 of the License, or\r
-*    (at your option) any later version.\r
+* CasparCG is free software: you can redistribute it and/or modify\r
+* it under the terms of the GNU General Public License as published by\r
+* the Free Software Foundation, either version 3 of the License, or\r
+* (at your option) any later version.\r
 *\r
-*    CasparCG is distributed in the hope that it will be useful,\r
-*    but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-*    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
-*    GNU General Public License for more details.\r
-\r
-*    You should have received a copy of the GNU General Public License\r
-*    along with CasparCG.  If not, see <http://www.gnu.org/licenses/>.\r
+* CasparCG is distributed in the hope that it will be useful,\r
+* but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+* GNU General Public License for more details.\r
+*\r
+* You should have received a copy of the GNU General Public License\r
+* along with CasparCG. If not, see <http://www.gnu.org/licenses/>.\r
 *\r
+* Author: Robert Nagy, ronag89@gmail.com\r
 */\r
+#include "stdafx.h"\r
 \r
 #include "server.h"\r
 \r
+#include <accelerator/accelerator.h>\r
+\r
 #include <common/env.h>\r
-#include <common/exception/exceptions.h>\r
-#include <common/utility/string.h>\r
+#include <common/except.h>\r
+#include <common/utf.h>\r
 \r
-#include <core/mixer/gpu/ogl_device.h>\r
 #include <core/video_channel.h>\r
+#include <core/video_format.h>\r
 #include <core/producer/stage.h>\r
 #include <core/consumer/output.h>\r
 \r
 #include <modules/ffmpeg/ffmpeg.h>\r
 #include <modules/flash/flash.h>\r
 #include <modules/oal/oal.h>\r
-#include <modules/ogl/ogl.h>\r
-#include <modules/silverlight/silverlight.h>\r
+#include <modules/screen/screen.h>\r
 #include <modules/image/image.h>\r
 \r
 #include <modules/oal/consumer/oal_consumer.h>\r
 #include <modules/bluefish/consumer/bluefish_consumer.h>\r
 #include <modules/decklink/consumer/decklink_consumer.h>\r
-#include <modules/ogl/consumer/ogl_consumer.h>\r
+#include <modules/screen/consumer/screen_consumer.h>\r
 #include <modules/ffmpeg/consumer/ffmpeg_consumer.h>\r
 \r
 #include <protocol/amcp/AMCPProtocolStrategy.h>\r
@@ -51,7 +54,6 @@
 \r
 #include <boost/algorithm/string.hpp>\r
 #include <boost/lexical_cast.hpp>\r
-#include <boost/filesystem.hpp>\r
 #include <boost/foreach.hpp>\r
 #include <boost/property_tree/ptree.hpp>\r
 #include <boost/property_tree/xml_parser.hpp>\r
@@ -61,91 +63,118 @@ namespace caspar {
 using namespace core;\r
 using namespace protocol;\r
 \r
-\r
-struct server::implementation : boost::noncopyable\r
+struct server::impl : boost::noncopyable\r
 {\r
-       std::vector<safe_ptr<IO::AsyncEventServer>> async_servers_;     \r
-       std::vector<safe_ptr<video_channel>>                            channels_;\r
-       ogl_device                                                                      ogl_;\r
-\r
-       implementation()                                                                                                \r
-       {                       \r
-               init_ffmpeg();\r
-               init_bluefish();\r
-               init_decklink();\r
-               init_flash();\r
-               init_oal();\r
-               init_ogl();\r
-               //init_silverlight();\r
-               init_image();\r
+       monitor::basic_subject                                                          event_subject_;\r
+       accelerator::accelerator                                                        accelerator_;\r
+       std::vector<spl::shared_ptr<IO::AsyncEventServer>>      async_servers_; \r
+       std::vector<spl::shared_ptr<video_channel>>                     channels_;\r
+\r
+       impl()          \r
+               : accelerator_(env::properties().get(L"configuration.accelerator", L"auto"))\r
+       {       \r
+\r
+               ffmpeg::init();\r
+               CASPAR_LOG(info) << L"Initialized ffmpeg module.";\r
+                                                         \r
+               bluefish::init();         \r
+               CASPAR_LOG(info) << L"Initialized bluefish module.";\r
+                                                         \r
+               decklink::init();         \r
+               CASPAR_LOG(info) << L"Initialized decklink module.";\r
+                                                                                                                 \r
+               oal::init();              \r
+               CASPAR_LOG(info) << L"Initialized oal module.";\r
+                                                         \r
+               screen::init();           \r
+               CASPAR_LOG(info) << L"Initialized ogl module.";\r
+\r
+               image::init();            \r
+               CASPAR_LOG(info) << L"Initialized image module.";\r
+\r
+               flash::init();            \r
+               CASPAR_LOG(info) << L"Initialized flash module.";\r
 \r
                setup_channels(env::properties());\r
+               CASPAR_LOG(info) << L"Initialized channels.";\r
+\r
                setup_controllers(env::properties());\r
+               CASPAR_LOG(info) << L"Initialized controllers.";\r
        }\r
 \r
-       ~implementation()\r
-       {                               \r
+       ~impl()\r
+       {               \r
                async_servers_.clear();\r
                channels_.clear();\r
+\r
+               Sleep(500); // HACK: Wait for asynchronous destruction of producers and consumers.\r
+\r
+               image::uninit();\r
+               ffmpeg::uninit();\r
        }\r
                                \r
-       void setup_channels(const boost::property_tree::ptree& pt)\r
+       void setup_channels(const boost::property_tree::wptree& pt)\r
        {   \r
-               using boost::property_tree::ptree;\r
-               BOOST_FOREACH(auto& xml_channel, pt.get_child("configuration.channels"))\r
+               using boost::property_tree::wptree;\r
+               BOOST_FOREACH(auto& xml_channel, pt.get_child(L"configuration.channels"))\r
                {               \r
-                       auto format_desc = video_format_desc::get(widen(xml_channel.second.get("video-mode", "PAL")));          \r
+                       auto format_desc = video_format_desc(xml_channel.second.get(L"video-mode", L"PAL"));            \r
                        if(format_desc.format == video_format::invalid)\r
-                               BOOST_THROW_EXCEPTION(caspar_exception() << msg_info("Invalid video-mode."));\r
+                               CASPAR_THROW_EXCEPTION(caspar_exception() << msg_info("Invalid video-mode."));\r
                        \r
-                       channels_.push_back(video_channel(channels_.size(), format_desc, ogl_));\r
+                       auto channel = spl::make_shared<video_channel>(static_cast<int>(channels_.size()+1), format_desc, accelerator_.create_image_mixer());\r
                        \r
-                       int index = 0;\r
-                       BOOST_FOREACH(auto& xml_consumer, xml_channel.second.get_child("consumers"))\r
+                       BOOST_FOREACH(auto& xml_consumer, xml_channel.second.get_child(L"consumers"))\r
                        {\r
                                try\r
                                {\r
-                                       const std::string name = xml_consumer.first;\r
-                                       if(name == "screen")\r
-                                               channels_.back()->output()->add(index++, create_ogl_consumer(xml_consumer.second));                                     \r
-                                       else if(name == "bluefish")                                     \r
-                                               channels_.back()->output()->add(index++, create_bluefish_consumer(xml_consumer.second));                                        \r
-                                       else if(name == "decklink")                                     \r
-                                               channels_.back()->output()->add(index++, create_decklink_consumer(xml_consumer.second));                                \r
-                                       else if(name == "file")                                 \r
-                                               channels_.back()->output()->add(index++, create_ffmpeg_consumer(xml_consumer.second));                                          \r
-                                       else if(name == "audio")\r
-                                               channels_.back()->output()->add(index++, make_safe<oal_consumer>());            \r
-                                       else if(name != "<xmlcomment>")\r
-                                               CASPAR_LOG(warning) << "Invalid consumer: " << widen(name);     \r
+                                       auto name = xml_consumer.first;\r
+                                       if(name == L"screen")\r
+                                               channel->output().add(caspar::screen::create_consumer(xml_consumer.second));                                    \r
+                                       else if(name == L"bluefish")                                    \r
+                                               channel->output().add(bluefish::create_consumer(xml_consumer.second));                                  \r
+                                       else if(name == L"decklink")                                    \r
+                                               channel->output().add(decklink::create_consumer(xml_consumer.second));                          \r
+                                       else if(name == L"file")                                        \r
+                                               channel->output().add(ffmpeg::create_consumer(xml_consumer.second));                                            \r
+                                       else if(name == L"system-audio")\r
+                                               channel->output().add(oal::create_consumer());          \r
+                                       else if(name != L"<xmlcomment>")\r
+                                               CASPAR_LOG(warning) << "Invalid consumer: " << name;    \r
                                }\r
                                catch(...)\r
                                {\r
                                        CASPAR_LOG_CURRENT_EXCEPTION();\r
                                }\r
-                       }                                                       \r
+                       }               \r
+\r
+                   channel->subscribe(monitor::observable::observer_ptr(event_subject_));\r
+                       channels_.push_back(channel);\r
                }\r
+\r
+               // Dummy diagnostics channel\r
+               if(env::properties().get(L"configuration.channel-grid", false))\r
+                       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()));\r
        }\r
                \r
-       void setup_controllers(const boost::property_tree::ptree& pt)\r
+       void setup_controllers(const boost::property_tree::wptree& pt)\r
        {               \r
-               using boost::property_tree::ptree;\r
-               BOOST_FOREACH(auto& xml_controller, pt.get_child("configuration.controllers"))\r
+               using boost::property_tree::wptree;\r
+               BOOST_FOREACH(auto& xml_controller, pt.get_child(L"configuration.controllers"))\r
                {\r
                        try\r
                        {\r
-                               std::string name = xml_controller.first;\r
-                               std::string protocol = xml_controller.second.get<std::string>("protocol");      \r
+                               auto name = xml_controller.first;\r
+                               auto protocol = xml_controller.second.get<std::wstring>(L"protocol");   \r
 \r
-                               if(name == "tcp")\r
+                               if(name == L"tcp")\r
                                {                                       \r
-                                       unsigned int port = xml_controller.second.get("port", 5250);\r
-                                       auto asyncbootstrapper = make_safe<IO::AsyncEventServer>(create_protocol(protocol), port);\r
-                                       asyncbootstrapper->Start();\r
+                                       unsigned int port = xml_controller.second.get(L"port", 5250);\r
+                                       auto asyncbootstrapper = spl::make_shared<IO::AsyncEventServer>(create_protocol(protocol), port);\r
                                        async_servers_.push_back(asyncbootstrapper);\r
                                }\r
                                else\r
-                                       CASPAR_LOG(warning) << "Invalid controller: " << widen(name);   \r
+                                       CASPAR_LOG(warning) << "Invalid controller: " << name;  \r
                        }\r
                        catch(...)\r
                        {\r
@@ -154,24 +183,26 @@ struct server::implementation : boost::noncopyable
                }\r
        }\r
 \r
-       safe_ptr<IO::IProtocolStrategy> create_protocol(const std::string& name) const\r
+       spl::shared_ptr<IO::IProtocolStrategy> create_protocol(const std::wstring& name) const\r
        {\r
-               if(name == "AMCP")\r
-                       return make_safe<amcp::AMCPProtocolStrategy>(channels_);\r
-               else if(name == "CII")\r
-                       return make_safe<cii::CIIProtocolStrategy>(channels_);\r
-               else if(name == "CLOCK")\r
-                       return make_safe<CLK::CLKProtocolStrategy>(channels_);\r
+               if(boost::iequals(name, L"AMCP"))\r
+                       return spl::make_shared<amcp::AMCPProtocolStrategy>(channels_);\r
+               else if(boost::iequals(name, L"CII"))\r
+                       return spl::make_shared<cii::CIIProtocolStrategy>(channels_);\r
+               else if(boost::iequals(name, L"CLOCK"))\r
+                       return spl::make_shared<CLK::CLKProtocolStrategy>(channels_);\r
                \r
-               BOOST_THROW_EXCEPTION(caspar_exception() << arg_name_info("name") << arg_value_info(name) << msg_info("Invalid protocol"));\r
+               CASPAR_THROW_EXCEPTION(caspar_exception() << arg_name_info(L"name") << arg_value_info(name) << msg_info(L"Invalid protocol"));\r
        }\r
 };\r
 \r
-server::server() : impl_(new implementation()){}\r
+server::server() : impl_(new impl()){}\r
 \r
-const std::vector<safe_ptr<video_channel>> server::get_channels() const\r
+const std::vector<spl::shared_ptr<video_channel>> server::channels() const\r
 {\r
        return impl_->channels_;\r
 }\r
+void server::subscribe(const monitor::observable::observer_ptr& o){impl_->event_subject_.subscribe(o);}\r
+void server::unsubscribe(const monitor::observable::observer_ptr& o){impl_->event_subject_.unsubscribe(o);}\r
 \r
 }
\ No newline at end of file