#include "gen_qjsondocument.h" #include "qjsondocument.h" #include #include #include #include #include #include #include #include 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 = 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(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); } char* QJsonDocument_RawData(QJsonDocument* self, int* size) { return (char*) self->rawData(static_cast(size)); } QByteArray* QJsonDocument_ToBinaryData(QJsonDocument* self) { QByteArray ret = self->toBinaryData(); // Copy-construct value returned type into heap-allocated copy return static_cast(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(new QJsonDocument(ret)); } QVariant* QJsonDocument_ToVariant(QJsonDocument* self) { QVariant ret = self->toVariant(); // Copy-construct value returned type into heap-allocated copy return static_cast(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(new QJsonDocument(ret)); } QByteArray* QJsonDocument_ToJson(QJsonDocument* self) { QByteArray ret = self->toJson(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QByteArray(ret)); } bool QJsonDocument_IsEmpty(QJsonDocument* self) { return self->isEmpty(); } bool QJsonDocument_IsArray(QJsonDocument* self) { return self->isArray(); } bool QJsonDocument_IsObject(QJsonDocument* self) { return self->isObject(); } QJsonObject* QJsonDocument_Object(QJsonDocument* self) { QJsonObject ret = self->object(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject(ret)); } QJsonArray* QJsonDocument_Array(QJsonDocument* self) { QJsonArray ret = self->array(); // Copy-construct value returned type into heap-allocated copy return static_cast(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 = self->operator[](key_QString); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonValue(ret)); } QJsonValue* QJsonDocument_OperatorSubscriptWithInt(QJsonDocument* self, int i) { QJsonValue ret = self->operator[](static_cast(i)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonValue(ret)); } bool QJsonDocument_OperatorEqual(QJsonDocument* self, QJsonDocument* other) { return self->operator==(*other); } bool QJsonDocument_OperatorNotEqual(QJsonDocument* self, QJsonDocument* other) { return self->operator!=(*other); } bool QJsonDocument_IsNull(QJsonDocument* self) { return self->isNull(); } 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(new QJsonDocument(ret)); } void QJsonDocument_Delete(QJsonDocument* self) { delete self; }