-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile.go
105 lines (83 loc) · 1.53 KB
/
file.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
104
105
package memfs
import (
"fmt"
"io"
"os"
"time"
)
// File implements the http.File interface
type File struct {
name string
path string
at int64
bytes []byte
children []*File
modified time.Time
cbs map[string]func(path string)
}
func (f *File) cb(fn string) {
if f.cbs == nil {
return
}
cb := f.cbs[fn]
if cb != nil {
cb(f.path)
}
}
func (f *File) Close() error {
defer f.cb("Close")
return nil
}
func (f *File) Stat() (os.FileInfo, error) {
defer f.cb("Stat")
return &FileInfo{f}, nil
}
func (f *File) Readdir(count int) ([]os.FileInfo, error) {
defer f.cb("Readdir")
if f.bytes != nil {
return nil, fmt.Errorf("reading dir on a regular file %v", f.name)
}
fis := []os.FileInfo{}
for _, file := range f.children {
fi, err := file.Stat()
if err != nil {
return nil, err
}
fis = append(fis, fi)
if count > 0 && len(fis) >= count {
return fis, nil
}
}
return fis, nil
}
func (f *File) Read(b []byte) (int, error) {
defer f.cb("Read")
if f.bytes == nil {
return 0, fmt.Errorf("reading data on a dir %v", f.name)
}
cnt := 0
for f.at < int64(len(f.bytes)) && cnt < len(b) {
b[cnt] = f.bytes[f.at]
cnt++
f.at++
}
if cnt == 0 {
return 0, io.EOF
}
return cnt, nil
}
func (f *File) Seek(offset int64, whence int) (int64, error) {
defer f.cb("Seek")
if f.bytes == nil {
return 0, fmt.Errorf("seeking on a dir %v", f.name)
}
switch whence {
case 0:
f.at = offset
case 1:
f.at += offset
case 2:
f.at = int64(len(f.bytes)) + offset
}
return f.at, nil
}