release me

This commit is contained in:
Mark Bates 2019-09-21 17:52:07 -04:00
parent 158a7644ca
commit 53e641aa95
2 changed files with 17 additions and 30 deletions

View File

@ -1,8 +1,6 @@
package pkger
import (
"fmt"
"log"
"os"
"path/filepath"
@ -11,75 +9,61 @@ import (
"github.com/markbates/pkger/pkging/stdos"
)
var disk = func() pkging.Pkger {
n, err := stdos.New()
if err != nil {
log.Println(err)
}
return n
var _ = func() error {
return Apply(stdos.New())
}()
func impl() pkging.Pkger {
gil.RLock()
defer gil.RUnlock()
if current == nil {
return disk
}
fmt.Printf("!> using %s\n", current)
return current
}
func Parse(p string) (pkging.Path, error) {
return impl().Parse(p)
return current.Parse(p)
}
func Abs(p string) (string, error) {
return impl().Abs(p)
return current.Abs(p)
}
func AbsPath(p pkging.Path) (string, error) {
return impl().AbsPath(p)
return current.AbsPath(p)
}
func Current() (here.Info, error) {
return impl().Current()
return current.Current()
}
func Info(p string) (here.Info, error) {
return impl().Info(p)
return current.Info(p)
}
// Create creates the named file with mode 0666 (before umask) - It's actually 0644, truncating it if it already exists. If successful, methods on the returned File can be used for I/O; the associated file descriptor has mode O_RDWR.
func Create(p string) (pkging.File, error) {
return impl().Create(p)
return current.Create(p)
}
// MkdirAll creates a directory named path, along with any necessary parents, and returns nil, or else returns an error. The permission bits perm (before umask) are used for all directories that MkdirAll creates. If path is already a directory, MkdirAll does nothing and returns nil.
func MkdirAll(p string, perm os.FileMode) error {
return impl().MkdirAll(p, perm)
return current.MkdirAll(p, perm)
}
// Open opens the named file for reading. If successful, methods on the returned file can be used for reading; the associated file descriptor has mode O_RDONLY.
func Open(p string) (pkging.File, error) {
return impl().Open(p)
return current.Open(p)
}
// Stat returns a FileInfo describing the named file.
func Stat(name string) (os.FileInfo, error) {
return impl().Stat(name)
return current.Stat(name)
}
// Walk walks the file tree rooted at root, calling walkFn for each file or directory in the tree, including root. All errors that arise visiting files and directories are filtered by walkFn. The files are walked in lexical order, which makes the output deterministic but means that for very large directories Walk can be inefficient. Walk does not follow symbolic links. - That is from the standard library. I know. Their grammar teachers can not be happy with them right now.
func Walk(p string, wf filepath.WalkFunc) error {
return impl().Walk(p, wf)
return current.Walk(p, wf)
}
// Remove removes the named file or (empty) directory.
func Remove(name string) error {
return impl().Remove(name)
return current.Remove(name)
}
// RemoveAll removes path and any children it contains. It removes everything it can but returns the first error it encounters. If the path does not exist, RemoveAll returns nil (no error).
func RemoveAll(name string) error {
return impl().RemoveAll(name)
return current.RemoveAll(name)
}

View File

@ -2,6 +2,7 @@ package pkgutil
import (
"encoding/json"
"fmt"
"io"
"os"
@ -11,9 +12,11 @@ import (
func Dump(w io.Writer, pkg pkging.Pkger) error {
d := struct {
Type string
Info here.Info
Paths map[string]os.FileInfo
}{
Type: fmt.Sprintf("%T", pkg),
Paths: map[string]os.FileInfo{},
}