pkger/index.go

218 lines
3.6 KiB
Go
Raw Normal View History

2019-07-31 00:21:26 +03:00
package pkger
import (
2019-07-31 18:53:36 +03:00
"encoding/json"
2019-07-31 00:21:26 +03:00
"fmt"
"os"
"path/filepath"
"strings"
2019-08-02 07:22:17 +03:00
"sync"
2019-07-31 23:29:49 +03:00
"time"
2019-07-31 00:21:26 +03:00
"github.com/gobuffalo/here"
2019-08-02 22:14:11 +03:00
"github.com/markbates/hepa"
"github.com/markbates/hepa/filters"
2019-07-31 00:21:26 +03:00
)
type index struct {
2019-08-02 21:47:59 +03:00
Files *filesMap
2019-08-02 21:51:09 +03:00
Infos *infosMap
2019-08-02 07:22:17 +03:00
current here.Info
once sync.Once
}
func (i *index) Info(p string) (here.Info, error) {
2019-08-02 21:51:09 +03:00
info, ok := i.Infos.Load(p)
if ok {
2019-08-02 07:22:17 +03:00
return info, nil
}
info, err := here.Cache(p, here.Package)
if err != nil {
return info, err
}
2019-08-02 21:51:09 +03:00
i.Infos.Store(p, info)
2019-08-02 07:22:17 +03:00
return info, nil
}
func (i *index) Current() (here.Info, error) {
var err error
i.once.Do(func() {
i.current, err = here.Cache("", func(string) (here.Info, error) {
return here.Current()
})
})
return i.current, err
2019-07-31 00:21:26 +03:00
}
2019-08-02 05:34:32 +03:00
func (i *index) Create(pt Path) (*File, error) {
2019-08-02 06:21:37 +03:00
her, err := Info(pt.Pkg)
2019-07-31 23:29:49 +03:00
if err != nil {
return nil, err
}
f := &File{
2019-08-02 05:34:32 +03:00
path: pt,
her: her,
2019-07-31 23:29:49 +03:00
info: &FileInfo{
2019-08-02 00:35:42 +03:00
name: strings.TrimPrefix(pt.Name, "/"),
2019-07-31 23:29:49 +03:00
mode: 0666,
modTime: time.Now(),
},
}
2019-08-02 21:47:59 +03:00
i.Files.Store(pt, f)
2019-07-31 23:29:49 +03:00
return f, nil
}
2019-08-02 07:22:17 +03:00
func (i *index) MarshalJSON() ([]byte, error) {
2019-08-02 05:34:32 +03:00
m := map[string]interface{}{}
2019-07-31 18:53:36 +03:00
2019-08-03 00:37:27 +03:00
m["files"] = i.Files
2019-08-02 07:22:17 +03:00
m["infos"] = i.Infos
m["current"] = i.current
2019-07-31 18:53:36 +03:00
2019-08-02 22:14:11 +03:00
b, err := json.Marshal(m)
if err != nil {
return nil, err
}
hep := hepa.New()
hep = hepa.With(hep, filters.Golang())
hep = hepa.With(hep, filters.Secrets())
return hep.Filter(b)
2019-07-31 18:53:36 +03:00
}
2019-08-02 07:22:17 +03:00
func (i *index) UnmarshalJSON(b []byte) error {
2019-08-03 00:37:27 +03:00
m := map[string]json.RawMessage{}
if err := json.Unmarshal(b, &m); err != nil {
return err
}
infos, ok := m["infos"]
if !ok {
return fmt.Errorf("missing infos")
}
i.Infos = &infosMap{}
if err := json.Unmarshal(infos, i.Infos); err != nil {
return err
}
files, ok := m["files"]
if !ok {
return fmt.Errorf("missing files")
}
i.Files = &filesMap{}
if err := json.Unmarshal(files, i.Files); err != nil {
return err
}
current, ok := m["current"]
if !ok {
return fmt.Errorf("missing current")
}
if err := json.Unmarshal(current, &i.current); err != nil {
return err
}
2019-08-02 07:22:17 +03:00
return nil
}
2019-08-02 05:34:32 +03:00
func (i index) Walk(pt Path, wf WalkFunc) error {
2019-08-02 21:47:59 +03:00
var err error
i.Files.Range(func(k Path, v *File) bool {
if k.Pkg != pt.Pkg {
return true
2019-07-31 00:21:26 +03:00
}
2019-08-02 21:47:59 +03:00
if err = wf(k, v.info); err != nil {
return false
}
return true
})
if err != nil {
return err
2019-07-31 00:21:26 +03:00
}
var info here.Info
if pt.Pkg == "." {
2019-08-02 05:34:32 +03:00
info, err = Current()
2019-07-31 00:21:26 +03:00
if err != nil {
return err
}
pt.Pkg = info.ImportPath
}
2019-08-01 19:03:12 +03:00
2019-07-31 00:21:26 +03:00
if info.IsZero() {
2019-08-02 06:21:37 +03:00
info, err = Info(pt.Pkg)
2019-07-31 00:21:26 +03:00
if err != nil {
return fmt.Errorf("%s: %s", pt, err)
}
}
2019-08-01 19:03:12 +03:00
fp := filepath.Join(info.Dir, pt.Name)
err = filepath.Walk(fp, func(path string, fi os.FileInfo, err error) error {
2019-07-31 00:21:26 +03:00
if err != nil {
return err
}
path = strings.TrimPrefix(path, info.Dir)
2019-08-02 05:34:32 +03:00
pt, err := Parse(fmt.Sprintf("%s:%s", pt.Pkg, path))
2019-07-31 00:21:26 +03:00
if err != nil {
return err
}
2019-08-01 19:03:12 +03:00
return wf(pt, NewFileInfo(fi))
2019-07-31 00:21:26 +03:00
})
return err
}
2019-08-02 05:34:32 +03:00
func (i *index) Open(pt Path) (*File, error) {
2019-08-02 21:47:59 +03:00
f, ok := i.Files.Load(pt)
2019-07-31 00:21:26 +03:00
if !ok {
return i.openDisk(pt)
}
2019-08-02 06:21:37 +03:00
nf := &File{
2019-08-02 05:34:32 +03:00
info: f.info,
path: f.path,
data: f.data,
her: f.her,
2019-08-02 06:21:37 +03:00
}
return nf, nil
2019-07-31 00:21:26 +03:00
}
2019-08-02 05:34:32 +03:00
func (i index) openDisk(pt Path) (*File, error) {
2019-08-02 06:21:37 +03:00
info, err := Info(pt.Pkg)
2019-07-31 00:21:26 +03:00
if err != nil {
return nil, err
}
fp := info.Dir
if len(pt.Name) > 0 {
fp = filepath.Join(fp, pt.Name)
}
fi, err := os.Stat(fp)
if err != nil {
return nil, err
}
f := &File{
2019-08-02 00:35:42 +03:00
info: WithName(strings.TrimPrefix(pt.Name, "/"), NewFileInfo(fi)),
2019-07-31 00:21:26 +03:00
her: info,
path: pt,
}
return f, nil
}
2019-07-31 23:29:49 +03:00
func newIndex() *index {
return &index{
2019-08-02 21:47:59 +03:00
Files: &filesMap{},
2019-08-02 21:51:09 +03:00
Infos: &infosMap{},
2019-07-31 23:29:49 +03:00
}
2019-07-31 00:21:26 +03:00
}
2019-07-31 23:29:49 +03:00
2019-08-02 05:34:32 +03:00
var rootIndex = func() *index {
i := newIndex()
return i
}()