A library to perform generic seralization and deserialization of QObjects.
With this small library, you are able to serialize any QObject or Q_GADGET class to JSON and back. This is done with help of Qt's meta system.
- Serialize QObjects, Q_GADGETS, lists, maps, etc. to JSON, in a generic matter
- ... and of course deserialize JSON back as well
- De/serialize any QVariant - as long as it contains only basic types or one of the above
- Works even with QJsonValue/Array/Object as properties
- Serializes Q_PROPERTY elements
- Enum de/serialization as integer or as string
- Deserialization: Additional JSON-values will be stored as dynamic properties for QObjects
- Supports polymorphism
- Fully Unit-Tested
- Thread-Safe
- Easily extensible
There are multiple ways to install the Qt module, sorted by preference:
- Package Managers: The library is available via:
- Arch-Linux: AUR-Repository:
qt5-jsonserializer
- Flatpak Module template: Skycoder42/deployment qtjsonserializer.json
- MacOs:
- Tap:
brew tap Skycoder42/qt-modules
- Package:
qtjsonserializer
- IMPORTANT: Due to limitations of homebrew, you must run
source /usr/local/opt/qtjsonserializer/bashrc.sh
before you can use the module.
- Tap:
- Arch-Linux: AUR-Repository:
- Simply add my repository to your Qt MaintenanceTool (Image-based How-To here: Add custom repository):
- Start the MaintenanceTool from the commandline using
/path/to/MaintenanceTool --addTempRepository <url>
with one of the following urls (GUI-Method is currently broken, see QTIFW-1156) - This must be done every time you start the tool: - A new entry appears under all supported Qt Versions (e.g.
Qt > Qt 5.11 > Skycoder42 Qt modules
) - You can install either all of my modules, or select the one you need:
Qt Json Serializer
- Continue the setup and thats it! you can now use the module for all of your installed Kits for that Qt
- Start the MaintenanceTool from the commandline using
- Download the compiled modules from the release page. Note: You will have to add the correct ones yourself and may need to adjust some paths to fit your installation!
- Build it yourself! Note: This requires perl to be installed. If you don't have/need cmake, you can ignore the related warnings. To automatically build and install to your Qt installation, perform the following steps:
- Download the sources. Either use
git clone
or download from the releases. If you choose the second option, you have to manually create a folder named.git
in the projects root directory, otherwise the build will fail. qmake
make
(If you want the tests/examples/etc. runmake all
)- Optional steps:
make doxygen
to generate the documentationmake -j1 run-tests
to build and run all tests
make install
- Download the sources. Either use
By default, a bunch of list, map, etc. converters are registered for standard Qt types via the qtJsonSerializerRegisterTypes
method. This however needs many generated functions and will increase the size of the generated binary drasticly. If you don't need those converters, run qmake CONFIG+=no_register_json_converters
instead of a parameterless qmake. The mentioned function will then be generated as noop method and no converters are registerd.
Please be aware that in this mode it is not possible to serialize e.g. QList<int>
unless you manually register the corresponding converters via QJsonSerializer::registerListConverters<int>();
!
The serializer is provided as a Qt module. Thus, all you have to do is install the module, and then, in your project, add QT += jsonserializer
to your .pro
file! The following chapters show an example and explain a few important details regarding the functionality and limits of the implementation.
Both serialization and desertialization are rather simple. Create an object, and then use the serializer as follows:
The following is an example for a serializable object. Note: The usage of MEMBER
Properties is not required, and simply done to make this example more readable.
class TestObject : public QObject
{
Q_OBJECT
Q_PROPERTY(QString stringProperty MEMBER stringProperty)
Q_PROPERTY(QList<int> simpleList MEMBER simpleList)
Q_PROPERTY(QMap<QString, double> simpleMap MEMBER simpleMap); // add the semicolon or use a typedef to surpress most errors of the clang code model
Q_PROPERTY(TestObject* childObject MEMBER childObject)
public:
Q_INVOKABLE TestObject(QObject *parent = nullptr);
QString stringProperty;
QList<int> simpleList;
QMap<QString, double> simpleMap;
TestObject* childObject;
}
Note: If you want to use a typedef, read the Support for using and typedef section first!
You can serialize (and deserialize) the object with:
auto serializer = new QJsonSerializer(this);
try {
//serialize
auto object = new TestObject();
object->stringProperty = "test";
object->simpleList = {1, 2, 3};
object->simpleMap = {
{"pi", 3.14},
{"e", 2.71}
};
object->childObject = new TestObject(object);
auto json = serializer->serialize(object);
qDebug() << json;
delete object;
//deserialize
object = serializer->deserialize<TestObject>(json);//optional: specify the parent
qDebug() << object->stringProperty
<< object->simpleList
<< object->simpleMap
<< object->childObject;
delete object;
} catch(QJsonSerializerException &e) {
qDebug() << e.what();
}
For the serialization, the created json would look like this:
{
"stringProperty": "test",
"simpleList": [1, 2, 3],
"simpleMap": {
"pi": 3.14,
"e": 2.71
},
"childObject": {
"stringProperty": "",
"simpleList": [],
"simpleMap": {},
"childObject": null
}
}
In order for the serializer to properly work, there are a few things you have to know and do:
- Only Q_PROPERTY properties of objects/gadgets will be serialized, and of those only properties that are marked to be stored (see The Property System, STORED attribute)
- For the deserialization of QObjects, they need an invokable constructor, that takes only a parent:
Q_INVOKABLE MyClass(QObject*);
- The following types are explicitly supported:
QObject*
and deriving classes- Classes/structs marked with
Q_GADGET
(as value or plain pointer only!) QList<T>
,QLinkedList<T>
,QVector<T>
,QStack<T>
,QQueue<T>
,QSet<T>
, with T beeing any type that is serializable as wellQMap<QString, T>
,QHash<QString, T>
,QMultiMap<QString, T>
,QMultiHash<QString, T>
, with T beeing any type that is serializable as well (string as key type is required)- Simple types, that are supported by QJsonValue (See QJsonValue::fromVariant and QJsonValue::toVariant)
Q_ENUM
andQ_FLAG
types, as integer or as string- The string de/serialization of Q_ENUM and Q_FLAG types only works if used as a Q_PROPERTY. Integer will always work.
QJson...
typesQPair<T1, T2>
andstd::pair<T1, T2>
, of any types that are serializable as wellstd::tuple<TArgs...>
, of any types that are serializable as wellstd::optional<T>
, of any type that is serializable as wellstd::variant<TArgs...>
, of any types that are serializable as wellstd::chrono::*
, for the basic times (hours, minutes, seconds, milliseconds, microseconds, nanoseconds)- Standard QtCore types (QByteArray, QUrl, QVersionNumber, QUuid, QPoint, QSize, QLine, QRect, QLocale, QRegularExpression, ...)
- QByteArray is represented by a base64 encoded string
- Any type you add yourself by extending the serializer (See QJsonTypeConverter documentation)
- While simple types (i.e.
QList<int>
) are supported out of the box, for custom types (likeQList<TestObject*>
) you will have to register converters. This goes for- List-, Set- and Map-Types: use
QJsonSerializer::registerBasicConverters<T>()
- List-Types only: use
QJsonSerializer::registerListConverters<T>()
- Set-Types only: use
QJsonSerializer::registerSetConverters<T>()
- Map-Types only: use
QJsonSerializer::registerMapConverters<T>()
- Maps and hashes can be registered seperately using a template parameter, if you only need one of those
- QPair and std::pair: use
QJsonSerializer::registerPairConverters<T1, T2>()
- std::tuple: use
QJsonSerializer::registerTupleConverters<TArgs...>()
- std::optional: use
QJsonSerializer::registerOptionalConverters<T>()
- std::variant: use
QJsonSerializer::registerVariantConverters<TArgs...>()
- QSharedPointer/QPointer: use
QJsonSerializer::registerPointerConverters<T>()
- List-, Set- and Map-Types: use
- Polymorphic QObjects are supported. This is done by the serializer via adding a special @@class json property. To make a class polymorphic you can:
- Add
Q_JSON_POLYMORPHIC(true)
(orQ_CLASSINFO("polymorphic", "true")
) to its definition - Globally force polyphormism (See QJsonSerializer::polymorphing in the doc)
- Set a dynamic property:
setProperty("__qt_json_serializer_polymorphic", true);
- Add
- By default, the
objectName
property of QObjects is not serialized (See keepObjectName) - By default, the JSON
null
can only be converted to QObjects. For other types the conversion fails (See allowDefaultNull)
Many converters on the serializer depends on beeing able to get the name of a specific type in order to be able to correctly serialize it. Especially when template types are used, this is required to get the type of the template parameters. This means that some typedefs will not work out of the box, if not correctly registered. This can become rather complicated, because the serializer depends on the somewhat complicated typedef handling of the Qt meta system. There are generally 2 kinds of typedefs described below.
Implicit typedefs in this context are understood as typedefs that are registered within Qt using qRegisterMetaType
. The important part here is that the original type name must be declared via Q_DECLARE_METATYPE
and typedefs are then registered in Qt after that. A basic example would be a typedef for a custom class:
class MyClass {};
Q_DECLARE_METATYPE(MyClass)
using MyTypedef = MyClass;
qRegisterMetaType<MyClass>();
qRegisterMetaType<MyClass>("MyTypedef");
qDebug() << QMetaType::typeName(qMetaTypeId<MyTypedef>());
//will print "MyClass", the original type name
Using such typedefs is completely safe, as Qt will internally resolve the correctly, i.e. declaring a property as Q_PROPERTY(MyTypedef value ...)
will pass the MyClass
MetaType to the serializer.
However, this will not work for the case where a typedef is registered as the "original" type name. For these cases, you need the explicit typedefs.
If you for example declare a metatype by a typedef'ed name, this name is considered the "real" name by Qt. The following example shows this for a custom map that is registered as typedef so that it can be used as property on older compilers:
using MyMap = QMap<QString, MyType>;
Q_DECLARE_METATYPE(MyMap);
qRegisterMetaType<MyMap>();
qRegisterMetaType<MyMap>("QMap<QString, MyType>");
qDebug() << QMetaType::typeName(qMetaTypeId<QMap<QString, MyType>>());
//will print "MyMap", making it impossible to get the value type
To solve this problem, it is possible to explicity register an "inverse typedef" using QJsonTypeConverter::registerInverseTypedef to tell the serializer what the original name of a given type is. This way the converters can get that typename using QJsonTypeConverter::getCanonicalTypeName instead of the registered one:
QJsonTypeConverter::registerInverseTypedef<MyMap>("QMap<QString, MyType>");
The QJsonTypeConverter::getCanonicalTypeName method will now return "QMap<QString, MyType>" if "MyMap" is passed to it, and thus can correctly extract and use "MyType" as value for the serialization.
Right now, only official Qt-Containers ar supported as containers. The reason is, that adding containers requires the registration of converters.
If you need the other containers, you have 2 options:
- Implement a custom
QJsonTypeConverter
(You will still have to register all the converters). - Create "converter" properties that are used for serialization only. This is the more simple version, but needs to be done for every occurance of that container, and adds some overhead.
The following example shows how to do that to use std::list
in code, but serialize as QList
:
struct MyGadget {
Q_GADGET
Q_PROPERTY(QList<int> myIntVector READ getMyIntList WRITE setMyIntList) //normal property name, as this one appears in json
//Important: Add "STORED false":
Q_PROPERTY(std::list<int> myIntStdList READ getMyIntStdList WRITE setMyIntStdList STORED false) //will not be serialized
public:
std::list<int> getMyIntStdList() const;
void setMyIntStdList(const std::list<int> &vector) ;
private:
QList<int> getMyIntList() const {
return QList::fromStdList(getMyIntStdList());
}
void setMyIntList(const QList<int> &list) {
setMyIntStdList(list.toStdList());
}
};
The documentation is available on github pages. It was created using doxygen. The HTML-documentation and Qt-Help files are shipped together with the module for both the custom repository and the package on the release page. Please note that doxygen docs do not perfectly integrate with QtCreator/QtAssistant.