]> git.lyx.org Git - lyx.git/blob - src/support/debug.h
Fix samba related crashes
[lyx.git] / src / support / debug.h
1 // -*- C++ -*-
2 /**
3  * \file debug.h
4  *
5  * This file is part of LyX, the document processor.
6  * Licence details can be found in the file COPYING.
7  *
8  * \author Lars Gullik Bjønnes
9  * \author Jean-Marc Lasgouttes
10  * \author Pavel Sanda
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #ifndef LYXDEBUG_H
16 #define LYXDEBUG_H
17
18 #include "support/strfwd.h"
19
20 namespace std {
21
22 class ios_base;
23
24 template<typename CharT, typename Traits> class basic_streambuf;
25 typedef basic_streambuf<char, char_traits<char> > streambuf;
26
27 }
28
29
30 namespace lyx {
31
32 ///  This is all the different debug levels that we have.
33 namespace Debug {
34         ///
35         enum Type {
36                 ///
37                 NONE = 0,
38                 ///
39                 INFO       = (1 << 0),   // 1
40                 ///
41                 INIT       = (1 << 1),   // 2
42                 ///
43                 KEY        = (1 << 2),   // 4
44                 ///
45                 GUI        = (1 << 3),   // 8
46                 ///
47                 PARSER     = (1 << 4),   // 16
48                 ///
49                 LYXRC      = (1 << 5),   // 32
50                 ///
51                 KBMAP      = (1 << 6),   // 64
52                 ///
53                 LATEX      = (1 << 7),   // 128
54                 ///
55                 MATHED     = (1 << 8),   // 256 // Alejandro, please use this.
56                 ///
57                 FONT       = (1 << 9),   // 512
58                 ///
59                 TCLASS     = (1 << 10),  // 1024
60                 ///
61                 LYXVC      = (1 << 11),  // 2048
62                 ///
63                 LYXSERVER  = (1 << 12),  // 4096
64                 ///
65                 UNDO       = (1 << 13),  // 8192
66                 ///
67                 ACTION     = (1 << 14),   // 16384
68                 ///
69                 LYXLEX     = (1 << 15),
70                 ///
71                 DEPEND     = (1 << 16),
72                 ///
73                 INSETS     = (1 << 17),
74                 ///
75                 FILES      = (1 << 18),
76                 ///
77                 WORKAREA   = (1 << 19),
78                 ///
79                 INSETTEXT  = (1 << 20),
80                 ///
81                 GRAPHICS   = (1 << 21),
82                 /// change tracking
83                 CHANGES    = (1 << 22),
84                 ///
85                 EXTERNAL   = (1 << 23),
86                 ///
87                 PAINTING   = (1 << 24),
88                 ///
89                 SCROLLING  = (1 << 25),
90                 ///
91                 MACROS     = (1 << 26),
92                 ///     rtl-related
93                 RTL        = (1 << 27),
94                 ///     locale related
95                 LOCALE     = (1 << 28),
96                 ///     selection
97                 SELECTION  = (1 << 29),
98                 /// Find and Replace
99                 FIND       = (1 << 30),
100                 ///
101                 DEBUG      = (1 << 31),
102                 ///
103                 ANY = 0xffffffff
104         };
105
106         /// Return number of levels
107         int levelCount();
108  
109         /// A function to convert debug level string names numerical values
110         Type value(std::string const & val);
111
112         /// A function to convert index of level to their numerical value
113         Type value(int val);
114
115         /// Return description of level
116         std::string const description(Type val);
117
118         /// Return name of level
119         std::string const name(Type val);
120
121         /// Display the tags and descriptions of the current debug level
122         void showLevel(std::ostream & os, Type level);
123
124         /// Show all the possible tags that can be used for debugging
125         void showTags(std::ostream & os);
126
127 } // namespace Debug
128
129
130 inline void operator|=(Debug::Type & d1, Debug::Type d2)
131 {
132         d1 = static_cast<Debug::Type>(d1 | d2);
133 }
134
135
136 class LyXErr
137 {
138 public:
139         LyXErr(): enabled_(true), second_enabled_(false) {}
140         
141         /// Disable the stream completely
142         void disable();
143         /// Enable the stream after a possible call of disable()
144         void enable();
145
146         /// Ends output
147         void endl();
148
149         /// Returns stream
150         std::ostream & stream() { return *stream_; }
151         /// Returns stream
152         operator std::ostream &() { return *stream_; }
153         /// Sets stream
154         void setStream(std::ostream & os) { stream_ = &os; }
155         /// Is the stream enabled ?
156         bool enabled() const { return enabled_; }
157
158         /// Returns second stream
159         std::ostream & secondStream() { return *second_stream_; };
160         /// Sets second stream
161         void setSecondStream(std::ostream * os) 
162                 { second_enabled_ = (second_stream_ = os); }
163         /// Is the second stream is enabled?
164         bool secondEnabled() { return second_enabled_; }
165
166         /// Sets the debug level
167         void setLevel(Debug::Type t) { dt_ = t; }
168         /// Returns the current debug level
169         Debug::Type level() const { return dt_; }
170         /// Returns true if t is part of the current debug level
171         bool debugging(Debug::Type t = Debug::ANY) const;
172
173 private:
174         /// The current debug level
175         Debug::Type dt_;
176         /// The real stream
177         std::ostream * stream_;
178         /// Is the stream enabled?
179         bool enabled_;
180         /// Next stream for output duplication
181         std::ostream * second_stream_;
182         /// Is the second stream enabled?
183         bool second_enabled_;
184 };
185
186 namespace support { class FileName; }
187
188 LyXErr & operator<<(LyXErr &, void const *);
189 LyXErr & operator<<(LyXErr &, char const *);
190 LyXErr & operator<<(LyXErr &, char);
191 LyXErr & operator<<(LyXErr &, int);
192 LyXErr & operator<<(LyXErr &, unsigned int);
193 LyXErr & operator<<(LyXErr &, long);
194 LyXErr & operator<<(LyXErr &, unsigned long);
195 LyXErr & operator<<(LyXErr &, double);
196 LyXErr & operator<<(LyXErr &, std::string const &);
197 LyXErr & operator<<(LyXErr &, docstring const &);
198 LyXErr & operator<<(LyXErr &, support::FileName const &);
199 LyXErr & operator<<(LyXErr &, std::ostream &(*)(std::ostream &));
200 LyXErr & operator<<(LyXErr &, std::ios_base &(*)(std::ios_base &));
201
202 extern LyXErr lyxerr;
203
204 } // namespace lyx
205
206 #if USE_BOOST_CURRENT_FUNCTION
207 #       include <boost/current_function.hpp>
208 #       define CURRENT_POSITION BOOST_CURRENT_FUNCTION ": "
209 #else
210 # define CURRENT_POSITION __FILE__ << "(" << __LINE__ << "): "
211 #endif
212
213 #define LYXERR(type, msg) \
214         do { \
215                 if (!lyx::lyxerr.debugging(type)) {} \
216                 else { lyx::lyxerr << CURRENT_POSITION << msg; lyx::lyxerr.endl(); } \
217         } while (0)
218
219 #define LYXERR0(msg) \
220         do { \
221                 lyx::lyxerr << CURRENT_POSITION << msg; lyx::lyxerr.endl(); \
222         } while (0)
223
224
225 #endif