mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-25 22:42:04 +02:00
Add files for rebased serializer refactoring done by Ivan
This commit is contained in:
committed by
Arseniy Shestakov
parent
15b4774076
commit
3d1b1f4ba8
43
lib/serializer/CMemorySerializer.h
Normal file
43
lib/serializer/CMemorySerializer.h
Normal file
@@ -0,0 +1,43 @@
|
||||
|
||||
/*
|
||||
* CMemorySerializer.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 "BinarySerializer.h"
|
||||
#include "BinaryDeserializer.h"
|
||||
|
||||
/// Serializer that stores objects in the dynamic buffer. Allows performing deep object copies.
|
||||
class DLL_LINKAGE CMemorySerializer
|
||||
: public IBinaryReader, public IBinaryWriter
|
||||
{
|
||||
std::vector<ui8> buffer;
|
||||
|
||||
size_t readPos; //index of the next byte to be read
|
||||
public:
|
||||
BinaryDeserializer iser;
|
||||
BinarySerializer oser;
|
||||
|
||||
int read(void * data, unsigned size) override; //throws!
|
||||
int write(const void * data, unsigned size) override;
|
||||
|
||||
CMemorySerializer();
|
||||
|
||||
template <typename T>
|
||||
static std::unique_ptr<T> deepCopy(const T &data)
|
||||
{
|
||||
CMemorySerializer mem;
|
||||
mem.oser & &data;
|
||||
|
||||
std::unique_ptr<T> ret;
|
||||
mem.iser & ret;
|
||||
return ret;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user