forked from folbricht/desync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
localindex.go
70 lines (61 loc) · 1.68 KB
/
localindex.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
65
66
67
68
69
70
package desync
import (
"fmt"
"io"
"os"
"strings"
"github.com/pkg/errors"
)
// LocalIndexStore is used to read/write index files on local disk
type LocalIndexStore struct {
Path string
}
// NewLocalIndexStore creates an instance of a local castore, it only checks presence
// of the store
func NewLocalIndexStore(path string) (LocalIndexStore, error) {
info, err := os.Stat(path)
if err != nil {
return LocalIndexStore{}, err
}
if !info.IsDir() {
return LocalIndexStore{}, fmt.Errorf("%s is not a directory", path)
}
if !strings.HasSuffix(path, "/") {
path = path + "/"
}
return LocalIndexStore{Path: path}, nil
}
// GetIndexReader returns a reader of an index file in the store or an error if
// the specified index file does not exist.
func (s LocalIndexStore) GetIndexReader(name string) (rdr io.ReadCloser, e error) {
return os.Open(s.Path + name)
}
// GetIndex returns an Index structure from the store
func (s LocalIndexStore) GetIndex(name string) (i Index, e error) {
f, err := s.GetIndexReader(name)
if err != nil {
return i, err
}
defer f.Close()
idx, err := IndexFromReader(f)
if os.IsNotExist(err) {
err = errors.Errorf("Index file does not exist: %v", err)
}
return idx, err
}
// StoreIndex stores an index in the index store with the given name.
func (s LocalIndexStore) StoreIndex(name string, idx Index) error {
// Write the index to file
i, err := os.Create(s.Path + name)
if err != nil {
return err
}
defer i.Close()
_, err = idx.WriteTo(i)
return err
}
func (s LocalIndexStore) String() string {
return s.Path
}
// Close the index store. NOP operation, needed to implement IndexStore interface
func (s LocalIndexStore) Close() error { return nil }