forked from btcsuite/btcd
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[lbry] claimtrie: created node cache
- Loading branch information
Showing
5 changed files
with
212 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
package node | ||
|
||
import ( | ||
"container/list" | ||
|
||
"github.com/lbryio/lbcd/claimtrie/change" | ||
) | ||
|
||
type cacheLeaf struct { | ||
node *Node | ||
element *list.Element | ||
changes []change.Change | ||
height int32 | ||
} | ||
|
||
type Cache struct { | ||
nodes map[string]*cacheLeaf | ||
order *list.List | ||
limit int | ||
} | ||
|
||
func (nc *Cache) insert(name []byte, n *Node, height int32) { | ||
key := string(name) | ||
|
||
existing := nc.nodes[key] | ||
if existing != nil { | ||
existing.node = n | ||
existing.height = height | ||
existing.changes = nil | ||
nc.order.MoveToFront(existing.element) | ||
return | ||
} | ||
|
||
for nc.order.Len() >= nc.limit { | ||
// TODO: maybe ensure that we don't remove nodes that have a lot of changes? | ||
delete(nc.nodes, nc.order.Back().Value.(string)) | ||
nc.order.Remove(nc.order.Back()) | ||
} | ||
|
||
element := nc.order.PushFront(key) | ||
nc.nodes[key] = &cacheLeaf{node: n, element: element, height: height} | ||
} | ||
|
||
func (nc *Cache) fetch(name []byte, height int32) (*Node, []change.Change, int32) { | ||
key := string(name) | ||
|
||
existing := nc.nodes[key] | ||
if existing != nil && existing.height <= height { | ||
nc.order.MoveToFront(existing.element) | ||
return existing.node, existing.changes, existing.height | ||
} | ||
return nil, nil, -1 | ||
} | ||
|
||
func (nc *Cache) addChanges(changes []change.Change, height int32) { | ||
for _, c := range changes { | ||
key := string(c.Name) | ||
existing := nc.nodes[key] | ||
if existing != nil && existing.height <= height { | ||
existing.changes = append(existing.changes, c) | ||
} | ||
} | ||
} | ||
|
||
func (nc *Cache) drop(names [][]byte) { | ||
for _, name := range names { | ||
key := string(name) | ||
existing := nc.nodes[key] | ||
if existing != nil { | ||
// we can't roll it backwards because we don't know its previous height value; just toast it | ||
delete(nc.nodes, key) | ||
nc.order.Remove(existing.element) | ||
} | ||
} | ||
} | ||
|
||
func (nc *Cache) clear() { | ||
nc.nodes = map[string]*cacheLeaf{} | ||
nc.order = list.New() | ||
// we'll let the GC sort out the remains... | ||
} | ||
|
||
func NewCache(limit int) *Cache { | ||
return &Cache{limit: limit, nodes: map[string]*cacheLeaf{}, order: list.New()} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.