]> git.mxchange.org Git - simgear.git/blob - simgear/debug/logstream.cxx
Merge branch 'fredb/winfix'
[simgear.git] / simgear / debug / logstream.cxx
1 // Stream based logging mechanism.
2 //
3 // Written by Bernie Bright, 1998
4 //
5 // Copyright (C) 1998  Bernie Bright - bbright@c031.aone.net.au
6 //
7 // This library is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU Library General Public
9 // License as published by the Free Software Foundation; either
10 // version 2 of the License, or (at your option) any later version.
11 //
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // Library General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23 #include <iostream>
24
25 #include "logstream.hxx"
26
27 logstream *logstream::global_logstream = 0;
28
29 bool            logbuf::logging_enabled = true;
30 #ifdef _WIN32
31    bool         logbuf::has_console = true;
32 #endif
33 sgDebugClass    logbuf::logClass        = SG_NONE;
34 sgDebugPriority logbuf::logPriority     = SG_INFO;
35 streambuf*      logbuf::sbuf            = NULL;
36
37 namespace {
38 struct ignore_me
39 {
40     ignore_me()
41     {
42         logstream::initGlobalLogstream();
43     }
44 };
45 static ignore_me im;
46 }
47
48 logbuf::logbuf()
49 {
50 //     if ( sbuf == NULL )
51 //      sbuf = cerr.rdbuf();
52 }
53
54 logbuf::~logbuf()
55 {
56     if ( sbuf )
57             sync();
58 }
59
60 void
61 logbuf::set_sb( streambuf* sb )
62 {
63     if ( sbuf )
64             sync();
65
66     sbuf = sb;
67 }
68
69 void
70 logbuf::set_log_level( sgDebugClass c, sgDebugPriority p )
71 {
72     logClass = c;
73     logPriority = p;
74 }
75
76 void
77 logbuf::set_log_classes (sgDebugClass c)
78 {
79     logClass = c;
80 }
81
82 sgDebugClass
83 logbuf::get_log_classes ()
84 {
85     return logClass;
86 }
87
88 void
89 logbuf::set_log_priority (sgDebugPriority p)
90 {
91     logPriority = p;
92 }
93
94 sgDebugPriority
95 logbuf::get_log_priority ()
96 {
97     return logPriority;
98 }
99
100 void
101 logstream::setLogLevels( sgDebugClass c, sgDebugPriority p )
102 {
103     logbuf::set_log_level( c, p );
104 }
105
106 logstream *
107 logstream::initGlobalLogstream()
108 {
109     // Force initialization of cerr.
110     static std::ios_base::Init initializer;
111     if( !global_logstream )
112         global_logstream = new logstream(std::cerr);
113     return global_logstream;
114 }