forked from keybase/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
disk_block_cache_service.go
189 lines (174 loc) · 5.47 KB
/
disk_block_cache_service.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
// Copyright 2017 Keybase Inc. All rights reserved.
// Use of this source code is governed by a BSD
// license that can be found in the LICENSE file.
package libkbfs
import (
"context"
"github.com/keybase/client/go/kbfs/kbfsblock"
"github.com/keybase/client/go/kbfs/kbfscrypto"
"github.com/keybase/client/go/kbfs/tlf"
kbgitkbfs "github.com/keybase/client/go/protocol/kbgitkbfs1"
)
type diskBlockCacheServiceConfig interface {
diskBlockCacheGetter
syncedTlfGetterSetter
}
// DiskBlockCacheService delegates requests for blocks to this KBFS
// instance's disk cache.
type DiskBlockCacheService struct {
config diskBlockCacheServiceConfig
}
var _ kbgitkbfs.DiskBlockCacheInterface = (*DiskBlockCacheService)(nil)
// NewDiskBlockCacheService creates a new DiskBlockCacheService.
func NewDiskBlockCacheService(config diskBlockCacheServiceConfig) *DiskBlockCacheService {
return &DiskBlockCacheService{
config: config,
}
}
// GetBlock implements the DiskBlockCacheInterface interface for
// DiskBlockCacheService.
func (cache *DiskBlockCacheService) GetBlock(ctx context.Context,
arg kbgitkbfs.GetBlockArg) (kbgitkbfs.GetBlockRes, error) {
// TODO: make sure this isn't remote.
dbc := cache.config.DiskBlockCache()
if dbc == nil {
return kbgitkbfs.GetBlockRes{},
DiskBlockCacheError{"Disk cache is nil"}
}
tlfID := tlf.ID{}
err := tlfID.UnmarshalBinary(arg.TlfID)
if err != nil {
return kbgitkbfs.GetBlockRes{}, newDiskBlockCacheError(err)
}
blockID := kbfsblock.ID{}
err = blockID.UnmarshalBinary(arg.BlockID)
if err != nil {
return kbgitkbfs.GetBlockRes{}, newDiskBlockCacheError(err)
}
buf, serverHalf, prefetchStatus, err := dbc.Get(
ctx, tlfID, blockID, DiskBlockAnyCache)
if err != nil {
return kbgitkbfs.GetBlockRes{}, newDiskBlockCacheError(err)
}
protocolPrefetchStatus := prefetchStatus.ToProtocol()
return kbgitkbfs.GetBlockRes{
Buf: buf,
ServerHalf: serverHalf.Bytes(),
PrefetchStatus: protocolPrefetchStatus,
}, nil
}
// GetPrefetchStatus implements the DiskBlockCacheInterface interface
// for DiskBlockCacheService.
func (cache *DiskBlockCacheService) GetPrefetchStatus(
ctx context.Context, arg kbgitkbfs.GetPrefetchStatusArg) (
prefetchStatus kbgitkbfs.PrefetchStatus, err error) {
dbc := cache.config.DiskBlockCache()
if dbc == nil {
return NoPrefetch.ToProtocol(), DiskBlockCacheError{"Disk cache is nil"}
}
tlfID := tlf.ID{}
err = tlfID.UnmarshalBinary(arg.TlfID)
if err != nil {
return NoPrefetch.ToProtocol(), newDiskBlockCacheError(err)
}
blockID := kbfsblock.ID{}
err = blockID.UnmarshalBinary(arg.BlockID)
if err != nil {
return NoPrefetch.ToProtocol(), newDiskBlockCacheError(err)
}
cacheType := DiskBlockAnyCache
if cache.config.IsSyncedTlf(tlfID) {
cacheType = DiskBlockSyncCache
}
dbStatus, err := dbc.GetPrefetchStatus(ctx, tlfID, blockID, cacheType)
if err != nil {
return NoPrefetch.ToProtocol(), newDiskBlockCacheError(err)
}
return dbStatus.ToProtocol(), nil
}
// PutBlock implements the DiskBlockCacheInterface interface for
// DiskBlockCacheService.
func (cache *DiskBlockCacheService) PutBlock(ctx context.Context,
arg kbgitkbfs.PutBlockArg) error {
dbc := cache.config.DiskBlockCache()
if dbc == nil {
return DiskBlockCacheError{"Disk cache is nil"}
}
tlfID := tlf.ID{}
err := tlfID.UnmarshalBinary(arg.TlfID)
if err != nil {
return newDiskBlockCacheError(err)
}
blockID := kbfsblock.ID{}
err = blockID.UnmarshalBinary(arg.BlockID)
if err != nil {
return newDiskBlockCacheError(err)
}
serverHalf := kbfscrypto.BlockCryptKeyServerHalf{}
err = serverHalf.UnmarshalBinary(arg.ServerHalf)
if err != nil {
return newDiskBlockCacheError(err)
}
cacheType := DiskBlockAnyCache
if cache.config.IsSyncedTlf(tlfID) {
cacheType = DiskBlockSyncCache
}
err = dbc.Put(ctx, tlfID, blockID, arg.Buf, serverHalf, cacheType)
if err != nil {
return newDiskBlockCacheError(err)
}
return nil
}
// DeleteBlocks implements the DiskBlockCacheInterface interface for
// DiskBlockCacheService.
func (cache *DiskBlockCacheService) DeleteBlocks(ctx context.Context,
blockIDs [][]byte) (kbgitkbfs.DeleteBlocksRes, error) {
dbc := cache.config.DiskBlockCache()
if dbc == nil {
return kbgitkbfs.DeleteBlocksRes{},
DiskBlockCacheError{"Disk cache is nil"}
}
blocks := make([]kbfsblock.ID, 0, len(blockIDs))
for _, b := range blockIDs {
blockID := kbfsblock.ID{}
err := blockID.UnmarshalBinary(b)
if err != nil {
return kbgitkbfs.DeleteBlocksRes{}, newDiskBlockCacheError(err)
}
blocks = append(blocks, blockID)
}
numRemoved, sizeRemoved, err := dbc.Delete(ctx, blocks, DiskBlockAnyCache)
if err != nil {
return kbgitkbfs.DeleteBlocksRes{}, newDiskBlockCacheError(err)
}
return kbgitkbfs.DeleteBlocksRes{
NumRemoved: numRemoved,
SizeRemoved: sizeRemoved,
}, nil
}
// UpdateBlockMetadata implements the DiskBlockCacheInterface interface for
// DiskBlockCacheService.
func (cache *DiskBlockCacheService) UpdateBlockMetadata(ctx context.Context,
arg kbgitkbfs.UpdateBlockMetadataArg) error {
dbc := cache.config.DiskBlockCache()
if dbc == nil {
return DiskBlockCacheError{"Disk cache is nil"}
}
tlfID := tlf.ID{}
err := tlfID.UnmarshalBinary(arg.TlfID)
if err != nil {
return newDiskBlockCacheError(err)
}
blockID := kbfsblock.ID{}
err = blockID.UnmarshalBinary(arg.BlockID)
if err != nil {
return newDiskBlockCacheError(err)
}
err = dbc.UpdateMetadata(
ctx, tlfID, blockID, PrefetchStatus(arg.PrefetchStatus),
DiskBlockAnyCache)
if err != nil {
return newDiskBlockCacheError(err)
}
return nil
}