123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603 |
- /*
- * BinaryDeserializer.h, part of VCMI engine
- *
- * Authors: listed in file AUTHORS in main folder
- *
- * License: GNU General Public License v2.0 or later
- * Full text of license available in license.txt file, in main folder
- *
- */
- #pragma once
- #include <boost/mpl/vector.hpp>
- #include <boost/mpl/for_each.hpp>
- #include "CTypeList.h"
- #include "../mapObjects/CGHeroInstance.h"
- #include "../../Global.h"
- VCMI_LIB_NAMESPACE_BEGIN
- class CStackInstance;
- class DLL_LINKAGE CLoaderBase
- {
- protected:
- IBinaryReader * reader;
- public:
- CLoaderBase(IBinaryReader * r): reader(r){};
- inline int read(void * data, unsigned size)
- {
- return reader->read(data, size);
- };
- };
- /// Main class for deserialization of classes from binary form
- /// Effectively revesed version of BinarySerializer
- class DLL_LINKAGE BinaryDeserializer : public CLoaderBase
- {
- template<typename Variant, typename Source>
- struct VariantLoaderHelper
- {
- Source & source;
- std::vector<std::function<Variant()>> funcs;
- template <class V>
- struct mpl_types_impl;
- template <class... Ts>
- struct mpl_types_impl<std::variant<Ts...>> {
- using type = boost::mpl::vector<Ts...>;
- };
- template <class V>
- using mpl_types = typename mpl_types_impl<V>::type;
- VariantLoaderHelper(Source & source):
- source(source)
- {
- boost::mpl::for_each<mpl_types<Variant>>(std::ref(*this));
- }
- template<typename Type>
- void operator()(Type)
- {
- funcs.push_back([&]() -> Variant
- {
- Type obj;
- source.load(obj);
- return Variant(obj);
- });
- }
- };
- template<typename Ser,typename T>
- struct LoadIfStackInstance
- {
- static bool invoke(Ser &s, T &data)
- {
- return false;
- }
- };
- template<typename Ser>
- struct LoadIfStackInstance<Ser, CStackInstance *>
- {
- static bool invoke(Ser &s, CStackInstance* &data)
- {
- CArmedInstance *armedObj;
- SlotID slot;
- s.load(armedObj);
- s.load(slot);
- if(slot != SlotID::COMMANDER_SLOT_PLACEHOLDER)
- {
- assert(armedObj->hasStackAtSlot(slot));
- data = armedObj->stacks[slot];
- }
- else
- {
- auto * hero = dynamic_cast<CGHeroInstance *>(armedObj);
- assert(hero);
- assert(hero->commander);
- data = hero->commander;
- }
- return true;
- }
- };
- template <typename T, typename Enable = void>
- struct ClassObjectCreator
- {
- static T *invoke()
- {
- static_assert(!std::is_abstract<T>::value, "Cannot call new upon abstract classes!");
- return new T();
- }
- };
- template<typename T>
- struct ClassObjectCreator<T, typename std::enable_if<std::is_abstract<T>::value>::type>
- {
- static T *invoke()
- {
- throw std::runtime_error("Something went really wrong during deserialization. Attempted creating an object of an abstract class " + std::string(typeid(T).name()));
- }
- };
- STRONG_INLINE ui32 readAndCheckLength()
- {
- ui32 length;
- load(length);
- //NOTE: also used for h3m's embedded in campaigns, so it may be quite large in some cases (e.g. XXL maps with multiple objects)
- if(length > 1000000)
- {
- logGlobal->warn("Warning: very big length: %d", length);
- reader->reportState(logGlobal);
- };
- return length;
- }
- template <typename T> class CPointerLoader;
- class CBasicPointerLoader
- {
- public:
- virtual const std::type_info * loadPtr(CLoaderBase &ar, void *data, ui32 pid) const =0; //data is pointer to the ACTUAL POINTER
- virtual ~CBasicPointerLoader(){}
- template<typename T> static CBasicPointerLoader *getApplier(const T * t=nullptr)
- {
- return new CPointerLoader<T>();
- }
- };
- template <typename T> class CPointerLoader : public CBasicPointerLoader
- {
- public:
- const std::type_info * loadPtr(CLoaderBase &ar, void *data, ui32 pid) const override //data is pointer to the ACTUAL POINTER
- {
- auto & s = static_cast<BinaryDeserializer &>(ar);
- T *&ptr = *static_cast<T**>(data);
- //create new object under pointer
- typedef typename std::remove_pointer<T>::type npT;
- ptr = ClassObjectCreator<npT>::invoke(); //does new npT or throws for abstract classes
- s.ptrAllocated(ptr, pid);
- //T is most derived known type, it's time to call actual serialize
- assert(s.fileVersion != 0);
- ptr->serialize(s,s.fileVersion);
- return &typeid(T);
- }
- };
- CApplier<CBasicPointerLoader> applier;
- int write(const void * data, unsigned size);
- public:
- bool reverseEndianess; //if source has different endianness than us, we reverse bytes
- si32 fileVersion;
- std::map<ui32, void*> loadedPointers;
- std::map<ui32, const std::type_info*> loadedPointersTypes;
- std::map<const void*, std::any> loadedSharedPointers;
- bool smartPointerSerialization;
- bool saving;
- BinaryDeserializer(IBinaryReader * r): CLoaderBase(r)
- {
- saving = false;
- fileVersion = 0;
- smartPointerSerialization = true;
- reverseEndianess = false;
- }
- template<class T>
- BinaryDeserializer & operator&(T & t)
- {
- this->load(t);
- return * this;
- }
- template < class T, typename std::enable_if < std::is_fundamental<T>::value && !std::is_same<T, bool>::value, int >::type = 0 >
- void load(T &data)
- {
- unsigned length = sizeof(data);
- char * dataPtr = reinterpret_cast<char *>(&data);
- this->read(dataPtr,length);
- if(reverseEndianess)
- std::reverse(dataPtr, dataPtr + length);
- }
- template < typename T, typename std::enable_if < is_serializeable<BinaryDeserializer, T>::value, int >::type = 0 >
- void load(T &data)
- {
- assert( fileVersion != 0 );
- ////that const cast is evil because it allows to implicitly overwrite const objects when deserializing
- typedef typename std::remove_const<T>::type nonConstT;
- auto & hlp = const_cast<nonConstT &>(data);
- hlp.serialize(*this,fileVersion);
- }
- template < typename T, typename std::enable_if < std::is_array<T>::value, int >::type = 0 >
- void load(T &data)
- {
- ui32 size = std::size(data);
- for(ui32 i = 0; i < size; i++)
- load(data[i]);
- }
- template < typename T, typename std::enable_if < std::is_enum<T>::value, int >::type = 0 >
- void load(T &data)
- {
- si32 read;
- load( read );
- data = static_cast<T>(read);
- }
- template < typename T, typename std::enable_if < std::is_same<T, bool>::value, int >::type = 0 >
- void load(T &data)
- {
- ui8 read;
- load( read );
- data = static_cast<bool>(read);
- }
- template < typename T, typename std::enable_if < std::is_same<T, std::vector<bool> >::value, int >::type = 0 >
- void load(T & data)
- {
- std::vector<ui8> convData;
- load(convData);
- convData.resize(data.size());
- range::copy(convData, data.begin());
- }
- template <typename T, typename std::enable_if < !std::is_same<T, bool >::value, int >::type = 0>
- void load(std::vector<T> &data)
- {
- ui32 length = readAndCheckLength();
- data.resize(length);
- for(ui32 i=0;i<length;i++)
- load( data[i]);
- }
- template < typename T, typename std::enable_if < std::is_pointer<T>::value, int >::type = 0 >
- void load(T &data)
- {
- ui8 hlp;
- load( hlp );
- if(!hlp)
- {
- data = nullptr;
- return;
- }
- if(reader->smartVectorMembersSerialization)
- {
- typedef typename std::remove_const<typename std::remove_pointer<T>::type>::type TObjectType; //eg: const CGHeroInstance * => CGHeroInstance
- typedef typename VectorizedTypeFor<TObjectType>::type VType; //eg: CGHeroInstance -> CGobjectInstance
- typedef typename VectorizedIDType<TObjectType>::type IDType;
- if(const auto *info = reader->getVectorizedTypeInfo<VType, IDType>())
- {
- IDType id;
- load(id);
- if(id != IDType(-1))
- {
- data = static_cast<T>(reader->getVectorItemFromId<VType, IDType>(*info, id));
- return;
- }
- }
- }
- if(reader->sendStackInstanceByIds)
- {
- bool gotLoaded = LoadIfStackInstance<BinaryDeserializer,T>::invoke(* this, data);
- if(gotLoaded)
- return;
- }
- ui32 pid = 0xffffffff; //pointer id (or maybe rather pointee id)
- if(smartPointerSerialization)
- {
- load( pid ); //get the id
- auto i = loadedPointers.find(pid); //lookup
- if(i != loadedPointers.end())
- {
- // We already got this pointer
- // Cast it in case we are loading it to a non-first base pointer
- assert(loadedPointersTypes.count(pid));
- data = reinterpret_cast<T>(typeList.castRaw(i->second, loadedPointersTypes.at(pid), &typeid(typename std::remove_const<typename std::remove_pointer<T>::type>::type)));
- return;
- }
- }
- //get type id
- ui16 tid;
- load( tid );
- if(!tid)
- {
- typedef typename std::remove_pointer<T>::type npT;
- typedef typename std::remove_const<npT>::type ncpT;
- data = ClassObjectCreator<ncpT>::invoke();
- ptrAllocated(data, pid);
- load(*data);
- }
- else
- {
- auto * app = applier.getApplier(tid);
- if(app == nullptr)
- {
- logGlobal->error("load %d %d - no loader exists", tid, pid);
- data = nullptr;
- return;
- }
- auto typeInfo = app->loadPtr(*this,&data, pid);
- data = reinterpret_cast<T>(typeList.castRaw((void*)data, typeInfo, &typeid(typename std::remove_const<typename std::remove_pointer<T>::type>::type)));
- }
- }
- template <typename T>
- void ptrAllocated(const T *ptr, ui32 pid)
- {
- if(smartPointerSerialization && pid != 0xffffffff)
- {
- loadedPointersTypes[pid] = &typeid(T);
- loadedPointers[pid] = (void*)ptr; //add loaded pointer to our lookup map; cast is to avoid errors with const T* pt
- }
- }
- template<typename Base, typename Derived> void registerType(const Base * b = nullptr, const Derived * d = nullptr)
- {
- applier.registerType(b, d);
- }
- template <typename T>
- void load(std::shared_ptr<T> &data)
- {
- typedef typename std::remove_const<T>::type NonConstT;
- NonConstT *internalPtr;
- load(internalPtr);
- void *internalPtrDerived = typeList.castToMostDerived(internalPtr);
- if(internalPtr)
- {
- auto itr = loadedSharedPointers.find(internalPtrDerived);
- if(itr != loadedSharedPointers.end())
- {
- // This pointers is already loaded. The "data" needs to be pointed to it,
- // so their shared state is actually shared.
- try
- {
- auto actualType = typeList.getTypeInfo(internalPtr);
- auto typeWeNeedToReturn = typeList.getTypeInfo<T>();
- if(*actualType == *typeWeNeedToReturn)
- {
- // No casting needed, just unpack already stored shared_ptr and return it
- data = std::any_cast<std::shared_ptr<T>>(itr->second);
- }
- else
- {
- // We need to perform series of casts
- auto ret = typeList.castShared(itr->second, actualType, typeWeNeedToReturn);
- data = std::any_cast<std::shared_ptr<T>>(ret);
- }
- }
- catch(std::exception &e)
- {
- logGlobal->error(e.what());
- logGlobal->error("Failed to cast stored shared ptr. Real type: %s. Needed type %s. FIXME FIXME FIXME", itr->second.type().name(), typeid(std::shared_ptr<T>).name());
- //TODO scenario with inheritance -> we can have stored ptr to base and load ptr to derived (or vice versa)
- throw;
- }
- }
- else
- {
- auto hlp = std::shared_ptr<NonConstT>(internalPtr);
- data = hlp;
- loadedSharedPointers[internalPtrDerived] = typeList.castSharedToMostDerived(hlp);
- }
- }
- else
- data.reset();
- }
- template <typename T>
- void load(std::shared_ptr<const T> & data)
- {
- std::shared_ptr<T> nonConstData;
- load(nonConstData);
- data = nonConstData;
- }
- template <typename T>
- void load(std::unique_ptr<T> &data)
- {
- T *internalPtr;
- load( internalPtr );
- data.reset(internalPtr);
- }
- template <typename T, size_t N>
- void load(std::array<T, N> &data)
- {
- for(ui32 i = 0; i < N; i++)
- load( data[i] );
- }
- template <typename T>
- void load(std::set<T> &data)
- {
- ui32 length = readAndCheckLength();
- data.clear();
- T ins;
- for(ui32 i=0;i<length;i++)
- {
- load( ins );
- data.insert(ins);
- }
- }
- template <typename T, typename U>
- void load(std::unordered_set<T, U> &data)
- {
- ui32 length = readAndCheckLength();
- data.clear();
- T ins;
- for(ui32 i=0;i<length;i++)
- {
- load(ins);
- data.insert(ins);
- }
- }
- template <typename T>
- void load(std::list<T> &data)
- {
- ui32 length = readAndCheckLength();
- data.clear();
- T ins;
- for(ui32 i=0;i<length;i++)
- {
- load(ins);
- data.push_back(ins);
- }
- }
- template <typename T1, typename T2>
- void load(std::pair<T1,T2> &data)
- {
- load(data.first);
- load(data.second);
- }
- template <typename T1, typename T2>
- void load(std::map<T1,T2> &data)
- {
- ui32 length = readAndCheckLength();
- data.clear();
- T1 key;
- T2 value;
- for(ui32 i=0;i<length;i++)
- {
- load(key);
- load(value);
- data.insert(std::pair<T1, T2>(std::move(key), std::move(value)));
- }
- }
- template <typename T1, typename T2>
- void load(std::multimap<T1, T2> &data)
- {
- ui32 length = readAndCheckLength();
- data.clear();
- T1 key;
- T2 value;
- for(ui32 i = 0; i < length; i++)
- {
- load(key);
- load(value);
- data.insert(std::pair<T1, T2>(std::move(key), std::move(value)));
- }
- }
- void load(std::string &data)
- {
- ui32 length = readAndCheckLength();
- data.resize(length);
- this->read((void*)data.c_str(),length);
- }
- template<typename T0, typename... TN>
- void load(std::variant<T0, TN...> & data)
- {
- using TVariant = std::variant<T0, TN...>;
- VariantLoaderHelper<TVariant, BinaryDeserializer> loader(*this);
- si32 which;
- load( which );
- assert(which < loader.funcs.size());
- data = loader.funcs.at(which)();
- }
- template<typename T>
- void load(std::optional<T> & data)
- {
- ui8 present;
- load( present );
- if(present)
- {
- //TODO: replace with emplace once we start request Boost 1.56+, see PR360
- T t;
- load(t);
- data = std::make_optional(std::move(t));
- }
- else
- {
- data = std::optional<T>();
- }
- }
- template <typename T>
- void load(boost::multi_array<T, 3> & data)
- {
- ui32 length = readAndCheckLength();
- ui32 x, y, z;
- load(x);
- load(y);
- load(z);
- data.resize(boost::extents[x][y][z]);
- assert(length == data.num_elements()); //x*y*z should be equal to number of elements
- for(ui32 i = 0; i < length; i++)
- load(data.data()[i]);
- }
- template <std::size_t T>
- void load(std::bitset<T> &data)
- {
- static_assert(T <= 64);
- if constexpr (T <= 16)
- {
- uint16_t read;
- load(read);
- data = read;
- }
- else if constexpr (T <= 32)
- {
- uint32_t read;
- load(read);
- data = read;
- }
- else if constexpr (T <= 64)
- {
- uint64_t read;
- load(read);
- data = read;
- }
- }
- };
- class DLL_LINKAGE CLoadFile : public IBinaryReader
- {
- public:
- BinaryDeserializer serializer;
- std::string fName;
- std::unique_ptr<std::fstream> sfile;
- CLoadFile(const boost::filesystem::path & fname, int minimalVersion = SERIALIZATION_VERSION); //throws!
- virtual ~CLoadFile();
- int read(void * data, unsigned size) override; //throws!
- void openNextFile(const boost::filesystem::path & fname, int minimalVersion); //throws!
- void clear();
- void reportState(vstd::CLoggerBase * out) override;
- void checkMagicBytes(const std::string & text);
- template<class T>
- CLoadFile & operator>>(T &t)
- {
- serializer & t;
- return * this;
- }
- };
- VCMI_LIB_NAMESPACE_END
|