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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
|
package fastwalk_test
import (
"fmt"
"io/fs"
"os"
"path/filepath"
"strings"
"github.com/charlievieth/fastwalk"
)
func CreateFiles(files map[string]string) (root string, cleanup func()) {
tempdir, err := os.MkdirTemp("", "fastwalk-example-*")
if err != nil {
panic(err)
}
symlinks := map[string]string{}
for path, contents := range files {
file := filepath.Join(tempdir, "/src", path)
if err := os.MkdirAll(filepath.Dir(file), 0755); err != nil {
panic(err)
}
if strings.HasPrefix(contents, "LINK:") {
symlinks[file] = filepath.FromSlash(strings.TrimPrefix(contents, "LINK:"))
continue
}
if err := os.WriteFile(file, []byte(contents), 0644); err != nil {
panic(err)
}
}
// Create symlinks after all other files. Otherwise, directory symlinks on
// Windows are unusable (see https://golang.org/issue/39183).
for file, dst := range symlinks {
if err := os.Symlink(dst, file); err != nil {
panic(err)
}
}
return filepath.Join(tempdir, "src") + "/", func() { os.RemoveAll(tempdir) }
}
func PrettyPrintEntry(root, path string, de fs.DirEntry) {
rel, err := filepath.Rel(root, path)
if err != nil {
panic(err)
}
rel = filepath.ToSlash(rel)
if de.Type()&fs.ModeSymlink != 0 {
dst, err := os.Readlink(path)
if err != nil {
panic(err)
}
fmt.Printf("%s: %s -> %s\n", de.Type(), rel, filepath.ToSlash(dst))
} else {
fmt.Printf("%s: %s\n", de.Type(), rel)
}
}
// This example shows how the [fastwalk.Config] Follow field can be used to
// efficiently and safely follow symlinks. The below example contains a symlink
// loop ("bar/symloop"), which fastwalk detects and does not follow.
//
// NOTE: We still call the [fs.WalkDirFunc] on the symlink that creates a loop,
// but we do not follow/traverse it.
func ExampleWalk_follow() {
// Setup
root, cleanup := CreateFiles(map[string]string{
"bar/bar.go": "one",
"bar/symlink": "LINK:bar.go",
"foo/foo.go": "two",
"foo/symdir": "LINK:../bar/",
"foo/broken": "LINK:nope.txt", // Broken symlink
"foo/foo": "LINK:../foo/", // Symlink loop
})
defer cleanup()
conf := fastwalk.Config{
Follow: true,
}
err := fastwalk.Walk(&conf, root, func(path string, de fs.DirEntry, err error) error {
if err != nil {
return err
}
PrettyPrintEntry(root, path, de)
return nil
})
if err != nil {
panic(err)
}
// Unordered output:
// d---------: .
// d---------: bar
// ----------: bar/bar.go
// L---------: bar/symlink -> bar.go
// d---------: foo
// L---------: foo/broken -> nope.txt
// ----------: foo/foo.go
// L---------: foo/foo -> ../foo/
// L---------: foo/symdir -> ../bar/
// L---------: foo/symdir/symlink -> bar.go
// ----------: foo/symdir/bar.go
}
func ExampleWalk() {
root, cleanup := CreateFiles(map[string]string{
"bar/b.txt": "",
"foo/f.txt": "",
// Since Config.Follow is set to false, the symbolic link "link" will
// be visited, but we will not traverse into it (since our walk func
// does not return [fastwalk.ErrTraverseLink]).
"link": "LINK:bar",
})
defer cleanup()
err := fastwalk.Walk(nil, root, func(path string, de fs.DirEntry, err error) error {
if err != nil {
return err
}
PrettyPrintEntry(root, path, de)
return nil
})
if err != nil {
panic(err)
}
// Unordered output:
// d---------: .
// d---------: bar
// d---------: foo
// L---------: link -> bar
// ----------: bar/b.txt
// ----------: foo/f.txt
}
func ExampleWalk_traverseLink() {
root, cleanup := CreateFiles(map[string]string{
"bar/b.txt": "",
"foo/f.txt": "",
// This link is followed since our walk func returns ErrTraverseLink
// when a symlink that resolves to a directory is encountered.
"link": "LINK:bar",
})
defer cleanup()
err := fastwalk.Walk(nil, root, func(path string, de fs.DirEntry, err error) error {
if err != nil {
return err
}
PrettyPrintEntry(root, path, de)
// It is strongly recommended to use fastwalk.Config.Follow instead
// of manually handling link traversal since this will fail if the
// link points to a file (and not a directory).
if de.Type()&fs.ModeSymlink != 0 {
fi, err := fastwalk.StatDirEntry(path, de)
if err != nil {
return err
}
if fi.IsDir() {
return fastwalk.ErrTraverseLink
}
}
return nil
})
if err != nil {
panic(err)
}
// Unordered output:
// d---------: .
// d---------: bar
// d---------: foo
// L---------: link -> bar
// ----------: bar/b.txt
// ----------: foo/f.txt
// ----------: link/b.txt
}
|