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
|
package input
import (
"container/list"
"fmt"
"github.com/johnkerl/miller/v6/pkg/bifs"
"github.com/johnkerl/miller/v6/pkg/cli"
"github.com/johnkerl/miller/v6/pkg/mlrval"
"github.com/johnkerl/miller/v6/pkg/types"
)
type PseudoReaderGen struct {
readerOptions *cli.TReaderOptions
recordsPerBatch int64 // distinct from readerOptions.RecordsPerBatch for join/repl
}
func NewPseudoReaderGen(
readerOptions *cli.TReaderOptions,
recordsPerBatch int64,
) (*PseudoReaderGen, error) {
return &PseudoReaderGen{
readerOptions: readerOptions,
recordsPerBatch: recordsPerBatch,
}, nil
}
func (reader *PseudoReaderGen) Read(
filenames []string, // ignored
context types.Context,
readerChannel chan<- *list.List, // list of *types.RecordAndContext
errorChannel chan error,
downstreamDoneChannel <-chan bool, // for mlr head
) {
reader.process(&context, readerChannel, errorChannel, downstreamDoneChannel)
readerChannel <- types.NewEndOfStreamMarkerList(&context)
}
func (reader *PseudoReaderGen) process(
context *types.Context,
readerChannel chan<- *list.List, // list of *types.RecordAndContext
errorChannel chan error,
downstreamDoneChannel <-chan bool, // for mlr head
) {
context.UpdateForStartOfFile("(gen-pseudo-reader)")
recordsPerBatch := reader.recordsPerBatch
start, err := reader.tryParse("start", reader.readerOptions.GeneratorOptions.StartAsString)
if err != nil {
errorChannel <- err
return
}
step, err := reader.tryParse("step", reader.readerOptions.GeneratorOptions.StepAsString)
if err != nil {
errorChannel <- err
return
}
stop, err := reader.tryParse("stop", reader.readerOptions.GeneratorOptions.StopAsString)
if err != nil {
errorChannel <- err
return
}
var doneComparator mlrval.CmpFuncBool = mlrval.GreaterThan
if step.GetNumericNegativeorDie() {
doneComparator = mlrval.LessThan
}
key := reader.readerOptions.GeneratorOptions.FieldName
value := start.Copy()
recordsAndContexts := list.New()
eof := false
for !eof {
if doneComparator(value, stop) {
break
}
record := mlrval.NewMlrmap()
record.PutCopy(key, value)
context.UpdateForInputRecord()
recordsAndContexts.PushBack(types.NewRecordAndContext(record, context))
if int64(recordsAndContexts.Len()) >= recordsPerBatch {
readerChannel <- recordsAndContexts
recordsAndContexts = list.New()
// See if downstream processors will be ignoring further data (e.g.
// mlr head). If so, stop reading. This makes 'mlr head hugefile'
// exit quickly, as it should. Check this only every so often to
// avoid goroutine-scheduler thrash.
eof := false
select {
case <-downstreamDoneChannel:
eof = true
break
default:
break
}
if eof {
break
}
}
value = bifs.BIF_plus_binary(value, step)
}
if recordsAndContexts.Len() > 0 {
readerChannel <- recordsAndContexts
}
}
func (reader *PseudoReaderGen) tryParse(
name string,
svalue string,
) (*mlrval.Mlrval, error) {
mvalue := mlrval.FromDeferredType(svalue)
if mvalue == nil || !mvalue.IsNumeric() {
return nil, fmt.Errorf("mlr: gen: %s \"%s\" is not parseable as number", name, svalue)
}
return mvalue, nil
}
//#include <stdio.h>
//#include <stdlib.h>
//#include "lib/mlr_globals.h"
//#include "lib/mlrutil.h"
//#include "input/lrec_readers.h"
//
//typedef struct _lrec_reader_gen_state_t {
// char* field_name;
// unsigned long long start;
// unsigned long long stop;
// unsigned long long step;
// unsigned long long current_value;
//} lrec_reader_gen_state_t;
//
//static void lrec_reader_gen_free(lrec_reader_t* preader);
//static void* lrec_reader_gen_open(void* pvstate, char* prepipe, char* filename);
//static void lrec_reader_gen_close(void* pvstate, void* pvhandle, char* prepipe);
//static void lrec_reader_gen_sof(void* pvstate, void* pvhandle);
//static lrec_t* lrec_reader_gen_process(void* pvstate, void* pvhandle, context_t* pctx);
//
//// ----------------------------------------------------------------
//lrec_reader_t* lrec_reader_gen_alloc(char* field_name,
// unsigned long long start, unsigned long long stop, unsigned long long step)
//{
// lrec_reader_t* plrec_reader = mlr_malloc_or_die(sizeof(lrec_reader_t));
//
// lrec_reader_gen_state_t* pstate = mlr_malloc_or_die(sizeof(lrec_reader_gen_state_t));
// pstate->field_name = field_name;
// pstate->start = start;
// pstate->stop = stop;
// pstate->step = step;
// pstate->current_value = start;
//
// plrec_reader->pvstate = (void*)pstate;
// plrec_reader->popen_func = lrec_reader_gen_open;
// plrec_reader->pclose_func = lrec_reader_gen_close;
// plrec_reader->pprocess_func = lrec_reader_gen_process;
// plrec_reader->psof_func = lrec_reader_gen_sof;
// plrec_reader->pfree_func = lrec_reader_gen_free;
//
// return plrec_reader;
//}
//
//static void* lrec_reader_gen_open(void* pvstate, char* prepipe, char* filename) {
// return NULL;
//}
//
//static void lrec_reader_gen_close(void* pvstate, void* pvhandle, char* prepipe) {
//}
//
//static void lrec_reader_gen_free(lrec_reader_t* preader) {
// free(preader->pvstate);
// free(preader);
//}
//
//static void lrec_reader_gen_sof(void* pvstate, void* pvhandle) {
// lrec_reader_gen_state_t* pstate = pvstate;
// pstate->current_value = pstate->start;
//}
//
//// ----------------------------------------------------------------
//static lrec_t* lrec_reader_gen_process(void* pvstate, void* pvhandle, context_t* pctx) {
// lrec_reader_gen_state_t* pstate = pvstate;
// if (pstate->current_value > pstate->stop) {
// return NULL;
// }
//
// lrec_t* prec = lrec_unbacked_alloc();
// char* key = pstate->field_name;
// char* value = mlr_alloc_string_from_ll(pstate->current_value);
// pstate->current_value += pstate->step;
//
// lrec_put(prec, key, value, FREE_ENTRY_VALUE);
//
// return prec;
//}
|