mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
49 lines
1.4 KiB
C++
49 lines
1.4 KiB
C++
|
|
#include "archive.hpp"
|
|
#include "register_archive.hpp"
|
|
#include "version.hpp"
|
|
|
|
#ifndef WIN32
|
|
#include <cxxabi.h>
|
|
#endif
|
|
|
|
namespace ngcore
|
|
{
|
|
// clang-tidy should ignore this static object
|
|
// static std::map<std::string, detail::ClassArchiveInfo> type_register; // NOLINT
|
|
|
|
auto& GetTypeRegister()
|
|
{
|
|
static std::map<std::string, detail::ClassArchiveInfo> type_register;
|
|
return type_register;
|
|
}
|
|
|
|
const detail::ClassArchiveInfo& Archive :: GetArchiveRegister(const std::string& classname)
|
|
{
|
|
// if(type_register == nullptr) type_register =
|
|
// std::make_unique<std::map<std::string, detail::ClassArchiveInfo>>();
|
|
return GetTypeRegister()[classname];
|
|
}
|
|
void Archive :: SetArchiveRegister(const std::string& classname, const detail::ClassArchiveInfo& info)
|
|
{
|
|
// if(type_register == nullptr) type_register =
|
|
// std::make_unique<std::map<std::string, detail::ClassArchiveInfo>>();
|
|
GetTypeRegister()[classname] = info;
|
|
}
|
|
bool Archive :: IsRegistered(const std::string& classname)
|
|
{
|
|
// if(type_register == nullptr) type_register =
|
|
// std::make_unique<std::map<std::string, detail::ClassArchiveInfo>>();
|
|
return GetTypeRegister().count(classname) != 0;
|
|
}
|
|
|
|
#ifdef NETGEN_PYTHON
|
|
pybind11::object CastAnyToPy(const std::any& a)
|
|
{
|
|
auto info = Archive::GetArchiveRegister(Demangle(a.type().name()));
|
|
return info.anyToPyCaster(a);
|
|
}
|
|
#endif // NETGEN_PYTHON
|
|
|
|
} // namespace ngcore
|