mirror of
https://github.com/mappu/miqt.git
synced 2025-02-01 19:10:21 +00:00
481 lines
13 KiB
C++
481 lines
13 KiB
C++
#include <QJsonArray>
|
|
#include <QJsonObject>
|
|
#include <QJsonValue>
|
|
#include <QJsonValueConstRef>
|
|
#include <QJsonValueRef>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QVariant>
|
|
#include <qjsonvalue.h>
|
|
#include "gen_qjsonvalue.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
QJsonValue* QJsonValue_new() {
|
|
return new QJsonValue();
|
|
}
|
|
|
|
QJsonValue* QJsonValue_new2(bool b) {
|
|
return new QJsonValue(b);
|
|
}
|
|
|
|
QJsonValue* QJsonValue_new3(double n) {
|
|
return new QJsonValue(static_cast<double>(n));
|
|
}
|
|
|
|
QJsonValue* QJsonValue_new4(int n) {
|
|
return new QJsonValue(static_cast<int>(n));
|
|
}
|
|
|
|
QJsonValue* QJsonValue_new5(long long v) {
|
|
return new QJsonValue(static_cast<qint64>(v));
|
|
}
|
|
|
|
QJsonValue* QJsonValue_new6(struct miqt_string s) {
|
|
QString s_QString = QString::fromUtf8(s.data, s.len);
|
|
return new QJsonValue(s_QString);
|
|
}
|
|
|
|
QJsonValue* QJsonValue_new7(const char* s) {
|
|
return new QJsonValue(s);
|
|
}
|
|
|
|
QJsonValue* QJsonValue_new8(QJsonArray* a) {
|
|
return new QJsonValue(*a);
|
|
}
|
|
|
|
QJsonValue* QJsonValue_new9(QJsonObject* o) {
|
|
return new QJsonValue(*o);
|
|
}
|
|
|
|
QJsonValue* QJsonValue_new10(QJsonValue* other) {
|
|
return new QJsonValue(*other);
|
|
}
|
|
|
|
QJsonValue* QJsonValue_new11(int param1) {
|
|
return new QJsonValue(static_cast<QJsonValue::Type>(param1));
|
|
}
|
|
|
|
void QJsonValue_operatorAssign(QJsonValue* self, QJsonValue* other) {
|
|
self->operator=(*other);
|
|
}
|
|
|
|
void QJsonValue_swap(QJsonValue* self, QJsonValue* other) {
|
|
self->swap(*other);
|
|
}
|
|
|
|
QJsonValue* QJsonValue_fromVariant(QVariant* variant) {
|
|
return new QJsonValue(QJsonValue::fromVariant(*variant));
|
|
}
|
|
|
|
QVariant* QJsonValue_toVariant(const QJsonValue* self) {
|
|
return new QVariant(self->toVariant());
|
|
}
|
|
|
|
int QJsonValue_type(const QJsonValue* self) {
|
|
QJsonValue::Type _ret = self->type();
|
|
return static_cast<int>(_ret);
|
|
}
|
|
|
|
bool QJsonValue_isNull(const QJsonValue* self) {
|
|
return self->isNull();
|
|
}
|
|
|
|
bool QJsonValue_isBool(const QJsonValue* self) {
|
|
return self->isBool();
|
|
}
|
|
|
|
bool QJsonValue_isDouble(const QJsonValue* self) {
|
|
return self->isDouble();
|
|
}
|
|
|
|
bool QJsonValue_isString(const QJsonValue* self) {
|
|
return self->isString();
|
|
}
|
|
|
|
bool QJsonValue_isArray(const QJsonValue* self) {
|
|
return self->isArray();
|
|
}
|
|
|
|
bool QJsonValue_isObject(const QJsonValue* self) {
|
|
return self->isObject();
|
|
}
|
|
|
|
bool QJsonValue_isUndefined(const QJsonValue* self) {
|
|
return self->isUndefined();
|
|
}
|
|
|
|
bool QJsonValue_toBool(const QJsonValue* self) {
|
|
return self->toBool();
|
|
}
|
|
|
|
int QJsonValue_toInt(const QJsonValue* self) {
|
|
return self->toInt();
|
|
}
|
|
|
|
long long QJsonValue_toInteger(const QJsonValue* self) {
|
|
qint64 _ret = self->toInteger();
|
|
return static_cast<long long>(_ret);
|
|
}
|
|
|
|
double QJsonValue_toDouble(const QJsonValue* self) {
|
|
return self->toDouble();
|
|
}
|
|
|
|
struct miqt_string QJsonValue_toString(const QJsonValue* self) {
|
|
QString _ret = self->toString();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
struct miqt_string QJsonValue_toStringWithDefaultValue(const QJsonValue* self, struct miqt_string defaultValue) {
|
|
QString defaultValue_QString = QString::fromUtf8(defaultValue.data, defaultValue.len);
|
|
QString _ret = self->toString(defaultValue_QString);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
QJsonArray* QJsonValue_toArray(const QJsonValue* self) {
|
|
return new QJsonArray(self->toArray());
|
|
}
|
|
|
|
QJsonArray* QJsonValue_toArrayWithDefaultValue(const QJsonValue* self, QJsonArray* defaultValue) {
|
|
return new QJsonArray(self->toArray(*defaultValue));
|
|
}
|
|
|
|
QJsonObject* QJsonValue_toObject(const QJsonValue* self) {
|
|
return new QJsonObject(self->toObject());
|
|
}
|
|
|
|
QJsonObject* QJsonValue_toObjectWithDefaultValue(const QJsonValue* self, QJsonObject* defaultValue) {
|
|
return new QJsonObject(self->toObject(*defaultValue));
|
|
}
|
|
|
|
QJsonValue* QJsonValue_operatorSubscript(const QJsonValue* self, struct miqt_string key) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
return new QJsonValue(self->operator[](key_QString));
|
|
}
|
|
|
|
QJsonValue* QJsonValue_operatorSubscriptWithQsizetype(const QJsonValue* self, ptrdiff_t i) {
|
|
return new QJsonValue(self->operator[]((qsizetype)(i)));
|
|
}
|
|
|
|
bool QJsonValue_operatorEqual(const QJsonValue* self, QJsonValue* other) {
|
|
return (*self == *other);
|
|
}
|
|
|
|
bool QJsonValue_operatorNotEqual(const QJsonValue* self, QJsonValue* other) {
|
|
return (*self != *other);
|
|
}
|
|
|
|
bool QJsonValue_toBool1(const QJsonValue* self, bool defaultValue) {
|
|
return self->toBool(defaultValue);
|
|
}
|
|
|
|
int QJsonValue_toInt1(const QJsonValue* self, int defaultValue) {
|
|
return self->toInt(static_cast<int>(defaultValue));
|
|
}
|
|
|
|
long long QJsonValue_toInteger1(const QJsonValue* self, long long defaultValue) {
|
|
qint64 _ret = self->toInteger(static_cast<qint64>(defaultValue));
|
|
return static_cast<long long>(_ret);
|
|
}
|
|
|
|
double QJsonValue_toDouble1(const QJsonValue* self, double defaultValue) {
|
|
return self->toDouble(static_cast<double>(defaultValue));
|
|
}
|
|
|
|
void QJsonValue_delete(QJsonValue* self) {
|
|
delete self;
|
|
}
|
|
|
|
QJsonValueConstRef* QJsonValueConstRef_new(QJsonValueConstRef* param1) {
|
|
return new QJsonValueConstRef(*param1);
|
|
}
|
|
|
|
QJsonValue* QJsonValueConstRef_ToQJsonValue(const QJsonValueConstRef* self) {
|
|
return new QJsonValue(self->operator QJsonValue());
|
|
}
|
|
|
|
QVariant* QJsonValueConstRef_toVariant(const QJsonValueConstRef* self) {
|
|
return new QVariant(self->toVariant());
|
|
}
|
|
|
|
int QJsonValueConstRef_type(const QJsonValueConstRef* self) {
|
|
QJsonValue::Type _ret = self->type();
|
|
return static_cast<int>(_ret);
|
|
}
|
|
|
|
bool QJsonValueConstRef_isNull(const QJsonValueConstRef* self) {
|
|
return self->isNull();
|
|
}
|
|
|
|
bool QJsonValueConstRef_isBool(const QJsonValueConstRef* self) {
|
|
return self->isBool();
|
|
}
|
|
|
|
bool QJsonValueConstRef_isDouble(const QJsonValueConstRef* self) {
|
|
return self->isDouble();
|
|
}
|
|
|
|
bool QJsonValueConstRef_isString(const QJsonValueConstRef* self) {
|
|
return self->isString();
|
|
}
|
|
|
|
bool QJsonValueConstRef_isArray(const QJsonValueConstRef* self) {
|
|
return self->isArray();
|
|
}
|
|
|
|
bool QJsonValueConstRef_isObject(const QJsonValueConstRef* self) {
|
|
return self->isObject();
|
|
}
|
|
|
|
bool QJsonValueConstRef_isUndefined(const QJsonValueConstRef* self) {
|
|
return self->isUndefined();
|
|
}
|
|
|
|
bool QJsonValueConstRef_toBool(const QJsonValueConstRef* self) {
|
|
return self->toBool();
|
|
}
|
|
|
|
int QJsonValueConstRef_toInt(const QJsonValueConstRef* self) {
|
|
return self->toInt();
|
|
}
|
|
|
|
long long QJsonValueConstRef_toInteger(const QJsonValueConstRef* self) {
|
|
qint64 _ret = self->toInteger();
|
|
return static_cast<long long>(_ret);
|
|
}
|
|
|
|
double QJsonValueConstRef_toDouble(const QJsonValueConstRef* self) {
|
|
return self->toDouble();
|
|
}
|
|
|
|
struct miqt_string QJsonValueConstRef_toString(const QJsonValueConstRef* self) {
|
|
QString _ret = self->toString();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
QJsonArray* QJsonValueConstRef_toArray(const QJsonValueConstRef* self) {
|
|
return new QJsonArray(self->toArray());
|
|
}
|
|
|
|
QJsonObject* QJsonValueConstRef_toObject(const QJsonValueConstRef* self) {
|
|
return new QJsonObject(self->toObject());
|
|
}
|
|
|
|
QJsonValue* QJsonValueConstRef_operatorSubscriptWithQsizetype(const QJsonValueConstRef* self, ptrdiff_t i) {
|
|
return new QJsonValue(self->operator[]((qsizetype)(i)));
|
|
}
|
|
|
|
bool QJsonValueConstRef_operatorEqual(const QJsonValueConstRef* self, QJsonValue* other) {
|
|
return (*self == *other);
|
|
}
|
|
|
|
bool QJsonValueConstRef_operatorNotEqual(const QJsonValueConstRef* self, QJsonValue* other) {
|
|
return (*self != *other);
|
|
}
|
|
|
|
bool QJsonValueConstRef_toBool1(const QJsonValueConstRef* self, bool defaultValue) {
|
|
return self->toBool(defaultValue);
|
|
}
|
|
|
|
int QJsonValueConstRef_toInt1(const QJsonValueConstRef* self, int defaultValue) {
|
|
return self->toInt(static_cast<int>(defaultValue));
|
|
}
|
|
|
|
long long QJsonValueConstRef_toInteger1(const QJsonValueConstRef* self, long long defaultValue) {
|
|
qint64 _ret = self->toInteger(static_cast<qint64>(defaultValue));
|
|
return static_cast<long long>(_ret);
|
|
}
|
|
|
|
double QJsonValueConstRef_toDouble1(const QJsonValueConstRef* self, double defaultValue) {
|
|
return self->toDouble(static_cast<double>(defaultValue));
|
|
}
|
|
|
|
struct miqt_string QJsonValueConstRef_toString1(const QJsonValueConstRef* self, struct miqt_string defaultValue) {
|
|
QString defaultValue_QString = QString::fromUtf8(defaultValue.data, defaultValue.len);
|
|
QString _ret = self->toString(defaultValue_QString);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
void QJsonValueConstRef_delete(QJsonValueConstRef* self) {
|
|
delete self;
|
|
}
|
|
|
|
QJsonValueRef* QJsonValueRef_new(QJsonValueRef* param1) {
|
|
return new QJsonValueRef(*param1);
|
|
}
|
|
|
|
QJsonValueRef* QJsonValueRef_new2(QJsonArray* array, ptrdiff_t idx) {
|
|
return new QJsonValueRef(array, (qsizetype)(idx));
|
|
}
|
|
|
|
QJsonValueRef* QJsonValueRef_new3(QJsonObject* object, ptrdiff_t idx) {
|
|
return new QJsonValueRef(object, (qsizetype)(idx));
|
|
}
|
|
|
|
void QJsonValueRef_virtbase(QJsonValueRef* src, QJsonValueConstRef** outptr_QJsonValueConstRef) {
|
|
*outptr_QJsonValueConstRef = static_cast<QJsonValueConstRef*>(src);
|
|
}
|
|
|
|
void QJsonValueRef_operatorAssign(QJsonValueRef* self, QJsonValue* val) {
|
|
self->operator=(*val);
|
|
}
|
|
|
|
void QJsonValueRef_operatorAssignWithVal(QJsonValueRef* self, QJsonValueRef* val) {
|
|
self->operator=(*val);
|
|
}
|
|
|
|
QJsonValue* QJsonValueRef_ToQJsonValue(const QJsonValueRef* self) {
|
|
return new QJsonValue(self->operator QJsonValue());
|
|
}
|
|
|
|
QVariant* QJsonValueRef_toVariant(const QJsonValueRef* self) {
|
|
return new QVariant(self->toVariant());
|
|
}
|
|
|
|
int QJsonValueRef_type(const QJsonValueRef* self) {
|
|
QJsonValue::Type _ret = self->type();
|
|
return static_cast<int>(_ret);
|
|
}
|
|
|
|
bool QJsonValueRef_isNull(const QJsonValueRef* self) {
|
|
return self->isNull();
|
|
}
|
|
|
|
bool QJsonValueRef_isBool(const QJsonValueRef* self) {
|
|
return self->isBool();
|
|
}
|
|
|
|
bool QJsonValueRef_isDouble(const QJsonValueRef* self) {
|
|
return self->isDouble();
|
|
}
|
|
|
|
bool QJsonValueRef_isString(const QJsonValueRef* self) {
|
|
return self->isString();
|
|
}
|
|
|
|
bool QJsonValueRef_isArray(const QJsonValueRef* self) {
|
|
return self->isArray();
|
|
}
|
|
|
|
bool QJsonValueRef_isObject(const QJsonValueRef* self) {
|
|
return self->isObject();
|
|
}
|
|
|
|
bool QJsonValueRef_isUndefined(const QJsonValueRef* self) {
|
|
return self->isUndefined();
|
|
}
|
|
|
|
bool QJsonValueRef_toBool(const QJsonValueRef* self) {
|
|
return self->toBool();
|
|
}
|
|
|
|
int QJsonValueRef_toInt(const QJsonValueRef* self) {
|
|
return self->toInt();
|
|
}
|
|
|
|
long long QJsonValueRef_toInteger(const QJsonValueRef* self) {
|
|
qint64 _ret = self->toInteger();
|
|
return static_cast<long long>(_ret);
|
|
}
|
|
|
|
double QJsonValueRef_toDouble(const QJsonValueRef* self) {
|
|
return self->toDouble();
|
|
}
|
|
|
|
struct miqt_string QJsonValueRef_toString(const QJsonValueRef* self) {
|
|
QString _ret = self->toString();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
QJsonArray* QJsonValueRef_toArray(const QJsonValueRef* self) {
|
|
return new QJsonArray(self->toArray());
|
|
}
|
|
|
|
QJsonObject* QJsonValueRef_toObject(const QJsonValueRef* self) {
|
|
return new QJsonObject(self->toObject());
|
|
}
|
|
|
|
QJsonValue* QJsonValueRef_operatorSubscriptWithQsizetype(const QJsonValueRef* self, ptrdiff_t i) {
|
|
return new QJsonValue(self->operator[]((qsizetype)(i)));
|
|
}
|
|
|
|
bool QJsonValueRef_operatorEqual(const QJsonValueRef* self, QJsonValue* other) {
|
|
return (*self == *other);
|
|
}
|
|
|
|
bool QJsonValueRef_operatorNotEqual(const QJsonValueRef* self, QJsonValue* other) {
|
|
return (*self != *other);
|
|
}
|
|
|
|
bool QJsonValueRef_toBool1(const QJsonValueRef* self, bool defaultValue) {
|
|
return self->toBool(defaultValue);
|
|
}
|
|
|
|
int QJsonValueRef_toInt1(const QJsonValueRef* self, int defaultValue) {
|
|
return self->toInt(static_cast<int>(defaultValue));
|
|
}
|
|
|
|
long long QJsonValueRef_toInteger1(const QJsonValueRef* self, long long defaultValue) {
|
|
qint64 _ret = self->toInteger(static_cast<qint64>(defaultValue));
|
|
return static_cast<long long>(_ret);
|
|
}
|
|
|
|
double QJsonValueRef_toDouble1(const QJsonValueRef* self, double defaultValue) {
|
|
return self->toDouble(static_cast<double>(defaultValue));
|
|
}
|
|
|
|
struct miqt_string QJsonValueRef_toString1(const QJsonValueRef* self, struct miqt_string defaultValue) {
|
|
QString defaultValue_QString = QString::fromUtf8(defaultValue.data, defaultValue.len);
|
|
QString _ret = self->toString(defaultValue_QString);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
void QJsonValueRef_delete(QJsonValueRef* self) {
|
|
delete self;
|
|
}
|
|
|