enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.h
[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 "pbd/i18n.h"
46
47 extern void setup_libpbd_enums ();
48
49 namespace {
50
51 static bool libpbd_initialized = false;
52
53 static
54 void
55 set_debug_options_from_env ()
56 {
57         bool set;
58         std::string options;
59
60         options = Glib::getenv ("PBD_DEBUG", set);
61         if (set) {
62                 std::cerr << X_("PBD_DEBUG=") << options << std::endl;
63                 PBD::parse_debug_options (options.c_str());
64         }
65 }
66
67 #ifdef PLATFORM_WINDOWS
68 static
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 << X_("Windows QPC Timer source not usable") << endmsg;
79                 } else {
80                         PBD::info << X_("Windows QPC Timer source usable") << endmsg;
81                 }
82         }
83 }
84 #endif
85
86 } // namespace
87
88 bool
89 PBD::init ()
90 {
91         if (libpbd_initialized) {
92                 return true;
93         }
94
95 #ifdef PLATFORM_WINDOWS
96         // Essential!!  Make sure that any files used by Ardour
97         //              will be created or opened in BINARY mode!
98         _fmode = O_BINARY;
99
100         WSADATA wsaData;
101
102         /* Initialize windows socket DLL for PBD::CrossThreadChannel
103          */
104
105         if (WSAStartup(MAKEWORD(1,1),&wsaData) != 0) {
106                 fatal << X_("Windows socket initialization failed with error: ") << WSAGetLastError() << endmsg;
107                 abort();
108                 /*NOTREACHED*/
109                 return false;
110         }
111
112         QPC::initialize();
113         test_timers_from_env ();
114
115         if (!PBD::MMCSS::initialize()) {
116                 PBD::info << X_("Unable to initialize MMCSS") << endmsg;
117         } else {
118                 PBD::info << X_("MMCSS Initialized") << endmsg;
119         }
120 #endif
121
122         if (!Glib::thread_supported()) {
123                 Glib::thread_init();
124         }
125
126         Gio::init ();
127
128         PBD::ID::init ();
129
130         setup_libpbd_enums ();
131
132         set_debug_options_from_env ();
133
134         libpbd_initialized = true;
135         return true;
136 }
137
138 void
139 PBD::cleanup ()
140 {
141 #ifdef PLATFORM_WINDOWS
142         PBD::MMCSS::deinitialize ();
143         WSACleanup();
144 #endif
145
146         EnumWriter::destroy ();
147         FPU::destroy ();
148 }