X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Finput%2Fbinary.c;h=5d5fc865b2fe1a51228e61d09a87c2d5f0976c30;hb=1b40fdb88108699cf9d912f3d7aadffb4dc04050;hp=15dc0da191702b75291377d4ae05bcd621f1f83e;hpb=d0181813315114b88ad38cf276045ee5c311ca3c;p=libsigrok.git diff --git a/src/input/binary.c b/src/input/binary.c index 15dc0da1..5d5fc865 100644 --- a/src/input/binary.c +++ b/src/input/binary.c @@ -50,7 +50,7 @@ static int init(struct sr_input *in, GHashTable *options) return SR_ERR_ARG; } - in->sdi = sr_dev_inst_new(SR_ST_ACTIVE, NULL, NULL, NULL); + in->sdi = g_malloc0(sizeof(struct sr_dev_inst)); in->priv = inc = g_malloc0(sizeof(struct context)); inc->samplerate = g_variant_get_uint64(g_hash_table_lookup(options, "samplerate")); @@ -64,7 +64,7 @@ static int init(struct sr_input *in, GHashTable *options) return SR_OK; } -static int receive(struct sr_input *in, GString *buf) +static int process_buffer(struct sr_input *in) { struct sr_datafeed_packet packet; struct sr_datafeed_meta meta; @@ -72,20 +72,9 @@ static int receive(struct sr_input *in, GString *buf) struct sr_config *src; struct context *inc; gsize chunk_size, i; - int chunk, num_channels; + int chunk; inc = in->priv; - - g_string_append_len(in->buf, buf->str, buf->len); - - num_channels = g_slist_length(in->sdi->channels); - - if (!in->sdi_ready) { - /* sdi is ready, notify frontend. */ - in->sdi_ready = TRUE; - return SR_OK; - } - if (!inc->started) { std_session_send_df_header(in->sdi, LOG_PREFIX); @@ -103,12 +92,11 @@ static int receive(struct sr_input *in, GString *buf) packet.type = SR_DF_LOGIC; packet.payload = &logic; - logic.unitsize = (num_channels + 7) / 8; + logic.unitsize = (g_slist_length(in->sdi->channels) + 7) / 8; /* Cut off at multiple of unitsize. */ chunk_size = in->buf->len / logic.unitsize * logic.unitsize; - chunk = 0; for (i = 0; i < chunk_size; i += chunk) { logic.data = in->buf->str + i; chunk = MIN(MAX_CHUNK_SIZE, chunk_size - i); @@ -120,23 +108,41 @@ static int receive(struct sr_input *in, GString *buf) return SR_OK; } -static int cleanup(struct sr_input *in) +static int receive(struct sr_input *in, GString *buf) +{ + int ret; + + g_string_append_len(in->buf, buf->str, buf->len); + + if (!in->sdi_ready) { + /* sdi is ready, notify frontend. */ + in->sdi_ready = TRUE; + return SR_OK; + } + + ret = process_buffer(in); + + return ret; +} + +static int end(struct sr_input *in) { struct context *inc; struct sr_datafeed_packet packet; + int ret; - inc = in->priv; - if (!inc) - return SR_OK; + if (in->sdi_ready) + ret = process_buffer(in); + else + ret = SR_OK; + inc = in->priv; if (inc->started) { packet.type = SR_DF_END; sr_session_send(in->sdi, &packet); } - g_free(in->priv); - in->priv = NULL; - return SR_OK; + return ret; } static struct sr_option options[] = { @@ -162,5 +168,5 @@ SR_PRIV struct sr_input_module input_binary = { .options = get_options, .init = init, .receive = receive, - .cleanup = cleanup, + .end = end, };