-
Notifications
You must be signed in to change notification settings - Fork 65
/
null_ds.go
120 lines (92 loc) · 2.87 KB
/
null_ds.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
package datastore
import (
"context"
dsq "github.com/ipfs/go-datastore/query"
)
// NullDatastore stores nothing, but conforms to the API.
// Useful to test with.
type NullDatastore struct {
}
var _ Datastore = (*NullDatastore)(nil)
var _ Batching = (*NullDatastore)(nil)
var _ ScrubbedDatastore = (*NullDatastore)(nil)
var _ CheckedDatastore = (*NullDatastore)(nil)
var _ PersistentDatastore = (*NullDatastore)(nil)
var _ GCDatastore = (*NullDatastore)(nil)
var _ TxnDatastore = (*NullDatastore)(nil)
// NewNullDatastore constructs a null datastoe
func NewNullDatastore() *NullDatastore {
return &NullDatastore{}
}
// Put implements Datastore.Put
func (d *NullDatastore) Put(ctx context.Context, key Key, value []byte) (err error) {
return nil
}
// Sync implements Datastore.Sync
func (d *NullDatastore) Sync(ctx context.Context, prefix Key) error {
return nil
}
// Get implements Datastore.Get
func (d *NullDatastore) Get(ctx context.Context, key Key) (value []byte, err error) {
return nil, ErrNotFound
}
// Has implements Datastore.Has
func (d *NullDatastore) Has(ctx context.Context, key Key) (exists bool, err error) {
return false, nil
}
// Has implements Datastore.GetSize
func (d *NullDatastore) GetSize(ctx context.Context, key Key) (size int, err error) {
return -1, ErrNotFound
}
// Delete implements Datastore.Delete
func (d *NullDatastore) Delete(ctx context.Context, key Key) (err error) {
return nil
}
func (d *NullDatastore) Scrub(ctx context.Context) error {
return nil
}
func (d *NullDatastore) Check(ctx context.Context) error {
return nil
}
// Query implements Datastore.Query
func (d *NullDatastore) Query(ctx context.Context, q dsq.Query) (dsq.Results, error) {
return dsq.ResultsWithEntries(q, nil), nil
}
func (d *NullDatastore) Batch(ctx context.Context) (Batch, error) {
return NewBasicBatch(d), nil
}
func (d *NullDatastore) CollectGarbage(ctx context.Context) error {
return nil
}
func (d *NullDatastore) DiskUsage(ctx context.Context) (uint64, error) {
return 0, nil
}
func (d *NullDatastore) Close() error {
return nil
}
func (d *NullDatastore) NewTransaction(ctx context.Context, readOnly bool) (Txn, error) {
return &nullTxn{}, nil
}
type nullTxn struct{}
func (t *nullTxn) Get(ctx context.Context, key Key) (value []byte, err error) {
return nil, nil
}
func (t *nullTxn) Has(ctx context.Context, key Key) (exists bool, err error) {
return false, nil
}
func (t *nullTxn) GetSize(ctx context.Context, key Key) (size int, err error) {
return 0, nil
}
func (t *nullTxn) Query(ctx context.Context, q dsq.Query) (dsq.Results, error) {
return dsq.ResultsWithEntries(q, nil), nil
}
func (t *nullTxn) Put(ctx context.Context, key Key, value []byte) error {
return nil
}
func (t *nullTxn) Delete(ctx context.Context, key Key) error {
return nil
}
func (t *nullTxn) Commit(ctx context.Context) error {
return nil
}
func (t *nullTxn) Discard(ctx context.Context) {}