2024-08-25 04:08:24 +00:00
|
|
|
#include <QString>
|
2024-08-29 07:01:51 +00:00
|
|
|
#include <QByteArray>
|
|
|
|
#include <cstring>
|
2024-08-25 04:08:24 +00:00
|
|
|
#include <QSystemSemaphore>
|
2024-10-16 05:07:56 +00:00
|
|
|
#include <qsystemsemaphore.h>
|
2024-08-29 07:01:51 +00:00
|
|
|
#include "gen_qsystemsemaphore.h"
|
2024-09-14 22:29:05 +00:00
|
|
|
#include "_cgo_export.h"
|
2024-08-25 04:08:24 +00:00
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
QSystemSemaphore* QSystemSemaphore_new(struct miqt_string* key) {
|
|
|
|
QString key_QString = QString::fromUtf8(&key->data, key->len);
|
2024-08-29 07:01:51 +00:00
|
|
|
return new QSystemSemaphore(key_QString);
|
|
|
|
}
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
QSystemSemaphore* QSystemSemaphore_new2(struct miqt_string* key, int initialValue) {
|
|
|
|
QString key_QString = QString::fromUtf8(&key->data, key->len);
|
2024-08-29 07:01:51 +00:00
|
|
|
return new QSystemSemaphore(key_QString, static_cast<int>(initialValue));
|
|
|
|
}
|
|
|
|
|
2024-09-18 00:12:02 +00:00
|
|
|
QSystemSemaphore* QSystemSemaphore_new3(struct miqt_string* key, int initialValue, int mode) {
|
2024-09-14 22:29:05 +00:00
|
|
|
QString key_QString = QString::fromUtf8(&key->data, key->len);
|
2024-08-29 07:01:51 +00:00
|
|
|
return new QSystemSemaphore(key_QString, static_cast<int>(initialValue), static_cast<QSystemSemaphore::AccessMode>(mode));
|
|
|
|
}
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
void QSystemSemaphore_SetKey(QSystemSemaphore* self, struct miqt_string* key) {
|
|
|
|
QString key_QString = QString::fromUtf8(&key->data, key->len);
|
2024-08-29 07:01:51 +00:00
|
|
|
self->setKey(key_QString);
|
|
|
|
}
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
struct miqt_string* QSystemSemaphore_Key(const QSystemSemaphore* self) {
|
|
|
|
QString _ret = self->key();
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
|
|
|
return miqt_strdup(_b.data(), _b.length());
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool QSystemSemaphore_Acquire(QSystemSemaphore* self) {
|
|
|
|
return self->acquire();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QSystemSemaphore_Release(QSystemSemaphore* self) {
|
|
|
|
return self->release();
|
|
|
|
}
|
|
|
|
|
2024-09-18 00:12:02 +00:00
|
|
|
int QSystemSemaphore_Error(const QSystemSemaphore* self) {
|
2024-09-14 22:29:05 +00:00
|
|
|
QSystemSemaphore::SystemSemaphoreError _ret = self->error();
|
2024-09-18 00:12:02 +00:00
|
|
|
return static_cast<int>(_ret);
|
2024-08-29 07:01:51 +00:00
|
|
|
}
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
struct miqt_string* QSystemSemaphore_ErrorString(const QSystemSemaphore* self) {
|
|
|
|
QString _ret = self->errorString();
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
|
|
|
return miqt_strdup(_b.data(), _b.length());
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
void QSystemSemaphore_SetKey2(QSystemSemaphore* self, struct miqt_string* key, int initialValue) {
|
|
|
|
QString key_QString = QString::fromUtf8(&key->data, key->len);
|
2024-08-29 07:01:51 +00:00
|
|
|
self->setKey(key_QString, static_cast<int>(initialValue));
|
|
|
|
}
|
|
|
|
|
2024-09-18 00:12:02 +00:00
|
|
|
void QSystemSemaphore_SetKey3(QSystemSemaphore* self, struct miqt_string* key, int initialValue, int mode) {
|
2024-09-14 22:29:05 +00:00
|
|
|
QString key_QString = QString::fromUtf8(&key->data, key->len);
|
2024-08-29 07:01:51 +00:00
|
|
|
self->setKey(key_QString, static_cast<int>(initialValue), static_cast<QSystemSemaphore::AccessMode>(mode));
|
|
|
|
}
|
|
|
|
|
2024-08-25 04:08:24 +00:00
|
|
|
bool QSystemSemaphore_Release1(QSystemSemaphore* self, int n) {
|
|
|
|
return self->release(static_cast<int>(n));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QSystemSemaphore_Delete(QSystemSemaphore* self) {
|
|
|
|
delete self;
|
|
|
|
}
|
|
|
|
|