mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
89 lines
3.1 KiB
C++
89 lines
3.1 KiB
C++
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QSystemSemaphore>
|
|
#include <qsystemsemaphore.h>
|
|
#include "gen_qsystemsemaphore.h"
|
|
#include "_cgo_export.h"
|
|
|
|
void QSystemSemaphore_new(struct miqt_string key, QSystemSemaphore** outptr_QSystemSemaphore) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
QSystemSemaphore* ret = new QSystemSemaphore(key_QString);
|
|
*outptr_QSystemSemaphore = ret;
|
|
}
|
|
|
|
void QSystemSemaphore_new2(struct miqt_string key, int initialValue, QSystemSemaphore** outptr_QSystemSemaphore) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
QSystemSemaphore* ret = new QSystemSemaphore(key_QString, static_cast<int>(initialValue));
|
|
*outptr_QSystemSemaphore = ret;
|
|
}
|
|
|
|
void QSystemSemaphore_new3(struct miqt_string key, int initialValue, int mode, QSystemSemaphore** outptr_QSystemSemaphore) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
QSystemSemaphore* ret = new QSystemSemaphore(key_QString, static_cast<int>(initialValue), static_cast<QSystemSemaphore::AccessMode>(mode));
|
|
*outptr_QSystemSemaphore = ret;
|
|
}
|
|
|
|
void QSystemSemaphore_SetKey(QSystemSemaphore* self, struct miqt_string key) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
self->setKey(key_QString);
|
|
}
|
|
|
|
struct miqt_string QSystemSemaphore_Key(const QSystemSemaphore* 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<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
bool QSystemSemaphore_Acquire(QSystemSemaphore* self) {
|
|
return self->acquire();
|
|
}
|
|
|
|
bool QSystemSemaphore_Release(QSystemSemaphore* self) {
|
|
return self->release();
|
|
}
|
|
|
|
int QSystemSemaphore_Error(const QSystemSemaphore* self) {
|
|
QSystemSemaphore::SystemSemaphoreError _ret = self->error();
|
|
return static_cast<int>(_ret);
|
|
}
|
|
|
|
struct miqt_string QSystemSemaphore_ErrorString(const QSystemSemaphore* self) {
|
|
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();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
void QSystemSemaphore_SetKey2(QSystemSemaphore* self, struct miqt_string key, int initialValue) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
self->setKey(key_QString, static_cast<int>(initialValue));
|
|
}
|
|
|
|
void QSystemSemaphore_SetKey3(QSystemSemaphore* self, struct miqt_string key, int initialValue, int mode) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
self->setKey(key_QString, static_cast<int>(initialValue), static_cast<QSystemSemaphore::AccessMode>(mode));
|
|
}
|
|
|
|
bool QSystemSemaphore_Release1(QSystemSemaphore* self, int n) {
|
|
return self->release(static_cast<int>(n));
|
|
}
|
|
|
|
void QSystemSemaphore_Delete(QSystemSemaphore* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QSystemSemaphore*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|