]> sigrok.org Git - libsigrok.git/blame_incremental - src/output/bits.c
Don't reference SR_PACKAGE_VERSION_STRING directly in output modules.
[libsigrok.git] / src / output / bits.c
... / ...
CommitLineData
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2014 Bert Vermeulen <bert@biot.com>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <config.h>
21#include <stdlib.h>
22#include <string.h>
23#include <glib.h>
24#include <libsigrok/libsigrok.h>
25#include "libsigrok-internal.h"
26
27#define LOG_PREFIX "output/bits"
28
29#define DEFAULT_SAMPLES_PER_LINE 64
30
31struct context {
32 unsigned int num_enabled_channels;
33 int spl;
34 int spl_cnt;
35 int trigger;
36 uint64_t samplerate;
37 int *channel_index;
38 char **channel_names;
39 gboolean header_done;
40 GString **lines;
41};
42
43static int init(struct sr_output *o, GHashTable *options)
44{
45 struct context *ctx;
46 struct sr_channel *ch;
47 GSList *l;
48 unsigned int i, j;
49
50 if (!o || !o->sdi)
51 return SR_ERR_ARG;
52
53 ctx = g_malloc0(sizeof(struct context));
54 o->priv = ctx;
55 ctx->trigger = -1;
56 ctx->spl = g_variant_get_uint32(g_hash_table_lookup(options, "width"));
57
58 for (l = o->sdi->channels; l; l = l->next) {
59 ch = l->data;
60 if (ch->type != SR_CHANNEL_LOGIC)
61 continue;
62 if (!ch->enabled)
63 continue;
64 ctx->num_enabled_channels++;
65 }
66 ctx->channel_index = g_malloc(sizeof(int) * ctx->num_enabled_channels);
67 ctx->channel_names = g_malloc(sizeof(char *) * ctx->num_enabled_channels);
68 ctx->lines = g_malloc(sizeof(GString *) * ctx->num_enabled_channels);
69
70 j = 0;
71 for (i = 0, l = o->sdi->channels; l; l = l->next, i++) {
72 ch = l->data;
73 if (ch->type != SR_CHANNEL_LOGIC)
74 continue;
75 if (!ch->enabled)
76 continue;
77 ctx->channel_index[j] = ch->index;
78 ctx->channel_names[j] = ch->name;
79 ctx->lines[j] = g_string_sized_new(80);
80 g_string_printf(ctx->lines[j], "%s:", ch->name);
81 j++;
82 }
83
84 return SR_OK;
85}
86
87static GString *gen_header(const struct sr_output *o)
88{
89 struct context *ctx;
90 GVariant *gvar;
91 GString *header;
92 int num_channels;
93 char *samplerate_s;
94
95 ctx = o->priv;
96 if (ctx->samplerate == 0) {
97 if (sr_config_get(o->sdi->driver, o->sdi, NULL, SR_CONF_SAMPLERATE,
98 &gvar) == SR_OK) {
99 ctx->samplerate = g_variant_get_uint64(gvar);
100 g_variant_unref(gvar);
101 }
102 }
103
104 header = g_string_sized_new(512);
105 g_string_printf(header, "%s %s\n", PACKAGE_NAME, sr_package_version_string_get());
106 num_channels = g_slist_length(o->sdi->channels);
107 g_string_append_printf(header, "Acquisition with %d/%d channels",
108 ctx->num_enabled_channels, num_channels);
109 if (ctx->samplerate != 0) {
110 samplerate_s = sr_samplerate_string(ctx->samplerate);
111 g_string_append_printf(header, " at %s", samplerate_s);
112 g_free(samplerate_s);
113 }
114 g_string_append_printf(header, "\n");
115
116 return header;
117}
118
119static int receive(const struct sr_output *o, const struct sr_datafeed_packet *packet,
120 GString **out)
121{
122 const struct sr_datafeed_meta *meta;
123 const struct sr_datafeed_logic *logic;
124 const struct sr_config *src;
125 struct context *ctx;
126 GSList *l;
127 int idx, offset;
128 uint64_t i, j;
129 gchar *p, c;
130
131 *out = NULL;
132 if (!o || !o->sdi)
133 return SR_ERR_ARG;
134 if (!(ctx = o->priv))
135 return SR_ERR_ARG;
136
137 switch (packet->type) {
138 case SR_DF_META:
139 meta = packet->payload;
140 for (l = meta->config; l; l = l->next) {
141 src = l->data;
142 if (src->key != SR_CONF_SAMPLERATE)
143 continue;
144 ctx->samplerate = g_variant_get_uint64(src->data);
145 }
146 break;
147 case SR_DF_TRIGGER:
148 ctx->trigger = ctx->spl_cnt;
149 break;
150 case SR_DF_LOGIC:
151 if (!ctx->header_done) {
152 *out = gen_header(o);
153 ctx->header_done = TRUE;
154 } else
155 *out = g_string_sized_new(512);
156
157 logic = packet->payload;
158 for (i = 0; i <= logic->length - logic->unitsize; i += logic->unitsize) {
159 ctx->spl_cnt++;
160 for (j = 0; j < ctx->num_enabled_channels; j++) {
161 idx = ctx->channel_index[j];
162 p = logic->data + i + idx / 8;
163 c = (*p & (1 << (idx % 8))) ? '1' : '0';
164 g_string_append_c(ctx->lines[j], c);
165
166 if (ctx->spl_cnt == ctx->spl) {
167 /* Flush line buffers. */
168 g_string_append_len(*out, ctx->lines[j]->str, ctx->lines[j]->len);
169 g_string_append_c(*out, '\n');
170 if (j == ctx->num_enabled_channels - 1 && ctx->trigger > -1) {
171 /*
172 * Sample data lines have one character per bit,
173 * plus one separator per byte. Align trigger marker
174 * to this layout.
175 */
176 offset = ctx->trigger + ctx->trigger / 8;
177 g_string_append_printf(*out, "T:%*s^ %d\n", offset, "", ctx->trigger);
178 ctx->trigger = -1;
179 }
180 g_string_printf(ctx->lines[j], "%s:", ctx->channel_names[j]);
181 } else if ((ctx->spl_cnt & 7) == 0) {
182 /* Add a space every 8th bit. */
183 g_string_append_c(ctx->lines[j], ' ');
184 }
185 }
186 if (ctx->spl_cnt == ctx->spl)
187 /* Line buffers were already flushed. */
188 ctx->spl_cnt = 0;
189 }
190 break;
191 case SR_DF_END:
192 if (ctx->spl_cnt) {
193 /* Line buffers need flushing. */
194 *out = g_string_sized_new(512);
195 for (i = 0; i < ctx->num_enabled_channels; i++) {
196 g_string_append_len(*out, ctx->lines[i]->str, ctx->lines[i]->len);
197 g_string_append_c(*out, '\n');
198 }
199 }
200 break;
201 }
202
203 return SR_OK;
204}
205
206static int cleanup(struct sr_output *o)
207{
208 struct context *ctx;
209 unsigned int i;
210
211 if (!o)
212 return SR_ERR_ARG;
213
214 if (!(ctx = o->priv))
215 return SR_OK;
216
217 g_free(ctx->channel_index);
218 g_free(ctx->channel_names);
219 for (i = 0; i < ctx->num_enabled_channels; i++)
220 g_string_free(ctx->lines[i], TRUE);
221 g_free(ctx->lines);
222 g_free(ctx);
223 o->priv = NULL;
224
225 return SR_OK;
226}
227
228static struct sr_option options[] = {
229 { "width", "Width", "Number of samples per line", NULL, NULL },
230 ALL_ZERO
231};
232
233static const struct sr_option *get_options(void)
234{
235 if (!options[0].def) {
236 options[0].def = g_variant_new_uint32(DEFAULT_SAMPLES_PER_LINE);
237 g_variant_ref_sink(options[0].def);
238 }
239
240 return options;
241}
242
243SR_PRIV struct sr_output_module output_bits = {
244 .id = "bits",
245 .name = "Bits",
246 .desc = "0/1 digits logic data",
247 .exts = (const char*[]){"txt", NULL},
248 .flags = 0,
249 .options = get_options,
250 .init = init,
251 .receive = receive,
252 .cleanup = cleanup,
253};