miqt/qt/gen_qcborvalue.cpp

814 lines
29 KiB
C++
Raw Normal View History

#include <QByteArray>
#include <QCborArray>
#include <QCborMap>
#include <QCborParserError>
#include <QCborStreamReader>
2024-08-29 07:01:51 +00:00
#include <QCborStreamWriter>
#include <QCborValue>
#include <QCborValueRef>
#include <QDateTime>
#include <QJsonValue>
#include <QRegularExpression>
#include <QString>
2024-08-29 07:01:51 +00:00
#include <QByteArray>
#include <cstring>
#include <QUrl>
#include <QUuid>
#include <QVariant>
2024-08-29 07:01:51 +00:00
#include "qcborvalue.h"
2024-08-29 07:01:51 +00:00
#include "gen_qcborvalue.h"
extern "C" {
extern void miqt_exec_callback(void* cb, int argc, void* argv);
}
void QCborParserError_ErrorString(QCborParserError* self, char** _out, int* _out_Strlen) {
2024-08-29 07:01:51 +00:00
QString ret = const_cast<const QCborParserError*>(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 QCborParserError_Delete(QCborParserError* self) {
delete self;
}
QCborValue* QCborValue_new() {
return new QCborValue();
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_new2(uintptr_t t_) {
return new QCborValue(static_cast<QCborValue::Type>(t_));
}
QCborValue* QCborValue_new3(bool b_) {
return new QCborValue(b_);
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_new4(int i) {
return new QCborValue(static_cast<int>(i));
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_new5(unsigned int u) {
return new QCborValue(static_cast<unsigned int>(u));
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_new6(long long i) {
return new QCborValue(static_cast<qint64>(i));
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_new7(double v) {
return new QCborValue(static_cast<double>(v));
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_new8(QByteArray* ba) {
return new QCborValue(*ba);
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_new9(const char* s, size_t s_Strlen) {
QString s_QString = QString::fromUtf8(s, s_Strlen);
return new QCborValue(s_QString);
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_new10(const char* s) {
return new QCborValue(s);
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_new11(QCborArray* a) {
return new QCborValue(*a);
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_new12(QCborMap* m) {
return new QCborValue(*m);
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_new13(QDateTime* dt) {
return new QCborValue(*dt);
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_new14(QUrl* url) {
return new QCborValue(*url);
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_new15(QRegularExpression* rx) {
return new QCborValue(*rx);
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_new16(QUuid* uuid) {
return new QCborValue(*uuid);
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_new17(QCborValue* other) {
return new QCborValue(*other);
}
void QCborValue_OperatorAssign(QCborValue* self, QCborValue* other) {
self->operator=(*other);
}
void QCborValue_Swap(QCborValue* self, QCborValue* other) {
self->swap(*other);
}
2024-08-29 07:01:51 +00:00
uintptr_t QCborValue_Type(QCborValue* self) {
QCborValue::Type ret = const_cast<const QCborValue*>(self)->type();
return static_cast<uintptr_t>(ret);
}
bool QCborValue_IsInteger(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->isInteger();
}
bool QCborValue_IsByteArray(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->isByteArray();
}
bool QCborValue_IsString(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->isString();
}
bool QCborValue_IsArray(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->isArray();
}
bool QCborValue_IsMap(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->isMap();
}
bool QCborValue_IsTag(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->isTag();
}
bool QCborValue_IsFalse(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->isFalse();
}
bool QCborValue_IsTrue(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->isTrue();
}
bool QCborValue_IsBool(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->isBool();
}
bool QCborValue_IsNull(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->isNull();
}
bool QCborValue_IsUndefined(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->isUndefined();
}
bool QCborValue_IsDouble(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->isDouble();
}
bool QCborValue_IsDateTime(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->isDateTime();
}
bool QCborValue_IsUrl(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->isUrl();
}
bool QCborValue_IsRegularExpression(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->isRegularExpression();
}
bool QCborValue_IsUuid(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->isUuid();
}
bool QCborValue_IsInvalid(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->isInvalid();
}
bool QCborValue_IsContainer(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->isContainer();
}
bool QCborValue_IsSimpleType(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->isSimpleType();
}
2024-08-29 07:01:51 +00:00
long long QCborValue_ToInteger(QCborValue* self) {
return const_cast<const QCborValue*>(self)->toInteger();
}
bool QCborValue_ToBool(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->toBool();
}
double QCborValue_ToDouble(QCborValue* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->toDouble();
}
QCborValue* QCborValue_TaggedValue(QCborValue* self) {
2024-08-29 07:01:51 +00:00
QCborValue ret = const_cast<const QCborValue*>(self)->taggedValue();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValue*>(new QCborValue(ret));
}
QByteArray* QCborValue_ToByteArray(QCborValue* self) {
2024-08-29 07:01:51 +00:00
QByteArray ret = const_cast<const QCborValue*>(self)->toByteArray();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QByteArray*>(new QByteArray(ret));
}
void QCborValue_ToString(QCborValue* self, char** _out, int* _out_Strlen) {
2024-08-29 07:01:51 +00:00
QString ret = const_cast<const QCborValue*>(self)->toString();
// 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();
}
QDateTime* QCborValue_ToDateTime(QCborValue* self) {
2024-08-29 07:01:51 +00:00
QDateTime ret = const_cast<const QCborValue*>(self)->toDateTime();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QDateTime*>(new QDateTime(ret));
}
QUrl* QCborValue_ToUrl(QCborValue* self) {
2024-08-29 07:01:51 +00:00
QUrl ret = const_cast<const QCborValue*>(self)->toUrl();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QUrl*>(new QUrl(ret));
}
QRegularExpression* QCborValue_ToRegularExpression(QCborValue* self) {
2024-08-29 07:01:51 +00:00
QRegularExpression ret = const_cast<const QCborValue*>(self)->toRegularExpression();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QRegularExpression*>(new QRegularExpression(ret));
}
QUuid* QCborValue_ToUuid(QCborValue* self) {
2024-08-29 07:01:51 +00:00
QUuid ret = const_cast<const QCborValue*>(self)->toUuid();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QUuid*>(new QUuid(ret));
}
QCborArray* QCborValue_ToArray(QCborValue* self) {
2024-08-29 07:01:51 +00:00
QCborArray ret = const_cast<const QCborValue*>(self)->toArray();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborArray*>(new QCborArray(ret));
}
QCborArray* QCborValue_ToArrayWithDefaultValue(QCborValue* self, QCborArray* defaultValue) {
2024-08-29 07:01:51 +00:00
QCborArray ret = const_cast<const QCborValue*>(self)->toArray(*defaultValue);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborArray*>(new QCborArray(ret));
}
QCborMap* QCborValue_ToMap(QCborValue* self) {
2024-08-29 07:01:51 +00:00
QCborMap ret = const_cast<const QCborValue*>(self)->toMap();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborMap*>(new QCborMap(ret));
}
QCborMap* QCborValue_ToMapWithDefaultValue(QCborValue* self, QCborMap* defaultValue) {
2024-08-29 07:01:51 +00:00
QCborMap ret = const_cast<const QCborValue*>(self)->toMap(*defaultValue);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborMap*>(new QCborMap(ret));
}
QCborValue* QCborValue_OperatorSubscript(QCborValue* self, const char* key, size_t key_Strlen) {
QString key_QString = QString::fromUtf8(key, key_Strlen);
2024-08-29 07:01:51 +00:00
QCborValue ret = const_cast<const QCborValue*>(self)->operator[](key_QString);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValue*>(new QCborValue(ret));
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_OperatorSubscript2(QCborValue* self, long long key) {
QCborValue ret = const_cast<const QCborValue*>(self)->operator[](static_cast<qint64>(key));
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValue*>(new QCborValue(ret));
}
2024-08-29 07:01:51 +00:00
QCborValueRef* QCborValue_OperatorSubscript3(QCborValue* self, long long key) {
QCborValueRef ret = self->operator[](static_cast<qint64>(key));
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValueRef*>(new QCborValueRef(ret));
}
2024-08-29 07:01:51 +00:00
QCborValueRef* QCborValue_OperatorSubscript5(QCborValue* self, const char* key, size_t key_Strlen) {
QString key_QString = QString::fromUtf8(key, key_Strlen);
QCborValueRef ret = self->operator[](key_QString);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValueRef*>(new QCborValueRef(ret));
}
int QCborValue_Compare(QCborValue* self, QCborValue* other) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->compare(*other);
}
bool QCborValue_OperatorEqual(QCborValue* self, QCborValue* other) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->operator==(*other);
}
bool QCborValue_OperatorNotEqual(QCborValue* self, QCborValue* other) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->operator!=(*other);
}
bool QCborValue_OperatorLesser(QCborValue* self, QCborValue* other) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValue*>(self)->operator<(*other);
}
QCborValue* QCborValue_FromVariant(QVariant* variant) {
QCborValue ret = QCborValue::fromVariant(*variant);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValue*>(new QCborValue(ret));
}
QVariant* QCborValue_ToVariant(QCborValue* self) {
2024-08-29 07:01:51 +00:00
QVariant ret = const_cast<const QCborValue*>(self)->toVariant();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QVariant*>(new QVariant(ret));
}
QCborValue* QCborValue_FromJsonValue(QJsonValue* v) {
QCborValue ret = QCborValue::fromJsonValue(*v);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValue*>(new QCborValue(ret));
}
QJsonValue* QCborValue_ToJsonValue(QCborValue* self) {
2024-08-29 07:01:51 +00:00
QJsonValue ret = const_cast<const QCborValue*>(self)->toJsonValue();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonValue*>(new QJsonValue(ret));
}
QCborValue* QCborValue_FromCbor(QCborStreamReader* reader) {
QCborValue ret = QCborValue::fromCbor(*reader);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValue*>(new QCborValue(ret));
}
QCborValue* QCborValue_FromCborWithBa(QByteArray* ba) {
QCborValue ret = QCborValue::fromCbor(*ba);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValue*>(new QCborValue(ret));
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_FromCbor2(const char* data, size_t lenVal) {
QCborValue ret = QCborValue::fromCbor(data, static_cast<qsizetype>(lenVal));
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValue*>(new QCborValue(ret));
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_FromCbor3(const unsigned char* data, size_t lenVal) {
QCborValue ret = QCborValue::fromCbor(static_cast<const quint8*>(data), static_cast<qsizetype>(lenVal));
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValue*>(new QCborValue(ret));
}
2024-08-29 07:01:51 +00:00
QByteArray* QCborValue_ToCbor(QCborValue* self) {
QByteArray ret = self->toCbor();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QByteArray*>(new QByteArray(ret));
}
void QCborValue_ToCborWithWriter(QCborValue* self, QCborStreamWriter* writer) {
self->toCbor(*writer);
}
void QCborValue_ToDiagnosticNotation(QCborValue* self, char** _out, int* _out_Strlen) {
QString ret = const_cast<const QCborValue*>(self)->toDiagnosticNotation();
// 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();
}
long long QCborValue_ToInteger1(QCborValue* self, long long defaultValue) {
return const_cast<const QCborValue*>(self)->toInteger(static_cast<qint64>(defaultValue));
}
bool QCborValue_ToBool1(QCborValue* self, bool defaultValue) {
return const_cast<const QCborValue*>(self)->toBool(defaultValue);
}
double QCborValue_ToDouble1(QCborValue* self, double defaultValue) {
return const_cast<const QCborValue*>(self)->toDouble(static_cast<double>(defaultValue));
}
QCborValue* QCborValue_TaggedValue1(QCborValue* self, QCborValue* defaultValue) {
QCborValue ret = const_cast<const QCborValue*>(self)->taggedValue(*defaultValue);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValue*>(new QCborValue(ret));
}
QByteArray* QCborValue_ToByteArray1(QCborValue* self, QByteArray* defaultValue) {
QByteArray ret = const_cast<const QCborValue*>(self)->toByteArray(*defaultValue);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QByteArray*>(new QByteArray(ret));
}
void QCborValue_ToString1(QCborValue* self, const char* defaultValue, size_t defaultValue_Strlen, char** _out, int* _out_Strlen) {
QString defaultValue_QString = QString::fromUtf8(defaultValue, defaultValue_Strlen);
QString ret = const_cast<const QCborValue*>(self)->toString(defaultValue_QString);
// 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();
}
QDateTime* QCborValue_ToDateTime1(QCborValue* self, QDateTime* defaultValue) {
QDateTime ret = const_cast<const QCborValue*>(self)->toDateTime(*defaultValue);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QDateTime*>(new QDateTime(ret));
}
QUrl* QCborValue_ToUrl1(QCborValue* self, QUrl* defaultValue) {
QUrl ret = const_cast<const QCborValue*>(self)->toUrl(*defaultValue);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QUrl*>(new QUrl(ret));
}
QRegularExpression* QCborValue_ToRegularExpression1(QCborValue* self, QRegularExpression* defaultValue) {
QRegularExpression ret = const_cast<const QCborValue*>(self)->toRegularExpression(*defaultValue);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QRegularExpression*>(new QRegularExpression(ret));
}
QUuid* QCborValue_ToUuid1(QCborValue* self, QUuid* defaultValue) {
QUuid ret = const_cast<const QCborValue*>(self)->toUuid(*defaultValue);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QUuid*>(new QUuid(ret));
}
QCborValue* QCborValue_FromCbor22(QByteArray* ba, QCborParserError* error) {
QCborValue ret = QCborValue::fromCbor(*ba, error);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValue*>(new QCborValue(ret));
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_FromCbor32(const char* data, size_t lenVal, QCborParserError* error) {
QCborValue ret = QCborValue::fromCbor(data, static_cast<qsizetype>(lenVal), error);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValue*>(new QCborValue(ret));
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValue_FromCbor33(const unsigned char* data, size_t lenVal, QCborParserError* error) {
QCborValue ret = QCborValue::fromCbor(static_cast<const quint8*>(data), static_cast<qsizetype>(lenVal), error);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValue*>(new QCborValue(ret));
}
2024-08-29 07:01:51 +00:00
QByteArray* QCborValue_ToCbor1(QCborValue* self, int opt) {
QByteArray ret = self->toCbor(static_cast<QCborValue::EncodingOptions>(opt));
// Copy-construct value returned type into heap-allocated copy
return static_cast<QByteArray*>(new QByteArray(ret));
}
void QCborValue_ToCbor2(QCborValue* self, QCborStreamWriter* writer, int opt) {
self->toCbor(*writer, static_cast<QCborValue::EncodingOptions>(opt));
}
void QCborValue_ToDiagnosticNotation1(QCborValue* self, int opts, char** _out, int* _out_Strlen) {
QString ret = const_cast<const QCborValue*>(self)->toDiagnosticNotation(static_cast<QCborValue::DiagnosticNotationOptions>(opts));
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();
*_out = static_cast<char*>(malloc(b.length()));
memcpy(*_out, b.data(), b.length());
*_out_Strlen = b.length();
}
void QCborValue_Delete(QCborValue* self) {
delete self;
}
QCborValueRef* QCborValueRef_new(QCborValueRef* param1) {
return new QCborValueRef(*param1);
}
void QCborValueRef_OperatorAssign(QCborValueRef* self, QCborValue* other) {
self->operator=(*other);
}
void QCborValueRef_OperatorAssignWithOther(QCborValueRef* self, QCborValueRef* other) {
self->operator=(*other);
}
2024-08-29 07:01:51 +00:00
uintptr_t QCborValueRef_Type(QCborValueRef* self) {
QCborValue::Type ret = const_cast<const QCborValueRef*>(self)->type();
return static_cast<uintptr_t>(ret);
}
bool QCborValueRef_IsInteger(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->isInteger();
}
bool QCborValueRef_IsByteArray(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->isByteArray();
}
bool QCborValueRef_IsString(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->isString();
}
bool QCborValueRef_IsArray(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->isArray();
}
bool QCborValueRef_IsMap(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->isMap();
}
bool QCborValueRef_IsTag(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->isTag();
}
bool QCborValueRef_IsFalse(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->isFalse();
}
bool QCborValueRef_IsTrue(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->isTrue();
}
bool QCborValueRef_IsBool(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->isBool();
}
bool QCborValueRef_IsNull(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->isNull();
}
bool QCborValueRef_IsUndefined(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->isUndefined();
}
bool QCborValueRef_IsDouble(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->isDouble();
}
bool QCborValueRef_IsDateTime(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->isDateTime();
}
bool QCborValueRef_IsUrl(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->isUrl();
}
bool QCborValueRef_IsRegularExpression(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->isRegularExpression();
}
bool QCborValueRef_IsUuid(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->isUuid();
}
bool QCborValueRef_IsInvalid(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->isInvalid();
}
bool QCborValueRef_IsContainer(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->isContainer();
}
bool QCborValueRef_IsSimpleType(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->isSimpleType();
}
QCborValue* QCborValueRef_TaggedValue(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
QCborValue ret = const_cast<const QCborValueRef*>(self)->taggedValue();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValue*>(new QCborValue(ret));
}
2024-08-29 07:01:51 +00:00
long long QCborValueRef_ToInteger(QCborValueRef* self) {
return const_cast<const QCborValueRef*>(self)->toInteger();
}
bool QCborValueRef_ToBool(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->toBool();
}
double QCborValueRef_ToDouble(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->toDouble();
}
QByteArray* QCborValueRef_ToByteArray(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
QByteArray ret = const_cast<const QCborValueRef*>(self)->toByteArray();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QByteArray*>(new QByteArray(ret));
}
void QCborValueRef_ToString(QCborValueRef* self, char** _out, int* _out_Strlen) {
2024-08-29 07:01:51 +00:00
QString ret = const_cast<const QCborValueRef*>(self)->toString();
// 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();
}
QDateTime* QCborValueRef_ToDateTime(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
QDateTime ret = const_cast<const QCborValueRef*>(self)->toDateTime();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QDateTime*>(new QDateTime(ret));
}
QUrl* QCborValueRef_ToUrl(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
QUrl ret = const_cast<const QCborValueRef*>(self)->toUrl();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QUrl*>(new QUrl(ret));
}
QRegularExpression* QCborValueRef_ToRegularExpression(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
QRegularExpression ret = const_cast<const QCborValueRef*>(self)->toRegularExpression();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QRegularExpression*>(new QRegularExpression(ret));
}
QUuid* QCborValueRef_ToUuid(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
QUuid ret = const_cast<const QCborValueRef*>(self)->toUuid();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QUuid*>(new QUuid(ret));
}
QCborArray* QCborValueRef_ToArray(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
QCborArray ret = const_cast<const QCborValueRef*>(self)->toArray();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborArray*>(new QCborArray(ret));
}
QCborArray* QCborValueRef_ToArrayWithQCborArray(QCborValueRef* self, QCborArray* a) {
2024-08-29 07:01:51 +00:00
QCborArray ret = const_cast<const QCborValueRef*>(self)->toArray(*a);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborArray*>(new QCborArray(ret));
}
QCborMap* QCborValueRef_ToMap(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
QCborMap ret = const_cast<const QCborValueRef*>(self)->toMap();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborMap*>(new QCborMap(ret));
}
QCborMap* QCborValueRef_ToMapWithQCborMap(QCborValueRef* self, QCborMap* m) {
2024-08-29 07:01:51 +00:00
QCborMap ret = const_cast<const QCborValueRef*>(self)->toMap(*m);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborMap*>(new QCborMap(ret));
}
QCborValue* QCborValueRef_OperatorSubscript(QCborValueRef* self, const char* key, size_t key_Strlen) {
QString key_QString = QString::fromUtf8(key, key_Strlen);
2024-08-29 07:01:51 +00:00
QCborValue ret = const_cast<const QCborValueRef*>(self)->operator[](key_QString);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValue*>(new QCborValue(ret));
}
2024-08-29 07:01:51 +00:00
QCborValue* QCborValueRef_OperatorSubscript2(QCborValueRef* self, long long key) {
QCborValue ret = const_cast<const QCborValueRef*>(self)->operator[](static_cast<qint64>(key));
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValue*>(new QCborValue(ret));
}
2024-08-29 07:01:51 +00:00
QCborValueRef* QCborValueRef_OperatorSubscript3(QCborValueRef* self, long long key) {
QCborValueRef ret = self->operator[](static_cast<qint64>(key));
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValueRef*>(new QCborValueRef(ret));
}
2024-08-29 07:01:51 +00:00
QCborValueRef* QCborValueRef_OperatorSubscript5(QCborValueRef* self, const char* key, size_t key_Strlen) {
QString key_QString = QString::fromUtf8(key, key_Strlen);
QCborValueRef ret = self->operator[](key_QString);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValueRef*>(new QCborValueRef(ret));
}
int QCborValueRef_Compare(QCborValueRef* self, QCborValue* other) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->compare(*other);
}
bool QCborValueRef_OperatorEqual(QCborValueRef* self, QCborValue* other) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->operator==(*other);
}
bool QCborValueRef_OperatorNotEqual(QCborValueRef* self, QCborValue* other) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->operator!=(*other);
}
bool QCborValueRef_OperatorLesser(QCborValueRef* self, QCborValue* other) {
2024-08-29 07:01:51 +00:00
return const_cast<const QCborValueRef*>(self)->operator<(*other);
}
QVariant* QCborValueRef_ToVariant(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
QVariant ret = const_cast<const QCborValueRef*>(self)->toVariant();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QVariant*>(new QVariant(ret));
}
QJsonValue* QCborValueRef_ToJsonValue(QCborValueRef* self) {
2024-08-29 07:01:51 +00:00
QJsonValue ret = const_cast<const QCborValueRef*>(self)->toJsonValue();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QJsonValue*>(new QJsonValue(ret));
}
2024-08-29 07:01:51 +00:00
QByteArray* QCborValueRef_ToCbor(QCborValueRef* self) {
QByteArray ret = self->toCbor();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QByteArray*>(new QByteArray(ret));
}
void QCborValueRef_ToCborWithWriter(QCborValueRef* self, QCborStreamWriter* writer) {
self->toCbor(*writer);
}
void QCborValueRef_ToDiagnosticNotation(QCborValueRef* self, char** _out, int* _out_Strlen) {
QString ret = self->toDiagnosticNotation();
// 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();
}
QCborValue* QCborValueRef_TaggedValue1(QCborValueRef* self, QCborValue* defaultValue) {
QCborValue ret = const_cast<const QCborValueRef*>(self)->taggedValue(*defaultValue);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QCborValue*>(new QCborValue(ret));
}
2024-08-29 07:01:51 +00:00
long long QCborValueRef_ToInteger1(QCborValueRef* self, long long defaultValue) {
return const_cast<const QCborValueRef*>(self)->toInteger(static_cast<qint64>(defaultValue));
}
bool QCborValueRef_ToBool1(QCborValueRef* self, bool defaultValue) {
return const_cast<const QCborValueRef*>(self)->toBool(defaultValue);
}
double QCborValueRef_ToDouble1(QCborValueRef* self, double defaultValue) {
return const_cast<const QCborValueRef*>(self)->toDouble(static_cast<double>(defaultValue));
}
QByteArray* QCborValueRef_ToByteArray1(QCborValueRef* self, QByteArray* defaultValue) {
QByteArray ret = const_cast<const QCborValueRef*>(self)->toByteArray(*defaultValue);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QByteArray*>(new QByteArray(ret));
}
void QCborValueRef_ToString1(QCborValueRef* self, const char* defaultValue, size_t defaultValue_Strlen, char** _out, int* _out_Strlen) {
QString defaultValue_QString = QString::fromUtf8(defaultValue, defaultValue_Strlen);
QString ret = const_cast<const QCborValueRef*>(self)->toString(defaultValue_QString);
// 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();
}
QDateTime* QCborValueRef_ToDateTime1(QCborValueRef* self, QDateTime* defaultValue) {
QDateTime ret = const_cast<const QCborValueRef*>(self)->toDateTime(*defaultValue);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QDateTime*>(new QDateTime(ret));
}
QUrl* QCborValueRef_ToUrl1(QCborValueRef* self, QUrl* defaultValue) {
QUrl ret = const_cast<const QCborValueRef*>(self)->toUrl(*defaultValue);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QUrl*>(new QUrl(ret));
}
QRegularExpression* QCborValueRef_ToRegularExpression1(QCborValueRef* self, QRegularExpression* defaultValue) {
QRegularExpression ret = const_cast<const QCborValueRef*>(self)->toRegularExpression(*defaultValue);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QRegularExpression*>(new QRegularExpression(ret));
}
QUuid* QCborValueRef_ToUuid1(QCborValueRef* self, QUuid* defaultValue) {
QUuid ret = const_cast<const QCborValueRef*>(self)->toUuid(*defaultValue);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QUuid*>(new QUuid(ret));
}
2024-08-29 07:01:51 +00:00
QByteArray* QCborValueRef_ToCbor1(QCborValueRef* self, int opt) {
QByteArray ret = self->toCbor(static_cast<QCborValue::EncodingOptions>(opt));
// Copy-construct value returned type into heap-allocated copy
return static_cast<QByteArray*>(new QByteArray(ret));
}
void QCborValueRef_ToCbor2(QCborValueRef* self, QCborStreamWriter* writer, int opt) {
self->toCbor(*writer, static_cast<QCborValue::EncodingOptions>(opt));
}
void QCborValueRef_ToDiagnosticNotation1(QCborValueRef* self, int opt, char** _out, int* _out_Strlen) {
QString ret = self->toDiagnosticNotation(static_cast<QCborValue::DiagnosticNotationOptions>(opt));
// 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 QCborValueRef_Delete(QCborValueRef* self) {
delete self;
}