miqt/qt/gen_qjsonobject.cpp

438 lines
18 KiB
C++
Raw Normal View History

#include <QJsonObject>
2024-08-29 07:01:51 +00:00
#define WORKAROUND_INNER_CLASS_DEFINITION_QJsonObject__const_iterator
#define WORKAROUND_INNER_CLASS_DEFINITION_QJsonObject__iterator
#include <QJsonValue>
2024-08-29 07:01:51 +00:00
#include <QJsonValuePtr>
#include <QJsonValueRef>
2024-08-29 07:01:51 +00:00
#include <QJsonValueRefPtr>
#include <QList>
#include <QString>
2024-08-29 07:01:51 +00:00
#include <QByteArray>
#include <cstring>
#include "qjsonobject.h"
#include "gen_qjsonobject.h"
#include "_cgo_export.h"
QJsonObject* QJsonObject_new() {
return new QJsonObject();
}
QJsonObject* QJsonObject_new2(QJsonObject* other) {
return new QJsonObject(*other);
}
void QJsonObject_OperatorAssign(QJsonObject* self, QJsonObject* other) {
self->operator=(*other);
}
void QJsonObject_Swap(QJsonObject* self, QJsonObject* other) {
self->swap(*other);
}
struct miqt_array* QJsonObject_Keys(const QJsonObject* self) {
QStringList _ret = self->keys();
// Convert QStringList from C++ memory to manually-managed C memory
struct miqt_string** _arr = static_cast<struct miqt_string**>(malloc(sizeof(struct miqt_string*) * _ret.length()));
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
QString _lv_ret = _ret[i];
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray _lv_b = _lv_ret.toUtf8();
_arr[i] = miqt_strdup(_lv_b.data(), _lv_b.length());
}
struct miqt_array* _out = static_cast<struct miqt_array*>(malloc(sizeof(struct miqt_array)));
_out->len = _ret.length();
_out->data = static_cast<void*>(_arr);
return _out;
}
int QJsonObject_Size(const QJsonObject* self) {
return self->size();
}
int QJsonObject_Count(const QJsonObject* self) {
return self->count();
}
int QJsonObject_Length(const QJsonObject* self) {
return self->length();
}
bool QJsonObject_IsEmpty(const QJsonObject* self) {
return self->isEmpty();
}
QJsonValue* QJsonObject_Value(const QJsonObject* self, struct miqt_string* key) {
QString key_QString = QString::fromUtf8(&key->data, key->len);
QJsonValue _ret = self->value(key_QString);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonValue*>(new QJsonValue(_ret));
}
QJsonValue* QJsonObject_OperatorSubscript(const QJsonObject* self, struct miqt_string* key) {
QString key_QString = QString::fromUtf8(&key->data, key->len);
QJsonValue _ret = self->operator[](key_QString);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonValue*>(new QJsonValue(_ret));
}
QJsonValueRef* QJsonObject_OperatorSubscriptWithKey(QJsonObject* self, struct miqt_string* key) {
QString key_QString = QString::fromUtf8(&key->data, key->len);
QJsonValueRef _ret = self->operator[](key_QString);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonValueRef*>(new QJsonValueRef(_ret));
}
void QJsonObject_Remove(QJsonObject* self, struct miqt_string* key) {
QString key_QString = QString::fromUtf8(&key->data, key->len);
self->remove(key_QString);
}
QJsonValue* QJsonObject_Take(QJsonObject* self, struct miqt_string* key) {
QString key_QString = QString::fromUtf8(&key->data, key->len);
QJsonValue _ret = self->take(key_QString);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonValue*>(new QJsonValue(_ret));
}
bool QJsonObject_Contains(const QJsonObject* self, struct miqt_string* key) {
QString key_QString = QString::fromUtf8(&key->data, key->len);
return self->contains(key_QString);
}
bool QJsonObject_OperatorEqual(const QJsonObject* self, QJsonObject* other) {
return self->operator==(*other);
}
bool QJsonObject_OperatorNotEqual(const QJsonObject* self, QJsonObject* other) {
return self->operator!=(*other);
2024-08-29 07:01:51 +00:00
}
QJsonObject__iterator* QJsonObject_Begin(QJsonObject* self) {
QJsonObject::iterator _ret = self->begin();
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonObject::iterator*>(new QJsonObject::iterator(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonObject__const_iterator* QJsonObject_Begin2(const QJsonObject* self) {
QJsonObject::const_iterator _ret = self->begin();
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonObject::const_iterator*>(new QJsonObject::const_iterator(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonObject__const_iterator* QJsonObject_ConstBegin(const QJsonObject* self) {
QJsonObject::const_iterator _ret = self->constBegin();
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonObject::const_iterator*>(new QJsonObject::const_iterator(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonObject__iterator* QJsonObject_End(QJsonObject* self) {
QJsonObject::iterator _ret = self->end();
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonObject::iterator*>(new QJsonObject::iterator(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonObject__const_iterator* QJsonObject_End2(const QJsonObject* self) {
QJsonObject::const_iterator _ret = self->end();
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonObject::const_iterator*>(new QJsonObject::const_iterator(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonObject__const_iterator* QJsonObject_ConstEnd(const QJsonObject* self) {
QJsonObject::const_iterator _ret = self->constEnd();
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonObject::const_iterator*>(new QJsonObject::const_iterator(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonObject__iterator* QJsonObject_Erase(QJsonObject* self, QJsonObject__iterator* it) {
QJsonObject::iterator _ret = self->erase(*it);
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonObject::iterator*>(new QJsonObject::iterator(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonObject__iterator* QJsonObject_Find(QJsonObject* self, struct miqt_string* key) {
QString key_QString = QString::fromUtf8(&key->data, key->len);
QJsonObject::iterator _ret = self->find(key_QString);
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonObject::iterator*>(new QJsonObject::iterator(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonObject__const_iterator* QJsonObject_FindWithKey(const QJsonObject* self, struct miqt_string* key) {
QString key_QString = QString::fromUtf8(&key->data, key->len);
QJsonObject::const_iterator _ret = self->find(key_QString);
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonObject::const_iterator*>(new QJsonObject::const_iterator(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonObject__const_iterator* QJsonObject_ConstFind(const QJsonObject* self, struct miqt_string* key) {
QString key_QString = QString::fromUtf8(&key->data, key->len);
QJsonObject::const_iterator _ret = self->constFind(key_QString);
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonObject::const_iterator*>(new QJsonObject::const_iterator(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonObject__iterator* QJsonObject_Insert(QJsonObject* self, struct miqt_string* key, QJsonValue* value) {
QString key_QString = QString::fromUtf8(&key->data, key->len);
QJsonObject::iterator _ret = self->insert(key_QString, *value);
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonObject::iterator*>(new QJsonObject::iterator(_ret));
}
bool QJsonObject_Empty(const QJsonObject* self) {
return self->empty();
}
void QJsonObject_Delete(QJsonObject* self) {
delete self;
}
2024-08-29 07:01:51 +00:00
QJsonObject__iterator* QJsonObject__iterator_new() {
return new QJsonObject::iterator();
}
QJsonObject__iterator* QJsonObject__iterator_new2(QJsonObject* obj, int index) {
return new QJsonObject::iterator(obj, static_cast<int>(index));
}
QJsonObject__iterator* QJsonObject__iterator_new3(QJsonObject__iterator* param1) {
return new QJsonObject::iterator(*param1);
}
struct miqt_string* QJsonObject__iterator_Key(const QJsonObject__iterator* self) {
QString _ret = self->key();
2024-08-29 07:01:51 +00:00
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray _b = _ret.toUtf8();
return miqt_strdup(_b.data(), _b.length());
2024-08-29 07:01:51 +00:00
}
QJsonValueRef* QJsonObject__iterator_Value(const QJsonObject__iterator* self) {
QJsonValueRef _ret = self->value();
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonValueRef*>(new QJsonValueRef(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonValueRef* QJsonObject__iterator_OperatorMultiply(const QJsonObject__iterator* self) {
QJsonValueRef _ret = self->operator*();
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonValueRef*>(new QJsonValueRef(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonValueRefPtr* QJsonObject__iterator_OperatorMinusGreater(const QJsonObject__iterator* self) {
QJsonValueRefPtr _ret = self->operator->();
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonValueRefPtr*>(new QJsonValueRefPtr(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonValueRef* QJsonObject__iterator_OperatorSubscript(QJsonObject__iterator* self, int j) {
QJsonValueRef _ret = self->operator[](static_cast<int>(j));
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonValueRef*>(new QJsonValueRef(_ret));
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__iterator_OperatorEqual(const QJsonObject__iterator* self, QJsonObject__iterator* other) {
return self->operator==(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__iterator_OperatorNotEqual(const QJsonObject__iterator* self, QJsonObject__iterator* other) {
return self->operator!=(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__iterator_OperatorLesser(const QJsonObject__iterator* self, QJsonObject__iterator* other) {
return self->operator<(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__iterator_OperatorLesserOrEqual(const QJsonObject__iterator* self, QJsonObject__iterator* other) {
return self->operator<=(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__iterator_OperatorGreater(const QJsonObject__iterator* self, QJsonObject__iterator* other) {
return self->operator>(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__iterator_OperatorGreaterOrEqual(const QJsonObject__iterator* self, QJsonObject__iterator* other) {
return self->operator>=(*other);
2024-08-29 07:01:51 +00:00
}
QJsonObject__iterator* QJsonObject__iterator_OperatorPlusPlus(QJsonObject__iterator* self, int param1) {
QJsonObject::iterator _ret = self->operator++(static_cast<int>(param1));
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonObject::iterator*>(new QJsonObject::iterator(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonObject__iterator* QJsonObject__iterator_OperatorMinusMinus(QJsonObject__iterator* self, int param1) {
QJsonObject::iterator _ret = self->operator--(static_cast<int>(param1));
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonObject::iterator*>(new QJsonObject::iterator(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonObject__iterator* QJsonObject__iterator_OperatorPlus(const QJsonObject__iterator* self, int j) {
QJsonObject::iterator _ret = self->operator+(static_cast<int>(j));
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonObject::iterator*>(new QJsonObject::iterator(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonObject__iterator* QJsonObject__iterator_OperatorMinus(const QJsonObject__iterator* self, int j) {
QJsonObject::iterator _ret = self->operator-(static_cast<int>(j));
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonObject::iterator*>(new QJsonObject::iterator(_ret));
2024-08-29 07:01:51 +00:00
}
int QJsonObject__iterator_OperatorMinusWithQJsonObjectiterator(const QJsonObject__iterator* self, QJsonObject__iterator* j) {
return self->operator-(*j);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__iterator_OperatorEqualWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other) {
return self->operator==(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__iterator_OperatorNotEqualWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other) {
return self->operator!=(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__iterator_OperatorLesserWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other) {
return self->operator<(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__iterator_OperatorLesserOrEqualWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other) {
return self->operator<=(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__iterator_OperatorGreaterWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other) {
return self->operator>(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__iterator_OperatorGreaterOrEqualWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other) {
return self->operator>=(*other);
2024-08-29 07:01:51 +00:00
}
void QJsonObject__iterator_Delete(QJsonObject__iterator* self) {
delete self;
}
QJsonObject__const_iterator* QJsonObject__const_iterator_new() {
return new QJsonObject::const_iterator();
}
QJsonObject__const_iterator* QJsonObject__const_iterator_new2(QJsonObject* obj, int index) {
return new QJsonObject::const_iterator(obj, static_cast<int>(index));
}
QJsonObject__const_iterator* QJsonObject__const_iterator_new3(QJsonObject__iterator* other) {
return new QJsonObject::const_iterator(*other);
}
QJsonObject__const_iterator* QJsonObject__const_iterator_new4(QJsonObject__const_iterator* param1) {
return new QJsonObject::const_iterator(*param1);
}
struct miqt_string* QJsonObject__const_iterator_Key(const QJsonObject__const_iterator* self) {
QString _ret = self->key();
2024-08-29 07:01:51 +00:00
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray _b = _ret.toUtf8();
return miqt_strdup(_b.data(), _b.length());
2024-08-29 07:01:51 +00:00
}
QJsonValue* QJsonObject__const_iterator_Value(const QJsonObject__const_iterator* self) {
QJsonValue _ret = self->value();
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonValue*>(new QJsonValue(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonValue* QJsonObject__const_iterator_OperatorMultiply(const QJsonObject__const_iterator* self) {
QJsonValue _ret = self->operator*();
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonValue*>(new QJsonValue(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonValuePtr* QJsonObject__const_iterator_OperatorMinusGreater(const QJsonObject__const_iterator* self) {
QJsonValuePtr _ret = self->operator->();
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonValuePtr*>(new QJsonValuePtr(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonValue* QJsonObject__const_iterator_OperatorSubscript(QJsonObject__const_iterator* self, int j) {
QJsonValue _ret = self->operator[](static_cast<int>(j));
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonValue*>(new QJsonValue(_ret));
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__const_iterator_OperatorEqual(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) {
return self->operator==(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__const_iterator_OperatorNotEqual(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) {
return self->operator!=(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__const_iterator_OperatorLesser(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) {
return self->operator<(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__const_iterator_OperatorLesserOrEqual(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) {
return self->operator<=(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__const_iterator_OperatorGreater(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) {
return self->operator>(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__const_iterator_OperatorGreaterOrEqual(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) {
return self->operator>=(*other);
2024-08-29 07:01:51 +00:00
}
QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorPlusPlus(QJsonObject__const_iterator* self, int param1) {
QJsonObject::const_iterator _ret = self->operator++(static_cast<int>(param1));
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonObject::const_iterator*>(new QJsonObject::const_iterator(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorMinusMinus(QJsonObject__const_iterator* self, int param1) {
QJsonObject::const_iterator _ret = self->operator--(static_cast<int>(param1));
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonObject::const_iterator*>(new QJsonObject::const_iterator(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorPlus(const QJsonObject__const_iterator* self, int j) {
QJsonObject::const_iterator _ret = self->operator+(static_cast<int>(j));
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonObject::const_iterator*>(new QJsonObject::const_iterator(_ret));
2024-08-29 07:01:51 +00:00
}
QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorMinus(const QJsonObject__const_iterator* self, int j) {
QJsonObject::const_iterator _ret = self->operator-(static_cast<int>(j));
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonObject::const_iterator*>(new QJsonObject::const_iterator(_ret));
2024-08-29 07:01:51 +00:00
}
int QJsonObject__const_iterator_OperatorMinusWithQJsonObjectconstIterator(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* j) {
return self->operator-(*j);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__const_iterator_OperatorEqualWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other) {
return self->operator==(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__const_iterator_OperatorNotEqualWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other) {
return self->operator!=(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__const_iterator_OperatorLesserWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other) {
return self->operator<(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__const_iterator_OperatorLesserOrEqualWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other) {
return self->operator<=(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__const_iterator_OperatorGreaterWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other) {
return self->operator>(*other);
2024-08-29 07:01:51 +00:00
}
bool QJsonObject__const_iterator_OperatorGreaterOrEqualWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other) {
return self->operator>=(*other);
2024-08-29 07:01:51 +00:00
}
void QJsonObject__const_iterator_Delete(QJsonObject__const_iterator* self) {
delete self;
}