mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 05:13:30 -07:00
Remove old JSON classes.
This commit is contained in:
parent
268562bff3
commit
6e59877cee
7 changed files with 0 additions and 435 deletions
|
@ -1,163 +0,0 @@
|
||||||
/*
|
|
||||||
* Bittorrent Client using Qt4 and libtorrent.
|
|
||||||
* Copyright (C) 2006-2012 Ishan Arora and Christophe Dumez
|
|
||||||
*
|
|
||||||
* This program 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 2
|
|
||||||
* of the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program 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 for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
||||||
*
|
|
||||||
* In addition, as a special exception, the copyright holders give permission to
|
|
||||||
* link this program with the OpenSSL project's "OpenSSL" library (or with
|
|
||||||
* modified versions of it that use the same license as the "OpenSSL" library),
|
|
||||||
* and distribute the linked executables. You must obey the GNU General Public
|
|
||||||
* License in all respects for all of the code used other than "OpenSSL". If you
|
|
||||||
* modify file(s), you may extend this exception to your version of the file(s),
|
|
||||||
* but you are not obligated to do so. If you do not wish to do so, delete this
|
|
||||||
* exception statement from your version.
|
|
||||||
*
|
|
||||||
* Contact : chris@qbittorrent.org
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "json.h"
|
|
||||||
|
|
||||||
#include <QStringList>
|
|
||||||
#include <QVariantMap>
|
|
||||||
|
|
||||||
QString json::toJson(const QVariant& v) {
|
|
||||||
if (v.isNull())
|
|
||||||
return "null";
|
|
||||||
switch(v.type())
|
|
||||||
{
|
|
||||||
case QVariant::Bool:
|
|
||||||
case QVariant::Double:
|
|
||||||
case QVariant::Int:
|
|
||||||
case QVariant::LongLong:
|
|
||||||
case QVariant::UInt:
|
|
||||||
case QVariant::ULongLong:
|
|
||||||
return v.value<QString>();
|
|
||||||
case QVariant::StringList:
|
|
||||||
case QVariant::List: {
|
|
||||||
QStringList strList;
|
|
||||||
foreach (const QVariant &var, v.toList()) {
|
|
||||||
strList << toJson(var);
|
|
||||||
}
|
|
||||||
return "["+strList.join(",")+"]";
|
|
||||||
}
|
|
||||||
case QVariant::String: {
|
|
||||||
QString s = v.value<QString>();
|
|
||||||
QString result = "\"";
|
|
||||||
for (int i=0; i<s.size(); ++i) {
|
|
||||||
const QChar ch = s[i];
|
|
||||||
switch(ch.toLatin1())
|
|
||||||
{
|
|
||||||
case '\b':
|
|
||||||
result += "\\b";
|
|
||||||
break;
|
|
||||||
case '\f':
|
|
||||||
result += "\\f";
|
|
||||||
break;
|
|
||||||
case '\n':
|
|
||||||
result += "\\n";
|
|
||||||
break;
|
|
||||||
case '\r':
|
|
||||||
result += "\\r";
|
|
||||||
break;
|
|
||||||
case '\t':
|
|
||||||
result += "\\t";
|
|
||||||
break;
|
|
||||||
case '\"':
|
|
||||||
case '\\':
|
|
||||||
result += '\\';
|
|
||||||
case '\0':
|
|
||||||
default:
|
|
||||||
result += ch;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
result += "\"";
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
default:
|
|
||||||
qDebug("Unknown QVariantType: %d", (int)v.type());
|
|
||||||
return "undefined";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
QVariantMap json::fromJson(const QString& json) {
|
|
||||||
qDebug("JSON is %s", qPrintable(json));
|
|
||||||
QVariantMap m;
|
|
||||||
if (json.startsWith("{") && json.endsWith("}")) {
|
|
||||||
QStringList couples;
|
|
||||||
QString tmp = "";
|
|
||||||
bool in_list = false;
|
|
||||||
foreach (const QChar &c, json.mid(1, json.length()-2)) {
|
|
||||||
if (c == ',' && !in_list) {
|
|
||||||
couples << tmp;
|
|
||||||
tmp = "";
|
|
||||||
} else {
|
|
||||||
if (c == '[')
|
|
||||||
in_list = true;
|
|
||||||
else if (c == ']')
|
|
||||||
in_list = false;
|
|
||||||
tmp += c;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!tmp.isEmpty()) couples << tmp;
|
|
||||||
|
|
||||||
foreach (const QString &couple, couples) {
|
|
||||||
QStringList parts;
|
|
||||||
int jsonSep = couple.indexOf(":");
|
|
||||||
parts << couple.left(jsonSep);
|
|
||||||
parts << couple.mid(jsonSep + 1);
|
|
||||||
Q_ASSERT(parts.size() == 2);
|
|
||||||
QString key = parts.first();
|
|
||||||
if (key.startsWith("\"") && key.endsWith("\"")) {
|
|
||||||
key = key.mid(1, key.length()-2);
|
|
||||||
}
|
|
||||||
QString value_str = parts.last();
|
|
||||||
QVariant value;
|
|
||||||
if (value_str.startsWith("[") && value_str.endsWith("]")) {
|
|
||||||
value_str = value_str.mid(1, value_str.length()-2);
|
|
||||||
QStringList list_elems = value_str.split(",", QString::SkipEmptyParts);
|
|
||||||
QVariantList varlist;
|
|
||||||
foreach (const QString &list_val, list_elems) {
|
|
||||||
if (list_val.startsWith("\"") && list_val.endsWith("\"")) {
|
|
||||||
varlist << list_val.mid(1, list_val.length()-2).replace("\\n", "\n");
|
|
||||||
} else {
|
|
||||||
if (list_val.compare("false", Qt::CaseInsensitive) == 0)
|
|
||||||
varlist << false;
|
|
||||||
else if (list_val.compare("true", Qt::CaseInsensitive) == 0)
|
|
||||||
varlist << true;
|
|
||||||
else
|
|
||||||
varlist << list_val.toInt();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
value = varlist;
|
|
||||||
} else {
|
|
||||||
if (value_str.startsWith("\"") && value_str.endsWith("\"")) {
|
|
||||||
value_str = value_str.mid(1, value_str.length()-2).replace("\\n", "\n");
|
|
||||||
value = value_str;
|
|
||||||
} else {
|
|
||||||
if (value_str.compare("false", Qt::CaseInsensitive) == 0)
|
|
||||||
value = false;
|
|
||||||
else if (value_str.compare("true", Qt::CaseInsensitive) == 0)
|
|
||||||
value = true;
|
|
||||||
else
|
|
||||||
value = value_str.toInt();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
m.insert(key, value);
|
|
||||||
qDebug("%s:%s", qPrintable(key), qPrintable(value_str));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return m;
|
|
||||||
}
|
|
|
@ -1,44 +0,0 @@
|
||||||
/*
|
|
||||||
* Bittorrent Client using Qt4 and libtorrent.
|
|
||||||
* Copyright (C) 2006-2012 Ishan Arora and Christophe Dumez
|
|
||||||
*
|
|
||||||
* This program 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 2
|
|
||||||
* of the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program 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 for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
||||||
*
|
|
||||||
* In addition, as a special exception, the copyright holders give permission to
|
|
||||||
* link this program with the OpenSSL project's "OpenSSL" library (or with
|
|
||||||
* modified versions of it that use the same license as the "OpenSSL" library),
|
|
||||||
* and distribute the linked executables. You must obey the GNU General Public
|
|
||||||
* License in all respects for all of the code used other than "OpenSSL". If you
|
|
||||||
* modify file(s), you may extend this exception to your version of the file(s),
|
|
||||||
* but you are not obligated to do so. If you do not wish to do so, delete this
|
|
||||||
* exception statement from your version.
|
|
||||||
*
|
|
||||||
* Contact : chris@qbittorrent.org
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef JSON_H
|
|
||||||
#define JSON_H
|
|
||||||
|
|
||||||
#include <QVariant>
|
|
||||||
|
|
||||||
namespace json {
|
|
||||||
|
|
||||||
QString toJson(const QVariant& v);
|
|
||||||
QVariantMap fromJson(const QString& json);
|
|
||||||
|
|
||||||
} // namespace json
|
|
||||||
|
|
||||||
#endif
|
|
|
@ -1,57 +0,0 @@
|
||||||
/*
|
|
||||||
* Bittorrent Client using Qt4 and libtorrent.
|
|
||||||
* Copyright (C) 2012, Christophe Dumez
|
|
||||||
*
|
|
||||||
* This program 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 2
|
|
||||||
* of the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program 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 for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
||||||
*
|
|
||||||
* In addition, as a special exception, the copyright holders give permission to
|
|
||||||
* link this program with the OpenSSL project's "OpenSSL" library (or with
|
|
||||||
* modified versions of it that use the same license as the "OpenSSL" library),
|
|
||||||
* and distribute the linked executables. You must obey the GNU General Public
|
|
||||||
* License in all respects for all of the code used other than "OpenSSL". If you
|
|
||||||
* modify file(s), you may extend this exception to your version of the file(s),
|
|
||||||
* but you are not obligated to do so. If you do not wish to do so, delete this
|
|
||||||
* exception statement from your version.
|
|
||||||
*
|
|
||||||
* Contact : chris@qbittorrent.org
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "jsondict.h"
|
|
||||||
#include "json.h"
|
|
||||||
|
|
||||||
JsonDict::JsonDict(): m_dirty(false)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void JsonDict::clear()
|
|
||||||
{
|
|
||||||
m_items.clear();
|
|
||||||
m_dirty = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
void JsonDict::add(const QString& key, const QVariant& value)
|
|
||||||
{
|
|
||||||
m_items.append("\"" + key + "\":" + json::toJson(value));
|
|
||||||
m_dirty = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
const QString& JsonDict::toString() const
|
|
||||||
{
|
|
||||||
if (m_dirty) {
|
|
||||||
m_json = "{" + m_items.join(",") + "}";
|
|
||||||
m_dirty = false;
|
|
||||||
}
|
|
||||||
return m_json;
|
|
||||||
}
|
|
|
@ -1,50 +0,0 @@
|
||||||
/*
|
|
||||||
* Bittorrent Client using Qt4 and libtorrent.
|
|
||||||
* Copyright (C) 2012, Christophe Dumez
|
|
||||||
*
|
|
||||||
* This program 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 2
|
|
||||||
* of the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program 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 for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
||||||
*
|
|
||||||
* In addition, as a special exception, the copyright holders give permission to
|
|
||||||
* link this program with the OpenSSL project's "OpenSSL" library (or with
|
|
||||||
* modified versions of it that use the same license as the "OpenSSL" library),
|
|
||||||
* and distribute the linked executables. You must obey the GNU General Public
|
|
||||||
* License in all respects for all of the code used other than "OpenSSL". If you
|
|
||||||
* modify file(s), you may extend this exception to your version of the file(s),
|
|
||||||
* but you are not obligated to do so. If you do not wish to do so, delete this
|
|
||||||
* exception statement from your version.
|
|
||||||
*
|
|
||||||
* Contact : chris@qbittorrent.org
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef JSONDICT_H
|
|
||||||
#define JSONDICT_H
|
|
||||||
|
|
||||||
#include <QStringList>
|
|
||||||
|
|
||||||
class JsonDict
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
JsonDict();
|
|
||||||
void clear();
|
|
||||||
void add(const QString& key, const QVariant& value);
|
|
||||||
const QString& toString() const;
|
|
||||||
|
|
||||||
private:
|
|
||||||
mutable bool m_dirty;
|
|
||||||
mutable QString m_json;
|
|
||||||
QStringList m_items;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // JSONDICT_H
|
|
|
@ -1,63 +0,0 @@
|
||||||
/*
|
|
||||||
* Bittorrent Client using Qt4 and libtorrent.
|
|
||||||
* Copyright (C) 2012, Christophe Dumez
|
|
||||||
*
|
|
||||||
* This program 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 2
|
|
||||||
* of the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program 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 for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
||||||
*
|
|
||||||
* In addition, as a special exception, the copyright holders give permission to
|
|
||||||
* link this program with the OpenSSL project's "OpenSSL" library (or with
|
|
||||||
* modified versions of it that use the same license as the "OpenSSL" library),
|
|
||||||
* and distribute the linked executables. You must obey the GNU General Public
|
|
||||||
* License in all respects for all of the code used other than "OpenSSL". If you
|
|
||||||
* modify file(s), you may extend this exception to your version of the file(s),
|
|
||||||
* but you are not obligated to do so. If you do not wish to do so, delete this
|
|
||||||
* exception statement from your version.
|
|
||||||
*
|
|
||||||
* Contact : chris@qbittorrent.org
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "jsonlist.h"
|
|
||||||
#include "json.h"
|
|
||||||
|
|
||||||
JsonList::JsonList() : m_dirty(false)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
const QString& JsonList::toString() const
|
|
||||||
{
|
|
||||||
if (m_dirty) {
|
|
||||||
m_json = "[" + m_items.join(",") + "]";
|
|
||||||
m_dirty = false;
|
|
||||||
}
|
|
||||||
return m_json;
|
|
||||||
}
|
|
||||||
|
|
||||||
void JsonList::clear()
|
|
||||||
{
|
|
||||||
m_items.clear();
|
|
||||||
m_dirty = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
void JsonList::append(const QVariant& val)
|
|
||||||
{
|
|
||||||
m_items.append(json::toJson(val));
|
|
||||||
m_dirty = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
void JsonList::append(const JsonDict& dict)
|
|
||||||
{
|
|
||||||
m_items.append(dict.toString());
|
|
||||||
m_dirty = true;
|
|
||||||
}
|
|
|
@ -1,52 +0,0 @@
|
||||||
/*
|
|
||||||
* Bittorrent Client using Qt4 and libtorrent.
|
|
||||||
* Copyright (C) 2012, Christophe Dumez
|
|
||||||
*
|
|
||||||
* This program 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 2
|
|
||||||
* of the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program 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 for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
||||||
*
|
|
||||||
* In addition, as a special exception, the copyright holders give permission to
|
|
||||||
* link this program with the OpenSSL project's "OpenSSL" library (or with
|
|
||||||
* modified versions of it that use the same license as the "OpenSSL" library),
|
|
||||||
* and distribute the linked executables. You must obey the GNU General Public
|
|
||||||
* License in all respects for all of the code used other than "OpenSSL". If you
|
|
||||||
* modify file(s), you may extend this exception to your version of the file(s),
|
|
||||||
* but you are not obligated to do so. If you do not wish to do so, delete this
|
|
||||||
* exception statement from your version.
|
|
||||||
*
|
|
||||||
* Contact : chris@qbittorrent.org
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef JSONLIST_H
|
|
||||||
#define JSONLIST_H
|
|
||||||
|
|
||||||
#include <QStringList>
|
|
||||||
#include "jsondict.h"
|
|
||||||
|
|
||||||
class JsonList
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
JsonList();
|
|
||||||
const QString& toString() const;
|
|
||||||
void clear();
|
|
||||||
void append(const QVariant& val);
|
|
||||||
void append(const JsonDict& dict);
|
|
||||||
|
|
||||||
private:
|
|
||||||
mutable bool m_dirty;
|
|
||||||
mutable QString m_json;
|
|
||||||
QStringList m_items;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // JSONLIST_H
|
|
|
@ -4,9 +4,6 @@ HEADERS += $$PWD/httpserver.h \
|
||||||
$$PWD/httpconnection.h \
|
$$PWD/httpconnection.h \
|
||||||
$$PWD/httprequestparser.h \
|
$$PWD/httprequestparser.h \
|
||||||
$$PWD/httpresponsegenerator.h \
|
$$PWD/httpresponsegenerator.h \
|
||||||
$$PWD/json.h \
|
|
||||||
$$PWD/jsonlist.h \
|
|
||||||
$$PWD/jsondict.h \
|
|
||||||
$$PWD/btjson.h \
|
$$PWD/btjson.h \
|
||||||
$$PWD/prefjson.h \
|
$$PWD/prefjson.h \
|
||||||
$$PWD/httpheader.h \
|
$$PWD/httpheader.h \
|
||||||
|
@ -17,10 +14,7 @@ SOURCES += $$PWD/httpserver.cpp \
|
||||||
$$PWD/httpconnection.cpp \
|
$$PWD/httpconnection.cpp \
|
||||||
$$PWD/httprequestparser.cpp \
|
$$PWD/httprequestparser.cpp \
|
||||||
$$PWD/httpresponsegenerator.cpp \
|
$$PWD/httpresponsegenerator.cpp \
|
||||||
$$PWD/jsonlist.cpp \
|
|
||||||
$$PWD/jsondict.cpp \
|
|
||||||
$$PWD/btjson.cpp \
|
$$PWD/btjson.cpp \
|
||||||
$$PWD/json.cpp \
|
|
||||||
$$PWD/prefjson.cpp \
|
$$PWD/prefjson.cpp \
|
||||||
$$PWD/httpheader.cpp \
|
$$PWD/httpheader.cpp \
|
||||||
$$PWD/httprequestheader.cpp \
|
$$PWD/httprequestheader.cpp \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue