-
Notifications
You must be signed in to change notification settings - Fork 0
/
command.go
58 lines (45 loc) · 1.05 KB
/
command.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
package main
import (
"sort"
)
var (
userCommands = make(map[string]*Command)
maxCommandLen int
uniqueCommandLen = make(map[int]struct{})
sliceCommandLen []int
)
type Command struct {
Title string `json:"title"`
Description string `json:"description"`
Command string `json:"command"`
Output string `json:"output"`
}
func updateUserCommand(c Command) {
userCommands[c.Command] = &c
if len(c.Command) > maxCommandLen {
maxCommandLen = len(c.Command)
}
}
func updateAllCommandLength() {
commands := getAllCommands()
for _, v := range commands {
updateCommandLength(v.Command)
}
sort.Ints(sliceCommandLen)
}
func updateCommandLength(command string) {
commandLength := len(command)
if _, ok := uniqueCommandLen[commandLength]; !ok {
sliceCommandLen = append(sliceCommandLen, commandLength)
uniqueCommandLen[commandLength] = struct{}{}
}
}
func getAllCommands() []Command {
commands := make([]Command, len(userCommands))
i := 0
for k := range userCommands {
commands[i] = *userCommands[k]
i++
}
return commands
}