2018-12-08 20:10:29 +05:00
|
|
|
#ifndef NETGEN_CORE_ARCHIVE_HPP
|
|
|
|
#define NETGEN_CORE_ARCHIVE_HPP
|
|
|
|
|
2018-12-10 18:37:27 +05:00
|
|
|
#include <complex> // for complex
|
|
|
|
#include <cstring> // for size_t, strlen
|
|
|
|
#include <fstream> // for operator<<, ifstream, ofstream, basic...
|
|
|
|
#include <functional> // for function
|
|
|
|
#include <map> // for map, _Rb_tree_iterator
|
|
|
|
#include <memory> // for __shared_ptr_access, __shared_ptr_acc...
|
|
|
|
#include <stdexcept> // for runtime_error
|
|
|
|
#include <string> // for string, operator+
|
|
|
|
#include <type_traits> // for declval, enable_if, false_type, is_co...
|
|
|
|
#include <typeinfo> // for type_info
|
|
|
|
#include <utility> // for move, swap, pair
|
|
|
|
#include <vector> // for vector
|
|
|
|
|
|
|
|
#include "ngcore_api.hpp" // for NGCORE_API, unlikely
|
|
|
|
#include "type_traits.hpp" // for all_of_tmpl
|
|
|
|
#include "version.hpp" // for VersionInfo
|
2018-11-29 22:35:30 +05:00
|
|
|
|
|
|
|
namespace ngcore
|
|
|
|
{
|
2018-12-08 20:10:29 +05:00
|
|
|
// Libraries using this archive can store their version here to implement backwards compatibility
|
2018-12-12 21:45:06 +05:00
|
|
|
NGCORE_API const VersionInfo& GetLibraryVersion(const std::string& library);
|
|
|
|
NGCORE_API void SetLibraryVersion(const std::string& library, const VersionInfo& version);
|
|
|
|
NGCORE_API std::string Demangle(const char* typeinfo);
|
2018-12-08 20:10:29 +05:00
|
|
|
|
2018-12-12 18:11:28 +05:00
|
|
|
class NGCORE_API Archive;
|
2018-12-08 20:10:29 +05:00
|
|
|
|
2018-12-12 15:05:17 +05:00
|
|
|
namespace detail
|
|
|
|
{
|
|
|
|
// create new pointer of type T if it is default constructible, else throw
|
|
|
|
template<typename T, typename ...Rest>
|
|
|
|
T* constructIfPossible_impl(Rest... /*unused*/)
|
|
|
|
{ throw std::runtime_error(std::string(Demangle(typeid(T).name())) + " is not default constructible!"); }
|
2018-12-08 20:10:29 +05:00
|
|
|
|
2018-12-12 15:05:17 +05:00
|
|
|
template<typename T, typename= typename std::enable_if<std::is_constructible<T>::value>::type>
|
|
|
|
T* constructIfPossible_impl(int /*unused*/) { return new T; } // NOLINT
|
2018-12-08 20:10:29 +05:00
|
|
|
|
2018-12-12 15:05:17 +05:00
|
|
|
template<typename T>
|
|
|
|
T* constructIfPossible() { return constructIfPossible_impl<T>(int{}); }
|
2018-12-08 20:10:29 +05:00
|
|
|
|
2018-12-12 15:05:17 +05:00
|
|
|
//Type trait to check if a class implements a 'void DoArchive(Archive&)' function
|
|
|
|
template<typename T>
|
|
|
|
struct has_DoArchive
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
template<typename T2>
|
|
|
|
static constexpr auto check(T2*) ->
|
|
|
|
typename std::is_same<decltype(std::declval<T2>().DoArchive(std::declval<Archive&>())),void>::type;
|
|
|
|
template<typename>
|
|
|
|
static constexpr std::false_type check(...);
|
|
|
|
using type = decltype(check<T>(nullptr)); // NOLINT
|
|
|
|
public:
|
|
|
|
NGCORE_API static constexpr bool value = type::value;
|
|
|
|
};
|
2018-12-08 20:10:29 +05:00
|
|
|
|
2018-12-12 15:05:17 +05:00
|
|
|
// Check if class is archivable
|
|
|
|
template<typename T>
|
|
|
|
struct is_Archivable_struct
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
template<typename T2>
|
|
|
|
static constexpr auto check(T2*) ->
|
|
|
|
typename std::is_same<decltype(std::declval<Archive>() & std::declval<T2&>()),Archive&>::type;
|
|
|
|
template<typename>
|
|
|
|
static constexpr std::false_type check(...);
|
|
|
|
using type = decltype(check<T>(nullptr)); // NOLINT
|
|
|
|
public:
|
|
|
|
NGCORE_API static constexpr bool value = type::value;
|
|
|
|
};
|
2018-12-08 20:10:29 +05:00
|
|
|
|
2018-12-12 15:05:17 +05:00
|
|
|
struct ClassArchiveInfo
|
|
|
|
{
|
|
|
|
// create new object of this type and return a void* pointer that is points to the location
|
|
|
|
// of the (base)class given by type_info
|
|
|
|
std::function<void*(const std::type_info&)> creator;
|
|
|
|
// This caster takes a void* pointer to the type stored in this info and casts it to a
|
|
|
|
// void* pointer pointing to the (base)class type_info
|
|
|
|
std::function<void*(const std::type_info&, void*)> upcaster;
|
|
|
|
// This caster takes a void* pointer to the (base)class type_info and returns void* pointing
|
|
|
|
// to the type stored in this info
|
|
|
|
std::function<void*(const std::type_info&, void*)> downcaster;
|
|
|
|
};
|
|
|
|
} // namespace detail
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
constexpr bool is_archivable = detail::is_Archivable_struct<T>::value;
|
2018-12-08 20:10:29 +05:00
|
|
|
|
|
|
|
// Base Archive class
|
|
|
|
class NGCORE_API Archive
|
|
|
|
{
|
2018-12-12 15:05:17 +05:00
|
|
|
const bool is_output;
|
2018-12-08 20:10:29 +05:00
|
|
|
// how many different shared_ptr/pointer have been (un)archived
|
|
|
|
int shared_ptr_count, ptr_count;
|
|
|
|
// maps for archived shared pointers and pointers
|
|
|
|
std::map<void*, int> shared_ptr2nr, ptr2nr;
|
|
|
|
// vectors for storing the unarchived (shared) pointers
|
|
|
|
std::vector<std::shared_ptr<void>> nr2shared_ptr;
|
|
|
|
std::vector<void*> nr2ptr;
|
|
|
|
|
|
|
|
public:
|
2018-12-10 18:37:27 +05:00
|
|
|
Archive() = delete;
|
|
|
|
Archive(const Archive&) = delete;
|
|
|
|
Archive(Archive&&) = delete;
|
2018-12-10 14:59:46 +05:00
|
|
|
Archive (bool ais_output) :
|
2018-12-10 15:10:31 +05:00
|
|
|
is_output(ais_output), shared_ptr_count(0), ptr_count(0) { ; }
|
2018-12-10 14:59:46 +05:00
|
|
|
|
2018-12-08 20:10:29 +05:00
|
|
|
virtual ~Archive() { ; }
|
|
|
|
|
2018-12-10 18:37:27 +05:00
|
|
|
Archive& operator=(const Archive&) = delete;
|
|
|
|
Archive& operator=(Archive&&) = delete;
|
|
|
|
|
2018-12-12 15:05:17 +05:00
|
|
|
bool Output () const { return is_output; }
|
|
|
|
bool Input () const { return !is_output; }
|
2018-12-12 15:24:11 +05:00
|
|
|
virtual const VersionInfo& GetVersion(const std::string& library) = 0;
|
2018-12-08 20:10:29 +05:00
|
|
|
|
|
|
|
// Pure virtual functions that have to be implemented by In-/OutArchive
|
|
|
|
virtual Archive & operator & (double & d) = 0;
|
|
|
|
virtual Archive & operator & (int & i) = 0;
|
|
|
|
virtual Archive & operator & (long & i) = 0;
|
|
|
|
virtual Archive & operator & (size_t & i) = 0;
|
|
|
|
virtual Archive & operator & (short & i) = 0;
|
|
|
|
virtual Archive & operator & (unsigned char & i) = 0;
|
|
|
|
virtual Archive & operator & (bool & b) = 0;
|
|
|
|
virtual Archive & operator & (std::string & str) = 0;
|
|
|
|
virtual Archive & operator & (char *& str) = 0;
|
|
|
|
|
2018-12-12 21:18:52 +05:00
|
|
|
virtual Archive & operator & (VersionInfo & version)
|
|
|
|
{
|
|
|
|
if(Output())
|
|
|
|
(*this) << version.to_string();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::string s;
|
|
|
|
(*this) & s;
|
|
|
|
version = VersionInfo(s);
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
2018-12-08 20:10:29 +05:00
|
|
|
|
|
|
|
// Archive std classes ================================================
|
|
|
|
template<typename T>
|
|
|
|
Archive& operator & (std::complex<T>& c)
|
|
|
|
{
|
2018-12-12 15:05:17 +05:00
|
|
|
if(Output())
|
2018-12-08 20:10:29 +05:00
|
|
|
(*this) << c.real() << c.imag();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
T tmp;
|
|
|
|
(*this) & tmp;
|
|
|
|
c.real(tmp);
|
|
|
|
(*this) & tmp;
|
|
|
|
c.imag(tmp);
|
|
|
|
}
|
|
|
|
return (*this);
|
|
|
|
}
|
|
|
|
template<typename T>
|
|
|
|
Archive& operator & (std::vector<T>& v)
|
|
|
|
{
|
|
|
|
size_t size;
|
2018-12-12 15:05:17 +05:00
|
|
|
if(Output())
|
2018-12-08 20:10:29 +05:00
|
|
|
size = v.size();
|
|
|
|
(*this) & size;
|
2018-12-12 15:05:17 +05:00
|
|
|
if(Input())
|
2018-12-08 20:10:29 +05:00
|
|
|
v.resize(size);
|
|
|
|
Do(&v[0], size);
|
|
|
|
return (*this);
|
|
|
|
}
|
|
|
|
template<typename T1, typename T2>
|
|
|
|
Archive& operator& (std::map<T1, T2>& map)
|
|
|
|
{
|
2018-12-12 15:05:17 +05:00
|
|
|
if(Output())
|
2018-12-08 20:10:29 +05:00
|
|
|
{
|
|
|
|
(*this) << size_t(map.size());
|
|
|
|
for(auto& pair : map)
|
|
|
|
(*this) << pair.first << pair.second;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-12-12 21:18:52 +05:00
|
|
|
size_t size = 0;
|
2018-12-08 20:10:29 +05:00
|
|
|
(*this) & size;
|
|
|
|
T1 key; T2 val;
|
|
|
|
for(size_t i = 0; i < size; i++)
|
|
|
|
{
|
|
|
|
T1 key; T2 val;
|
|
|
|
(*this) & key & val;
|
|
|
|
map[key] = val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (*this);
|
|
|
|
}
|
|
|
|
// Archive arrays =====================================================
|
|
|
|
// this functions can be overloaded in Archive implementations for more efficiency
|
2018-12-12 15:05:17 +05:00
|
|
|
template <typename T, typename = typename std::enable_if<is_archivable<T>>::type>
|
2018-12-08 20:10:29 +05:00
|
|
|
Archive & Do (T * data, size_t n)
|
2018-12-10 18:37:27 +05:00
|
|
|
{ for (size_t j = 0; j < n; j++) { (*this) & data[j]; }; return *this; }; // NOLINT
|
2018-12-08 20:10:29 +05:00
|
|
|
|
|
|
|
virtual Archive & Do (double * d, size_t n)
|
2018-12-10 18:37:27 +05:00
|
|
|
{ for (size_t j = 0; j < n; j++) { (*this) & d[j]; }; return *this; }; // NOLINT
|
2018-12-08 20:10:29 +05:00
|
|
|
|
|
|
|
virtual Archive & Do (int * i, size_t n)
|
2018-12-10 18:37:27 +05:00
|
|
|
{ for (size_t j = 0; j < n; j++) { (*this) & i[j]; }; return *this; }; // NOLINT
|
2018-12-08 20:10:29 +05:00
|
|
|
|
|
|
|
virtual Archive & Do (long * i, size_t n)
|
2018-12-10 18:37:27 +05:00
|
|
|
{ for (size_t j = 0; j < n; j++) { (*this) & i[j]; }; return *this; }; // NOLINT
|
2018-12-08 20:10:29 +05:00
|
|
|
|
|
|
|
virtual Archive & Do (size_t * i, size_t n)
|
2018-12-10 18:37:27 +05:00
|
|
|
{ for (size_t j = 0; j < n; j++) { (*this) & i[j]; }; return *this; }; // NOLINT
|
2018-12-08 20:10:29 +05:00
|
|
|
|
|
|
|
virtual Archive & Do (short * i, size_t n)
|
2018-12-10 18:37:27 +05:00
|
|
|
{ for (size_t j = 0; j < n; j++) { (*this) & i[j]; }; return *this; }; // NOLINT
|
2018-12-08 20:10:29 +05:00
|
|
|
|
|
|
|
virtual Archive & Do (unsigned char * i, size_t n)
|
2018-12-10 18:37:27 +05:00
|
|
|
{ for (size_t j = 0; j < n; j++) { (*this) & i[j]; }; return *this; }; // NOLINT
|
2018-12-08 20:10:29 +05:00
|
|
|
|
|
|
|
virtual Archive & Do (bool * b, size_t n)
|
2018-12-10 18:37:27 +05:00
|
|
|
{ for (size_t j = 0; j < n; j++) { (*this) & b[j]; }; return *this; }; // NOLINT
|
2018-12-08 20:10:29 +05:00
|
|
|
|
|
|
|
// Archive a class implementing a (void DoArchive(Archive&)) method =======
|
2018-12-12 15:05:17 +05:00
|
|
|
template<typename T, typename=std::enable_if_t<detail::has_DoArchive<T>::value>>
|
2018-12-08 20:10:29 +05:00
|
|
|
Archive& operator & (T& val)
|
|
|
|
{
|
|
|
|
val.DoArchive(*this); return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Archive shared_ptrs =================================================
|
|
|
|
template <typename T>
|
|
|
|
Archive& operator & (std::shared_ptr<T>& ptr)
|
|
|
|
{
|
|
|
|
if(Output())
|
|
|
|
{
|
|
|
|
// save -2 for nullptr
|
|
|
|
if(!ptr)
|
|
|
|
return (*this) << -2;
|
|
|
|
|
|
|
|
void* reg_ptr = ptr.get();
|
|
|
|
bool neededDowncast = false;
|
|
|
|
// Downcasting is only possible for our registered classes
|
|
|
|
if(typeid(T) != typeid(*ptr))
|
|
|
|
{
|
2018-12-12 15:05:17 +05:00
|
|
|
if(!IsRegistered(Demangle(typeid(*ptr).name())))
|
2018-12-08 20:10:29 +05:00
|
|
|
throw std::runtime_error(std::string("Archive error: Polymorphic type ")
|
2018-12-12 15:05:17 +05:00
|
|
|
+ Demangle(typeid(*ptr).name())
|
2018-12-08 20:10:29 +05:00
|
|
|
+ " not registered for archive");
|
2018-12-12 15:05:17 +05:00
|
|
|
reg_ptr = GetArchiveRegister(Demangle(typeid(*ptr).name())).downcaster(typeid(T), ptr.get());
|
2018-12-08 20:10:29 +05:00
|
|
|
// if there was a true downcast we have to store more information
|
2018-12-10 15:30:45 +05:00
|
|
|
if(reg_ptr != static_cast<void*>(ptr.get()) )
|
2018-12-08 20:10:29 +05:00
|
|
|
neededDowncast = true;
|
|
|
|
}
|
|
|
|
auto pos = shared_ptr2nr.find(reg_ptr);
|
|
|
|
// if not found store -1 and the pointer
|
|
|
|
if(pos == shared_ptr2nr.end())
|
|
|
|
{
|
|
|
|
auto p = ptr.get();
|
|
|
|
(*this) << -1;
|
|
|
|
(*this) & neededDowncast & p;
|
|
|
|
// if we did downcast we store the true type as well
|
|
|
|
if(neededDowncast)
|
2018-12-12 15:05:17 +05:00
|
|
|
(*this) << Demangle(typeid(*ptr).name());
|
2018-12-08 20:10:29 +05:00
|
|
|
shared_ptr2nr[reg_ptr] = shared_ptr_count++;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
// if found store the position and if it has to be downcasted and how
|
|
|
|
(*this) << pos->second << neededDowncast;
|
|
|
|
if(neededDowncast)
|
2018-12-12 15:05:17 +05:00
|
|
|
(*this) << Demangle(typeid(*ptr).name());
|
2018-12-08 20:10:29 +05:00
|
|
|
}
|
|
|
|
else // Input
|
|
|
|
{
|
|
|
|
int nr;
|
|
|
|
(*this) & nr;
|
|
|
|
// -2 restores a nullptr
|
|
|
|
if(nr == -2)
|
|
|
|
{
|
|
|
|
ptr = nullptr;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
// -1 restores a new shared ptr by restoring the inner pointer and creating a shared_ptr to it
|
2018-12-10 18:37:27 +05:00
|
|
|
if (nr == -1)
|
2018-12-08 20:10:29 +05:00
|
|
|
{
|
2018-12-12 15:05:17 +05:00
|
|
|
T* p = nullptr;
|
2018-12-08 20:10:29 +05:00
|
|
|
bool neededDowncast;
|
|
|
|
(*this) & neededDowncast & p;
|
|
|
|
ptr = std::shared_ptr<T>(p);
|
|
|
|
// if we did downcast we need to store a shared_ptr<void> to the true object
|
|
|
|
if(neededDowncast)
|
|
|
|
{
|
|
|
|
std::string name;
|
|
|
|
(*this) & name;
|
|
|
|
auto info = GetArchiveRegister(name);
|
|
|
|
// for this we use an aliasing constructor to create a shared pointer sharing lifetime
|
|
|
|
// with our shared ptr, but pointing to the true object
|
|
|
|
nr2shared_ptr.push_back(std::shared_ptr<void>(std::static_pointer_cast<void>(ptr),
|
|
|
|
info.downcaster(typeid(T),
|
|
|
|
ptr.get())));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
nr2shared_ptr.push_back(ptr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto other = nr2shared_ptr[nr];
|
|
|
|
bool neededDowncast;
|
|
|
|
(*this) & neededDowncast;
|
|
|
|
if(neededDowncast)
|
|
|
|
{
|
|
|
|
// if there was a downcast we can expect the class to be registered (since archiving
|
|
|
|
// wouldn't have worked else)
|
|
|
|
std::string name;
|
|
|
|
(*this) & name;
|
|
|
|
auto info = GetArchiveRegister(name);
|
|
|
|
// same trick as above, create a shared ptr sharing lifetime with
|
|
|
|
// the shared_ptr<void> in the register, but pointing to our object
|
|
|
|
ptr = std::static_pointer_cast<T>(std::shared_ptr<void>(other,
|
|
|
|
info.upcaster(typeid(T),
|
|
|
|
other.get())));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ptr = std::static_pointer_cast<T>(other);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Archive pointers =======================================================
|
|
|
|
template <typename T>
|
|
|
|
Archive & operator& (T *& p)
|
|
|
|
{
|
|
|
|
if (Output())
|
|
|
|
{
|
|
|
|
// if the pointer is null store -2
|
|
|
|
if (!p)
|
|
|
|
return (*this) << -2;
|
2018-12-12 19:35:19 +05:00
|
|
|
auto reg_ptr = static_cast<void*>(p);
|
2018-12-08 20:10:29 +05:00
|
|
|
if(typeid(T) != typeid(*p))
|
|
|
|
{
|
2018-12-12 15:05:17 +05:00
|
|
|
if(!IsRegistered(Demangle(typeid(*p).name())))
|
2018-12-08 20:10:29 +05:00
|
|
|
throw std::runtime_error(std::string("Archive error: Polymorphic type ")
|
2018-12-12 15:05:17 +05:00
|
|
|
+ Demangle(typeid(*p).name())
|
2018-12-08 20:10:29 +05:00
|
|
|
+ " not registered for archive");
|
2018-12-12 15:05:17 +05:00
|
|
|
reg_ptr = GetArchiveRegister(Demangle(typeid(*p).name())).downcaster(typeid(T), static_cast<void*>(p));
|
2018-12-08 20:10:29 +05:00
|
|
|
}
|
|
|
|
auto pos = ptr2nr.find(reg_ptr);
|
|
|
|
// if the pointer is not found in the map create a new entry
|
|
|
|
if (pos == ptr2nr.end())
|
|
|
|
{
|
|
|
|
ptr2nr[reg_ptr] = ptr_count++;
|
|
|
|
if(typeid(*p) == typeid(T))
|
|
|
|
if (std::is_constructible<T>::value)
|
|
|
|
{
|
|
|
|
return (*this) << -1 & (*p);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw std::runtime_error(std::string("Archive error: Class ") +
|
2018-12-12 15:05:17 +05:00
|
|
|
Demangle(typeid(*p).name()) + " does not provide a default constructor!");
|
2018-12-08 20:10:29 +05:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// if a pointer to a base class is archived, the class hierarchy must be registered
|
|
|
|
// to avoid compile time issues we allow this behaviour only for "our" classes that
|
|
|
|
// implement a void DoArchive(Archive&) member function
|
|
|
|
// To recreate the object we need to store the true type of it
|
2018-12-12 15:05:17 +05:00
|
|
|
if(!IsRegistered(Demangle(typeid(*p).name())))
|
2018-12-08 20:10:29 +05:00
|
|
|
throw std::runtime_error(std::string("Archive error: Polymorphic type ")
|
2018-12-12 15:05:17 +05:00
|
|
|
+ Demangle(typeid(*p).name())
|
2018-12-08 20:10:29 +05:00
|
|
|
+ " not registered for archive");
|
2018-12-12 15:05:17 +05:00
|
|
|
return (*this) << -3 << Demangle(typeid(*p).name()) & (*p);
|
2018-12-08 20:10:29 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
(*this) & pos->second;
|
2018-12-10 15:30:45 +05:00
|
|
|
bool downcasted = !(reg_ptr == static_cast<void*>(p) );
|
2018-12-08 20:10:29 +05:00
|
|
|
// store if the class has been downcasted and the name
|
2018-12-12 15:05:17 +05:00
|
|
|
(*this) << downcasted << Demangle(typeid(*p).name());
|
2018-12-08 20:10:29 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int nr;
|
|
|
|
(*this) & nr;
|
|
|
|
if (nr == -2) // restore a nullptr
|
|
|
|
p = nullptr;
|
|
|
|
else if (nr == -1) // create a new pointer of standard type (no virtual or multiple inheritance,...)
|
|
|
|
{
|
2018-12-12 15:05:17 +05:00
|
|
|
p = detail::constructIfPossible<T>();
|
2018-12-08 20:10:29 +05:00
|
|
|
nr2ptr.push_back(p);
|
|
|
|
(*this) & *p;
|
|
|
|
}
|
|
|
|
else if(nr == -3) // restore one of our registered classes that can have multiple inheritance,...
|
|
|
|
{
|
|
|
|
// As stated above, we want this special behaviour only for our classes that implement DoArchive
|
|
|
|
std::string name;
|
|
|
|
(*this) & name;
|
|
|
|
auto info = GetArchiveRegister(name);
|
|
|
|
// the creator creates a new object of type name, and returns a void* pointing
|
|
|
|
// to T (which may have an offset)
|
2018-12-10 15:50:36 +05:00
|
|
|
p = static_cast<T*>(info.creator(typeid(T)));
|
2018-12-08 20:10:29 +05:00
|
|
|
// we store the downcasted pointer (to be able to find it again from
|
|
|
|
// another class in a multiple inheritance tree)
|
|
|
|
nr2ptr.push_back(info.downcaster(typeid(T),p));
|
|
|
|
(*this) & *p;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bool downcasted;
|
|
|
|
std::string name;
|
|
|
|
(*this) & downcasted & name;
|
|
|
|
if(downcasted)
|
|
|
|
{
|
|
|
|
// if the class has been downcasted we can assume it is in the register
|
|
|
|
auto info = GetArchiveRegister(name);
|
2018-12-10 15:50:36 +05:00
|
|
|
p = static_cast<T*>(info.upcaster(typeid(T), nr2ptr[nr]));
|
2018-12-08 20:10:29 +05:00
|
|
|
}
|
|
|
|
else
|
2018-12-10 15:50:36 +05:00
|
|
|
p = static_cast<T*>(nr2ptr[nr]);
|
2018-12-08 20:10:29 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// const ptr
|
|
|
|
template<typename T>
|
|
|
|
Archive& operator &(const T*& t)
|
|
|
|
{
|
2018-12-10 17:32:03 +05:00
|
|
|
return (*this) & const_cast<T*&>(t); // NOLINT
|
2018-12-08 20:10:29 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Write a read only variable
|
|
|
|
template <typename T>
|
|
|
|
Archive & operator << (const T & t)
|
|
|
|
{
|
|
|
|
T ht(t);
|
|
|
|
(*this) & ht;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void FlushBuffer() {}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static std::map<std::string, VersionInfo>& GetLibraryVersions();
|
2018-12-12 21:45:06 +05:00
|
|
|
|
2018-12-08 20:10:29 +05:00
|
|
|
private:
|
2018-12-12 21:45:06 +05:00
|
|
|
template<typename T, typename ... Bases>
|
|
|
|
friend class RegisterClassForArchive;
|
|
|
|
|
|
|
|
// Returns ClassArchiveInfo of Demangled typeid
|
|
|
|
static const detail::ClassArchiveInfo& GetArchiveRegister(const std::string& classname);
|
|
|
|
// Set ClassArchiveInfo for Demangled typeid, this is done by creating an instance of
|
|
|
|
// RegisterClassForArchive<type, bases...>
|
|
|
|
static void SetArchiveRegister(const std::string& classname, const detail::ClassArchiveInfo& info);
|
|
|
|
static bool IsRegistered(const std::string& classname);
|
|
|
|
|
|
|
|
// Helper class for up-/downcasting
|
|
|
|
template<typename T, typename ... Bases>
|
|
|
|
struct Caster{};
|
|
|
|
|
2018-12-08 20:10:29 +05:00
|
|
|
template<typename T>
|
|
|
|
struct Caster<T>
|
|
|
|
{
|
2018-12-10 17:32:03 +05:00
|
|
|
static void* tryUpcast (const std::type_info& /*unused*/, T* /*unused*/)
|
2018-12-08 20:10:29 +05:00
|
|
|
{
|
|
|
|
throw std::runtime_error("Upcast not successful, some classes are not registered properly for archiving!");
|
|
|
|
}
|
2018-12-10 17:32:03 +05:00
|
|
|
static void* tryDowncast (const std::type_info& /*unused*/, void* /*unused*/)
|
2018-12-08 20:10:29 +05:00
|
|
|
{
|
|
|
|
throw std::runtime_error("Downcast not successful, some classes are not registered properly for archiving!");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T, typename B1, typename ... Brest>
|
|
|
|
struct Caster<T,B1,Brest...>
|
|
|
|
{
|
|
|
|
static void* tryUpcast(const std::type_info& ti, T* p)
|
|
|
|
{
|
|
|
|
try
|
2018-12-12 20:57:48 +05:00
|
|
|
{ return GetArchiveRegister(Demangle(typeid(B1).name())).
|
|
|
|
upcaster(ti, static_cast<void*>(dynamic_cast<B1*>(p))); }
|
2018-12-10 18:37:27 +05:00
|
|
|
catch(std::exception&)
|
2018-12-08 20:10:29 +05:00
|
|
|
{ return Caster<T, Brest...>::tryUpcast(ti, p); }
|
|
|
|
}
|
|
|
|
|
|
|
|
static void* tryDowncast(const std::type_info& ti, void* p)
|
|
|
|
{
|
|
|
|
if(typeid(B1) == ti)
|
2018-12-10 15:50:36 +05:00
|
|
|
return dynamic_cast<T*>(static_cast<B1*>(p));
|
2018-12-08 20:10:29 +05:00
|
|
|
try
|
2018-12-12 20:57:48 +05:00
|
|
|
{
|
|
|
|
return dynamic_cast<T*>(static_cast<B1*>(GetArchiveRegister(Demangle(typeid(B1).name())).
|
|
|
|
downcaster(ti, p)));
|
|
|
|
}
|
2018-12-10 18:37:27 +05:00
|
|
|
catch(std::exception&)
|
2018-12-12 20:57:48 +05:00
|
|
|
{
|
|
|
|
return Caster<T, Brest...>::tryDowncast(ti, p);
|
|
|
|
}
|
2018-12-08 20:10:29 +05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T, typename ... Bases>
|
2018-12-12 18:11:28 +05:00
|
|
|
class RegisterClassForArchive
|
2018-12-08 20:10:29 +05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
RegisterClassForArchive()
|
|
|
|
{
|
2018-12-12 21:45:06 +05:00
|
|
|
static_assert(detail::all_of_tmpl<std::is_base_of<Bases,T>::value...>,
|
2018-12-08 20:10:29 +05:00
|
|
|
"Variadic template arguments must be base classes of T");
|
2018-12-12 15:05:17 +05:00
|
|
|
detail::ClassArchiveInfo info;
|
2018-12-08 20:10:29 +05:00
|
|
|
info.creator = [this,&info](const std::type_info& ti) -> void*
|
2018-12-12 15:05:17 +05:00
|
|
|
{ return typeid(T) == ti ? detail::constructIfPossible<T>()
|
|
|
|
: Archive::Caster<T, Bases...>::tryUpcast(ti, detail::constructIfPossible<T>()); };
|
2018-12-08 20:10:29 +05:00
|
|
|
info.upcaster = [this](const std::type_info& ti, void* p) -> void*
|
2018-12-10 15:50:36 +05:00
|
|
|
{ return typeid(T) == ti ? p : Archive::Caster<T, Bases...>::tryUpcast(ti, static_cast<T*>(p)); };
|
2018-12-08 20:10:29 +05:00
|
|
|
info.downcaster = [this](const std::type_info& ti, void* p) -> void*
|
|
|
|
{ return typeid(T) == ti ? p : Archive::Caster<T, Bases...>::tryDowncast(ti, p); };
|
2018-12-12 15:05:17 +05:00
|
|
|
Archive::SetArchiveRegister(std::string(Demangle(typeid(T).name())),info);
|
2018-12-08 20:10:29 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2018-11-29 22:35:30 +05:00
|
|
|
// BinaryOutArchive ======================================================================
|
2018-12-07 17:08:00 +05:00
|
|
|
class NGCORE_API BinaryOutArchive : public Archive
|
2018-11-29 22:35:30 +05:00
|
|
|
{
|
2018-12-10 18:37:27 +05:00
|
|
|
static constexpr size_t BUFFERSIZE = 1024;
|
2018-12-14 18:40:01 +05:00
|
|
|
char buffer[BUFFERSIZE] = {};
|
|
|
|
size_t ptr = 0;
|
2018-12-05 18:20:24 +05:00
|
|
|
std::shared_ptr<std::ostream> fout;
|
2018-11-29 22:35:30 +05:00
|
|
|
public:
|
2018-12-10 18:37:27 +05:00
|
|
|
BinaryOutArchive() = delete;
|
|
|
|
BinaryOutArchive(const BinaryOutArchive&) = delete;
|
|
|
|
BinaryOutArchive(BinaryOutArchive&&) = delete;
|
|
|
|
BinaryOutArchive(std::shared_ptr<std::ostream>&& afout)
|
|
|
|
: Archive(true), fout(std::move(afout))
|
2018-12-05 18:20:24 +05:00
|
|
|
{
|
|
|
|
(*this) & GetLibraryVersions();
|
|
|
|
}
|
2018-12-10 18:37:27 +05:00
|
|
|
BinaryOutArchive(const std::string& filename)
|
2018-11-29 22:35:30 +05:00
|
|
|
: BinaryOutArchive(std::make_shared<std::ofstream>(filename)) {}
|
2018-12-10 18:37:27 +05:00
|
|
|
~BinaryOutArchive () override { FlushBuffer(); }
|
|
|
|
|
|
|
|
BinaryOutArchive& operator=(const BinaryOutArchive&) = delete;
|
|
|
|
BinaryOutArchive& operator=(BinaryOutArchive&&) = delete;
|
2018-11-29 22:35:30 +05:00
|
|
|
|
2018-12-12 15:24:11 +05:00
|
|
|
const VersionInfo& GetVersion(const std::string& library) override
|
2018-12-05 18:20:24 +05:00
|
|
|
{ return GetLibraryVersions()[library]; }
|
|
|
|
|
2018-12-03 20:28:04 +05:00
|
|
|
using Archive::operator&;
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (double & d) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ return Write(d); }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (int & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ return Write(i); }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (short & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ return Write(i); }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (long & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ return Write(i); }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (size_t & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ return Write(i); }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (unsigned char & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ return Write(i); }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (bool & b) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ return Write(b); }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (std::string & str) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{
|
|
|
|
int len = str.length();
|
2018-12-06 21:53:44 +05:00
|
|
|
(*this) & len;
|
|
|
|
FlushBuffer();
|
|
|
|
if(len)
|
|
|
|
fout->write (&str[0], len);
|
2018-11-29 22:35:30 +05:00
|
|
|
return *this;
|
|
|
|
}
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (char *& str) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{
|
2018-12-06 21:53:44 +05:00
|
|
|
long len = str ? strlen (str) : -1;
|
|
|
|
(*this) & len;
|
|
|
|
FlushBuffer();
|
|
|
|
if(len > 0)
|
2018-12-10 18:37:27 +05:00
|
|
|
fout->write (&str[0], len); // NOLINT
|
2018-11-29 22:35:30 +05:00
|
|
|
return *this;
|
|
|
|
}
|
2018-12-10 15:49:38 +05:00
|
|
|
void FlushBuffer() override
|
2018-11-29 22:35:30 +05:00
|
|
|
{
|
|
|
|
if (ptr > 0)
|
|
|
|
{
|
|
|
|
fout->write(&buffer[0], ptr);
|
|
|
|
ptr = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
template <typename T>
|
|
|
|
Archive & Write (T x)
|
|
|
|
{
|
|
|
|
if (unlikely(ptr > BUFFERSIZE-sizeof(T)))
|
|
|
|
{
|
|
|
|
fout->write(&buffer[0], ptr);
|
2018-12-10 17:32:03 +05:00
|
|
|
*reinterpret_cast<T*>(&buffer[0]) = x; // NOLINT
|
2018-11-29 22:35:30 +05:00
|
|
|
ptr = sizeof(T);
|
|
|
|
return *this;
|
|
|
|
}
|
2018-12-10 17:32:03 +05:00
|
|
|
*reinterpret_cast<T*>(&buffer[ptr]) = x; // NOLINT
|
2018-11-29 22:35:30 +05:00
|
|
|
ptr += sizeof(T);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// BinaryInArchive ======================================================================
|
2018-12-07 17:08:00 +05:00
|
|
|
class NGCORE_API BinaryInArchive : public Archive
|
2018-11-29 22:35:30 +05:00
|
|
|
{
|
2018-12-10 18:37:27 +05:00
|
|
|
std::map<std::string, VersionInfo> vinfo{};
|
2018-11-29 22:35:30 +05:00
|
|
|
std::shared_ptr<std::istream> fin;
|
|
|
|
public:
|
2018-12-10 18:37:27 +05:00
|
|
|
BinaryInArchive (std::shared_ptr<std::istream>&& afin)
|
|
|
|
: Archive(false), fin(std::move(afin))
|
2018-12-05 18:20:24 +05:00
|
|
|
{
|
|
|
|
(*this) & vinfo;
|
|
|
|
}
|
2018-12-10 18:37:27 +05:00
|
|
|
BinaryInArchive (const std::string& filename)
|
2018-12-05 18:20:24 +05:00
|
|
|
: BinaryInArchive(std::make_shared<std::ifstream>(filename)) { ; }
|
|
|
|
|
2018-12-12 15:24:11 +05:00
|
|
|
const VersionInfo& GetVersion(const std::string& library) override
|
2018-12-05 18:20:24 +05:00
|
|
|
{ return vinfo[library]; }
|
2018-11-29 22:35:30 +05:00
|
|
|
|
2018-12-03 20:28:04 +05:00
|
|
|
using Archive::operator&;
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (double & d) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ Read(d); return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (int & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ Read(i); return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (short & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ Read(i); return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (long & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ Read(i); return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (size_t & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ Read(i); return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (unsigned char & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ Read(i); return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (bool & b) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ Read(b); return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (std::string & str) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{
|
|
|
|
int len;
|
2018-12-06 21:53:44 +05:00
|
|
|
(*this) & len;
|
2018-11-29 22:35:30 +05:00
|
|
|
str.resize(len);
|
2018-12-06 21:53:44 +05:00
|
|
|
if(len)
|
2018-12-10 18:37:27 +05:00
|
|
|
fin->read(&str[0], len); // NOLINT
|
2018-11-29 22:35:30 +05:00
|
|
|
return *this;
|
|
|
|
}
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (char *& str) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{
|
2018-12-06 21:53:44 +05:00
|
|
|
long len;
|
|
|
|
(*this) & len;
|
|
|
|
if(len == -1)
|
|
|
|
str = nullptr;
|
|
|
|
else
|
|
|
|
{
|
2018-12-10 18:37:27 +05:00
|
|
|
str = new char[len+1]; // NOLINT
|
|
|
|
fin->read(&str[0], len); // NOLINT
|
|
|
|
str[len] = '\0'; // NOLINT
|
2018-12-06 21:53:44 +05:00
|
|
|
}
|
2018-11-29 22:35:30 +05:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & Do (double * d, size_t n) override
|
2018-12-10 18:37:27 +05:00
|
|
|
{ fin->read(reinterpret_cast<char*>(d), n*sizeof(double)); return *this; } // NOLINT
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & Do (int * i, size_t n) override
|
2018-12-10 18:37:27 +05:00
|
|
|
{ fin->read(reinterpret_cast<char*>(i), n*sizeof(int)); return *this; } // NOLINT
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & Do (size_t * i, size_t n) override
|
2018-12-10 18:37:27 +05:00
|
|
|
{ fin->read(reinterpret_cast<char*>(i), n*sizeof(size_t)); return *this; } // NOLINT
|
2018-11-29 22:35:30 +05:00
|
|
|
|
|
|
|
private:
|
|
|
|
template<typename T>
|
|
|
|
inline void Read(T& val)
|
2018-12-10 18:37:27 +05:00
|
|
|
{ fin->read(reinterpret_cast<char*>(&val), sizeof(T)); } // NOLINT
|
2018-11-29 22:35:30 +05:00
|
|
|
};
|
|
|
|
|
|
|
|
// TextOutArchive ======================================================================
|
2018-12-07 17:08:00 +05:00
|
|
|
class NGCORE_API TextOutArchive : public Archive
|
2018-11-29 22:35:30 +05:00
|
|
|
{
|
|
|
|
std::shared_ptr<std::ostream> fout;
|
|
|
|
public:
|
2018-12-10 18:37:27 +05:00
|
|
|
TextOutArchive (std::shared_ptr<std::ostream>&& afout)
|
|
|
|
: Archive(true), fout(std::move(afout))
|
2018-12-05 18:20:24 +05:00
|
|
|
{
|
|
|
|
(*this) & GetLibraryVersions();
|
|
|
|
}
|
2018-12-10 18:37:27 +05:00
|
|
|
TextOutArchive (const std::string& filename) :
|
2018-12-08 20:10:29 +05:00
|
|
|
TextOutArchive(std::make_shared<std::ofstream>(filename)) { }
|
2018-11-29 22:35:30 +05:00
|
|
|
|
2018-12-12 15:24:11 +05:00
|
|
|
const VersionInfo& GetVersion(const std::string& library) override
|
2018-12-05 18:20:24 +05:00
|
|
|
{ return GetLibraryVersions()[library]; }
|
|
|
|
|
2018-11-29 22:35:30 +05:00
|
|
|
using Archive::operator&;
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (double & d) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ *fout << d << '\n'; return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (int & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ *fout << i << '\n'; return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (short & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ *fout << i << '\n'; return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (long & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ *fout << i << '\n'; return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (size_t & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ *fout << i << '\n'; return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (unsigned char & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ *fout << int(i) << '\n'; return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (bool & b) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ *fout << (b ? 't' : 'f') << '\n'; return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (std::string & str) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{
|
|
|
|
int len = str.length();
|
|
|
|
*fout << len << '\n';
|
2018-12-05 18:20:24 +05:00
|
|
|
if(len)
|
|
|
|
{
|
2018-12-10 18:37:27 +05:00
|
|
|
fout->write(&str[0], len); // NOLINT
|
2018-12-05 18:20:24 +05:00
|
|
|
*fout << '\n';
|
|
|
|
}
|
2018-11-29 22:35:30 +05:00
|
|
|
return *this;
|
|
|
|
}
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (char *& str) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{
|
2018-12-06 21:53:44 +05:00
|
|
|
long len = str ? strlen (str) : -1;
|
|
|
|
*this & len;
|
|
|
|
if(len > 0)
|
2018-12-05 18:20:24 +05:00
|
|
|
{
|
2018-12-10 18:37:27 +05:00
|
|
|
fout->write (&str[0], len); // NOLINT
|
2018-12-05 18:20:24 +05:00
|
|
|
*fout << '\n';
|
|
|
|
}
|
2018-11-29 22:35:30 +05:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// TextInArchive ======================================================================
|
2018-12-07 17:08:00 +05:00
|
|
|
class NGCORE_API TextInArchive : public Archive
|
2018-11-29 22:35:30 +05:00
|
|
|
{
|
2018-12-10 18:37:27 +05:00
|
|
|
std::map<std::string, VersionInfo> vinfo{};
|
2018-11-29 22:35:30 +05:00
|
|
|
std::shared_ptr<std::istream> fin;
|
|
|
|
public:
|
2018-12-10 18:37:27 +05:00
|
|
|
TextInArchive (std::shared_ptr<std::istream>&& afin) :
|
|
|
|
Archive(false), fin(std::move(afin))
|
2018-12-05 18:20:24 +05:00
|
|
|
{
|
|
|
|
(*this) & vinfo;
|
|
|
|
}
|
2018-12-10 18:37:27 +05:00
|
|
|
TextInArchive (const std::string& filename)
|
2018-11-29 22:35:30 +05:00
|
|
|
: TextInArchive(std::make_shared<std::ifstream>(filename)) {}
|
|
|
|
|
2018-12-12 15:24:11 +05:00
|
|
|
const VersionInfo& GetVersion(const std::string& library) override
|
2018-12-05 18:20:24 +05:00
|
|
|
{ return vinfo[library]; }
|
|
|
|
|
2018-11-29 22:35:30 +05:00
|
|
|
using Archive::operator&;
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (double & d) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ *fin >> d; return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (int & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ *fin >> i; return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (short & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ *fin >> i; return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (long & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ *fin >> i; return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (size_t & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ *fin >> i; return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (unsigned char & i) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ int _i; *fin >> _i; i = _i; return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (bool & b) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{ char c; *fin >> c; b = (c=='t'); return *this; }
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (std::string & str) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{
|
|
|
|
int len;
|
|
|
|
*fin >> len;
|
|
|
|
char ch;
|
|
|
|
fin->get(ch); // '\n'
|
|
|
|
str.resize(len);
|
2018-12-05 18:20:24 +05:00
|
|
|
if(len)
|
|
|
|
fin->get(&str[0], len+1, '\0');
|
2018-11-29 22:35:30 +05:00
|
|
|
return *this;
|
|
|
|
}
|
2018-12-10 15:49:38 +05:00
|
|
|
Archive & operator & (char *& str) override
|
2018-11-29 22:35:30 +05:00
|
|
|
{
|
2018-12-06 21:53:44 +05:00
|
|
|
long len;
|
|
|
|
(*this) & len;
|
2018-11-29 22:35:30 +05:00
|
|
|
char ch;
|
2018-12-06 21:53:44 +05:00
|
|
|
if(len == -1)
|
|
|
|
{
|
|
|
|
str = nullptr;
|
|
|
|
return (*this);
|
|
|
|
}
|
2018-12-10 18:37:27 +05:00
|
|
|
str = new char[len+1]; // NOLINT
|
2018-12-05 18:20:24 +05:00
|
|
|
if(len)
|
2018-12-06 21:53:44 +05:00
|
|
|
{
|
|
|
|
fin->get(ch); // \n
|
2018-12-10 18:37:27 +05:00
|
|
|
fin->get(&str[0], len+1, '\0'); // NOLINT
|
2018-12-06 21:53:44 +05:00
|
|
|
}
|
2018-12-10 18:37:27 +05:00
|
|
|
str[len] = '\0'; // NOLINT
|
2018-11-29 22:35:30 +05:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
};
|
2018-12-08 20:10:29 +05:00
|
|
|
} // namespace ngcore
|
|
|
|
|
|
|
|
#endif // NETGEN_CORE_ARCHIVE_HPP
|