X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Farchive.cpp;h=0eed3d54a2e2f516105c63fe0bfd5cc7c4282315;hp=f4a59f735d9c51e1b5c7b2f8ce550699cfe122eb;hb=e9d15a5eb2279f4c9b153af3dbb487843cc9c048;hpb=1602530f716ba1d425a0667b897182b99c374823 diff --git a/ginac/archive.cpp b/ginac/archive.cpp index f4a59f73..0eed3d54 100644 --- a/ginac/archive.cpp +++ b/ginac/archive.cpp @@ -3,7 +3,7 @@ * Archiving of GiNaC expressions. */ /* - * GiNaC Copyright (C) 1999-2009 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2019 Johannes Gutenberg University Mainz, Germany * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -24,8 +24,10 @@ #include "registrar.h" #include "ex.h" #include "lst.h" +#ifdef HAVE_CONFIG_H #include "config.h" -#include "tostring.h" +#endif +#include "version.h" #include #include @@ -41,7 +43,7 @@ void archive::archive_ex(const ex &e, const char *name) // Add root node ID to list of archived expressions archived_ex ae = archived_ex(atomize(name), id); - exprs.push_back(ae); + exprs.emplace_back(ae); } @@ -52,7 +54,7 @@ archive_node_id archive::add_node(const archive_node &n) { // Look if expression is known to be in some node already. if (n.has_ex()) { - mapit i = exprtable.find(n.get_ex()); + auto i = exprtable.find(n.get_ex()); if (i != exprtable.end()) return i->second; nodes.push_back(n); @@ -81,7 +83,7 @@ ex archive::unarchive_ex(const lst &sym_lst, const char *name) const // Find root node std::string name_string = name; archive_atom id = atomize(name_string); - std::vector::const_iterator i = exprs.begin(), iend = exprs.end(); + auto i = exprs.begin(), iend = exprs.end(); while (i != iend) { if (i->name == id) goto found; @@ -218,7 +220,7 @@ std::ostream &operator<<(std::ostream &os, const archive &ar) os.put('A'); os.put('R'); os.put('C'); - write_unsigned(os, ARCHIVE_VERSION); + write_unsigned(os, GINACLIB_ARCHIVE_VERSION); // Write atoms unsigned num_atoms = ar.atoms.size(); @@ -265,9 +267,11 @@ std::istream &operator>>(std::istream &is, archive &ar) is.get(c1); is.get(c2); is.get(c3); is.get(c4); if (c1 != 'G' || c2 != 'A' || c3 != 'R' || c4 != 'C') throw (std::runtime_error("not a GiNaC archive (signature not found)")); + constexpr unsigned max_version = GINACLIB_ARCHIVE_VERSION; + constexpr unsigned min_version = GINACLIB_ARCHIVE_VERSION - GINACLIB_ARCHIVE_AGE; unsigned version = read_unsigned(is); - if (version > ARCHIVE_VERSION || version < ARCHIVE_VERSION - ARCHIVE_AGE) - 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))); + if ((version > max_version) || (version < min_version)) + throw (std::runtime_error("archive version " + std::to_string(version) + " cannot be read by this GiNaC library (which supports versions " + std::to_string(min_version) + " thru " + std::to_string(max_version))); // Read atoms unsigned num_atoms = read_unsigned(is); @@ -315,7 +319,7 @@ archive_atom archive::atomize(const std::string &s) const const std::string &archive::unatomize(archive_atom id) const { if (id >= atoms.size()) - throw (std::range_error("archive::unatomizee(): atom ID out of range")); + throw (std::range_error("archive::unatomize(): atom ID out of range")); return atoms[id]; } @@ -353,20 +357,20 @@ bool archive_node::has_same_ex_as(const archive_node &other) const } archive_node::archive_node_cit - archive_node::find_first(const std::string &name) const -{ +archive_node::find_first(const std::string &name) const +{ archive_atom name_atom = a.atomize(name); - for (archive_node_cit i=props.begin(); i!=props.end(); ++i) + for (auto i=props.begin(); i!=props.end(); ++i) if (i->name == name_atom) return i; - return props.end();; + return props.end(); } archive_node::archive_node_cit - archive_node::find_last(const std::string &name) const +archive_node::find_last(const std::string &name) const { archive_atom name_atom = a.atomize(name); - for (archive_node_cit i=props.end(); i!=props.begin();) { + for (auto i=props.end(); i!=props.begin();) { --i; if (i->name == name_atom) return i; @@ -374,33 +378,50 @@ archive_node::archive_node_cit return props.end(); } +archive_node::archive_node_cit_range +archive_node::find_property_range(const std::string &name1, const std::string &name2) const +{ + archive_atom name1_atom = a.atomize(name1), + name2_atom = a.atomize(name2); + archive_node_cit_range range = {props.end(), props.end()}; + for (auto i=props.begin(); i!=props.end(); ++i) { + if (i->name == name1_atom && range.begin == props.end()) { + range.begin = i; + } + if (i->name == name2_atom && range.begin != props.end()) { + range.end = i + 1; + } + } + return range; +} + void archive_node::add_bool(const std::string &name, bool value) { - props.push_back(property(a.atomize(name), PTYPE_BOOL, value)); + props.emplace_back(property(a.atomize(name), PTYPE_BOOL, value)); } void archive_node::add_unsigned(const std::string &name, unsigned value) { - props.push_back(property(a.atomize(name), PTYPE_UNSIGNED, value)); + props.emplace_back(property(a.atomize(name), PTYPE_UNSIGNED, value)); } void archive_node::add_string(const std::string &name, const std::string &value) { - props.push_back(property(a.atomize(name), PTYPE_STRING, a.atomize(value))); + props.emplace_back(property(a.atomize(name), PTYPE_STRING, a.atomize(value))); } void archive_node::add_ex(const std::string &name, const ex &value) { // Recursively create an archive_node and add its ID to the properties of this node archive_node_id id = a.add_node(archive_node(a, value)); - props.push_back(property(a.atomize(name), PTYPE_NODE, id)); + props.emplace_back(property(a.atomize(name), PTYPE_NODE, id)); } bool archive_node::find_bool(const std::string &name, bool &ret, unsigned index) const { archive_atom name_atom = a.atomize(name); - archive_node_cit i = props.begin(), iend = props.end(); + auto i = props.begin(), iend = props.end(); unsigned found_index = 0; while (i != iend) { if (i->type == PTYPE_BOOL && i->name == name_atom) { @@ -418,7 +439,7 @@ bool archive_node::find_bool(const std::string &name, bool &ret, unsigned index) bool archive_node::find_unsigned(const std::string &name, unsigned &ret, unsigned index) const { archive_atom name_atom = a.atomize(name); - archive_node_cit i = props.begin(), iend = props.end(); + auto i = props.begin(), iend = props.end(); unsigned found_index = 0; while (i != iend) { if (i->type == PTYPE_UNSIGNED && i->name == name_atom) { @@ -436,7 +457,7 @@ bool archive_node::find_unsigned(const std::string &name, unsigned &ret, unsigne bool archive_node::find_string(const std::string &name, std::string &ret, unsigned index) const { archive_atom name_atom = a.atomize(name); - archive_node_cit i = props.begin(), iend = props.end(); + auto i = props.begin(), iend = props.end(); unsigned found_index = 0; while (i != iend) { if (i->type == PTYPE_STRING && i->name == name_atom) { @@ -451,8 +472,7 @@ bool archive_node::find_string(const std::string &name, std::string &ret, unsign return false; } -void archive_node::find_ex_by_loc(archive_node_cit loc, ex &ret, lst &sym_lst) - const +void archive_node::find_ex_by_loc(archive_node_cit loc, ex &ret, lst &sym_lst) const { ret = a.get_node(loc->value).unarchive(sym_lst); } @@ -460,7 +480,7 @@ void archive_node::find_ex_by_loc(archive_node_cit loc, ex &ret, lst &sym_lst) bool archive_node::find_ex(const std::string &name, ex &ret, lst &sym_lst, unsigned index) const { archive_atom name_atom = a.atomize(name); - archive_node_cit i = props.begin(), iend = props.end(); + auto i = props.begin(), iend = props.end(); unsigned found_index = 0; while (i != iend) { if (i->type == PTYPE_NODE && i->name == name_atom) { @@ -478,7 +498,7 @@ bool archive_node::find_ex(const std::string &name, ex &ret, lst &sym_lst, unsig const archive_node &archive_node::find_ex_node(const std::string &name, unsigned index) const { archive_atom name_atom = a.atomize(name); - archive_node_cit i = props.begin(), iend = props.end(); + auto i = props.begin(), iend = props.end(); unsigned found_index = 0; while (i != iend) { if (i->type == PTYPE_NODE && i->name == name_atom) { @@ -495,12 +515,12 @@ const archive_node &archive_node::find_ex_node(const std::string &name, unsigned void archive_node::get_properties(propinfovector &v) const { v.clear(); - archive_node_cit i = props.begin(), iend = props.end(); + auto i = props.begin(), iend = props.end(); while (i != iend) { property_type type = i->type; std::string name = a.unatomize(i->name); - propinfovector::iterator a = v.begin(), aend = v.end(); + auto a = v.begin(), aend = v.end(); bool found = false; while (a != aend) { if (a->type == type && a->name == name) { @@ -511,9 +531,9 @@ void archive_node::get_properties(propinfovector &v) const ++a; } if (!found) - v.push_back(property_info(type, name)); + v.emplace_back(property_info(type, name)); i++; - } + } } static synthesize_func find_factory_fcn(const std::string& name) @@ -546,7 +566,7 @@ ex archive_node::unarchive(lst &sym_lst) const } int unarchive_table_t::usecount = 0; -unarchive_map_t* unarchive_table_t::unarch_map = 0; +unarchive_map_t* unarchive_table_t::unarch_map = nullptr; unarchive_table_t::unarchive_table_t() { @@ -621,7 +641,7 @@ void archive::printraw(std::ostream &os) const // Dump expressions os << "Expressions:\n"; { - std::vector::const_iterator i = exprs.begin(), iend = exprs.end(); + auto i = exprs.begin(), iend = exprs.end(); unsigned index = 0; while (i != iend) { os << " " << index << " \"" << unatomize(i->name) << "\" root node " << i->root << std::endl; @@ -633,7 +653,7 @@ void archive::printraw(std::ostream &os) const // Dump nodes os << "Nodes:\n"; { - std::vector::const_iterator i = nodes.begin(), iend = nodes.end(); + auto i = nodes.begin(), iend = nodes.end(); archive_node_id id = 0; while (i != iend) { os << " " << id << " "; @@ -653,7 +673,7 @@ void archive_node::printraw(std::ostream &os) const os << "\n"; // Dump properties - archive_node_cit i = props.begin(), iend = props.end(); + auto i = props.begin(), iend = props.end(); while (i != iend) { os << " "; switch (i->type) { @@ -668,13 +688,5 @@ void archive_node::printraw(std::ostream &os) const } } -/** Create a dummy archive. The intention is to fill archive_node's default - * ctor, which is currently a Cint-requirement. */ -archive* archive_node::dummy_ar_creator() -{ - static archive* some_ar = new archive; - return some_ar; -} - } // namespace GiNaC