prometheus/db_windows.go

35 lines
851 B
Go
Raw Normal View History

2017-04-04 06:59:52 -07:00
package tsdb
import (
"os"
"syscall"
"unsafe"
)
func mmap(f *os.File, sz int) ([]byte, error) {
2017-04-05 05:14:30 -07:00
low, high := uint32(sz), uint32(sz>>32)
2017-04-04 06:59:52 -07:00
h, errno := syscall.CreateFileMapping(syscall.Handle(f.Fd()), nil, syscall.PAGE_READONLY, low, high, nil)
if h == 0 {
2017-04-05 05:14:30 -07:00
return nil, os.NewSyscallError("CreateFileMapping", errno)
2017-04-04 06:59:52 -07:00
}
addr, errno := syscall.MapViewOfFile(h, syscall.FILE_MAP_READ, 0, 0, uintptr(sz))
if addr == 0 {
2017-04-05 05:14:30 -07:00
return nil, os.NewSyscallError("MapViewOfFile", errno)
2017-04-04 06:59:52 -07:00
}
if err := syscall.CloseHandle(syscall.Handle(h)); err != nil {
2017-04-05 05:14:30 -07:00
return nil, os.NewSyscallError("CloseHandle", err)
2017-04-04 06:59:52 -07:00
}
return (*[1 << 30]byte)(unsafe.Pointer(addr))[:sz], nil
}
func munmap(b []byte) error {
if err := syscall.UnmapViewOfFile((uintptr)(unsafe.Pointer(&b[0]))); err != nil {
return os.NewSyscallError("UnmapViewOfFile", err)
}
return nil
}