]> git.sesse.net Git - casparcg/blobdiff - shell/main.cpp
git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/branches...
[casparcg] / shell / main.cpp
index a995fe008908dfaa0b054a00b6da20cac51587ea..dec2f600c212989010504ca30ac4253d2e3f282f 100644 (file)
 *\r
 */\r
 \r
-#include <Windows.h>\r
-\r
+// tbbmalloc_proxy: \r
+// Replace the standard memory allocation routines in Microsoft* C/C++ RTL \r
+// (malloc/free, global new/delete, etc.) with the TBB memory allocator. \r
 #include <tbb/tbbmalloc_proxy.h>\r
-#include <tbb/task_scheduler_observer.h>\r
+\r
+#include "resource.h"\r
+\r
+#include "server.h"\r
 \r
 #ifdef _DEBUG\r
        #define _CRTDBG_MAP_ALLOC\r
        #include <crtdbg.h>\r
 #endif\r
 \r
-#include <conio.h>\r
+#define NOMINMAX\r
+#define WIN32_LEAN_AND_MEAN\r
+\r
+#include <windows.h>\r
+#include <winnt.h>\r
+#include <mmsystem.h>\r
+#include <atlbase.h>\r
 \r
-#include "bootstrapper.h"\r
+#include <protocol/amcp/AMCPProtocolStrategy.h>\r
+\r
+#include <modules/bluefish/bluefish.h>\r
+#include <modules/decklink/decklink.h>\r
+#include <modules/flash/flash.h>\r
+#include <modules/ffmpeg/ffmpeg.h>\r
+#include <modules/image/image.h>\r
 \r
+#include <common/env.h>\r
 #include <common/exception/win32_exception.h>\r
 #include <common/exception/exceptions.h>\r
 #include <common/log/log.h>\r
-#include <common/env.h>\r
-#include <common/utility/assert.h>\r
-#include <protocol/amcp/AMCPProtocolStrategy.h>\r
+#include <common/gl/gl_check.h>\r
+#include <common/os/windows/current_version.h>\r
+#include <common/os/windows/system_info.h>\r
 \r
-using namespace caspar;\r
-using namespace caspar::core;\r
-using namespace caspar::protocol;\r
+#include <core/mixer/gpu/ogl_device.h>\r
 \r
-class win32_handler_tbb_installer : public tbb::task_scheduler_observer\r
-{\r
-public:\r
-       win32_handler_tbb_installer()   {observe(true);}\r
-       void on_scheduler_entry(bool is_worker) \r
-       {\r
-               CASPAR_LOG(debug) << L"Started TBB Worker Thread.";\r
-               win32_exception::install_handler();\r
-       }\r
-       void on_scheduler_exit()\r
-       {\r
-               CASPAR_LOG(debug) << L"Stopped TBB Worker Thread.";\r
-       }\r
-};\r
\r
-int main(int argc, wchar_t* argv[])\r
-{\r
-       timeBeginPeriod(1);\r
+#include <tbb/task_scheduler_init.h>\r
+#include <tbb/task_scheduler_observer.h>\r
 \r
-       std::wstringstream str;\r
-       str << "CasparCG " << env::version() << " " << env::version_tag();\r
-       SetConsoleTitle(str.str().c_str());\r
+#include <boost/property_tree/detail/file_parser_error.hpp>\r
+\r
+#include <algorithm>\r
+\r
+// NOTE: This is needed in order to make CComObject work since this is not a real ATL project.\r
+CComModule _AtlModule;\r
+extern __declspec(selectany) CAtlModule* _pAtlModule = &_AtlModule;\r
+\r
+void change_icon( const HICON hNewIcon )\r
+{\r
+   auto hMod = ::LoadLibrary(L"Kernel32.dll"); \r
+   typedef DWORD(__stdcall *SCI)(HICON);\r
+   auto pfnSetConsoleIcon = reinterpret_cast<SCI>(::GetProcAddress(hMod, "SetConsoleIcon")); \r
+   pfnSetConsoleIcon(hNewIcon); \r
+   ::FreeLibrary(hMod);\r
+}\r
 \r
-       CASPAR_LOG(info) << L"Starting CasparCG Video Playout Server Ver: " << env::version() << env::version_tag() << std::endl;\r
-       CASPAR_LOG(info) << L"Copyright (c) 2010 Sveriges Television AB <info@casparcg.com>\n\n" << std::endl;\r
+void setup_console_window()\r
+{       \r
+       auto hOut = GetStdHandle(STD_OUTPUT_HANDLE);\r
 \r
+       // Disable close button in console to avoid shutdown without cleanup.\r
        EnableMenuItem(GetSystemMenu(GetConsoleWindow(), FALSE), SC_CLOSE , MF_GRAYED);\r
        DrawMenuBar(GetConsoleWindow());\r
-       MoveWindow(GetConsoleWindow(), 800, 0, 800, 1000, true);\r
 \r
-#ifdef _DEBUG\r
-       _CrtSetDbgFlag ( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF | _CRTDBG_CHECK_ALWAYS_DF );\r
-       _CrtSetReportMode( _CRT_ERROR, _CRTDBG_MODE_DEBUG );\r
-       _CrtSetReportMode( _CRT_WARN, _CRTDBG_MODE_DEBUG );\r
-       _CrtSetReportMode( _CRT_ASSERT, _CRTDBG_MODE_DEBUG );\r
+       // Configure console size and position.\r
+       auto coord = GetLargestConsoleWindowSize(hOut);\r
+       coord.X /= 2;\r
+\r
+       SetConsoleScreenBufferSize(hOut, coord);\r
 \r
-       MessageBox(nullptr, TEXT("Now is the time to connect for remote debugging..."), TEXT("Debug"), MB_OK | MB_TOPMOST);\r
+       SMALL_RECT DisplayArea = {0, 0, 0, 0};\r
+       DisplayArea.Right = coord.X-1;\r
+       DisplayArea.Bottom = (coord.Y-1)/2;\r
+       SetConsoleWindowInfo(hOut, TRUE, &DisplayArea);\r
+                \r
+       change_icon(::LoadIcon(GetModuleHandle(0), MAKEINTRESOURCE(101)));\r
+\r
+       // Set console title.\r
+       std::wstringstream str;\r
+       str << "CasparCG Server " << caspar::env::version();\r
+#ifdef COMPILE_RELEASE\r
+       str << " Release";\r
+#elif  COMPILE_PROFILE\r
+       str << " Profile";\r
+#elif  COMPILE_DEVELOP\r
+       str << " Develop";\r
+#elif  COMPILE_DEBUG\r
+       str << " Debug";\r
 #endif\r
+       SetConsoleTitle(str.str().c_str());\r
+}\r
 \r
-       log::add_file_sink(env::log_folder());\r
+void print_info()\r
+{\r
+       CASPAR_LOG(info) << L"Copyright (c) 2010 Sveriges Television AB, www.casparcg.com, <info@casparcg.com>";\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
+       CASPAR_LOG(info) << caspar::get_system_product_name();\r
+       CASPAR_LOG(info) << L"Flash " << caspar::get_flash_version();\r
+       CASPAR_LOG(info) << L"Flash-Template-Host " << caspar::get_cg_version();\r
+       CASPAR_LOG(info) << L"FreeImage " << caspar::get_image_version();\r
+       \r
+       CASPAR_LOG(info) << L"Decklink " << caspar::get_decklink_version();\r
+       auto deck = caspar::get_decklink_device_list();\r
+       std::for_each(deck.begin(), deck.end(), [](const std::wstring& device)\r
+       {\r
+               CASPAR_LOG(info) << device;\r
+       });\r
+               \r
+       auto blue = caspar::get_bluefish_device_list();\r
+       std::for_each(blue.begin(), blue.end(), [](const std::wstring& device)\r
+       {\r
+               CASPAR_LOG(info) << device;\r
+       });\r
        \r
-       CASPAR_LOG(debug) << "Started Main Thread";\r
+       CASPAR_LOG(info) << L"FFMPEG-avcodec "  << caspar::get_avcodec_version();\r
+       CASPAR_LOG(info) << L"FFMPEG-avformat " << caspar::get_avformat_version();\r
+       CASPAR_LOG(info) << L"FFMPEG-avfilter " << caspar::get_avfilter_version();\r
+       CASPAR_LOG(info) << L"FFMPEG-avutil " << caspar::get_avutil_version();\r
+       CASPAR_LOG(info) << L"FFMPEG-swscale "  << caspar::get_swscale_version();\r
+       CASPAR_LOG(info) << L"OpenGL " << caspar::core::ogl_device::get_version() << "\n\n";\r
+}\r
 \r
-       win32_handler_tbb_installer win32_handler_tbb_installer;\r
-       win32_exception::install_handler();\r
-                               \r
+LONG WINAPI UserUnhandledExceptionFilter(EXCEPTION_POINTERS* info)\r
+{\r
+       try\r
+       {\r
+               CASPAR_LOG(fatal) << L"#######################\n UNHANDLED EXCEPTION: \n" \r
+                       << L"Adress:" << info->ExceptionRecord->ExceptionAddress << L"\n"\r
+                       << L"Code:" << info->ExceptionRecord->ExceptionCode << L"\n"\r
+                       << L"Flag:" << info->ExceptionRecord->ExceptionFlags << L"\n"\r
+                       << L"Info:" << info->ExceptionRecord->ExceptionInformation << L"\n"\r
+                       << L"Continuing execution. \n#######################";\r
+       }\r
+       catch(...){}\r
+\r
+    return EXCEPTION_CONTINUE_EXECUTION;\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
+       CASPAR_LOG(info) << L"Type \"q\" to close application";\r
+       \r
+       // Set debug mode.\r
+       #ifdef _DEBUG\r
+               _CrtSetDbgFlag ( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF | _CRTDBG_CHECK_ALWAYS_DF );\r
+               _CrtSetReportMode( _CRT_ERROR, _CRTDBG_MODE_DEBUG );\r
+               _CrtSetReportMode( _CRT_WARN, _CRTDBG_MODE_DEBUG );\r
+               _CrtSetReportMode( _CRT_ASSERT, _CRTDBG_MODE_DEBUG );\r
+       #endif\r
+\r
+       // Increase process priotity.\r
+       SetPriorityClass(GetCurrentProcess(), ABOVE_NORMAL_PRIORITY_CLASS);\r
+\r
+       // Install structured exception handler.\r
+       caspar::win32_exception::install_handler();\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
+       {\r
+               inc_prec(){timeBeginPeriod(1);}\r
+               ~inc_prec(){timeEndPeriod(1);}\r
+       } inc_prec;     \r
+\r
+       // Install unstructured exception handlers into all tbb threads.\r
+       struct tbb_thread_installer : public tbb::task_scheduler_observer\r
+       {\r
+               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
+               }\r
+       } tbb_thread_installer;\r
+\r
+       tbb::task_scheduler_init init;\r
+       \r
        try \r
        {\r
-               bootstrapper caspar_device;\r
+               // Configure environment properties from configuration.\r
+               caspar::env::configure("casparcg.config");\r
+\r
+       #ifdef _DEBUG\r
+               if(caspar::env::properties().get("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
+               \r
+               // Setup console window.\r
+               setup_console_window();\r
+\r
+               // Print environment information.\r
+               print_info();\r
                                \r
-               auto dummy = std::make_shared<IO::DummyClientInfo>();\r
-               amcp::AMCPProtocolStrategy amcp(caspar_device.get_channels());\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
+\r
+               // Create a dummy client which prints amcp responses to console.\r
+               auto dummy = 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, 2) == L"10")\r
-                               wcmd = L"MIXER 1-1 VIDEO CLIP_RECT 0.4 0.4 0.5 0.5";\r
-                       if(wcmd.substr(0, 2) == L"11")\r
-                               wcmd = L"MIXER 1-1 VIDEO FIX_RECT 0.4 0.4 0.5 0.5";\r
-                       else if(wcmd.substr(0, 1) == L"1")\r
-                               wcmd = L"LOADBG 1-1 " + wcmd.substr(1, wcmd.length()-1) + L" SLIDE 100 LOOP AUTOPLAY";\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"LOADBG 1-1 " + wcmd.substr(1, wcmd.length()-1) + L" PUSH 100 LOOP AUTOPLAY";\r
+                               wcmd = L"MIXER 1-0 VIDEO IS_KEY 1";\r
                        else if(wcmd.substr(0, 1) == L"3")\r
-                               wcmd = L"LOADBG 1-1 " + wcmd.substr(1, wcmd.length()-1) + L" MIX 100 LOOP AUTOPLAY";\r
+                               wcmd = L"CG 1-2 ADD 1 BBTELEFONARE 1";\r
                        else if(wcmd.substr(0, 1) == L"4")\r
-                               wcmd = L"LOADBG 1-1 " + wcmd.substr(1, wcmd.length()-1) + L" WIPE 100 LOOP AUTOPLAY";\r
+                               wcmd = L"PLAY 1-1 DV FILTER yadif=1:-1 LOOP";\r
                        else if(wcmd.substr(0, 1) == L"5")\r
-                               wcmd = L"LOADBG 1-2 " + wcmd.substr(1, wcmd.length()-1) + L" LOOP AUTOPLAY";\r
-                       else if(wcmd.substr(0, 1) == L"6")\r
-                               wcmd = L"CG 1-2 ADD 1 BBTELEFONARE 1";\r
-                       else if(wcmd.substr(0, 1) == L"7")\r
-                               wcmd = L"LOAD 1-1 720p2500";\r
-                       else if(wcmd.substr(0, 1) == L"8")\r
-                               wcmd = L"LOAD 1-1 #FFFFFFFF AUTOPLAY";\r
-                       else if(wcmd.substr(0, 1) == L"9")\r
-                               wcmd = L"LOADBG 1-2 " + wcmd.substr(1, wcmd.length()-1) + L" [1.0-2.0] LOOP AUTOPLAY";\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
+                               {\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"\r\n";\r
                        amcp.Parse(wcmd.c_str(), wcmd.length(), dummy);\r
                }\r
        }\r
-       catch(const std::exception&)\r
+       catch(boost::property_tree::file_parser_error&)\r
        {\r
-               CASPAR_LOG(fatal) << "UNHANDLED EXCEPTION in main thread.";\r
                CASPAR_LOG_CURRENT_EXCEPTION();\r
-               std::wcout << L"Press Any Key To Exit";\r
-               _getwch();\r
+               CASPAR_LOG(fatal) << L"Unhandled configuration error in main thread. Please check the configuration file (casparcg.config) for errors.";\r
+       }\r
+       catch(caspar::gl::ogl_exception&)\r
+       {\r
+               CASPAR_LOG_CURRENT_EXCEPTION();\r
+               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.";\r
+       }\r
+       catch(...)\r
+       {\r
+               CASPAR_LOG_CURRENT_EXCEPTION();\r
+               CASPAR_LOG(fatal) << L"Unhandled exception in main thread. Please report this error on the CasparCG forums (www.casparcg.com/forum).";\r
        }       \r
-       CASPAR_LOG(debug) << "Ended Main Thread";\r
-\r
-       timeEndPeriod(1);\r
-\r
+       \r
+       CASPAR_LOG(info) << "Successfully shutdown CasparCG Server.";\r
+       Sleep(100); // CAPSAR_LOG is asynchronous. Try to get text in correct order.\r
+       system("pause");\r
        return 0;\r
 }
\ No newline at end of file