Add ability to set libpbd debug options via PBD_DEBUG environment var
[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/id.h"
35 #include "pbd/enumwriter.h"
36
37 #include "i18n.h"
38
39 extern void setup_libpbd_enums ();
40
41 namespace {
42
43 static bool libpbd_initialized = false;
44
45 }
46
47 void
48 set_debug_options_from_env ()
49 {
50         bool set;
51         std::string options;
52
53         options = Glib::getenv ("PBD_DEBUG", set);
54         if (set) {
55                 std::cerr << "PBD_DEBUG=" << options << std::endl;
56                 PBD::parse_debug_options (options.c_str());
57         }
58 }
59
60 bool
61 PBD::init ()
62 {
63         if (libpbd_initialized) {
64                 return true;
65         }
66
67 #ifdef PLATFORM_WINDOWS
68         // Essential!!  Make sure that any files used by Ardour
69         //              will be created or opened in BINARY mode!
70         _fmode = O_BINARY;
71 #endif
72
73         if (!Glib::thread_supported()) {
74                 Glib::thread_init();
75         }
76
77         Gio::init ();
78
79         PBD::ID::init ();
80
81         setup_libpbd_enums ();
82
83         set_debug_options_from_env ();
84
85         libpbd_initialized = true;
86         return true;
87 }
88
89 void
90 PBD::cleanup ()
91 {
92         EnumWriter::destroy ();
93 }