]> git.sesse.net Git - casparcg/blobdiff - shell/main.cpp
2.0.2: - Updated to use std::wstring more consistently.
[casparcg] / shell / main.cpp
index 3761c41fe0f166be0394fd772a4a6931fa92b012..70d705f8ad2c1c3103f9a115315326f276abd886 100644 (file)
@@ -1,21 +1,22 @@
 /*\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
 \r
 // tbbmalloc_proxy: \r
 #include <common/os/windows/current_version.h>\r
 #include <common/os/windows/system_info.h>\r
 \r
-#include <core/mixer/gpu/ogl_device.h>\r
-\r
 #include <tbb/task_scheduler_init.h>\r
 #include <tbb/task_scheduler_observer.h>\r
 \r
 #include <boost/property_tree/detail/file_parser_error.hpp>\r
-\r
-#include <algorithm>\r
+#include <boost/property_tree/xml_parser.hpp>\r
+#include <boost/foreach.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
@@ -86,6 +85,7 @@ void setup_console_window()
        // Disable close button in console to avoid shutdown without cleanup.\r
        EnableMenuItem(GetSystemMenu(GetConsoleWindow(), FALSE), SC_CLOSE , MF_GRAYED);\r
        DrawMenuBar(GetConsoleWindow());\r
+       //SetConsoleCtrlHandler(HandlerRoutine, true);\r
 \r
        // Configure console size and position.\r
        auto coord = GetLargestConsoleWindowSize(hOut);\r
@@ -122,30 +122,22 @@ void print_info()
        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
        CASPAR_LOG(info) << caspar::get_system_product_name();\r
-       CASPAR_LOG(info) << L"Flash " << caspar::flash::get_version();\r
-       CASPAR_LOG(info) << L"Flash-Template-Host " << caspar::flash::get_cg_version();\r
-       CASPAR_LOG(info) << L"FreeImage " << caspar::image::get_version();\r
        \r
        CASPAR_LOG(info) << L"Decklink " << caspar::decklink::get_version();\r
-       auto deck = caspar::decklink::get_device_list();\r
-       std::for_each(deck.begin(), deck.end(), [](const std::wstring& device)\r
-       {\r
-               CASPAR_LOG(info) << device;\r
-       });\r
+       BOOST_FOREACH(auto device, caspar::decklink::get_device_list())\r
+               CASPAR_LOG(info) << L" - " << device;   \r
                \r
        CASPAR_LOG(info) << L"Bluefish " << caspar::bluefish::get_version();\r
-       auto blue = caspar::bluefish::get_device_list();\r
-       std::for_each(blue.begin(), blue.end(), [](const std::wstring& device)\r
-       {\r
-               CASPAR_LOG(info) << device;\r
-       });\r
+       BOOST_FOREACH(auto device, caspar::bluefish::get_device_list())\r
+               CASPAR_LOG(info) << L" - " << device;   \r
        \r
+       CASPAR_LOG(info) << L"Flash "                   << caspar::flash::get_version();\r
+       CASPAR_LOG(info) << L"FreeImage "               << caspar::image::get_version();\r
        CASPAR_LOG(info) << L"FFMPEG-avcodec "  << caspar::ffmpeg::get_avcodec_version();\r
        CASPAR_LOG(info) << L"FFMPEG-avformat " << caspar::ffmpeg::get_avformat_version();\r
        CASPAR_LOG(info) << L"FFMPEG-avfilter " << caspar::ffmpeg::get_avfilter_version();\r
        CASPAR_LOG(info) << L"FFMPEG-avutil "   << caspar::ffmpeg::get_avutil_version();\r
        CASPAR_LOG(info) << L"FFMPEG-swscale "  << caspar::ffmpeg::get_swscale_version();\r
-       CASPAR_LOG(info) << L"OpenGL " << caspar::core::ogl_device::get_version() << "\n\n";\r
 }\r
 \r
 LONG WINAPI UserUnhandledExceptionFilter(EXCEPTION_POINTERS* info)\r
@@ -170,7 +162,7 @@ int main(int argc, wchar_t* argv[])
        \r
        SetUnhandledExceptionFilter(UserUnhandledExceptionFilter);\r
 \r
-       CASPAR_LOG(info) << L"Type \"q\" to close application";\r
+       std::wcout << L"Type \"q\" to close application." << std::endl;\r
        \r
        // Set debug mode.\r
        #ifdef _DEBUG\r
@@ -211,96 +203,109 @@ int main(int argc, wchar_t* argv[])
        try \r
        {\r
                // Configure environment properties from configuration.\r
-               caspar::env::configure("casparcg.config");\r
-\r
+               caspar::env::configure(L"casparcg.config");\r
+                               \r
        #ifdef _DEBUG\r
-               if(caspar::env::properties().get("configuration.debugging.remote", false))\r
+               if(caspar::env::properties().get(L"configuration.debugging.remote", false))\r
                        MessageBox(nullptr, TEXT("Now is the time to connect for remote debugging..."), TEXT("Debug"), MB_OK | MB_TOPMOST);\r
        #endif   \r
 \r
                // Start logging to file.\r
-               caspar::log::add_file_sink(caspar::env::log_folder());\r
+               caspar::log::add_file_sink(caspar::env::log_folder());                  \r
+               std::wcout << L"Logging [info] or higher severity to " << caspar::env::log_folder() << std::endl << std::endl;\r
                \r
                // Setup console window.\r
                setup_console_window();\r
 \r
                // Print environment information.\r
                print_info();\r
+                       \r
+               std::wstringstream str;\r
+               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
-               // Create server object which initializes channels, protocols and controllers.\r
-               caspar::server caspar_server;\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
+                       // Create a amcp parser for console commands.\r
+                       caspar::protocol::amcp::AMCPProtocolStrategy amcp(caspar_server.get_channels());\r
 \r
-               // Create a dummy client which prints amcp responses to console.\r
-               auto dummy = std::make_shared<caspar::IO::ConsoleClientInfo>();\r
+                       // Create a dummy client which prints amcp responses to console.\r
+                       auto console_client = std::make_shared<caspar::IO::ConsoleClientInfo>();\r
 \r
-               bool is_running = true;\r
-               while(is_running)\r
-               {\r
                        std::wstring wcmd;\r
-                       std::getline(std::wcin, wcmd); // TODO: It's blocking...\r
-\r
-                       is_running = wcmd != L"exit" && wcmd != L"q";\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
+                       while(true)\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
-                               {\r
-                                       num = boost::lexical_cast<int>(wcmd.substr(1, 2));\r
-                                       file = wcmd.substr(4, wcmd.length()-1);\r
-                               }\r
-                               catch(...)\r
+                               std::getline(std::wcin, wcmd); // TODO: It's blocking...\r
+                               \r
+                               boost::to_upper(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
-                                       num = boost::lexical_cast<int>(wcmd.substr(1, 1));\r
-                                       file = wcmd.substr(3, wcmd.length()-1);\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
-\r
-                               int n = 0;\r
-                               int num2 = num;\r
-                               while(num2 > 0)\r
+                               else if(wcmd.substr(0, 1) == L"X")\r
                                {\r
-                                       num2 >>= 1;\r
-                                       n++;\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
-                               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(), dummy);\r
+                               wcmd += L"\r\n";\r
+                               amcp.Parse(wcmd.c_str(), wcmd.length(), console_client);\r
+                       }       \r
                }\r
-               \r
-               Sleep(100); // CAPSAR_LOG is asynchronous. Try to get text in correct order.\r
-               system("pause");\r
+               Sleep(500);\r
+               CASPAR_LOG(info) << "Successfully shutdown CasparCG Server.";\r
+               system("pause");        \r
        }\r
        catch(boost::property_tree::file_parser_error&)\r
        {\r
                CASPAR_LOG_CURRENT_EXCEPTION();\r
                CASPAR_LOG(fatal) << L"Unhandled configuration error in main thread. Please check the configuration file (casparcg.config) for errors.";\r
+               system("pause");        \r
        }\r
        catch(caspar::gl::ogl_exception&)\r
        {\r
@@ -313,6 +318,5 @@ int main(int argc, wchar_t* argv[])
                CASPAR_LOG(fatal) << L"Unhandled exception in main thread. Please report this error on the CasparCG forums (www.casparcg.com/forum).";\r
        }       \r
        \r
-       CASPAR_LOG(info) << "Successfully shutdown CasparCG Server.";\r
        return 0;\r
 }
\ No newline at end of file