use right-side buttons to goto_nth_marker()
[ardour.git] / libs / pbd / pbd.cc
index 145e1b91a8080104d801e1a06974a6e2ee454919..ab0f668f26d93406dc6632fc370b01e88851e22c 100644 (file)
 
 #include "pbd/pbd.h"
 #include "pbd/debug.h"
+#include "pbd/error.h"
 #include "pbd/id.h"
 #include "pbd/enumwriter.h"
+#include "pbd/fpu.h"
 
-#include "i18n.h"
+#ifdef PLATFORM_WINDOWS
+#include <winsock2.h>
+#include "pbd/windows_timer_utils.h"
+#include "pbd/windows_mmcss.h"
+#endif
+
+#include "pbd/i18n.h"
 
 extern void setup_libpbd_enums ();
 
@@ -42,8 +50,7 @@ namespace {
 
 static bool libpbd_initialized = false;
 
-}
-
+static
 void
 set_debug_options_from_env ()
 {
@@ -52,11 +59,32 @@ set_debug_options_from_env ()
 
        options = Glib::getenv ("PBD_DEBUG", set);
        if (set) {
-               std::cerr << "PBD_DEBUG=" << options << std::endl;
+               std::cerr << X_("PBD_DEBUG=") << options << std::endl;
                PBD::parse_debug_options (options.c_str());
        }
 }
 
+#ifdef PLATFORM_WINDOWS
+static
+void
+test_timers_from_env ()
+{
+       bool set;
+       std::string options;
+
+       options = Glib::getenv ("PBD_TEST_TIMERS", set);
+       if (set) {
+               if (!PBD::QPC::check_timer_valid ()) {
+                       PBD::error << X_("Windows QPC Timer source not usable") << endmsg;
+               } else {
+                       PBD::info << X_("Windows QPC Timer source usable") << endmsg;
+               }
+       }
+}
+#endif
+
+} // namespace
+
 bool
 PBD::init ()
 {
@@ -68,6 +96,27 @@ PBD::init ()
        // Essential!!  Make sure that any files used by Ardour
        //              will be created or opened in BINARY mode!
        _fmode = O_BINARY;
+
+       WSADATA wsaData;
+
+       /* Initialize windows socket DLL for PBD::CrossThreadChannel
+        */
+
+       if (WSAStartup(MAKEWORD(1,1),&wsaData) != 0) {
+               fatal << X_("Windows socket initialization failed with error: ") << WSAGetLastError() << endmsg;
+               abort();
+               /*NOTREACHED*/
+               return false;
+       }
+
+       QPC::initialize();
+       test_timers_from_env ();
+
+       if (!PBD::MMCSS::initialize()) {
+               PBD::info << X_("Unable to initialize MMCSS") << endmsg;
+       } else {
+               PBD::info << X_("MMCSS Initialized") << endmsg;
+       }
 #endif
 
        if (!Glib::thread_supported()) {
@@ -89,5 +138,11 @@ PBD::init ()
 void
 PBD::cleanup ()
 {
+#ifdef PLATFORM_WINDOWS
+       PBD::MMCSS::deinitialize ();
+       WSACleanup();
+#endif
+
        EnumWriter::destroy ();
+       FPU::destroy ();
 }