]> sigrok.org Git - libsigrok.git/blame_incremental - src/output/ols.c
output/wav: Drop support for SR_DF_ANALOG_OLD.
[libsigrok.git] / src / output / ols.c
... / ...
CommitLineData
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2011 Uwe Hermann <uwe@hermann-uwe.de>
5 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
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/*
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
26 */
27
28#include <config.h>
29#include <stdlib.h>
30#include <string.h>
31#include <glib.h>
32#include <libsigrok/libsigrok.h>
33#include "libsigrok-internal.h"
34
35#define LOG_PREFIX "output/ols"
36
37struct context {
38 uint64_t samplerate;
39 uint64_t num_samples;
40};
41
42static int init(struct sr_output *o, GHashTable *options)
43{
44 struct context *ctx;
45
46 (void)options;
47
48 ctx = g_malloc0(sizeof(struct context));
49 o->priv = ctx;
50 ctx->samplerate = 0;
51 ctx->num_samples = 0;
52
53 return SR_OK;
54}
55
56static GString *gen_header(const struct sr_dev_inst *sdi, struct context *ctx)
57{
58 struct sr_channel *ch;
59 GSList *l;
60 GString *s;
61 GVariant *gvar;
62 int num_enabled_channels;
63
64 if (!ctx->samplerate && sr_config_get(sdi->driver, sdi, NULL,
65 SR_CONF_SAMPLERATE, &gvar) == SR_OK) {
66 ctx->samplerate = g_variant_get_uint64(gvar);
67 g_variant_unref(gvar);
68 }
69
70 num_enabled_channels = 0;
71 for (l = sdi->channels; l; l = l->next) {
72 ch = l->data;
73 if (ch->type != SR_CHANNEL_LOGIC)
74 continue;
75 if (!ch->enabled)
76 continue;
77 num_enabled_channels++;
78 }
79
80 s = g_string_sized_new(512);
81 g_string_append_printf(s, ";Rate: %"PRIu64"\n", ctx->samplerate);
82 g_string_append_printf(s, ";Channels: %d\n", num_enabled_channels);
83 g_string_append_printf(s, ";EnabledChannels: -1\n");
84 g_string_append_printf(s, ";Compressed: true\n");
85 g_string_append_printf(s, ";CursorEnabled: false\n");
86
87 return s;
88}
89
90static int receive(const struct sr_output *o, const struct sr_datafeed_packet *packet,
91 GString **out)
92{
93 struct context *ctx;
94 const struct sr_datafeed_meta *meta;
95 const struct sr_datafeed_logic *logic;
96 const struct sr_config *src;
97 GSList *l;
98 unsigned int i, j;
99 uint8_t c;
100
101 *out = NULL;
102 if (!o || !o->sdi)
103 return SR_ERR_ARG;
104 ctx = o->priv;
105
106 switch (packet->type) {
107 case SR_DF_META:
108 meta = packet->payload;
109 for (l = meta->config; l; l = l->next) {
110 src = l->data;
111 if (src->key == SR_CONF_SAMPLERATE)
112 ctx->samplerate = g_variant_get_uint64(src->data);
113 }
114 break;
115 case SR_DF_LOGIC:
116 logic = packet->payload;
117 if (ctx->num_samples == 0) {
118 /* First logic packet in the feed. */
119 *out = gen_header(o->sdi, ctx);
120 } else
121 *out = g_string_sized_new(512);
122 for (i = 0; i <= logic->length - logic->unitsize; i += logic->unitsize) {
123 for (j = 0; j < logic->unitsize; j++) {
124 /* The OLS format wants the samples presented MSB first. */
125 c = *((uint8_t *)logic->data + i + logic->unitsize - 1 - j);
126 g_string_append_printf(*out, "%02x", c);
127 }
128 g_string_append_printf(*out, "@%"PRIu64"\n", ctx->num_samples++);
129 }
130 break;
131 }
132
133 return SR_OK;
134}
135
136static int cleanup(struct sr_output *o)
137{
138 struct context *ctx;
139
140 if (!o || !o->sdi)
141 return SR_ERR_ARG;
142
143 ctx = o->priv;
144 g_free(ctx);
145 o->priv = NULL;
146
147 return SR_OK;
148}
149
150SR_PRIV struct sr_output_module output_ols = {
151 .id = "ols",
152 .name = "OLS",
153 .desc = "OpenBench Logic Sniffer",
154 .exts = (const char*[]){"ols", NULL},
155 .flags = 0,
156 .options = NULL,
157 .init = init,
158 .receive = receive,
159 .cleanup = cleanup
160};