forked from johnkerl/miller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nest.go
612 lines (530 loc) · 17.8 KB
/
nest.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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
package transformers
import (
"bytes"
"container/list"
"fmt"
"os"
"regexp"
"strconv"
"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/types"
)
// ----------------------------------------------------------------
const verbNameNest = "nest"
var NestSetup = TransformerSetup{
Verb: verbNameNest,
UsageFunc: transformerNestUsage,
ParseCLIFunc: transformerNestParseCLI,
IgnoresInput: false,
}
func transformerNestUsage(
o *os.File,
) {
argv0 := "mlr"
verb := verbNameNest
fmt.Fprintf(o, "Usage: %s %s [options]\n", argv0, verb)
fmt.Fprintf(o, "Explodes specified field values into separate fields/records, or reverses this.\n")
fmt.Fprintf(o, "Options:\n")
fmt.Fprintf(o, " --explode,--implode One is required.\n")
fmt.Fprintf(o, " --values,--pairs One is required.\n")
fmt.Fprintf(o, " --across-records,--across-fields One is required.\n")
fmt.Fprintf(o, " -f {field name} Required.\n")
fmt.Fprintf(o, " --nested-fs {string} Defaults to \";\". Field separator for nested values.\n")
fmt.Fprintf(o, " --nested-ps {string} Defaults to \":\". Pair separator for nested key-value pairs.\n")
fmt.Fprintf(o, " --evar {string} Shorthand for --explode --values ---across-records --nested-fs {string}\n")
fmt.Fprintf(o, " --ivar {string} Shorthand for --implode --values ---across-records --nested-fs {string}\n")
fmt.Fprintf(o, "Please use \"%s --usage-separator-options\" for information on specifying separators.\n",
argv0)
fmt.Fprintf(o, "\n")
fmt.Fprintf(o, "Examples:\n")
fmt.Fprintf(o, "\n")
fmt.Fprintf(o, " %s %s --explode --values --across-records -f x\n", argv0, verb)
fmt.Fprintf(o, " with input record \"x=a;b;c,y=d\" produces output records\n")
fmt.Fprintf(o, " \"x=a,y=d\"\n")
fmt.Fprintf(o, " \"x=b,y=d\"\n")
fmt.Fprintf(o, " \"x=c,y=d\"\n")
fmt.Fprintf(o, " Use --implode to do the reverse.\n")
fmt.Fprintf(o, "\n")
fmt.Fprintf(o, " %s %s --explode --values --across-fields -f x\n", argv0, verb)
fmt.Fprintf(o, " with input record \"x=a;b;c,y=d\" produces output records\n")
fmt.Fprintf(o, " \"x_1=a,x_2=b,x_3=c,y=d\"\n")
fmt.Fprintf(o, " Use --implode to do the reverse.\n")
fmt.Fprintf(o, "\n")
fmt.Fprintf(o, " %s %s --explode --pairs --across-records -f x\n", argv0, verb)
fmt.Fprintf(o, " with input record \"x=a:1;b:2;c:3,y=d\" produces output records\n")
fmt.Fprintf(o, " \"a=1,y=d\"\n")
fmt.Fprintf(o, " \"b=2,y=d\"\n")
fmt.Fprintf(o, " \"c=3,y=d\"\n")
fmt.Fprintf(o, "\n")
fmt.Fprintf(o, " %s %s --explode --pairs --across-fields -f x\n", argv0, verb)
fmt.Fprintf(o, " with input record \"x=a:1;b:2;c:3,y=d\" produces output records\n")
fmt.Fprintf(o, " \"a=1,b=2,c=3,y=d\"\n")
fmt.Fprintf(o, "\n")
fmt.Fprintf(o, "Notes:\n")
fmt.Fprintf(o, "* With --pairs, --implode doesn't make sense since the original field name has\n")
fmt.Fprintf(o, " been lost.\n")
fmt.Fprintf(o, "* The combination \"--implode --values --across-records\" is non-streaming:\n")
fmt.Fprintf(o, " no output records are produced until all input records have been read. In\n")
fmt.Fprintf(o, " particular, this means it won't work in tail -f contexts. But all other flag\n")
fmt.Fprintf(o, " combinations result in streaming (tail -f friendly) data processing.\n")
fmt.Fprintf(o, "* It's up to you to ensure that the nested-fs is distinct from your data's IFS:\n")
fmt.Fprintf(o, " e.g. by default the former is semicolon and the latter is comma.\n")
fmt.Fprintf(o, "See also %s reshape.\n", argv0)
}
func transformerNestParseCLI(
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
fieldName := ""
nestedFS := ";"
nestedPS := ":"
doExplode := true
doPairs := true
doAcrossFields := true
doExplodeSpecified := false
doPairsSpecified := false
doAcrossFieldsSpecified := false
evfs := ""
ivfs := ""
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" {
transformerNestUsage(os.Stdout)
os.Exit(0)
} else if opt == "-f" {
fieldName = cli.VerbGetStringArgOrDie(verb, opt, args, &argi, argc)
} else if opt == "--explode" || opt == "-e" {
doExplode = true
doExplodeSpecified = true
} else if opt == "--implode" || opt == "-i" {
doExplode = false
doExplodeSpecified = true
} else if opt == "--values" || opt == "-v" {
doPairs = false
doPairsSpecified = true
} else if opt == "--pairs" || opt == "-p" {
doPairs = true
doPairsSpecified = true
} else if opt == "--across-fields" || opt == "-F" {
doAcrossFields = true
doAcrossFieldsSpecified = true
} else if opt == "--across-records" || opt == "-R" {
doAcrossFields = false
doAcrossFieldsSpecified = true
} else if opt == "--nested-fs" || opt == "-S" {
nestedFS = cli.VerbGetStringArgOrDie(verb, opt, args, &argi, argc)
} else if opt == "--nested-ps" || opt == "-P" {
nestedPS = cli.VerbGetStringArgOrDie(verb, opt, args, &argi, argc)
} else if opt == "--evar" {
evfs = cli.VerbGetStringArgOrDie(verb, opt, args, &argi, argc)
doExplode = true
doExplodeSpecified = true
doPairs = false
doPairsSpecified = true
doAcrossFields = false
doAcrossFieldsSpecified = true
} else if opt == "--ivar" {
ivfs = cli.VerbGetStringArgOrDie(verb, opt, args, &argi, argc)
doExplode = false
doExplodeSpecified = true
doPairs = false
doPairsSpecified = true
doAcrossFields = false
doAcrossFieldsSpecified = true
} else {
transformerNestUsage(os.Stderr)
os.Exit(1)
}
}
if evfs != "" {
doExplode = true
doPairs = false
doAcrossFields = false
nestedFS = evfs
}
if ivfs != "" {
doExplode = false
doPairs = false
doAcrossFields = false
nestedFS = ivfs
}
if fieldName == "" {
transformerNestUsage(os.Stderr)
os.Exit(1)
}
if !doExplodeSpecified {
transformerNestUsage(os.Stderr)
os.Exit(1)
}
if !doPairsSpecified {
transformerNestUsage(os.Stderr)
os.Exit(1)
}
if !doAcrossFieldsSpecified {
transformerNestUsage(os.Stderr)
os.Exit(1)
}
if doPairs && !doExplode {
transformerNestUsage(os.Stderr)
os.Exit(1)
}
*pargi = argi
if !doConstruct { // All transformers must do this for main command-line parsing
return nil
}
transformer, err := NewTransformerNest(
fieldName,
nestedFS,
nestedPS,
doExplode,
doPairs,
doAcrossFields,
)
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
return transformer
}
// ----------------------------------------------------------------
type TransformerNest struct {
fieldName string
nestedFS string
nestedPS string
// For implode across fields
regex *regexp.Regexp
// For implode across records
otherKeysToOtherValuesToBuckets *lib.OrderedMap
recordTransformerFunc RecordTransformerFunc
}
// ----------------------------------------------------------------
func NewTransformerNest(
fieldName string,
nestedFS string,
nestedPS string,
doExplode bool,
doPairs bool,
doAcrossFields bool,
) (*TransformerNest, error) {
tr := &TransformerNest{
fieldName: fieldName,
nestedFS: cli.SeparatorFromArg(nestedFS), // "pipe" -> "|", etc
nestedPS: cli.SeparatorFromArg(nestedPS),
}
// For implode across fields
regexString := "^" + fieldName + "_[0-9]+$"
regex, err := lib.CompileMillerRegex(regexString)
if err != nil {
fmt.Fprintf(
os.Stderr,
"%s %s: cannot compile regex [%s]\n",
"mlr", verbNameNest, regexString,
)
os.Exit(1)
}
tr.regex = regex
// For implode across records
tr.otherKeysToOtherValuesToBuckets = lib.NewOrderedMap()
if doExplode {
if doPairs {
if doAcrossFields {
tr.recordTransformerFunc = tr.explodePairsAcrossFields
} else {
tr.recordTransformerFunc = tr.explodePairsAcrossRecords
}
} else {
if doAcrossFields {
tr.recordTransformerFunc = tr.explodeValuesAcrossFields
} else {
tr.recordTransformerFunc = tr.explodeValuesAcrossRecords
}
}
} else {
if doPairs {
lib.InternalCodingErrorIf(true)
// Should have been caught in CLI-parser.
} else {
if doAcrossFields {
tr.recordTransformerFunc = tr.implodeValuesAcrossFields
} else {
tr.recordTransformerFunc = tr.implodeValueAcrossRecords
}
}
}
return tr, nil
}
// ----------------------------------------------------------------
func (tr *TransformerNest) 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 *TransformerNest) explodeValuesAcrossFields(
inrecAndContext *types.RecordAndContext,
outputRecordsAndContexts *list.List, // list of *types.RecordAndContext
inputDownstreamDoneChannel <-chan bool,
outputDownstreamDoneChannel chan<- bool,
) {
if !inrecAndContext.EndOfStream {
inrec := inrecAndContext.Record
originalEntry := inrec.GetEntry(tr.fieldName)
if originalEntry == nil {
outputRecordsAndContexts.PushBack(inrecAndContext)
return
}
recordEntry := originalEntry
mvalue := originalEntry.Value
svalue := mvalue.String()
// Not lib.SplitString so 'x=' will map to 'x_1=', rather than no field at all
pieces := strings.Split(svalue, tr.nestedFS)
i := 1
for _, piece := range pieces {
key := tr.fieldName + "_" + strconv.Itoa(i)
value := mlrval.FromString(piece)
recordEntry = inrec.PutReferenceAfter(recordEntry, key, value)
i++
}
inrec.Unlink(originalEntry)
outputRecordsAndContexts.PushBack(inrecAndContext)
} else {
outputRecordsAndContexts.PushBack(inrecAndContext) // emit end-of-stream marker
}
}
// ----------------------------------------------------------------
func (tr *TransformerNest) explodeValuesAcrossRecords(
inrecAndContext *types.RecordAndContext,
outputRecordsAndContexts *list.List, // list of *types.RecordAndContext
inputDownstreamDoneChannel <-chan bool,
outputDownstreamDoneChannel chan<- bool,
) {
if !inrecAndContext.EndOfStream {
inrec := inrecAndContext.Record
mvalue := inrec.Get(tr.fieldName)
if mvalue == nil {
outputRecordsAndContexts.PushBack(inrecAndContext)
return
}
svalue := mvalue.String()
// Not lib.SplitString so 'x=' will map to 'x=', rather than no field at all
pieces := strings.Split(svalue, tr.nestedFS)
for _, piece := range pieces {
outrec := inrec.Copy()
outrec.PutReference(tr.fieldName, mlrval.FromString(piece))
outputRecordsAndContexts.PushBack(types.NewRecordAndContext(outrec, &inrecAndContext.Context))
}
} else {
outputRecordsAndContexts.PushBack(inrecAndContext) // emit end-of-stream marker
}
}
// ----------------------------------------------------------------
func (tr *TransformerNest) explodePairsAcrossFields(
inrecAndContext *types.RecordAndContext,
outputRecordsAndContexts *list.List, // list of *types.RecordAndContext
inputDownstreamDoneChannel <-chan bool,
outputDownstreamDoneChannel chan<- bool,
) {
if !inrecAndContext.EndOfStream {
inrec := inrecAndContext.Record
originalEntry := inrec.GetEntry(tr.fieldName)
if originalEntry == nil {
outputRecordsAndContexts.PushBack(inrecAndContext)
return
}
mvalue := originalEntry.Value
svalue := mvalue.String()
recordEntry := originalEntry
pieces := lib.SplitString(svalue, tr.nestedFS)
for _, piece := range pieces {
pair := strings.SplitN(piece, tr.nestedPS, 2)
if len(pair) == 2 { // there is a pair
recordEntry = inrec.PutReferenceAfter(
recordEntry,
pair[0],
mlrval.FromString(pair[1]),
)
} else { // there is not a pair
recordEntry = inrec.PutReferenceAfter(
recordEntry,
tr.fieldName,
mlrval.FromString(piece),
)
}
}
inrec.Unlink(originalEntry)
outputRecordsAndContexts.PushBack(inrecAndContext)
} else {
outputRecordsAndContexts.PushBack(inrecAndContext) // emit end-of-stream marker
}
}
// ----------------------------------------------------------------
func (tr *TransformerNest) explodePairsAcrossRecords(
inrecAndContext *types.RecordAndContext,
outputRecordsAndContexts *list.List, // list of *types.RecordAndContext
inputDownstreamDoneChannel <-chan bool,
outputDownstreamDoneChannel chan<- bool,
) {
if !inrecAndContext.EndOfStream {
inrec := inrecAndContext.Record
mvalue := inrec.Get(tr.fieldName)
if mvalue == nil {
outputRecordsAndContexts.PushBack(inrecAndContext)
return
}
svalue := mvalue.String()
pieces := lib.SplitString(svalue, tr.nestedFS)
for _, piece := range pieces {
outrec := inrec.Copy()
originalEntry := outrec.GetEntry(tr.fieldName)
// Put the new field where the old one was -- unless there's already a field with the new
// name, in which case replace its value.
pair := strings.SplitN(piece, tr.nestedPS, 2)
if len(pair) == 2 { // there is a pair
outrec.PutReferenceAfter(originalEntry, pair[0], mlrval.FromString(pair[1]))
} else { // there is not a pair
outrec.PutReferenceAfter(originalEntry, tr.fieldName, mlrval.FromString(piece))
}
outrec.Unlink(originalEntry)
outputRecordsAndContexts.PushBack(types.NewRecordAndContext(outrec, &inrecAndContext.Context))
}
} else {
outputRecordsAndContexts.PushBack(inrecAndContext) // emit end-of-stream marker
}
}
// ----------------------------------------------------------------
func (tr *TransformerNest) implodeValuesAcrossFields(
inrecAndContext *types.RecordAndContext,
outputRecordsAndContexts *list.List, // list of *types.RecordAndContext
inputDownstreamDoneChannel <-chan bool,
outputDownstreamDoneChannel chan<- bool,
) {
if !inrecAndContext.EndOfStream {
inrec := inrecAndContext.Record
var previousEntry *mlrval.MlrmapEntry = nil
fieldCount := 0
var buffer bytes.Buffer
for pe := inrec.Head; pe != nil; /* increment in loop */ {
if tr.regex.MatchString(pe.Key) {
if fieldCount > 0 {
buffer.WriteString(tr.nestedFS)
}
buffer.WriteString(pe.Value.String())
fieldCount++
// Keep the location so we can implode in-place.
if previousEntry == nil {
previousEntry = pe.Prev
}
pnext := pe.Next
inrec.Unlink(pe)
pe = pnext
} else {
pe = pe.Next
}
}
if fieldCount > 0 {
newValue := mlrval.FromString(buffer.String())
if previousEntry == nil { // No record before the unlinked one, i.e. list-head.
inrec.PrependReference(tr.fieldName, newValue)
} else {
inrec.PutReferenceAfter(previousEntry, tr.fieldName, newValue)
}
}
outputRecordsAndContexts.PushBack(inrecAndContext)
} else {
outputRecordsAndContexts.PushBack(inrecAndContext) // emit end-of-stream marker
}
}
// ----------------------------------------------------------------
func (tr *TransformerNest) implodeValueAcrossRecords(
inrecAndContext *types.RecordAndContext,
outputRecordsAndContexts *list.List, // list of *types.RecordAndContext
inputDownstreamDoneChannel <-chan bool,
outputDownstreamDoneChannel chan<- bool,
) {
if !inrecAndContext.EndOfStream {
inrec := inrecAndContext.Record
originalEntry := inrec.GetEntry(tr.fieldName)
if originalEntry == nil {
outputRecordsAndContexts.PushBack(inrecAndContext)
return
}
fieldValueCopy := originalEntry.Value.Copy()
// Don't unset tr.fieldName in the record, so we can implode in-place at the end.
otherKeysJoined := inrec.GetKeysJoinedExcept(originalEntry)
var otherValuesToBuckets *lib.OrderedMap = nil
iOtherValuesToBuckets := tr.otherKeysToOtherValuesToBuckets.Get(otherKeysJoined)
if iOtherValuesToBuckets == nil {
otherValuesToBuckets = lib.NewOrderedMap()
tr.otherKeysToOtherValuesToBuckets.Put(otherKeysJoined, otherValuesToBuckets)
} else {
otherValuesToBuckets = iOtherValuesToBuckets.(*lib.OrderedMap)
}
otherValuesJoined := inrec.GetValuesJoinedExcept(originalEntry)
var bucket *tNestBucket = nil
iBucket := otherValuesToBuckets.Get(otherValuesJoined)
if iBucket == nil {
bucket = newNestBucket(inrec)
otherValuesToBuckets.Put(otherValuesJoined, bucket)
} else {
bucket = iBucket.(*tNestBucket)
}
pair := mlrval.NewMlrmapAsRecord()
pair.PutReference(tr.fieldName, fieldValueCopy)
bucket.pairs.PushBack(pair)
} else { // end of input stream
for pe := tr.otherKeysToOtherValuesToBuckets.Head; pe != nil; pe = pe.Next {
otherValuesToBuckets := pe.Value.(*lib.OrderedMap)
for pf := otherValuesToBuckets.Head; pf != nil; pf = pf.Next {
var buffer bytes.Buffer
bucket := pf.Value.(*tNestBucket)
outrec := bucket.representative
bucket.representative = nil // ownership transfer
i := 0
for pg := bucket.pairs.Front(); pg != nil; pg = pg.Next() {
pr := pg.Value.(*mlrval.Mlrmap)
if i > 0 {
buffer.WriteString(tr.nestedFS)
}
i++
buffer.WriteString(pr.Head.Value.String())
}
// tr.fieldName was already present so we'll overwrite it in-place here.
outrec.PutReference(tr.fieldName, mlrval.FromString(buffer.String()))
outputRecordsAndContexts.PushBack(types.NewRecordAndContext(outrec, &inrecAndContext.Context))
}
}
outputRecordsAndContexts.PushBack(inrecAndContext) // emit end-of-stream marker
}
}
type tNestBucket struct {
representative *mlrval.Mlrmap
pairs *list.List
}
func newNestBucket(representative *mlrval.Mlrmap) *tNestBucket {
return &tNestBucket{
representative: representative,
pairs: list.New(),
}
}