mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
187 lines
6.6 KiB
C++
187 lines
6.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"
|
|
|
|
extern "C" {
|
|
extern void miqt_exec_callback(void* cb, int argc, void* argv);
|
|
}
|
|
|
|
void QJsonParseError_ErrorString(QJsonParseError* self, char** _out, int* _out_Strlen) {
|
|
QString ret = const_cast<const QJsonParseError*>(self)->errorString();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QJsonParseError_Delete(QJsonParseError* self) {
|
|
delete self;
|
|
}
|
|
|
|
QJsonDocument* QJsonDocument_new() {
|
|
return new QJsonDocument();
|
|
}
|
|
|
|
QJsonDocument* QJsonDocument_new2(QJsonObject* object) {
|
|
return new QJsonDocument(*object);
|
|
}
|
|
|
|
QJsonDocument* QJsonDocument_new3(QJsonArray* array) {
|
|
return new QJsonDocument(*array);
|
|
}
|
|
|
|
QJsonDocument* QJsonDocument_new4(QJsonDocument* other) {
|
|
return new QJsonDocument(*other);
|
|
}
|
|
|
|
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) {
|
|
QJsonDocument ret = QJsonDocument::fromRawData(data, static_cast<int>(size));
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QJsonDocument*>(new QJsonDocument(ret));
|
|
}
|
|
|
|
const char* QJsonDocument_RawData(QJsonDocument* self, int* size) {
|
|
return (const char*) const_cast<const QJsonDocument*>(self)->rawData(static_cast<int*>(size));
|
|
}
|
|
|
|
QJsonDocument* QJsonDocument_FromBinaryData(QByteArray* data) {
|
|
QJsonDocument ret = QJsonDocument::fromBinaryData(*data);
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QJsonDocument*>(new QJsonDocument(ret));
|
|
}
|
|
|
|
QByteArray* QJsonDocument_ToBinaryData(QJsonDocument* self) {
|
|
QByteArray ret = const_cast<const QJsonDocument*>(self)->toBinaryData();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QByteArray*>(new QByteArray(ret));
|
|
}
|
|
|
|
QJsonDocument* QJsonDocument_FromVariant(QVariant* variant) {
|
|
QJsonDocument ret = QJsonDocument::fromVariant(*variant);
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QJsonDocument*>(new QJsonDocument(ret));
|
|
}
|
|
|
|
QVariant* QJsonDocument_ToVariant(QJsonDocument* self) {
|
|
QVariant ret = const_cast<const QJsonDocument*>(self)->toVariant();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QVariant*>(new QVariant(ret));
|
|
}
|
|
|
|
QJsonDocument* QJsonDocument_FromJson(QByteArray* json) {
|
|
QJsonDocument ret = QJsonDocument::fromJson(*json);
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QJsonDocument*>(new QJsonDocument(ret));
|
|
}
|
|
|
|
QByteArray* QJsonDocument_ToJson(QJsonDocument* self) {
|
|
QByteArray ret = const_cast<const QJsonDocument*>(self)->toJson();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QByteArray*>(new QByteArray(ret));
|
|
}
|
|
|
|
QByteArray* QJsonDocument_ToJsonWithFormat(QJsonDocument* self, uintptr_t format) {
|
|
QByteArray ret = const_cast<const QJsonDocument*>(self)->toJson(static_cast<QJsonDocument::JsonFormat>(format));
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QByteArray*>(new QByteArray(ret));
|
|
}
|
|
|
|
bool QJsonDocument_IsEmpty(QJsonDocument* self) {
|
|
return const_cast<const QJsonDocument*>(self)->isEmpty();
|
|
}
|
|
|
|
bool QJsonDocument_IsArray(QJsonDocument* self) {
|
|
return const_cast<const QJsonDocument*>(self)->isArray();
|
|
}
|
|
|
|
bool QJsonDocument_IsObject(QJsonDocument* self) {
|
|
return const_cast<const QJsonDocument*>(self)->isObject();
|
|
}
|
|
|
|
QJsonObject* QJsonDocument_Object(QJsonDocument* self) {
|
|
QJsonObject ret = const_cast<const QJsonDocument*>(self)->object();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QJsonObject*>(new QJsonObject(ret));
|
|
}
|
|
|
|
QJsonArray* QJsonDocument_Array(QJsonDocument* self) {
|
|
QJsonArray ret = const_cast<const QJsonDocument*>(self)->array();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QJsonArray*>(new QJsonArray(ret));
|
|
}
|
|
|
|
void QJsonDocument_SetObject(QJsonDocument* self, QJsonObject* object) {
|
|
self->setObject(*object);
|
|
}
|
|
|
|
void QJsonDocument_SetArray(QJsonDocument* self, QJsonArray* array) {
|
|
self->setArray(*array);
|
|
}
|
|
|
|
QJsonValue* QJsonDocument_OperatorSubscript(QJsonDocument* self, const char* key, size_t key_Strlen) {
|
|
QString key_QString = QString::fromUtf8(key, key_Strlen);
|
|
QJsonValue ret = const_cast<const QJsonDocument*>(self)->operator[](key_QString);
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QJsonValue*>(new QJsonValue(ret));
|
|
}
|
|
|
|
QJsonValue* QJsonDocument_OperatorSubscriptWithInt(QJsonDocument* self, int i) {
|
|
QJsonValue ret = const_cast<const QJsonDocument*>(self)->operator[](static_cast<int>(i));
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QJsonValue*>(new QJsonValue(ret));
|
|
}
|
|
|
|
bool QJsonDocument_OperatorEqual(QJsonDocument* self, QJsonDocument* other) {
|
|
return const_cast<const QJsonDocument*>(self)->operator==(*other);
|
|
}
|
|
|
|
bool QJsonDocument_OperatorNotEqual(QJsonDocument* self, QJsonDocument* other) {
|
|
return const_cast<const QJsonDocument*>(self)->operator!=(*other);
|
|
}
|
|
|
|
bool QJsonDocument_IsNull(QJsonDocument* self) {
|
|
return const_cast<const QJsonDocument*>(self)->isNull();
|
|
}
|
|
|
|
QJsonDocument* QJsonDocument_FromRawData3(const char* data, int size, uintptr_t validation) {
|
|
QJsonDocument ret = QJsonDocument::fromRawData(data, static_cast<int>(size), static_cast<QJsonDocument::DataValidation>(validation));
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QJsonDocument*>(new QJsonDocument(ret));
|
|
}
|
|
|
|
QJsonDocument* QJsonDocument_FromBinaryData2(QByteArray* data, uintptr_t validation) {
|
|
QJsonDocument ret = QJsonDocument::fromBinaryData(*data, static_cast<QJsonDocument::DataValidation>(validation));
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QJsonDocument*>(new QJsonDocument(ret));
|
|
}
|
|
|
|
QJsonDocument* QJsonDocument_FromJson2(QByteArray* json, QJsonParseError* error) {
|
|
QJsonDocument ret = QJsonDocument::fromJson(*json, error);
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QJsonDocument*>(new QJsonDocument(ret));
|
|
}
|
|
|
|
void QJsonDocument_Delete(QJsonDocument* self) {
|
|
delete self;
|
|
}
|
|
|