1999-09-27 18:44:28 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-23 00:17:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file lyxlex.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Alejandro Aguilar Sierra
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// Generalized simple lexical analizer.
|
|
|
|
|
// It can be used for simple syntax parsers, like lyxrc,
|
2003-08-23 00:17:00 +00:00
|
|
|
|
// texclass and others to come.
|
|
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
|
#ifndef LYXLEX_H
|
|
|
|
|
#define LYXLEX_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2006-09-13 21:13:49 +00:00
|
|
|
|
#include "support/docstring.h"
|
2006-08-13 22:54:59 +00:00
|
|
|
|
|
2003-10-06 15:43:21 +00:00
|
|
|
|
#include <boost/utility.hpp>
|
|
|
|
|
|
2000-03-28 02:18:55 +00:00
|
|
|
|
#include <iosfwd>
|
2000-01-10 16:28:29 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
struct keyword_item {
|
|
|
|
|
///
|
1999-12-01 00:57:31 +00:00
|
|
|
|
char const * tag;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2001-11-26 11:08:43 +00:00
|
|
|
|
int code;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
|
/** Generalized simple lexical analizer.
|
|
|
|
|
It can be used for simple syntax parsers, like lyxrc,
|
|
|
|
|
texclass and others to come.
|
|
|
|
|
@see lyxrc.C for an example of usage.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
*/
|
2002-03-21 17:27:08 +00:00
|
|
|
|
class LyXLex : boost::noncopyable {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
public:
|
|
|
|
|
///
|
2003-05-19 17:03:12 +00:00
|
|
|
|
LyXLex(keyword_item *, int);
|
2000-04-08 17:02:02 +00:00
|
|
|
|
///
|
|
|
|
|
~LyXLex();
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/// Lex basic codes
|
|
|
|
|
enum {
|
|
|
|
|
///
|
|
|
|
|
LEX_UNDEF = -1,
|
|
|
|
|
///
|
|
|
|
|
LEX_FEOF = -2,
|
|
|
|
|
///
|
|
|
|
|
LEX_DATA = -3,
|
|
|
|
|
///
|
|
|
|
|
LEX_TOKEN = -4
|
|
|
|
|
};
|
|
|
|
|
|
2003-12-02 12:27:07 +00:00
|
|
|
|
/// stream is open and end of stream is not reached
|
2001-08-06 19:12:46 +00:00
|
|
|
|
bool isOK() const;
|
2003-12-02 10:19:51 +00:00
|
|
|
|
/// stream is ok
|
2003-12-02 12:27:07 +00:00
|
|
|
|
operator void const *() const;
|
2003-12-02 10:19:51 +00:00
|
|
|
|
/// stream is not ok
|
|
|
|
|
bool operator!() const;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/// return true if able to open file, else false
|
2003-10-06 15:43:21 +00:00
|
|
|
|
bool setFile(std::string const & filename);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-02-26 18:03:48 +00:00
|
|
|
|
void setStream(std::istream & is);
|
2000-01-06 02:44:26 +00:00
|
|
|
|
///
|
2000-04-08 17:02:02 +00:00
|
|
|
|
std::istream & getStream();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/// Danger! Don't use it unless you know what you are doing.
|
2000-04-08 17:02:02 +00:00
|
|
|
|
void setLineNo(int l);
|
2000-11-08 15:19:55 +00:00
|
|
|
|
/// Change the character that begins a comment. Default is '#'
|
|
|
|
|
void setCommentChar(char c);
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/// returns a lex code
|
|
|
|
|
int lex();
|
|
|
|
|
|
|
|
|
|
/** Just read athe next word. If esc is true remember that
|
2000-08-07 20:58:24 +00:00
|
|
|
|
some chars might be escaped: "\ atleast
|
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
bool next(bool esc = false);
|
|
|
|
|
|
|
|
|
|
/** Read next token. This one is almost the same as next,
|
2000-08-07 20:58:24 +00:00
|
|
|
|
but it will consider " as a regular character and always
|
|
|
|
|
split a word if it contains a backslash.
|
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
bool nextToken();
|
2000-05-17 14:43:09 +00:00
|
|
|
|
/// Push a token, that next token got from lyxlex.
|
2003-10-06 15:43:21 +00:00
|
|
|
|
void pushToken(std::string const &);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
|
|
|
|
///
|
2001-08-06 19:12:46 +00:00
|
|
|
|
int getLineNo() const;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2001-08-06 19:12:46 +00:00
|
|
|
|
int getInteger() const;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2001-08-06 19:12:46 +00:00
|
|
|
|
bool getBool() const;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2005-01-27 21:05:44 +00:00
|
|
|
|
double getFloat() const;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string const getString() const;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2006-08-13 22:54:59 +00:00
|
|
|
|
///
|
|
|
|
|
lyx::docstring const getDocString() const;
|
|
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
|
/** Get a long string, ended by the tag `endtag'.
|
|
|
|
|
This string can span several lines. The first line
|
|
|
|
|
serves as a template for how many spaces the lines
|
|
|
|
|
are indented. This much white space is skipped from
|
|
|
|
|
each following line. This mechanism does not work
|
|
|
|
|
perfectly if you use tabs.
|
|
|
|
|
*/
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string const getLongString(std::string const & endtag);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2001-08-06 19:12:46 +00:00
|
|
|
|
bool eatLine();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2003-12-02 10:19:51 +00:00
|
|
|
|
/// Pushes a token list on a stack and replaces it with a new one.
|
1999-12-01 00:57:31 +00:00
|
|
|
|
void pushTable(keyword_item *, int);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/** Pops a token list into void and replaces it with the one now
|
2000-08-07 20:58:24 +00:00
|
|
|
|
on top of the stack.
|
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
void popTable();
|
|
|
|
|
|
|
|
|
|
/** Prints an error message with the corresponding line number
|
2000-08-07 20:58:24 +00:00
|
|
|
|
and file name. If message contains the substring `$$Token',
|
|
|
|
|
it is replaced with the value of GetString()
|
|
|
|
|
*/
|
2003-10-06 15:43:21 +00:00
|
|
|
|
void printError(std::string const & message) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2003-12-02 10:19:51 +00:00
|
|
|
|
/// Prints the current token table on the supplied ostream.
|
2000-04-04 00:19:15 +00:00
|
|
|
|
void printTable(std::ostream &);
|
2003-12-02 10:19:51 +00:00
|
|
|
|
|
|
|
|
|
/// extract string
|
|
|
|
|
LyXLex & operator>>(std::string &);
|
|
|
|
|
/// extract double
|
|
|
|
|
LyXLex & operator>>(double &);
|
|
|
|
|
/// extract integer
|
|
|
|
|
LyXLex & operator>>(int &);
|
|
|
|
|
/// extract unsigned integer
|
|
|
|
|
LyXLex & operator>>(unsigned int &);
|
|
|
|
|
/// extract bool
|
|
|
|
|
LyXLex & operator>>(bool &);
|
|
|
|
|
|
2006-08-12 10:39:12 +00:00
|
|
|
|
/// Quotes a string so that reading it again with LyXLex::next(true)
|
|
|
|
|
/// gets the original string
|
|
|
|
|
static std::string const quoteString(std::string const &);
|
|
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
|
private:
|
2005-01-19 15:03:31 +00:00
|
|
|
|
class Pimpl;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2000-04-08 17:02:02 +00:00
|
|
|
|
Pimpl * pimpl_;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
|
/** Use to enable multiple exit points.
|
2000-08-07 20:58:24 +00:00
|
|
|
|
This is needed to ensure that the pop is done upon exit from methods
|
|
|
|
|
with more than one exit point or that can return as a response to
|
|
|
|
|
exceptions.
|
2004-02-25 12:00:53 +00:00
|
|
|
|
@author Lgb
|
2000-08-07 20:58:24 +00:00
|
|
|
|
*/
|
2005-01-19 15:03:31 +00:00
|
|
|
|
class pushpophelper {
|
|
|
|
|
public:
|
2000-09-14 17:53:12 +00:00
|
|
|
|
///
|
1999-12-01 00:57:31 +00:00
|
|
|
|
pushpophelper(LyXLex & lexrc, keyword_item * i, int s) : lex(lexrc) {
|
|
|
|
|
lex.pushTable(i, s);
|
|
|
|
|
}
|
2000-09-14 17:53:12 +00:00
|
|
|
|
///
|
1999-12-01 00:57:31 +00:00
|
|
|
|
~pushpophelper() {
|
|
|
|
|
lex.popTable();
|
|
|
|
|
}
|
2000-09-14 17:53:12 +00:00
|
|
|
|
///
|
1999-12-01 00:57:31 +00:00
|
|
|
|
LyXLex & lex;
|
|
|
|
|
};
|
2000-08-07 20:58:24 +00:00
|
|
|
|
/** Avoid wrong usage of pushpophelper.
|
|
|
|
|
To avoid wrong usage:
|
|
|
|
|
pushpophelper(...); // wrong
|
|
|
|
|
pushpophelper pph(...); // right
|
|
|
|
|
*/
|
2000-02-22 00:36:17 +00:00
|
|
|
|
#define pushpophelper(x, y, z) unnamed_pushpophelper;
|
|
|
|
|
// Tip gotten from Bobby Schmidt's column in C/C++ Users Journal
|
1999-12-01 00:57:31 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#endif
|