mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
229 lines
5.8 KiB
Go
229 lines
5.8 KiB
Go
package qt
|
|
|
|
/*
|
|
|
|
#include "gen_qsemaphore.h"
|
|
#include <stdlib.h>
|
|
|
|
*/
|
|
import "C"
|
|
|
|
import (
|
|
"runtime"
|
|
"unsafe"
|
|
)
|
|
|
|
type QSemaphore struct {
|
|
h *C.QSemaphore
|
|
isSubclass bool
|
|
}
|
|
|
|
func (this *QSemaphore) cPointer() *C.QSemaphore {
|
|
if this == nil {
|
|
return nil
|
|
}
|
|
return this.h
|
|
}
|
|
|
|
func (this *QSemaphore) UnsafePointer() unsafe.Pointer {
|
|
if this == nil {
|
|
return nil
|
|
}
|
|
return unsafe.Pointer(this.h)
|
|
}
|
|
|
|
// newQSemaphore constructs the type using only CGO pointers.
|
|
func newQSemaphore(h *C.QSemaphore) *QSemaphore {
|
|
if h == nil {
|
|
return nil
|
|
}
|
|
return &QSemaphore{h: h}
|
|
}
|
|
|
|
// UnsafeNewQSemaphore constructs the type using only unsafe pointers.
|
|
func UnsafeNewQSemaphore(h unsafe.Pointer) *QSemaphore {
|
|
if h == nil {
|
|
return nil
|
|
}
|
|
|
|
return &QSemaphore{h: (*C.QSemaphore)(h)}
|
|
}
|
|
|
|
// NewQSemaphore constructs a new QSemaphore object.
|
|
func NewQSemaphore() *QSemaphore {
|
|
var outptr_QSemaphore *C.QSemaphore = nil
|
|
|
|
C.QSemaphore_new(&outptr_QSemaphore)
|
|
ret := newQSemaphore(outptr_QSemaphore)
|
|
ret.isSubclass = true
|
|
return ret
|
|
}
|
|
|
|
// NewQSemaphore2 constructs a new QSemaphore object.
|
|
func NewQSemaphore2(n int) *QSemaphore {
|
|
var outptr_QSemaphore *C.QSemaphore = nil
|
|
|
|
C.QSemaphore_new2((C.int)(n), &outptr_QSemaphore)
|
|
ret := newQSemaphore(outptr_QSemaphore)
|
|
ret.isSubclass = true
|
|
return ret
|
|
}
|
|
|
|
func (this *QSemaphore) Acquire() {
|
|
C.QSemaphore_Acquire(this.h)
|
|
}
|
|
|
|
func (this *QSemaphore) TryAcquire() bool {
|
|
return (bool)(C.QSemaphore_TryAcquire(this.h))
|
|
}
|
|
|
|
func (this *QSemaphore) TryAcquire2(n int, timeout int) bool {
|
|
return (bool)(C.QSemaphore_TryAcquire2(this.h, (C.int)(n), (C.int)(timeout)))
|
|
}
|
|
|
|
func (this *QSemaphore) Release() {
|
|
C.QSemaphore_Release(this.h)
|
|
}
|
|
|
|
func (this *QSemaphore) Available() int {
|
|
return (int)(C.QSemaphore_Available(this.h))
|
|
}
|
|
|
|
func (this *QSemaphore) Acquire1(n int) {
|
|
C.QSemaphore_Acquire1(this.h, (C.int)(n))
|
|
}
|
|
|
|
func (this *QSemaphore) TryAcquire1(n int) bool {
|
|
return (bool)(C.QSemaphore_TryAcquire1(this.h, (C.int)(n)))
|
|
}
|
|
|
|
func (this *QSemaphore) Release1(n int) {
|
|
C.QSemaphore_Release1(this.h, (C.int)(n))
|
|
}
|
|
|
|
// Delete this object from C++ memory.
|
|
func (this *QSemaphore) Delete() {
|
|
C.QSemaphore_Delete(this.h, C.bool(this.isSubclass))
|
|
}
|
|
|
|
// GoGC adds a Go Finalizer to this pointer, so that it will be deleted
|
|
// from C++ memory once it is unreachable from Go memory.
|
|
func (this *QSemaphore) GoGC() {
|
|
runtime.SetFinalizer(this, func(this *QSemaphore) {
|
|
this.Delete()
|
|
runtime.KeepAlive(this.h)
|
|
})
|
|
}
|
|
|
|
type QSemaphoreReleaser struct {
|
|
h *C.QSemaphoreReleaser
|
|
isSubclass bool
|
|
}
|
|
|
|
func (this *QSemaphoreReleaser) cPointer() *C.QSemaphoreReleaser {
|
|
if this == nil {
|
|
return nil
|
|
}
|
|
return this.h
|
|
}
|
|
|
|
func (this *QSemaphoreReleaser) UnsafePointer() unsafe.Pointer {
|
|
if this == nil {
|
|
return nil
|
|
}
|
|
return unsafe.Pointer(this.h)
|
|
}
|
|
|
|
// newQSemaphoreReleaser constructs the type using only CGO pointers.
|
|
func newQSemaphoreReleaser(h *C.QSemaphoreReleaser) *QSemaphoreReleaser {
|
|
if h == nil {
|
|
return nil
|
|
}
|
|
return &QSemaphoreReleaser{h: h}
|
|
}
|
|
|
|
// UnsafeNewQSemaphoreReleaser constructs the type using only unsafe pointers.
|
|
func UnsafeNewQSemaphoreReleaser(h unsafe.Pointer) *QSemaphoreReleaser {
|
|
if h == nil {
|
|
return nil
|
|
}
|
|
|
|
return &QSemaphoreReleaser{h: (*C.QSemaphoreReleaser)(h)}
|
|
}
|
|
|
|
// NewQSemaphoreReleaser constructs a new QSemaphoreReleaser object.
|
|
func NewQSemaphoreReleaser() *QSemaphoreReleaser {
|
|
var outptr_QSemaphoreReleaser *C.QSemaphoreReleaser = nil
|
|
|
|
C.QSemaphoreReleaser_new(&outptr_QSemaphoreReleaser)
|
|
ret := newQSemaphoreReleaser(outptr_QSemaphoreReleaser)
|
|
ret.isSubclass = true
|
|
return ret
|
|
}
|
|
|
|
// NewQSemaphoreReleaser2 constructs a new QSemaphoreReleaser object.
|
|
func NewQSemaphoreReleaser2(sem *QSemaphore) *QSemaphoreReleaser {
|
|
var outptr_QSemaphoreReleaser *C.QSemaphoreReleaser = nil
|
|
|
|
C.QSemaphoreReleaser_new2(sem.cPointer(), &outptr_QSemaphoreReleaser)
|
|
ret := newQSemaphoreReleaser(outptr_QSemaphoreReleaser)
|
|
ret.isSubclass = true
|
|
return ret
|
|
}
|
|
|
|
// NewQSemaphoreReleaser3 constructs a new QSemaphoreReleaser object.
|
|
func NewQSemaphoreReleaser3(sem *QSemaphore) *QSemaphoreReleaser {
|
|
var outptr_QSemaphoreReleaser *C.QSemaphoreReleaser = nil
|
|
|
|
C.QSemaphoreReleaser_new3(sem.cPointer(), &outptr_QSemaphoreReleaser)
|
|
ret := newQSemaphoreReleaser(outptr_QSemaphoreReleaser)
|
|
ret.isSubclass = true
|
|
return ret
|
|
}
|
|
|
|
// NewQSemaphoreReleaser4 constructs a new QSemaphoreReleaser object.
|
|
func NewQSemaphoreReleaser4(sem *QSemaphore, n int) *QSemaphoreReleaser {
|
|
var outptr_QSemaphoreReleaser *C.QSemaphoreReleaser = nil
|
|
|
|
C.QSemaphoreReleaser_new4(sem.cPointer(), (C.int)(n), &outptr_QSemaphoreReleaser)
|
|
ret := newQSemaphoreReleaser(outptr_QSemaphoreReleaser)
|
|
ret.isSubclass = true
|
|
return ret
|
|
}
|
|
|
|
// NewQSemaphoreReleaser5 constructs a new QSemaphoreReleaser object.
|
|
func NewQSemaphoreReleaser5(sem *QSemaphore, n int) *QSemaphoreReleaser {
|
|
var outptr_QSemaphoreReleaser *C.QSemaphoreReleaser = nil
|
|
|
|
C.QSemaphoreReleaser_new5(sem.cPointer(), (C.int)(n), &outptr_QSemaphoreReleaser)
|
|
ret := newQSemaphoreReleaser(outptr_QSemaphoreReleaser)
|
|
ret.isSubclass = true
|
|
return ret
|
|
}
|
|
|
|
func (this *QSemaphoreReleaser) Swap(other *QSemaphoreReleaser) {
|
|
C.QSemaphoreReleaser_Swap(this.h, other.cPointer())
|
|
}
|
|
|
|
func (this *QSemaphoreReleaser) Semaphore() *QSemaphore {
|
|
return UnsafeNewQSemaphore(unsafe.Pointer(C.QSemaphoreReleaser_Semaphore(this.h)))
|
|
}
|
|
|
|
func (this *QSemaphoreReleaser) Cancel() *QSemaphore {
|
|
return UnsafeNewQSemaphore(unsafe.Pointer(C.QSemaphoreReleaser_Cancel(this.h)))
|
|
}
|
|
|
|
// Delete this object from C++ memory.
|
|
func (this *QSemaphoreReleaser) Delete() {
|
|
C.QSemaphoreReleaser_Delete(this.h, C.bool(this.isSubclass))
|
|
}
|
|
|
|
// GoGC adds a Go Finalizer to this pointer, so that it will be deleted
|
|
// from C++ memory once it is unreachable from Go memory.
|
|
func (this *QSemaphoreReleaser) GoGC() {
|
|
runtime.SetFinalizer(this, func(this *QSemaphoreReleaser) {
|
|
this.Delete()
|
|
runtime.KeepAlive(this.h)
|
|
})
|
|
}
|