]> www.ginac.de Git - ginac.git/blob - ginac/archive.h
Preparing for release 1.5.6.
[ginac.git] / ginac / archive.h
1 /** @file archive.h
2  *
3  *  Archiving of GiNaC expressions. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2009 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 #ifndef GINAC_ARCHIVE_H
24 #define GINAC_ARCHIVE_H
25
26 #include "ex.h"
27
28 #include <iosfwd>
29 #include <map>
30 #include <string>
31 #include <vector>
32
33 namespace GiNaC {
34
35 class archive;
36
37
38 /** Numerical ID value to refer to an archive_node. */
39 typedef unsigned archive_node_id;
40
41 /** Numerical ID value to refer to a string. */
42 typedef unsigned archive_atom;
43
44
45 /** This class stores all properties needed to record/retrieve the state
46  *  of one object of class basic (or a derived class). Each property is
47  *  addressed by its name and data type. */
48 class archive_node
49 {
50         friend std::ostream &operator<<(std::ostream &os, const archive_node &ar);
51         friend std::istream &operator>>(std::istream &is, archive_node &ar);
52
53 public:
54         /** Property data types */
55         enum property_type {
56                 PTYPE_BOOL,
57                 PTYPE_UNSIGNED,
58                 PTYPE_STRING,
59                 PTYPE_NODE
60         };
61
62         /** Information about a stored property. A vector of these structures
63          *  is returned by get_properties().
64          *  @see get_properties */
65         struct property_info {
66                 property_info() {}
67                 property_info(property_type t, const std::string &n, unsigned c = 1) : type(t), name(n), count(c) {}
68
69                 property_type type; /**< Data type of property. */
70                 std::string name;   /**< Name of property. */
71                 unsigned count;     /**< Number of occurrences. */
72         };
73         typedef std::vector<property_info> propinfovector;
74
75         /** Archived property (data type, name and associated data) */
76         struct property {
77                 property() {}
78                 property(archive_atom n, property_type t, unsigned v) : type(t), name(n), value(v) {}
79
80                 property_type type; /**< Data type of property. */
81                 archive_atom name;  /**< Name of property. */
82                 unsigned value;     /**< Stored value. */
83         };
84         typedef std::vector<property>::const_iterator archive_node_cit;
85
86         archive_node() : a(*dummy_ar_creator()), has_expression(false) {} // hack for cint which always requires a default constructor
87         archive_node(archive &ar) : a(ar), has_expression(false) {}
88         archive_node(archive &ar, const ex &expr);
89
90         const archive_node &operator=(const archive_node &other);
91
92         /** Add property of type "bool" to node. */
93         void add_bool(const std::string &name, bool value);
94
95         /** Add property of type "unsigned int" to node. */
96         void add_unsigned(const std::string &name, unsigned value);
97
98         /** Add property of type "string" to node. */
99         void add_string(const std::string &name, const std::string &value);
100
101         /** Add property of type "ex" to node. */
102         void add_ex(const std::string &name, const ex &value);
103
104         /** Retrieve property of type "bool" from node.
105          *  @return "true" if property was found, "false" otherwise */
106         bool find_bool(const std::string &name, bool &ret, unsigned index = 0) const;
107
108         /** Retrieve property of type "unsigned" from node.
109          *  @return "true" if property was found, "false" otherwise */
110         bool find_unsigned(const std::string &name, unsigned &ret, unsigned index = 0) const;
111
112         /** Retrieve property of type "string" from node.
113          *  @return "true" if property was found, "false" otherwise */
114         bool find_string(const std::string &name, std::string &ret, unsigned index = 0) const;
115
116         /** Find the location in the vector of properties of the first/last
117     *  property with a given name. */
118         archive_node_cit find_first(const std::string &name) const;
119         archive_node_cit find_last(const std::string &name) const;
120
121         /** Retrieve property of type "ex" from node.
122          *  @return "true" if property was found, "false" otherwise */
123         bool find_ex(const std::string &name, ex &ret, lst &sym_lst, unsigned index = 0) const;
124
125         /** Retrieve property of type "ex" from the node if it is known
126     *  that this node in fact contains such a property at the given
127     *  location. This is much more efficient than the preceding function. */
128         void find_ex_by_loc(archive_node_cit loc, ex &ret, lst &sym_lst) const;
129
130         /** Retrieve property of type "ex" from node, returning the node of
131          *  the sub-expression. */
132         const archive_node &find_ex_node(const std::string &name, unsigned index = 0) const;
133
134         /** Return vector of properties stored in node. */
135         void get_properties(propinfovector &v) const;
136
137         ex unarchive(lst &sym_lst) const;
138         bool has_same_ex_as(const archive_node &other) const;
139         bool has_ex() const {return has_expression;}
140         ex get_ex() const {return e;}
141
142         void forget();
143         void printraw(std::ostream &os) const;
144
145 private:
146         static archive* dummy_ar_creator();
147
148         /** Reference to the archive to which this node belongs. */
149         archive &a;
150
151         /** Vector of stored properties. */
152         std::vector<property> props;
153
154         /** Flag indicating whether a cached unarchived representation of this node exists. */
155         mutable bool has_expression;
156
157         /** The cached unarchived representation of this node (if any). */
158         mutable ex e;
159 };
160
161 typedef basic* (*synthesize_func)();
162 typedef std::map<std::string, synthesize_func> unarchive_map_t;
163
164 class unarchive_table_t
165 {
166         static int usecount;
167         static unarchive_map_t* unarch_map;
168 public:
169         unarchive_table_t();
170         ~unarchive_table_t();
171         synthesize_func find(const std::string& classname) const;
172         void insert(const std::string& classname, synthesize_func f);
173 };
174 static unarchive_table_t unarch_table_instance;
175
176 /** Helper macros to register a class with (un)archiving (a.k.a.
177  * (de)serialization).
178  *
179  * Usage: put 
180  *
181  * GINAC_DECLARE_UNARCHIVER(myclass);
182  *
183  * into the header file (in the global or namespace scope), and
184  *
185  * GINAC_BIND_UNARCHIVER(myclass);
186  *
187  * into the source file.
188  *
189  * Effect: the `myclass' (being a class derived directly or indirectly
190  * from GiNaC::basic) can be archived and unarchived.
191  *
192  * Note: you need to use GINAC_{DECLARE,BIND}_UNARCHIVER incantations
193  * in order to make your class (un)archivable _even if your class does
194  * not overload `read_archive' method_. Sorry for inconvenience.
195  *
196  * How it works: 
197  *
198  * The `basic' class has a `read_archive' virtual method which reads an
199  * expression from archive. Derived classes can overload that method.
200  * There's a small problem, though. On unarchiving all we have is a set
201  * of named byte streams. In C++ the class name (as written in the source
202  * code) has nothing to do with its actual type. Thus, we need establish
203  * a correspondence ourselves. To do so we maintain a `class_name' =>
204  * `function_pointer' table (see the unarchive_table_t class above).
205  * Every function in this table is supposed to create a new object of
206  * the `class_name' type. The `archive_node' class uses that table to
207  * construct an object of correct type. Next it invokes read_archive
208  * virtual method of newly created object, which does the actual job.
209  *
210  * Note: this approach is very simple-minded (it does not handle classes
211  * with same names from different namespaces, multiple inheritance, etc),
212  * but it happens to work surprisingly well.
213  */
214 #define GINAC_DECLARE_UNARCHIVER(classname)                     \
215 class classname ## _unarchiver                                  \
216 {                                                               \
217         static int usecount;                                    \
218 public:                                                         \
219         static GiNaC::basic* create();                          \
220         classname ## _unarchiver();                             \
221         ~ classname ## _unarchiver();                           \
222 };                                                              \
223 static classname ## _unarchiver classname ## _unarchiver_instance
224
225 #define GINAC_BIND_UNARCHIVER(classname)                        \
226 classname ## _unarchiver::classname ## _unarchiver()            \
227 {                                                               \
228         static GiNaC::unarchive_table_t table;                  \
229         if (usecount++ == 0) {                                  \
230                 table.insert(std::string(#classname),           \
231                         &(classname ## _unarchiver::create));   \
232         }                                                       \
233 }                                                               \
234 GiNaC::basic* classname ## _unarchiver::create()                \
235 {                                                               \
236         return new classname();                                 \
237 }                                                               \
238 classname ## _unarchiver::~ classname ## _unarchiver() { }      \
239 int classname ## _unarchiver::usecount = 0
240
241
242 /** This class holds archived versions of GiNaC expressions (class ex).
243  *  An archive can be constructed from an expression and then written to
244  *  a stream; or it can be read from a stream and then unarchived, yielding
245  *  back the expression. Archives can hold multiple expressions which can
246  *  be referred to by name or index number. The main component of the
247  *  archive class is a vector of archive_nodes which each store one object
248  *  of class basic (or a derived class). */
249 class archive
250 {
251         friend std::ostream &operator<<(std::ostream &os, const archive &ar);
252         friend std::istream &operator>>(std::istream &is, archive &ar);
253
254 public:
255         archive() {}
256         ~archive() {}
257
258         /** Construct archive from expression using the default name "ex". */
259         archive(const ex &e) {archive_ex(e, "ex");}
260
261         /** Construct archive from expression using the specified name. */
262         archive(const ex &e, const char *n) {archive_ex(e, n);}
263
264         /** Archive an expression.
265          *  @param e the expression to be archived
266          *  @param name name under which the expression is stored */
267         void archive_ex(const ex &e, const char *name);
268
269         /** Retrieve expression from archive by name.
270          *  @param sym_lst list of pre-defined symbols
271          *  @param name name of expression */
272         ex unarchive_ex(const lst &sym_lst, const char *name) const;
273
274         /** Retrieve expression from archive by index.
275          *  @param sym_lst list of pre-defined symbols
276          *  @param index index of expression
277      *  @see count_expressions */
278         ex unarchive_ex(const lst &sym_lst, unsigned index = 0) const;
279
280         /** Retrieve expression and its name from archive by index.
281          *  @param sym_lst list of pre-defined symbols
282          *  @param name receives the name of the expression
283          *  @param index index of expression
284      *  @see count_expressions */
285         ex unarchive_ex(const lst &sym_lst, std::string &name, unsigned index = 0) const;
286
287         /** Return number of archived expressions. */
288         unsigned num_expressions() const;
289
290         /** Return reference to top node of an expression specified by index. */
291         const archive_node &get_top_node(unsigned index = 0) const;
292
293         /** Clear all archived expressions. */
294         void clear();
295
296         archive_node_id add_node(const archive_node &n);
297         archive_node &get_node(archive_node_id id);
298
299         void forget();
300         void printraw(std::ostream &os) const;
301
302 private:
303         /** Vector of archived nodes. */
304         std::vector<archive_node> nodes;
305
306         /** Archived expression descriptor. */
307         struct archived_ex {
308                 archived_ex() {}
309                 archived_ex(archive_atom n, archive_node_id node) : name(n), root(node) {}
310
311                 archive_atom name;     /**< Name of expression. */
312                 archive_node_id root;  /**< ID of root node. */
313         };
314
315         /** Vector of archived expression descriptors. */
316         std::vector<archived_ex> exprs;
317
318 public:
319         archive_atom atomize(const std::string &s) const;
320         const std::string &unatomize(archive_atom id) const;
321
322 private:
323         /** Vector of atomized strings (using a vector allows faster unarchiving). */
324         mutable std::vector<std::string> atoms;
325         /** The map of from strings to indices of the atoms vectors allows for
326          *  faster archiving.
327          */
328         typedef std::map<std::string, archive_atom>::const_iterator inv_at_cit;
329         mutable std::map<std::string, archive_atom> inverse_atoms;
330
331         /** Map of stored expressions to nodes for faster archiving */
332         typedef std::map<ex, archive_node_id, ex_is_less>::iterator mapit;
333         mutable std::map<ex, archive_node_id, ex_is_less> exprtable;
334 };
335
336
337 std::ostream &operator<<(std::ostream &os, const archive &ar);
338 std::istream &operator>>(std::istream &is, archive &ar);
339
340 } // namespace GiNaC
341
342 #endif // ndef GINAC_ARCHIVE_H