mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
186 lines
5.6 KiB
C++
186 lines
5.6 KiB
C++
#include <QByteArray>
|
|
#include <QJsonArray>
|
|
#include <QJsonDocument>
|
|
#include <QJsonObject>
|
|
#include <QJsonParseError>
|
|
#include <QJsonValue>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QVariant>
|
|
#include <qjsondocument.h>
|
|
#include "gen_qjsondocument.h"
|
|
#include "_cgo_export.h"
|
|
|
|
struct miqt_string QJsonParseError_ErrorString(const QJsonParseError* self) {
|
|
QString _ret = self->errorString();
|
|
// 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 QJsonParseError_Delete(QJsonParseError* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QJsonParseError*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|
|
void QJsonDocument_new(QJsonDocument** outptr_QJsonDocument) {
|
|
QJsonDocument* ret = new QJsonDocument();
|
|
*outptr_QJsonDocument = ret;
|
|
}
|
|
|
|
void QJsonDocument_new2(QJsonObject* object, QJsonDocument** outptr_QJsonDocument) {
|
|
QJsonDocument* ret = new QJsonDocument(*object);
|
|
*outptr_QJsonDocument = ret;
|
|
}
|
|
|
|
void QJsonDocument_new3(QJsonArray* array, QJsonDocument** outptr_QJsonDocument) {
|
|
QJsonDocument* ret = new QJsonDocument(*array);
|
|
*outptr_QJsonDocument = ret;
|
|
}
|
|
|
|
void QJsonDocument_new4(QJsonDocument* other, QJsonDocument** outptr_QJsonDocument) {
|
|
QJsonDocument* ret = new QJsonDocument(*other);
|
|
*outptr_QJsonDocument = ret;
|
|
}
|
|
|
|
void QJsonDocument_OperatorAssign(QJsonDocument* self, QJsonDocument* other) {
|
|
self->operator=(*other);
|
|
}
|
|
|
|
void QJsonDocument_Swap(QJsonDocument* self, QJsonDocument* other) {
|
|
self->swap(*other);
|
|
}
|
|
|
|
QJsonDocument* QJsonDocument_FromRawData(const char* data, int size) {
|
|
return new QJsonDocument(QJsonDocument::fromRawData(data, static_cast<int>(size)));
|
|
}
|
|
|
|
const char* QJsonDocument_RawData(const QJsonDocument* self, int* size) {
|
|
return (const char*) self->rawData(static_cast<int*>(size));
|
|
}
|
|
|
|
QJsonDocument* QJsonDocument_FromBinaryData(struct miqt_string data) {
|
|
QByteArray data_QByteArray(data.data, data.len);
|
|
return new QJsonDocument(QJsonDocument::fromBinaryData(data_QByteArray));
|
|
}
|
|
|
|
struct miqt_string QJsonDocument_ToBinaryData(const QJsonDocument* self) {
|
|
QByteArray _qb = self->toBinaryData();
|
|
struct miqt_string _ms;
|
|
_ms.len = _qb.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _qb.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
QJsonDocument* QJsonDocument_FromVariant(QVariant* variant) {
|
|
return new QJsonDocument(QJsonDocument::fromVariant(*variant));
|
|
}
|
|
|
|
QVariant* QJsonDocument_ToVariant(const QJsonDocument* self) {
|
|
return new QVariant(self->toVariant());
|
|
}
|
|
|
|
QJsonDocument* QJsonDocument_FromJson(struct miqt_string json) {
|
|
QByteArray json_QByteArray(json.data, json.len);
|
|
return new QJsonDocument(QJsonDocument::fromJson(json_QByteArray));
|
|
}
|
|
|
|
struct miqt_string QJsonDocument_ToJson(const QJsonDocument* self) {
|
|
QByteArray _qb = self->toJson();
|
|
struct miqt_string _ms;
|
|
_ms.len = _qb.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _qb.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
struct miqt_string QJsonDocument_ToJsonWithFormat(const QJsonDocument* self, int format) {
|
|
QByteArray _qb = self->toJson(static_cast<QJsonDocument::JsonFormat>(format));
|
|
struct miqt_string _ms;
|
|
_ms.len = _qb.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _qb.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
bool QJsonDocument_IsEmpty(const QJsonDocument* self) {
|
|
return self->isEmpty();
|
|
}
|
|
|
|
bool QJsonDocument_IsArray(const QJsonDocument* self) {
|
|
return self->isArray();
|
|
}
|
|
|
|
bool QJsonDocument_IsObject(const QJsonDocument* self) {
|
|
return self->isObject();
|
|
}
|
|
|
|
QJsonObject* QJsonDocument_Object(const QJsonDocument* self) {
|
|
return new QJsonObject(self->object());
|
|
}
|
|
|
|
QJsonArray* QJsonDocument_Array(const QJsonDocument* self) {
|
|
return new QJsonArray(self->array());
|
|
}
|
|
|
|
void QJsonDocument_SetObject(QJsonDocument* self, QJsonObject* object) {
|
|
self->setObject(*object);
|
|
}
|
|
|
|
void QJsonDocument_SetArray(QJsonDocument* self, QJsonArray* array) {
|
|
self->setArray(*array);
|
|
}
|
|
|
|
QJsonValue* QJsonDocument_OperatorSubscript(const QJsonDocument* self, struct miqt_string key) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
return new QJsonValue(self->operator[](key_QString));
|
|
}
|
|
|
|
QJsonValue* QJsonDocument_OperatorSubscriptWithInt(const QJsonDocument* self, int i) {
|
|
return new QJsonValue(self->operator[](static_cast<int>(i)));
|
|
}
|
|
|
|
bool QJsonDocument_OperatorEqual(const QJsonDocument* self, QJsonDocument* other) {
|
|
return (*self == *other);
|
|
}
|
|
|
|
bool QJsonDocument_OperatorNotEqual(const QJsonDocument* self, QJsonDocument* other) {
|
|
return (*self != *other);
|
|
}
|
|
|
|
bool QJsonDocument_IsNull(const QJsonDocument* self) {
|
|
return self->isNull();
|
|
}
|
|
|
|
QJsonDocument* QJsonDocument_FromRawData3(const char* data, int size, int validation) {
|
|
return new QJsonDocument(QJsonDocument::fromRawData(data, static_cast<int>(size), static_cast<QJsonDocument::DataValidation>(validation)));
|
|
}
|
|
|
|
QJsonDocument* QJsonDocument_FromBinaryData2(struct miqt_string data, int validation) {
|
|
QByteArray data_QByteArray(data.data, data.len);
|
|
return new QJsonDocument(QJsonDocument::fromBinaryData(data_QByteArray, static_cast<QJsonDocument::DataValidation>(validation)));
|
|
}
|
|
|
|
QJsonDocument* QJsonDocument_FromJson2(struct miqt_string json, QJsonParseError* error) {
|
|
QByteArray json_QByteArray(json.data, json.len);
|
|
return new QJsonDocument(QJsonDocument::fromJson(json_QByteArray, error));
|
|
}
|
|
|
|
void QJsonDocument_Delete(QJsonDocument* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QJsonDocument*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|