2018-01-04 01:52:37 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <pajlada/settings/serialize.hpp>
|
|
|
|
|
|
|
|
namespace pajlada {
|
|
|
|
namespace Settings {
|
|
|
|
|
2018-08-15 22:46:20 +02:00
|
|
|
template <>
|
|
|
|
struct Serialize<QString> {
|
|
|
|
static rapidjson::Value get(const QString &value,
|
|
|
|
rapidjson::Document::AllocatorType &a)
|
|
|
|
{
|
|
|
|
return rapidjson::Value(value.toUtf8(), a);
|
2018-01-04 01:52:37 +01:00
|
|
|
}
|
2018-08-15 22:46:20 +02:00
|
|
|
};
|
2018-01-04 01:52:37 +01:00
|
|
|
|
2018-08-15 22:46:20 +02:00
|
|
|
template <>
|
|
|
|
struct Deserialize<QString> {
|
|
|
|
static QString get(const rapidjson::Value &value, bool *error = nullptr)
|
|
|
|
{
|
|
|
|
if (!value.IsString()) {
|
|
|
|
PAJLADA_REPORT_ERROR(error)
|
|
|
|
PAJLADA_THROW_EXCEPTION(
|
|
|
|
"Deserialized rapidjson::Value is not a string");
|
|
|
|
return QString{};
|
|
|
|
}
|
2018-06-06 11:42:01 +02:00
|
|
|
|
2018-08-15 22:46:20 +02:00
|
|
|
try {
|
|
|
|
return QString::fromUtf8(value.GetString(),
|
|
|
|
value.GetStringLength());
|
|
|
|
} catch (const std::exception &) {
|
|
|
|
// int x = 5;
|
|
|
|
} catch (...) {
|
|
|
|
// int y = 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
return QString{};
|
|
|
|
}
|
|
|
|
};
|
2018-01-04 01:52:37 +01:00
|
|
|
|
|
|
|
} // namespace Settings
|
|
|
|
} // namespace pajlada
|