我想编写一系列模板函数来序列化和反序列化对象。我已完成序列化部分,一切正常:
#ifndef SERIALIZE_H
#define SERIALIZE_H
#include <string>
#include <vector>
#include <unordered_set>
#include <unordered_map>
#include <memory>
inline std::string to_json(int value) {
return std::to_string(value);
}
inline std::string to_json(long value) {
return std::to_string(value);
}
inline std::string to_json(double value) {
return std::to_string(value);
}
inline std::string to_json(const std::string& myStr) {
return "\"" + myStr + "\"";
}
template <typename T>
std::string to_json(const std::vector<T>& vec) {
std::string json("[");
for(auto &i : vec) {
json += to_json(i);
json += ",";
}
if (!vec.empty()) json.pop_back();
json += "]";
return json;
}
template <typename T>
std::string to_json(const std::unordered_set<T>& mySet) {
std::string json("[");
for(const auto& i : mySet) {
json += to_json(i);
json += ",";
}
if (!mySet.empty()) json.pop_back();
json += "]";
return json;
}
template <typename K, typename V>
std::string to_json(const std::unordered_map<K, V>& myMap) {
std::string json("{");
for(const auto& i : myMap) {
json += to_json(i.first);
json += ":";
json += to_json(i.second);
json += ",";
}
if (!myMap.empty()) json.pop_back();
json += "}";
return json;
}
#endif //SERIALIZE_H
此serialize.h
可以序列化所有类型的组合,例如unordered_map<string, vector<int>>
。
现在我不知道如何递归地实现反序列化函数以支持任意组合。
以下是我的deserialize.h
不起作用:
#ifndef DESERIALIZE_H
#define DESERIALIZE_H
#include <string>
#include <rapidjson/document.h>
template<typename T>
T from_json(const std::string &json);
template<>
int from_json(const std::string &json) {
return std::stoi(json);
}
template<>
long from_json(const std::string &json) {
return std::stol(json);
}
template<>
double from_json(const std::string &json) {
return std::stod(json);
}
template<>
std::string from_json(const std::string &json) {
return json.substr(1, json.size()-1);
}
//
template<typename T>
std::vector<T> from_json(const std::string& json) {
rapidjson::Value jsonValue;
{
const std::string &input = "{\"input\":" + json + "}";
rapidjson::Document document;
document.Parse(input.c_str());
jsonValue = document["input"];
};
std::vector<T> vec;
assert(jsonValue.IsArray());
for (rapidjson::SizeType i = 0; i < jsonValue.Size(); i++) {
int element = from_json<T>(std::string(jsonValue[i].GetString()));
vec.push_back(element);
}
return vec;
}
#endif //DESERIALIZE_H
rapidjson
是一个C ++ JSON库,https://github.com/miloyip/rapidjson
然后,如果我尝试反序列化JSON字符串:
#include "deserialize.h>
int main() {
auto vec1 = from_json<std::vector<int>>(std::string("[1,2,3]"));
return 0;
}
它会抛弃编译错误:
error: call of overloaded ‘from_json(std::string)’ is ambiguous
似乎无法像序列化一样轻松实现反序列化功能。
有什么想法吗?
答案 0 :(得分:2)
您尝试使用相同的参数和每次不同的返回类型重载相同的函数(from_json(...))。这不合法。 对于重载,您需要不同的参数类型或参数编号。
Instead of
template<>
double from_json(const std::string &json) {
return std::stod(json);
}
template<>
std::string from_json(const std::string &json) {
return json.substr(1, json.size()-1);
}
也许试试这个,或者至少这应该是一般的想法:
template<>
void from_json(const std::string &json, double *out_value) {
*out_value = std::stod(json);
}
template<>
void from_json(const std::string &json, std::string *out_value) {
out_value = json.substr(1, json.size()-1);
}
我确信有错误,但我认为这种方式可以解决(如果你修复它们)