1999-10-07 18:44:17 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
|
|
|
|
#ifndef LYXDEBUG_H
|
|
|
|
#define LYXDEBUG_H
|
|
|
|
|
|
|
|
#include "LString.h"
|
1999-11-25 17:29:19 +00:00
|
|
|
#include "support/lstrings.h"
|
1999-10-07 18:44:17 +00:00
|
|
|
|
|
|
|
/** Ideally this should have been a namespace, but since we try to be
|
|
|
|
compilable on older C++ compilators too, we use a struct instead.
|
|
|
|
This is all the different debug levels that we have.
|
|
|
|
*/
|
|
|
|
struct Debug {
|
|
|
|
///
|
|
|
|
enum type {
|
|
|
|
///
|
|
|
|
NONE = 0,
|
|
|
|
///
|
|
|
|
INFO = (1 << 0), // 1
|
|
|
|
///
|
|
|
|
INIT = (1 << 1), // 2
|
|
|
|
///
|
|
|
|
KEY = (1 << 2), // 4
|
|
|
|
///
|
|
|
|
TOOLBAR = (1 << 3), // 8
|
|
|
|
///
|
|
|
|
PARSER = (1 << 4), // 16
|
|
|
|
///
|
|
|
|
LYXRC = (1 << 5), // 32
|
|
|
|
///
|
|
|
|
KBMAP = (1 << 6), // 64
|
|
|
|
///
|
|
|
|
LATEX = (1 << 7), // 128
|
|
|
|
///
|
|
|
|
MATHED = (1 << 8), // 256 // Alejandro, please use this.
|
|
|
|
///
|
|
|
|
FONT = (1 << 9), // 512
|
|
|
|
///
|
|
|
|
TCLASS = (1 << 10), // 1024
|
|
|
|
///
|
|
|
|
LYXVC = (1 << 11), // 2048
|
|
|
|
///
|
|
|
|
LYXSERVER = (1 << 12), // 4096
|
|
|
|
///
|
1999-11-25 17:29:19 +00:00
|
|
|
ROFF = (1 << 13), // 8192
|
|
|
|
///
|
|
|
|
ACTION = (1 << 14) // 16384
|
1999-10-07 18:44:17 +00:00
|
|
|
};
|
|
|
|
///
|
|
|
|
static const type ANY = type(INFO | INIT | KEY | TOOLBAR |
|
|
|
|
PARSER | LYXRC | KBMAP | LATEX |
|
|
|
|
MATHED | FONT | TCLASS | LYXVC |
|
1999-11-25 17:29:19 +00:00
|
|
|
LYXSERVER | ROFF | ACTION);
|
1999-11-04 01:40:20 +00:00
|
|
|
///
|
|
|
|
friend inline void operator|=(Debug::type & d1, Debug::type d2);
|
|
|
|
|
1999-10-07 18:44:17 +00:00
|
|
|
/** A function to convert symbolic string names on debug levels
|
|
|
|
to their numerical value.
|
|
|
|
*/
|
|
|
|
static Debug::type value(string const & val) {
|
1999-11-04 01:40:20 +00:00
|
|
|
type l = Debug::NONE;
|
1999-10-07 18:44:17 +00:00
|
|
|
string v(val);
|
|
|
|
while (!v.empty()) {
|
|
|
|
string::size_type st = v.find(',');
|
|
|
|
string tmp(v.substr(0, st));
|
|
|
|
if (tmp.empty()) break;
|
1999-11-25 17:29:19 +00:00
|
|
|
if (isStrInt(tmp)) {
|
|
|
|
l |= static_cast<type>(strToInt(tmp));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!compare_no_case(tmp,"NONE"))
|
|
|
|
l |= Debug::NONE;
|
|
|
|
else if (!compare_no_case(tmp,"INFO"))
|
|
|
|
l |= Debug::INFO;
|
|
|
|
else if (!compare_no_case(tmp,"INIT"))
|
|
|
|
l |= Debug::INIT;
|
|
|
|
else if (!compare_no_case(tmp,"KEY"))
|
|
|
|
l |= Debug::KEY;
|
|
|
|
else if (!compare_no_case(tmp,"TOOLBAR"))
|
|
|
|
l |= Debug::TOOLBAR;
|
|
|
|
else if (!compare_no_case(tmp,"PARSER"))
|
|
|
|
l |= Debug::PARSER;
|
|
|
|
else if (!compare_no_case(tmp,"LYXRC"))
|
|
|
|
l |= Debug::LYXRC;
|
|
|
|
else if (!compare_no_case(tmp,"KBMAP"))
|
|
|
|
l |= Debug::KBMAP;
|
|
|
|
else if (!compare_no_case(tmp,"LATEX"))
|
|
|
|
l |= Debug::LATEX;
|
|
|
|
else if (!compare_no_case(tmp,"MATHED"))
|
|
|
|
l |= Debug::MATHED;
|
|
|
|
else if (!compare_no_case(tmp,"FONT"))
|
|
|
|
l |= Debug::FONT;
|
|
|
|
else if (!compare_no_case(tmp,"TCLASS"))
|
|
|
|
l |= Debug::TCLASS;
|
|
|
|
else if (!compare_no_case(tmp,"LYXVC"))
|
|
|
|
l |= Debug::LYXVC;
|
|
|
|
else if (!compare_no_case(tmp,"LYXSERVER"))
|
|
|
|
l |= Debug::LYXSERVER;
|
|
|
|
else if (!compare_no_case(tmp,"ROFF"))
|
|
|
|
l |= Debug::ROFF;
|
|
|
|
else if (!compare_no_case(tmp,"ACTION"))
|
|
|
|
l |= Debug::ACTION;
|
1999-10-07 18:44:17 +00:00
|
|
|
else break; // unknown string
|
|
|
|
if (st == string::npos) break;
|
|
|
|
v.erase(0, st + 1);
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
return l;
|
1999-10-07 18:44:17 +00:00
|
|
|
}
|
|
|
|
};
|
1999-11-04 01:40:20 +00:00
|
|
|
///
|
1999-11-15 12:01:38 +00:00
|
|
|
inline void operator|= (Debug::type & d1, Debug::type d2)
|
1999-11-04 01:40:20 +00:00
|
|
|
{
|
|
|
|
d1 = static_cast<Debug::type>(d1 | d2);
|
|
|
|
}
|
1999-10-07 18:44:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
#include "support/DebugStream.h"
|
|
|
|
|
1999-10-13 10:34:07 +00:00
|
|
|
///
|
|
|
|
ostream & operator<<(ostream & o, Debug::type t);
|
|
|
|
|
1999-10-07 18:44:17 +00:00
|
|
|
extern DebugStream lyxerr;
|
|
|
|
|
|
|
|
#endif
|