-
Notifications
You must be signed in to change notification settings - Fork 146
/
fs_embed.go
64 lines (50 loc) · 1.09 KB
/
fs_embed.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
//go:build go1.16
// +build go1.16
package render
import (
"embed"
"io"
"io/fs"
"path/filepath"
)
// EmbedFileSystem implements FileSystem on top of an embed.FS.
type EmbedFileSystem struct {
embed.FS
}
var _ FileSystem = &EmbedFileSystem{}
func (e *EmbedFileSystem) Walk(root string, walkFn filepath.WalkFunc) error {
return fs.WalkDir(e.FS, root, func(path string, d fs.DirEntry, _ error) error {
if d == nil {
return nil
}
info, err := d.Info()
if err != nil {
return err
}
return walkFn(path, info, err)
})
}
type tmplFS struct {
fs.FS
}
func (tfs tmplFS) Walk(root string, walkFn filepath.WalkFunc) error {
return fs.WalkDir(tfs, root, func(path string, d fs.DirEntry, err error) error {
if err != nil {
return err
}
info, err := d.Info()
return walkFn(path, info, err)
})
}
func (tfs tmplFS) ReadFile(filename string) ([]byte, error) {
f, err := tfs.Open(filename)
if err != nil {
return nil, err
}
defer f.Close()
return io.ReadAll(f)
}
// FS converts io/fs.FS to FileSystem.
func FS(oriFS fs.FS) FileSystem { //nolint:ireturn
return tmplFS{oriFS}
}