2016-10-16 15:29:57 +00:00
|
|
|
/*
|
|
|
|
__ _____ _____ _____
|
|
|
|
__| | __| | | | JSON for Modern C++ (test suite)
|
2016-11-16 19:49:24 +00:00
|
|
|
| | |__ | | | | | | version 2.0.7
|
2016-10-16 15:29:57 +00:00
|
|
|
|_____|_____|_____|_|___| https://github.com/nlohmann/json
|
|
|
|
|
|
|
|
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
|
|
|
|
Copyright (c) 2013-2016 Niels Lohmann <http://nlohmann.me>.
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2016-11-29 12:09:51 +00:00
|
|
|
#include <array>
|
2016-12-15 11:22:53 +00:00
|
|
|
#include <map>
|
2016-10-16 15:29:57 +00:00
|
|
|
#include <string>
|
|
|
|
#include <memory>
|
|
|
|
#include "catch.hpp"
|
|
|
|
|
|
|
|
#include "json.hpp"
|
|
|
|
|
2016-12-14 23:06:37 +00:00
|
|
|
using nlohmann::json;
|
|
|
|
|
2016-10-16 15:29:57 +00:00
|
|
|
namespace udt
|
|
|
|
{
|
2016-12-18 19:32:09 +00:00
|
|
|
enum class country
|
|
|
|
{
|
2016-12-13 23:03:55 +00:00
|
|
|
china,
|
|
|
|
france,
|
|
|
|
russia
|
2016-12-18 19:32:09 +00:00
|
|
|
};
|
2016-12-13 23:03:55 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
struct age
|
|
|
|
{
|
2016-11-30 22:16:54 +00:00
|
|
|
int m_val;
|
2016-12-18 19:32:09 +00:00
|
|
|
};
|
2016-10-17 21:41:53 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
struct name
|
|
|
|
{
|
2016-11-30 22:16:54 +00:00
|
|
|
std::string m_val;
|
2016-12-18 19:32:09 +00:00
|
|
|
};
|
2016-10-16 15:29:57 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
struct address
|
|
|
|
{
|
2016-11-30 22:16:54 +00:00
|
|
|
std::string m_val;
|
2016-12-18 19:32:09 +00:00
|
|
|
};
|
2016-10-16 15:29:57 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
struct person
|
|
|
|
{
|
2016-11-30 22:16:54 +00:00
|
|
|
age m_age;
|
|
|
|
name m_name;
|
2016-12-13 23:03:55 +00:00
|
|
|
country m_country;
|
2016-12-18 19:32:09 +00:00
|
|
|
};
|
2016-10-16 15:29:57 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
struct contact
|
|
|
|
{
|
2016-11-30 22:16:54 +00:00
|
|
|
person m_person;
|
|
|
|
address m_address;
|
2016-12-18 19:32:09 +00:00
|
|
|
};
|
2016-10-16 15:29:57 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
struct contact_book
|
|
|
|
{
|
2016-11-30 22:16:54 +00:00
|
|
|
name m_book_name;
|
|
|
|
std::vector<contact> m_contacts;
|
2016-12-18 19:32:09 +00:00
|
|
|
};
|
2016-10-16 15:29:57 +00:00
|
|
|
}
|
2016-10-17 21:41:53 +00:00
|
|
|
|
2016-12-13 23:03:55 +00:00
|
|
|
// to_json methods
|
2016-11-29 12:09:51 +00:00
|
|
|
namespace udt
|
2016-10-17 21:41:53 +00:00
|
|
|
{
|
2016-12-18 19:32:09 +00:00
|
|
|
// templates because of the custom_json tests (see below)
|
2017-01-21 15:41:14 +00:00
|
|
|
template <typename BasicJsonType>
|
|
|
|
void to_json(BasicJsonType& j, age a)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
2016-11-30 22:16:54 +00:00
|
|
|
j = a.m_val;
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-10-17 21:41:53 +00:00
|
|
|
|
2017-01-21 15:41:14 +00:00
|
|
|
template <typename BasicJsonType>
|
|
|
|
void to_json(BasicJsonType& j, const name& n)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
2016-11-30 22:16:54 +00:00
|
|
|
j = n.m_val;
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-10-17 21:41:53 +00:00
|
|
|
|
2017-01-21 15:41:14 +00:00
|
|
|
template <typename BasicJsonType>
|
|
|
|
void to_json(BasicJsonType& j, country c)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
2016-12-13 23:03:55 +00:00
|
|
|
switch (c)
|
|
|
|
{
|
2016-12-18 19:32:09 +00:00
|
|
|
case country::china:
|
|
|
|
j = u8"中华人民共和国";
|
|
|
|
return;
|
|
|
|
case country::france:
|
|
|
|
j = "France";
|
|
|
|
return;
|
|
|
|
case country::russia:
|
|
|
|
j = u8"Российская Федерация";
|
|
|
|
return;
|
2016-12-13 23:03:55 +00:00
|
|
|
}
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-12-13 23:03:55 +00:00
|
|
|
|
2017-01-21 15:41:14 +00:00
|
|
|
template <typename BasicJsonType>
|
|
|
|
void to_json(BasicJsonType& j, const person& p)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
2017-01-21 15:41:14 +00:00
|
|
|
j = BasicJsonType{{"age", p.m_age}, {"name", p.m_name}, {"country", p.m_country}};
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-10-17 21:41:53 +00:00
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
void to_json(nlohmann::json& j, const address& a)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
2016-11-30 22:16:54 +00:00
|
|
|
j = a.m_val;
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-10-17 21:41:53 +00:00
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
void to_json(nlohmann::json& j, const contact& c)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
2016-12-04 16:52:55 +00:00
|
|
|
j = json{{"person", c.m_person}, {"address", c.m_address}};
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-10-17 21:41:53 +00:00
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
void to_json(nlohmann::json& j, const contact_book& cb)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
2016-12-04 16:52:55 +00:00
|
|
|
j = json{{"name", cb.m_book_name}, {"contacts", cb.m_contacts}};
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-11-30 22:16:54 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
// operators
|
|
|
|
bool operator==(age lhs, age rhs)
|
|
|
|
{
|
2016-11-30 22:16:54 +00:00
|
|
|
return lhs.m_val == rhs.m_val;
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-11-30 22:16:54 +00:00
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
bool operator==(const address& lhs, const address& rhs)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
2016-11-30 22:16:54 +00:00
|
|
|
return lhs.m_val == rhs.m_val;
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-11-30 22:16:54 +00:00
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
bool operator==(const name& lhs, const name& rhs)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
2016-11-30 22:16:54 +00:00
|
|
|
return lhs.m_val == rhs.m_val;
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-11-30 22:16:54 +00:00
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
bool operator==(const person& lhs, const person& rhs)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
2016-11-30 22:16:54 +00:00
|
|
|
return std::tie(lhs.m_name, lhs.m_age) == std::tie(rhs.m_name, rhs.m_age);
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-11-30 22:16:54 +00:00
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
bool operator==(const contact& lhs, const contact& rhs)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
2016-11-30 22:16:54 +00:00
|
|
|
return std::tie(lhs.m_person, lhs.m_address) ==
|
|
|
|
std::tie(rhs.m_person, rhs.m_address);
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-11-30 22:16:54 +00:00
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
bool operator==(const contact_book& lhs, const contact_book& rhs)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
2016-11-30 22:16:54 +00:00
|
|
|
return std::tie(lhs.m_book_name, lhs.m_contacts) ==
|
|
|
|
std::tie(rhs.m_book_name, rhs.m_contacts);
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-11-30 22:16:54 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 23:03:55 +00:00
|
|
|
// from_json methods
|
2016-11-30 22:16:54 +00:00
|
|
|
namespace udt
|
|
|
|
{
|
2017-01-21 15:41:14 +00:00
|
|
|
template <typename BasicJsonType>
|
|
|
|
void from_json(const BasicJsonType& j, age& a)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
2016-12-15 11:22:53 +00:00
|
|
|
a.m_val = j.template get<int>();
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-11-30 22:16:54 +00:00
|
|
|
|
2017-01-21 15:41:14 +00:00
|
|
|
template <typename BasicJsonType>
|
|
|
|
void from_json(const BasicJsonType& j, name& n)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
2016-12-15 11:22:53 +00:00
|
|
|
n.m_val = j.template get<std::string>();
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-11-30 22:16:54 +00:00
|
|
|
|
2017-01-21 15:41:14 +00:00
|
|
|
template <typename BasicJsonType>
|
|
|
|
void from_json(const BasicJsonType& j, country& c)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
2016-12-15 11:22:53 +00:00
|
|
|
const auto str = j.template get<std::string>();
|
2016-12-18 19:32:09 +00:00
|
|
|
static const std::map<std::string, country> m =
|
|
|
|
{
|
2016-12-13 23:03:55 +00:00
|
|
|
{u8"中华人民共和国", country::china},
|
|
|
|
{"France", country::france},
|
2016-12-18 19:32:09 +00:00
|
|
|
{"Российская Федерация", country::russia}
|
|
|
|
};
|
2016-12-13 23:03:55 +00:00
|
|
|
|
|
|
|
const auto it = m.find(str);
|
|
|
|
// TODO test exceptions
|
|
|
|
c = it->second;
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-12-13 23:03:55 +00:00
|
|
|
|
2017-01-21 15:41:14 +00:00
|
|
|
template <typename BasicJsonType>
|
|
|
|
void from_json(const BasicJsonType& j, person& p)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
2016-12-15 11:22:53 +00:00
|
|
|
p.m_age = j["age"].template get<age>();
|
|
|
|
p.m_name = j["name"].template get<name>();
|
|
|
|
p.m_country = j["country"].template get<country>();
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-11-30 22:16:54 +00:00
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
void from_json(const nlohmann::json& j, address& a)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
2016-11-30 22:16:54 +00:00
|
|
|
a.m_val = j.get<std::string>();
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-11-30 22:16:54 +00:00
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
void from_json(const nlohmann::json& j, contact& c)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
2016-11-30 22:16:54 +00:00
|
|
|
c.m_person = j["person"].get<person>();
|
|
|
|
c.m_address = j["address"].get<address>();
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-11-30 22:16:54 +00:00
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
void from_json(const nlohmann::json& j, contact_book& cb)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
2016-11-30 22:16:54 +00:00
|
|
|
cb.m_book_name = j["name"].get<name>();
|
|
|
|
cb.m_contacts = j["contacts"].get<std::vector<contact>>();
|
2016-12-18 19:32:09 +00:00
|
|
|
}
|
2016-10-17 21:41:53 +00:00
|
|
|
}
|
2016-11-15 13:22:12 +00:00
|
|
|
|
2016-11-29 12:09:51 +00:00
|
|
|
TEST_CASE("basic usage", "[udt]")
|
2016-11-15 13:22:12 +00:00
|
|
|
{
|
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
// a bit narcissic maybe :) ?
|
|
|
|
const udt::age a
|
|
|
|
{
|
|
|
|
23
|
|
|
|
};
|
|
|
|
const udt::name n{"theo"};
|
|
|
|
const udt::country c{udt::country::france};
|
|
|
|
const udt::person sfinae_addict{a, n, c};
|
|
|
|
const udt::person senior_programmer{{42}, {u8"王芳"}, udt::country::china};
|
|
|
|
const udt::address addr{"Paris"};
|
|
|
|
const udt::contact cpp_programmer{sfinae_addict, addr};
|
|
|
|
const udt::contact_book book{{"C++"}, {cpp_programmer, {senior_programmer, addr}}};
|
|
|
|
|
|
|
|
SECTION("conversion to json via free-functions")
|
|
|
|
{
|
|
|
|
CHECK(json(a) == json(23));
|
|
|
|
CHECK(json(n) == json("theo"));
|
|
|
|
CHECK(json(c) == json("France"));
|
|
|
|
CHECK(json(sfinae_addict) == R"({"name":"theo", "age":23, "country":"France"})"_json);
|
|
|
|
CHECK(json("Paris") == json(addr));
|
|
|
|
CHECK(json(cpp_programmer) ==
|
|
|
|
R"({"person" : {"age":23, "name":"theo", "country":"France"}, "address":"Paris"})"_json);
|
|
|
|
|
|
|
|
CHECK(
|
|
|
|
json(book) ==
|
|
|
|
u8R"({"name":"C++", "contacts" : [{"person" : {"age":23, "name":"theo", "country":"France"}, "address":"Paris"}, {"person" : {"age":42, "country":"中华人民共和国", "name":"王芳"}, "address":"Paris"}]})"_json);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("conversion from json via free-functions")
|
|
|
|
{
|
|
|
|
const auto big_json =
|
|
|
|
u8R"({"name":"C++", "contacts" : [{"person" : {"age":23, "name":"theo", "country":"France"}, "address":"Paris"}, {"person" : {"age":42, "country":"中华人民共和国", "name":"王芳"}, "address":"Paris"}]})"_json;
|
|
|
|
const auto parsed_book = big_json.get<udt::contact_book>();
|
|
|
|
const auto book_name = big_json["name"].get<udt::name>();
|
|
|
|
const auto contacts = big_json["contacts"].get<std::vector<udt::contact>>();
|
|
|
|
const auto contact_json = big_json["contacts"].at(0);
|
|
|
|
const auto contact = contact_json.get<udt::contact>();
|
|
|
|
const auto person = contact_json["person"].get<udt::person>();
|
|
|
|
const auto address = contact_json["address"].get<udt::address>();
|
|
|
|
const auto age = contact_json["person"]["age"].get<udt::age>();
|
|
|
|
const auto country = contact_json["person"]["country"].get<udt::country>();
|
|
|
|
const auto name = contact_json["person"]["name"].get<udt::name>();
|
|
|
|
|
|
|
|
CHECK(age == a);
|
|
|
|
CHECK(name == n);
|
|
|
|
CHECK(country == c);
|
|
|
|
CHECK(address == addr);
|
|
|
|
CHECK(person == sfinae_addict);
|
|
|
|
CHECK(contact == cpp_programmer);
|
|
|
|
CHECK(contacts == book.m_contacts);
|
|
|
|
CHECK(book_name == udt::name{"C++"});
|
|
|
|
CHECK(book == parsed_book);
|
|
|
|
}
|
2016-11-30 22:16:54 +00:00
|
|
|
}
|
2016-12-13 21:01:38 +00:00
|
|
|
|
|
|
|
namespace udt
|
|
|
|
{
|
|
|
|
struct legacy_type
|
|
|
|
{
|
2016-12-18 19:32:09 +00:00
|
|
|
std::string number;
|
2016-12-13 21:01:38 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace nlohmann
|
|
|
|
{
|
|
|
|
template <typename T>
|
2016-12-14 23:06:37 +00:00
|
|
|
struct adl_serializer<std::shared_ptr<T>>
|
2016-12-13 21:01:38 +00:00
|
|
|
{
|
2017-01-17 09:32:35 +00:00
|
|
|
static void to_json(json& j, const std::shared_ptr<T>& opt)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
|
|
|
if (opt)
|
|
|
|
{
|
|
|
|
j = *opt;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
j = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
static void from_json(const json& j, std::shared_ptr<T>& opt)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
|
|
|
if (j.is_null())
|
|
|
|
{
|
|
|
|
opt = nullptr;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
opt.reset(new T(j.get<T>()));
|
|
|
|
}
|
|
|
|
}
|
2016-12-13 21:01:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct adl_serializer<udt::legacy_type>
|
|
|
|
{
|
2017-01-17 09:32:35 +00:00
|
|
|
static void to_json(json& j, const udt::legacy_type& l)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
|
|
|
j = std::stoi(l.number);
|
|
|
|
}
|
2016-12-13 21:01:38 +00:00
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
static void from_json(const json& j, udt::legacy_type& l)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
|
|
|
l.number = std::to_string(j.get<int>());
|
|
|
|
}
|
2016-12-13 21:01:38 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("adl_serializer specialization", "[udt]")
|
|
|
|
{
|
2016-12-18 19:32:09 +00:00
|
|
|
SECTION("partial specialization")
|
2016-12-13 21:01:38 +00:00
|
|
|
{
|
2016-12-18 19:32:09 +00:00
|
|
|
SECTION("to_json")
|
|
|
|
{
|
|
|
|
std::shared_ptr<udt::person> optPerson;
|
2016-12-13 21:01:38 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
json j = optPerson;
|
|
|
|
CHECK(j.is_null());
|
2016-12-13 21:01:38 +00:00
|
|
|
|
2017-01-22 13:07:28 +00:00
|
|
|
optPerson.reset(new udt::person{{42}, {"John Doe"}, udt::country::russia});
|
2016-12-18 19:32:09 +00:00
|
|
|
j = optPerson;
|
|
|
|
CHECK_FALSE(j.is_null());
|
2016-12-13 21:01:38 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
CHECK(j.get<udt::person>() == *optPerson);
|
|
|
|
}
|
2016-12-13 21:01:38 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
SECTION("from_json")
|
|
|
|
{
|
2017-01-22 13:07:28 +00:00
|
|
|
auto person = udt::person{{42}, {"John Doe"}, udt::country::russia};
|
2016-12-18 19:32:09 +00:00
|
|
|
json j = person;
|
2016-12-13 21:01:38 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
auto optPerson = j.get<std::shared_ptr<udt::person>>();
|
|
|
|
REQUIRE(optPerson);
|
|
|
|
CHECK(*optPerson == person);
|
2016-12-13 21:01:38 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
j = nullptr;
|
|
|
|
optPerson = j.get<std::shared_ptr<udt::person>>();
|
|
|
|
CHECK(!optPerson);
|
|
|
|
}
|
2016-12-13 21:01:38 +00:00
|
|
|
}
|
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
SECTION("total specialization")
|
2016-12-13 21:01:38 +00:00
|
|
|
{
|
2016-12-18 19:32:09 +00:00
|
|
|
SECTION("to_json")
|
|
|
|
{
|
|
|
|
udt::legacy_type lt{"4242"};
|
|
|
|
|
|
|
|
json j = lt;
|
|
|
|
CHECK(j.get<int>() == 4242);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("from_json")
|
|
|
|
{
|
|
|
|
json j = 4242;
|
|
|
|
auto lt = j.get<udt::legacy_type>();
|
|
|
|
CHECK(lt.number == "4242");
|
|
|
|
}
|
2016-12-13 21:01:38 +00:00
|
|
|
}
|
|
|
|
}
|
2016-12-14 23:06:37 +00:00
|
|
|
|
|
|
|
namespace nlohmann
|
|
|
|
{
|
2017-01-08 23:29:00 +00:00
|
|
|
template <>
|
|
|
|
struct adl_serializer<std::vector<float>>
|
|
|
|
{
|
2017-01-17 09:32:35 +00:00
|
|
|
using type = std::vector<float>;
|
|
|
|
static void to_json(json& j, const type&)
|
2017-01-08 23:29:00 +00:00
|
|
|
{
|
2017-01-17 09:32:35 +00:00
|
|
|
j = "hijacked!";
|
2017-01-08 23:29:00 +00:00
|
|
|
}
|
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
static void from_json(const json&, type& opt)
|
2017-01-08 23:29:00 +00:00
|
|
|
{
|
2017-01-17 09:32:35 +00:00
|
|
|
opt = {42.0, 42.0, 42.0};
|
2017-01-08 23:29:00 +00:00
|
|
|
}
|
2017-01-14 01:47:29 +00:00
|
|
|
|
|
|
|
// preferred version
|
2017-01-17 09:32:35 +00:00
|
|
|
static type from_json(const json&)
|
2017-01-14 01:47:29 +00:00
|
|
|
{
|
2017-01-17 09:32:35 +00:00
|
|
|
return {4.0, 5.0, 6.0};
|
2017-01-14 01:47:29 +00:00
|
|
|
}
|
2017-01-08 23:29:00 +00:00
|
|
|
};
|
2016-12-14 23:06:37 +00:00
|
|
|
}
|
|
|
|
|
2017-01-08 23:29:00 +00:00
|
|
|
TEST_CASE("even supported types can be specialized", "[udt]")
|
2016-12-14 23:06:37 +00:00
|
|
|
{
|
2017-01-08 23:29:00 +00:00
|
|
|
json j = std::vector<float> {1.0, 2.0, 3.0};
|
|
|
|
CHECK(j.dump() == R"("hijacked!")");
|
|
|
|
auto f = j.get<std::vector<float>>();
|
2017-01-14 01:47:29 +00:00
|
|
|
// the single argument from_json method is preferred
|
2017-01-17 09:32:35 +00:00
|
|
|
CHECK((f == std::vector<float> {4.0, 5.0, 6.0}));
|
2016-12-14 23:06:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace nlohmann
|
|
|
|
{
|
|
|
|
template <typename T>
|
|
|
|
struct adl_serializer<std::unique_ptr<T>>
|
|
|
|
{
|
2017-01-17 09:32:35 +00:00
|
|
|
static void to_json(json& j, const std::unique_ptr<T>& opt)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
|
|
|
if (opt)
|
|
|
|
{
|
|
|
|
j = *opt;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
j = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// this is the overload needed for non-copyable types,
|
2017-01-17 09:32:35 +00:00
|
|
|
static std::unique_ptr<T> from_json(const json& j)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
|
|
|
if (j.is_null())
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return std::unique_ptr<T>(new T(j.get<T>()));
|
|
|
|
}
|
|
|
|
}
|
2016-12-14 23:06:37 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("Non-copyable types", "[udt]")
|
|
|
|
{
|
2016-12-18 19:32:09 +00:00
|
|
|
SECTION("to_json")
|
|
|
|
{
|
|
|
|
std::unique_ptr<udt::person> optPerson;
|
2016-12-14 23:06:37 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
json j = optPerson;
|
|
|
|
CHECK(j.is_null());
|
2016-12-14 23:06:37 +00:00
|
|
|
|
2017-01-08 23:29:00 +00:00
|
|
|
optPerson.reset(new udt::person{{42}, {"John Doe"}, udt::country::russia});
|
2016-12-18 19:32:09 +00:00
|
|
|
j = optPerson;
|
|
|
|
CHECK_FALSE(j.is_null());
|
2016-12-14 23:06:37 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
CHECK(j.get<udt::person>() == *optPerson);
|
|
|
|
}
|
2016-12-14 23:06:37 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
SECTION("from_json")
|
|
|
|
{
|
2017-01-08 23:29:00 +00:00
|
|
|
auto person = udt::person{{42}, {"John Doe"}, udt::country::russia};
|
2016-12-18 19:32:09 +00:00
|
|
|
json j = person;
|
2016-12-14 23:06:37 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
auto optPerson = j.get<std::unique_ptr<udt::person>>();
|
|
|
|
REQUIRE(optPerson);
|
|
|
|
CHECK(*optPerson == person);
|
2016-12-14 23:06:37 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
j = nullptr;
|
|
|
|
optPerson = j.get<std::unique_ptr<udt::person>>();
|
|
|
|
CHECK(!optPerson);
|
|
|
|
}
|
2016-12-14 23:06:37 +00:00
|
|
|
}
|
|
|
|
|
2017-01-08 23:29:00 +00:00
|
|
|
// custom serializer - advanced usage
|
|
|
|
// pack structs that are pod-types (but not scalar types)
|
|
|
|
// relies on adl for any other type
|
|
|
|
template <typename T, typename = void>
|
2016-12-14 23:06:37 +00:00
|
|
|
struct pod_serializer
|
|
|
|
{
|
2017-01-17 09:32:35 +00:00
|
|
|
// use adl for non-pods, or scalar types
|
|
|
|
template <
|
2017-01-21 15:41:14 +00:00
|
|
|
typename BasicJsonType, typename U = T,
|
2017-01-17 09:32:35 +00:00
|
|
|
typename std::enable_if <
|
|
|
|
not(std::is_pod<U>::value and std::is_class<U>::value), int >::type = 0 >
|
2017-01-21 15:41:14 +00:00
|
|
|
static void from_json(const BasicJsonType& j, U& t)
|
2017-01-17 09:32:35 +00:00
|
|
|
{
|
|
|
|
using nlohmann::from_json;
|
|
|
|
from_json(j, t);
|
|
|
|
}
|
|
|
|
|
|
|
|
// special behaviour for pods
|
2017-01-21 15:41:14 +00:00
|
|
|
template <typename BasicJsonType, typename U = T,
|
2017-01-17 09:32:35 +00:00
|
|
|
typename std::enable_if<
|
|
|
|
std::is_pod<U>::value and std::is_class<U>::value, int>::type = 0>
|
2017-01-21 15:41:14 +00:00
|
|
|
static void from_json(const BasicJsonType& j, U& t)
|
2017-01-17 09:32:35 +00:00
|
|
|
{
|
|
|
|
std::uint64_t value;
|
|
|
|
// TODO The following block is no longer relevant in this serializer, make another one that shows the issue
|
|
|
|
// the problem arises only when one from_json method is defined without any constraint
|
|
|
|
//
|
|
|
|
// Why cannot we simply use: j.get<std::uint64_t>() ?
|
|
|
|
// Well, with the current experiment, the get method looks for a from_json
|
|
|
|
// function, which we are currently defining!
|
|
|
|
// This would end up in a stack overflow. Calling nlohmann::from_json is a
|
|
|
|
// workaround (is it?).
|
|
|
|
// I shall find a good way to avoid this once all constructors are converted
|
|
|
|
// to free methods
|
|
|
|
//
|
|
|
|
// In short, constructing a json by constructor calls to_json
|
|
|
|
// calling get calls from_json, for now, we cannot do this in custom
|
|
|
|
// serializers
|
|
|
|
nlohmann::from_json(j, value);
|
|
|
|
auto bytes = static_cast<char*>(static_cast<void*>(&value));
|
|
|
|
std::memcpy(&t, bytes, sizeof(value));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <
|
2017-01-21 15:41:14 +00:00
|
|
|
typename BasicJsonType, typename U = T,
|
2017-01-17 09:32:35 +00:00
|
|
|
typename std::enable_if <
|
|
|
|
not(std::is_pod<U>::value and std::is_class<U>::value), int >::type = 0 >
|
2017-01-21 15:41:14 +00:00
|
|
|
static void to_json(BasicJsonType& j, const T& t)
|
2017-01-17 09:32:35 +00:00
|
|
|
{
|
|
|
|
using nlohmann::to_json;
|
|
|
|
to_json(j, t);
|
|
|
|
}
|
|
|
|
|
2017-01-21 15:41:14 +00:00
|
|
|
template <typename BasicJsonType, typename U = T,
|
2017-01-17 09:32:35 +00:00
|
|
|
typename std::enable_if<
|
|
|
|
std::is_pod<U>::value and std::is_class<U>::value, int>::type = 0>
|
2017-01-21 15:41:14 +00:00
|
|
|
static void to_json(BasicJsonType& j, const T& t) noexcept
|
2017-01-17 09:32:35 +00:00
|
|
|
{
|
|
|
|
auto bytes = static_cast< const unsigned char*>(static_cast<const void*>(&t));
|
|
|
|
std::uint64_t value = bytes[0];
|
|
|
|
for (auto i = 1; i < 8; ++i)
|
|
|
|
value |= std::uint64_t{bytes[i]} << 8 * i;
|
|
|
|
nlohmann::to_json(j, value);
|
|
|
|
}
|
2016-12-14 23:06:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
namespace udt
|
|
|
|
{
|
|
|
|
struct small_pod
|
|
|
|
{
|
2016-12-18 19:32:09 +00:00
|
|
|
int begin;
|
|
|
|
char middle;
|
|
|
|
short end;
|
2016-12-14 23:06:37 +00:00
|
|
|
};
|
|
|
|
|
2017-01-08 23:29:00 +00:00
|
|
|
struct non_pod
|
|
|
|
{
|
2017-01-17 09:32:35 +00:00
|
|
|
std::string s;
|
2017-01-08 23:29:00 +00:00
|
|
|
};
|
|
|
|
|
2017-01-21 15:41:14 +00:00
|
|
|
template <typename BasicJsonType>
|
|
|
|
void to_json(BasicJsonType& j, const non_pod& np)
|
2017-01-08 23:29:00 +00:00
|
|
|
{
|
2017-01-17 09:32:35 +00:00
|
|
|
j = np.s;
|
2017-01-08 23:29:00 +00:00
|
|
|
}
|
|
|
|
|
2017-01-21 15:41:14 +00:00
|
|
|
template <typename BasicJsonType>
|
|
|
|
void from_json(const BasicJsonType& j, non_pod& np)
|
2017-01-08 23:29:00 +00:00
|
|
|
{
|
2017-01-17 09:32:35 +00:00
|
|
|
np.s = j.template get<std::string>();
|
2017-01-08 23:29:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(small_pod lhs, small_pod rhs) noexcept
|
2016-12-14 23:06:37 +00:00
|
|
|
{
|
2016-12-18 19:32:09 +00:00
|
|
|
return std::tie(lhs.begin, lhs.middle, lhs.end) ==
|
2017-01-08 23:29:00 +00:00
|
|
|
std::tie(rhs.begin, rhs.middle, rhs.end);
|
|
|
|
}
|
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
bool operator==(const non_pod& lhs, const non_pod& rhs) noexcept
|
2017-01-08 23:29:00 +00:00
|
|
|
{
|
2017-01-17 09:32:35 +00:00
|
|
|
return lhs.s == rhs.s;
|
2017-01-08 23:29:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::ostream& operator<<(std::ostream& os, small_pod l)
|
|
|
|
{
|
2017-01-17 09:32:35 +00:00
|
|
|
return os << "begin: " << l.begin << ", middle: " << l.middle << ", end: " << l.end;
|
2016-12-14 23:06:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("custom serializer for pods", "[udt]")
|
|
|
|
{
|
2017-01-17 09:32:35 +00:00
|
|
|
using custom_json =
|
|
|
|
nlohmann::basic_json<std::map, std::vector, std::string, bool,
|
|
|
|
std::int64_t, std::uint64_t, double, std::allocator,
|
|
|
|
pod_serializer>;
|
2017-01-08 23:29:00 +00:00
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
auto p = udt::small_pod{42, '/', 42};
|
|
|
|
custom_json j = p;
|
2016-12-14 23:06:37 +00:00
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
auto p2 = j.get<udt::small_pod>();
|
2016-12-14 23:06:37 +00:00
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
CHECK(p == p2);
|
2016-12-14 23:06:37 +00:00
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
auto np = udt::non_pod{{"non-pod"}};
|
|
|
|
custom_json j2 = np;
|
|
|
|
auto np2 = j2.get<udt::non_pod>();
|
|
|
|
CHECK(np == np2);
|
2016-12-14 23:06:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename>
|
|
|
|
struct another_adl_serializer;
|
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
using custom_json = nlohmann::basic_json<std::map, std::vector, std::string, bool, std::int64_t, std::uint64_t, double, std::allocator, another_adl_serializer>;
|
2016-12-14 23:06:37 +00:00
|
|
|
|
|
|
|
template <typename T, typename>
|
|
|
|
struct another_adl_serializer
|
|
|
|
{
|
2017-01-17 09:32:35 +00:00
|
|
|
static void from_json(const custom_json& j, T& t)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
|
|
|
using nlohmann::from_json;
|
|
|
|
from_json(j, t);
|
|
|
|
}
|
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
static void to_json(custom_json& j, const T& t)
|
2016-12-18 19:32:09 +00:00
|
|
|
{
|
|
|
|
using nlohmann::to_json;
|
|
|
|
to_json(j, t);
|
|
|
|
}
|
2016-12-14 23:06:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
TEST_CASE("custom serializer that does adl by default", "[udt]")
|
|
|
|
{
|
2016-12-18 19:32:09 +00:00
|
|
|
using json = nlohmann::json;
|
2016-12-14 23:06:37 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
auto me = udt::person{23, "theo", udt::country::france};
|
2016-12-14 23:06:37 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
json j = me;
|
|
|
|
custom_json cj = me;
|
2016-12-14 23:06:37 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
CHECK(j.dump() == cj.dump());
|
2016-12-14 23:06:37 +00:00
|
|
|
|
2016-12-18 19:32:09 +00:00
|
|
|
CHECK(me == j.get<udt::person>());
|
|
|
|
CHECK(me == cj.get<udt::person>());
|
2016-12-14 23:06:37 +00:00
|
|
|
}
|