Files
seaweedfs/weed/stats/disk_windows.go
T
Chris Lu 69218c88fe fix(stats): fix build on openbsd, solaris, and windows (#8951)
fix(stats): replace undefined calculateDiskRemaining with inline calculation

disk_openbsd.go, disk_solaris.go, and disk_windows.go all call
calculateDiskRemaining() which is never defined, causing build failures
on those platforms. Replace with the same inline calculation used in
disk_supported.go.
2026-04-06 12:48:48 -07:00

49 lines
915 B
Go

package stats
import (
"syscall"
"unsafe"
"github.com/seaweedfs/seaweedfs/weed/pb/volume_server_pb"
"golang.org/x/sys/windows"
)
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
}