3 * Helper templates to provide per-class information for class hierarchies. */
6 * GiNaC Copyright (C) 1999-2020 Johannes Gutenberg University Mainz, Germany
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.
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.
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
23 #ifndef GINAC_CLASS_INFO_H
24 #define GINAC_CLASS_INFO_H
26 #include <cstddef> // for size_t
37 // OPT is the class that stores the actual per-class data. It must provide
38 // get_name(), get_parent_name() and get_id() members.
43 class_info(const OPT & o) : options(o), next(first), parent(nullptr)
46 parents_identified = false;
49 /** Get pointer to class_info of parent class (or nullptr). */
50 class_info *get_parent() const
56 /** Find class_info by name. */
57 static const class_info *find(const std::string &class_name);
59 /** Dump class hierarchy to std::cout. */
60 static void dump_hierarchy(bool verbose = false);
66 tree_node(class_info *i) : info(i) {}
67 void add_child(tree_node *n) { children.push_back(n); }
69 std::vector<tree_node *> children;
73 static void dump_tree(tree_node *n, const std::string & prefix, bool verbose);
74 static void identify_parents();
76 static class_info *first;
78 mutable class_info *parent;
80 static bool parents_identified;
84 const class_info<OPT> *class_info<OPT>::find(const std::string &class_name)
86 // Use a map for faster lookup. The registered_class_info list doesn't
87 // change at run-time, so it's sufficient to construct the map once
88 // on the first trip through this function.
89 typedef std::map<std::string, const class_info *> name_map_type;
90 static name_map_type name_map;
91 static bool name_map_initialized = false;
93 if (!name_map_initialized) {
95 const class_info *p = first;
97 name_map[p->options.get_name()] = p;
100 name_map_initialized = true;
103 typename name_map_type::const_iterator it = name_map.find(class_name);
104 if (it == name_map.end())
105 throw (std::runtime_error("class '" + class_name + "' not registered"));
111 void class_info<OPT>::dump_tree(tree_node *n, const std::string & prefix, bool verbose)
113 std::string name = n->info->options.get_name();
116 std::cout << " [ID 0x" << std::hex << std::setw(8) << std::setfill('0') << n->info->options.get_id() << std::dec << "]" << std::endl;
118 size_t num_children = n->children.size();
120 for (size_t i = 0; i < num_children; ++i) {
122 std::cout << prefix << " +- ";
123 if (i == num_children - 1)
124 dump_tree(n->children[i], prefix + " ", verbose);
126 dump_tree(n->children[i], prefix + " | ", verbose);
128 std::string spaces(name.size(), ' ');
130 std::cout << prefix << spaces;
131 if (num_children == 1)
132 std::cout << " --- ";
136 std::cout << " -+- ";
137 if (i == num_children - 1)
138 dump_tree(n->children[i], prefix + spaces + " ", verbose);
140 dump_tree(n->children[i], prefix + spaces + " | ", verbose);
144 std::cout << std::endl;
148 void class_info<OPT>::dump_hierarchy(bool verbose)
152 // Create tree nodes for all class_infos
153 std::vector<tree_node> tree;
154 for (class_info *p = first; p; p = p->next)
155 tree.push_back(tree_node(p));
157 // Identify children for all nodes and find the root
158 tree_node *root = nullptr;
159 for (typename std::vector<tree_node>::iterator i = tree.begin(); i != tree.end(); ++i) {
160 class_info *p = i->info->get_parent();
162 for (typename std::vector<tree_node>::iterator j = tree.begin(); j != tree.end(); ++j) {
172 // Print hierarchy tree starting at the root
173 dump_tree(root, "", verbose);
177 void class_info<OPT>::identify_parents()
179 if (!parents_identified) {
180 for (class_info *p = first; p; p = p->next) {
181 const char *parent_name = p->options.get_parent_name();
182 for (class_info *q = first; q; q = q->next) {
183 if (std::strcmp(q->options.get_name(), parent_name) == 0) {
189 parents_identified = true;
193 template <class OPT> class_info<OPT> *class_info<OPT>::first = nullptr;
194 template <class OPT> bool class_info<OPT>::parents_identified = false;
198 #endif // ndef GINAC_CLASS_INFO_H