-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsyscall.go
More file actions
88 lines (74 loc) · 2.07 KB
/
syscall.go
File metadata and controls
88 lines (74 loc) · 2.07 KB
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
// 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.
package ioengine
import (
"os"
"syscall"
)
// Single-word zero for use when we need a valid pointer to 0 bytes.
var zero uintptr
// simulate writeatv by calling writeat serially and dose not change the file offset.
func genericWriteAtv(fd File, bs [][]byte, off int64) (n int, err error) {
nOffset := off
nw := 0
for _, b := range bs {
nw, err = fd.WriteAt(b, nOffset)
n += nw
nOffset += int64(nw)
if err != nil {
break
}
}
return n, err
}
// simulate writev by calling write serially and it will change the file offset.
func genericWritev(fd File, bs [][]byte) (n int, err error) {
nw := 0
for _, b := range bs {
nw, err = fd.Write(b)
n += nw
if err != nil {
break
}
}
return n, err
}
func genericAppend(fd File, bs [][]byte) (int, error) {
opt := fd.Option()
// open file with O_APPEND not need to seek
if (opt.Flag & os.O_APPEND) > 0 {
return genericWritev(fd, bs)
}
// acquire file size to append write
size, err := fd.Seek(0, os.SEEK_END)
if err != nil {
return 0, err
}
// Because use writeAt to simulate an append write
// it doesn't change the file offset, to keep append semantic
// so that make sure file offset is the file end.
defer fd.Seek(0, os.SEEK_END)
return fd.WriteAtv(bs, size)
}
func bytes2Iovec(bs [][]byte) []syscall.Iovec {
var iovecs []syscall.Iovec
for _, chunk := range bs {
if len(chunk) == 0 {
continue
}
iovecs = append(iovecs, syscall.Iovec{Base: &chunk[0]})
iovecs[len(iovecs)-1].SetLen(len(chunk))
}
return iovecs
}