aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-10-03 02:19:21 -0700
committerChris Lu <chris.lu@gmail.com>2021-10-03 02:19:21 -0700
commit22d8684e88bea2a36063568ba95e6d205aac33b0 (patch)
tree0136ae93fd52a93e95cae26c4f00716ee6fd134e
parentd343b0db5744d5516fe6ffa368dda792c47e9ee3 (diff)
downloadseaweedfs-22d8684e88bea2a36063568ba95e6d205aac33b0.tar.xz
seaweedfs-22d8684e88bea2a36063568ba95e6d205aac33b0.zip
refactor out listStore
-rw-r--r--weed/util/skiplist/list_store.go32
-rw-r--r--weed/util/skiplist/serde.go31
-rw-r--r--weed/util/skiplist/skiplist.go135
-rw-r--r--weed/util/skiplist/skiplist_test.go78
4 files changed, 178 insertions, 98 deletions
diff --git a/weed/util/skiplist/list_store.go b/weed/util/skiplist/list_store.go
new file mode 100644
index 000000000..0eb1106bc
--- /dev/null
+++ b/weed/util/skiplist/list_store.go
@@ -0,0 +1,32 @@
+package skiplist
+
+type ListStore interface {
+ SaveElement(id int64, element *SkipListElement) error
+ DeleteElement(id int64) error
+ LoadElement(id int64) (*SkipListElement, error)
+}
+
+type MemStore struct {
+ m map[int64]*SkipListElement
+}
+
+func newMemStore() *MemStore {
+ return &MemStore{
+ m: make(map[int64]*SkipListElement),
+ }
+}
+
+func (m *MemStore) SaveElement(id int64, element *SkipListElement) error {
+ m.m[id] = element
+ return nil
+}
+
+func (m *MemStore) DeleteElement(id int64) error {
+ delete(m.m, id)
+ return nil
+}
+
+func (m *MemStore) LoadElement(id int64) (*SkipListElement, error) {
+ element := m.m[id]
+ return element, nil
+}
diff --git a/weed/util/skiplist/serde.go b/weed/util/skiplist/serde.go
index 135d3b0b5..5b7089e80 100644
--- a/weed/util/skiplist/serde.go
+++ b/weed/util/skiplist/serde.go
@@ -9,10 +9,6 @@ func compareElement(a *SkipListElement, key []byte) int {
return bytes.Compare(a.Key, key)
}
-var (
- memStore = make(map[int64]*SkipListElement)
-)
-
func (node *SkipListElement) Reference() *SkipListElementReference {
if node == nil {
return nil
@@ -22,27 +18,24 @@ func (node *SkipListElement) Reference() *SkipListElementReference {
Key: node.Key,
}
}
-func (node *SkipListElement) Save() {
- if node == nil {
- return
+
+func (t *SkipList) saveElement(element *SkipListElement) error {
+ if element == nil {
+ return nil
}
- memStore[node.Id] = node
- //println("++ node", node.Id, string(node.Values[0]))
+ return t.listStore.SaveElement(element.Id, element)
}
-func (node *SkipListElement) DeleteSelf() {
- if node == nil {
- return
+func (t *SkipList) deleteElement(element *SkipListElement) error {
+ if element == nil {
+ return nil
}
- delete(memStore, node.Id)
- //println("++ node", node.Id, string(node.Values[0]))
+ return t.listStore.DeleteElement(element.Id)
}
-func (ref *SkipListElementReference) Load() *SkipListElement {
+func (t *SkipList) loadElement(ref *SkipListElementReference) (*SkipListElement, error) {
if ref == nil {
- return nil
+ return nil, nil
}
- //println("~ node", ref.ElementPointer, string(ref.Key))
- return memStore[ref.ElementPointer]
+ return t.listStore.LoadElement(ref.ElementPointer)
}
-
diff --git a/weed/util/skiplist/skiplist.go b/weed/util/skiplist/skiplist.go
index 50ce53525..498af085d 100644
--- a/weed/util/skiplist/skiplist.go
+++ b/weed/util/skiplist/skiplist.go
@@ -21,13 +21,14 @@ type SkipList struct {
endLevels [maxLevel]*SkipListElementReference
maxNewLevel int
maxLevel int
+ listStore ListStore
// elementCount int
}
// NewSeedEps returns a new empty, initialized Skiplist.
// Given a seed, a deterministic height/list behaviour can be achieved.
// Eps is used to compare keys given by the ExtractKey() function on equality.
-func NewSeed(seed int64) *SkipList {
+func NewSeed(seed int64, listStore ListStore) *SkipList {
// Initialize random number generator.
rand.Seed(seed)
@@ -36,6 +37,7 @@ func NewSeed(seed int64) *SkipList {
list := &SkipList{
maxNewLevel: maxLevel,
maxLevel: 0,
+ listStore: listStore,
// elementCount: 0,
}
@@ -43,8 +45,8 @@ func NewSeed(seed int64) *SkipList {
}
// New returns a new empty, initialized Skiplist.
-func New() *SkipList {
- return NewSeed(time.Now().UTC().UnixNano())
+func New(listStore ListStore) *SkipList {
+ return NewSeed(time.Now().UTC().UnixNano(), listStore)
}
// IsEmpty checks, if the skiplist is empty.
@@ -75,7 +77,7 @@ func (t *SkipList) findEntryIndex(key []byte, level int) int {
return 0
}
-func (t *SkipList) findExtended(key []byte, findGreaterOrEqual bool) (foundElem *SkipListElement, ok bool) {
+func (t *SkipList) findExtended(key []byte, findGreaterOrEqual bool) (foundElem *SkipListElement, ok bool, err error) {
foundElem = nil
ok = false
@@ -87,7 +89,10 @@ func (t *SkipList) findExtended(key []byte, findGreaterOrEqual bool) (foundElem
index := t.findEntryIndex(key, 0)
var currentNode *SkipListElement
- currentNode = t.startLevels[index].Load()
+ currentNode, err = t.loadElement(t.startLevels[index])
+ if err != nil {
+ return
+ }
// In case, that our first element is already greater-or-equal!
if findGreaterOrEqual && compareElement(currentNode, key) > 0 {
@@ -106,13 +111,20 @@ func (t *SkipList) findExtended(key []byte, findGreaterOrEqual bool) (foundElem
// Which direction are we continuing next time?
if currentNode.Next[index] != nil && bytes.Compare(currentNode.Next[index].Key, key) <= 0 {
// Go right
- currentNode = currentNode.Next[index].Load()
+ currentNode, err = t.loadElement(currentNode.Next[index])
+ if err != nil {
+ return
+ }
} else {
if index > 0 {
// Early exit
if currentNode.Next[0] != nil && bytes.Compare(currentNode.Next[0].Key, key) == 0 {
- currentNodeNext := currentNode.Next[0].Load()
+ var currentNodeNext *SkipListElement
+ currentNodeNext, err = t.loadElement(currentNode.Next[0])
+ if err != nil {
+ return
+ }
foundElem = currentNodeNext
ok = true
return
@@ -122,7 +134,10 @@ func (t *SkipList) findExtended(key []byte, findGreaterOrEqual bool) (foundElem
} else {
// Element is not found and we reached the bottom.
if findGreaterOrEqual {
- foundElem = currentNode.Next[index].Load()
+ foundElem, err = t.loadElement(currentNode.Next[index])
+ if err != nil {
+ return
+ }
ok = foundElem != nil
}
@@ -135,26 +150,26 @@ func (t *SkipList) findExtended(key []byte, findGreaterOrEqual bool) (foundElem
// Find tries to find an element in the skiplist based on the key from the given ListElement.
// elem can be used, if ok is true.
// Find runs in approx. O(log(n))
-func (t *SkipList) Find(key []byte) (elem *SkipListElement, ok bool) {
+func (t *SkipList) Find(key []byte) (elem *SkipListElement, ok bool, err error) {
if t == nil || key == nil {
return
}
- elem, ok = t.findExtended(key, false)
+ elem, ok, err = t.findExtended(key, false)
return
}
// FindGreaterOrEqual finds the first element, that is greater or equal to the given ListElement e.
// The comparison is done on the keys (So on ExtractKey()).
// FindGreaterOrEqual runs in approx. O(log(n))
-func (t *SkipList) FindGreaterOrEqual(key []byte) (elem *SkipListElement, ok bool) {
+func (t *SkipList) FindGreaterOrEqual(key []byte) (elem *SkipListElement, ok bool, err error) {
if t == nil || key == nil {
return
}
- elem, ok = t.findExtended(key, true)
+ elem, ok, err = t.findExtended(key, true)
return
}
@@ -162,7 +177,7 @@ func (t *SkipList) FindGreaterOrEqual(key []byte) (elem *SkipListElement, ok boo
// If there are multiple entries with the same value, Delete will remove one of them
// (Which one will change based on the actual skiplist layout)
// Delete runs in approx. O(log(n))
-func (t *SkipList) Delete(key []byte) {
+func (t *SkipList) Delete(key []byte) (err error) {
if t == nil || t.IsEmpty() || key == nil {
return
@@ -176,9 +191,12 @@ func (t *SkipList) Delete(key []byte) {
for {
if currentNode == nil {
- nextNode = t.startLevels[index].Load()
+ nextNode, err = t.loadElement(t.startLevels[index])
} else {
- nextNode = currentNode.Next[index].Load()
+ nextNode, err = t.loadElement(currentNode.Next[index])
+ }
+ if err != nil {
+ return err
}
// Found and remove!
@@ -186,17 +204,26 @@ func (t *SkipList) Delete(key []byte) {
if currentNode != nil {
currentNode.Next[index] = nextNode.Next[index]
- currentNode.Save()
+ if err = t.saveElement(currentNode); err != nil {
+ return err
+ }
}
if index == 0 {
if nextNode.Next[index] != nil {
- nextNextNode := nextNode.Next[index].Load()
+ nextNextNode, err := t.loadElement(nextNode.Next[index])
+ if err != nil {
+ return err
+ }
nextNextNode.Prev = currentNode.Reference()
- nextNextNode.Save()
+ if err = t.saveElement(nextNextNode); err != nil {
+ return err
+ }
}
// t.elementCount--
- nextNode.DeleteSelf()
+ if err = t.deleteElement(nextNode); err != nil {
+ return err
+ }
}
// Link from start needs readjustments.
@@ -227,12 +254,12 @@ func (t *SkipList) Delete(key []byte) {
}
}
}
-
+ return
}
// Insert inserts the given ListElement into the skiplist.
// Insert runs in approx. O(log(n))
-func (t *SkipList) Insert(key, value []byte) {
+func (t *SkipList) Insert(key, value []byte) (err error){
if t == nil || key == nil {
return
@@ -288,14 +315,20 @@ func (t *SkipList) Insert(key, value []byte) {
elem.Next[index] = nextNodeRef
if currentNode != nil {
currentNode.Next[index] = elem.Reference()
- currentNode.Save()
+ if err = t.saveElement(currentNode); err != nil {
+ return
+ }
}
if index == 0 {
elem.Prev = currentNode.Reference()
if nextNodeRef != nil {
- nextNode = nextNodeRef.Load()
+ if nextNode, err = t.loadElement(nextNodeRef); err != nil {
+ return
+ }
nextNode.Prev = elem.Reference()
- nextNode.Save()
+ if err = t.saveElement(nextNode); err != nil {
+ return
+ }
}
}
}
@@ -304,7 +337,9 @@ func (t *SkipList) Insert(key, value []byte) {
// Go right
if nextNode == nil {
// reuse nextNode when index == 0
- nextNode = nextNodeRef.Load()
+ if nextNode, err = t.loadElement(nextNodeRef); err != nil {
+ return
+ }
}
currentNode = nextNode
} else {
@@ -326,9 +361,14 @@ func (t *SkipList) Insert(key, value []byte) {
if t.startLevels[i] == nil || bytes.Compare(t.startLevels[i].Key, key) > 0 {
if i == 0 && t.startLevels[i] != nil {
- startLevelElement := t.startLevels[i].Load()
+ startLevelElement, err := t.loadElement(t.startLevels[i])
+ if err != nil {
+ return err
+ }
startLevelElement.Prev = elem.Reference()
- startLevelElement.Save()
+ if err = t.saveElement(startLevelElement); err != nil {
+ return err
+ }
}
elem.Next[i] = t.startLevels[i]
t.startLevels[i] = elem.Reference()
@@ -347,9 +387,14 @@ func (t *SkipList) Insert(key, value []byte) {
// This is very important, so we are not linking the very first element (newFirst AND newLast) to itself!
if !newFirst {
if t.endLevels[i] != nil {
- endLevelElement := t.endLevels[i].Load()
+ endLevelElement, err := t.loadElement(t.endLevels[i])
+ if err != nil {
+ return err
+ }
endLevelElement.Next[i] = elem.Reference()
- endLevelElement.Save()
+ if err = t.saveElement(endLevelElement); err != nil {
+ return err
+ }
}
if i == 0 {
elem.Prev = t.endLevels[i]
@@ -370,49 +415,51 @@ func (t *SkipList) Insert(key, value []byte) {
}
}
- elem.Save()
+ if err = t.saveElement(elem); err != nil {
+ return err
+ }
+ return nil
}
// GetSmallestNode returns the very first/smallest node in the skiplist.
// GetSmallestNode runs in O(1)
-func (t *SkipList) GetSmallestNode() *SkipListElement {
- return t.startLevels[0].Load()
+func (t *SkipList) GetSmallestNode() (*SkipListElement, error) {
+ return t.loadElement(t.startLevels[0])
}
// GetLargestNode returns the very last/largest node in the skiplist.
// GetLargestNode runs in O(1)
-func (t *SkipList) GetLargestNode() *SkipListElement {
- return t.endLevels[0].Load()
+func (t *SkipList) GetLargestNode() (*SkipListElement, error) {
+ return t.loadElement(t.endLevels[0])
}
// Next returns the next element based on the given node.
// Next will loop around to the first node, if you call it on the last!
-func (t *SkipList) Next(e *SkipListElement) *SkipListElement {
+func (t *SkipList) Next(e *SkipListElement) (*SkipListElement, error) {
if e.Next[0] == nil {
- return t.startLevels[0].Load()
+ return t.loadElement(t.startLevels[0])
}
- return e.Next[0].Load()
+ return t.loadElement(e.Next[0])
}
// Prev returns the previous element based on the given node.
// Prev will loop around to the last node, if you call it on the first!
-func (t *SkipList) Prev(e *SkipListElement) *SkipListElement {
+func (t *SkipList) Prev(e *SkipListElement) (*SkipListElement, error) {
if e.Prev == nil {
- return t.endLevels[0].Load()
+ return t.loadElement(t.endLevels[0])
}
- return e.Prev.Load()
+ return t.loadElement(e.Prev)
}
// ChangeValue can be used to change the actual value of a node in the skiplist
// without the need of Deleting and reinserting the node again.
// Be advised, that ChangeValue only works, if the actual key from ExtractKey() will stay the same!
// ok is an indicator, wether the value is actually changed.
-func (t *SkipList) ChangeValue(e *SkipListElement, newValue []byte) (ok bool) {
+func (t *SkipList) ChangeValue(e *SkipListElement, newValue []byte) (err error) {
// The key needs to stay correct, so this is very important!
e.Value = newValue
- e.Save()
- return true
+ return t.saveElement(e)
}
// String returns a string format of the skiplist. Useful to get a graphical overview and/or debugging.
@@ -437,7 +484,7 @@ func (t *SkipList) println() {
nodeRef := t.startLevels[0]
for nodeRef != nil {
print(fmt.Sprintf("%v: ", string(nodeRef.Key)))
- node := nodeRef.Load()
+ node, _ := t.loadElement(nodeRef)
for i := 0; i <= int(node.Level); i++ {
l := node.Next[i]
diff --git a/weed/util/skiplist/skiplist_test.go b/weed/util/skiplist/skiplist_test.go
index b414c267b..75cbc6cfd 100644
--- a/weed/util/skiplist/skiplist_test.go
+++ b/weed/util/skiplist/skiplist_test.go
@@ -12,6 +12,10 @@ const (
maxN = 10000
)
+var (
+ memStore = newMemStore()
+)
+
func TestInsertAndFind(t *testing.T) {
k0 := []byte("0")
@@ -19,12 +23,12 @@ func TestInsertAndFind(t *testing.T) {
var listPointer *SkipList
listPointer.Insert(k0, k0)
- if _, ok := listPointer.Find(k0); ok {
+ if _, ok, _ := listPointer.Find(k0); ok {
t.Fail()
}
- list = New()
- if _, ok := list.Find(k0); ok {
+ list = New(memStore)
+ if _, ok, _ := list.Find(k0); ok {
t.Fail()
}
if !list.IsEmpty() {
@@ -33,18 +37,17 @@ func TestInsertAndFind(t *testing.T) {
// Test at the beginning of the list.
for i := 0; i < maxN; i++ {
- key := []byte(strconv.Itoa(maxN-i))
+ key := []byte(strconv.Itoa(maxN - i))
list.Insert(key, key)
}
for i := 0; i < maxN; i++ {
- key := []byte(strconv.Itoa(maxN-i))
- if _, ok := list.Find(key); !ok {
+ key := []byte(strconv.Itoa(maxN - i))
+ if _, ok, _ := list.Find(key); !ok {
t.Fail()
}
}
-
- list = New()
+ list = New(memStore)
// Test at the end of the list.
for i := 0; i < maxN; i++ {
key := []byte(strconv.Itoa(i))
@@ -52,12 +55,12 @@ func TestInsertAndFind(t *testing.T) {
}
for i := 0; i < maxN; i++ {
key := []byte(strconv.Itoa(i))
- if _, ok := list.Find(key); !ok {
+ if _, ok, _ := list.Find(key); !ok {
t.Fail()
}
}
- list = New()
+ list = New(memStore)
// Test at random positions in the list.
rList := rand.Perm(maxN)
for _, e := range rList {
@@ -68,7 +71,7 @@ func TestInsertAndFind(t *testing.T) {
for _, e := range rList {
key := []byte(strconv.Itoa(e))
// println("find", e)
- if _, ok := list.Find(key); !ok {
+ if _, ok, _ := list.Find(key); !ok {
t.Fail()
}
}
@@ -90,7 +93,7 @@ func TestDelete(t *testing.T) {
// Delete on empty list
list.Delete(k0)
- list = New()
+ list = New(memStore)
list.Delete(k0)
if !list.IsEmpty() {
@@ -114,7 +117,7 @@ func TestDelete(t *testing.T) {
t.Fail()
}
- list = New()
+ list = New(memStore)
// Delete elements at the end of the list.
for i := 0; i < maxN; i++ {
list.Insert(Element(i), Element(i))
@@ -126,7 +129,7 @@ func TestDelete(t *testing.T) {
t.Fail()
}
- list = New()
+ list = New(memStore)
// Delete elements at random positions in the list.
rList := rand.Perm(maxN)
for _, e := range rList {
@@ -141,61 +144,65 @@ func TestDelete(t *testing.T) {
}
func TestNext(t *testing.T) {
- list := New()
+ list := New(memStore)
for i := 0; i < maxN; i++ {
list.Insert(Element(i), Element(i))
}
- smallest := list.GetSmallestNode()
- largest := list.GetLargestNode()
+ smallest, _ := list.GetSmallestNode()
+ largest, _ := list.GetLargestNode()
lastNode := smallest
node := lastNode
for node != largest {
- node = list.Next(node)
+ node, _ = list.Next(node)
// Must always be incrementing here!
if bytes.Compare(node.Key, lastNode.Key) <= 0 {
t.Fail()
}
// Next.Prev must always point to itself!
- if list.Next(list.Prev(node)) != node {
+ prevNode, _ := list.Prev(node)
+ nextNode, _ := list.Next(prevNode)
+ if nextNode != node {
t.Fail()
}
lastNode = node
}
- if list.Next(largest) != smallest {
+ if nextNode, _ := list.Next(largest); nextNode != smallest {
t.Fail()
}
}
func TestPrev(t *testing.T) {
- list := New()
+ list := New(memStore)
for i := 0; i < maxN; i++ {
list.Insert(Element(i), Element(i))
}
- smallest := list.GetSmallestNode()
- largest := list.GetLargestNode()
+ smallest, _ := list.GetSmallestNode()
+ largest, _ := list.GetLargestNode()
lastNode := largest
node := lastNode
for node != smallest {
- node = list.Prev(node)
+ node, _ = list.Prev(node)
// Must always be incrementing here!
if bytes.Compare(node.Key, lastNode.Key) >= 0 {
t.Fail()
}
// Next.Prev must always point to itself!
- if list.Prev(list.Next(node)) != node {
+ nextNode, _ := list.Next(node)
+ prevNode, _ := list.Prev(nextNode)
+ if prevNode != node {
t.Fail()
}
lastNode = node
}
- if list.Prev(smallest) != largest {
+ if prevNode, _ := list.Prev(smallest); prevNode != largest {
t.Fail()
}
}
@@ -208,11 +215,11 @@ func TestFindGreaterOrEqual(t *testing.T) {
var listPointer *SkipList
// Test on empty list.
- if _, ok := listPointer.FindGreaterOrEqual(Element(0)); ok {
+ if _, ok, _ := listPointer.FindGreaterOrEqual(Element(0)); ok {
t.Fail()
}
- list = New()
+ list = New(memStore)
for i := 0; i < maxN; i++ {
list.Insert(Element(rand.Intn(maxNumber)), Element(i))
@@ -220,7 +227,7 @@ func TestFindGreaterOrEqual(t *testing.T) {
for i := 0; i < maxN; i++ {
key := Element(rand.Intn(maxNumber))
- if v, ok := list.FindGreaterOrEqual(key); ok {
+ if v, ok, _ := list.FindGreaterOrEqual(key); ok {
// if f is v should be bigger than the element before
if v.Prev != nil && bytes.Compare(v.Prev.Key, key) >= 0 {
fmt.Printf("PrevV: %s\n key: %s\n\n", string(v.Prev.Key), string(key))
@@ -233,7 +240,8 @@ func TestFindGreaterOrEqual(t *testing.T) {
t.Fail()
}
} else {
- lastV := list.GetLargestNode().GetValue()
+ lastNode, _ := list.GetLargestNode()
+ lastV := lastNode.GetValue()
// It is OK, to fail, as long as f is bigger than the last element.
if bytes.Compare(key, lastV) <= 0 {
fmt.Printf("lastV: %s\n key: %s\n\n", string(lastV), string(key))
@@ -245,7 +253,7 @@ func TestFindGreaterOrEqual(t *testing.T) {
}
func TestChangeValue(t *testing.T) {
- list := New()
+ list := New(memStore)
for i := 0; i < maxN; i++ {
list.Insert(Element(i), []byte("value"))
@@ -253,15 +261,15 @@ func TestChangeValue(t *testing.T) {
for i := 0; i < maxN; i++ {
// The key only looks at the int so the string doesn't matter here!
- f1, ok := list.Find(Element(i))
+ f1, ok, _ := list.Find(Element(i))
if !ok {
t.Fail()
}
- ok = list.ChangeValue(f1, []byte("different value"))
- if !ok {
+ err := list.ChangeValue(f1, []byte("different value"))
+ if err != nil {
t.Fail()
}
- f2, ok := list.Find(Element(i))
+ f2, ok, _ := list.Find(Element(i))
if !ok {
t.Fail()
}