-
Notifications
You must be signed in to change notification settings - Fork 1
/
mmap_windows.go
103 lines (84 loc) · 2.67 KB
/
mmap_windows.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// +build windows
package ioengine
import (
"os"
"unsafe"
"golang.org/x/sys/windows"
)
// Mmap use the mmap system call to memory mapped file or device.
// reference badger mmap_windows mmap impl
func Mmap(fd *os.File, offset int64, length int, writable bool) ([]byte, error) {
protect := windows.PAGE_READONLY
access := windows.FILE_MAP_READ
if writable {
protect = windows.PAGE_READWRITE
access = windows.FILE_MAP_WRITE
}
fi, err := fd.Stat()
if err != nil {
return nil, err
}
// Truncate the file to the size of the mmap.
if fi.Size() < length {
if err := fd.Truncate(length); err != nil {
return nil, err
}
}
// Open a file mapping handle.
sizelow := uint32(size >> 32)
sizehigh := uint32(size) & 0xffffffff
handle, err := windows.CreateFileMapping(windows.Handle(fd.Fd()), nil, uint32(protect), sizelow, sizehigh, nil)
if err != nil {
return nil, os.NewSyscallError("CreateFileMapping", errno)
}
// Create the memory map.
addr, err := windows.MapViewOfFile(handler, uint32(access), 0, 0, uintptr(length))
if addr == 0 {
return nil, os.NewSyscallError("MapViewOfFile", err)
}
// Slice memory layout
var sl = struct {
addr uintptr
len int
cap int
}{addr, int(length), int(length)}
// Use unsafe to turn sl into a []byte.
data := *(*[]byte)(unsafe.Pointer(&sl))
return data, nil
}
// Madvise do nothing on windows.
func Madvise(b []byte) error {
return nil
}
// Lock locks the maped slice, preventing it from being swapped out.
func Lock(b []byte) error {
err := windows.VirtualLock(uintptr(unsafe.Pointer(&b[0])), len(b))
return os.NewSyscallError("VirtualLock", err)
}
// Unlock unlocks the mapped slice, allowing it to swap out again.
func Unlock(b []byte) error {
err := windows.VirtualUnlock(uintptr(unsafe.Pointer(&b[0])), len(b))
return os.NewSyscallError("VirtualUnlock", err)
}
// Sync flushes mmap slice's all changes back to the device.
// Whether need to call FlushFileBuffers on windows?
func Sync(b []byte) error {
err := windows.FlushViewOfFile(uintptr(unsafe.Pointer(&b[0])), len(b))
return os.NewSyscallError("FlushViewOfFile", err)
}
// Munmap unmaps mapped slice, this will also flush any remaining changes.
func Munmap(b []byte) error {
if err := Sync(b); err != nil {
return err
}
err := windows.UnmapViewOfFile(uintptr(unsafe.Pointer(&b[0])))
return os.NewSyscallError("UnmapViewOfFile", err)
}
// WriteAtv simulate writeatv by calling writev serially and dose not change the file offset.
func (fi *FileIO) WriteAtv(bs [][]byte, off int64) (int, error) {
return genericWriteAtv(fi, bs, off)
}
// Append write data to the end of file.
func (fi *FileIO) Append(bs [][]byte) (int, error) {
return genericAppend(fi, bs)
}