Serialize an object to any other format data with compile-time reflection, such as json, xml, binary, table and so on.
This library is designed to unify and simplify serialization in a portable cross-platform manner. This library is also easy to extend, and you can serialize any format of data with the library.
This library provides a portable cross-platform way of:
This Tutorial is provided to give you a view of how iguana works for serialization.
Serialization of json
The first thing to do when you serialize an object is to define meta data. There is an example of defining meta data.
struct person
{
std::string name;
int age;
};
#if __cplusplus < 202002L
YLT_REFL(person, name, age) //define meta data
#endif
Defining meta data is very simple, if your compiler is C++20 compiler(gcc11+, clang13+, msvc2022), no need define YLT_REFL, other wise need to define in a YLT_REFL macro.
Now let’s serialize person to json string.
person p = { "tom", 28 };
iguana::string_stream ss; // here use std::string is also ok
iguana::to_json(p, ss);
std::cout << ss.str() << std::endl;
This example will output:
{"name":"tom","age":28}
Serializing person to json string is also very simple, just need to call to_json method, there is nothing more.
How about deserialization of json? Look at the follow example.
It’s as simple as serialization, just need to call from_json method.
You can also use parse interface to do dom parsing:
std::string_view str = R"(false)";
iguana::jvalue val;
iguana::parse(val, str.begin(), str.end());
std::error_code ec;
auto b = val.get<bool>(ec);
CHECK(!ec);
CHECK(!b);
// or
b = val.get<bool>(); // this interface maybe throw exception
CHECK(!b);
Serialization of xml
The serialization of xml is similar to json. The first step is also defining meta data as above, and then you can call iguana::to_xml to serialization the structure, or call iguana::from_xml to deserialization the structure. The following is a complete example.
// serialization the structure to the string
person p = {"admin", 20};
iguana::string_stream ss; // here use std::string is also ok
iguana::to_xml(p, ss);
std::cout << ss << std::endl;
// deserialization the structure from the string
std::string xml = R"(
<?xml version=\"1.0\" encoding=\"UTF-8\">
<root>
<name>buke</name>
<age>30</age>
</root>)";
iguana::from_xml(p, xml);
Serialization of yaml
The serialization of yaml is also as simple as the above interface. Here is a complete example:
// serialization the structure to the string
person p = {"admin", 20};
iguana::string_stream ss; // here use std::string is also ok
iguana::to_yaml(ss, p);
std::cout << ss.str() << std::endl;
std::string yaml = R"(
name : buke
age : 30
)";
// deserialization the structure from the string
iguana::from_yaml(p, yaml);
A complicated example
json
iguana can deal with objects which contain another objects and containers. Here is the example:
At first, we define the meta data:
struct one_t
{
int id;
};
YLT_REFL(one_t, id);
struct two
{
std::string name;
one_t one;
int age;
};
YLT_REFL(two, name, one, age);
struct composit_t
{
int a;
std::vector<std::string> b;
int c;
std::map<int, int> d;
std::unordered_map<int, int> e;
double f;
std::list<one_t> g;
};
YLT_REFL(composit_t, a, b, c, d, e, f, g);
// deserialization the structure from the string
std::string str = R"(
isok: false
status: 1
c: a
hasprice: true
num:
price: 20
)";
plain_type_t p;
iguana::from_yaml(p, str);
// serialization the structure to the string
std::string ss;
iguana::to_yaml(ss, p);
std::cout << ss << "\n";
How to solve the problem of unicode path in a json file?
If there is an unicode string as a path in a json file, however iguana parse the file as utf-8, so maybe you can see some strange characters after parse.
It’s ok, because you see the utf-8 strings. The problem is you can’t use the string directly, such as use std::ifstream to open the file with the unicode string path.
We can slove the problem1 easily with c++17:
//the p.path is a unicode string path
std::ifstream in(std::filesystem::u8path(p.path)); //std::filesystem::u8path help us
//now you can operate the file
how to handle the enum type as strings?
By default, Iguana handle enum type as number type during serialization and deserialization.
To handle the enum type as strings during serialization and deserialization with Iguana, we need to define a full specialization template in the “iguana” namespace. This template is a struct that contains an array with the underlying numbers corresponding to the enum type.
For example, if we have the following enum type:
enum class Status { STOP = 10, START };
And we want to handle the enum type as strings when parsing JSON:
test_macro_generator.cpp will be unchanged, have_macro.cpp will be changed to source file with YLT_REFL macro.
scripts works out of the box with Python version 2.7 and 3.x on any platform.
Notes: In Python3,Will prompt DeprecationWarning: 'U' mode is deprecated.Ignore it.
F.A.Q
Question: Why is the library called iguana?
Answer: I think serialization is like an iguana, because the only difference is the displaying format, however the meta data is never changed. With changeless meta data and YLT_REFL, you can serialize an object to any format, which is like how an iguana does.
Question: Does iguana support raw pointer?
Answer: No. iguana doesn’t support raw pointer, but it will support smart pointer in the future.
Question: Is iguana thread-safe?
Answer: Not yet, but it’s not a problem, you can use lock before calling from_json or to_json.
Question: Is iguana high performance?
Answer: Yes, it is, because iguana is based on compile-time reflection.
Question: I found a bug, how could I report?
Answer: Create an issue on GitHub with a detailed description.
deps
frozen lib
Update
Support C++20 and C++17
Refactor json reader, modification based on glaze json/read.hpp
A Universal Serialization Engine Based on compile-time Reflection
iguana is a modern, universal and easy-to-use serialization engine developed in C++20 and C++17.
qq 交流群 701594518
中文版
struct_pb
Motivation
Serialize an object to any other format data with compile-time reflection, such as json, xml, binary, table and so on. This library is designed to unify and simplify serialization in a portable cross-platform manner. This library is also easy to extend, and you can serialize any format of data with the library. This library provides a portable cross-platform way of:
compile time reflection
reflection lib introduction
Tutorial
This Tutorial is provided to give you a view of how iguana works for serialization.
Serialization of json
The first thing to do when you serialize an object is to define meta data. There is an example of defining meta data.
Defining meta data is very simple, if your compiler is C++20 compiler(gcc11+, clang13+, msvc2022), no need define YLT_REFL, other wise need to define in a
YLT_REFL
macro.Now let’s serialize
person
tojson
string.This example will output:
Serializing person to
json
string is also very simple, just need to callto_json
method, there is nothing more.How about deserialization of
json
? Look at the follow example.It’s as simple as serialization, just need to call
from_json
method.You can also use parse interface to do dom parsing:
Serialization of xml
The serialization of
xml
is similar tojson
. The first step is also defining meta data as above, and then you can calliguana::to_xml
to serialization the structure, or calliguana::from_xml
to deserialization the structure. The following is a complete example.Serialization of yaml
The serialization of
yaml
is also as simple as the above interface. Here is a complete example:A complicated example
json
iguana can deal with objects which contain another objects and containers. Here is the example:
At first, we define the meta data:
Then call the simple interface:
xml
At first, define the structure and reflect the meta data.
And then, simply call the interface:
yaml
As always what we do, define the structure and reflect the meta data.
And then, simply call the interface:
How to solve the problem of unicode path in a json file?
If there is an unicode string as a path in a json file, however iguana parse the file as utf-8, so maybe you can see some strange characters after parse.
It’s ok, because you see the utf-8 strings. The problem is you can’t use the string directly, such as use std::ifstream to open the file with the unicode string path.
We can slove the problem1 easily with c++17:
how to handle the enum type as strings?
By default, Iguana handle enum type as number type during serialization and deserialization. To handle the enum type as strings during serialization and deserialization with Iguana, we need to define a full specialization template in the “iguana” namespace. This template is a struct that contains an array with the underlying numbers corresponding to the enum type. For example, if we have the following enum type:
And we want to handle the enum type as strings when parsing JSON:
To do this, we define the full specialization template in the “iguana” namespace:
Once this is done, we can continue writing the rest of the code as usual.
Serialization of protobuf
similar with before:
more detail
Full sources:
Scripts
Automatically generate
YLT_REFL
macros based by struct.To get a list of basic options and switches use:
basic example:
The content of the test_macro_generator.cpp is as follows:
execute script:
After processing by the automatic_macro_generator.py script,test_macro_generator.cpp change into:
other example:
test_macro_generator.cpp will be unchanged, have_macro.cpp will be changed to source file with YLT_REFL macro.
scripts works out of the box with Python version 2.7 and 3.x on any platform.
Notes: In Python3,Will prompt
DeprecationWarning: 'U' mode is deprecated
.Ignore it.F.A.Q
Question: Why is the library called iguana?
Question: Does iguana support raw pointer?
Question: Is iguana thread-safe?
lock
before callingfrom_json
orto_json
.Question: Is iguana high performance?
Question: I found a bug, how could I report?
deps
frozen lib
Update