mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-23 23:13:39 -06:00
ac832866e6
http://stackoverflow.com/questions/4169988/easiest-way-to-parse-json-in-qt-4-7 p4#: 21634
59 lines
1.7 KiB
C++
59 lines
1.7 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2011-2013 Statoil ASA, Ceetron AS
|
|
//
|
|
// ResInsight is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
// FITNESS FOR A PARTICULAR PURPOSE.
|
|
//
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
|
// for more details.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Json parser based on code example found on:
|
|
// http://stackoverflow.com/questions/4169988/easiest-way-to-parse-json-in-qt-4-7
|
|
|
|
//#define IMPL_DUMP_TO_FILE
|
|
|
|
#include <QtCore/QVariant>
|
|
#include <QtCore/QMap>
|
|
#include <QtCore/QList>
|
|
#include <QtCore/QString>
|
|
#include <QtScript/QScriptValue>
|
|
|
|
#if IMPL_DUMP_TO_FILE
|
|
#include <vector>
|
|
#include <cvfVector3.h>
|
|
#endif
|
|
|
|
class QScriptEngine;
|
|
|
|
class JsonReader
|
|
{
|
|
public:
|
|
QMap<QString, QVariant> decodeFile(QString filePath);
|
|
|
|
#if IMPL_DUMP_TO_FILE
|
|
void dumpToFile(std::vector<cvf::Vec3d>& points, QString filePath);
|
|
#endif
|
|
};
|
|
|
|
class Json
|
|
{
|
|
public:
|
|
Json() {};
|
|
QString encode(const QMap<QString,QVariant> &map);
|
|
QMap<QString, QVariant> decode(const QString &jsonStr);
|
|
|
|
private:
|
|
QScriptValue encodeInner(const QMap<QString,QVariant> &map, QScriptEngine* engine);
|
|
QMap<QString, QVariant> decodeInner(QScriptValue object);
|
|
QList<QVariant> decodeInnerToList(QScriptValue arrayValue);
|
|
};
|