-
Notifications
You must be signed in to change notification settings - Fork 0
/
bolt.go
100 lines (88 loc) · 2.61 KB
/
bolt.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
// Copyright (C) 2022 CYBERCRYPT
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published
// by the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package io
import (
"context"
"time"
bolt "go.etcd.io/bbolt"
)
// Mem implements an IO Provider backed by the key/value database bolt..
type Bolt struct {
store *bolt.DB
objectBucket []byte
}
// NewBolt creates a new IO Provider that stores its data in the specified file.
func NewBolt(path string) (Bolt, error) {
store, err := bolt.Open(path, 0600, &bolt.Options{Timeout: 1 * time.Second})
if err != nil {
return Bolt{}, err
}
objectBucket := []byte("object")
// Create one bucket per data type
err = store.Update(func(tx *bolt.Tx) error {
_, err := tx.CreateBucketIfNotExists(objectBucket)
if err != nil {
return err
}
return nil
})
if err != nil {
return Bolt{}, err
}
return Bolt{store, objectBucket}, nil
}
func (b *Bolt) Put(_ context.Context, id []byte, dataType DataType, data []byte) error {
key := append(id, dataType.Bytes()...)
return b.store.Update(func(tx *bolt.Tx) error {
b := tx.Bucket(b.objectBucket)
if b.Get(key) != nil {
return ErrAlreadyExists
}
return b.Put(key, data)
})
}
func (b *Bolt) Get(_ context.Context, id []byte, dataType DataType) ([]byte, error) {
key := append(id, dataType.Bytes()...)
var out []byte
err := b.store.View(func(tx *bolt.Tx) error {
b := tx.Bucket(b.objectBucket)
out = append(out, b.Get(key)...)
return nil
})
if err != nil {
return nil, err
}
if out == nil {
return nil, ErrNotFound
}
return out, nil
}
func (b *Bolt) Update(_ context.Context, id []byte, dataType DataType, data []byte) error {
key := append(id, dataType.Bytes()...)
return b.store.Update(func(tx *bolt.Tx) error {
b := tx.Bucket(b.objectBucket)
if b.Get(key) == nil {
return ErrNotFound
}
return b.Put(key, data)
})
}
func (b *Bolt) Delete(_ context.Context, id []byte, dataType DataType) error {
key := append(id, dataType.Bytes()...)
return b.store.Update(func(tx *bolt.Tx) error {
b := tx.Bucket(b.objectBucket)
return b.Delete(key)
})
}