]> www.ginac.de Git - ginac.git/blob - ginac/parser/parser.cpp
de6b269ac1ac934209d16989e2d836b431e0db8d
[ginac.git] / ginac / parser / parser.cpp
1 /** @file parser.cpp
2  *
3  *  Implementation of GiNaC's parser. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2011 Johannes Gutenberg University Mainz, Germany
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  */
22
23 #include "parser.h"
24 #include "lexer.h"
25 #include "debug.h"
26 #include "mul.h"
27 #include "constant.h"
28 #include "function.h"
29 #ifdef HAVE_CONFIG_H
30 #include "config.h"
31 #endif
32
33 #ifdef HAVE_STDINT_H
34 #include <stdint.h> // for uintptr_t
35 #endif
36 #include <sstream>
37 #include <stdexcept>
38
39 namespace GiNaC {
40
41 // <KLUDGE>
42 // Find out if ptr is a pointer to a function or a specially crafted integer.
43 // It's possible to distinguish between these because functions are aligned.
44 // Returns true if ptr is a pointer and false otherwise.
45 static bool decode_serial(unsigned& serial, const reader_func ptr)
46 {
47         uintptr_t u = (uintptr_t)(void *)ptr;
48         if (u & 1) {
49                 u >>= 1;
50                 serial = (unsigned)u;
51                 return false;
52         }
53         return true;
54 }
55
56 // Figures out if ptr is a pointer to function or a serial of GiNaC function.
57 // In the former case calls that function, in the latter case constructs
58 // GiNaC function with corresponding serial and arguments.
59 static ex dispatch_reader_fcn(const reader_func ptr, const exvector& args)
60 {
61         unsigned serial = 0; // dear gcc, could you please shut up?
62         bool is_ptr = decode_serial(serial, ptr);
63         if (is_ptr)
64                 return ptr(args);
65         else
66                 return function(serial, args);
67 }
68 // </KLUDGE>
69
70
71 /// identifier_expr:  identifier |  identifier '(' expression* ')'
72 ex parser::parse_identifier_expr()
73 {
74         std::string name = scanner->str;
75         get_next_tok();  // eat identifier.
76
77         if (token != '(') // symbol
78                 return find_or_insert_symbol(name, syms, strict);
79
80         // function/ctor call.
81         get_next_tok();  // eat (
82         exvector args;
83         if (token != ')') {
84                 while (true) {
85                         ex e = parse_expression();
86                         args.push_back(e);
87
88                         if (token == ')')
89                                 break;
90
91                         if (token != ',')
92                                 Parse_error("expected ')' or ',' in argument list");
93
94                         get_next_tok();
95                 }
96         }
97         // Eat the ')'.
98         get_next_tok();
99         prototype the_prototype = make_pair(name, args.size());
100         prototype_table::const_iterator reader = funcs.find(the_prototype);
101         if (reader == funcs.end()) {
102                 Parse_error_("no function \"" << name << "\" with " <<
103                              args.size() << " arguments");
104         }
105         // reader->second might be a pointer to a C++ function or a specially
106         // crafted serial of a GiNaC::function.
107         ex ret = dispatch_reader_fcn(reader->second, args);
108         return ret;
109 }
110
111 /// paren_expr:  '(' expression ')'
112 ex parser::parse_paren_expr()
113 {
114         get_next_tok();  // eat (.
115         ex e = parse_expression();
116
117         if (token != ')')
118                 Parse_error("expected ')'");
119         get_next_tok();  // eat ).
120         return e;
121 }
122
123 /// lst_expr:  '{' expression { ',' expression } '}'
124 ex parser::parse_lst_expr()
125 {
126         get_next_tok();  // eat {.
127
128         lst list;
129         if (token != '}') {
130                 while (true) {
131                         ex e = parse_expression(); // expression();
132                         list.append(e);
133
134                         if (token == '}') {
135                                 break;
136                         }
137
138                         if (token != ',') {
139                                 Parse_error("expected '}'");
140                         }
141
142                         get_next_tok();  // eat ','.
143                 }
144         }
145         // Eat the '}'.
146         get_next_tok();
147
148         return list;
149 }
150
151 extern const ex _ex0;
152
153 /// unary_expr: [+-] expression
154 ex parser::parse_unary_expr()
155 {
156         // Unlike most other parse_* method this one does NOT consume
157         // current token so parse_binop_rhs() knows what kind of operator
158         // is being parsed.
159         
160         // There are different kinds of expressions which need to be handled:
161         // -a+b 
162         // -(a) 
163         // +a
164         // +(a)
165         // Delegete the work to parse_binop_rhs(), otherwise we end up
166         // duplicating it here. 
167         ex lhs = _ex0; // silly trick
168         ex e = parse_binop_rhs(0, lhs);
169         return e;
170 }
171
172 /// primary: identifier_expr | number_expr | paren_expr | unary_expr 
173 ex parser::parse_primary() 
174 {
175         switch (token) {
176                 case lexer::token_type::identifier:
177                          return parse_identifier_expr();
178                 case lexer::token_type::number:
179                          return parse_number_expr();
180                 case '(': 
181                          return parse_paren_expr();
182                 case '{': 
183                          return parse_lst_expr();
184                 case '-':
185                 case '+':
186                          return parse_unary_expr();
187                 case lexer::token_type::literal:
188                          return parse_literal_expr();
189                 case lexer::token_type::eof:
190                 default:
191                          Parse_error("unexpected token");
192         }
193 }
194
195 /// expression ::= primary binoprhs
196 ex parser::parse_expression() 
197 {
198         ex lhs = parse_primary();
199         ex res = parse_binop_rhs(0, lhs);
200         return res;
201 }
202
203 /// number_expr: number
204 ex parser::parse_number_expr()
205 {
206         ex n = numeric(scanner->str.c_str());
207         get_next_tok(); // consume the number
208         return n;
209 }
210
211 /// literal_expr: 'I' | 'Pi' | 'Euler' | 'Catalan'
212 ex parser::parse_literal_expr()
213 {
214         get_next_tok(); // consume the literal
215         if (scanner->str == "I")
216                 return I;
217         else if (scanner->str == "Pi")
218                 return Pi;
219         else if (scanner->str == "Euler")
220                 return Euler;
221         else if (scanner->str == "Catalan")
222                 return Catalan;
223         bug("unknown literal: \"" << scanner->str << "\"");
224 }
225
226 ex parser::operator()(std::istream& input)
227 {
228         scanner->switch_input(&input);
229         get_next_tok();
230         ex ret = parse_expression();
231         // parse_expression() stops if it encounters an unknown token.
232         // This is not a bug: since the parser is recursive checking
233         // whether the next token is valid is responsibility of the caller.
234         // Hence make sure nothing is left in the stream:
235         if (token != lexer::token_type::eof)
236                 Parse_error("expected EOF");
237
238         return ret;
239 }
240
241 ex parser::operator()(const std::string& input)
242 {
243         std::istringstream is(input);
244         ex ret = operator()(is);
245         return ret;
246 }
247
248 int parser::get_next_tok()
249 {
250         token = scanner->gettok();
251         return token;
252 }
253
254 parser::parser(const symtab& syms_, const bool strict_,
255                const prototype_table& funcs_) : strict(strict_),
256         funcs(funcs_), syms(syms_)
257 {
258         scanner = new lexer();
259 }
260
261 parser::~parser()
262 {
263         delete scanner;
264 }
265
266 } // namespace GiNaC