-
Notifications
You must be signed in to change notification settings - Fork 0
/
selection.go
50 lines (41 loc) · 949 Bytes
/
selection.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
package peco
import "github.com/google/btree"
// NewSelection creates a new empty Selection
func NewSelection() *Selection {
s := &Selection{}
s.Reset()
return s
}
// Add adds a new line to the selection. If the line already
// exists in the selection, it is silently ignored
func (s *Selection) Add(l Line) {
s.mutex.Lock()
defer s.mutex.Unlock()
s.tree.ReplaceOrInsert(l)
}
// Remove removes the specified line from the selection
func (s *Selection) Remove(l Line) {
s.mutex.Lock()
defer s.mutex.Unlock()
s.tree.Delete(l)
}
func (s *Selection) Reset() {
s.mutex.Lock()
defer s.mutex.Unlock()
s.tree = btree.New(32)
}
func (s *Selection) Has(x Line) bool {
s.mutex.Lock()
defer s.mutex.Unlock()
return s.tree.Has(x)
}
func (s *Selection) Len() int {
s.mutex.Lock()
defer s.mutex.Unlock()
return s.tree.Len()
}
func (s *Selection) Ascend(i btree.ItemIterator) {
s.mutex.Lock()
defer s.mutex.Unlock()
s.tree.Ascend(i)
}