2024-10-20 05:21:03 +00:00
|
|
|
package qt6
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
#include "gen_qstorageinfo.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"runtime"
|
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
|
|
|
type QStorageInfo struct {
|
2024-11-19 06:29:06 +00:00
|
|
|
h *C.QStorageInfo
|
|
|
|
isSubclass bool
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) cPointer() *C.QStorageInfo {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return this.h
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) UnsafePointer() unsafe.Pointer {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return unsafe.Pointer(this.h)
|
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
// newQStorageInfo constructs the type using only CGO pointers.
|
2024-10-20 05:21:03 +00:00
|
|
|
func newQStorageInfo(h *C.QStorageInfo) *QStorageInfo {
|
|
|
|
if h == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2024-12-07 04:15:57 +00:00
|
|
|
|
2024-10-20 05:21:03 +00:00
|
|
|
return &QStorageInfo{h: h}
|
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
// UnsafeNewQStorageInfo constructs the type using only unsafe pointers.
|
2024-10-20 05:21:03 +00:00
|
|
|
func UnsafeNewQStorageInfo(h unsafe.Pointer) *QStorageInfo {
|
2024-12-07 04:15:57 +00:00
|
|
|
return newQStorageInfo((*C.QStorageInfo)(h))
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQStorageInfo constructs a new QStorageInfo object.
|
|
|
|
func NewQStorageInfo() *QStorageInfo {
|
2024-11-19 06:29:06 +00:00
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
ret := newQStorageInfo(C.QStorageInfo_new())
|
2024-11-19 06:29:06 +00:00
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQStorageInfo2 constructs a new QStorageInfo object.
|
|
|
|
func NewQStorageInfo2(path string) *QStorageInfo {
|
|
|
|
path_ms := C.struct_miqt_string{}
|
|
|
|
path_ms.data = C.CString(path)
|
|
|
|
path_ms.len = C.size_t(len(path))
|
|
|
|
defer C.free(unsafe.Pointer(path_ms.data))
|
2024-11-19 06:29:06 +00:00
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
ret := newQStorageInfo(C.QStorageInfo_new2(path_ms))
|
2024-11-19 06:29:06 +00:00
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQStorageInfo3 constructs a new QStorageInfo object.
|
|
|
|
func NewQStorageInfo3(dir *QDir) *QStorageInfo {
|
2024-11-19 06:29:06 +00:00
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
ret := newQStorageInfo(C.QStorageInfo_new3(dir.cPointer()))
|
2024-11-19 06:29:06 +00:00
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQStorageInfo4 constructs a new QStorageInfo object.
|
|
|
|
func NewQStorageInfo4(other *QStorageInfo) *QStorageInfo {
|
2024-11-19 06:29:06 +00:00
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
ret := newQStorageInfo(C.QStorageInfo_new4(other.cPointer()))
|
2024-11-19 06:29:06 +00:00
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) OperatorAssign(other *QStorageInfo) {
|
|
|
|
C.QStorageInfo_OperatorAssign(this.h, other.cPointer())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) Swap(other *QStorageInfo) {
|
|
|
|
C.QStorageInfo_Swap(this.h, other.cPointer())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) SetPath(path string) {
|
|
|
|
path_ms := C.struct_miqt_string{}
|
|
|
|
path_ms.data = C.CString(path)
|
|
|
|
path_ms.len = C.size_t(len(path))
|
|
|
|
defer C.free(unsafe.Pointer(path_ms.data))
|
|
|
|
C.QStorageInfo_SetPath(this.h, path_ms)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) RootPath() string {
|
|
|
|
var _ms C.struct_miqt_string = C.QStorageInfo_RootPath(this.h)
|
|
|
|
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(_ms.data))
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) Device() []byte {
|
|
|
|
var _bytearray C.struct_miqt_string = C.QStorageInfo_Device(this.h)
|
|
|
|
_ret := C.GoBytes(unsafe.Pointer(_bytearray.data), C.int(int64(_bytearray.len)))
|
|
|
|
C.free(unsafe.Pointer(_bytearray.data))
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) Subvolume() []byte {
|
|
|
|
var _bytearray C.struct_miqt_string = C.QStorageInfo_Subvolume(this.h)
|
|
|
|
_ret := C.GoBytes(unsafe.Pointer(_bytearray.data), C.int(int64(_bytearray.len)))
|
|
|
|
C.free(unsafe.Pointer(_bytearray.data))
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) FileSystemType() []byte {
|
|
|
|
var _bytearray C.struct_miqt_string = C.QStorageInfo_FileSystemType(this.h)
|
|
|
|
_ret := C.GoBytes(unsafe.Pointer(_bytearray.data), C.int(int64(_bytearray.len)))
|
|
|
|
C.free(unsafe.Pointer(_bytearray.data))
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) Name() string {
|
|
|
|
var _ms C.struct_miqt_string = C.QStorageInfo_Name(this.h)
|
|
|
|
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(_ms.data))
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) DisplayName() string {
|
|
|
|
var _ms C.struct_miqt_string = C.QStorageInfo_DisplayName(this.h)
|
|
|
|
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(_ms.data))
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) BytesTotal() int64 {
|
|
|
|
return (int64)(C.QStorageInfo_BytesTotal(this.h))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) BytesFree() int64 {
|
|
|
|
return (int64)(C.QStorageInfo_BytesFree(this.h))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) BytesAvailable() int64 {
|
|
|
|
return (int64)(C.QStorageInfo_BytesAvailable(this.h))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) BlockSize() int {
|
|
|
|
return (int)(C.QStorageInfo_BlockSize(this.h))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) IsRoot() bool {
|
|
|
|
return (bool)(C.QStorageInfo_IsRoot(this.h))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) IsReadOnly() bool {
|
|
|
|
return (bool)(C.QStorageInfo_IsReadOnly(this.h))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) IsReady() bool {
|
|
|
|
return (bool)(C.QStorageInfo_IsReady(this.h))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) IsValid() bool {
|
|
|
|
return (bool)(C.QStorageInfo_IsValid(this.h))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QStorageInfo) Refresh() {
|
|
|
|
C.QStorageInfo_Refresh(this.h)
|
|
|
|
}
|
|
|
|
|
|
|
|
func QStorageInfo_MountedVolumes() []QStorageInfo {
|
2024-11-04 07:18:27 +00:00
|
|
|
var _ma C.struct_miqt_array = C.QStorageInfo_MountedVolumes()
|
2024-10-20 05:21:03 +00:00
|
|
|
_ret := make([]QStorageInfo, int(_ma.len))
|
|
|
|
_outCast := (*[0xffff]*C.QStorageInfo)(unsafe.Pointer(_ma.data)) // hey ya
|
|
|
|
for i := 0; i < int(_ma.len); i++ {
|
2024-12-07 02:02:06 +00:00
|
|
|
_lv_goptr := newQStorageInfo(_outCast[i])
|
2024-10-20 05:21:03 +00:00
|
|
|
_lv_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
_ret[i] = *_lv_goptr
|
|
|
|
}
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func QStorageInfo_Root() *QStorageInfo {
|
2024-12-07 02:02:06 +00:00
|
|
|
_goptr := newQStorageInfo(C.QStorageInfo_Root())
|
2024-10-20 05:21:03 +00:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete this object from C++ memory.
|
|
|
|
func (this *QStorageInfo) Delete() {
|
2024-11-19 06:29:06 +00:00
|
|
|
C.QStorageInfo_Delete(this.h, C.bool(this.isSubclass))
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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 *QStorageInfo) GoGC() {
|
|
|
|
runtime.SetFinalizer(this, func(this *QStorageInfo) {
|
|
|
|
this.Delete()
|
|
|
|
runtime.KeepAlive(this.h)
|
|
|
|
})
|
|
|
|
}
|