]> www.ginac.de Git - ginac.git/blob - tools/viewgar.cpp
- Fixed "unterminated sed command".
[ginac.git] / tools / viewgar.cpp
1 /** @file viewgar.cpp
2  *
3  *  GiNaC archive file viewer
4  *
5  *  GiNaC Copyright (C) 1999-2000 Johannes Gutenberg University Mainz, Germany
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2 of the License, or
10  *  (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with this program; if not, write to the Free Software
19  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <fstream>
25 #include <stdexcept>
26
27 #include "ginac.h"
28
29 #ifndef NO_NAMESPACE_GINAC
30 using namespace GiNaC;
31 #endif // ndef NO_NAMESPACE_GINAC
32
33 int main(int argc, char **argv)
34 {
35         if (argc < 2) {
36                 fprintf(stderr, "Usage: %s [-d] file...\n", argv[0]);
37                 exit(1);
38         }
39         argc--; argv++;
40
41         bool dump_mode = false;
42         try {
43                 lst l;
44                 while (argc) {
45                         if (strcmp(*argv, "-d") == 0) {
46                                 dump_mode = true;
47                                 argc--; argv++;
48                         }
49                         ifstream f(*argv);
50                         archive ar;
51                         f >> ar;
52                         if (dump_mode) {
53                                 ar.printraw(cout);
54                                 cout << endl;
55                         } else {
56                                 for (unsigned int i=0; i<ar.num_expressions(); i++) {
57                                         string name;
58                                         ex e = ar.unarchive_ex(l, name, i);
59                                         cout << name << " = " << e << endl;
60                                 }
61                         }
62                         argc--; argv++;
63                 }
64         } catch (exception &e) {
65                 cerr << *argv << ": " << e.what() << endl;
66         }
67 }