]> git.lyx.org Git - lyx.git/blob - src/support/debug.h
move call stack code, add TODOs
[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
128 } // namespace Debug
129
130
131 inline void operator|=(Debug::Type & d1, Debug::Type d2)
132 {
133         d1 = static_cast<Debug::Type>(d1 | d2);
134 }
135
136
137 class LyXErr
138 {
139 public:
140         LyXErr(): enabled_(true), second_enabled_(false) {}
141         
142         /// Disable the stream completely
143         void disable();
144         /// Enable the stream after a possible call of disable()
145         void enable();
146
147         /// Ends output
148         void endl();
149
150         /// Returns stream
151         std::ostream & stream() { return *stream_; }
152         /// Returns stream
153         operator std::ostream &() { return *stream_; }
154         /// Sets stream
155         void setStream(std::ostream & os) { stream_ = &os; }
156         /// Is the stream enabled ?
157         bool enabled() const { return enabled_; }
158
159         /// Returns second stream
160         std::ostream & secondStream() { return *second_stream_; };
161         /// Sets second stream
162         void setSecondStream(std::ostream * os) 
163                 { second_enabled_ = (second_stream_ = os); }
164         /// Is the second stream is enabled?
165         bool secondEnabled() { return second_enabled_; }
166
167         /// Sets the debug level
168         void setLevel(Debug::Type t) { dt_ = t; }
169         /// Returns the current debug level
170         Debug::Type level() const { return dt_; }
171         /// Returns true if t is part of the current debug level
172         bool debugging(Debug::Type t = Debug::ANY) const;
173
174 private:
175         /// The current debug level
176         Debug::Type dt_;
177         /// The real stream
178         std::ostream * stream_;
179         /// Is the stream enabled?
180         bool enabled_;
181         /// Next stream for output duplication
182         std::ostream * second_stream_;
183         /// Is the second stream enabled?
184         bool second_enabled_;
185 };
186
187 namespace support { class FileName; }
188
189 LyXErr & operator<<(LyXErr &, void const *);
190 LyXErr & operator<<(LyXErr &, char const *);
191 LyXErr & operator<<(LyXErr &, char);
192 LyXErr & operator<<(LyXErr &, int);
193 LyXErr & operator<<(LyXErr &, unsigned int);
194 LyXErr & operator<<(LyXErr &, long);
195 LyXErr & operator<<(LyXErr &, unsigned long);
196 LyXErr & operator<<(LyXErr &, double);
197 LyXErr & operator<<(LyXErr &, std::string const &);
198 LyXErr & operator<<(LyXErr &, docstring const &);
199 LyXErr & operator<<(LyXErr &, support::FileName const &);
200 LyXErr & operator<<(LyXErr &, std::ostream &(*)(std::ostream &));
201 LyXErr & operator<<(LyXErr &, std::ios_base &(*)(std::ios_base &));
202
203 extern LyXErr lyxerr;
204
205 } // namespace lyx
206
207 #if USE_BOOST_CURRENT_FUNCTION
208 #       include <boost/current_function.hpp>
209 #       define CURRENT_POSITION BOOST_CURRENT_FUNCTION ": "
210 #else
211 # define CURRENT_POSITION __FILE__ << "(" << __LINE__ << "): "
212 #endif
213
214 #define LYXERR(type, msg) \
215         do { \
216                 if (!lyx::lyxerr.debugging(type)) {} \
217                 else { lyx::lyxerr << CURRENT_POSITION << msg; lyx::lyxerr.endl(); } \
218         } while (0)
219
220 #define LYXERR0(msg) \
221         do { \
222                 lyx::lyxerr << CURRENT_POSITION << msg; lyx::lyxerr.endl(); \
223         } while (0)
224
225
226 #endif