]> git.lyx.org Git - lyx.git/blob - src/debug.C
Added function firstRow() to LyXText as this function is needed in
[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::WORKAREA,  "workarea",  N_("Workarea events")},
57         { Debug::INSETTEXT, "insettext", N_("Insettext/tabular messanges")},
58         { Debug::ANY,       "any",       N_("All debugging messages")}
59 };
60
61
62 int const numErrorTags = sizeof(errorTags)/sizeof(error_item);
63
64 } // namespace anon
65
66         
67 Debug::type const Debug::ANY = Debug::type(
68         Debug::INFO | Debug::INIT | Debug::KEY | Debug::GUI |
69         Debug::PARSER | Debug::LYXRC | Debug::KBMAP | Debug::LATEX |
70         Debug::MATHED | Debug::FONT | Debug::TCLASS | Debug::LYXVC |
71         Debug::LYXSERVER | Debug::ROFF | Debug::ACTION | Debug::LYXLEX |
72         Debug::DEPEND | Debug::INSETS | Debug::FILES | Debug::WORKAREA |
73         Debug::INSETTEXT);
74
75
76 Debug::type Debug::value(string const & val) 
77 {
78         type l = Debug::NONE;
79         string v(val);
80         while (!v.empty()) {
81                 string::size_type st = v.find(',');
82                 string tmp(lowercase(v.substr(0, st)));
83                 if (tmp.empty())
84                         break;
85                 // Is it a number?
86                 if (isStrInt(tmp)) 
87                         l |= static_cast<type>(strToInt(tmp));
88                 else
89                 // Search for an explicit name
90                 for (int i = 0 ; i < numErrorTags ; ++i) 
91                         if (tmp == errorTags[i].name) {
92                                 l |= errorTags[i].level;
93                                 break;
94                         }
95                 if (st == string::npos) break;
96                 v.erase(0, st + 1);
97         }
98         return l;
99 }
100
101
102 void Debug::showLevel(ostream & o, Debug::type level)
103 {
104         // Show what features are traced
105         for (int i = 0 ; i < numErrorTags ; ++i)
106                 if (errorTags[i].level != Debug::ANY
107                     && errorTags[i].level != Debug::NONE
108                     && errorTags[i].level & level)
109                         o << _("Debugging `") << errorTags[i].name
110                           << "' (" << _(errorTags[i].desc) << ')' << endl;
111 }
112
113
114 void Debug::showTags(ostream & os) 
115 {
116         for (int i = 0 ; i < numErrorTags ; ++i)
117                 os << setw(7) << errorTags[i].level
118                    << setw(10) << errorTags[i].name
119                    << "  " << _(errorTags[i].desc) << '\n';
120         os.flush();
121 }