-
Notifications
You must be signed in to change notification settings - Fork 0
/
trie.go
169 lines (157 loc) · 3.85 KB
/
trie.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
// Copyright 2024 Blink Labs Software
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package mpf
import (
"fmt"
"strings"
)
type Trie struct {
rootNode Node
size int
}
func NewTrie() *Trie {
return &Trie{}
}
// String returns a string representation of the entire trie
func (t *Trie) String() string {
ret := fmt.Sprintf(
"** #%s **",
t.Hash().String(),
)
if t.rootNode != nil {
// Strip off first line of output for root node, since we're showing the root hash above
nodeStr := strings.SplitN(
t.rootNode.String(),
"\n",
2,
)[1]
ret += fmt.Sprintf(
"\n%s",
nodeStr,
)
}
return ret
}
// IsEmpty returns whether the trie is empty
func (t *Trie) IsEmpty() bool {
return t.rootNode == nil
}
// Hash returns the root hash for the trie
func (t *Trie) Hash() Hash {
if t.rootNode == nil {
return NullHash
}
return t.rootNode.Hash()
}
// Set adds the specified key and value to the trie. If the key already exists, the value will be updated
func (t *Trie) Set(key []byte, val []byte) {
path := keyToPath(key)
if t.rootNode == nil {
l := newLeaf(
path,
key,
val,
)
t.rootNode = l
return
}
switch n := t.rootNode.(type) {
case *Leaf:
// Update value for matching existing leaf node
if string(path) == string(n.suffix) {
n.Set(val)
return
}
// Create new branch
tmpBranch := newBranch(nil)
// Insert original value
tmpBranch.insert(n.suffix, n.key, n.value)
// Insert new value
tmpBranch.insert(path, key, val)
// Replace root node
t.rootNode = tmpBranch
case *Branch:
n.insert(path, key, val)
default:
panic("unknown node type...this should never happen")
}
}
// Delete removes the specified key and associated value from the trie. Returns ErrKeyNotExist
// if the specified key doesn't exist
func (t *Trie) Delete(key []byte) error {
if t.rootNode == nil {
return ErrKeyNotExist
}
path := keyToPath(key)
switch n := t.rootNode.(type) {
case *Leaf:
if string(path) == string(n.suffix) {
t.rootNode = nil
return nil
}
return ErrKeyNotExist
case *Branch:
if err := n.delete(path); err != nil {
return err
}
// Move single remaining child node to root node
if n.size == 1 {
tmpChildren := n.getChildren()
tmpChild := tmpChildren[0].(*Leaf)
childPath := keyToPath(tmpChild.key)
newNode := newLeaf(
childPath,
tmpChild.key,
tmpChild.value,
)
t.rootNode = newNode
}
default:
panic("unknown node type...this should never happen")
}
return nil
}
// Get returns the value for the specified key or ErrKeyNotExist if the key
// doesn't exist in the trie
func (t *Trie) Get(key []byte) ([]byte, error) {
if t.rootNode == nil {
return nil, ErrKeyNotExist
}
path := keyToPath(key)
switch n := t.rootNode.(type) {
case *Leaf:
if string(n.suffix) == string(path) {
return n.value, nil
}
return nil, ErrKeyNotExist
case *Branch:
return n.get(path)
default:
panic("unknown node type...this should never happen")
}
}
// Has returns whether the specified key exists in the trie
func (t *Trie) Has(key []byte) bool {
_, err := t.Get(key)
return err == nil
}
// Prove returns a proof that the given key exists in the trie or ErrKeyNotExist if
// the key doesn't exist in the trie
func (t *Trie) Prove(key []byte) (*Proof, error) {
if t.rootNode == nil {
return nil, ErrKeyNotExist
}
path := keyToPath(key)
return t.rootNode.generateProof(path)
}