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