-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathinterface.go
68 lines (58 loc) · 1.64 KB
/
interface.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
// Copyright 2019 ChainSafe Systems (ON) Corp.
// This file is part of gossamer.
//
// The gossamer library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The gossamer library 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the gossamer library. If not, see <http://www.gnu.org/licenses/>.
package chaindb
import (
"context"
"io"
"github.com/dgraph-io/badger/v4/pb"
)
// Database wraps all database operations. All methods are safe for concurrent use.
type Database interface {
Reader
Writer
io.Closer
NewBatch() Batch
Path() string
NewIterator() Iterator
Subscribe(ctx context.Context, cb func(kv *KVList) error, prefixes []pb.Match) error
ClearAll() error
}
// Batch is a write-only operation.
type Batch interface {
Writer
ValueSize() int
Reset()
}
// Iterator iterates over key/value pairs in ascending key order.
// Must be released after use.
type Iterator interface {
Valid() bool
Next() bool
Key() []byte
Value() []byte
Release()
}
// Reader interface
type Reader interface {
Get(key []byte) ([]byte, error)
Has(key []byte) (bool, error)
}
// Writer interface
type Writer interface {
Put(key []byte, value []byte) error
Del(key []byte) error
Flush() error
}