mirror of
https://github.com/mappu/miqt.git
synced 2025-01-21 06:00:38 +00:00
a0c6344ecd
The expected type of the callback is already known from the AST - this change reduces dependency on cgo specifics and makes the generated C ABI entirely cgo-independent - in particular, there is no need to include `_cgo_export.h` any more.
93 lines
2.9 KiB
C++
93 lines
2.9 KiB
C++
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QSystemSemaphore>
|
|
#include <qsystemsemaphore.h>
|
|
#include "gen_qsystemsemaphore.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
QSystemSemaphore* QSystemSemaphore_new(struct miqt_string key) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
return new QSystemSemaphore(key_QString);
|
|
}
|
|
|
|
QSystemSemaphore* QSystemSemaphore_new2(struct miqt_string key, int initialValue) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
return new QSystemSemaphore(key_QString, static_cast<int>(initialValue));
|
|
}
|
|
|
|
QSystemSemaphore* QSystemSemaphore_new3(struct miqt_string key, int initialValue, int mode) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
return new QSystemSemaphore(key_QString, static_cast<int>(initialValue), static_cast<QSystemSemaphore::AccessMode>(mode));
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
|