// Copyright (c) 2012-2015, The CryptoNote developers, The Bytecoin developers
//
// This file is part of Bytecoin.
//
// Bytecoin is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Bytecoin is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with Bytecoin. If not, see .
#include "JsonInputValueSerializer.h"
#include
#include
#include
using Common::JsonValue;
using namespace CryptoNote;
JsonInputValueSerializer::JsonInputValueSerializer() : root(nullptr) {
}
JsonInputValueSerializer::~JsonInputValueSerializer() {
}
void JsonInputValueSerializer::setJsonValue(const JsonValue* value) {
root = value;
}
ISerializer::SerializerType JsonInputValueSerializer::type() const {
return ISerializer::INPUT;
}
ISerializer& JsonInputValueSerializer::beginObject(const std::string& name) {
assert(root);
if (chain.size() == 0) {
chain.push_back(root);
return *this;
}
const JsonValue* parent = chain.back();
if (parent->isArray()) {
const JsonValue& v = (*parent)[idxs.back()++];
chain.push_back(&v);
} else {
const JsonValue& v = (*parent)(name);
chain.push_back(&v);
}
return *this;
}
ISerializer& JsonInputValueSerializer::endObject() {
assert(root);
chain.pop_back();
return *this;
}
ISerializer& JsonInputValueSerializer::beginArray(std::size_t& size, const std::string& name) {
assert(root);
const JsonValue* parent = chain.back();
if (parent->count(name)) {
const JsonValue& arr = (*parent)(name);
size = arr.size();
chain.push_back(&arr);
} else {
size = 0;
chain.push_back(0);
}
idxs.push_back(0);
return *this;
}
ISerializer& JsonInputValueSerializer::endArray() {
assert(root);
chain.pop_back();
idxs.pop_back();
return *this;
}
ISerializer& JsonInputValueSerializer::operator()(uint32_t& value, const std::string& name) {
assert(root);
value = static_cast(getNumber(name));
return *this;
}
ISerializer& JsonInputValueSerializer::operator()(int32_t& value, const std::string& name) {
assert(root);
value = static_cast(getNumber(name));
return *this;
}
ISerializer& JsonInputValueSerializer::operator()(int64_t& value, const std::string& name) {
assert(root);
value = getNumber(name);
return *this;
}
ISerializer& JsonInputValueSerializer::operator()(uint64_t& value, const std::string& name) {
assert(root);
value = static_cast(getNumber(name));
return *this;
}
ISerializer& JsonInputValueSerializer::operator()(double& value, const std::string& name) {
assert(root);
value = getValue(name).getReal();
return *this;
}
ISerializer& JsonInputValueSerializer::operator()(std::string& value, const std::string& name) {
assert(root);
value = getValue(name).getString();
return *this;
}
ISerializer& JsonInputValueSerializer::operator()(uint8_t& value, const std::string& name) {
assert(root);
value = static_cast(getNumber(name));
return *this;
}
ISerializer& JsonInputValueSerializer::operator()(bool& value, const std::string& name) {
assert(root);
value = getValue(name).getBool();
return *this;
}
bool JsonInputValueSerializer::hasObject(const std::string& name) {
assert(root);
const Common::JsonValue* value;
if (chain.empty()) {
value = root;
} else {
value = chain.back();
}
return value->count(name) != 0;
}
ISerializer& JsonInputValueSerializer::binary(void* value, std::size_t size, const std::string& name) {
auto str = getValue(name).getString();
Common::fromHex(str, value, size);
return *this;
}
ISerializer& JsonInputValueSerializer::binary(std::string& value, const std::string& name) {
auto str = getValue(name).getString();
value = Common::asString(Common::fromHex(str));
return *this;
}
JsonValue JsonInputValueSerializer::getValue(const std::string& name) {
const JsonValue& val = *chain.back();
return val.isArray() ? val[idxs.back()++] : val(name);
}
int64_t JsonInputValueSerializer::getNumber(const std::string& name) {
return getValue(name).getInteger();
}