This repository has been archived by the owner on Sep 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 172
/
storage.go
278 lines (228 loc) · 5.8 KB
/
storage.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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
package torus
import (
"encoding/binary"
"errors"
"fmt"
"golang.org/x/net/context"
"github.com/coreos/pkg/capnslog"
"github.com/coreos/torus/models"
"github.com/lpabon/godbc"
)
var BlockLog = capnslog.NewPackageLogger("github.com/coreos/torus", "blocklog")
type (
// VolumeID represents a unique identifier for a Volume.
VolumeID uint64
// IndexID represents a unique identifier for an Index.
IndexID uint64
// INodeID represents a unique identifier for an INode.
INodeID uint64
BlockType uint16
)
const (
TypeBlock BlockType = iota
TypeINode
)
const (
VolumeMax = 0x000000FFFFFFFFFF
)
// Store is the interface that represents methods that should be common across
// all types of storage providers.
type Store interface {
Kind() string
Flush() error
Close() error
}
// INodeRef is a reference to a unique INode in the cluster.
type INodeRef struct {
volume VolumeID
INode INodeID
}
func (i INodeRef) Equals(x INodeRef) bool {
return (i.volume == x.volume) && (i.INode == x.INode)
}
func (i INodeRef) Volume() VolumeID {
return i.volume & VolumeMax
}
func (v VolumeID) ToBytes() []byte {
buf := make([]byte, 8)
order := binary.LittleEndian
order.PutUint64(buf, uint64(v))
return buf[:VolumeIDByteSize]
}
func (i INodeRef) String() string {
return fmt.Sprintf("vol: %d, inode: %d", i.Volume(), i.INode)
}
func (i INodeRef) ToProto() *models.INodeRef {
return &models.INodeRef{
Volume: uint64(i.volume),
INode: uint64(i.INode),
}
}
func NewINodeRef(vol VolumeID, i INodeID) INodeRef {
godbc.Require(vol < VolumeMax, vol)
return INodeRef{
volume: vol & VolumeMax,
INode: i,
}
}
const VolumeIDByteSize = 5
const INodeRefByteSize = 8 * 2
func (i INodeRef) ToBytes() []byte {
buf := make([]byte, INodeRefByteSize)
order := binary.LittleEndian
order.PutUint64(buf[0:8], uint64(i.volume))
order.PutUint64(buf[8:16], uint64(i.INode))
return buf
}
func INodeRefFromBytes(b []byte) INodeRef {
order := binary.LittleEndian
return INodeRef{
volume: VolumeID(order.Uint64(b[0:8])),
INode: INodeID(order.Uint64(b[8:16])),
}
}
// BlockRef is the identifier for a unique block in the cluster.
type BlockRef struct {
INodeRef
Index IndexID
}
const BlockRefByteSize = 8 * 3
func (b BlockRef) ToBytes() []byte {
buf := make([]byte, BlockRefByteSize)
b.ToBytesBuf(buf)
return buf
}
func (b BlockRef) ToBytesBuf(buf []byte) {
order := binary.LittleEndian
order.PutUint64(buf[0:8], uint64(b.volume))
order.PutUint64(buf[8:16], uint64(b.INode))
order.PutUint64(buf[16:24], uint64(b.Index))
}
func BlockRefFromBytes(b []byte) BlockRef {
order := binary.LittleEndian
ref := BlockRef{
INodeRef: INodeRef{
volume: VolumeID(order.Uint64(b[0:8])),
INode: INodeID(order.Uint64(b[8:16])),
},
Index: IndexID(order.Uint64(b[16:24])),
}
return ref
}
func (b BlockRef) String() string {
return fmt.Sprintf("br %x : %x : %x", b.volume, b.INode, b.Index)
}
func (b BlockRef) ToProto() *models.BlockRef {
return &models.BlockRef{
Volume: uint64(b.volume),
INode: uint64(b.INode),
Block: uint64(b.Index),
}
}
func BlockFromProto(p *models.BlockRef) BlockRef {
return BlockRef{
INodeRef: INodeRef{
volume: VolumeID(p.Volume),
INode: INodeID(p.INode),
},
Index: IndexID(p.Block),
}
}
func INodeFromProto(p *models.INodeRef) INodeRef {
return INodeRef{
volume: VolumeID(p.Volume),
INode: INodeID(p.INode),
}
}
func (b BlockRef) HasINode(i INodeRef, t BlockType) bool {
return b.INode == i.INode && b.Volume() == i.Volume() && b.BlockType() == t
}
func (b BlockRef) BlockType() BlockType {
return BlockType((b.volume &^ VolumeMax) >> 40)
}
func (b *BlockRef) SetBlockType(t BlockType) {
b.volume = VolumeID(uint64(b.volume) | ((uint64(t) & 0xFFFFFF) << 40))
}
func (b BlockRef) IsZero() bool {
return b.Volume() == 0 && b.INode == 0 && b.Index == 0
}
func ZeroBlock() BlockRef {
return BlockRef{}
}
func ZeroINode() INodeRef {
return INodeRef{}
}
type ReadLevel int
type WriteLevel int
const (
WriteAll WriteLevel = iota
WriteOne
WriteLocal
)
func ParseWriteLevel(s string) (wl WriteLevel, err error) {
switch s {
case "all":
wl = WriteAll
case "one":
wl = WriteOne
case "local":
wl = WriteLocal
default:
err = errors.New("invalid writelevel; use one of 'one', 'all', or 'local'")
}
return
}
const (
ReadBlock ReadLevel = iota
ReadSequential
ReadSpread
)
func ParseReadLevel(s string) (rl ReadLevel, err error) {
switch s {
case "spread":
rl = ReadSpread
case "seq":
rl = ReadSequential
case "block":
rl = ReadBlock
default:
err = errors.New("invalid readlevel; use one of 'spread', 'seq', or 'block'")
}
return
}
// BlockStore is the interface representing the standardized methods to
// interact with something storing blocks.
type BlockStore interface {
Store
HasBlock(ctx context.Context, b BlockRef) (bool, error)
GetBlock(ctx context.Context, b BlockRef) ([]byte, error)
WriteBlock(ctx context.Context, b BlockRef, data []byte) error
WriteBuf(ctx context.Context, b BlockRef) ([]byte, error)
DeleteBlock(ctx context.Context, b BlockRef) error
NumBlocks() uint64
UsedBlocks() uint64
BlockIterator() BlockIterator
BlockSize() uint64
// TODO(barakmich) FreeBlocks()
}
type BlockIterator interface {
Err() error
Next() bool
BlockRef() BlockRef
Close() error
}
type NewBlockStoreFunc func(string, Config, GlobalMetadata) (BlockStore, error)
var blockStores map[string]NewBlockStoreFunc
func RegisterBlockStore(name string, newFunc NewBlockStoreFunc) {
if blockStores == nil {
blockStores = make(map[string]NewBlockStoreFunc)
}
if _, ok := blockStores[name]; ok {
panic("torus: attempted to register BlockStore " + name + " twice")
}
blockStores[name] = newFunc
}
func CreateBlockStore(kind string, name string, cfg Config, gmd GlobalMetadata) (BlockStore, error) {
clog.Infof("creating blockstore: %s", kind)
return blockStores[kind](name, cfg, gmd)
}