X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-cli.git;a=blobdiff_plain;f=session.c;h=d201492b01ed1464cfe85804ea7d1f23715a206c;hp=7c66659614d7c7673b41b54af44c8f2c115a2e2d;hb=7c6a0420448760fc138cbe38579a5c9e0a46132c;hpb=4bf77ec67e693aa08f5b72b71fff9943df8a65e7 diff --git a/session.c b/session.c index 7c66659..d201492 100644 --- a/session.c +++ b/session.c @@ -23,7 +23,6 @@ #include #include -static struct sr_output_format *output_format = NULL; static int default_output_format = FALSE; static uint64_t limit_samples = 0; static uint64_t limit_frames = 0; @@ -72,12 +71,40 @@ static int set_limit_time(const struct sr_dev_inst *sdi) return SR_OK; } -struct sr_output *setup_output_format(const struct sr_dev_inst *sdi) +GHashTable *generic_arg_to_opt(const struct sr_option **opts, GHashTable *genargs) { - GHashTable *fmtargs; - struct sr_output *o; - struct sr_output_format **outputs; - int i; + GHashTable *hash; + GVariant *gvar; + const struct sr_option *opt; + char *s; + + hash = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, + (GDestroyNotify)g_variant_unref); + for (opt = opts[0]; opt; opt++) { + if (!(s = g_hash_table_lookup(genargs, opt->id))) + continue; + if (g_variant_is_of_type(opt->def, G_VARIANT_TYPE_UINT32)) { + gvar = g_variant_new_uint32(strtoul(s, NULL, 10)); + g_hash_table_insert(hash, g_strdup(opt->id), + g_variant_ref_sink(gvar)); + } else if (g_variant_is_of_type(opt->def, G_VARIANT_TYPE_DOUBLE)) { + gvar = g_variant_new_double(strtod(s, NULL)); + g_hash_table_insert(hash, g_strdup(opt->id), + g_variant_ref_sink(gvar)); + } else { + g_critical("Don't know GVariant type for option '%s'!", opt->id); + } + } + + return hash; +} + +const struct sr_output *setup_output_format(const struct sr_dev_inst *sdi) +{ + const struct sr_output_module *omod; + const struct sr_option **options; + const struct sr_output *o; + GHashTable *fmtargs, *fmtopts; char *fmtspec; if (opt_output_format && !strcmp(opt_output_format, "sigrok")) { @@ -99,17 +126,17 @@ struct sr_output *setup_output_format(const struct sr_dev_inst *sdi) fmtspec = g_hash_table_lookup(fmtargs, "sigrok_key"); if (!fmtspec) g_critical("Invalid output format."); - outputs = sr_output_list(); - for (i = 0; outputs[i]; i++) { - if (strcmp(outputs[i]->id, fmtspec)) - continue; - g_hash_table_remove(fmtargs, "sigrok_key"); - output_format = outputs[i]; - break; - } - if (!output_format) - g_critical("Invalid output format '%s'.", opt_output_format); - o = sr_output_new(output_format, fmtargs, sdi); + if (!(omod = sr_output_find(fmtspec))) + g_critical("Unknown output module '%s'.", fmtspec); + g_hash_table_remove(fmtargs, "sigrok_key"); + if ((options = sr_output_options_get(omod))) { + fmtopts = generic_arg_to_opt(options, fmtargs); + sr_output_options_free(options); + } else + fmtopts = NULL; + o = sr_output_new(omod, fmtopts, sdi); + if (fmtopts) + g_hash_table_destroy(fmtopts); g_hash_table_destroy(fmtargs); return o; @@ -124,7 +151,8 @@ void datafeed_in(const struct sr_dev_inst *sdi, struct sr_session *session; struct sr_config *src; struct sr_channel *ch; - static struct sr_output *o = NULL; + static const struct sr_output *o = NULL; + static const struct sr_output *oa = NULL; static uint64_t rcvd_samples_logic = 0; static uint64_t rcvd_samples_analog = 0; static uint64_t samplerate = 0; @@ -146,7 +174,11 @@ void datafeed_in(const struct sr_dev_inst *sdi, switch (packet->type) { case SR_DF_HEADER: g_debug("cli: Received SR_DF_HEADER."); - o = setup_output_format(sdi); + if (!(o = setup_output_format(sdi))) + g_critical("Failed to initialize output module."); + + /* Set up backup analog output module. */ + oa = sr_output_new(sr_output_find("analog"), NULL, sdi); /* Prepare non-stdout output. */ outfile = stdout; @@ -292,10 +324,19 @@ void datafeed_in(const struct sr_dev_inst *sdi, } if (o && outfile && !opt_pds) { - if (sr_output_send(o, packet, &out) == SR_OK && out) { - fwrite(out->str, 1, out->len, outfile); - fflush(outfile); - g_string_free(out, TRUE); + if (sr_output_send(o, packet, &out) == SR_OK) { + if (!out || (out->len == 0 && default_output_format + && packet->type == SR_DF_ANALOG)) { + /* The user didn't specify an output module, + * but needs to see this analog data. */ + sr_output_send(oa, packet, &out); + } + if (out && out->len > 0) { + fwrite(out->str, 1, out->len, outfile); + fflush(outfile); + } + if (out) + g_string_free(out, TRUE); } } @@ -308,6 +349,9 @@ void datafeed_in(const struct sr_dev_inst *sdi, sr_output_free(o); o = NULL; + sr_output_free(oa); + oa = NULL; + if (outfile && outfile != stdout) fclose(outfile); @@ -457,9 +501,11 @@ void run_session(void) } if (g_slist_length(devices) > 1) { g_critical("sigrok-cli only supports one device for capturing."); + g_slist_free(devices); return; } sdi = devices->data; + g_slist_free(devices); sr_session_new(&session); sr_session_datafeed_callback_add(session, datafeed_in, NULL); @@ -574,7 +620,6 @@ void run_session(void) sr_session_datafeed_callback_remove_all(session); sr_session_destroy(session); - g_slist_free(devices); } @@ -589,6 +634,12 @@ void save_chunk_logic(struct sr_session *session, uint8_t *data, if (!buf) buf = g_malloc(SAVE_CHUNK_SIZE); + while (data_len > SAVE_CHUNK_SIZE) { + save_chunk_logic(session, data, SAVE_CHUNK_SIZE, unitsize); + data += SAVE_CHUNK_SIZE; + data_len -= SAVE_CHUNK_SIZE; + } + if (buf_len + data_len > SAVE_CHUNK_SIZE) { max = (SAVE_CHUNK_SIZE - buf_len) / unitsize * unitsize; memcpy(buf + buf_len, data, max);