-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
219 lines (178 loc) · 4.09 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
package badger
import (
"encoding/hex"
"fmt"
"github.com/pkg/errors"
"strings"
"syscall/js"
)
// 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
}
type Iterator struct {
prefix []byte
index int
length int
items []*Item
}
type IteratorOptions struct {
Prefix []byte
}
var DefaultIteratorOptions = IteratorOptions{}
type Txn struct {
}
func (txn *Txn) Set(key, val []byte) error {
Set(hex.EncodeToString(key), hex.EncodeToString(val))
return nil
}
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
}
type WriteBatch struct {
}
func (db *DB) NewWriteBatch() *WriteBatch {
return &WriteBatch{}
}
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 (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) 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
}