miller/c/mapping/mapper_fill_down.c
John Kerl d00e6cf1d2
mlr fill-down --all feature (#509)
* fill-down --all, Go impl
* fill-down --all, C impl
2021-05-02 11:11:49 -04:00

173 lines
6.2 KiB
C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include "lib/mlrutil.h"
#include "containers/sllv.h"
#include "containers/lhmss.h"
#include "containers/mixutil.h"
#include "mapping/mappers.h"
#include "cli/argparse.h"
typedef struct _mapper_fill_down_state_t {
ap_state_t* pargp;
slls_t* pfill_down_field_names;
lhmss_t* plast_non_null_values;
int do_all;
int only_if_absent;
} mapper_fill_down_state_t;
static void mapper_fill_down_usage(FILE* o, char* argv0, char* verb);
static mapper_t* mapper_fill_down_parse_cli(int* pargi, int argc, char** argv,
cli_reader_opts_t* _, cli_writer_opts_t* __);
static mapper_t* mapper_fill_down_alloc(ap_state_t* pargp, slls_t* pfill_down_field_names,
int do_all, int only_if_absent);
static void mapper_fill_down_free(mapper_t* pmapper, context_t* _);
static sllv_t* mapper_fill_down_specified_process(lrec_t* pinrec, context_t* pctx, void* pvstate);
static sllv_t* mapper_fill_down_all_process(lrec_t* pinrec, context_t* pctx, void* pvstate);
// ----------------------------------------------------------------
mapper_setup_t mapper_fill_down_setup = {
.verb = "fill-down",
.pusage_func = mapper_fill_down_usage,
.pparse_func = mapper_fill_down_parse_cli,
.ignores_input = FALSE,
};
// ----------------------------------------------------------------
static void mapper_fill_down_usage(FILE* o, char* argv0, char* verb) {
fprintf(o, "Usage: %s %s [options]\n", argv0, verb);
fprintf(o, "If a given record has a missing value for a given field, fill that from\n");
fprintf(o, "the corresponding value from a previous record, if any.\n");
fprintf(o, "By default, a 'missing' field either is absent, or has the empty-string value.\n");
fprintf(o, "With -a, a field is 'missing' only if it is absent.\n");
fprintf(o, "\n");
fprintf(o, "Options:\n");
fprintf(o, " --all Operate on all fields in the input.\n");
fprintf(o, " -a|--only-if-absent If a given record has a missing value for a given field,\n");
fprintf(o, " fill that from the corresponding value from a previous record, if any.\n");
fprintf(o, " By default, a 'missing' field either is absent, or has the empty-string value.\n");
fprintf(o, " With -a, a field is 'missing' only if it is absent.\n");
fprintf(o, " -f Field names for fill-down.\n");
fprintf(o, " -h|--help Show this message.\n");
}
static mapper_t* mapper_fill_down_parse_cli(int* pargi, int argc, char** argv,
cli_reader_opts_t* _, cli_writer_opts_t* __)
{
slls_t* pfill_down_field_names = NULL;
int do_all = FALSE;
int only_if_absent = FALSE;
char* verb = argv[(*pargi)++];
ap_state_t* pstate = ap_alloc();
ap_define_string_list_flag(pstate, "-f", &pfill_down_field_names);
ap_define_true_flag(pstate, "-a", &only_if_absent);
ap_define_true_flag(pstate, "--all", &do_all);
ap_define_true_flag(pstate, "--only-if-absent", &only_if_absent);
if (!ap_parse(pstate, verb, pargi, argc, argv)) {
mapper_fill_down_usage(stderr, argv[0], verb);
return NULL;
}
if (!do_all && (pfill_down_field_names == NULL)) {
mapper_fill_down_usage(stderr, argv[0], verb);
return NULL;
}
return mapper_fill_down_alloc(pstate, pfill_down_field_names, do_all, only_if_absent);
}
// ----------------------------------------------------------------
static mapper_t* mapper_fill_down_alloc(ap_state_t* pargp, slls_t* pfill_down_field_names,
int do_all, int only_if_absent)
{
mapper_t* pmapper = mlr_malloc_or_die(sizeof(mapper_t));
mapper_fill_down_state_t* pstate = mlr_malloc_or_die(sizeof(mapper_fill_down_state_t));
pstate->pargp = pargp;
pstate->pfill_down_field_names = pfill_down_field_names;
pstate->plast_non_null_values = lhmss_alloc();
pstate->only_if_absent = only_if_absent;
pmapper->pvstate = pstate;
pmapper->pprocess_func = do_all ? mapper_fill_down_all_process : mapper_fill_down_specified_process;
pmapper->pfree_func = mapper_fill_down_free;
return pmapper;
}
static void mapper_fill_down_free(mapper_t* pmapper, context_t* _) {
mapper_fill_down_state_t* pstate = pmapper->pvstate;
slls_free(pstate->pfill_down_field_names);
lhmss_free(pstate->plast_non_null_values);
ap_free(pstate->pargp);
free(pstate);
free(pmapper);
}
// ----------------------------------------------------------------
static sllv_t* mapper_fill_down_specified_process(lrec_t* pinrec, context_t* pctx, void* pvstate) {
mapper_fill_down_state_t* pstate = pvstate;
if (pinrec == NULL) { // end of record stream
return sllv_single(NULL);
}
for (sllse_t* pe = pstate->pfill_down_field_names->phead; pe != NULL; pe = pe->pnext) {
char* pkey = pe->value;
char* pvalue = lrec_get(pinrec, pkey);
int present = (pstate->only_if_absent)
? (pvalue != NULL)
: (pvalue != NULL && *pvalue);
if (present) {
// Remember it for a subsequent record lacking this field
lhmss_put(pstate->plast_non_null_values,
mlr_strdup_or_die(pkey),
mlr_strdup_or_die(pvalue),
FREE_ENTRY_KEY | FREE_ENTRY_VALUE);
} else {
// Reuse previously seen value, if any
char* prev = lhmss_get(pstate->plast_non_null_values, pkey);
if (prev != NULL) {
lrec_put(pinrec, mlr_strdup_or_die(pkey), mlr_strdup_or_die(prev),
FREE_ENTRY_KEY | FREE_ENTRY_VALUE);
}
}
}
return sllv_single(pinrec);
}
// ----------------------------------------------------------------
static sllv_t* mapper_fill_down_all_process(lrec_t* pinrec, context_t* pctx, void* pvstate) {
mapper_fill_down_state_t* pstate = pvstate;
if (pinrec == NULL) { // end of record stream
return sllv_single(NULL);
}
for (lrece_t* pe = pinrec->phead; pe != NULL; pe = pe->pnext) {
char* pkey = pe->key;
char* pvalue = lrec_get(pinrec, pkey);
int present = (pstate->only_if_absent)
? (pvalue != NULL)
: (pvalue != NULL && *pvalue);
if (present) {
// Remember it for a subsequent record lacking this field
lhmss_put(pstate->plast_non_null_values,
mlr_strdup_or_die(pkey),
mlr_strdup_or_die(pvalue),
FREE_ENTRY_KEY | FREE_ENTRY_VALUE);
} else {
// Reuse previously seen value, if any
char* prev = lhmss_get(pstate->plast_non_null_values, pkey);
if (prev != NULL) {
lrec_put(pinrec, mlr_strdup_or_die(pkey), mlr_strdup_or_die(prev),
FREE_ENTRY_KEY | FREE_ENTRY_VALUE);
}
}
}
return sllv_single(pinrec);
}