2016-02-13 01:18:06 -08:00
|
|
|
package vain
|
|
|
|
|
|
|
|
import (
|
2016-02-14 22:19:41 -08:00
|
|
|
"encoding/json"
|
2016-02-15 01:10:14 -08:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2016-02-14 22:19:41 -08:00
|
|
|
"os"
|
2016-02-13 10:44:41 -08:00
|
|
|
"strings"
|
2016-02-13 01:18:06 -08:00
|
|
|
"sync"
|
|
|
|
)
|
|
|
|
|
2016-02-15 01:10:14 -08:00
|
|
|
// Valid checks that p will not confuse the go tool if added to packages.
|
2016-02-13 10:44:41 -08:00
|
|
|
func Valid(p string, packages []Package) bool {
|
|
|
|
for _, pkg := range packages {
|
2016-02-15 01:10:14 -08:00
|
|
|
if strings.HasPrefix(pkg.path, p) {
|
2016-02-13 10:44:41 -08:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2016-02-15 01:10:14 -08:00
|
|
|
// Storage is a shim to allow for alternate storage types.
|
|
|
|
type Storage interface {
|
|
|
|
Add(p Package) error
|
|
|
|
Remove(path string) error
|
|
|
|
All() []Package
|
|
|
|
}
|
|
|
|
|
|
|
|
// SimpleStore implements a simple json on-disk storage.
|
|
|
|
type SimpleStore struct {
|
2016-02-13 01:18:06 -08:00
|
|
|
l sync.RWMutex
|
|
|
|
p map[string]Package
|
2016-02-14 22:19:41 -08:00
|
|
|
|
|
|
|
dbl sync.Mutex
|
|
|
|
path string
|
2016-02-13 01:18:06 -08:00
|
|
|
}
|
|
|
|
|
2016-02-15 01:38:11 -08:00
|
|
|
// NewSimpleStore returns a ready-to-use SimpleStore storing json at path.
|
|
|
|
func NewSimpleStore(path string) *SimpleStore {
|
2016-02-15 01:10:14 -08:00
|
|
|
return &SimpleStore{
|
2016-02-14 22:19:41 -08:00
|
|
|
path: path,
|
|
|
|
p: make(map[string]Package),
|
2016-02-13 01:18:06 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-15 01:10:14 -08:00
|
|
|
// Add adds p to the SimpleStore.
|
|
|
|
func (ms *SimpleStore) Add(p Package) error {
|
2016-02-13 01:18:06 -08:00
|
|
|
ms.l.Lock()
|
2016-02-15 01:10:14 -08:00
|
|
|
ms.p[p.path] = p
|
2016-02-13 01:18:06 -08:00
|
|
|
ms.l.Unlock()
|
2016-02-15 01:10:14 -08:00
|
|
|
m := ""
|
|
|
|
if err := ms.Save(); err != nil {
|
|
|
|
m = fmt.Sprintf("unable to store db: %v", err)
|
|
|
|
if err := ms.Remove(p.path); err != nil {
|
|
|
|
m = fmt.Sprintf("%s\nto add insult to injury, could not delete package: %v\n", m, err)
|
|
|
|
}
|
|
|
|
return errors.New(m)
|
|
|
|
}
|
2016-02-13 01:18:06 -08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-02-15 01:10:14 -08:00
|
|
|
// Remove removes p from the SimpleStore.
|
|
|
|
func (ms *SimpleStore) Remove(path string) error {
|
2016-02-13 01:18:06 -08:00
|
|
|
ms.l.Lock()
|
|
|
|
delete(ms.p, path)
|
|
|
|
ms.l.Unlock()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-02-15 01:10:14 -08:00
|
|
|
// All returns all current packages.
|
|
|
|
func (ms *SimpleStore) All() []Package {
|
|
|
|
r := []Package{}
|
|
|
|
ms.l.RLock()
|
|
|
|
for _, p := range ms.p {
|
|
|
|
r = append(r, p)
|
|
|
|
}
|
|
|
|
ms.l.RUnlock()
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save writes the db to disk.
|
|
|
|
func (ms *SimpleStore) Save() error {
|
2016-02-14 22:19:41 -08:00
|
|
|
// running in-memory only
|
|
|
|
if ms.path == "" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
ms.dbl.Lock()
|
|
|
|
defer ms.dbl.Unlock()
|
|
|
|
f, err := os.Create(ms.path)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
return json.NewEncoder(f).Encode(ms.p)
|
|
|
|
}
|
|
|
|
|
2016-02-15 01:10:14 -08:00
|
|
|
// Load reads the db from disk and populates ms.
|
|
|
|
func (ms *SimpleStore) Load() error {
|
2016-02-14 22:19:41 -08:00
|
|
|
// running in-memory only
|
|
|
|
if ms.path == "" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
ms.dbl.Lock()
|
|
|
|
defer ms.dbl.Unlock()
|
|
|
|
f, err := os.Open(ms.path)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
2016-02-23 22:09:29 -08:00
|
|
|
|
|
|
|
in := map[string]Package{}
|
|
|
|
if err := json.NewDecoder(f).Decode(&in); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for k, v := range in {
|
|
|
|
v.path = k
|
|
|
|
ms.p[k] = v
|
|
|
|
}
|
|
|
|
return nil
|
2016-02-13 01:18:06 -08:00
|
|
|
}
|