De/Initialize MMCSS on windows in PBD::init/cleanup instead of in PA Backend
[ardour.git] / libs / pbd / pbd.cc
1 /*
2     Copyright (C) 2011 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <iostream>
21 #include <cstdlib>
22 #include <string>
23
24 #ifdef PLATFORM_WINDOWS
25 #include <fcntl.h>
26 #endif
27
28 #include <giomm.h>
29
30 #include <glibmm/thread.h>
31
32 #include "pbd/pbd.h"
33 #include "pbd/debug.h"
34 #include "pbd/error.h"
35 #include "pbd/id.h"
36 #include "pbd/enumwriter.h"
37 #include "pbd/fpu.h"
38
39 #ifdef PLATFORM_WINDOWS
40 #include <winsock2.h>
41 #include "pbd/windows_timer_utils.h"
42 #include "pbd/windows_mmcss.h"
43 #endif
44
45 #include "i18n.h"
46
47 extern void setup_libpbd_enums ();
48
49 namespace {
50
51 static bool libpbd_initialized = false;
52
53 }
54
55 void
56 set_debug_options_from_env ()
57 {
58         bool set;
59         std::string options;
60
61         options = Glib::getenv ("PBD_DEBUG", set);
62         if (set) {
63                 std::cerr << "PBD_DEBUG=" << options << std::endl;
64                 PBD::parse_debug_options (options.c_str());
65         }
66 }
67
68 #ifdef PLATFORM_WINDOWS
69 void
70 test_timers_from_env ()
71 {
72         bool set;
73         std::string options;
74
75         options = Glib::getenv ("PBD_TEST_TIMERS", set);
76         if (set) {
77                 if (!PBD::QPC::check_timer_valid ()) {
78                         PBD::error << "Windows QPC Timer source not usable." << endmsg;
79                 } else {
80                         PBD::info << "Windows QPC Timer source usable." << endmsg;
81                 }
82         }
83 }
84 #endif
85
86 bool
87 PBD::init ()
88 {
89         if (libpbd_initialized) {
90                 return true;
91         }
92
93 #ifdef PLATFORM_WINDOWS
94         // Essential!!  Make sure that any files used by Ardour
95         //              will be created or opened in BINARY mode!
96         _fmode = O_BINARY;
97
98         WSADATA wsaData;
99
100         /* Initialize windows socket DLL for PBD::CrossThreadChannel
101          */
102         
103         if (WSAStartup(MAKEWORD(1,1),&wsaData) != 0) {
104                 fatal << "Windows socket initialization failed with error: " << WSAGetLastError() << endmsg;
105                 abort();
106                 /*NOTREACHED*/
107                 return false;
108         }
109
110         test_timers_from_env ();
111
112         if (!PBD::MMCSS::initialize()) {
113                 PBD::info << "Unable to initialize MMCSS" << endmsg;
114         } else {
115                 PBD::info << "MMCSS Initialized" << endmsg;
116         }
117 #endif
118
119         if (!Glib::thread_supported()) {
120                 Glib::thread_init();
121         }
122
123         Gio::init ();
124
125         PBD::ID::init ();
126
127         setup_libpbd_enums ();
128
129         set_debug_options_from_env ();
130
131         libpbd_initialized = true;
132         return true;
133 }
134
135 void
136 PBD::cleanup ()
137 {
138 #ifdef PLATFORM_WINDOWS
139         PBD::MMCSS::deinitialize ();
140         WSACleanup();
141 #endif  
142
143         EnumWriter::destroy ();
144         FPU::destroy ();
145 }