X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=output%2Foutput_ols.c;h=5097de4b4c05a90f1f744c3e7025dab97be3b1e1;hb=b53738baf76219237e0a6629905981d7a1f2508e;hp=6c4876d47b80fed80ab32a2e78e85dbdb70f9978;hpb=5a2326a71b3a7d3bc6b367a7a3dfa6f137f5f0ec;p=libsigrok.git diff --git a/output/output_ols.c b/output/output_ols.c index 6c4876d4..5097de4b 100644 --- a/output/output_ols.c +++ b/output/output_ols.c @@ -2,6 +2,7 @@ * This file is part of the sigrok project. * * Copyright (C) 2011 Uwe Hermann + * Copyright (C) 2011 Bert Vermeulen * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -19,140 +20,61 @@ */ /* - * Output format for the OpenBench Logic Sniffer "Alternative" Java client. - * Details: https://github.com/jawi/ols/wiki/OLS-data-file-format + * This implements version 1.3 of the output format for the OpenBench Logic + * Sniffer "Alternative" Java client. Details: + * https://github.com/jawi/ols/wiki/OLS-data-file-format */ #include #include #include #include +#include #include "config.h" struct context { - unsigned int num_enabled_probes; + GString *header; + uint64_t num_samples; unsigned int unitsize; - char *probelist[MAX_NUM_PROBES + 1]; - char *header; }; -/* FIXME */ -#define MAX_HEADER_LEN 2048 - -/* TODO: Support cursors? */ -#define OLS_HEADER \ -"# Generated by: %s on %s%s\n" \ -"# Probe list used for capturing:\n" \ -"# Number:\tName:\n" \ -"%s" \ -";Size: %" PRIu64 "\n" \ -";Rate: %" PRIu64 "\n" \ -";Channels: %d\n" \ -";EnabledChannels: -1\n" \ -";Compressed: true\n" \ -";AbsoluteLength: %" PRIu64 "\n" \ -";CursorEnabled: false\n" \ -";Cursor0: -9223372036854775808\n" \ -";Cursor1: -9223372036854775808\n" \ -";Cursor2: -9223372036854775808\n" \ -";Cursor3: -9223372036854775808\n" \ -";Cursor4: -9223372036854775808\n" \ -";Cursor5: -9223372036854775808\n" \ -";Cursor6: -9223372036854775808\n" \ -";Cursor7: -9223372036854775808\n" \ -";Cursor8: -9223372036854775808\n" \ -";Cursor9: -9223372036854775808\n" - -const char *ols_header_comment = "\ -# Comment: Acquisition with %d/%d probes at %s"; - static int init(struct sr_output *o) { struct context *ctx; - struct probe *probe; + struct sr_probe *probe; GSList *l; uint64_t samplerate; - unsigned int i; - int b, num_probes; - char *c, *frequency_s; - char wbuf[1000], comment[128]; - time_t t; - - if (!(ctx = calloc(1, sizeof(struct context)))) - return SR_ERR_MALLOC; + int num_enabled_probes; - if (!(ctx->header = calloc(1, MAX_HEADER_LEN + 1))) { - free(ctx); + if (!(ctx = g_try_malloc(sizeof(struct context)))) { + sr_err("ols out: %s: ctx malloc failed", __func__); return SR_ERR_MALLOC; } - o->internal = ctx; - ctx->num_enabled_probes = 0; + + ctx->num_samples = 0; + num_enabled_probes = 0; for (l = o->device->probes; l; l = l->next) { probe = l->data; - if (!probe->enabled) - continue; - ctx->probelist[ctx->num_enabled_probes++] = probe->name; + if (probe->enabled) + num_enabled_probes++; } - ctx->probelist[ctx->num_enabled_probes] = 0; - ctx->unitsize = (ctx->num_enabled_probes + 7) / 8; - - num_probes = g_slist_length(o->device->probes); - comment[0] = '\0'; + ctx->unitsize = (num_enabled_probes + 7) / 8; - /* TODO: Currently not available in the demo module. */ - - if (o->device->plugin) { + if (o->device->plugin && sr_device_has_hwcap(o->device, SR_HWCAP_SAMPLERATE)) samplerate = *((uint64_t *) o->device->plugin->get_device_info( o->device->plugin_index, SR_DI_CUR_SAMPLERATE)); - if (!(frequency_s = sr_samplerate_string(samplerate))) { - free(ctx->header); - free(ctx); - return SR_ERR; - } - snprintf(comment, 127, ols_header_comment, - ctx->num_enabled_probes, num_probes, frequency_s); - free(frequency_s); - } - - /* Columns / channels */ - wbuf[0] = '\0'; - for (i = 0; i < ctx->num_enabled_probes; i++) { - c = (char *)&wbuf + strlen((char *)&wbuf); - sprintf(c, "# %d\t\t%s\n", i + 1, ctx->probelist[i]); - } - - if (!(frequency_s = sr_period_string(samplerate))) { - free(ctx->header); - free(ctx); - return SR_ERR; - } - - t = time(NULL); + else + samplerate = 0; - /* TODO: Special handling for the demo driver. */ - /* TODO: Don't hardcode numsamples! */ - /* TODO: Check if num_enabled_probes/channels setting is correct. */ - b = snprintf(ctx->header, MAX_HEADER_LEN, OLS_HEADER, - PACKAGE_STRING, ctime(&t), - comment, - (const char *)&wbuf, - (uint64_t)10000 /* numsamples */, - samplerate, - ctx->num_enabled_probes, - (uint64_t)10000 /* numsamples */); + ctx->header = g_string_sized_new(512); + g_string_append_printf(ctx->header, ";Rate: %"PRIu64"\n", samplerate); + g_string_append_printf(ctx->header, ";Channels: %d\n", num_enabled_probes); + g_string_append_printf(ctx->header, ";EnabledChannels: -1\n"); + g_string_append_printf(ctx->header, ";Compressed: true\n"); + g_string_append_printf(ctx->header, ";CursorEnabled: false\n"); - /* TODO: Yield errors on stuff the OLS format doesn't support. */ - - free(frequency_s); - - if (b < 0) { - free(ctx->header); - free(ctx); - return SR_ERR; - } - - return 0; + return SR_OK; } static int event(struct sr_output *o, int event_type, char **data_out, @@ -161,14 +83,12 @@ static int event(struct sr_output *o, int event_type, char **data_out, struct context *ctx; ctx = o->internal; - switch (event_type) { - case SR_DF_TRIGGER: - /* TODO */ - break; - case SR_DF_END: + + if (ctx && event_type == SR_DF_END) { + if (ctx->header) + g_string_free(ctx->header, TRUE); free(o->internal); o->internal = NULL; - break; } *data_out = NULL; @@ -177,52 +97,40 @@ static int event(struct sr_output *o, int event_type, char **data_out, return SR_OK; } -static int data(struct sr_output *o, char *data_in, uint64_t length_in, +static int data(struct sr_output *o, const char *data_in, uint64_t length_in, char **data_out, uint64_t *length_out) { + GString *out; struct context *ctx; - unsigned int max_linelen, outsize, i; uint64_t sample; - static uint64_t samplecount = 0; - char *outbuf, *c; + unsigned int i; ctx = o->internal; - max_linelen = 100; /* FIXME */ - outsize = length_in / ctx->unitsize * max_linelen; - if (ctx->header) - outsize += strlen(ctx->header); - - if (!(outbuf = calloc(1, outsize))) - return SR_ERR_MALLOC; - - outbuf[0] = '\0'; if (ctx->header) { - /* The header is still here, this must be the first packet. */ - strncpy(outbuf, ctx->header, outsize); - free(ctx->header); + /* first data packet */ + out = ctx->header; ctx->header = NULL; - } + } else + out = g_string_sized_new(512); for (i = 0; i <= length_in - ctx->unitsize; i += ctx->unitsize) { + sample = 0; memcpy(&sample, data_in + i, ctx->unitsize); - - c = outbuf + strlen(outbuf); - /* FIXME: OLS seems to only support 2^31 total samples? */ - sprintf(c, "%08x@%" PRIu64 "\n", (uint32_t)sample, - samplecount++); + g_string_append_printf(out, "%08x@%"PRIu64"\n", + (uint32_t) sample, ctx->num_samples++); } - - *data_out = outbuf; - *length_out = strlen(outbuf); + *data_out = out->str; + *length_out = out->len; + g_string_free(out, FALSE); return SR_OK; } struct sr_output_format output_ols = { - "ols", - "OpenBench Logic Sniffer", - SR_DF_LOGIC, - init, - data, - event, + .id = "ols", + .description = "OpenBench Logic Sniffer", + .df_type = SR_DF_LOGIC, + .init = init, + .data = data, + .event = event, };