#include #define WORKAROUND_INNER_CLASS_DEFINITION_QJsonObject__const_iterator #define WORKAROUND_INNER_CLASS_DEFINITION_QJsonObject__iterator #include #include #include #include #include #include #include #include #include #include #include "gen_qjsonobject.h" #ifndef _Bool #define _Bool bool #endif #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); } QJsonObject* QJsonObject_FromVariantMap(struct miqt_map /* of struct miqt_string to QVariant* */ mapVal) { QVariantMap mapVal_QMap; struct miqt_string* mapVal_karr = static_cast(mapVal.keys); QVariant** mapVal_varr = static_cast(mapVal.values); for(size_t i = 0; i < mapVal.len; ++i) { QString mapVal_karr_i_QString = QString::fromUtf8(mapVal_karr[i].data, mapVal_karr[i].len); mapVal_QMap[mapVal_karr_i_QString] = *(mapVal_varr[i]); } return new QJsonObject(QJsonObject::fromVariantMap(mapVal_QMap)); } struct miqt_map /* of struct miqt_string to QVariant* */ QJsonObject_ToVariantMap(const QJsonObject* self) { QVariantMap _ret = self->toVariantMap(); // Convert QMap<> from C++ memory to manually-managed C memory struct miqt_string* _karr = static_cast(malloc(sizeof(struct miqt_string) * _ret.size())); QVariant** _varr = static_cast(malloc(sizeof(QVariant*) * _ret.size())); int _ctr = 0; for (auto _itr = _ret.keyValueBegin(); _itr != _ret.keyValueEnd(); ++_itr) { QString _mapkey_ret = _itr->first; // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray _mapkey_b = _mapkey_ret.toUtf8(); struct miqt_string _mapkey_ms; _mapkey_ms.len = _mapkey_b.length(); _mapkey_ms.data = static_cast(malloc(_mapkey_ms.len)); memcpy(_mapkey_ms.data, _mapkey_b.data(), _mapkey_ms.len); _karr[_ctr] = _mapkey_ms; _varr[_ctr] = new QVariant(_itr->second); _ctr++; } struct miqt_map _out; _out.len = _ret.size(); _out.keys = static_cast(_karr); _out.values = static_cast(_varr); return _out; } QJsonObject* QJsonObject_FromVariantHash(struct miqt_map /* of struct miqt_string to QVariant* */ mapVal) { QVariantHash mapVal_QMap; mapVal_QMap.reserve(mapVal.len); struct miqt_string* mapVal_karr = static_cast(mapVal.keys); QVariant** mapVal_varr = static_cast(mapVal.values); for(size_t i = 0; i < mapVal.len; ++i) { QString mapVal_karr_i_QString = QString::fromUtf8(mapVal_karr[i].data, mapVal_karr[i].len); mapVal_QMap[mapVal_karr_i_QString] = *(mapVal_varr[i]); } return new QJsonObject(QJsonObject::fromVariantHash(mapVal_QMap)); } struct miqt_map /* of struct miqt_string to QVariant* */ QJsonObject_ToVariantHash(const QJsonObject* self) { QVariantHash _ret = self->toVariantHash(); // Convert QMap<> from C++ memory to manually-managed C memory struct miqt_string* _karr = static_cast(malloc(sizeof(struct miqt_string) * _ret.size())); QVariant** _varr = static_cast(malloc(sizeof(QVariant*) * _ret.size())); int _ctr = 0; for (auto _itr = _ret.keyValueBegin(); _itr != _ret.keyValueEnd(); ++_itr) { QString _hashkey_ret = _itr->first; // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray _hashkey_b = _hashkey_ret.toUtf8(); struct miqt_string _hashkey_ms; _hashkey_ms.len = _hashkey_b.length(); _hashkey_ms.data = static_cast(malloc(_hashkey_ms.len)); memcpy(_hashkey_ms.data, _hashkey_b.data(), _hashkey_ms.len); _karr[_ctr] = _hashkey_ms; _varr[_ctr] = new QVariant(_itr->second); _ctr++; } struct miqt_map _out; _out.len = _ret.size(); _out.keys = static_cast(_karr); _out.values = static_cast(_varr); return _out; } struct miqt_array /* of struct miqt_string */ QJsonObject_Keys(const QJsonObject* self) { QStringList _ret = self->keys(); // Convert QList<> from C++ memory to manually-managed C memory struct miqt_string* _arr = static_cast(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(); struct miqt_string _lv_ms; _lv_ms.len = _lv_b.length(); _lv_ms.data = static_cast(malloc(_lv_ms.len)); memcpy(_lv_ms.data, _lv_b.data(), _lv_ms.len); _arr[i] = _lv_ms; } struct miqt_array _out; _out.len = _ret.length(); _out.data = static_cast(_arr); return _out; } ptrdiff_t QJsonObject_Size(const QJsonObject* self) { qsizetype _ret = self->size(); return static_cast(_ret); } ptrdiff_t QJsonObject_Count(const QJsonObject* self) { qsizetype _ret = self->count(); return static_cast(_ret); } ptrdiff_t QJsonObject_Length(const QJsonObject* self) { qsizetype _ret = self->length(); return static_cast(_ret); } 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); return new QJsonValue(self->value(key_QString)); } QJsonValue* QJsonObject_OperatorSubscript(const QJsonObject* self, struct miqt_string key) { QString key_QString = QString::fromUtf8(key.data, key.len); return new QJsonValue(self->operator[](key_QString)); } QJsonValueRef* QJsonObject_OperatorSubscriptWithKey(QJsonObject* self, struct miqt_string key) { QString key_QString = QString::fromUtf8(key.data, key.len); return new QJsonValueRef(self->operator[](key_QString)); } 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); return new QJsonValue(self->take(key_QString)); } 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 == *other); } bool QJsonObject_OperatorNotEqual(const QJsonObject* self, QJsonObject* other) { return (*self != *other); } QJsonObject__iterator* QJsonObject_Begin(QJsonObject* self) { return new QJsonObject::iterator(self->begin()); } QJsonObject__const_iterator* QJsonObject_Begin2(const QJsonObject* self) { return new QJsonObject::const_iterator(self->begin()); } QJsonObject__const_iterator* QJsonObject_ConstBegin(const QJsonObject* self) { return new QJsonObject::const_iterator(self->constBegin()); } QJsonObject__iterator* QJsonObject_End(QJsonObject* self) { return new QJsonObject::iterator(self->end()); } QJsonObject__const_iterator* QJsonObject_End2(const QJsonObject* self) { return new QJsonObject::const_iterator(self->end()); } QJsonObject__const_iterator* QJsonObject_ConstEnd(const QJsonObject* self) { return new QJsonObject::const_iterator(self->constEnd()); } QJsonObject__iterator* QJsonObject_Erase(QJsonObject* self, QJsonObject__iterator* it) { return new QJsonObject::iterator(self->erase(*it)); } QJsonObject__iterator* QJsonObject_Find(QJsonObject* self, struct miqt_string key) { QString key_QString = QString::fromUtf8(key.data, key.len); return new QJsonObject::iterator(self->find(key_QString)); } QJsonObject__const_iterator* QJsonObject_FindWithKey(const QJsonObject* self, struct miqt_string key) { QString key_QString = QString::fromUtf8(key.data, key.len); return new QJsonObject::const_iterator(self->find(key_QString)); } QJsonObject__const_iterator* QJsonObject_ConstFind(const QJsonObject* self, struct miqt_string key) { QString key_QString = QString::fromUtf8(key.data, key.len); return new QJsonObject::const_iterator(self->constFind(key_QString)); } QJsonObject__iterator* QJsonObject_Insert(QJsonObject* self, struct miqt_string key, QJsonValue* value) { QString key_QString = QString::fromUtf8(key.data, key.len); return new QJsonObject::iterator(self->insert(key_QString, *value)); } bool QJsonObject_Empty(const QJsonObject* self) { return self->empty(); } void QJsonObject_Delete(QJsonObject* self, bool isSubclass) { if (isSubclass) { delete dynamic_cast( self ); } else { delete self; } } QJsonObject__iterator* QJsonObject__iterator_new() { return new QJsonObject::iterator(); } QJsonObject__iterator* QJsonObject__iterator_new2(QJsonObject* obj, ptrdiff_t index) { return new QJsonObject::iterator(obj, (qsizetype)(index)); } QJsonObject__iterator* QJsonObject__iterator_new3(QJsonObject__iterator* other) { return new QJsonObject::iterator(*other); } void QJsonObject__iterator_OperatorAssign(QJsonObject__iterator* self, QJsonObject__iterator* other) { self->operator=(*other); } struct miqt_string QJsonObject__iterator_Key(const QJsonObject__iterator* self) { QString _ret = self->key(); // 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(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } QJsonValueRef* QJsonObject__iterator_Value(const QJsonObject__iterator* self) { return new QJsonValueRef(self->value()); } QJsonValueRef* QJsonObject__iterator_OperatorMultiply(const QJsonObject__iterator* self) { return new QJsonValueRef(self->operator*()); } QJsonValueConstRef* QJsonObject__iterator_OperatorMinusGreater(const QJsonObject__iterator* self) { return (QJsonValueConstRef*) self->operator->(); } QJsonValueRef* QJsonObject__iterator_OperatorMinusGreater2(QJsonObject__iterator* self) { return self->operator->(); } QJsonValueRef* QJsonObject__iterator_OperatorSubscript(const QJsonObject__iterator* self, ptrdiff_t j) { return new QJsonValueRef(self->operator[]((qsizetype)(j))); } bool QJsonObject__iterator_OperatorEqual(const QJsonObject__iterator* self, QJsonObject__iterator* other) { return (*self == *other); } bool QJsonObject__iterator_OperatorNotEqual(const QJsonObject__iterator* self, QJsonObject__iterator* other) { return (*self != *other); } bool QJsonObject__iterator_OperatorLesser(const QJsonObject__iterator* self, QJsonObject__iterator* other) { return (*self < *other); } bool QJsonObject__iterator_OperatorLesserOrEqual(const QJsonObject__iterator* self, QJsonObject__iterator* other) { return (*self <= *other); } bool QJsonObject__iterator_OperatorGreater(const QJsonObject__iterator* self, QJsonObject__iterator* other) { return (*self > *other); } bool QJsonObject__iterator_OperatorGreaterOrEqual(const QJsonObject__iterator* self, QJsonObject__iterator* other) { return (*self >= *other); } QJsonObject__iterator* QJsonObject__iterator_OperatorPlusPlus(QJsonObject__iterator* self) { QJsonObject::iterator& _ret = self->operator++(); // Cast returned reference into pointer return &_ret; } QJsonObject__iterator* QJsonObject__iterator_OperatorPlusPlusWithInt(QJsonObject__iterator* self, int param1) { return new QJsonObject::iterator(self->operator++(static_cast(param1))); } QJsonObject__iterator* QJsonObject__iterator_OperatorMinusMinus(QJsonObject__iterator* self) { QJsonObject::iterator& _ret = self->operator--(); // Cast returned reference into pointer return &_ret; } QJsonObject__iterator* QJsonObject__iterator_OperatorMinusMinusWithInt(QJsonObject__iterator* self, int param1) { return new QJsonObject::iterator(self->operator--(static_cast(param1))); } QJsonObject__iterator* QJsonObject__iterator_OperatorPlus(const QJsonObject__iterator* self, ptrdiff_t j) { return new QJsonObject::iterator(self->operator+((qsizetype)(j))); } QJsonObject__iterator* QJsonObject__iterator_OperatorMinus(const QJsonObject__iterator* self, ptrdiff_t j) { return new QJsonObject::iterator(self->operator-((qsizetype)(j))); } QJsonObject__iterator* QJsonObject__iterator_OperatorPlusAssign(QJsonObject__iterator* self, ptrdiff_t j) { QJsonObject::iterator& _ret = self->operator+=((qsizetype)(j)); // Cast returned reference into pointer return &_ret; } QJsonObject__iterator* QJsonObject__iterator_OperatorMinusAssign(QJsonObject__iterator* self, ptrdiff_t j) { QJsonObject::iterator& _ret = self->operator-=((qsizetype)(j)); // Cast returned reference into pointer return &_ret; } ptrdiff_t QJsonObject__iterator_OperatorMinusWithQJsonObjectiterator(const QJsonObject__iterator* self, QJsonObject__iterator* j) { qsizetype _ret = self->operator-(*j); return static_cast(_ret); } bool QJsonObject__iterator_OperatorEqualWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other) { return (*self == *other); } bool QJsonObject__iterator_OperatorNotEqualWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other) { return (*self != *other); } bool QJsonObject__iterator_OperatorLesserWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other) { return (*self < *other); } bool QJsonObject__iterator_OperatorLesserOrEqualWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other) { return (*self <= *other); } bool QJsonObject__iterator_OperatorGreaterWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other) { return (*self > *other); } bool QJsonObject__iterator_OperatorGreaterOrEqualWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other) { return (*self >= *other); } void QJsonObject__iterator_Delete(QJsonObject__iterator* self, bool isSubclass) { if (isSubclass) { delete dynamic_cast( self ); } else { delete self; } } QJsonObject__const_iterator* QJsonObject__const_iterator_new() { return new QJsonObject::const_iterator(); } QJsonObject__const_iterator* QJsonObject__const_iterator_new2(QJsonObject* obj, ptrdiff_t index) { return new QJsonObject::const_iterator(obj, (qsizetype)(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* other) { return new QJsonObject::const_iterator(*other); } void QJsonObject__const_iterator_OperatorAssign(QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) { self->operator=(*other); } struct miqt_string QJsonObject__const_iterator_Key(const QJsonObject__const_iterator* self) { QString _ret = self->key(); // 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(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } QJsonValueConstRef* QJsonObject__const_iterator_Value(const QJsonObject__const_iterator* self) { return new QJsonValueConstRef(self->value()); } QJsonValueConstRef* QJsonObject__const_iterator_OperatorMultiply(const QJsonObject__const_iterator* self) { return new QJsonValueConstRef(self->operator*()); } QJsonValueConstRef* QJsonObject__const_iterator_OperatorMinusGreater(const QJsonObject__const_iterator* self) { return (QJsonValueConstRef*) self->operator->(); } QJsonValueConstRef* QJsonObject__const_iterator_OperatorSubscript(const QJsonObject__const_iterator* self, ptrdiff_t j) { return new QJsonValueConstRef(self->operator[]((qsizetype)(j))); } bool QJsonObject__const_iterator_OperatorEqual(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) { return (*self == *other); } bool QJsonObject__const_iterator_OperatorNotEqual(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) { return (*self != *other); } bool QJsonObject__const_iterator_OperatorLesser(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) { return (*self < *other); } bool QJsonObject__const_iterator_OperatorLesserOrEqual(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) { return (*self <= *other); } bool QJsonObject__const_iterator_OperatorGreater(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) { return (*self > *other); } bool QJsonObject__const_iterator_OperatorGreaterOrEqual(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) { return (*self >= *other); } QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorPlusPlus(QJsonObject__const_iterator* self) { QJsonObject::const_iterator& _ret = self->operator++(); // Cast returned reference into pointer return &_ret; } QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorPlusPlusWithInt(QJsonObject__const_iterator* self, int param1) { return new QJsonObject::const_iterator(self->operator++(static_cast(param1))); } QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorMinusMinus(QJsonObject__const_iterator* self) { QJsonObject::const_iterator& _ret = self->operator--(); // Cast returned reference into pointer return &_ret; } QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorMinusMinusWithInt(QJsonObject__const_iterator* self, int param1) { return new QJsonObject::const_iterator(self->operator--(static_cast(param1))); } QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorPlus(const QJsonObject__const_iterator* self, ptrdiff_t j) { return new QJsonObject::const_iterator(self->operator+((qsizetype)(j))); } QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorMinus(const QJsonObject__const_iterator* self, ptrdiff_t j) { return new QJsonObject::const_iterator(self->operator-((qsizetype)(j))); } QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorPlusAssign(QJsonObject__const_iterator* self, ptrdiff_t j) { QJsonObject::const_iterator& _ret = self->operator+=((qsizetype)(j)); // Cast returned reference into pointer return &_ret; } QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorMinusAssign(QJsonObject__const_iterator* self, ptrdiff_t j) { QJsonObject::const_iterator& _ret = self->operator-=((qsizetype)(j)); // Cast returned reference into pointer return &_ret; } ptrdiff_t QJsonObject__const_iterator_OperatorMinusWithQJsonObjectconstIterator(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* j) { qsizetype _ret = self->operator-(*j); return static_cast(_ret); } bool QJsonObject__const_iterator_OperatorEqualWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other) { return (*self == *other); } bool QJsonObject__const_iterator_OperatorNotEqualWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other) { return (*self != *other); } bool QJsonObject__const_iterator_OperatorLesserWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other) { return (*self < *other); } bool QJsonObject__const_iterator_OperatorLesserOrEqualWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other) { return (*self <= *other); } bool QJsonObject__const_iterator_OperatorGreaterWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other) { return (*self > *other); } bool QJsonObject__const_iterator_OperatorGreaterOrEqualWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other) { return (*self >= *other); } void QJsonObject__const_iterator_Delete(QJsonObject__const_iterator* self, bool isSubclass) { if (isSubclass) { delete dynamic_cast( self ); } else { delete self; } }