#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "gen_qsslserver.h" #include "_cgo_export.h" class MiqtVirtualQSslServer : public virtual QSslServer { public: MiqtVirtualQSslServer(): QSslServer() {}; MiqtVirtualQSslServer(QObject* parent): QSslServer(parent) {}; virtual ~MiqtVirtualQSslServer() = default; // cgo.Handle value for overwritten implementation intptr_t handle__IncomingConnection = 0; // Subclass to allow providing a Go implementation virtual void incomingConnection(qintptr socket) override { if (handle__IncomingConnection == 0) { QSslServer::incomingConnection(socket); return; } qintptr socket_ret = socket; intptr_t sigval1 = (intptr_t)(socket_ret); miqt_exec_callback_QSslServer_IncomingConnection(this, handle__IncomingConnection, sigval1); } // Wrapper to allow calling protected method void virtualbase_IncomingConnection(intptr_t socket) { QSslServer::incomingConnection((qintptr)(socket)); } // cgo.Handle value for overwritten implementation intptr_t handle__HasPendingConnections = 0; // Subclass to allow providing a Go implementation virtual bool hasPendingConnections() const override { if (handle__HasPendingConnections == 0) { return QSslServer::hasPendingConnections(); } bool callback_return_value = miqt_exec_callback_QSslServer_HasPendingConnections(const_cast(this), handle__HasPendingConnections); return callback_return_value; } // Wrapper to allow calling protected method bool virtualbase_HasPendingConnections() const { return QSslServer::hasPendingConnections(); } // cgo.Handle value for overwritten implementation intptr_t handle__NextPendingConnection = 0; // Subclass to allow providing a Go implementation virtual QTcpSocket* nextPendingConnection() override { if (handle__NextPendingConnection == 0) { return QSslServer::nextPendingConnection(); } QTcpSocket* callback_return_value = miqt_exec_callback_QSslServer_NextPendingConnection(this, handle__NextPendingConnection); return callback_return_value; } // Wrapper to allow calling protected method QTcpSocket* virtualbase_NextPendingConnection() { return QSslServer::nextPendingConnection(); } }; void QSslServer_new(QSslServer** outptr_QSslServer, QTcpServer** outptr_QTcpServer, QObject** outptr_QObject) { MiqtVirtualQSslServer* ret = new MiqtVirtualQSslServer(); *outptr_QSslServer = ret; *outptr_QTcpServer = static_cast(ret); *outptr_QObject = static_cast(ret); } void QSslServer_new2(QObject* parent, QSslServer** outptr_QSslServer, QTcpServer** outptr_QTcpServer, QObject** outptr_QObject) { MiqtVirtualQSslServer* ret = new MiqtVirtualQSslServer(parent); *outptr_QSslServer = ret; *outptr_QTcpServer = static_cast(ret); *outptr_QObject = static_cast(ret); } QMetaObject* QSslServer_MetaObject(const QSslServer* self) { return (QMetaObject*) self->metaObject(); } void* QSslServer_Metacast(QSslServer* self, const char* param1) { return self->qt_metacast(param1); } struct miqt_string QSslServer_Tr(const char* s) { QString _ret = QSslServer::tr(s); // 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; } void QSslServer_SetSslConfiguration(QSslServer* self, QSslConfiguration* sslConfiguration) { self->setSslConfiguration(*sslConfiguration); } QSslConfiguration* QSslServer_SslConfiguration(const QSslServer* self) { return new QSslConfiguration(self->sslConfiguration()); } void QSslServer_SetHandshakeTimeout(QSslServer* self, int timeout) { self->setHandshakeTimeout(static_cast(timeout)); } int QSslServer_HandshakeTimeout(const QSslServer* self) { return self->handshakeTimeout(); } void QSslServer_SslErrors(QSslServer* self, QSslSocket* socket, struct miqt_array /* of QSslError* */ errors) { QList errors_QList; errors_QList.reserve(errors.len); QSslError** errors_arr = static_cast(errors.data); for(size_t i = 0; i < errors.len; ++i) { errors_QList.push_back(*(errors_arr[i])); } self->sslErrors(socket, errors_QList); } void QSslServer_connect_SslErrors(QSslServer* self, intptr_t slot) { MiqtVirtualQSslServer::connect(self, static_cast&)>(&QSslServer::sslErrors), self, [=](QSslSocket* socket, const QList& errors) { QSslSocket* sigval1 = socket; const QList& errors_ret = errors; // Convert QList<> from C++ memory to manually-managed C memory QSslError** errors_arr = static_cast(malloc(sizeof(QSslError*) * errors_ret.length())); for (size_t i = 0, e = errors_ret.length(); i < e; ++i) { errors_arr[i] = new QSslError(errors_ret[i]); } struct miqt_array errors_out; errors_out.len = errors_ret.length(); errors_out.data = static_cast(errors_arr); struct miqt_array /* of QSslError* */ sigval2 = errors_out; miqt_exec_callback_QSslServer_SslErrors(slot, sigval1, sigval2); }); } void QSslServer_PeerVerifyError(QSslServer* self, QSslSocket* socket, QSslError* error) { self->peerVerifyError(socket, *error); } void QSslServer_connect_PeerVerifyError(QSslServer* self, intptr_t slot) { MiqtVirtualQSslServer::connect(self, static_cast(&QSslServer::peerVerifyError), self, [=](QSslSocket* socket, const QSslError& error) { QSslSocket* sigval1 = socket; const QSslError& error_ret = error; // Cast returned reference into pointer QSslError* sigval2 = const_cast(&error_ret); miqt_exec_callback_QSslServer_PeerVerifyError(slot, sigval1, sigval2); }); } void QSslServer_ErrorOccurred(QSslServer* self, QSslSocket* socket, int error) { self->errorOccurred(socket, static_cast(error)); } void QSslServer_connect_ErrorOccurred(QSslServer* self, intptr_t slot) { MiqtVirtualQSslServer::connect(self, static_cast(&QSslServer::errorOccurred), self, [=](QSslSocket* socket, QAbstractSocket::SocketError error) { QSslSocket* sigval1 = socket; QAbstractSocket::SocketError error_ret = error; int sigval2 = static_cast(error_ret); miqt_exec_callback_QSslServer_ErrorOccurred(slot, sigval1, sigval2); }); } void QSslServer_PreSharedKeyAuthenticationRequired(QSslServer* self, QSslSocket* socket, QSslPreSharedKeyAuthenticator* authenticator) { self->preSharedKeyAuthenticationRequired(socket, authenticator); } void QSslServer_connect_PreSharedKeyAuthenticationRequired(QSslServer* self, intptr_t slot) { MiqtVirtualQSslServer::connect(self, static_cast(&QSslServer::preSharedKeyAuthenticationRequired), self, [=](QSslSocket* socket, QSslPreSharedKeyAuthenticator* authenticator) { QSslSocket* sigval1 = socket; QSslPreSharedKeyAuthenticator* sigval2 = authenticator; miqt_exec_callback_QSslServer_PreSharedKeyAuthenticationRequired(slot, sigval1, sigval2); }); } void QSslServer_AlertSent(QSslServer* self, QSslSocket* socket, int level, int typeVal, struct miqt_string description) { QString description_QString = QString::fromUtf8(description.data, description.len); self->alertSent(socket, static_cast(level), static_cast(typeVal), description_QString); } void QSslServer_connect_AlertSent(QSslServer* self, intptr_t slot) { MiqtVirtualQSslServer::connect(self, static_cast(&QSslServer::alertSent), self, [=](QSslSocket* socket, QSsl::AlertLevel level, QSsl::AlertType typeVal, const QString& description) { QSslSocket* sigval1 = socket; QSsl::AlertLevel level_ret = level; int sigval2 = static_cast(level_ret); QSsl::AlertType typeVal_ret = typeVal; int sigval3 = static_cast(typeVal_ret); const QString description_ret = description; // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray description_b = description_ret.toUtf8(); struct miqt_string description_ms; description_ms.len = description_b.length(); description_ms.data = static_cast(malloc(description_ms.len)); memcpy(description_ms.data, description_b.data(), description_ms.len); struct miqt_string sigval4 = description_ms; miqt_exec_callback_QSslServer_AlertSent(slot, sigval1, sigval2, sigval3, sigval4); }); } void QSslServer_AlertReceived(QSslServer* self, QSslSocket* socket, int level, int typeVal, struct miqt_string description) { QString description_QString = QString::fromUtf8(description.data, description.len); self->alertReceived(socket, static_cast(level), static_cast(typeVal), description_QString); } void QSslServer_connect_AlertReceived(QSslServer* self, intptr_t slot) { MiqtVirtualQSslServer::connect(self, static_cast(&QSslServer::alertReceived), self, [=](QSslSocket* socket, QSsl::AlertLevel level, QSsl::AlertType typeVal, const QString& description) { QSslSocket* sigval1 = socket; QSsl::AlertLevel level_ret = level; int sigval2 = static_cast(level_ret); QSsl::AlertType typeVal_ret = typeVal; int sigval3 = static_cast(typeVal_ret); const QString description_ret = description; // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray description_b = description_ret.toUtf8(); struct miqt_string description_ms; description_ms.len = description_b.length(); description_ms.data = static_cast(malloc(description_ms.len)); memcpy(description_ms.data, description_b.data(), description_ms.len); struct miqt_string sigval4 = description_ms; miqt_exec_callback_QSslServer_AlertReceived(slot, sigval1, sigval2, sigval3, sigval4); }); } void QSslServer_HandshakeInterruptedOnError(QSslServer* self, QSslSocket* socket, QSslError* error) { self->handshakeInterruptedOnError(socket, *error); } void QSslServer_connect_HandshakeInterruptedOnError(QSslServer* self, intptr_t slot) { MiqtVirtualQSslServer::connect(self, static_cast(&QSslServer::handshakeInterruptedOnError), self, [=](QSslSocket* socket, const QSslError& error) { QSslSocket* sigval1 = socket; const QSslError& error_ret = error; // Cast returned reference into pointer QSslError* sigval2 = const_cast(&error_ret); miqt_exec_callback_QSslServer_HandshakeInterruptedOnError(slot, sigval1, sigval2); }); } void QSslServer_StartedEncryptionHandshake(QSslServer* self, QSslSocket* socket) { self->startedEncryptionHandshake(socket); } void QSslServer_connect_StartedEncryptionHandshake(QSslServer* self, intptr_t slot) { MiqtVirtualQSslServer::connect(self, static_cast(&QSslServer::startedEncryptionHandshake), self, [=](QSslSocket* socket) { QSslSocket* sigval1 = socket; miqt_exec_callback_QSslServer_StartedEncryptionHandshake(slot, sigval1); }); } struct miqt_string QSslServer_Tr2(const char* s, const char* c) { QString _ret = QSslServer::tr(s, c); // 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; } struct miqt_string QSslServer_Tr3(const char* s, const char* c, int n) { QString _ret = QSslServer::tr(s, c, static_cast(n)); // 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; } void QSslServer_override_virtual_IncomingConnection(void* self, intptr_t slot) { dynamic_cast( (QSslServer*)(self) )->handle__IncomingConnection = slot; } void QSslServer_virtualbase_IncomingConnection(void* self, intptr_t socket) { ( (MiqtVirtualQSslServer*)(self) )->virtualbase_IncomingConnection(socket); } void QSslServer_override_virtual_HasPendingConnections(void* self, intptr_t slot) { dynamic_cast( (QSslServer*)(self) )->handle__HasPendingConnections = slot; } bool QSslServer_virtualbase_HasPendingConnections(const void* self) { return ( (const MiqtVirtualQSslServer*)(self) )->virtualbase_HasPendingConnections(); } void QSslServer_override_virtual_NextPendingConnection(void* self, intptr_t slot) { dynamic_cast( (QSslServer*)(self) )->handle__NextPendingConnection = slot; } QTcpSocket* QSslServer_virtualbase_NextPendingConnection(void* self) { return ( (MiqtVirtualQSslServer*)(self) )->virtualbase_NextPendingConnection(); } void QSslServer_Delete(QSslServer* self, bool isSubclass) { if (isSubclass) { delete dynamic_cast( self ); } else { delete self; } }