]> git.sesse.net Git - casparcg/blobdiff - shell/main.cpp
[scene] Fixed element name in XML Schema
[casparcg] / shell / main.cpp
index d742cb0d9c633f6fe2361cae894035aaa11178f3..b90bd40018219abba98dc17097a27fa220b08756 100644 (file)
@@ -19,9 +19,9 @@
 * Author: Robert Nagy, ronag89@gmail.com
 */
 
-// tbbmalloc_proxy: 
-// Replace the standard memory allocation routines in Microsoft* C/C++ RTL 
-// (malloc/free, global new/delete, etc.) with the TBB memory allocator. 
+// tbbmalloc_proxy:
+// Replace the standard memory allocation routines in Microsoft* C/C++ RTL
+// (malloc/free, global new/delete, etc.) with the TBB memory allocator.
 
 #include "stdafx.h"
 
 #include <set>
 
 #include <csignal>
+#include <clocale>
 
 using namespace caspar;
-       
+
 void setup_global_locale()
 {
        boost::locale::generator gen;
        gen.categories(boost::locale::codepage_facet);
 
        std::locale::global(gen(""));
+
+       // sscanf is used in for example FFmpeg where we want decimals to be parsed as .
+       std::setlocale(LC_ALL, "C");
 }
 
 void print_info()
@@ -110,12 +114,12 @@ void do_run(
                std::promise<bool>& shutdown_server_now,
                tbb::atomic<bool>& should_wait_for_keypress)
 {
+       ensure_gpf_handler_installed_for_thread("Console thread");
        std::wstring wcmd;
        while(true)
        {
-               std::getline(std::wcin, wcmd); // TODO: It's blocking...
-                               
-               //boost::to_upper(wcmd);
+               if (!std::getline(std::wcin, wcmd))             // TODO: It's blocking...
+                       wcmd = L"EXIT";                                         // EOF, handle as EXIT
 
                if(boost::iequals(wcmd, L"EXIT") || boost::iequals(wcmd, L"Q") || boost::iequals(wcmd, L"QUIT") || boost::iequals(wcmd, L"BYE"))
                {
@@ -139,11 +143,11 @@ void do_run(
                        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" 
+                               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-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"7")
@@ -217,6 +221,9 @@ bool run(const std::wstring& config_file_name, tbb::atomic<bool>& should_wait_fo
        // Create server object which initializes channels, protocols and controllers.
        std::unique_ptr<server> caspar_server(new server(shutdown_server_now));
 
+       // For example CEF resets the global locale, so this is to reset it back to "our" preference.
+       setup_global_locale();
+
        // Print environment information.
        print_system_info(caspar_server->get_system_info_provider_repo());
 
@@ -224,7 +231,7 @@ bool run(const std::wstring& config_file_name, tbb::atomic<bool>& should_wait_fo
        boost::property_tree::xml_writer_settings<std::wstring> w(' ', 3);
        boost::property_tree::write_xml(str, env::properties(), w);
        CASPAR_LOG(info) << config_file_name << L":\n-----------------------------------------\n" << str.str() << L"-----------------------------------------";
-       
+
        {
                CASPAR_SCOPED_CONTEXT_MSG(config_file_name + L": ")
                caspar_server->start();
@@ -242,7 +249,7 @@ bool run(const std::wstring& config_file_name, tbb::atomic<bool>& should_wait_fo
                                                        caspar_server->get_amcp_command_repository())))->create(console_client);
        std::weak_ptr<IO::protocol_strategy<wchar_t>> weak_amcp = amcp;
 
-       // Use separate thread for the blocking console input, will be terminated 
+       // Use separate thread for the blocking console input, will be terminated
        // anyway when the main thread terminates.
        boost::thread stdin_thread(std::bind(do_run, weak_amcp, std::ref(shutdown_server_now), std::ref(should_wait_for_keypress)));    //compiler didn't like lambda here...
        stdin_thread.detach();
@@ -271,7 +278,7 @@ int main(int argc, char** argv)
        setup_global_locale();
 
        std::wcout << L"Type \"q\" to close application." << std::endl;
-       
+
        // Set debug mode.
        auto debugging_environment = setup_debugging_environment();
 
@@ -293,8 +300,8 @@ int main(int argc, char** argv)
 
        tbb::task_scheduler_init init;
        std::wstring config_file_name(L"casparcg.config");
-       
-       try 
+
+       try
        {
                // Configure environment properties from configuration.
                if (argc >= 2)
@@ -316,7 +323,10 @@ int main(int argc, char** argv)
                log::add_file_sink(env::log_folder() + L"caspar",               caspar::log::category != caspar::log::log_category::calltrace);
                log::add_file_sink(env::log_folder() + L"calltrace",    caspar::log::category == caspar::log::log_category::calltrace);
                std::wcout << L"Logging [info] or higher severity to " << env::log_folder() << std::endl << std::endl;
-               
+
+               // Once logging to file, log configuration warnings.
+               env::log_configuration_warnings();
+
                // Setup console window.
                setup_console_window();
 
@@ -330,7 +340,7 @@ int main(int argc, char** argv)
                        if (thread->name != "main thread" && thread->name != "tbb-worker-thread")
                                CASPAR_LOG(warning) << L"Thread left running: " << thread->name << L" (" << thread->native_id << L")";
                }
-               
+
                CASPAR_LOG(info) << "Successfully shutdown CasparCG Server.";
 
                if (should_wait_for_keypress)
@@ -338,14 +348,12 @@ int main(int argc, char** argv)
        }
        catch(const boost::property_tree::file_parser_error& e)
        {
-               CASPAR_LOG_CURRENT_EXCEPTION();
                CASPAR_LOG(fatal) << "At " << u8(config_file_name) << ":" << e.line() << ": " << e.message() << ". Please check the configuration file (" << u8(config_file_name) << ") for errors.";
                wait_for_keypress();
        }
        catch (const user_error& e)
        {
-               CASPAR_LOG_CURRENT_EXCEPTION_AT_LEVEL(debug);
-               CASPAR_LOG(fatal) << get_message_and_context(e) << " Please check the configuration file (" << u8(config_file_name) << ") for errors. Turn on log level debug for stacktrace.";
+               CASPAR_LOG(fatal) << get_message_and_context(e) << " Please check the configuration file (" << u8(config_file_name) << ") for errors.";
                wait_for_keypress();
        }
        catch(...)