-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdio_darwin.go
56 lines (47 loc) · 1.52 KB
/
dio_darwin.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
// Copyright 2019 shimingyah.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// ee the License for the specific language governing permissions and
// limitations under the License.
// +build darwin
package ioengine
import (
"os"
"syscall"
)
const (
// AlignSize OSX doesn't need any alignment
AlignSize = 0
// BlockSize direct IO minimum number of bytes to write
BlockSize = 4096
)
// OpenFileWithDIO open files with no cache on darwin.
func OpenFileWithDIO(name string, flag int, perm os.FileMode) (*os.File, error) {
fd, err := os.OpenFile(name, flag, perm)
if err != nil {
return nil, err
}
// set no cache
_, _, er := syscall.Syscall(syscall.SYS_FCNTL, uintptr(fd.Fd()), syscall.F_NOCACHE, 1)
if er != 0 {
fd.Close()
return nil, os.NewSyscallError("Fcntl:NoCache", er)
}
return fd, nil
}
// WriteAtv simulate writeatv by calling writev serially and dose not change the file offset.
func (dio *DirectIO) WriteAtv(bs [][]byte, off int64) (int, error) {
return genericWriteAtv(dio, bs, off)
}
// Append write data to the end of file.
func (dio *DirectIO) Append(bs [][]byte) (int, error) {
return genericAppend(dio, bs)
}