]> www.ginac.de Git - ginac.git/blob - ginac/registrar.h
Reset GINAC_LT_AGE to bump SONAME.
[ginac.git] / ginac / registrar.h
1 /** @file registrar.h
2  *
3  *  GiNaC's class registrar (for class basic and all classes derived from it). */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2020 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_REGISTRAR_H
24 #define GINAC_REGISTRAR_H
25
26 #include "class_info.h"
27 #include "print.h"
28
29 #include <list>
30 #include <string>
31 #include <typeinfo>
32 #include <vector>
33
34 namespace GiNaC {
35
36 class ex;
37 class archive_node;
38
39 template <template <class T, class = std::allocator<T>> class> class container;
40 typedef container<std::list> lst;
41
42 /** To distinguish between different kinds of non-commutative objects */
43 struct return_type_t
44 {
45         /// to distinguish between non-commutative objects of different type.
46         std::type_info const* tinfo; 
47         /// to distinguish between non-commutative objects of the same type.
48         /// Think of gamma matrices with different representation labels.
49         unsigned rl;
50
51         /// Strict weak ordering (so one can put return_type_t's into
52         /// a STL container).
53         inline bool operator<(const return_type_t& other) const
54         {
55                 if (tinfo->before(*other.tinfo))
56                         return true;
57                 return rl < other.rl;
58         }
59         inline bool operator==(const return_type_t& other) const
60         {
61                 if (*tinfo != *(other.tinfo))
62                         return false;
63                 return rl == other.rl;
64         }
65         inline bool operator!=(const return_type_t& other) const
66         {
67                 return ! (operator==(other));
68         }
69 };
70
71 template<typename T> inline return_type_t make_return_type_t(const unsigned rl = 0)
72 {
73         return_type_t ret;
74         ret.rl = rl;
75         ret.tinfo = &typeid(T);
76         return ret;
77 }
78
79 /** This class stores information about a registered GiNaC class. */
80 class registered_class_options {
81 public:
82         registered_class_options(const char *n, const char *p, 
83                                  const std::type_info& ti)
84          : name(n), parent_name(p), tinfo_key(&ti) { }
85
86         const char *get_name() const { return name; }
87         const char *get_parent_name() const { return parent_name; }
88         std::type_info const* get_id() const { return tinfo_key; }
89         const std::vector<print_functor> &get_print_dispatch_table() const { return print_dispatch_table; }
90
91         template <class Ctx, class T, class C>
92         registered_class_options & print_func(void f(const T &, const C & c, unsigned))
93         {
94                 set_print_func(Ctx::get_class_info_static().options.get_id(), f);
95                 return *this;
96         }
97
98         template <class Ctx, class T, class C>
99         registered_class_options & print_func(void (T::*f)(const C &, unsigned))
100         {
101                 set_print_func(Ctx::get_class_info_static().options.get_id(), f);
102                 return *this;
103         }
104
105         template <class Ctx>
106         registered_class_options & print_func(const print_functor & f)
107         {
108                 set_print_func(Ctx::get_class_info_static().options.get_id(), f);
109                 return *this;
110         }
111
112         void set_print_func(unsigned id, const print_functor & f)
113         {
114                 if (id >= print_dispatch_table.size())
115                         print_dispatch_table.resize(id + 1);
116                 print_dispatch_table[id] = f;
117         }
118
119 private:
120         const char *name;         /**< Class name. */
121         const char *parent_name;  /**< Name of superclass. */
122         std::type_info const* tinfo_key;        /**< Type information key. */
123         std::vector<print_functor> print_dispatch_table; /**< Method table for print() dispatch */
124 };
125
126 typedef class_info<registered_class_options> registered_class_info;
127
128 /** Common part of GINAC_DECLARE_REGISTERED_CLASS_NO_CTORS and GINAC_DECLARE_REGISTERED_CLASS. */
129 #define GINAC_DECLARE_REGISTERED_CLASS_COMMON(classname)        \
130 private: \
131         static GiNaC::registered_class_info reg_info; \
132 public: \
133         static GiNaC::registered_class_info &get_class_info_static() { return reg_info; } \
134         class visitor { \
135         public: \
136                 virtual void visit(const classname &) = 0; \
137                 virtual ~visitor() {}; \
138         };
139
140 /** Primary macro for inclusion in the declaration of each registered class. */
141 #define GINAC_DECLARE_REGISTERED_CLASS_NO_CTORS(classname, supername) \
142         GINAC_DECLARE_REGISTERED_CLASS_COMMON(classname) \
143         typedef supername inherited; \
144         virtual const GiNaC::registered_class_info &get_class_info() const { return classname::get_class_info_static(); } \
145         virtual GiNaC::registered_class_info &get_class_info() { return classname::get_class_info_static(); } \
146         virtual const char *class_name() const { return classname::get_class_info_static().options.get_name(); } \
147 private:
148
149 /** Macro for inclusion in the declaration of each registered class.
150  *  It declares some functions that are common to all classes derived
151  *  from 'basic' as well as all required stuff for the GiNaC class
152  *  registry (mainly needed for archiving). */
153 #define GINAC_DECLARE_REGISTERED_CLASS(classname, supername) \
154         GINAC_DECLARE_REGISTERED_CLASS_COMMON(classname) \
155         template<class B, typename... Args> friend B & dynallocate(Args &&... args); \
156         typedef supername inherited; \
157         classname(); \
158         classname * duplicate() const override { \
159                 classname * bp = new classname(*this); \
160                 bp->setflag(GiNaC::status_flags::dynallocated); \
161                 return bp; \
162         } \
163         \
164         void accept(GiNaC::visitor & v) const override \
165         { \
166                 if (visitor *p = dynamic_cast<visitor *>(&v)) \
167                         p->visit(*this); \
168                 else \
169                         inherited::accept(v); \
170         } \
171         const GiNaC::registered_class_info &get_class_info() const override { return classname::get_class_info_static(); } \
172         GiNaC::registered_class_info &get_class_info() override { return classname::get_class_info_static(); } \
173         const char *class_name() const override { return classname::get_class_info_static().options.get_name(); } \
174 protected: \
175         int compare_same_type(const GiNaC::basic & other) const override; \
176 private:
177
178
179 /** Macro for inclusion in the implementation of each registered class. */
180 #define GINAC_IMPLEMENT_REGISTERED_CLASS(classname, supername) \
181         GiNaC::registered_class_info classname::reg_info = GiNaC::registered_class_info(GiNaC::registered_class_options(#classname, #supername, typeid(classname))); 
182
183 /** Macro for inclusion in the implementation of each registered class.
184  *  Additional options can be specified. */
185 #define GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(classname, supername, options) \
186         GiNaC::registered_class_info classname::reg_info = GiNaC::registered_class_info(GiNaC::registered_class_options(#classname, #supername, typeid(classname)).options);
187
188 /** Macro for inclusion in the implementation of each registered class.
189  *  Additional options can be specified. */
190 #define GINAC_IMPLEMENT_REGISTERED_CLASS_OPT_T(classname, supername, options) \
191         GiNaC::registered_class_info classname::reg_info = GiNaC::registered_class_info(GiNaC::registered_class_options(#classname, #supername, typeid(classname)).options);
192
193
194 /** Add or replace a print method. */
195 template <class Alg, class Ctx, class T, class C>
196 extern void set_print_func(void f(const T &, const C & c, unsigned))
197 {
198         Alg::get_class_info_static().options.set_print_func(Ctx::get_class_info_static().options.get_id(), f);
199 }
200
201 /** Add or replace a print method. */
202 template <class Alg, class Ctx, class T, class C>
203 extern void set_print_func(void (T::*f)(const C &, unsigned))
204 {
205         Alg::get_class_info_static().options.set_print_func(Ctx::get_class_info_static().options.get_id(), f);
206 }
207
208
209 } // namespace GiNaC
210
211 #endif // ndef GINAC_REGISTRAR_H