X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=shell%2Fmain.cpp;h=70d705f8ad2c1c3103f9a115315326f276abd886;hb=e6e6c5a282cd7d59cc4d4b34eae7b97c6853bdf2;hp=4ce3e24de7fe7ec70dd51fc3df0965d4b6b3bd44;hpb=e5770670a865f6a4f85245c7f895acb03f295e26;p=casparcg diff --git a/shell/main.cpp b/shell/main.cpp index 4ce3e24de..70d705f8a 100644 --- a/shell/main.cpp +++ b/shell/main.cpp @@ -1,21 +1,22 @@ /* -* copyright (c) 2010 Sveriges Television AB +* Copyright (c) 2011 Sveriges Television AB * -* This file is part of CasparCG. +* This file is part of CasparCG (www.casparcg.com). * -* CasparCG is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. +* CasparCG is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. * -* CasparCG is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. - -* You should have received a copy of the GNU General Public License -* along with CasparCG. If not, see . +* CasparCG is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with CasparCG. If not, see . * +* Author: Robert Nagy, ronag89@gmail.com */ // tbbmalloc_proxy: @@ -57,14 +58,12 @@ #include #include -#include - #include #include #include - -#include +#include +#include // NOTE: This is needed in order to make CComObject work since this is not a real ATL project. CComModule _AtlModule; @@ -86,6 +85,7 @@ void setup_console_window() // Disable close button in console to avoid shutdown without cleanup. EnableMenuItem(GetSystemMenu(GetConsoleWindow(), FALSE), SC_CLOSE , MF_GRAYED); DrawMenuBar(GetConsoleWindow()); + //SetConsoleCtrlHandler(HandlerRoutine, true); // Configure console size and position. auto coord = GetLargestConsoleWindowSize(hOut); @@ -122,29 +122,22 @@ void print_info() CASPAR_LOG(info) << L"on " << caspar::get_win_product_name() << L" " << caspar::get_win_sp_version(); CASPAR_LOG(info) << caspar::get_cpu_info(); CASPAR_LOG(info) << caspar::get_system_product_name(); - CASPAR_LOG(info) << L"Flash " << caspar::flash::get_version(); - CASPAR_LOG(info) << L"Flash-Template-Host " << caspar::flash::get_cg_version(); - CASPAR_LOG(info) << L"FreeImage " << caspar::image::get_version(); CASPAR_LOG(info) << L"Decklink " << caspar::decklink::get_version(); - auto deck = caspar::decklink::get_device_list(); - std::for_each(deck.begin(), deck.end(), [](const std::wstring& device) - { - CASPAR_LOG(info) << device; - }); + BOOST_FOREACH(auto device, caspar::decklink::get_device_list()) + CASPAR_LOG(info) << L" - " << device; - auto blue = caspar::bluefish::get_device_list(); - std::for_each(blue.begin(), blue.end(), [](const std::wstring& device) - { - CASPAR_LOG(info) << device; - }); + CASPAR_LOG(info) << L"Bluefish " << caspar::bluefish::get_version(); + BOOST_FOREACH(auto device, caspar::bluefish::get_device_list()) + CASPAR_LOG(info) << L" - " << device; + CASPAR_LOG(info) << L"Flash " << caspar::flash::get_version(); + CASPAR_LOG(info) << L"FreeImage " << caspar::image::get_version(); CASPAR_LOG(info) << L"FFMPEG-avcodec " << caspar::ffmpeg::get_avcodec_version(); CASPAR_LOG(info) << L"FFMPEG-avformat " << caspar::ffmpeg::get_avformat_version(); CASPAR_LOG(info) << L"FFMPEG-avfilter " << caspar::ffmpeg::get_avfilter_version(); CASPAR_LOG(info) << L"FFMPEG-avutil " << caspar::ffmpeg::get_avutil_version(); CASPAR_LOG(info) << L"FFMPEG-swscale " << caspar::ffmpeg::get_swscale_version(); - CASPAR_LOG(info) << L"OpenGL " << caspar::core::ogl_device::get_version() << "\n\n"; } LONG WINAPI UserUnhandledExceptionFilter(EXCEPTION_POINTERS* info) @@ -160,7 +153,7 @@ LONG WINAPI UserUnhandledExceptionFilter(EXCEPTION_POINTERS* info) } catch(...){} - return EXCEPTION_CONTINUE_EXECUTION; + return EXCEPTION_EXECUTE_HANDLER; } int main(int argc, wchar_t* argv[]) @@ -169,7 +162,7 @@ int main(int argc, wchar_t* argv[]) SetUnhandledExceptionFilter(UserUnhandledExceptionFilter); - CASPAR_LOG(info) << L"Type \"q\" to close application"; + std::wcout << L"Type \"q\" to close application." << std::endl; // Set debug mode. #ifdef _DEBUG @@ -210,98 +203,114 @@ int main(int argc, wchar_t* argv[]) try { // Configure environment properties from configuration. - caspar::env::configure("casparcg.config"); - + caspar::env::configure(L"casparcg.config"); + #ifdef _DEBUG - if(caspar::env::properties().get("configuration.debugging.remote", false)) + if(caspar::env::properties().get(L"configuration.debugging.remote", false)) MessageBox(nullptr, TEXT("Now is the time to connect for remote debugging..."), TEXT("Debug"), MB_OK | MB_TOPMOST); #endif // Start logging to file. - caspar::log::add_file_sink(caspar::env::log_folder()); + caspar::log::add_file_sink(caspar::env::log_folder()); + std::wcout << L"Logging [info] or higher severity to " << caspar::env::log_folder() << std::endl << std::endl; // Setup console window. setup_console_window(); // Print environment information. print_info(); + + std::wstringstream str; + boost::property_tree::xml_writer_settings w(' ', 3); + boost::property_tree::write_xml(str, caspar::env::properties(), w); + CASPAR_LOG(info) << L"casparcg.config:\n-----------------------------------------\n" << str.str().c_str() << L"-----------------------------------------"; - // Create server object which initializes channels, protocols and controllers. - caspar::server caspar_server; + { + // Create server object which initializes channels, protocols and controllers. + caspar::server caspar_server; - // Create a amcp parser for console commands. - caspar::protocol::amcp::AMCPProtocolStrategy amcp(caspar_server.get_channels()); + // Create a amcp parser for console commands. + caspar::protocol::amcp::AMCPProtocolStrategy amcp(caspar_server.get_channels()); - // Create a dummy client which prints amcp responses to console. - auto dummy = std::make_shared(); + // Create a dummy client which prints amcp responses to console. + auto console_client = std::make_shared(); - bool is_running = true; - while(is_running) - { std::wstring wcmd; - std::getline(std::wcin, wcmd); // TODO: It's blocking... - - is_running = wcmd != L"exit" && wcmd != L"q"; - if(wcmd.substr(0, 1) == L"1") - wcmd = L"LOADBG 1-1 " + wcmd.substr(1, wcmd.length()-1) + L" SLIDE 100 LOOP \r\nPLAY 1-1"; - else if(wcmd.substr(0, 1) == L"2") - wcmd = L"MIXER 1-0 VIDEO IS_KEY 1"; - else if(wcmd.substr(0, 1) == L"3") - wcmd = L"CG 1-2 ADD 1 BBTELEFONARE 1"; - else if(wcmd.substr(0, 1) == L"4") - wcmd = L"PLAY 1-1 DV FILTER yadif=1:-1 LOOP"; - else if(wcmd.substr(0, 1) == L"5") - { - auto file = wcmd.substr(2, wcmd.length()-1); - wcmd = L"PLAY 1-1 " + file + L" LOOP\r\n" - L"PLAY 1-2 " + file + L" LOOP\r\n" - L"PLAY 1-3 " + file + L" LOOP\r\n" - L"PLAY 2-1 " + file + L" LOOP\r\n" - L"PLAY 2-2 " + file + L" LOOP\r\n" - L"PLAY 2-3 " + file + L" LOOP\r\n"; - } - else if(wcmd.substr(0, 1) == L"X") + while(true) { - int num = 0; - std::wstring file; - try - { - num = boost::lexical_cast(wcmd.substr(1, 2)); - file = wcmd.substr(4, wcmd.length()-1); - } - catch(...) + std::getline(std::wcin, wcmd); // TODO: It's blocking... + + boost::to_upper(wcmd); + + if(wcmd == L"EXIT" || wcmd == L"Q" || wcmd == L"QUIT" || wcmd == L"BYE") + break; + + // This is just dummy code for testing. + if(wcmd.substr(0, 1) == L"1") + wcmd = L"LOADBG 1-1 " + wcmd.substr(1, wcmd.length()-1) + L" SLIDE 100 LOOP \r\nPLAY 1-1"; + else if(wcmd.substr(0, 1) == L"2") + wcmd = L"MIXER 1-0 VIDEO IS_KEY 1"; + else if(wcmd.substr(0, 1) == L"3") + wcmd = L"CG 1-2 ADD 1 BBTELEFONARE 1"; + else if(wcmd.substr(0, 1) == L"4") + wcmd = L"PLAY 1-1 DV FILTER yadif=1:-1 LOOP"; + else if(wcmd.substr(0, 1) == L"5") { - num = boost::lexical_cast(wcmd.substr(1, 1)); - file = wcmd.substr(3, wcmd.length()-1); + auto file = wcmd.substr(2, wcmd.length()-1); + wcmd = L"PLAY 1-1 " + file + L" LOOP\r\n" + L"PLAY 1-2 " + file + L" LOOP\r\n" + L"PLAY 1-3 " + file + L" LOOP\r\n" + L"PLAY 2-1 " + file + L" LOOP\r\n" + L"PLAY 2-2 " + file + L" LOOP\r\n" + L"PLAY 2-3 " + file + L" LOOP\r\n"; } - - int n = 0; - int num2 = num; - while(num2 > 0) + else if(wcmd.substr(0, 1) == L"X") { - num2 >>= 1; - n++; + int num = 0; + std::wstring file; + try + { + num = boost::lexical_cast(wcmd.substr(1, 2)); + file = wcmd.substr(4, wcmd.length()-1); + } + catch(...) + { + num = boost::lexical_cast(wcmd.substr(1, 1)); + file = wcmd.substr(3, wcmd.length()-1); + } + + int n = 0; + int num2 = num; + while(num2 > 0) + { + num2 >>= 1; + n++; + } + + wcmd = L"MIXER 1 GRID " + boost::lexical_cast(n); + + for(int i = 1; i <= num; ++i) + wcmd += L"\r\nPLAY 1-" + boost::lexical_cast(i) + L" " + file + L" LOOP";// + L" SLIDE 100 LOOP"; } - wcmd = L"MIXER 1 GRID " + boost::lexical_cast(n); - - for(int i = 1; i <= num; ++i) - wcmd += L"\r\nPLAY 1-" + boost::lexical_cast(i) + L" " + file + L" LOOP";// + L" SLIDE 100 LOOP"; - } - - wcmd += L"\r\n"; - amcp.Parse(wcmd.c_str(), wcmd.length(), dummy); + wcmd += L"\r\n"; + amcp.Parse(wcmd.c_str(), wcmd.length(), console_client); + } } + Sleep(500); + CASPAR_LOG(info) << "Successfully shutdown CasparCG Server."; + system("pause"); } catch(boost::property_tree::file_parser_error&) { CASPAR_LOG_CURRENT_EXCEPTION(); CASPAR_LOG(fatal) << L"Unhandled configuration error in main thread. Please check the configuration file (casparcg.config) for errors."; + system("pause"); } catch(caspar::gl::ogl_exception&) { CASPAR_LOG_CURRENT_EXCEPTION(); - CASPAR_LOG(fatal) << L"Unhandled OpenGL Error in main thread. Please try to update graphics drivers in order to receive full OpenGL 3.1+ Support."; + CASPAR_LOG(fatal) << L"Unhandled OpenGL Error in main thread. Please try to update graphics drivers for OpenGL 3.0+ Support."; } catch(...) { @@ -309,8 +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)."; } - CASPAR_LOG(info) << "Successfully shutdown CasparCG Server."; - Sleep(100); // CAPSAR_LOG is asynchronous. Try to get text in correct order. - system("pause"); return 0; } \ No newline at end of file