-
Notifications
You must be signed in to change notification settings - Fork 47
/
memdb.go
121 lines (98 loc) · 2.64 KB
/
memdb.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
// Copyright 2022 The AmazeChain Authors
// This file is part of the AmazeChain library.
//
// The AmazeChain 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 AmazeChain 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 AmazeChain library. If not, see <http://www.gnu.org/licenses/>.
package memdb
import (
"fmt"
"github.com/amazechain/amc/common/db"
"sync"
)
type MemoryDB struct {
db map[string][]byte
lock sync.RWMutex
}
func (m *MemoryDB) Snapshot() (db.ISnapshot, error) {
//TODO implement me
panic("implement me")
}
func NewMemDB() db.IDatabase {
return &MemoryDB{
db: make(map[string][]byte),
}
}
func (m *MemoryDB) OpenReader(dbName string) (db.IDatabaseReader, error) {
return m, nil
}
func (m *MemoryDB) OpenWriter(dbName string) (db.IDatabaseWriter, error) {
return nil, nil
}
func (m *MemoryDB) Open(dbName string) (db.IDatabaseWriterReader, error) {
return nil, nil
}
func (m *MemoryDB) Close() error {
return nil
}
func (m *MemoryDB) Get(key []byte) ([]byte, error) {
m.lock.RLock()
defer m.lock.RUnlock()
if _, ok := m.db[string(key)]; ok {
v := m.db[string(key)]
return v, nil
}
return nil, fmt.Errorf("invalid key")
}
func (m *MemoryDB) Gets(key []byte, count uint) ([][]byte, [][]byte, error) {
return nil, nil, nil
}
func (m *MemoryDB) GetIterator(key []byte) (db.IIterator, error) {
return nil, nil
}
/*
type IDBWriter interface {
Put(key []byte, value []byte) (err error)
Puts(keys [][]byte, values [][]byte) (err error)
Delete(key []byte) (err error)
Drop() (err error)
}
*/
func (m *MemoryDB) Put(key []byte, value []byte) error {
m.lock.Lock()
defer m.lock.Unlock()
if _, ok := m.db[string(key)]; ok {
return fmt.Errorf("already add")
}
m.db[string(key)] = value
return nil
}
func (m *MemoryDB) Puts(keys [][]byte, values [][]byte) error {
for i := 0; i < len(keys); i++ {
if err := m.Put(keys[i], values[i]); err != nil {
return err
}
}
return nil
}
func (m *MemoryDB) Delete(key []byte) error {
m.lock.Lock()
defer m.lock.Unlock()
if _, ok := m.db[string(key)]; ok {
delete(m.db, string(key))
return nil
}
return fmt.Errorf("invalid key")
}
func (m *MemoryDB) Drop() error {
return nil
}