1999-12-13 15:31:52 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
2001-05-30 13:53:44 +00:00
|
|
|
* Copyright 1999-2001 The LyX Team.
|
1999-12-13 15:31:52 +00:00
|
|
|
*
|
|
|
|
* ====================================================== */
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
1999-12-22 14:35:05 +00:00
|
|
|
#include <iomanip>
|
2000-03-28 02:18:55 +00:00
|
|
|
|
2000-11-14 02:01:57 +00:00
|
|
|
#include "debug.h"
|
|
|
|
#include "gettext.h"
|
2001-07-29 17:39:01 +00:00
|
|
|
#include "support/lstrings.h"
|
2000-11-14 02:01:57 +00:00
|
|
|
|
2000-04-04 00:19:15 +00:00
|
|
|
using std::ostream;
|
1999-12-22 14:35:05 +00:00
|
|
|
using std::setw;
|
2000-03-28 02:18:55 +00:00
|
|
|
using std::endl;
|
1999-12-22 14:35:05 +00:00
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
namespace {
|
|
|
|
|
1999-12-13 15:31:52 +00:00
|
|
|
struct error_item {
|
|
|
|
Debug::type level;
|
|
|
|
char const * name;
|
|
|
|
char const * desc;
|
|
|
|
};
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
|
|
|
error_item errorTags[] = {
|
2000-11-14 02:01:57 +00:00
|
|
|
{ Debug::NONE, "none", N_("No debugging message")},
|
|
|
|
{ Debug::INFO, "info", N_("General information")},
|
|
|
|
{ Debug::INIT, "init", N_("Program initialisation")},
|
|
|
|
{ Debug::KEY, "key", N_("Keyboard events handling")},
|
|
|
|
{ Debug::GUI, "gui", N_("GUI handling")},
|
|
|
|
{ Debug::PARSER, "parser", N_("Lyxlex grammer parser")},
|
|
|
|
{ Debug::LYXRC, "lyxrc", N_("Configuration files reading")},
|
|
|
|
{ Debug::KBMAP, "kbmap", N_("Custom keyboard definition")},
|
|
|
|
{ Debug::LATEX, "latex", N_("LaTeX generation/execution")},
|
|
|
|
{ Debug::MATHED, "mathed", N_("Math editor")},
|
|
|
|
{ Debug::FONT, "font", N_("Font handling")},
|
|
|
|
{ Debug::TCLASS, "tclass", N_("Textclass files reading")},
|
|
|
|
{ Debug::LYXVC, "lyxvc", N_("Version control")},
|
|
|
|
{ Debug::LYXSERVER, "lyxserver", N_("External control interface")},
|
|
|
|
{ Debug::ROFF, "roff", N_("Keep *roff temporary files")},
|
|
|
|
{ Debug::ACTION, "action", N_("User commands")},
|
|
|
|
{ Debug::LYXLEX, "lyxlex", N_("The LyX Lexxer")},
|
|
|
|
{ Debug::DEPEND, "depend", N_("Dependency information")},
|
|
|
|
{ Debug::INSETS, "insets", N_("LyX Insets")},
|
|
|
|
{ Debug::FILES, "files", N_("Files used by LyX")},
|
|
|
|
{ Debug::ANY, "any", N_("All debugging messages")}
|
1999-12-13 15:31:52 +00:00
|
|
|
};
|
|
|
|
|
1999-12-13 21:59:26 +00:00
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
int const numErrorTags = sizeof(errorTags)/sizeof(error_item);
|
|
|
|
|
|
|
|
} // namespace anon
|
1999-12-13 15:31:52 +00:00
|
|
|
|
2000-10-11 21:06:43 +00:00
|
|
|
|
|
|
|
Debug::type const Debug::ANY = Debug::type(
|
|
|
|
Debug::INFO | Debug::INIT | Debug::KEY | Debug::GUI |
|
|
|
|
Debug::PARSER | Debug::LYXRC | Debug::KBMAP | Debug::LATEX |
|
|
|
|
Debug::MATHED | Debug::FONT | Debug::TCLASS | Debug::LYXVC |
|
|
|
|
Debug::LYXSERVER | Debug::ROFF | Debug::ACTION | Debug::LYXLEX |
|
2000-11-14 02:01:57 +00:00
|
|
|
Debug::DEPEND | Debug::INSETS | Debug::FILES);
|
2000-10-11 21:06:43 +00:00
|
|
|
|
1999-12-13 21:59:26 +00:00
|
|
|
|
1999-12-13 15:31:52 +00:00
|
|
|
Debug::type Debug::value(string const & val)
|
|
|
|
{
|
|
|
|
type l = Debug::NONE;
|
|
|
|
string v(val);
|
|
|
|
while (!v.empty()) {
|
|
|
|
string::size_type st = v.find(',');
|
|
|
|
string tmp(lowercase(v.substr(0, st)));
|
2000-01-25 12:35:27 +00:00
|
|
|
if (tmp.empty())
|
1999-12-13 15:31:52 +00:00
|
|
|
break;
|
|
|
|
// Is it a number?
|
|
|
|
if (isStrInt(tmp))
|
|
|
|
l |= static_cast<type>(strToInt(tmp));
|
|
|
|
else
|
|
|
|
// Search for an explicit name
|
1999-12-13 21:59:26 +00:00
|
|
|
for (int i = 0 ; i < numErrorTags ; ++i)
|
1999-12-13 15:31:52 +00:00
|
|
|
if (tmp == errorTags[i].name) {
|
|
|
|
l |= errorTags[i].level;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (st == string::npos) break;
|
|
|
|
v.erase(0, st + 1);
|
|
|
|
}
|
|
|
|
return l;
|
|
|
|
}
|
|
|
|
|
1999-12-13 21:59:26 +00:00
|
|
|
|
|
|
|
void Debug::showLevel(ostream & o, Debug::type level)
|
1999-12-13 15:31:52 +00:00
|
|
|
{
|
|
|
|
// Show what features are traced
|
|
|
|
for (int i = 0 ; i < numErrorTags ; ++i)
|
|
|
|
if (errorTags[i].level != Debug::ANY
|
|
|
|
&& errorTags[i].level != Debug::NONE
|
|
|
|
&& errorTags[i].level & level)
|
2000-11-14 02:01:57 +00:00
|
|
|
o << _("Debugging `") << errorTags[i].name
|
|
|
|
<< "' (" << _(errorTags[i].desc) << ')' << endl;
|
1999-12-13 15:31:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-12-13 21:59:26 +00:00
|
|
|
void Debug::showTags(ostream & os)
|
1999-12-13 15:31:52 +00:00
|
|
|
{
|
|
|
|
for (int i = 0 ; i < numErrorTags ; ++i)
|
2000-05-17 13:40:40 +00:00
|
|
|
os << setw(7) << errorTags[i].level
|
1999-12-22 14:35:05 +00:00
|
|
|
<< setw(10) << errorTags[i].name
|
2000-11-14 02:01:57 +00:00
|
|
|
<< " " << _(errorTags[i].desc) << '\n';
|
1999-12-13 21:59:26 +00:00
|
|
|
os.flush();
|
1999-12-13 15:31:52 +00:00
|
|
|
}
|