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
|
package registrytest
import (
"bytes"
"io"
"os"
"path"
"time"
"golang.org/x/tools/txtar"
)
// txtarFileIO implements mod/zip.FileIO[txtar.File].
type txtarFileIO struct{}
func (txtarFileIO) Path(f txtar.File) string {
return f.Name
}
func (txtarFileIO) Lstat(f txtar.File) (os.FileInfo, error) {
return txtarFileInfo{f}, nil
}
func (txtarFileIO) Open(f txtar.File) (io.ReadCloser, error) {
return io.NopCloser(bytes.NewReader(f.Data)), nil
}
func (txtarFileIO) Mode() os.FileMode {
return 0o444
}
type txtarFileInfo struct {
f txtar.File
}
func (fi txtarFileInfo) Name() string {
return path.Base(fi.f.Name)
}
func (fi txtarFileInfo) Size() int64 {
return int64(len(fi.f.Data))
}
func (fi txtarFileInfo) Mode() os.FileMode {
return 0o644
}
func (fi txtarFileInfo) ModTime() time.Time { return time.Time{} }
func (fi txtarFileInfo) IsDir() bool { return false }
func (fi txtarFileInfo) Sys() interface{} { return nil }
|