danicoin/src/Serialization/BinaryOutputStreamSerializer.cpp

102 lines
2.8 KiB
C++
Raw Normal View History

// Copyright (c) 2011-2016 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2014-09-15 17:33:47 +00:00
#include "BinaryOutputStreamSerializer.h"
#include <cassert>
#include <stdexcept>
2015-07-30 15:22:07 +00:00
#include "Common/StreamTools.h"
2014-09-15 17:33:47 +00:00
2015-07-30 15:22:07 +00:00
using namespace Common;
2014-09-15 17:33:47 +00:00
2015-05-27 12:08:46 +00:00
namespace CryptoNote {
2014-09-15 17:33:47 +00:00
ISerializer::SerializerType BinaryOutputStreamSerializer::type() const {
return ISerializer::OUTPUT;
}
2015-07-15 12:23:00 +00:00
bool BinaryOutputStreamSerializer::beginObject(Common::StringView name) {
return true;
2014-09-15 17:33:47 +00:00
}
2015-07-15 12:23:00 +00:00
void BinaryOutputStreamSerializer::endObject() {
2014-09-15 17:33:47 +00:00
}
2015-07-30 15:22:07 +00:00
bool BinaryOutputStreamSerializer::beginArray(size_t& size, Common::StringView name) {
writeVarint(stream, size);
2015-07-15 12:23:00 +00:00
return true;
2014-09-15 17:33:47 +00:00
}
2015-07-15 12:23:00 +00:00
void BinaryOutputStreamSerializer::endArray() {
2014-09-15 17:33:47 +00:00
}
2015-07-15 12:23:00 +00:00
bool BinaryOutputStreamSerializer::operator()(uint8_t& value, Common::StringView name) {
writeVarint(stream, value);
2015-07-15 12:23:00 +00:00
return true;
2014-09-15 17:33:47 +00:00
}
2015-07-30 15:22:07 +00:00
bool BinaryOutputStreamSerializer::operator()(uint16_t& value, Common::StringView name) {
writeVarint(stream, value);
return true;
}
bool BinaryOutputStreamSerializer::operator()(int16_t& value, Common::StringView name) {
writeVarint(stream, static_cast<uint16_t>(value));
return true;
}
2015-07-15 12:23:00 +00:00
bool BinaryOutputStreamSerializer::operator()(uint32_t& value, Common::StringView name) {
writeVarint(stream, value);
2015-07-15 12:23:00 +00:00
return true;
2014-09-15 17:33:47 +00:00
}
2015-07-15 12:23:00 +00:00
bool BinaryOutputStreamSerializer::operator()(int32_t& value, Common::StringView name) {
writeVarint(stream, static_cast<uint32_t>(value));
2015-07-15 12:23:00 +00:00
return true;
2014-09-15 17:33:47 +00:00
}
2015-07-15 12:23:00 +00:00
bool BinaryOutputStreamSerializer::operator()(int64_t& value, Common::StringView name) {
writeVarint(stream, static_cast<uint64_t>(value));
2015-07-15 12:23:00 +00:00
return true;
2014-09-15 17:33:47 +00:00
}
2015-07-15 12:23:00 +00:00
bool BinaryOutputStreamSerializer::operator()(uint64_t& value, Common::StringView name) {
writeVarint(stream, value);
2015-07-15 12:23:00 +00:00
return true;
2014-09-15 17:33:47 +00:00
}
2015-07-15 12:23:00 +00:00
bool BinaryOutputStreamSerializer::operator()(bool& value, Common::StringView name) {
char boolVal = value;
checkedWrite(&boolVal, 1);
2015-07-15 12:23:00 +00:00
return true;
2014-09-15 17:33:47 +00:00
}
2015-07-15 12:23:00 +00:00
bool BinaryOutputStreamSerializer::operator()(std::string& value, Common::StringView name) {
writeVarint(stream, value.size());
checkedWrite(value.data(), value.size());
2015-07-15 12:23:00 +00:00
return true;
2014-09-15 17:33:47 +00:00
}
2015-07-30 15:22:07 +00:00
bool BinaryOutputStreamSerializer::binary(void* value, size_t size, Common::StringView name) {
checkedWrite(static_cast<const char*>(value), size);
2015-07-15 12:23:00 +00:00
return true;
2014-09-15 17:33:47 +00:00
}
2015-07-15 12:23:00 +00:00
bool BinaryOutputStreamSerializer::binary(std::string& value, Common::StringView name) {
// write as string (with size prefix)
return (*this)(value, name);
2014-09-15 17:33:47 +00:00
}
2015-07-15 12:23:00 +00:00
bool BinaryOutputStreamSerializer::operator()(double& value, Common::StringView name) {
2014-09-15 17:33:47 +00:00
assert(false); //the method is not supported for this type of serialization
throw std::runtime_error("double serialization is not supported in BinaryOutputStreamSerializer");
2015-07-15 12:23:00 +00:00
return false;
2014-09-15 17:33:47 +00:00
}
void BinaryOutputStreamSerializer::checkedWrite(const char* buf, size_t size) {
2015-07-30 15:22:07 +00:00
write(stream, buf, size);
}
2014-09-15 17:33:47 +00:00
}