forked from johnkerl/miller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
top.go
290 lines (251 loc) · 8.8 KB
/
top.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
package transformers
import (
"container/list"
"fmt"
"os"
"strings"
"github.com/johnkerl/miller/internal/pkg/cli"
"github.com/johnkerl/miller/internal/pkg/lib"
"github.com/johnkerl/miller/internal/pkg/mlrval"
"github.com/johnkerl/miller/internal/pkg/transformers/utils"
"github.com/johnkerl/miller/internal/pkg/types"
)
// ----------------------------------------------------------------
const verbNameTop = "top"
const verbTopDefaultOutputFieldName = "top_idx"
var TopSetup = TransformerSetup{
Verb: verbNameTop,
UsageFunc: transformerTopUsage,
ParseCLIFunc: transformerTopParseCLI,
IgnoresInput: false,
}
func transformerTopUsage(
o *os.File,
) {
argv0 := "mlr"
verb := verbNameTop
fmt.Fprintf(o, "Usage: %s %s [options]\n", argv0, verb)
fmt.Fprintf(o, "-f {a,b,c} Value-field names for top counts.\n")
fmt.Fprintf(o, "-g {d,e,f} Optional group-by-field names for top counts.\n")
fmt.Fprintf(o, "-n {count} How many records to print per category; default 1.\n")
fmt.Fprintf(o, "-a Print all fields for top-value records; default is\n")
fmt.Fprintf(o, " to print only value and group-by fields. Requires a single\n")
fmt.Fprintf(o, " value-field name only.\n")
fmt.Fprintf(o, "--min Print top smallest values; default is top largest values.\n")
fmt.Fprintf(o, "-F Keep top values as floats even if they look like integers.\n")
fmt.Fprintf(o, "-o {name} Field name for output indices. Default \"%s\".\n", verbTopDefaultOutputFieldName)
fmt.Fprintf(o, " This is ignored if -a is used.\n")
fmt.Fprintf(o, "Prints the n records with smallest/largest values at specified fields,\n")
fmt.Fprintf(o, "optionally by category. If -a is given, then the top records are emitted\n")
fmt.Fprintf(o, "with the same fields as they appeared in the input. Without -a, only fields\n")
fmt.Fprintf(o, "from -f, fields from -g, and the top-index field are emitted. For more information\n")
fmt.Fprintf(o, "please see https://miller.readthedocs.io/en/latest/reference-verbs#top\n")
}
func transformerTopParseCLI(
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
topCount := int64(1)
var valueFieldNames []string = nil
var groupByFieldNames []string = nil
showFullRecords := false
doMax := true
outputFieldName := verbTopDefaultOutputFieldName
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" {
transformerTopUsage(os.Stdout)
os.Exit(0)
} else if opt == "-n" {
topCount = cli.VerbGetIntArgOrDie(verb, opt, args, &argi, argc)
} else if opt == "-f" {
valueFieldNames = cli.VerbGetStringArrayArgOrDie(verb, opt, args, &argi, argc)
} else if opt == "-g" {
groupByFieldNames = cli.VerbGetStringArrayArgOrDie(verb, opt, args, &argi, argc)
} else if opt == "-a" {
showFullRecords = true
} else if opt == "--max" {
doMax = true
} else if opt == "--min" {
doMax = false
} else if opt == "-F" {
// Ignored in Miller 6; allowed for command-line backward compatibility
} else if opt == "-o" {
outputFieldName = cli.VerbGetStringArgOrDie(verb, opt, args, &argi, argc)
} else {
transformerTopUsage(os.Stderr)
os.Exit(1)
}
}
if valueFieldNames == nil {
transformerTopUsage(os.Stderr)
os.Exit(1)
}
if len(valueFieldNames) > 1 && showFullRecords {
transformerTopUsage(os.Stderr)
os.Exit(1)
}
*pargi = argi
if !doConstruct { // All transformers must do this for main command-line parsing
return nil
}
transformer, _ := NewTransformerTop(
topCount,
valueFieldNames,
groupByFieldNames,
showFullRecords,
doMax,
outputFieldName,
)
return transformer
}
// ----------------------------------------------------------------
type TransformerTop struct {
topCount int64
valueFieldNames []string
groupByFieldNames []string
showFullRecords bool
doMax bool
outputFieldName string
// Two-level map from grouping key (string of joined-together group-by field values),
// to string value-field name, to *utils.TopKeeper
groups *lib.OrderedMap
groupingKeysToGroupByFieldValues map[string][]*mlrval.Mlrval
}
// ----------------------------------------------------------------
func NewTransformerTop(
topCount int64,
valueFieldNames []string,
groupByFieldNames []string,
showFullRecords bool,
doMax bool,
outputFieldName string,
) (*TransformerTop, error) {
tr := &TransformerTop{
topCount: topCount,
valueFieldNames: valueFieldNames,
groupByFieldNames: groupByFieldNames,
showFullRecords: showFullRecords,
doMax: doMax,
outputFieldName: outputFieldName,
groups: lib.NewOrderedMap(),
groupingKeysToGroupByFieldValues: make(map[string][]*mlrval.Mlrval),
}
return tr, nil
}
func (tr *TransformerTop) Transform(
inrecAndContext *types.RecordAndContext,
outputRecordsAndContexts *list.List, // list of *types.RecordAndContext
inputDownstreamDoneChannel <-chan bool,
outputDownstreamDoneChannel chan<- bool,
) {
HandleDefaultDownstreamDone(inputDownstreamDoneChannel, outputDownstreamDoneChannel)
if !inrecAndContext.EndOfStream {
tr.ingest(inrecAndContext)
} else {
tr.emit(inrecAndContext, outputRecordsAndContexts)
}
}
func (tr *TransformerTop) ingest(
inrecAndContext *types.RecordAndContext,
) {
inrec := inrecAndContext.Record
// ["s", "t"]
valueFieldValues, fok := inrec.ReferenceSelectedValues(tr.valueFieldNames)
groupingKey, groupByFieldValues, gok := inrec.GetSelectedValuesAndJoined(tr.groupByFieldNames)
// Heterogeneous-data case -- not all sought fields were present in record
if !fok || !gok {
return
}
iSecondLevel := tr.groups.Get(groupingKey)
var secondLevel *lib.OrderedMap = nil
if iSecondLevel == nil {
secondLevel = lib.NewOrderedMap()
tr.groups.Put(groupingKey, secondLevel)
tr.groupingKeysToGroupByFieldValues[groupingKey] = groupByFieldValues
} else {
secondLevel = iSecondLevel.(*lib.OrderedMap)
}
// for "x", "y" and "1", "2"
for i := range tr.valueFieldNames {
valueFieldName := tr.valueFieldNames[i]
valueFieldValue := valueFieldValues[i]
iTopKeeper := secondLevel.Get(valueFieldName)
var topKeeper *utils.TopKeeper
if iTopKeeper == nil {
topKeeper = utils.NewTopKeeper(tr.topCount, tr.doMax)
secondLevel.Put(valueFieldName, topKeeper)
} else {
topKeeper = iTopKeeper.(*utils.TopKeeper)
}
var maybeRecordAndContext *types.RecordAndContext = nil
if tr.showFullRecords {
maybeRecordAndContext = inrecAndContext
}
topKeeper.Add(
valueFieldValue,
maybeRecordAndContext,
)
}
}
// ----------------------------------------------------------------
func (tr *TransformerTop) emit(
inrecAndContext *types.RecordAndContext,
outputRecordsAndContexts *list.List, // list of *types.RecordAndContext
) {
for pa := tr.groups.Head; pa != nil; pa = pa.Next {
groupingKey := pa.Key
secondLevel := pa.Value.(*lib.OrderedMap)
groupByFieldValues := tr.groupingKeysToGroupByFieldValues[groupingKey]
// Above we required that there be only one value field in the
// show-full-records case. That's because here, we print each record at most
// once, which would need a change in the format presented as output.
if tr.showFullRecords {
for pb := secondLevel.Head; pb != nil; pb = pb.Next {
topKeeper := pb.Value.(*utils.TopKeeper)
for i := int64(0); i < topKeeper.GetSize(); i++ {
outputRecordsAndContexts.PushBack(topKeeper.TopRecordsAndContexts[i].Copy())
}
}
} else {
for i := int64(0); i < tr.topCount; i++ {
newrec := mlrval.NewMlrmapAsRecord()
// Add in a=s,b=t fields:
for j := range tr.groupByFieldNames {
newrec.PutCopy(tr.groupByFieldNames[j], groupByFieldValues[j])
}
// Add in fields such as x_top_1=#
// for "x", "y"
for pb := secondLevel.Head; pb != nil; pb = pb.Next {
valueFieldName := pb.Key
topKeeper := pb.Value.(*utils.TopKeeper)
key := valueFieldName + "_top"
if i < topKeeper.GetSize() {
newrec.PutReference(tr.outputFieldName, mlrval.FromInt(i+1))
newrec.PutReference(key, topKeeper.TopValues[i].Copy())
} else {
newrec.PutReference(tr.outputFieldName, mlrval.FromInt(i+1))
newrec.PutCopy(key, mlrval.VOID)
}
}
outputRecordsAndContexts.PushBack(types.NewRecordAndContext(newrec, &inrecAndContext.Context))
}
}
}
outputRecordsAndContexts.PushBack(inrecAndContext) // emit end-of-stream marker
}