add required header
[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
38 #ifdef PLATFORM_WINDOWS
39 #include <winsock2.h>
40 #endif
41
42 #include "i18n.h"
43
44 extern void setup_libpbd_enums ();
45
46 namespace {
47
48 static bool libpbd_initialized = false;
49
50 }
51
52 void
53 set_debug_options_from_env ()
54 {
55         bool set;
56         std::string options;
57
58         options = Glib::getenv ("PBD_DEBUG", set);
59         if (set) {
60                 std::cerr << "PBD_DEBUG=" << options << std::endl;
61                 PBD::parse_debug_options (options.c_str());
62         }
63 }
64
65 bool
66 PBD::init ()
67 {
68         if (libpbd_initialized) {
69                 return true;
70         }
71
72 #ifdef PLATFORM_WINDOWS
73         // Essential!!  Make sure that any files used by Ardour
74         //              will be created or opened in BINARY mode!
75         _fmode = O_BINARY;
76
77         WSADATA wsaData;
78
79         /* Initialize windows socket DLL for PBD::CrossThreadChannel
80          */
81         
82         if (WSAStartup(MAKEWORD(1,1),&wsaData) != 0) {
83                 fatal << "Windows socket initialization failed with error: " << WSAGetLastError() << endmsg;
84                 /*NOTREACHED*/
85                 return;
86         }
87 #endif
88
89         if (!Glib::thread_supported()) {
90                 Glib::thread_init();
91         }
92
93         Gio::init ();
94
95         PBD::ID::init ();
96
97         setup_libpbd_enums ();
98
99         set_debug_options_from_env ();
100
101         libpbd_initialized = true;
102         return true;
103 }
104
105 void
106 PBD::cleanup ()
107 {
108 #ifdef PLATFORM_WINDOWS
109         WSACleanup();
110 #endif  
111
112         EnumWriter::destroy ();
113 }