1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-25 03:48:10 +02:00

Discs statistics on Windows platform.

This commit is contained in:
Evgenii Kozlov 2020-06-02 11:52:16 +03:00
parent bc2ec6774d
commit 48f9ff52cf
2 changed files with 47 additions and 1 deletions

View file

@ -1,4 +1,4 @@
// +build windows openbsd netbsd plan9 solaris
// +build openbsd netbsd plan9 solaris
package stats

View file

@ -0,0 +1,46 @@
package stats
import (
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
"golang.org/x/sys/windows"
"syscall"
"unsafe"
)
var (
kernel32 = windows.NewLazySystemDLL("Kernel32.dll")
getDiskFreeSpaceEx = kernel32.NewProc("GetDiskFreeSpaceExW")
)
func fillInDiskStatus(disk *volume_server_pb.DiskStatus) {
ptr, err := syscall.UTF16PtrFromString(disk.Dir)
if err != nil {
return
}
var _temp uint64
/* #nosec */
r, _, e := syscall.Syscall6(
getDiskFreeSpaceEx.Addr(),
4,
uintptr(unsafe.Pointer(ptr)),
uintptr(unsafe.Pointer(&disk.Free)),
uintptr(unsafe.Pointer(&disk.All)),
uintptr(unsafe.Pointer(&_temp)),
0,
0,
)
if r == 0 {
if e != 0 {
return
}
return
}
disk.Used = disk.All - disk.Free
disk.PercentFree = float32((float64(disk.Free) / float64(disk.All)) * 100)
disk.PercentUsed = float32((float64(disk.Used) / float64(disk.All)) * 100)
return
}