-
Notifications
You must be signed in to change notification settings - Fork 44
/
cache.go
100 lines (85 loc) · 2.66 KB
/
cache.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
package desync
import (
"fmt"
"github.com/pkg/errors"
)
// Cache is used to connect a (typically remote) store with a local store which
// functions as disk cache. Any request to the cache for a chunk will first be
// routed to the local store, and if that fails to the slower remote store.
// Any chunks retrieved from the remote store will be stored in the local one.
type Cache struct {
s Store
l WriteStore
}
// NewCache returns a cache router that uses a local store as cache before
// accessing a (supposedly slower) remote one.
func NewCache(s Store, l WriteStore) Cache {
return Cache{s: s, l: l}
}
// GetChunk first asks the local store for the chunk and then the remote one.
// If we get a chunk from the remote, it's stored locally too.
func (c Cache) GetChunk(id ChunkID) (*Chunk, error) {
chunk, err := c.l.GetChunk(id)
switch err.(type) {
case nil:
return chunk, nil
case ChunkMissing:
default:
return chunk, err
}
// At this point we failed to find chunk in the local cache. Ask the remote
chunk, err = c.s.GetChunk(id)
if err != nil {
return chunk, err
}
// Got the chunk. Store it in the local cache for next time
if err = c.l.StoreChunk(chunk); err != nil {
return chunk, errors.Wrap(err, "failed to store in local cache")
}
return chunk, nil
}
// HasChunk first checks the cache for the chunk, then the store.
func (c Cache) HasChunk(id ChunkID) (bool, error) {
if hasChunk, err := c.l.HasChunk(id); err != nil || hasChunk {
return hasChunk, err
}
return c.s.HasChunk(id)
}
func (c Cache) String() string {
return fmt.Sprintf("store:%s with cache %s", c.s, c.l)
}
// Close the underlying writable chunk store
func (c Cache) Close() error {
c.l.Close()
return c.s.Close()
}
// New cache which GetChunk() function will return ChunkMissing error instead of ChunkInvalid
// so caller can redownload invalid chunk from store
type RepairableCache struct {
l WriteStore
}
// Create new RepairableCache that wraps WriteStore and modify its GetChunk() so ChunkInvalid error
// will be replaced by ChunkMissing error
func NewRepairableCache(l WriteStore) RepairableCache {
return RepairableCache{l: l}
}
func (r RepairableCache) GetChunk(id ChunkID) (*Chunk, error) {
chunk, err := r.l.GetChunk(id)
var chunkInvalidErr ChunkInvalid
if err != nil && errors.As(err, &chunkInvalidErr) {
return chunk, ChunkMissing{ID: chunkInvalidErr.ID}
}
return chunk, err
}
func (r RepairableCache) HasChunk(id ChunkID) (bool, error) {
return r.l.HasChunk(id)
}
func (r RepairableCache) Close() error {
return r.l.Close()
}
func (r RepairableCache) String() string {
return r.l.String()
}
func (r RepairableCache) StoreChunk(c *Chunk) error {
return r.l.StoreChunk(c)
}