miqt/qt/gen_qlockfile.go

104 lines
2.2 KiB
Go
Raw Normal View History

package qt
/*
#include "gen_qlockfile.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
"unsafe"
)
2024-09-04 06:54:22 +00:00
type QLockFile__LockError int
const (
QLockFile__LockError__NoError QLockFile__LockError = 0
QLockFile__LockError__LockFailedError QLockFile__LockError = 1
QLockFile__LockError__PermissionError QLockFile__LockError = 2
QLockFile__LockError__UnknownError QLockFile__LockError = 3
)
type QLockFile struct {
h *C.QLockFile
}
func (this *QLockFile) cPointer() *C.QLockFile {
if this == nil {
return nil
}
return this.h
}
func newQLockFile(h *C.QLockFile) *QLockFile {
2024-09-01 02:23:55 +00:00
if h == nil {
return nil
}
return &QLockFile{h: h}
}
func newQLockFile_U(h unsafe.Pointer) *QLockFile {
return newQLockFile((*C.QLockFile)(h))
}
// NewQLockFile constructs a new QLockFile object.
func NewQLockFile(fileName string) *QLockFile {
fileName_ms := miqt_strdupg(fileName)
defer C.free(fileName_ms)
ret := C.QLockFile_new((*C.struct_miqt_string)(fileName_ms))
return newQLockFile(ret)
}
func (this *QLockFile) Lock() bool {
return (bool)(C.QLockFile_Lock(this.h))
}
func (this *QLockFile) TryLock() bool {
return (bool)(C.QLockFile_TryLock(this.h))
}
func (this *QLockFile) Unlock() {
C.QLockFile_Unlock(this.h)
}
func (this *QLockFile) SetStaleLockTime(staleLockTime int) {
C.QLockFile_SetStaleLockTime(this.h, (C.int)(staleLockTime))
}
func (this *QLockFile) StaleLockTime() int {
return (int)(C.QLockFile_StaleLockTime(this.h))
}
func (this *QLockFile) IsLocked() bool {
return (bool)(C.QLockFile_IsLocked(this.h))
}
func (this *QLockFile) RemoveStaleLockFile() bool {
return (bool)(C.QLockFile_RemoveStaleLockFile(this.h))
}
2024-09-04 06:54:22 +00:00
func (this *QLockFile) Error() QLockFile__LockError {
return (QLockFile__LockError)(C.QLockFile_Error(this.h))
2024-08-29 07:01:51 +00:00
}
func (this *QLockFile) TryLock1(timeout int) bool {
return (bool)(C.QLockFile_TryLock1(this.h, (C.int)(timeout)))
}
// Delete this object from C++ memory.
func (this *QLockFile) Delete() {
C.QLockFile_Delete(this.h)
}
// 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 *QLockFile) GoGC() {
runtime.SetFinalizer(this, func(this *QLockFile) {
this.Delete()
runtime.KeepAlive(this.h)
})
}