forked from bluesign/fakeBadger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
260 lines (209 loc) · 5.04 KB
/
main.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
package badger
import (
"encoding/hex"
"fmt"
"strings"
"syscall/js"
"github.com/pkg/errors"
)
// Source: https://github.com/dgraph-io/badger/blob/ffd14f078e0bd07a62cdb6d381cfb13fdd977454/errors.go
var (
ErrConflict = errors.New("Transaction Conflict. Please retry")
ErrRejected = errors.New("Value log GC request rejected")
)
// Await waits for the Promise to be resolved and returns the value
func Await(p js.Value) (js.Value, error) {
resCh := make(chan js.Value)
var then js.Func
then = js.FuncOf(func(_ js.Value, args []js.Value) interface{} {
resCh <- args[0]
return nil
})
defer then.Release()
errCh := make(chan error)
var catch js.Func
catch = js.FuncOf(func(_ js.Value, args []js.Value) interface{} {
errCh <- js.Error{args[0]}
return nil
})
defer catch.Release()
p.Call("then", then).Call("catch", catch)
select {
case res := <-resCh:
return res, nil
case err := <-errCh:
return js.Undefined(), err
}
}
func Set(name string, value string) {
Await(js.Global().Call("storage_set", js.ValueOf(name), js.ValueOf(value)))
}
func Get(name string) string {
v, _ := Await(js.Global().Call("storage_get", js.ValueOf(name)))
return v.String()
}
func Clear() {
Await(js.Global().Call("storage_clear"))
}
func Entries(prefix []byte) []*Item {
v, _ := Await(js.Global().Call("storage_entries"))
hexPrefix := hex.EncodeToString(prefix)
items := make([]*Item, 0)
fmt.Println(v.Length())
for i := 0; i < v.Length(); i++ {
if !strings.HasPrefix(v.Index(i).Index(0).String(), hexPrefix) {
continue
}
key, _ := hex.DecodeString(v.Index(i).Index(0).String())
value, _ := hex.DecodeString(v.Index(i).Index(1).String())
items = append(items, &Item{key: key, value: value})
}
return items
}
type DB struct {
}
type Logger interface {
Errorf(string, ...interface{})
Warningf(string, ...interface{})
Infof(string, ...interface{})
Debugf(string, ...interface{})
}
type Options struct {
Logger Logger
Truncate bool
BypassLockGuard bool
Dir string
}
func (o Options) WithKeepL0InMemory(_ bool) Options {
return o
}
// Source: https://github.com/dgraph-io/badger/blob/main/iterator.go
type Iterator struct {
prefix []byte
index int
length int
items []*Item
}
type IteratorOptions struct {
Prefix []byte
AllVersions bool
PrefetchValues bool
Reverse bool
}
var DefaultIteratorOptions = IteratorOptions{}
type Txn struct {
}
func (txn *Txn) Set(key, val []byte) error {
Set(hex.EncodeToString(key), hex.EncodeToString(val))
return nil
}
func (txn *Txn) Delete(key []byte) error {
panic("Not implemented")
}
func (db *DB) NewTransaction(update bool) *Txn {
return &Txn{}
}
func DefaultOptions(path string) Options {
return Options{}
}
func Open(opt Options) (db *DB, err error) {
return &DB{}, nil
}
func (txn *Txn) Discard() {
}
func (txn *Txn) NewIterator(opt IteratorOptions) *Iterator {
return &Iterator{prefix: opt.Prefix, index: 0, length: 0}
}
func (txn *Txn) Commit() error {
return nil
}
func (txn *Txn) Get(key []byte) (item *Item, rerr error) {
var r = Get(hex.EncodeToString(key))
decodedByteArray, _ := hex.DecodeString(r)
if decodedByteArray == nil || len(decodedByteArray) == 0 {
return nil, ErrKeyNotFound
}
return &Item{key: key, value: decodedByteArray}, nil
}
// Source: https://github.com/dgraph-io/badger/blob/main/batch.go
type WriteBatch struct {
}
func (db *DB) NewWriteBatch() *WriteBatch {
return &WriteBatch{}
}
func (wb *WriteBatch) Set(key, val []byte) error {
panic("Not implemented")
}
func (wb *WriteBatch) Delete(key []byte) error {
panic("Not implemented")
}
func (wb *WriteBatch) Flush() error {
panic("Not implemented")
}
func (db *DB) View(fn func(txn *Txn) error) error {
return fn(&Txn{})
}
func (db *DB) Update(fn func(txn *Txn) error) error {
return fn(&Txn{})
}
func (db *DB) Close() error {
return nil
}
func (db *DB) Sync() error {
return nil
}
func (db *DB) RLock() {
}
func (db *DB) RUnlock() {
}
type Item struct {
key []byte
value []byte
}
func (i Iterator) ValidForPrefix(prefix []byte) bool {
panic("Not implemented")
}
func (it *Iterator) Item() *Item {
return it.items[it.index]
}
func (it *Iterator) Valid() bool {
return it.index < it.length
}
func (it *Iterator) Next() {
it.index++
}
func (it *Iterator) Seek(key []byte) {
it.index = 0
}
func (it *Iterator) Close() {
}
func (it *Iterator) Rewind() {
it.index = 0
it.items = Entries(it.prefix)
it.length = len(it.items)
}
var (
ErrKeyNotFound = errors.New("Key not found")
ErrNoRewrite = errors.New("Value log GC attempt didn't result in any cleanup")
)
func (item *Item) Key() []byte {
return item.key
}
func (item *Item) KeyCopy(dst []byte) []byte {
return safeCopy(dst, item.key)
}
func safeCopy(a, src []byte) []byte {
return append(a[:0], src...)
}
func (item *Item) Value(fn func(val []byte) error) error {
return fn(item.value)
}
func (item *Item) ValueCopy(dst []byte) ([]byte, error) {
return item.value, nil
}
func (item *Item) ValueSize() int64 {
return int64(len(item.value))
}
func (db *DB) RunValueLogGC(discardRatio float64) error {
return nil
}