-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
193 lines (164 loc) · 4.38 KB
/
main.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
// +build !darwin
package main
import (
"flag"
"fmt"
"log"
"os"
"regexp"
"strings"
"github.com/bbeardsley/histkeep"
)
const version = "0.0.9"
func printUsage() {
fmt.Fprintln(os.Stderr, "Usage")
fmt.Fprintln(os.Stderr, " histkeep [options] <command> <file> <command arguments...>")
fmt.Fprintln(os.Stderr, "Version")
fmt.Fprintln(os.Stderr, " "+version)
fmt.Fprintln(os.Stderr, "Options")
flag.PrintDefaults()
fmt.Fprintln(os.Stderr, "Commands")
fmt.Fprintln(os.Stderr, " help -> show this help")
fmt.Fprintln(os.Stderr, " version -> print version number and exit")
fmt.Fprintln(os.Stderr, " add -> add value")
fmt.Fprintln(os.Stderr, " clear -> clear all values")
fmt.Fprintln(os.Stderr, " list -> list values")
fmt.Fprintln(os.Stderr, " remove -> remove value")
os.Exit(1)
}
func main() {
lastNPtr := flag.Int("last", 15, "keep the last specified number of values")
formatPtr := flag.String("format", "", "regex format for the values. Accepts NUMBER and UUID as shortcuts.")
versionPtr := flag.Bool("version", false, "print version number and exit")
filterPtr := flag.String("filter", "", "regex filter")
valuePtr := flag.String("value", "{{VALUE}}", "transforms the value before passing it on.")
ansiPtr := flag.Bool("ansi", false, "support ansi colors in value transformation")
reversePtr := flag.Bool("reverse", false, "list values in reverse order")
flag.Parse()
if *versionPtr {
fmt.Println(version)
os.Exit(0)
}
command := strings.TrimSpace(flag.Arg(0))
file := strings.TrimSpace(flag.Arg(1))
value := strings.TrimSpace(flag.Arg(2))
format := buildFormat(*formatPtr)
hist := histkeep.NewHistKeep(file, *lastNPtr, format)
switch command {
case "", "h", "-h", "--h", "/h", "/?", "help", "-help", "--help", "/help":
printUsage()
case "version", "-version", "--version", "/version":
fmt.Println(version)
case "add":
if file == "" || value == "" {
printUsage()
}
err := hist.AddValue(value)
if err != nil {
log.Fatal(err)
}
case "clear":
if file == "" {
printUsage()
}
err := hist.ClearValues()
if err != nil {
log.Fatal(err)
}
case "remove":
if file == "" || value == "" {
printUsage()
}
err := hist.RemoveValue(value)
if err != nil {
log.Fatal(err)
}
case "list":
if file == "" {
printUsage()
}
filterFunc := buildFilterFunc(*filterPtr)
lines, err := hist.GetFilteredValues(filterFunc)
if err != nil {
log.Fatal(err)
}
if *reversePtr {
lines = hist.ReverseValues(lines)
}
lines = replaceAllPlaceholders(lines, *valuePtr, "VALUE")
if *ansiPtr {
lines = handleAnsiCodes(lines)
}
listValues(lines)
default:
printUsage()
}
return
}
func replaceAllPlaceholders(values []string, template string, placeholder string) []string {
replaced := make([]string, len(values))
for i, line := range values {
replaced[i] = replacePlaceholder(template, placeholder, line)
}
return replaced
}
func handleAnsiCodes(values []string) []string {
re := regexp.MustCompile("(?i)\\\\(e|033|x1b)")
replaced := make([]string, len(values))
for i, line := range values {
replaced[i] = re.ReplaceAllString(line, "\x1B")
}
return replaced
}
func replacePlaceholder(input string, placeholder string, replacementValue string) string {
return strings.Replace(input, "{{"+placeholder+"}}", replacementValue, -1)
}
func buildFilterFunc(filter string) func(string) bool {
var filterFunc func(string) bool
if filter != "" {
filterRegex, err := regexp.Compile("^(?i)" + filter)
if err != nil {
log.Fatal(err)
}
filterFunc = func(line string) bool {
return filterRegex.MatchString(line)
}
} else {
filterFunc = func(line string) bool {
return true
}
}
return filterFunc
}
func listValues(values []string) {
for i, line := range values {
if i != 0 {
fmt.Println()
}
fmt.Print(line)
}
}
func buildFormat(formatStr string) *regexp.Regexp {
format := processedNamedFormats(formatStr)
return regexp.MustCompile("^" + format + "$")
}
func processedNamedFormats(formatStr string) string {
switch formatStr {
case "NUMBER":
return "\\d+"
case "UUID":
return "([a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}){1}"
case "":
return ".*"
default:
return formatStr
}
}
type arrayFlags []string
func (i *arrayFlags) String() string {
return "array flags"
}
func (i *arrayFlags) Set(value string) error {
*i = append(*i, value)
return nil
}