-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathfastwalk_portable.go
67 lines (61 loc) · 1.38 KB
/
fastwalk_portable.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
//go:build !darwin && !(aix || dragonfly || freebsd || (js && wasm) || linux || netbsd || openbsd || solaris)
package fastwalk
import (
"os"
)
// readDir calls fn for each directory entry in dirName.
// It does not descend into directories or follow symlinks.
// If fn returns a non-nil error, readDir returns with that error
// immediately.
func (w *walker) readDir(dirName string) error {
f, err := os.Open(dirName)
if err != nil {
return err
}
des, readErr := f.ReadDir(-1)
f.Close()
if readErr != nil && len(des) == 0 {
return readErr
}
var p *[]DirEntry
if w.sortMode != SortNone {
p = direntSlicePool.Get().(*[]DirEntry)
}
defer putDirentSlice(p)
var skipFiles bool
for _, d := range des {
if skipFiles && d.Type().IsRegular() {
continue
}
// Need to use FileMode.Type().Type() for fs.DirEntry
e := newDirEntry(dirName, d)
if w.sortMode == SortNone {
if err := w.onDirEnt(dirName, d.Name(), e); err != nil {
if err != ErrSkipFiles {
return err
}
skipFiles = true
}
} else {
*p = append(*p, e)
}
}
if w.sortMode == SortNone {
return readErr
}
dents := *p
sortDirents(w.sortMode, dents)
for _, d := range dents {
d := d
if skipFiles && d.Type().IsRegular() {
continue
}
if err := w.onDirEnt(dirName, d.Name(), d); err != nil {
if err != ErrSkipFiles {
return err
}
skipFiles = true
}
}
return readErr
}