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