forked from johnkerl/miller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbar.go
342 lines (297 loc) · 9.36 KB
/
bar.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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
package transformers
import (
"bytes"
"container/list"
"fmt"
"os"
"strings"
"github.com/johnkerl/miller/pkg/cli"
"github.com/johnkerl/miller/pkg/mlrval"
"github.com/johnkerl/miller/pkg/types"
)
const barDefaultFillString = "*"
const barDefaultOOBString = "#"
const barDefaultBlankString = "."
const barDefaultLo = 0.0
const barDefaultHi = 100.0
const barDefaultWidth = int64(40)
// ----------------------------------------------------------------
const verbNameBar = "bar"
var BarSetup = TransformerSetup{
Verb: verbNameBar,
UsageFunc: transformerBarUsage,
ParseCLIFunc: transformerBarParseCLI,
IgnoresInput: false,
}
func transformerBarUsage(
o *os.File,
) {
fmt.Fprintf(o, "Usage: %s %s [options]\n", "mlr", verbNameBar)
fmt.Fprintf(o, "Replaces a numeric field with a number of asterisks, allowing for cheesy\n")
fmt.Fprintf(o, "bar plots. These align best with --opprint or --oxtab output format.\n")
fmt.Fprintf(o, "Options:\n")
fmt.Fprintf(o, "-f {a,b,c} Field names to convert to bars.\n")
fmt.Fprintf(o, "--lo {lo} Lower-limit value for min-width bar: default '%f'.\n", barDefaultLo)
fmt.Fprintf(o, "--hi {hi} Upper-limit value for max-width bar: default '%f'.\n", barDefaultHi)
fmt.Fprintf(o, "-w {n} Bar-field width: default '%d'.\n", barDefaultWidth)
fmt.Fprintf(o, "--auto Automatically computes limits, ignoring --lo and --hi.\n")
fmt.Fprintf(o, " Holds all records in memory before producing any output.\n")
fmt.Fprintf(o, "-c {character} Fill character: default '%s'.\n", barDefaultFillString)
fmt.Fprintf(o, "-x {character} Out-of-bounds character: default '%s'.\n", barDefaultOOBString)
fmt.Fprintf(o, "-b {character} Blank character: default '%s'.\n", barDefaultBlankString)
fmt.Fprintf(o, "Nominally the fill, out-of-bounds, and blank characters will be strings of length 1.\n")
fmt.Fprintf(o, "However you can make them all longer if you so desire.\n")
fmt.Fprintf(o, "-h|--help Show this message.\n")
}
func transformerBarParseCLI(
pargi *int,
argc int,
args []string,
_ *cli.TOptions,
doConstruct bool, // false for first pass of CLI-parse, true for second pass
) IRecordTransformer {
// Skip the verb name from the current spot in the mlr command line
argi := *pargi
verb := args[argi]
argi++
// Parse local flags
var fieldNames []string = nil
lo := barDefaultLo
hi := barDefaultHi
width := barDefaultWidth
doAuto := false
fillString := barDefaultFillString
oobString := barDefaultOOBString
blankString := barDefaultBlankString
for argi < argc /* variable increment: 1 or 2 depending on flag */ {
opt := args[argi]
if !strings.HasPrefix(opt, "-") {
break // No more flag options to process
}
if args[argi] == "--" {
break // All transformers must do this so main-flags can follow verb-flags
}
argi++
if opt == "-h" || opt == "--help" {
transformerBarUsage(os.Stdout)
os.Exit(0)
} else if opt == "-f" {
fieldNames = cli.VerbGetStringArrayArgOrDie(verb, opt, args, &argi, argc)
} else if opt == "--lo" {
lo = cli.VerbGetFloatArgOrDie(verb, opt, args, &argi, argc)
} else if opt == "-w" {
width = cli.VerbGetIntArgOrDie(verb, opt, args, &argi, argc)
} else if opt == "--hi" {
hi = cli.VerbGetFloatArgOrDie(verb, opt, args, &argi, argc)
} else if opt == "-c" {
fillString = cli.VerbGetStringArgOrDie(verb, opt, args, &argi, argc)
} else if opt == "-x" {
oobString = cli.VerbGetStringArgOrDie(verb, opt, args, &argi, argc)
} else if opt == "-b" {
blankString = cli.VerbGetStringArgOrDie(verb, opt, args, &argi, argc)
} else if opt == "--auto" {
doAuto = true
} else {
transformerBarUsage(os.Stderr)
os.Exit(1)
}
}
if fieldNames == nil {
transformerBarUsage(os.Stderr)
os.Exit(1)
}
*pargi = argi
if !doConstruct { // All transformers must do this for main command-line parsing
return nil
}
transformer, err := NewTransformerBar(
fieldNames,
lo,
hi,
int(width),
doAuto,
fillString,
oobString,
blankString,
)
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
return transformer
}
// ----------------------------------------------------------------
type TransformerBar struct {
fieldNames []string
lo float64
hi float64
width int
fillString string
oobString string
blankString string
bars []string
recordsForAutoMode *list.List
recordTransformerFunc RecordTransformerFunc
}
// ----------------------------------------------------------------
func NewTransformerBar(
fieldNames []string,
lo float64,
hi float64,
width int,
doAuto bool,
fillString string,
oobString string,
blankString string,
) (*TransformerBar, error) {
tr := &TransformerBar{
fieldNames: fieldNames,
lo: lo,
hi: hi,
width: width,
fillString: fillString,
oobString: oobString,
blankString: blankString,
}
tr.bars = make([]string, width+1)
for i := 0; i <= tr.width; i++ {
var bar = ""
if i == 0 {
bar = tr.oobString + strings.Repeat(tr.blankString, width-1)
} else if i < width {
bar = strings.Repeat(tr.fillString, i) + strings.Repeat(tr.blankString, width-i)
} else {
bar = strings.Repeat(tr.fillString, width-1) + tr.oobString
}
tr.bars[i] = bar
}
if doAuto {
tr.recordTransformerFunc = tr.processAuto
tr.recordsForAutoMode = list.New()
} else {
tr.recordTransformerFunc = tr.processNoAuto
tr.recordsForAutoMode = nil
}
return tr, nil
}
// ----------------------------------------------------------------
func (tr *TransformerBar) Transform(
inrecAndContext *types.RecordAndContext,
outputRecordsAndContexts *list.List, // list of *types.RecordAndContext
inputDownstreamDoneChannel <-chan bool,
outputDownstreamDoneChannel chan<- bool,
) {
HandleDefaultDownstreamDone(inputDownstreamDoneChannel, outputDownstreamDoneChannel)
tr.recordTransformerFunc(inrecAndContext, outputRecordsAndContexts, inputDownstreamDoneChannel, outputDownstreamDoneChannel)
}
// ----------------------------------------------------------------
func (tr *TransformerBar) processNoAuto(
inrecAndContext *types.RecordAndContext,
outputRecordsAndContexts *list.List, // list of *types.RecordAndContext
inputDownstreamDoneChannel <-chan bool,
outputDownstreamDoneChannel chan<- bool,
) {
if !inrecAndContext.EndOfStream {
inrec := inrecAndContext.Record
for _, fieldName := range tr.fieldNames {
mvalue := inrec.Get(fieldName)
if mvalue == nil {
continue
}
floatValue, ok := mvalue.GetNumericToFloatValue()
if !ok {
continue
}
idx := int(float64(tr.width) * (floatValue - tr.lo) / (tr.hi - tr.lo))
if idx < 0 {
idx = 0
}
if idx > tr.width {
idx = tr.width
}
inrec.PutReference(fieldName, mlrval.FromString(tr.bars[idx]))
}
outputRecordsAndContexts.PushBack(inrecAndContext)
} else {
outputRecordsAndContexts.PushBack(inrecAndContext) // emit end-of-stream marker
}
}
// ----------------------------------------------------------------
func (tr *TransformerBar) processAuto(
inrecAndContext *types.RecordAndContext,
outputRecordsAndContexts *list.List, // list of *types.RecordAndContext
inputDownstreamDoneChannel <-chan bool,
outputDownstreamDoneChannel chan<- bool,
) {
if !inrecAndContext.EndOfStream {
tr.recordsForAutoMode.PushBack(inrecAndContext.Copy())
return
}
// Else, end of stream
// Loop over field names to be barred
for _, fieldName := range tr.fieldNames {
lo := 0.0
hi := 0.0
// The first pass computes lo and hi from the data
onFirst := true
for e := tr.recordsForAutoMode.Front(); e != nil; e = e.Next() {
recordAndContexts := e.Value.(*types.RecordAndContext)
record := recordAndContexts.Record
mvalue := record.Get(fieldName)
if mvalue == nil {
continue
}
floatValue, ok := mvalue.GetNumericToFloatValue()
if !ok {
continue
}
if onFirst || floatValue < lo {
lo = floatValue
}
if onFirst || floatValue > hi {
hi = floatValue
}
onFirst = false
}
// The second pass applies the bars. There is some redundant computation
// which could be hoisted out of the loop for performance ... but this
// verb computes data solely for visual inspection and I take the
// nominal use case to be tens or hundreds of records. So, optimization
// isn't worth the effort here.
slo := fmt.Sprintf("%g", lo)
shi := fmt.Sprintf("%g", hi)
for e := tr.recordsForAutoMode.Front(); e != nil; e = e.Next() {
recordAndContext := e.Value.(*types.RecordAndContext)
record := recordAndContext.Record
mvalue := record.Get(fieldName)
if mvalue == nil {
continue
}
floatValue, ok := mvalue.GetNumericToFloatValue()
if !ok {
continue
}
idx := int((float64(tr.width) * (floatValue - lo) / (hi - lo)))
if idx < 0 {
idx = 0
}
if idx > tr.width {
idx = tr.width
}
var buffer bytes.Buffer
buffer.WriteString("[")
buffer.WriteString(slo)
buffer.WriteString("]")
buffer.WriteString(tr.bars[idx])
buffer.WriteString("[")
buffer.WriteString(shi)
buffer.WriteString("]")
record.PutReference(fieldName, mlrval.FromString(buffer.String()))
}
}
for e := tr.recordsForAutoMode.Front(); e != nil; e = e.Next() {
recordAndContext := e.Value.(*types.RecordAndContext)
outputRecordsAndContexts.PushBack(recordAndContext)
}
outputRecordsAndContexts.PushBack(inrecAndContext) // Emit the end-of-stream marker
}