]> www.ginac.de Git - ginac.git/blob - ginac/archive.cpp
* Make print_memfun_handler<T, C> const-correct (fixes build with gcc-4.0.2).
[ginac.git] / ginac / archive.cpp
1 /** @file archive.cpp
2  *
3  *  Archiving of GiNaC expressions. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2005 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 <iostream>
24 #include <stdexcept>
25
26 #include "archive.h"
27 #include "registrar.h"
28 #include "ex.h"
29 #include "lst.h"
30 #include "config.h"
31 #include "tostring.h"
32
33 namespace GiNaC {
34
35
36 void archive::archive_ex(const ex &e, const char *name)
37 {
38         // Create root node (which recursively archives the whole expression tree)
39         // and add it to the archive
40         archive_node_id id = add_node(archive_node(*this, e));
41
42         // Add root node ID to list of archived expressions
43         archived_ex ae = archived_ex(atomize(name), id);
44         exprs.push_back(ae);
45 }
46
47
48 /** Add archive_node to archive if the corresponding expression is
49  *  not already archived.
50  *  @return ID of archived node */
51 archive_node_id archive::add_node(const archive_node &n)
52 {
53         // Look if expression is known to be in some node already.
54         if (n.has_ex()) {
55                 mapit i = exprtable.find(n.get_ex());
56                 if (i != exprtable.end())
57                         return i->second;
58                 nodes.push_back(n);
59                 exprtable[n.get_ex()] = nodes.size() - 1;
60                 return nodes.size() - 1;
61         }
62
63         // Not found, add archive_node to nodes vector
64         nodes.push_back(n);
65         return nodes.size()-1;
66 }
67
68
69 /** Retrieve archive_node by ID. */
70 archive_node &archive::get_node(archive_node_id id)
71 {
72         if (id >= nodes.size())
73                 throw (std::range_error("archive::get_node(): archive node ID out of range"));
74
75         return nodes[id];
76 }
77
78
79 ex archive::unarchive_ex(const lst &sym_lst, const char *name) const
80 {
81         // Find root node
82         std::string name_string = name;
83         archive_atom id = atomize(name_string);
84         std::vector<archived_ex>::const_iterator i = exprs.begin(), iend = exprs.end();
85         while (i != iend) {
86                 if (i->name == id)
87                         goto found;
88                 i++;
89         }
90         throw (std::runtime_error("expression with name '" + name_string + "' not found in archive"));
91
92 found:
93         // Recursively unarchive all nodes, starting at the root node
94         lst sym_lst_copy = sym_lst;
95         return nodes[i->root].unarchive(sym_lst_copy);
96 }
97
98 ex archive::unarchive_ex(const lst &sym_lst, unsigned index) const
99 {
100         if (index >= exprs.size())
101                 throw (std::range_error("index of archived expression out of range"));
102
103         // Recursively unarchive all nodes, starting at the root node
104         lst sym_lst_copy = sym_lst;
105         return nodes[exprs[index].root].unarchive(sym_lst_copy);
106 }
107
108 ex archive::unarchive_ex(const lst &sym_lst, std::string &name, unsigned index) const
109 {
110         if (index >= exprs.size())
111                 throw (std::range_error("index of archived expression out of range"));
112
113         // Return expression name
114         name = unatomize(exprs[index].name);
115
116         // Recursively unarchive all nodes, starting at the root node
117         lst sym_lst_copy = sym_lst;
118         return nodes[exprs[index].root].unarchive(sym_lst_copy);
119 }
120
121 unsigned archive::num_expressions() const
122 {
123         return exprs.size();
124 }
125
126 const archive_node &archive::get_top_node(unsigned index) const
127 {
128         if (index >= exprs.size())
129                 throw (std::range_error("index of archived expression out of range"));
130
131         return nodes[exprs[index].root];
132 }
133
134
135 /*
136  *  Archive file format
137  *
138  *   - 4 bytes signature 'GARC'
139  *   - unsigned version number
140  *   - unsigned number of atoms
141  *      - atom strings (each zero-terminated)
142  *   - unsigned number of expressions
143  *      - unsigned name atom
144  *      - unsigned root node ID
145  *   - unsigned number of nodes
146  *      - unsigned number of properties
147  *        - unsigned containing type (PTYPE_*) in its lower 3 bits and
148  *          name atom in the upper bits
149  *        - unsigned property value
150  *
151  *  Unsigned quantities are stored in a compressed format:
152  *   - numbers in the range 0x00..0x7f are stored verbatim (1 byte)
153  *   - numbers larger than 0x7f are stored in 7-bit packets (1 byte per
154  *     packet), starting with the LSBs; all bytes except the last one have
155  *     their upper bit set
156  *
157  *  Examples:
158  *   0x00           =   0x00
159  *    ..                 ..
160  *   0x7f           =   0x7f
161  *   0x80 0x01      =   0x80
162  *    ..   ..            ..
163  *   0xff 0x01      =   0xff
164  *   0x80 0x02      =  0x100
165  *    ..   ..            ..
166  *   0xff 0x02      =  0x17f
167  *   0x80 0x03      =  0x180
168  *    ..   ..            ..
169  *   0xff 0x7f      = 0x3fff
170  *   0x80 0x80 0x01 = 0x4000
171  *    ..   ..   ..       ..
172  */
173
174 /** Write unsigned integer quantity to stream. */
175 static void write_unsigned(std::ostream &os, unsigned val)
176 {
177         while (val >= 0x80) {
178                 os.put((val & 0x7f) | 0x80);
179                 val >>= 7;
180         }
181         os.put(val);
182 }
183
184 /** Read unsigned integer quantity from stream. */
185 static unsigned read_unsigned(std::istream &is)
186 {
187         unsigned char b;
188         unsigned ret = 0;
189         unsigned shift = 0;
190         do {
191                 char b2;
192                 is.get(b2);
193                 b = b2;
194                 ret |= (b & 0x7f) << shift;
195                 shift += 7;
196         } while (b & 0x80);
197         return ret;
198 }
199
200 /** Write archive_node to binary data stream. */
201 std::ostream &operator<<(std::ostream &os, const archive_node &n)
202 {
203         // Write properties
204         unsigned num_props = n.props.size();
205         write_unsigned(os, num_props);
206         for (unsigned i=0; i<num_props; i++) {
207                 write_unsigned(os, n.props[i].type | (n.props[i].name << 3));
208                 write_unsigned(os, n.props[i].value);
209         }
210         return os;
211 }
212
213 /** Write archive to binary data stream. */
214 std::ostream &operator<<(std::ostream &os, const archive &ar)
215 {
216         // Write header
217         os.put('G');    // Signature
218         os.put('A');
219         os.put('R');
220         os.put('C');
221         write_unsigned(os, ARCHIVE_VERSION);
222
223         // Write atoms
224         unsigned num_atoms = ar.atoms.size();
225         write_unsigned(os, num_atoms);
226         for (unsigned i=0; i<num_atoms; i++)
227                 os << ar.atoms[i] << std::ends;
228
229         // Write expressions
230         unsigned num_exprs = ar.exprs.size();
231         write_unsigned(os, num_exprs);
232         for (unsigned i=0; i<num_exprs; i++) {
233                 write_unsigned(os, ar.exprs[i].name);
234                 write_unsigned(os, ar.exprs[i].root);
235         }
236
237         // Write nodes
238         unsigned num_nodes = ar.nodes.size();
239         write_unsigned(os, num_nodes);
240         for (unsigned i=0; i<num_nodes; i++)
241                 os << ar.nodes[i];
242         return os;
243 }
244
245 /** Read archive_node from binary data stream. */
246 std::istream &operator>>(std::istream &is, archive_node &n)
247 {
248         // Read properties
249         unsigned num_props = read_unsigned(is);
250         n.props.resize(num_props);
251         for (unsigned i=0; i<num_props; i++) {
252                 unsigned name_type = read_unsigned(is);
253                 n.props[i].type = (archive_node::property_type)(name_type & 7);
254                 n.props[i].name = name_type >> 3;
255                 n.props[i].value = read_unsigned(is);
256         }
257         return is;
258 }
259
260 /** Read archive from binary data stream. */
261 std::istream &operator>>(std::istream &is, archive &ar)
262 {
263         // Read header
264         char c1, c2, c3, c4;
265         is.get(c1); is.get(c2); is.get(c3); is.get(c4);
266         if (c1 != 'G' || c2 != 'A' || c3 != 'R' || c4 != 'C')
267                 throw (std::runtime_error("not a GiNaC archive (signature not found)"));
268         unsigned version = read_unsigned(is);
269         if (version > ARCHIVE_VERSION || version < ARCHIVE_VERSION - ARCHIVE_AGE)
270                 throw (std::runtime_error("archive version " + ToString(version) + " cannot be read by this GiNaC library (which supports versions " + ToString(ARCHIVE_VERSION-ARCHIVE_AGE) + " thru " + ToString(ARCHIVE_VERSION)));
271
272         // Read atoms
273         unsigned num_atoms = read_unsigned(is);
274         ar.atoms.resize(num_atoms);
275         for (unsigned i=0; i<num_atoms; i++)
276                 getline(is, ar.atoms[i], '\0');
277
278         // Read expressions
279         unsigned num_exprs = read_unsigned(is);
280         ar.exprs.resize(num_exprs);
281         for (unsigned i=0; i<num_exprs; i++) {
282                 archive_atom name = read_unsigned(is);
283                 archive_node_id root = read_unsigned(is);
284                 ar.exprs[i] = archive::archived_ex(name, root);
285         }
286
287         // Read nodes
288         unsigned num_nodes = read_unsigned(is);
289         ar.nodes.resize(num_nodes, ar);
290         for (unsigned i=0; i<num_nodes; i++)
291                 is >> ar.nodes[i];
292         return is;
293 }
294
295
296 /** Atomize a string (i.e. convert it into an ID number that uniquely
297  *  represents the string). */
298 archive_atom archive::atomize(const std::string &s) const
299 {
300         // Search for string in atoms vector
301         std::vector<std::string>::const_iterator i = atoms.begin(), iend = atoms.end();
302         archive_atom id = 0;
303         while (i != iend) {
304                 if (*i == s)
305                         return id;
306                 i++; id++;
307         }
308
309         // Not found, add to atoms vector
310         atoms.push_back(s);
311         return id;
312 }
313
314 /** Unatomize a string (i.e. convert the ID number back to the string). */
315 const std::string &archive::unatomize(archive_atom id) const
316 {
317         if (id >= atoms.size())
318                 throw (std::range_error("archive::unatomizee(): atom ID out of range"));
319
320         return atoms[id];
321 }
322
323
324 /** Assignment operator of archive_node. */
325 const archive_node &archive_node::operator=(const archive_node &other)
326 {
327         if (this != &other) {
328                 // archive &a member doesn't get copied
329                 props = other.props;
330                 has_expression = other.has_expression;
331                 e = other.e;
332         }
333         return *this;
334 }
335
336
337 /** Recursively construct archive node from expression. */
338 archive_node::archive_node(archive &ar, const ex &expr)
339   : a(ar), has_expression(true), e(expr)
340 {
341         expr.bp->archive(*this);
342 }
343
344
345 /** Check if the archive_node stores the same expression as another
346  *  archive_node.
347  *  @return "true" if expressions are the same */
348 bool archive_node::has_same_ex_as(const archive_node &other) const
349 {
350         if (!has_expression || !other.has_expression)
351                 return false;
352         return e.bp == other.e.bp;
353 }
354
355
356 void archive_node::add_bool(const std::string &name, bool value)
357 {
358         props.push_back(property(a.atomize(name), PTYPE_BOOL, value));
359 }
360
361 void archive_node::add_unsigned(const std::string &name, unsigned value)
362 {
363         props.push_back(property(a.atomize(name), PTYPE_UNSIGNED, value));
364 }
365
366 void archive_node::add_string(const std::string &name, const std::string &value)
367 {
368         props.push_back(property(a.atomize(name), PTYPE_STRING, a.atomize(value)));
369 }
370
371 void archive_node::add_ex(const std::string &name, const ex &value)
372 {
373         // Recursively create an archive_node and add its ID to the properties of this node
374         archive_node_id id = a.add_node(archive_node(a, value));
375         props.push_back(property(a.atomize(name), PTYPE_NODE, id));
376 }
377
378
379 bool archive_node::find_bool(const std::string &name, bool &ret, unsigned index) const
380 {
381         archive_atom name_atom = a.atomize(name);
382         std::vector<property>::const_iterator i = props.begin(), iend = props.end();
383         unsigned found_index = 0;
384         while (i != iend) {
385                 if (i->type == PTYPE_BOOL && i->name == name_atom) {
386                         if (found_index == index) {
387                                 ret = i->value;
388                                 return true;
389                         }
390                         found_index++;
391                 }
392                 i++;
393         }
394         return false;
395 }
396
397 bool archive_node::find_unsigned(const std::string &name, unsigned &ret, unsigned index) const
398 {
399         archive_atom name_atom = a.atomize(name);
400         std::vector<property>::const_iterator i = props.begin(), iend = props.end();
401         unsigned found_index = 0;
402         while (i != iend) {
403                 if (i->type == PTYPE_UNSIGNED && i->name == name_atom) {
404                         if (found_index == index) {
405                                 ret = i->value;
406                                 return true;
407                         }
408                         found_index++;
409                 }
410                 i++;
411         }
412         return false;
413 }
414
415 bool archive_node::find_string(const std::string &name, std::string &ret, unsigned index) const
416 {
417         archive_atom name_atom = a.atomize(name);
418         std::vector<property>::const_iterator i = props.begin(), iend = props.end();
419         unsigned found_index = 0;
420         while (i != iend) {
421                 if (i->type == PTYPE_STRING && i->name == name_atom) {
422                         if (found_index == index) {
423                                 ret = a.unatomize(i->value);
424                                 return true;
425                         }
426                         found_index++;
427                 }
428                 i++;
429         }
430         return false;
431 }
432
433 bool archive_node::find_ex(const std::string &name, ex &ret, lst &sym_lst, unsigned index) const
434 {
435         archive_atom name_atom = a.atomize(name);
436         std::vector<property>::const_iterator i = props.begin(), iend = props.end();
437         unsigned found_index = 0;
438         while (i != iend) {
439                 if (i->type == PTYPE_NODE && i->name == name_atom) {
440                         if (found_index == index) {
441                                 ret = a.get_node(i->value).unarchive(sym_lst);
442                                 return true;
443                         }
444                         found_index++;
445                 }
446                 i++;
447         }
448         return false;
449 }
450
451 const archive_node &archive_node::find_ex_node(const std::string &name, unsigned index) const
452 {
453         archive_atom name_atom = a.atomize(name);
454         std::vector<property>::const_iterator i = props.begin(), iend = props.end();
455         unsigned found_index = 0;
456         while (i != iend) {
457                 if (i->type == PTYPE_NODE && i->name == name_atom) {
458                         if (found_index == index)
459                                 return a.get_node(i->value);
460                         found_index++;
461                 }
462                 i++;
463         }
464         throw (std::runtime_error("property with name '" + name + "' not found in archive node"));
465 }
466
467
468 void archive_node::get_properties(propinfovector &v) const
469 {
470         v.clear();
471         std::vector<property>::const_iterator i = props.begin(), iend = props.end();
472         while (i != iend) {
473                 property_type type = i->type;
474                 std::string name = a.unatomize(i->name);
475
476                 propinfovector::iterator a = v.begin(), aend = v.end();
477                 bool found = false;
478                 while (a != aend) {
479                         if (a->type == type && a->name == name) {
480                                 a->count++;
481                                 found = true;
482                                 break;
483                         }
484                         ++a;
485                 }
486                 if (!found)
487                         v.push_back(property_info(type, name));
488                 i++;
489         }       
490 }
491
492
493 /** Convert archive node to GiNaC expression. */
494 ex archive_node::unarchive(lst &sym_lst) const
495 {
496         // Already unarchived? Then return cached unarchived expression.
497         if (has_expression)
498                 return e;
499
500         // Find instantiation function for class specified in node
501         std::string class_name;
502         if (!find_string("class", class_name))
503                 throw (std::runtime_error("archive node contains no class name"));
504         unarch_func f = find_unarch_func(class_name);
505
506         // Call instantiation function
507         e = f(*this, sym_lst);
508         has_expression = true;
509         return e;
510 }
511
512
513 void archive::clear()
514 {
515         atoms.clear();
516         exprs.clear();
517         nodes.clear();
518         exprtable.clear();
519 }
520
521
522 /** Delete cached unarchived expressions in all archive_nodes (mainly for debugging). */
523 void archive::forget()
524 {
525         for_each(nodes.begin(), nodes.end(), std::mem_fun_ref(&archive_node::forget));
526 }
527
528 /** Delete cached unarchived expressions from node (for debugging). */
529 void archive_node::forget()
530 {
531         has_expression = false;
532         e = 0;
533 }
534
535
536 /** Print archive to stream in ugly raw format (for debugging). */
537 void archive::printraw(std::ostream &os) const
538 {
539         // Dump atoms
540         os << "Atoms:\n";
541         {
542                 std::vector<std::string>::const_iterator i = atoms.begin(), iend = atoms.end();
543                 archive_atom id = 0;
544                 while (i != iend) {
545                         os << " " << id << " " << *i << std::endl;
546                         i++; id++;
547                 }
548         }
549         os << std::endl;
550
551         // Dump expressions
552         os << "Expressions:\n";
553         {
554                 std::vector<archived_ex>::const_iterator i = exprs.begin(), iend = exprs.end();
555                 unsigned index = 0;
556                 while (i != iend) {
557                         os << " " << index << " \"" << unatomize(i->name) << "\" root node " << i->root << std::endl;
558                         i++; index++;
559                 }
560         }
561         os << std::endl;
562
563         // Dump nodes
564         os << "Nodes:\n";
565         {
566                 std::vector<archive_node>::const_iterator i = nodes.begin(), iend = nodes.end();
567                 archive_node_id id = 0;
568                 while (i != iend) {
569                         os << " " << id << " ";
570                         i->printraw(os);
571                         i++; id++;
572                 }
573         }
574 }
575
576 /** Output archive_node to stream in ugly raw format (for debugging). */
577 void archive_node::printraw(std::ostream &os) const
578 {
579         // Dump cached unarchived expression
580         if (has_expression)
581                 os << "(basic * " << e.bp << " = " << e << ")\n";
582         else
583                 os << "\n";
584
585         // Dump properties
586         std::vector<property>::const_iterator i = props.begin(), iend = props.end();
587         while (i != iend) {
588                 os << "  ";
589                 switch (i->type) {
590                         case PTYPE_BOOL: os << "bool"; break;
591                         case PTYPE_UNSIGNED: os << "unsigned"; break;
592                         case PTYPE_STRING: os << "string"; break;
593                         case PTYPE_NODE: os << "node"; break;
594                         default: os << "<unknown>"; break;
595                 }
596                 os << " \"" << a.unatomize(i->name) << "\" " << i->value << std::endl;
597                 i++;
598         }
599 }
600
601 /** Create a dummy archive.  The intention is to fill archive_node's default
602  *  ctor, which is currently a Cint-requirement. */
603 archive* archive_node::dummy_ar_creator()
604 {
605         static archive* some_ar = new archive;
606         return some_ar;
607 }
608
609
610 } // namespace GiNaC