-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstore.go
156 lines (124 loc) · 3.03 KB
/
store.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
package main
import (
"bytes"
"crypto/sha1"
"encoding/hex"
"errors"
"fmt"
"io"
"log"
"os"
"strings"
)
func CASPathTransformFunc(key string) PathKey {
hash := sha1.Sum([]byte(key))
hashStr := hex.EncodeToString(hash[:])
dataBlockSize := 5
sliceLen := len(hashStr) / dataBlockSize
paths := make([]string, sliceLen)
for i := 0; i < sliceLen; i++ {
from, to := i*dataBlockSize, i*dataBlockSize+dataBlockSize
paths[i] = hashStr[from:to]
}
return PathKey{
pathName: strings.Join(paths, "/"),
FileName: hashStr,
}
}
const defaultRootFolderName = "novastore"
type PathTransformFunc func(string) PathKey
type PathKey struct {
pathName string
FileName string
}
func (p PathKey) FullPath() string {
return fmt.Sprintf("%s/%s", p.pathName, p.FileName)
}
func (p PathKey) FirstPathName() string {
paths := strings.Split(p.pathName, "/")
if len(paths) == 0 {
return ""
}
return paths[0]
}
type StoreOpts struct {
// Root is the topmost folder containing all files/folders
Root string
PathTransformFunc PathTransformFunc
}
var DefaultPathTransformFunc = func(key string) PathKey {
return PathKey{
pathName: key,
FileName: key,
}
}
type Store struct {
StoreOpts
}
func NewStore(opts StoreOpts) *Store {
if opts.PathTransformFunc == nil {
opts.PathTransformFunc = DefaultPathTransformFunc
}
if len(opts.Root) == 0 {
opts.Root = defaultRootFolderName
}
return &Store{
StoreOpts: opts,
}
}
func (s *Store) Has(key string) bool {
pathKey := s.PathTransformFunc(key)
fullFilePathWithRoot := fmt.Sprintf("%s/%s", s.Root, pathKey.FullPath())
_, err := os.Stat(fullFilePathWithRoot)
if errors.Is(err, os.ErrNotExist) {
return false
}
return true
}
func (s *Store) Clear() error {
return os.RemoveAll(s.Root)
}
func (s *Store) Delete(key string) error {
pathKey := s.PathTransformFunc(key)
firstPathNameWithRoot := fmt.Sprintf("%s/%s", s.Root, pathKey.FirstPathName())
defer func() {
log.Printf("Deleted file: [%s] from disk", s.Root+"/"+pathKey.FullPath())
}()
return os.RemoveAll(firstPathNameWithRoot)
}
func (s *Store) Write(key string, r io.Reader) (int64, error) {
return s.streamWrite(key, r)
}
func (s *Store) Read(key string) (io.Reader, error) {
f, err := s.readStream(key)
if err != nil {
return nil, err
}
defer f.Close()
buf := new(bytes.Buffer)
_, err = io.Copy(buf, f)
return buf, err
}
func (s *Store) readStream(key string) (io.ReadCloser, error) {
pathKey := s.PathTransformFunc(key)
fullPathWithRoot := fmt.Sprintf("%s/%s", s.Root, pathKey.FullPath())
return os.Open(fullPathWithRoot)
}
func (s *Store) streamWrite(key string, r io.Reader) (int64, error) {
pathKey := s.PathTransformFunc(key)
pathNameWithRoot := fmt.Sprintf("%s/%s", s.Root, pathKey.pathName)
err := os.MkdirAll(pathNameWithRoot, os.ModePerm)
if err != nil {
return 0, err
}
fullFilePathWithRoot := fmt.Sprintf("%s/%s", s.Root, pathKey.FullPath())
f, err := os.Create(fullFilePathWithRoot)
if err != nil {
return 0, err
}
n, err := io.Copy(f, r)
if err != nil {
return 0, err
}
return n, nil
}