]> git.sesse.net Git - casparcg/blobdiff - shell/main.cpp
* Merged newtek iVGA consumer from 2.0.
[casparcg] / shell / main.cpp
index 2d462a463cafacda19c02249c8e08b9e57ae807a..f7d6e9f9c6e9b6bab5fbcb666b58648d62b6de9b 100644 (file)
 
 #include "stdafx.h"
 
-#ifdef _DEBUG
+#include <tbb/task_scheduler_init.h>
+#include <tbb/task_scheduler_observer.h>
+
+#if defined _DEBUG && defined _MSC_VER
        #define _CRTDBG_MAP_ALLOC
        #include <stdlib.h>
        #include <crtdbg.h>
        #include <tbb/tbbmalloc_proxy.h>
 #endif
 
-#include "resource.h"
-
 #include "server.h"
-
-#include <common/os/windows/windows.h>
-#include <winnt.h>
-#include <mmsystem.h>
-#include <atlbase.h>
+#include "platform_specific.h"
+#include "included_modules.h"
 
 #include <protocol/util/strategy_adapters.h>
 #include <protocol/amcp/AMCPProtocolStrategy.h>
 
-#include <modules/bluefish/bluefish.h>
-#include <modules/decklink/decklink.h>
-#include <modules/flash/flash.h>
-#include <modules/ffmpeg/ffmpeg.h>
-#include <modules/image/image.h>
-
 #include <common/env.h>
 #include <common/except.h>
 #include <common/log.h>
 #include <common/gl/gl_check.h>
-#include <common/os/windows/current_version.h>
-#include <common/os/windows/system_info.h>
+#include <common/os/system_info.h>
+#include <common/os/general_protection_fault.h>
 
-#include <tbb/task_scheduler_init.h>
-#include <tbb/task_scheduler_observer.h>
+#include <core/system_info_provider.h>
 
 #include <boost/property_tree/detail/file_parser_error.hpp>
 #include <boost/property_tree/xml_parser.hpp>
-#include <boost/foreach.hpp>
 #include <boost/locale.hpp>
 #include <boost/lexical_cast.hpp>
 #include <boost/algorithm/string/predicate.hpp>
 #include <boost/thread/future.hpp>
 #include <boost/algorithm/string/case_conv.hpp>
 
-#include <signal.h>
+#include <future>
+
+#include <csignal>
 
 using namespace caspar;
        
-// NOTE: This is needed in order to make CComObject work since this is not a real ATL project.
-CComModule _AtlModule;
-extern __declspec(selectany) CAtlModule* _pAtlModule = &_AtlModule;
-
-void change_icon( const HICON hNewIcon )
-{
-   auto hMod = ::LoadLibrary(L"Kernel32.dll"); 
-   typedef DWORD(__stdcall *SCI)(HICON);
-   auto pfnSetConsoleIcon = reinterpret_cast<SCI>(::GetProcAddress(hMod, "SetConsoleIcon")); 
-   pfnSetConsoleIcon(hNewIcon); 
-   ::FreeLibrary(hMod);
-}
-
 void setup_global_locale()
 {
        boost::locale::generator gen;
@@ -96,43 +75,6 @@ void setup_global_locale()
        std::locale::global(gen(""));
 }
 
-void setup_console_window()
-{       
-       auto hOut = GetStdHandle(STD_OUTPUT_HANDLE);
-
-       // 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);
-       coord.X /= 2;
-
-       SetConsoleScreenBufferSize(hOut, coord);
-
-       SMALL_RECT DisplayArea = {0, 0, 0, 0};
-       DisplayArea.Right = coord.X-1;
-       DisplayArea.Bottom = (coord.Y-1)/2;
-       SetConsoleWindowInfo(hOut, TRUE, &DisplayArea);
-                
-       change_icon(::LoadIcon(GetModuleHandle(0), MAKEINTRESOURCE(101)));
-
-       // Set console title.
-       std::wstringstream str;
-       str << "CasparCG Server " << env::version() << L" x64 ";
-#ifdef COMPILE_RELEASE
-       str << " Release";
-#elif  COMPILE_PROFILE
-       str << " Profile";
-#elif  COMPILE_DEVELOP
-       str << " Develop";
-#elif  COMPILE_DEBUG
-       str << " Debug";
-#endif
-       SetConsoleTitle(str.str().c_str());
-}
-
 void print_info()
 {
        CASPAR_LOG(info) << L"############################################################################";
@@ -142,53 +84,49 @@ void print_info()
        CASPAR_LOG(info) << L"http://www.casparcg.com/";
        CASPAR_LOG(info) << L"############################################################################";
        CASPAR_LOG(info) << L"Starting CasparCG Video and Graphics Playout Server " << env::version();
-       CASPAR_LOG(info) << L"on " << win_product_name() << L" " << win_sp_version();
+       CASPAR_LOG(info) << L"on " << os_description();
        CASPAR_LOG(info) << cpu_info();
        CASPAR_LOG(info) << system_product_name();
-       
-       CASPAR_LOG(info) << L"Decklink " << decklink::version();
-       BOOST_FOREACH(auto device, decklink::device_list())
-               CASPAR_LOG(info) << L" - " << device;   
-               
-       CASPAR_LOG(info) << L"Bluefish " << bluefish::version();
-       BOOST_FOREACH(auto device, bluefish::device_list())
-               CASPAR_LOG(info) << L" - " << device;   
-       
-       CASPAR_LOG(info) << L"Flash "                   << flash::version();
-       CASPAR_LOG(info) << L"FreeImage "               << image::version();
-       CASPAR_LOG(info) << L"FFMPEG-avcodec "  << ffmpeg::avcodec_version();
-       CASPAR_LOG(info) << L"FFMPEG-avformat " << ffmpeg::avformat_version();
-       CASPAR_LOG(info) << L"FFMPEG-avfilter " << ffmpeg::avfilter_version();
-       CASPAR_LOG(info) << L"FFMPEG-avutil "   << ffmpeg::avutil_version();
-       CASPAR_LOG(info) << L"FFMPEG-swscale "  << ffmpeg::swscale_version();
 }
 
-LONG WINAPI UserUnhandledExceptionFilter(EXCEPTION_POINTERS* info)
+void print_child(const std::wstring& indent, const std::wstring& elem, const boost::property_tree::wptree& tree)
 {
-       try
-       {
-               CASPAR_LOG(fatal) << L"#######################\n UNHANDLED EXCEPTION: \n" 
-                       << L"Adress:" << info->ExceptionRecord->ExceptionAddress << L"\n"
-                       << L"Code:" << info->ExceptionRecord->ExceptionCode << L"\n"
-                       << L"Flag:" << info->ExceptionRecord->ExceptionFlags << L"\n"
-                       << L"Info:" << info->ExceptionRecord->ExceptionInformation << L"\n"
-                       << L"Continuing execution. \n#######################";
-
-               CASPAR_LOG_CALL_STACK();
-       }
-       catch(...){}
+       auto data = tree.data();
+
+       if (data.empty())
+               CASPAR_LOG(info) << indent << elem;
+       else
+               CASPAR_LOG(info) << indent << elem << L" " << tree.data();
+
+       for (auto& child : tree)
+               print_child(indent + L"    ", child.first, child.second);
+}
 
-       return EXCEPTION_CONTINUE_EXECUTION;
+void print_system_info(const spl::shared_ptr<core::system_info_provider_repository>& repo)
+{
+       boost::property_tree::wptree info;
+       repo->fill_information(info);
+
+       for (auto& elem : info.get_child(L"system"))
+               print_child(L"", elem.first, elem.second);
 }
 
-void do_run(server& caspar_server, boost::promise<bool>& shutdown_server_now)
+void do_run(server& caspar_server, std::promise<bool>& shutdown_server_now)
 {
        // Create a dummy client which prints amcp responses to console.
        auto console_client = spl::make_shared<IO::ConsoleClientInfo>();
        
        // Create a amcp parser for console commands.
-       //protocol::amcp::AMCPProtocolStrategy amcp(caspar_server.channels());
-       auto amcp = spl::make_shared<caspar::IO::delimiter_based_chunking_strategy_factory<wchar_t>>(L"\r\n", spl::make_shared<caspar::IO::legacy_strategy_adapter_factory>(spl::make_shared<protocol::amcp::AMCPProtocolStrategy>(caspar_server.channels(), caspar_server.get_thumbnail_generator(), shutdown_server_now)))->create(console_client);
+       auto amcp = spl::make_shared<caspar::IO::delimiter_based_chunking_strategy_factory<wchar_t>>(
+                       L"\r\n",
+                       spl::make_shared<caspar::IO::legacy_strategy_adapter_factory>(
+                                       spl::make_shared<protocol::amcp::AMCPProtocolStrategy>(
+                                                       caspar_server.channels(),
+                                                       caspar_server.get_thumbnail_generator(),
+                                                       caspar_server.get_media_info_repo(),
+                                                       caspar_server.get_system_info_provider_repo(),
+                                                       caspar_server.get_cg_registry(),
+                                                       shutdown_server_now)))->create(console_client);
 
        std::wstring wcmd;
        while(true)
@@ -283,12 +221,24 @@ void do_run(server& caspar_server, boost::promise<bool>& shutdown_server_now)
 
 bool run()
 {
-       boost::promise<bool> shutdown_server_now;
-       boost::unique_future<bool> shutdown_server = shutdown_server_now.get_future();
+       std::promise<bool> shutdown_server_now;
+       std::future<bool> shutdown_server = shutdown_server_now.get_future();
+
+       print_info();
 
        // Create server object which initializes channels, protocols and controllers.
        server caspar_server(shutdown_server_now);
        
+       // Print environment information.
+       print_system_info(caspar_server.get_system_info_provider_repo());
+
+       std::wstringstream str;
+       boost::property_tree::xml_writer_settings<std::wstring> w(' ', 3);
+       boost::property_tree::write_xml(str, env::properties(), w);
+       CASPAR_LOG(info) << L"casparcg.config:\n-----------------------------------------\n" << str.str() << L"-----------------------------------------";
+       
+       caspar_server.start();
+
        //auto console_obs = reactive::make_observer([](const monitor::event& e)
        //{
        //      std::stringstream str;
@@ -311,52 +261,35 @@ void on_abort(int)
        CASPAR_THROW_EXCEPTION(invalid_operation() << msg_info("abort called"));
 }
 
-int main(int argc, wchar_t* argv[])
-{      
+int main(int argc, char** argv)
+{
+       if (intercept_command_line_args(argc, argv))
+               return 0;
+
        int return_code = 0;
-       SetUnhandledExceptionFilter(UserUnhandledExceptionFilter);
-       signal(SIGABRT, on_abort);
+       setup_prerequisites();
+       //std::signal(SIGABRT, on_abort);
 
        setup_global_locale();
 
        std::wcout << L"Type \"q\" to close application." << std::endl;
        
        // Set debug mode.
-       #ifdef _DEBUG
-               HANDLE hLogFile;
-               hLogFile = CreateFile(L"crt_log.txt", GENERIC_WRITE, FILE_SHARE_WRITE, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
-               std::shared_ptr<void> crt_log(nullptr, [](HANDLE h){::CloseHandle(h);});
-
-               _CrtSetDbgFlag (_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
-               _CrtSetReportMode(_CRT_WARN,    _CRTDBG_MODE_FILE);
-               _CrtSetReportFile(_CRT_WARN,    hLogFile);
-               _CrtSetReportMode(_CRT_ERROR,   _CRTDBG_MODE_FILE);
-               _CrtSetReportFile(_CRT_ERROR,   hLogFile);
-               _CrtSetReportMode(_CRT_ASSERT,  _CRTDBG_MODE_FILE);
-               _CrtSetReportFile(_CRT_ASSERT,  hLogFile);
-       #endif
+       auto debugging_environment = setup_debugging_environment();
 
        // Increase process priotity.
-       SetPriorityClass(GetCurrentProcess(), ABOVE_NORMAL_PRIORITY_CLASS);
+       increase_process_priority();
 
-       // Install structured exception handler.
-       win32_exception::install_handler();
-                               
-       // Increase time precision. This will increase accuracy of function like Sleep(1) from 10 ms to 1 ms.
-       struct inc_prec
-       {
-               inc_prec(){timeBeginPeriod(1);}
-               ~inc_prec(){timeEndPeriod(1);}
-       } inc_prec;     
+       // Install general protection fault handler.
+       ensure_gpf_handler_installed_for_thread("main thread");
 
-       // Install SEH into all tbb threads.
+       // Install GPF handler into all tbb threads.
        struct tbb_thread_installer : public tbb::task_scheduler_observer
        {
                tbb_thread_installer(){observe(true);}
                void on_scheduler_entry(bool is_worker)
                {
-                       //detail::SetThreadName(GetCurrentThreadId(), "tbb-worker-thread");
-                       win32_exception::install_handler();
+                       ensure_gpf_handler_installed_for_thread("tbb-worker-thread");
                }
        } tbb_thread_installer;
 
@@ -366,13 +299,11 @@ int main(int argc, wchar_t* argv[])
        {
                // Configure environment properties from configuration.
                env::configure(L"casparcg.config");
-                               
+
                log::set_log_level(env::properties().get(L"configuration.log-level", L"debug"));
 
-       #ifdef _DEBUG
-               if(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   
+               if (env::properties().get(L"configuration.debugging.remote", false))
+                       wait_for_remote_debugging();
 
                // Start logging to file.
                log::add_file_sink(env::log_folder());                  
@@ -381,33 +312,25 @@ int main(int argc, wchar_t* argv[])
                // Setup console window.
                setup_console_window();
 
-               // Print environment information.
-               print_info();
-               
-               std::wstringstream str;
-               boost::property_tree::xml_writer_settings<wchar_t> w(' ', 3);
-               boost::property_tree::write_xml(str, env::properties(), w);
-               CASPAR_LOG(info) << L"casparcg.config:\n-----------------------------------------\n" << str.str().c_str() << L"-----------------------------------------";
-               
                return_code = run() ? 5 : 0;
                
-               Sleep(500);
+               boost::this_thread::sleep_for(boost::chrono::milliseconds(500));
                CASPAR_LOG(info) << "Successfully shutdown CasparCG Server.";
        }
        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");        
+               wait_for_keypress();
        }
        catch(...)
        {
                CASPAR_LOG_CURRENT_EXCEPTION();
                CASPAR_LOG(fatal) << L"Unhandled exception in main thread. Please report this error on the CasparCG forums (www.casparcg.com/forum).";
-               Sleep(1000);
+               boost::this_thread::sleep_for(boost::chrono::milliseconds(1000));
                std::wcout << L"\n\nCasparCG will automatically shutdown. See the log file located at the configured log-file folder for more information.\n\n";
-               Sleep(4000);
-       }               
+               boost::this_thread::sleep_for(boost::chrono::milliseconds(4000));
+       }
        
        return return_code;
-}
\ No newline at end of file
+}