-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommandset.go
61 lines (46 loc) · 847 Bytes
/
commandset.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
58
59
60
61
package main
import (
"sort"
"sync"
)
type commandSet struct {
mu sync.Mutex
m map[string]bool
}
func newCommandSet() commandSet {
return commandSet{m: make(map[string]bool)}
}
func (u *commandSet) Commands() (commands []string) {
u.mu.Lock()
commands = make([]string, 0, len(u.m))
for command := range u.m {
commands = append(commands, command)
}
u.mu.Unlock()
sort.Sort(byName(commands))
return
}
func (u *commandSet) Contains(s string) bool {
u.mu.Lock()
defer u.mu.Unlock()
val, ok := u.m[s]
if !ok {
return false
}
return val
}
func (u *commandSet) Add(s string) {
u.mu.Lock()
defer u.mu.Unlock()
u.m[s] = true
}
func (u *commandSet) Remove(s string) {
u.mu.Lock()
defer u.mu.Unlock()
delete(u.m, s)
}
func (u *commandSet) Reset() {
u.mu.Lock()
defer u.mu.Unlock()
u.m = make(map[string]bool)
}