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