forked from etcd-io/etcd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lock_nodes.go
57 lines (48 loc) · 1.08 KB
/
lock_nodes.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
package v2
import (
"path"
"sort"
"strconv"
"github.com/coreos/go-etcd/etcd"
)
// lockNodes is a wrapper for go-etcd's Nodes to allow for sorting by numeric key.
type lockNodes struct {
etcd.Nodes
}
// Less sorts the nodes by key (numerically).
func (s lockNodes) Less(i, j int) bool {
a, _ := strconv.Atoi(path.Base(s.Nodes[i].Key))
b, _ := strconv.Atoi(path.Base(s.Nodes[j].Key))
return a < b
}
// Retrieves the first node in the set of lock nodes.
func (s lockNodes) First() *etcd.Node {
sort.Sort(s)
if len(s.Nodes) > 0 {
return &s.Nodes[0]
}
return nil
}
// Retrieves the first node with a given value.
func (s lockNodes) FindByValue(value string) (*etcd.Node, int) {
sort.Sort(s)
for i, node := range s.Nodes {
if node.Value == value {
return &node, i
}
}
return nil, 0
}
// Retrieves the index that occurs before a given index.
func (s lockNodes) PrevIndex(index int) int {
sort.Sort(s)
var prevIndex int
for _, node := range s.Nodes {
idx, _ := strconv.Atoi(path.Base(node.Key))
if index == idx {
return prevIndex
}
prevIndex = idx
}
return 0
}