mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
9439b6e6e0
* remove FileName.h inclusion from filetools.h git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22188 a592a061-630c-0410-9148-cb99ea01b6c8
187 lines
3.5 KiB
C++
187 lines
3.5 KiB
C++
/**
|
|
* \file CmdDef.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Bernhard Roider
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "CmdDef.h"
|
|
|
|
#include "LyXAction.h"
|
|
#include "Lexer.h"
|
|
|
|
#include "support/debug.h"
|
|
#include "support/FileName.h"
|
|
#include "support/filetools.h"
|
|
#include "support/lstrings.h"
|
|
|
|
#include <ostream>
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
using namespace lyx::support;
|
|
|
|
namespace lyx {
|
|
|
|
namespace {
|
|
|
|
enum CmdDefTags {
|
|
BN_DEFFILE,
|
|
BN_DEFINE
|
|
};
|
|
|
|
keyword_item cmdDefTags[] = {
|
|
{ "\\def_file", BN_DEFFILE },
|
|
{ "\\define", BN_DEFINE }
|
|
};
|
|
|
|
}
|
|
|
|
|
|
bool CmdDef::read(string const & def_file)
|
|
{
|
|
const int cmdDefCount = sizeof(cmdDefTags) / sizeof(keyword_item);
|
|
|
|
Lexer lexrc(cmdDefTags, cmdDefCount);
|
|
if (lyxerr.debugging(Debug::PARSER))
|
|
lexrc.printTable(lyxerr);
|
|
|
|
FileName const tmp(i18nLibFileSearch("commands", def_file, "def"));
|
|
lexrc.setFile(tmp);
|
|
if (!lexrc.isOK()) {
|
|
lyxerr << "CmdDef::read: cannot open def file:"
|
|
<< tmp << endl;
|
|
return false;
|
|
}
|
|
|
|
bool error = false;
|
|
while (lexrc.isOK()) {
|
|
switch (lexrc.lex()) {
|
|
case Lexer::LEX_UNDEF:
|
|
lexrc.printError("Unknown tag `$$Token'");
|
|
error = true;
|
|
continue;
|
|
case Lexer::LEX_FEOF:
|
|
continue;
|
|
case BN_DEFINE:
|
|
{
|
|
string name, def;
|
|
|
|
if (lexrc.next()) {
|
|
name = lexrc.getString();
|
|
} else {
|
|
lexrc.printError("BN_DEFINE: Missing command name");
|
|
error = true;
|
|
break;
|
|
}
|
|
|
|
if (lexrc.next(true)) {
|
|
def = lexrc.getString();
|
|
} else {
|
|
lexrc.printError("BN_DEFINE: missing command definition");
|
|
error = true;
|
|
break;
|
|
}
|
|
|
|
newCmdDefResult e = newCmdDef(name, def);
|
|
switch (e) {
|
|
case CmdDefNameEmpty:
|
|
lexrc.printError("BN_DEFINE: Command name is empty");
|
|
error = true;
|
|
break;
|
|
case CmdDefExists:
|
|
lexrc.printError("BN_DEFINE: Command `" + name + "' already defined");
|
|
error = true;
|
|
break;
|
|
case CmdDefInvalid:
|
|
lexrc.printError("BN_DEFINE: Command definition for `" + name + "' is not valid");
|
|
error = true;
|
|
}
|
|
|
|
break;
|
|
}
|
|
case BN_DEFFILE:
|
|
if (lexrc.next()) {
|
|
string const tmp(lexrc.getString());
|
|
error |= !read(tmp);
|
|
} else {
|
|
lexrc.printError("BN_DEFFILE: Missing file name");
|
|
error = true;
|
|
break;
|
|
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (error)
|
|
lyxerr << "CmdDef::read: error while reading def file:"
|
|
<< tmp << endl;
|
|
return !error;
|
|
}
|
|
|
|
|
|
bool CmdDef::lock(string const & name, FuncRequest & func)
|
|
{
|
|
if (cmdDefMap.empty()) {
|
|
func = FuncRequest::unknown;
|
|
return false;
|
|
}
|
|
|
|
string const name2 = trim(name);
|
|
|
|
if (lockSet.find(name2) != lockSet.end()) {
|
|
func = FuncRequest::noaction;
|
|
return false;
|
|
}
|
|
|
|
CmdDefMap::const_iterator pos = cmdDefMap.find(name2);
|
|
|
|
if (pos == cmdDefMap.end()) {
|
|
func = FuncRequest::unknown;
|
|
return false;
|
|
}
|
|
|
|
lockSet.insert(name2);
|
|
func = pos->second;
|
|
return true;
|
|
}
|
|
|
|
|
|
void CmdDef::release(string const & name)
|
|
{
|
|
string const name2 = trim(name);
|
|
|
|
lockSet.erase(name2);
|
|
}
|
|
|
|
CmdDef::newCmdDefResult CmdDef::newCmdDef(string const & name,
|
|
string const & def)
|
|
{
|
|
string const name2 = trim(name);
|
|
|
|
if (name2.empty())
|
|
return CmdDefNameEmpty;
|
|
|
|
if (cmdDefMap.find(name) != cmdDefMap.end())
|
|
return CmdDefExists;
|
|
|
|
FuncRequest func = lyxaction.lookupFunc(def);
|
|
if (func.action == LFUN_NOACTION ||
|
|
func.action == LFUN_UNKNOWN_ACTION) {
|
|
return CmdDefInvalid;
|
|
}
|
|
|
|
cmdDefMap[name2] = func;
|
|
|
|
return CmdDefOk;
|
|
}
|
|
|
|
|
|
} // namespace lyx
|