]> git.sesse.net Git - casparcg/blobdiff - shell/main.cpp
Moved framerate calculation from CLS/CINF to thumbnail generation time for each file...
[casparcg] / shell / main.cpp
index b381dedfd1d44314de285ab1447e08a96d133efd..f7cd96ca9df6c907191e3811196b08bffc59288f 100644 (file)
@@ -1,5 +1,5 @@
 /*\r
-* Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>\r
+* Copyright 2013 Sveriges Television AB http://casparcg.com/\r
 *\r
 * This file is part of CasparCG (www.casparcg.com).\r
 *\r
@@ -38,6 +38,8 @@
 #define NOMINMAX\r
 #define WIN32_LEAN_AND_MEAN\r
 \r
+#include <locale>\r
+\r
 #include <windows.h>\r
 #include <winnt.h>\r
 #include <mmsystem.h>\r
@@ -50,6 +52,7 @@
 #include <modules/flash/flash.h>\r
 #include <modules/ffmpeg/ffmpeg.h>\r
 #include <modules/image/image.h>\r
+#include <modules/newtek/util/air_send.h>\r
 \r
 #include <common/env.h>\r
 #include <common/exception/win32_exception.h>\r
 #include <boost/property_tree/detail/file_parser_error.hpp>\r
 #include <boost/property_tree/xml_parser.hpp>\r
 #include <boost/foreach.hpp>\r
+#include <boost/thread.hpp>\r
+#include <boost/thread/future.hpp>\r
+#include <boost/locale.hpp>\r
+#include <boost/algorithm/string/case_conv.hpp>\r
 \r
 // NOTE: This is needed in order to make CComObject work since this is not a real ATL project.\r
 CComModule _AtlModule;\r
@@ -79,6 +86,14 @@ void change_icon( const HICON hNewIcon )
    ::FreeLibrary(hMod);\r
 }\r
 \r
+void setup_global_locale()\r
+{\r
+       boost::locale::generator gen;\r
+       gen.categories(boost::locale::codepage_facet);\r
+\r
+       std::locale::global(gen(""));\r
+}\r
+\r
 void setup_console_window()\r
 {       \r
        auto hOut = GetStdHandle(STD_OUTPUT_HANDLE);\r
@@ -118,9 +133,12 @@ void setup_console_window()
 \r
 void print_info()\r
 {\r
-       CASPAR_LOG(info) << L"################################################################################";\r
-       CASPAR_LOG(info) << L"Copyright (c) 2010 Sveriges Television AB, www.casparcg.com, <info@casparcg.com>";\r
-       CASPAR_LOG(info) << L"################################################################################";\r
+       CASPAR_LOG(info) << L"############################################################################";\r
+       CASPAR_LOG(info) << L"CasparCG Server is distributed by the Swedish Broadcasting Corporation (SVT)";\r
+       CASPAR_LOG(info) << L"under the GNU General Public License GPLv3 or higher.";\r
+       CASPAR_LOG(info) << L"Please see LICENSE.TXT for details.";\r
+       CASPAR_LOG(info) << L"http://www.casparcg.com/";\r
+       CASPAR_LOG(info) << L"############################################################################";\r
        CASPAR_LOG(info) << L"Starting CasparCG Video and Graphics Playout Server " << caspar::env::version();\r
        CASPAR_LOG(info) << L"on " << caspar::get_win_product_name() << L" " << caspar::get_win_sp_version();\r
        CASPAR_LOG(info) << caspar::get_cpu_info();\r
@@ -142,6 +160,7 @@ void print_info()
        CASPAR_LOG(info) << L"FFMPEG-swscale "  << caspar::ffmpeg::get_swscale_version();\r
        CASPAR_LOG(info) << L"Flash "                   << caspar::flash::get_version();\r
        CASPAR_LOG(info) << L"Template-Host "   << caspar::flash::get_cg_version();\r
+       CASPAR_LOG(info) << L"NewTek iVGA "             << (caspar::newtek::airsend::is_available() ? L"available" : L"unavailable (" + caspar::newtek::airsend::dll_name() + L")");\r
 }\r
 \r
 LONG WINAPI UserUnhandledExceptionFilter(EXCEPTION_POINTERS* info)\r
@@ -160,12 +179,19 @@ LONG WINAPI UserUnhandledExceptionFilter(EXCEPTION_POINTERS* info)
     return EXCEPTION_EXECUTE_HANDLER;\r
 }\r
 \r
+std::wstring make_upper_case(const std::wstring& str)\r
+{\r
+       return boost::to_upper_copy(str);\r
+}\r
+\r
 int main(int argc, wchar_t* argv[])\r
 {      \r
        static_assert(sizeof(void*) == 4, "64-bit code generation is not supported.");\r
        \r
        SetUnhandledExceptionFilter(UserUnhandledExceptionFilter);\r
 \r
+       setup_global_locale();\r
+\r
        std::wcout << L"Type \"q\" to close application." << std::endl;\r
        \r
        // Set debug mode.\r
@@ -187,7 +213,7 @@ int main(int argc, wchar_t* argv[])
        SetPriorityClass(GetCurrentProcess(), ABOVE_NORMAL_PRIORITY_CLASS);\r
 \r
        // Install structured exception handler.\r
-       caspar::win32_exception::install_handler();\r
+       caspar::win32_exception::ensure_handler_installed_for_thread("main-thread");\r
                                \r
        // Increase time precision. This will increase accuracy of function like Sleep(1) from 10 ms to 1 ms.\r
        struct inc_prec\r
@@ -202,11 +228,11 @@ int main(int argc, wchar_t* argv[])
                tbb_thread_installer(){observe(true);}\r
                void on_scheduler_entry(bool is_worker)\r
                {\r
-                       //caspar::detail::SetThreadName(GetCurrentThreadId(), "tbb-worker-thread");\r
-                       caspar::win32_exception::install_handler();\r
+                       caspar::win32_exception::ensure_handler_installed_for_thread("tbb-worker-thread");\r
                }\r
        } tbb_thread_installer;\r
 \r
+       bool restart = false;\r
        tbb::task_scheduler_init init;\r
        \r
        try \r
@@ -235,82 +261,115 @@ int main(int argc, wchar_t* argv[])
                boost::property_tree::xml_writer_settings<wchar_t> w(' ', 3);\r
                boost::property_tree::write_xml(str, caspar::env::properties(), w);\r
                CASPAR_LOG(info) << L"casparcg.config:\n-----------------------------------------\n" << str.str().c_str() << L"-----------------------------------------";\r
-                               \r
+               tbb::atomic<bool> wait_for_keypress;\r
+               wait_for_keypress = false;\r
+\r
                {\r
-                       // Create server object which initializes channels, protocols and controllers.\r
-                       caspar::server caspar_server;\r
-                               \r
-                       // Create a amcp parser for console commands.\r
-                       caspar::protocol::amcp::AMCPProtocolStrategy amcp(caspar_server.get_channels());\r
+                       boost::promise<bool> shutdown_server_now;\r
+                       boost::unique_future<bool> shutdown_server = shutdown_server_now.get_future();\r
 \r
-                       // Create a dummy client which prints amcp responses to console.\r
-                       auto console_client = std::make_shared<caspar::IO::ConsoleClientInfo>();\r
+                       // Create server object which initializes channels, protocols and controllers.\r
+                       caspar::server caspar_server(shutdown_server_now);\r
 \r
-                       std::wstring wcmd;\r
-                       while(true)\r
+                       // Use separate thread for the blocking console input, will be terminated \r
+                       // anyway when the main thread terminates.\r
+                       boost::thread stdin_thread([&caspar_server, &shutdown_server_now, &wait_for_keypress]\r
                        {\r
-                               std::getline(std::wcin, wcmd); // TODO: It's blocking...\r
+                               caspar::win32_exception::ensure_handler_installed_for_thread("stdin-thread");\r
+\r
+                               // Create a amcp parser for console commands.\r
+                               caspar::protocol::amcp::AMCPProtocolStrategy amcp(\r
+                                               caspar_server.get_channels(),\r
+                                               caspar_server.get_thumbnail_generator(),\r
+                                               caspar_server.get_media_info_repo(),\r
+                                               shutdown_server_now);\r
+\r
+                               // Create a dummy client which prints amcp responses to console.\r
+                               auto console_client = std::make_shared<caspar::IO::ConsoleClientInfo>();\r
+                               std::wstring wcmd;\r
+       \r
+                               while(true)\r
+                               {\r
+                                       std::getline(std::wcin, wcmd); // TODO: It's blocking...\r
                                \r
-                               boost::to_upper(wcmd);\r
+                                       //boost::to_upper(wcmd);  // TODO COMPILER crashes on this line, Strange!\r
+                                       auto upper_cmd = make_upper_case(wcmd);\r
 \r
-                               if(wcmd == L"EXIT" || wcmd == L"Q" || wcmd == L"QUIT" || wcmd == L"BYE")\r
-                                       break;\r
-                               \r
-                               // This is just dummy code for testing.\r
-                               if(wcmd.substr(0, 1) == L"1")\r
-                                       wcmd = L"LOADBG 1-1 " + wcmd.substr(1, wcmd.length()-1) + L" SLIDE 100 LOOP \r\nPLAY 1-1";\r
-                               else if(wcmd.substr(0, 1) == L"2")\r
-                                       wcmd = L"MIXER 1-0 VIDEO IS_KEY 1";\r
-                               else if(wcmd.substr(0, 1) == L"3")\r
-                                       wcmd = L"CG 1-2 ADD 1 BBTELEFONARE 1";\r
-                               else if(wcmd.substr(0, 1) == L"4")\r
-                                       wcmd = L"PLAY 1-1 DV FILTER yadif=1:-1 LOOP";\r
-                               else if(wcmd.substr(0, 1) == L"5")\r
-                               {\r
-                                       auto file = wcmd.substr(2, wcmd.length()-1);\r
-                                       wcmd = L"PLAY 1-1 " + file + L" LOOP\r\n" \r
-                                                       L"PLAY 1-2 " + file + L" LOOP\r\n" \r
-                                                       L"PLAY 1-3 " + file + L" LOOP\r\n"\r
-                                                       L"PLAY 2-1 " + file + L" LOOP\r\n" \r
-                                                       L"PLAY 2-2 " + file + L" LOOP\r\n" \r
-                                                       L"PLAY 2-3 " + file + L" LOOP\r\n";\r
-                               }\r
-                               else if(wcmd.substr(0, 1) == L"X")\r
-                               {\r
-                                       int num = 0;\r
-                                       std::wstring file;\r
-                                       try\r
+                                       if(upper_cmd == L"EXIT" || upper_cmd == L"Q" || upper_cmd == L"QUIT" || upper_cmd == L"BYE")\r
                                        {\r
-                                               num = boost::lexical_cast<int>(wcmd.substr(1, 2));\r
-                                               file = wcmd.substr(4, wcmd.length()-1);\r
+                                               wait_for_keypress = true;\r
+                                               shutdown_server_now.set_value(false); // False to not restart server\r
+                                               break;\r
                                        }\r
-                                       catch(...)\r
+                               \r
+                                       try\r
                                        {\r
-                                               num = boost::lexical_cast<int>(wcmd.substr(1, 1));\r
-                                               file = wcmd.substr(3, wcmd.length()-1);\r
+                                               // This is just dummy code for testing.\r
+                                               if(wcmd.substr(0, 1) == L"1")\r
+                                                       wcmd = L"LOADBG 1-1 " + wcmd.substr(1, wcmd.length()-1) + L" SLIDE 100 LOOP \r\nPLAY 1-1";\r
+                                               else if(wcmd.substr(0, 1) == L"2")\r
+                                                       wcmd = L"MIXER 1-0 VIDEO IS_KEY 1";\r
+                                               else if(wcmd.substr(0, 1) == L"3")\r
+                                                       wcmd = L"CG 1-2 ADD 1 BBTELEFONARE 1";\r
+                                               else if(wcmd.substr(0, 1) == L"4")\r
+                                                       wcmd = L"PLAY 1-1 DV FILTER yadif=1:-1 LOOP";\r
+                                               else if(wcmd.substr(0, 1) == L"5")\r
+                                               {\r
+                                                       auto file = wcmd.substr(2, wcmd.length()-1);\r
+                                                       wcmd = L"PLAY 1-1 " + file + L" LOOP\r\n" \r
+                                                                       L"PLAY 1-2 " + file + L" LOOP\r\n" \r
+                                                                       L"PLAY 1-3 " + file + L" LOOP\r\n"\r
+                                                                       L"PLAY 2-1 " + file + L" LOOP\r\n" \r
+                                                                       L"PLAY 2-2 " + file + L" LOOP\r\n" \r
+                                                                       L"PLAY 2-3 " + file + L" LOOP\r\n";\r
+                                               }\r
+                                               else if(upper_cmd.substr(0, 1) == L"X")\r
+                                               {\r
+                                                       int num = 0;\r
+                                                       std::wstring file;\r
+                                                       try\r
+                                                       {\r
+                                                               num = boost::lexical_cast<int>(wcmd.substr(1, 2));\r
+                                                               file = wcmd.substr(4, wcmd.length()-1);\r
+                                                       }\r
+                                                       catch(...)\r
+                                                       {\r
+                                                               num = boost::lexical_cast<int>(wcmd.substr(1, 1));\r
+                                                               file = wcmd.substr(3, wcmd.length()-1);\r
+                                                       }\r
+\r
+                                                       int n = 0;\r
+                                                       int num2 = num;\r
+                                                       while(num2 > 0)\r
+                                                       {\r
+                                                               num2 >>= 1;\r
+                                                               n++;\r
+                                                       }\r
+\r
+                                                       wcmd = L"MIXER 1 GRID " + boost::lexical_cast<std::wstring>(n);\r
+\r
+                                                       for(int i = 1; i <= num; ++i)\r
+                                                               wcmd += L"\r\nPLAY 1-" + boost::lexical_cast<std::wstring>(i) + L" " + file + L" LOOP";// + L" SLIDE 100 LOOP";\r
+                                               }\r
                                        }\r
-\r
-                                       int n = 0;\r
-                                       int num2 = num;\r
-                                       while(num2 > 0)\r
+                                       catch (...)\r
                                        {\r
-                                               num2 >>= 1;\r
-                                               n++;\r
+                                               CASPAR_LOG_CURRENT_EXCEPTION();\r
+                                               continue;\r
                                        }\r
 \r
-                                       wcmd = L"MIXER 1 GRID " + boost::lexical_cast<std::wstring>(n);\r
-\r
-                                       for(int i = 1; i <= num; ++i)\r
-                                               wcmd += L"\r\nPLAY 1-" + boost::lexical_cast<std::wstring>(i) + L" " + file + L" LOOP";// + L" SLIDE 100 LOOP";\r
-                               }\r
-\r
-                               wcmd += L"\r\n";\r
-                               amcp.Parse(wcmd.c_str(), wcmd.length(), console_client);\r
-                       }       \r
+                                       wcmd += L"\r\n";\r
+                                       amcp.Parse(wcmd.c_str(), wcmd.length(), console_client);\r
+                               }       \r
+                       });\r
+                       stdin_thread.detach();\r
+                       restart = shutdown_server.get();\r
                }\r
                Sleep(500);\r
                CASPAR_LOG(info) << "Successfully shutdown CasparCG Server.";\r
-               system("pause");        \r
+\r
+               if (wait_for_keypress)\r
+                       system("pause");        \r
        }\r
        catch(boost::property_tree::file_parser_error&)\r
        {\r
@@ -327,5 +386,5 @@ int main(int argc, wchar_t* argv[])
                Sleep(4000);\r
        }       \r
        \r
-       return 0;\r
+       return restart ? 5 : 0;\r
 }
\ No newline at end of file