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