]> sigrok.org Git - libsigrok.git/blame - output/ols.c
probe_groups: API changes required to implement probe groups.
[libsigrok.git] / output / ols.c
CommitLineData
ab224f7b 1/*
50985c20 2 * This file is part of the libsigrok project.
ab224f7b
UH
3 *
4 * Copyright (C) 2011 Uwe Hermann <uwe@hermann-uwe.de>
13d8e03c 5 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
ab224f7b
UH
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22/*
305bde4d
BV
23 * This implements version 1.3 of the output format for the OpenBench Logic
24 * Sniffer "Alternative" Java client. Details:
25 * https://github.com/jawi/ols/wiki/OLS-data-file-format
ab224f7b
UH
26 */
27
28#include <stdlib.h>
29#include <string.h>
30#include <glib.h>
45c59c8b
BV
31#include "libsigrok.h"
32#include "libsigrok-internal.h"
ab224f7b 33
29a27196
UH
34/* Message logging helpers with subsystem-specific prefix string. */
35#define LOG_PREFIX "output/ols: "
36#define sr_log(l, s, args...) sr_log(l, LOG_PREFIX s, ## args)
37#define sr_spew(s, args...) sr_spew(LOG_PREFIX s, ## args)
38#define sr_dbg(s, args...) sr_dbg(LOG_PREFIX s, ## args)
39#define sr_info(s, args...) sr_info(LOG_PREFIX s, ## args)
40#define sr_warn(s, args...) sr_warn(LOG_PREFIX s, ## args)
41#define sr_err(s, args...) sr_err(LOG_PREFIX s, ## args)
a944a84b 42
ab224f7b 43struct context {
17f63de6 44 uint64_t samplerate;
6e738600 45 uint64_t num_samples;
ab224f7b
UH
46};
47
6e738600
BV
48static int init(struct sr_output *o)
49{
50 struct context *ctx;
ab224f7b 51
b53738ba 52 if (!(ctx = g_try_malloc(sizeof(struct context)))) {
a944a84b 53 sr_err("%s: ctx malloc failed", __func__);
6e738600 54 return SR_ERR_MALLOC;
b53738ba 55 }
6e738600 56 o->internal = ctx;
305bde4d 57
17f63de6 58 ctx->samplerate = 0;
6e738600 59 ctx->num_samples = 0;
3292535c
BV
60
61 return SR_OK;
62}
63
64static GString *gen_header(const struct sr_dev_inst *sdi, struct context *ctx)
65{
66 struct sr_probe *probe;
67 GSList *l;
68 GString *s;
69 GVariant *gvar;
70 int num_enabled_probes;
71
8f996b89
ML
72 if (!ctx->samplerate && sr_config_get(sdi->driver, sdi, NULL,
73 SR_CONF_SAMPLERATE, &gvar) == SR_OK) {
3292535c
BV
74 ctx->samplerate = g_variant_get_uint64(gvar);
75 g_variant_unref(gvar);
76 }
77
6e738600 78 num_enabled_probes = 0;
3292535c 79 for (l = sdi->probes; l; l = l->next) {
6e738600
BV
80 probe = l->data;
81 if (probe->enabled)
82 num_enabled_probes++;
ab224f7b
UH
83 }
84
3292535c
BV
85 s = g_string_sized_new(512);
86 g_string_append_printf(s, ";Rate: %"PRIu64"\n", ctx->samplerate);
87 g_string_append_printf(s, ";Channels: %d\n", num_enabled_probes);
88 g_string_append_printf(s, ";EnabledChannels: -1\n");
89 g_string_append_printf(s, ";Compressed: true\n");
90 g_string_append_printf(s, ";CursorEnabled: false\n");
305bde4d 91
3292535c 92 return s;
ab224f7b
UH
93}
94
17f63de6
BV
95static int receive(struct sr_output *o, const struct sr_dev_inst *sdi,
96 const struct sr_datafeed_packet *packet, GString **out)
ab224f7b
UH
97{
98 struct context *ctx;
3292535c
BV
99 const struct sr_datafeed_meta *meta;
100 const struct sr_datafeed_logic *logic;
101 const struct sr_config *src;
102 GSList *l;
3292535c
BV
103 unsigned int i, j;
104 uint8_t c;
ab224f7b 105
17f63de6 106 *out = NULL;
3292535c 107 if (!o || !o->sdi)
17f63de6 108 return SR_ERR_ARG;
ab224f7b 109 ctx = o->internal;
6e738600 110
3292535c 111 switch (packet->type) {
17f63de6 112 case SR_DF_META:
3292535c
BV
113 meta = packet->payload;
114 for (l = meta->config; l; l = l->next) {
115 src = l->data;
116 if (src->key == SR_CONF_SAMPLERATE)
117 ctx->samplerate = g_variant_get_uint64(src->data);
118 }
17f63de6
BV
119 break;
120 case SR_DF_LOGIC:
3292535c
BV
121 logic = packet->payload;
122 if (ctx->num_samples == 0) {
123 /* First logic packet in the feed. */
17f63de6 124 *out = gen_header(sdi, ctx);
3292535c 125 } else
17f63de6 126 *out = g_string_sized_new(512);
3292535c
BV
127 for (i = 0; i <= logic->length - logic->unitsize; i += logic->unitsize) {
128 for (j = 0; j < logic->unitsize; j++) {
129 /* The OLS format wants the samples presented MSB first. */
130 c = *((uint8_t *)logic->data + i + logic->unitsize - 1 - j);
17f63de6 131 g_string_append_printf(*out, "%02x", c);
3292535c 132 }
17f63de6 133 g_string_append_printf(*out, "@%"PRIu64"\n", ctx->num_samples++);
3292535c
BV
134 }
135 break;
ab224f7b
UH
136 }
137
17f63de6 138 return SR_OK;
ab224f7b
UH
139}
140
3292535c 141static int cleanup(struct sr_output *o)
ab224f7b
UH
142{
143 struct context *ctx;
3292535c
BV
144
145 if (!o || !o->sdi)
146 return SR_ERR_ARG;
ab224f7b
UH
147
148 ctx = o->internal;
17f63de6
BV
149 g_free(ctx);
150 o->internal = NULL;
ab224f7b 151
e46b8fb1 152 return SR_OK;
ab224f7b
UH
153}
154
7c1d391c 155SR_PRIV struct sr_output_format output_ols = {
cdb3573c 156 .id = "ols",
d494a4aa
UH
157 .description = "OpenBench Logic Sniffer",
158 .df_type = SR_DF_LOGIC,
159 .init = init,
17f63de6 160 .receive = receive,
3292535c 161 .cleanup = cleanup
ab224f7b 162};