]> git.lyx.org Git - lyx.git/blob - src/debug.C
6a77781768c1c82229eaa55af074debe3380edfa
[lyx.git] / src / debug.C
1 /* This file is part of
2 * ====================================================== 
3
4 *           LyX, The Document Processor
5 *        
6 *           Copyright 1999-2001 The LyX Team.
7 *
8 * ====================================================== */
9
10 #ifdef __GNUG__
11 #pragma implementation
12 #endif
13
14 #include <config.h>
15
16 #include <iomanip>
17
18 #include "debug.h"
19 #include "gettext.h"
20 #include "support/lstrings.h"
21
22 using std::ostream;
23 using std::setw;
24 using std::endl;
25
26 namespace {
27
28 struct error_item {
29         Debug::type level;
30         char const * name;
31         char const * desc;
32 };
33
34
35 error_item errorTags[] = {
36         { Debug::NONE,      "none",      N_("No debugging message")},
37         { Debug::INFO,      "info",      N_("General information")},
38         { Debug::INIT,      "init",      N_("Program initialisation")},
39         { Debug::KEY,       "key",       N_("Keyboard events handling")},
40         { Debug::GUI,       "gui",       N_("GUI handling")},
41         { Debug::PARSER,    "parser",    N_("Lyxlex grammer parser")},
42         { Debug::LYXRC,     "lyxrc",     N_("Configuration files reading")},
43         { Debug::KBMAP,     "kbmap",     N_("Custom keyboard definition")},
44         { Debug::LATEX,     "latex",     N_("LaTeX generation/execution")},
45         { Debug::MATHED,    "mathed",    N_("Math editor")},
46         { Debug::FONT,      "font",      N_("Font handling")},
47         { Debug::TCLASS,    "tclass",    N_("Textclass files reading")},
48         { Debug::LYXVC,     "lyxvc",     N_("Version control")},
49         { Debug::LYXSERVER, "lyxserver", N_("External control interface")},
50         { Debug::ROFF,      "roff",      N_("Keep *roff temporary files")},
51         { Debug::ACTION,    "action",    N_("User commands")},
52         { Debug::LYXLEX,    "lyxlex",    N_("The LyX Lexxer")},
53         { Debug::DEPEND,    "depend",    N_("Dependency information")},
54         { Debug::INSETS,    "insets",    N_("LyX Insets")},
55         { Debug::FILES,     "files",     N_("Files used by LyX")},
56         { Debug::ANY,       "any",       N_("All debugging messages")}
57 };
58
59
60 int const numErrorTags = sizeof(errorTags)/sizeof(error_item);
61
62 } // namespace anon
63
64         
65 Debug::type const Debug::ANY = Debug::type(
66         Debug::INFO | Debug::INIT | Debug::KEY | Debug::GUI |
67         Debug::PARSER | Debug::LYXRC | Debug::KBMAP | Debug::LATEX |
68         Debug::MATHED | Debug::FONT | Debug::TCLASS | Debug::LYXVC |
69         Debug::LYXSERVER | Debug::ROFF | Debug::ACTION | Debug::LYXLEX |
70         Debug::DEPEND | Debug::INSETS | Debug::FILES);
71
72
73 Debug::type Debug::value(string const & val) 
74 {
75         type l = Debug::NONE;
76         string v(val);
77         while (!v.empty()) {
78                 string::size_type st = v.find(',');
79                 string tmp(lowercase(v.substr(0, st)));
80                 if (tmp.empty())
81                         break;
82                 // Is it a number?
83                 if (isStrInt(tmp)) 
84                         l |= static_cast<type>(strToInt(tmp));
85                 else
86                 // Search for an explicit name
87                 for (int i = 0 ; i < numErrorTags ; ++i) 
88                         if (tmp == errorTags[i].name) {
89                                 l |= errorTags[i].level;
90                                 break;
91                         }
92                 if (st == string::npos) break;
93                 v.erase(0, st + 1);
94         }
95         return l;
96 }
97
98
99 void Debug::showLevel(ostream & o, Debug::type level)
100 {
101         // Show what features are traced
102         for (int i = 0 ; i < numErrorTags ; ++i)
103                 if (errorTags[i].level != Debug::ANY
104                     && errorTags[i].level != Debug::NONE
105                     && errorTags[i].level & level)
106                         o << _("Debugging `") << errorTags[i].name
107                           << "' (" << _(errorTags[i].desc) << ')' << endl;
108 }
109
110
111 void Debug::showTags(ostream & os) 
112 {
113         for (int i = 0 ; i < numErrorTags ; ++i)
114                 os << setw(7) << errorTags[i].level
115                    << setw(10) << errorTags[i].name
116                    << "  " << _(errorTags[i].desc) << '\n';
117         os.flush();
118 }