liuxiaolong
2020-09-16 4501e38ca66f09b35aaaf43fa5a316554930fcf4
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
package iradix
 
import "bytes"
 
// Iterator is used to iterate over a set of nodes
// in pre-order
type Iterator struct {
    node  *Node
    stack []edges
}
 
// SeekPrefixWatch is used to seek the iterator to a given prefix
// and returns the watch channel of the finest granularity
func (i *Iterator) SeekPrefixWatch(prefix []byte) (watch <-chan struct{}) {
    // Wipe the stack
    i.stack = nil
    n := i.node
    watch = n.mutateCh
    search := prefix
    for {
        // Check for key exhaution
        if len(search) == 0 {
            i.node = n
            return
        }
 
        // Look for an edge
        _, n = n.getEdge(search[0])
        if n == nil {
            i.node = nil
            return
        }
 
        // Update to the finest granularity as the search makes progress
        watch = n.mutateCh
 
        // Consume the search prefix
        if bytes.HasPrefix(search, n.prefix) {
            search = search[len(n.prefix):]
 
        } else if bytes.HasPrefix(n.prefix, search) {
            i.node = n
            return
        } else {
            i.node = nil
            return
        }
    }
}
 
// SeekPrefix is used to seek the iterator to a given prefix
func (i *Iterator) SeekPrefix(prefix []byte) {
    i.SeekPrefixWatch(prefix)
}
 
// Next returns the next node in order
func (i *Iterator) Next() ([]byte, interface{}, bool) {
    // Initialize our stack if needed
    if i.stack == nil && i.node != nil {
        i.stack = []edges{
            edges{
                edge{node: i.node},
            },
        }
    }
 
    for len(i.stack) > 0 {
        // Inspect the last element of the stack
        n := len(i.stack)
        last := i.stack[n-1]
        elem := last[0].node
 
        // Update the stack
        if len(last) > 1 {
            i.stack[n-1] = last[1:]
        } else {
            i.stack = i.stack[:n-1]
        }
 
        // Push the edges onto the frontier
        if len(elem.edges) > 0 {
            i.stack = append(i.stack, elem.edges)
        }
 
        // Return the leaf values if any
        if elem.leaf != nil {
            return elem.leaf.key, elem.leaf.val, true
        }
    }
    return nil, nil, false
}