4 * This file is part of LyX, the document processor.
5 * Licence details can be found in the file COPYING.
7 * \author Alejandro Aguilar Sierra
8 * \author Lars Gullik Bjønnes
10 * Full author contact details are available in file CREDITS.
13 // Generalized simple lexical analizer.
14 // It can be used for simple syntax parsers, like lyxrc,
15 // texclass and others to come.
20 #include "support/docstring.h"
22 #include <boost/utility.hpp>
29 namespace support
{ class FileName
; }
39 /** Generalized simple lexical analizer.
40 Use the method isOK() to check if there is still data available
41 for lexing. Use one of the the operators void* or ! to test if
42 the last reading operation was successful.
46 int readParam(LyxLex &lex) {
47 int param = 1; // default value
48 if (lex.isOK()) { // the lexer has data to read
49 int p; // temporary variable
51 if (lex) param = p; // only use the input if reading was successful
56 @see LyXRC.cpp for an example of usage.
58 class Lexer
: boost::noncopyable
{
61 Lexer(keyword_item
*, int);
77 /// stream is open and end of stream is not reached
78 /// FIXME: test also if pushTok is not empty
79 /// FIXME: the method should be renamed to something like
80 /// dataAvailable(), in order to reflect the real behavior
82 /// FIXME: The next two operators should be replaced by one method
83 /// called e.g. lastReadOk(), in order to reflect the real
85 /// last read operation was successful.
86 operator void const *() const;
87 /// last read operation was not successful
88 bool operator!() const;
89 /// return true if able to open file, else false
90 bool setFile(support::FileName
const & filename
);
92 void setStream(std::istream
& is
);
94 std::istream
& getStream();
95 /// Danger! Don't use it unless you know what you are doing.
96 void setLineNo(int l
);
97 /// Change the character that begins a comment. Default is '#'
98 void setCommentChar(char c
);
100 /// returns a lex code
103 /** Just read the next word. If esc is true remember that
104 some chars might be escaped: "\ atleast
106 bool next(bool esc
= false);
108 /** Read next token. This one is almost the same as next,
109 but it will consider " as a regular character and always
110 split a word if it contains a backslash.
113 /// Push a token, that next token got from lyxlex.
114 void pushToken(std::string
const &);
117 int getLineNo() const;
120 int getInteger() const;
122 bool getBool() const;
124 double getFloat() const;
126 std::string
const getString() const;
129 docstring
const getDocString() const;
131 /** Get a long string, ended by the tag `endtag'.
132 This string can span several lines. The first line
133 serves as a template for how many spaces the lines
134 are indented. This much white space is skipped from
135 each following line. This mechanism does not work
136 perfectly if you use tabs.
138 std::string
const getLongString(std::string
const & endtag
);
143 /// Pushes a token list on a stack and replaces it with a new one.
144 void pushTable(keyword_item
*, int);
146 /** Pops a token list into void and replaces it with the one now
151 /** Prints an error message with the corresponding line number
152 and file name. If message contains the substring `$$Token',
153 it is replaced with the value of GetString()
155 void printError(std::string
const & message
) const;
157 /// Prints the current token table on the supplied ostream.
158 void printTable(std::ostream
&);
161 Lexer
& operator>>(std::string
&);
162 /// extract docstring
163 Lexer
& operator>>(docstring
&);
165 Lexer
& operator>>(double &);
167 Lexer
& operator>>(int &);
168 /// extract unsigned integer
169 Lexer
& operator>>(unsigned int &);
171 Lexer
& operator>>(bool &);
173 /// Quotes a string so that reading it again with Lexer::next(true)
174 /// gets the original string
175 static std::string
const quoteString(std::string
const &);
182 mutable bool lastReadOk_
;
186 /** Use to enable multiple exit points.
187 This is needed to ensure that the pop is done upon exit from methods
188 with more than one exit point or that can return as a response to
192 class PushPopHelper
{
195 PushPopHelper(Lexer
& lexrc
, keyword_item
* i
, int s
) : lex(lexrc
) {
205 /** Avoid wrong usage of PushPopHelper.
206 To avoid wrong usage:
207 PushPopHelper(...); // wrong
208 PushPopHelper pph(...); // right
210 #define PushPopHelper(x, y, z) unnamed_PushPopHelper;
211 // Tip gotten from Bobby Schmidt's column in C/C++ Users Journal