3 // Copyright (C) 2004 Matthias Braun <matze@braunis.de>
4 // code in this file based on lispreader from Mark Probst
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
34 Lexer::Lexer(std::istream& newstream)
35 : stream(newstream), eof(false), linenumber(0)
38 // trigger a refill of the buffer
42 } catch(EOFException& e) {
57 stream.read(buffer, BUFFER_SIZE);
58 size_t bytes_read = stream.gcount();
61 bufend = buffer + bytes_read;
63 // the following is a hack that appends an additional ' ' at the end of
64 // the file to avoid problems when parsing symbols/elements and a sudden
65 // EOF. This is faster than relying on unget and IMO also nicer.
66 if(bytes_read == 0 || stream.eof()) {
77 static const char* delims = "\"();";
97 return getNextToken(); // and again
100 return TOKEN_OPEN_PAREN;
103 return TOKEN_CLOSE_PAREN;
104 case '"': { // string
105 int startline = linenumber;
113 else if(*c == '\\') {
124 if(token_length < MAX_TOKEN_LENGTH)
125 token_string[token_length++] = *c;
127 token_string[token_length] = 0;
128 } catch(EOFException& ) {
129 std::stringstream msg;
130 msg << "Parse error in line " << startline << ": "
131 << "EOF while parsing string.";
132 throw std::runtime_error(msg.str());
137 case '#': // constant
141 while(isalnum(*c) || *c == '_') {
142 if(token_length < MAX_TOKEN_LENGTH)
143 token_string[token_length++] = *c;
146 token_string[token_length] = 0;
147 } catch(EOFException& ) {
148 std::stringstream msg;
149 msg << "Parse Error in line " << linenumber << ": "
150 << "EOF while parsing constant.";
151 throw std::runtime_error(msg.str());
154 if(strcmp(token_string, "t") == 0)
156 if(strcmp(token_string, "f") == 0)
159 // we only handle #t and #f constants at the moment...
162 std::stringstream msg;
163 msg << "Parse Error in line " << linenumber << ": "
164 << "Unknown constant '" << token_string << "'.";
165 throw std::runtime_error(msg.str());
169 if(isdigit(*c) || *c == '-') {
170 bool have_nondigits = false;
171 bool have_digits = false;
172 int have_floating_point = 0;
178 ++have_floating_point;
179 else if(isalnum(*c) || *c == '_')
180 have_nondigits = true;
182 if(token_length < MAX_TOKEN_LENGTH)
183 token_string[token_length++] = *c;
186 } while(!isspace(*c) && !strchr(delims, *c));
188 token_string[token_length] = 0;
192 if(have_nondigits || !have_digits || have_floating_point > 1)
194 else if(have_floating_point == 1)
197 return TOKEN_INTEGER;
200 if(token_length < MAX_TOKEN_LENGTH)
201 token_string[token_length++] = *c;
203 } while(!isspace(*c) && !strchr(delims, *c));
204 token_string[token_length] = 0;
211 } catch(EOFException& ) {
216 } // end of namespace lisp