]> www.ginac.de Git - ginac.git/blob - ginsh/ginsh_parser.yy
some cleanups
[ginac.git] / ginsh / ginsh_parser.yy
1 /** @file ginsh_parser.yy
2  *
3  *  Input grammar definition for ginsh.
4  *  This file must be processed with yacc/bison. */
5
6 /*
7  *  GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 2 of the License, or
12  *  (at your option) any later version.
13  *
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, write to the Free Software
21  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  */
23
24
25 /*
26  *  Definitions
27  */
28
29 %{
30 #include "config.h"
31
32 #include <sys/resource.h>
33
34 #if HAVE_UNISTD_H
35 #include <sys/types.h>
36 #include <unistd.h>
37 #endif
38
39 #include <stdexcept>
40
41 #include "ginsh.h"
42
43 #define YYERROR_VERBOSE 1
44
45 // Original readline settings
46 static int orig_completion_append_character;
47 #if (GINAC_RL_VERSION_MAJOR < 4) || (GINAC_RL_VERSION_MAJOR == 4 && GINAC_RL_VERSION_MINOR < 2)
48 static char *orig_basic_word_break_characters;
49 #else
50 static const char *orig_basic_word_break_characters;
51 #endif
52
53 // Expression stack for ", "" and """
54 static void push(const ex &e);
55 static ex exstack[3];
56
57 // Start and end time for the time() function
58 static struct rusage start_time, end_time;
59
60 // Table of functions (a multimap, because one function may appear with different
61 // numbers of parameters)
62 typedef ex (*fcnp)(const exprseq &e);
63 typedef ex (*fcnp2)(const exprseq &e, int serial);
64
65 struct fcn_desc {
66         fcn_desc() : p(NULL), num_params(0) {}
67         fcn_desc(fcnp func, int num) : p(func), num_params(num), is_ginac(false) {}
68         fcn_desc(fcnp2 func, int num, int ser) : p((fcnp)func), num_params(num), is_ginac(true), serial(ser) {}
69
70         fcnp p;         // Pointer to function
71         int num_params; // Number of parameters (0 = arbitrary)
72         bool is_ginac;  // Flag: function is GiNaC function
73         int serial;     // GiNaC function serial number (if is_ginac == true)
74 };
75
76 typedef multimap<string, fcn_desc> fcn_tab;
77 static fcn_tab fcns;
78
79 static fcn_tab::const_iterator find_function(const ex &sym, int req_params);
80
81 // Table to map help topics to help strings
82 typedef multimap<string, string> help_tab;
83 static help_tab help;
84
85 static void print_help(const string &topic);
86 static void print_help_topics(void);
87 %}
88
89 /* Tokens (T_LITERAL means a literal value returned by the parser, but not
90    of class numeric or symbol (e.g. a constant or the FAIL object)) */
91 %token T_NUMBER T_SYMBOL T_LITERAL T_DIGITS T_QUOTE T_QUOTE2 T_QUOTE3
92 %token T_EQUAL T_NOTEQ T_LESSEQ T_GREATEREQ
93
94 %token T_QUIT T_WARRANTY T_PRINT T_IPRINT T_TIME T_XYZZY T_INVENTORY T_LOOK T_SCORE
95
96 /* Operator precedence and associativity */
97 %right '='
98 %left T_EQUAL T_NOTEQ
99 %left '<' '>' T_LESSEQ T_GREATEREQ
100 %left '+' '-'
101 %left '*' '/' '%'
102 %nonassoc NEG
103 %right '^'
104 %nonassoc '!'
105
106 %start input
107
108
109 /*
110  *  Grammar rules
111  */
112
113 %%
114 input   : /* empty */
115         | input line
116         ;
117
118 line    : ';'
119         | exp ';' {
120                 try {
121                         cout << $1 << endl;
122                         push($1);
123                 } catch (exception &e) {
124                         cerr << e.what() << endl;
125                         YYERROR;
126                 }
127         }
128         | exp ':' {
129                 try {
130                         push($1);
131                 } catch (exception &e) {
132                         std::cerr << e.what() << endl;
133                         YYERROR;
134                 }
135         }
136         | T_PRINT '(' exp ')' ';' {
137                 try {
138                         $3.print(print_tree(std::cout));
139                 } catch (exception &e) {
140                         std::cerr << e.what() << endl;
141                         YYERROR;
142                 }
143         }
144         | T_IPRINT '(' exp ')' ';' {
145                 try {
146                         ex e = $3;
147                         if (!e.info(info_flags::integer))
148                                 throw (std::invalid_argument("argument to iprint() must be an integer"));
149                         long i = ex_to<numeric>(e).to_long();
150                         cout << i << endl;
151                         cout << "#o" << oct << i << endl;
152                         cout << "#x" << hex << i << dec << endl;
153                 } catch (exception &e) {
154                         cerr << e.what() << endl;
155                         YYERROR;
156                 }
157         }
158         | '?' T_SYMBOL          {print_help(ex_to<symbol>($2).get_name());}
159         | '?' T_TIME            {print_help("time");}
160         | '?' '?'               {print_help_topics();}
161         | T_QUIT                {YYACCEPT;}
162         | T_WARRANTY {
163                 cout << "This program is free software; you can redistribute it and/or modify it under\n";
164                 cout << "the terms of the GNU General Public License as published by the Free Software\n";
165                 cout << "Foundation; either version 2 of the License, or (at your option) any later\n";
166                 cout << "version.\n";
167                 cout << "This program is distributed in the hope that it will be useful, but WITHOUT\n";
168                 cout << "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n";
169                 cout << "FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more\n";
170                 cout << "details.\n";
171                 cout << "You should have received a copy of the GNU General Public License along with\n";
172                 cout << "this program. If not, write to the Free Software Foundation, 675 Mass Ave,\n";
173                 cout << "Cambridge, MA 02139, USA.\n";
174         }
175         | T_XYZZY               {cout << "Nothing happens.\n";}
176         | T_INVENTORY           {cout << "You're not carrying anything.\n";}
177         | T_LOOK                {cout << "You're in a twisty little maze of passages, all alike.\n";}
178         | T_SCORE {
179                 cout << "If you were to quit now, you would score ";
180                 cout << (syms.size() > 350 ? 350 : syms.size());
181                 cout << " out of a possible 350.\n";
182         }
183         | T_TIME {getrusage(RUSAGE_SELF, &start_time);} '(' exp ')' {
184                 getrusage(RUSAGE_SELF, &end_time);
185                 cout << (end_time.ru_utime.tv_sec - start_time.ru_utime.tv_sec) +
186                         (end_time.ru_stime.tv_sec - start_time.ru_stime.tv_sec) +
187                          double(end_time.ru_utime.tv_usec - start_time.ru_utime.tv_usec) / 1e6 +
188                          double(end_time.ru_stime.tv_usec - start_time.ru_stime.tv_usec) / 1e6 << 's' << endl;
189         }
190         | error ';'             {yyclearin; yyerrok;}
191         | error ':'             {yyclearin; yyerrok;}
192         ;
193
194 exp     : T_NUMBER              {$$ = $1;}
195         | T_SYMBOL              {$$ = $1.eval();}
196         | '\'' T_SYMBOL '\''    {$$ = $2;}
197         | T_LITERAL             {$$ = $1;}
198         | T_DIGITS              {$$ = $1;}
199         | T_QUOTE               {$$ = exstack[0];}
200         | T_QUOTE2              {$$ = exstack[1];}
201         | T_QUOTE3              {$$ = exstack[2];}
202         | T_SYMBOL '(' exprseq ')' {
203                 fcn_tab::const_iterator i = find_function($1, $3.nops());
204                 if (i->second.is_ginac) {
205                         $$ = ((fcnp2)(i->second.p))(static_cast<const exprseq &>(*($3.bp)), i->second.serial);
206                 } else {
207                         $$ = (i->second.p)(static_cast<const exprseq &>(*($3.bp)));
208                 }
209         }
210         | T_DIGITS '=' T_NUMBER {$$ = $3; Digits = ex_to<numeric>($3).to_int();}
211         | T_SYMBOL '=' exp      {$$ = $3; ex_to_nonconst_symbol($1).assign($3);}
212         | exp T_EQUAL exp       {$$ = $1 == $3;}
213         | exp T_NOTEQ exp       {$$ = $1 != $3;}
214         | exp '<' exp           {$$ = $1 < $3;}
215         | exp T_LESSEQ exp      {$$ = $1 <= $3;}
216         | exp '>' exp           {$$ = $1 > $3;}
217         | exp T_GREATEREQ exp   {$$ = $1 >= $3;}
218         | exp '+' exp           {$$ = $1 + $3;}
219         | exp '-' exp           {$$ = $1 - $3;}
220         | exp '*' exp           {$$ = $1 * $3;}
221         | exp '/' exp           {$$ = $1 / $3;}
222         | '-' exp %prec NEG     {$$ = -$2;}
223         | '+' exp %prec NEG     {$$ = $2;}
224         | exp '^' exp           {$$ = power($1, $3);}
225         | exp '!'               {$$ = factorial($1);}
226         | '(' exp ')'           {$$ = $2;}
227         | '{' list_or_empty '}' {$$ = $2;}
228         | '[' matrix ']'        {$$ = lst_to_matrix(ex_to<lst>($2));}
229         ;
230
231 exprseq : exp                   {$$ = exprseq($1);}
232         | exprseq ',' exp       {exprseq es(static_cast<exprseq &>(*($1.bp))); $$ = es.append($3);}
233         ;
234
235 list_or_empty: /* empty */      {$$ = *new lst;}
236         | list                  {$$ = $1;}
237         ;
238
239 list    : exp                   {$$ = lst($1);}
240         | list ',' exp          {lst l(static_cast<lst &>(*($1.bp))); $$ = l.append($3);}
241         ;
242
243 matrix  : '[' row ']'           {$$ = lst($2);}
244         | matrix ',' '[' row ']' {lst l(static_cast<lst &>(*($1.bp))); $$ = l.append($4);}
245         ;
246
247 row     : exp                   {$$ = lst($1);}
248         | row ',' exp           {lst l(static_cast<lst &>(*($1.bp))); $$ = l.append($3);}
249         ;
250
251
252 /*
253  *  Routines
254  */
255
256 %%
257 // Error print routine
258 int yyerror(char *s)
259 {
260         cerr << s << " at " << yytext << endl;
261         return 0;
262 }
263
264 // Push expression "e" onto the expression stack (for ", "" and """)
265 static void push(const ex &e)
266 {
267         exstack[2] = exstack[1];
268         exstack[1] = exstack[0];
269         exstack[0] = e;
270 }
271
272
273 /*
274  *  Built-in functions
275  */
276
277 static ex f_collect(const exprseq &e) {return e[0].collect(e[1]);}
278 static ex f_collect_distributed(const exprseq &e) {return e[0].collect(e[1], true);}
279 static ex f_degree(const exprseq &e) {return e[0].degree(e[1]);}
280 static ex f_denom(const exprseq &e) {return e[0].denom();}
281 static ex f_eval1(const exprseq &e) {return e[0].eval();}
282 static ex f_evalf1(const exprseq &e) {return e[0].evalf();}
283 static ex f_evalm(const exprseq &e) {return e[0].evalm();}
284 static ex f_expand(const exprseq &e) {return e[0].expand();}
285 static ex f_gcd(const exprseq &e) {return gcd(e[0], e[1]);}
286 static ex f_has(const exprseq &e) {return e[0].has(e[1]) ? ex(1) : ex(0);}
287 static ex f_lcm(const exprseq &e) {return lcm(e[0], e[1]);}
288 static ex f_lcoeff(const exprseq &e) {return e[0].lcoeff(e[1]);}
289 static ex f_ldegree(const exprseq &e) {return e[0].ldegree(e[1]);}
290 static ex f_lsolve(const exprseq &e) {return lsolve(e[0], e[1]);}
291 static ex f_nops(const exprseq &e) {return e[0].nops();}
292 static ex f_normal1(const exprseq &e) {return e[0].normal();}
293 static ex f_numer(const exprseq &e) {return e[0].numer();}
294 static ex f_numer_denom(const exprseq &e) {return e[0].numer_denom();}
295 static ex f_pow(const exprseq &e) {return pow(e[0], e[1]);}
296 static ex f_sqrt(const exprseq &e) {return sqrt(e[0]);}
297 static ex f_sqrfree1(const exprseq &e) {return sqrfree(e[0]);}
298 static ex f_subs2(const exprseq &e) {return e[0].subs(e[1]);}
299 static ex f_tcoeff(const exprseq &e) {return e[0].tcoeff(e[1]);}
300
301 #define CHECK_ARG(num, type, fcn) if (!is_a<type>(e[num])) throw(std::invalid_argument("argument " #num " to " #fcn "() must be a " #type))
302
303 static ex f_charpoly(const exprseq &e)
304 {
305         CHECK_ARG(0, matrix, charpoly);
306         CHECK_ARG(1, symbol, charpoly);
307         return ex_to<matrix>(e[0]).charpoly(ex_to<symbol>(e[1]));
308 }
309
310 static ex f_coeff(const exprseq &e)
311 {
312         CHECK_ARG(2, numeric, coeff);
313         return e[0].coeff(e[1], ex_to<numeric>(e[2]).to_int());
314 }
315
316 static ex f_content(const exprseq &e)
317 {
318         CHECK_ARG(1, symbol, content);
319         return e[0].content(ex_to<symbol>(e[1]));
320 }
321
322 static ex f_decomp_rational(const exprseq &e)
323 {
324         CHECK_ARG(1, symbol, decomp_rational);
325         return decomp_rational(e[0], ex_to<symbol>(e[1]));
326 }
327
328 static ex f_determinant(const exprseq &e)
329 {
330         CHECK_ARG(0, matrix, determinant);
331         return ex_to<matrix>(e[0]).determinant();
332 }
333
334 static ex f_diag(const exprseq &e)
335 {
336         unsigned dim = e.nops();
337         matrix &m = *new matrix(dim, dim);
338         for (unsigned i=0; i<dim; i++)
339                 m.set(i, i, e.op(i));
340         return m;
341 }
342
343 static ex f_diff2(const exprseq &e)
344 {
345         CHECK_ARG(1, symbol, diff);
346         return e[0].diff(ex_to<symbol>(e[1]));
347 }
348
349 static ex f_diff3(const exprseq &e)
350 {
351         CHECK_ARG(1, symbol, diff);
352         CHECK_ARG(2, numeric, diff);
353         return e[0].diff(ex_to<symbol>(e[1]), ex_to<numeric>(e[2]).to_int());
354 }
355
356 static ex f_divide(const exprseq &e)
357 {
358         ex q;
359         if (divide(e[0], e[1], q))
360                 return q;
361         else
362                 return fail();
363 }
364
365 static ex f_eval2(const exprseq &e)
366 {
367         CHECK_ARG(1, numeric, eval);
368         return e[0].eval(ex_to<numeric>(e[1]).to_int());
369 }
370
371 static ex f_evalf2(const exprseq &e)
372 {
373         CHECK_ARG(1, numeric, evalf);
374         return e[0].evalf(ex_to<numeric>(e[1]).to_int());
375 }
376
377 static ex f_inverse(const exprseq &e)
378 {
379         CHECK_ARG(0, matrix, inverse);
380         return ex_to<matrix>(e[0]).inverse();
381 }
382
383 static ex f_is(const exprseq &e)
384 {
385         CHECK_ARG(0, relational, is);
386         return (bool)ex_to<relational>(e[0]) ? ex(1) : ex(0);
387 }
388
389 static ex f_match(const exprseq &e)
390 {
391         lst repl_lst;
392         if (e[0].match(e[1], repl_lst))
393                 return repl_lst;
394         else
395                 return fail();
396 }
397
398 static ex f_normal2(const exprseq &e)
399 {
400         CHECK_ARG(1, numeric, normal);
401         return e[0].normal(ex_to<numeric>(e[1]).to_int());
402 }
403
404 static ex f_op(const exprseq &e)
405 {
406         CHECK_ARG(1, numeric, op);
407         int n = ex_to<numeric>(e[1]).to_int();
408         if (n < 0 || n >= (int)e[0].nops())
409                 throw(std::out_of_range("second argument to op() is out of range"));
410         return e[0].op(n);
411 }
412
413 static ex f_prem(const exprseq &e)
414 {
415         CHECK_ARG(2, symbol, prem);
416         return prem(e[0], e[1], ex_to<symbol>(e[2]));
417 }
418
419 static ex f_primpart(const exprseq &e)
420 {
421         CHECK_ARG(1, symbol, primpart);
422         return e[0].primpart(ex_to<symbol>(e[1]));
423 }
424
425 static ex f_quo(const exprseq &e)
426 {
427         CHECK_ARG(2, symbol, quo);
428         return quo(e[0], e[1], ex_to<symbol>(e[2]));
429 }
430
431 static ex f_rem(const exprseq &e)
432 {
433         CHECK_ARG(2, symbol, rem);
434         return rem(e[0], e[1], ex_to<symbol>(e[2]));
435 }
436
437 static ex f_series(const exprseq &e)
438 {
439         CHECK_ARG(2, numeric, series);
440         return e[0].series(e[1], ex_to<numeric>(e[2]).to_int());
441 }
442
443 static ex f_sqrfree2(const exprseq &e)
444 {
445         CHECK_ARG(1, lst, sqrfree);
446         return sqrfree(e[0], ex_to<lst>(e[1]));
447 }
448
449 static ex f_subs3(const exprseq &e)
450 {
451         CHECK_ARG(1, lst, subs);
452         CHECK_ARG(2, lst, subs);
453         return e[0].subs(ex_to<lst>(e[1]), ex_to<lst>(e[2]));
454 }
455
456 static ex f_trace(const exprseq &e)
457 {
458         CHECK_ARG(0, matrix, trace);
459         return ex_to<matrix>(e[0]).trace();
460 }
461
462 static ex f_transpose(const exprseq &e)
463 {
464         CHECK_ARG(0, matrix, transpose);
465         return ex_to<matrix>(e[0]).transpose();
466 }
467
468 static ex f_unassign(const exprseq &e)
469 {
470         CHECK_ARG(0, symbol, unassign);
471         ex_to_nonconst_symbol(e[0]).unassign();
472         return e[0];
473 }
474
475 static ex f_unit(const exprseq &e)
476 {
477         CHECK_ARG(1, symbol, unit);
478         return e[0].unit(ex_to<symbol>(e[1]));
479 }
480
481 static ex f_dummy(const exprseq &e)
482 {
483         throw(std::logic_error("dummy function called (shouldn't happen)"));
484 }
485
486 // Table for initializing the "fcns" map
487 struct fcn_init {
488         const char *name;
489         const fcn_desc desc;
490 };
491
492 static const fcn_init builtin_fcns[] = {
493         {"charpoly", fcn_desc(f_charpoly, 2)},
494         {"coeff", fcn_desc(f_coeff, 3)},
495         {"collect", fcn_desc(f_collect, 2)},
496         {"collect_distributed", fcn_desc(f_collect_distributed, 2)},
497         {"content", fcn_desc(f_content, 2)},
498         {"decomp_rational", fcn_desc(f_decomp_rational, 2)},
499         {"degree", fcn_desc(f_degree, 2)},
500         {"denom", fcn_desc(f_denom, 1)},
501         {"determinant", fcn_desc(f_determinant, 1)},
502         {"diag", fcn_desc(f_diag, 0)},
503         {"diff", fcn_desc(f_diff2, 2)},
504         {"diff", fcn_desc(f_diff3, 3)},
505         {"divide", fcn_desc(f_divide, 2)},
506         {"eval", fcn_desc(f_eval1, 1)},
507         {"eval", fcn_desc(f_eval2, 2)},
508         {"evalf", fcn_desc(f_evalf1, 1)},
509         {"evalf", fcn_desc(f_evalf2, 2)},
510         {"evalm", fcn_desc(f_evalm, 1)},
511         {"expand", fcn_desc(f_expand, 1)},
512         {"gcd", fcn_desc(f_gcd, 2)},
513         {"has", fcn_desc(f_has, 2)},
514         {"inverse", fcn_desc(f_inverse, 1)},
515         {"is", fcn_desc(f_is, 1)},
516         {"lcm", fcn_desc(f_lcm, 2)},
517         {"lcoeff", fcn_desc(f_lcoeff, 2)},
518         {"ldegree", fcn_desc(f_ldegree, 2)},
519         {"lsolve", fcn_desc(f_lsolve, 2)},
520         {"match", fcn_desc(f_match, 2)},
521         {"nops", fcn_desc(f_nops, 1)},
522         {"normal", fcn_desc(f_normal1, 1)},
523         {"normal", fcn_desc(f_normal2, 2)},
524         {"numer", fcn_desc(f_numer, 1)},
525         {"numer_denom", fcn_desc(f_numer_denom, 1)},
526         {"op", fcn_desc(f_op, 2)},
527         {"pow", fcn_desc(f_pow, 2)},
528         {"prem", fcn_desc(f_prem, 3)},
529         {"primpart", fcn_desc(f_primpart, 2)},
530         {"quo", fcn_desc(f_quo, 3)},
531         {"rem", fcn_desc(f_rem, 3)},
532         {"series", fcn_desc(f_series, 3)},
533         {"sqrfree", fcn_desc(f_sqrfree1, 1)},
534         {"sqrfree", fcn_desc(f_sqrfree2, 2)},
535         {"sqrt", fcn_desc(f_sqrt, 1)},
536         {"subs", fcn_desc(f_subs2, 2)},
537         {"subs", fcn_desc(f_subs3, 3)},
538         {"tcoeff", fcn_desc(f_tcoeff, 2)},
539         {"time", fcn_desc(f_dummy, 0)},
540         {"trace", fcn_desc(f_trace, 1)},
541         {"transpose", fcn_desc(f_transpose, 1)},
542         {"unassign", fcn_desc(f_unassign, 1)},
543         {"unit", fcn_desc(f_unit, 2)},
544         {NULL, fcn_desc(f_dummy, 0)}    // End marker
545 };
546
547
548 /*
549  *  Add functions to ginsh
550  */
551
552 // Functions from fcn_init array
553 static void insert_fcns(const fcn_init *p)
554 {
555         while (p->name) {
556                 fcns.insert(make_pair(string(p->name), p->desc));
557                 p++;
558         }
559 }
560
561 static ex f_ginac_function(const exprseq &es, int serial)
562 {
563         return function(serial, es).eval(1);
564 }
565
566 // All registered GiNaC functions
567 void GiNaC::ginsh_get_ginac_functions(void)
568 {
569         vector<function_options>::const_iterator i = function::registered_functions().begin(), end = function::registered_functions().end();
570         unsigned serial = 0;
571         while (i != end) {
572                 fcns.insert(make_pair(i->get_name(), fcn_desc(f_ginac_function, i->get_nparams(), serial)));
573                 ++i;
574                 serial++;
575         }
576 }
577
578
579 /*
580  *  Find a function given a name and number of parameters. Throw exceptions on error.
581  */
582
583 static fcn_tab::const_iterator find_function(const ex &sym, int req_params)
584 {
585         const string &name = ex_to<symbol>(sym).get_name();
586         typedef fcn_tab::const_iterator I;
587         pair<I, I> b = fcns.equal_range(name);
588         if (b.first == b.second)
589                 throw(std::logic_error("unknown function '" + name + "'"));
590         else {
591                 for (I i=b.first; i!=b.second; i++)
592                         if ((i->second.num_params == 0) || (i->second.num_params == req_params))
593                                 return i;
594         }
595         throw(std::logic_error("invalid number of arguments to " + name + "()"));
596 }
597
598
599 /*
600  *  Insert help strings
601  */
602
603 // Normal help string
604 static void insert_help(const char *topic, const char *str)
605 {
606         help.insert(make_pair(string(topic), string(str)));
607 }
608
609 // Help string for functions, automatically generates synopsis
610 static void insert_fcn_help(const char *name, const char *str)
611 {
612         typedef fcn_tab::const_iterator I;
613         pair<I, I> b = fcns.equal_range(name);
614         if (b.first != b.second) {
615                 string help_str = string(name) + "(";
616                 for (int i=0; i<b.first->second.num_params; i++) {
617                         if (i)
618                                 help_str += ", ";
619                         help_str += "expression";
620                 }
621                 help_str += ") - ";
622                 help_str += str;
623                 help.insert(make_pair(string(name), help_str));
624         }
625 }
626
627
628 /*
629  *  Print help to cout
630  */
631
632 // Help for a given topic
633 static void print_help(const string &topic)
634 {
635         typedef help_tab::const_iterator I;
636         pair<I, I> b = help.equal_range(topic);
637         if (b.first == b.second)
638                 cout << "no help for '" << topic << "'\n";
639         else {
640                 for (I i=b.first; i!=b.second; i++)
641                         cout << i->second << endl;
642         }
643 }
644
645 // List of help topics
646 static void print_help_topics(void)
647 {
648         cout << "Available help topics:\n";
649         help_tab::const_iterator i;
650         string last_name = string("*");
651         int num = 0;
652         for (i=help.begin(); i!=help.end(); i++) {
653                 // Don't print duplicates
654                 if (i->first != last_name) {
655                         if (num)
656                                 cout << ", ";
657                         num++;
658                         cout << i->first;
659                         last_name = i->first;
660                 }
661         }
662         cout << "\nTo get help for a certain topic, type ?topic\n";
663 }
664
665
666 /*
667  *  Function name completion functions for readline
668  */
669
670 static char *fcn_generator(char *text, int state)
671 {
672         static int len;                         // Length of word to complete
673         static fcn_tab::const_iterator index;   // Iterator to function being currently considered
674
675         // If this is a new word to complete, initialize now
676         if (state == 0) {
677                 index = fcns.begin();
678                 len = strlen(text);
679         }
680
681         // Return the next function which partially matches
682         while (index != fcns.end()) {
683                 const char *fcn_name = index->first.c_str();
684                 ++index;
685                 if (strncmp(fcn_name, text, len) == 0)
686                         return strdup(fcn_name);
687         }
688         return NULL;
689 }
690
691 static char **fcn_completion(char *text, int start, int end)
692 {
693         if (rl_line_buffer[0] == '!') {
694                 // For shell commands, revert back to filename completion
695                 rl_completion_append_character = orig_completion_append_character;
696                 rl_basic_word_break_characters = orig_basic_word_break_characters;
697                 rl_completer_word_break_characters = rl_basic_word_break_characters;
698 #if (GINAC_RL_VERSION_MAJOR < 4) || (GINAC_RL_VERSION_MAJOR == 4 && GINAC_RL_VERSION_MINOR < 2)
699                 return completion_matches(text, (CPFunction *)filename_completion_function);
700 #else
701                 return rl_completion_matches(text, (CPFunction *)rl_filename_completion_function);
702 #endif
703         } else {
704                 // Otherwise, complete function names
705                 rl_completion_append_character = '(';
706                 rl_basic_word_break_characters = " \t\n\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~";
707                 rl_completer_word_break_characters = rl_basic_word_break_characters;
708 #if (GINAC_RL_VERSION_MAJOR < 4) || (GINAC_RL_VERSION_MAJOR == 4 && GINAC_RL_VERSION_MINOR < 2)
709                 return completion_matches(text, (CPFunction *)fcn_generator);
710 #else
711                 return rl_completion_matches(text, (CPFunction *)fcn_generator);
712 #endif
713         }
714 }
715
716 void greeting(void)
717 {
718     cout << "ginsh - GiNaC Interactive Shell (" << PACKAGE << " V" << VERSION << ")" << endl;
719     cout << "  __,  _______  Copyright (C) 1999-2001 Johannes Gutenberg University Mainz,\n"
720          << " (__) *       | Germany.  This is free software with ABSOLUTELY NO WARRANTY.\n"
721          << "  ._) i N a C | You are welcome to redistribute it under certain conditions.\n"
722          << "<-------------' For details type `warranty;'.\n" << endl;
723     cout << "Type ?? for a list of help topics." << endl;
724 }
725
726 /*
727  *  Main program
728  */
729
730 int main(int argc, char **argv)
731 {
732         // Print banner in interactive mode
733         if (isatty(0)) 
734                 greeting();
735
736         // Init function table
737         insert_fcns(builtin_fcns);
738         ginsh_get_ginac_functions();
739
740         // Init help for operators (automatically generated from man page)
741         insert_help("operators", "Operators in falling order of precedence:");
742 #include "ginsh_op_help.c"
743
744         // Init help for built-in functions (automatically generated from man page)
745 #include "ginsh_fcn_help.c"
746
747         // Help for GiNaC functions is added manually
748         insert_fcn_help("acos", "inverse cosine function");
749         insert_fcn_help("acosh", "inverse hyperbolic cosine function");
750         insert_fcn_help("asin", "inverse sine function");
751         insert_fcn_help("asinh", "inverse hyperbolic sine function");
752         insert_fcn_help("atan", "inverse tangent function");
753         insert_fcn_help("atan2", "inverse tangent function with two arguments");
754         insert_fcn_help("atanh", "inverse hyperbolic tangent function");
755         insert_fcn_help("beta", "Beta function");
756         insert_fcn_help("binomial", "binomial function");
757         insert_fcn_help("cos", "cosine function");
758         insert_fcn_help("cosh", "hyperbolic cosine function");
759         insert_fcn_help("exp", "exponential function");
760         insert_fcn_help("factorial", "factorial function");
761         insert_fcn_help("lgamma", "natural logarithm of Gamma function");
762         insert_fcn_help("tgamma", "Gamma function");
763         insert_fcn_help("log", "natural logarithm");
764         insert_fcn_help("psi", "psi function\npsi(x) is the digamma function, psi(n,x) the nth polygamma function");
765         insert_fcn_help("sin", "sine function");
766         insert_fcn_help("sinh", "hyperbolic sine function");
767         insert_fcn_help("tan", "tangent function");
768         insert_fcn_help("tanh", "hyperbolic tangent function");
769         insert_fcn_help("zeta", "zeta function\nzeta(x) is Riemann's zeta function, zeta(n,x) its nth derivative");
770         insert_fcn_help("Li2", "dilogarithm");
771         insert_fcn_help("Li3", "trilogarithm");
772         insert_fcn_help("Order", "order term function (for truncated power series)");
773
774         // Init readline completer
775         rl_readline_name = argv[0];
776         rl_attempted_completion_function = (CPPFunction *)fcn_completion;
777         orig_completion_append_character = rl_completion_append_character;
778         orig_basic_word_break_characters = rl_basic_word_break_characters;
779
780         // Init input file list, open first file
781         num_files = argc - 1;
782         file_list = argv + 1;
783         if (num_files) {
784                 yyin = fopen(*file_list, "r");
785                 if (yyin == NULL) {
786                         cerr << "Can't open " << *file_list << endl;
787                         exit(1);
788                 }
789                 num_files--;
790                 file_list++;
791         }
792
793         // Parse input, catch all remaining exceptions
794         int result;
795 again:  try {
796                 result = yyparse();
797         } catch (exception &e) {
798                 cerr << e.what() << endl;
799                 goto again;
800         }
801         return result;
802 }