]> sigrok.org Git - libsigrok.git/blame_incremental - src/output/bits.c
device.c: Whitespace/cosmetics and typo fixes.
[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);
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 offset = ctx->trigger + ctx->trigger / 8;
172 g_string_append_printf(*out, "T:%*s^ %d\n", offset, "", ctx->trigger);
173 ctx->trigger = -1;
174 }
175 g_string_printf(ctx->lines[j], "%s:", ctx->channel_names[j]);
176 } else if ((ctx->spl_cnt & 7) == 0) {
177 /* Add a space every 8th bit. */
178 g_string_append_c(ctx->lines[j], ' ');
179 }
180 }
181 if (ctx->spl_cnt == ctx->spl)
182 /* Line buffers were already flushed. */
183 ctx->spl_cnt = 0;
184 }
185 break;
186 case SR_DF_END:
187 if (ctx->spl_cnt) {
188 /* Line buffers need flushing. */
189 *out = g_string_sized_new(512);
190 for (i = 0; i < ctx->num_enabled_channels; i++) {
191 g_string_append_len(*out, ctx->lines[i]->str, ctx->lines[i]->len);
192 g_string_append_c(*out, '\n');
193 }
194 }
195 break;
196 }
197
198 return SR_OK;
199}
200
201static int cleanup(struct sr_output *o)
202{
203 struct context *ctx;
204 unsigned int i;
205
206 if (!o)
207 return SR_ERR_ARG;
208
209 if (!(ctx = o->priv))
210 return SR_OK;
211
212 g_free(ctx->channel_index);
213 g_free(ctx->channel_names);
214 for (i = 0; i < ctx->num_enabled_channels; i++)
215 g_string_free(ctx->lines[i], TRUE);
216 g_free(ctx->lines);
217 g_free(ctx);
218 o->priv = NULL;
219
220 return SR_OK;
221}
222
223static struct sr_option options[] = {
224 { "width", "Width", "Number of samples per line", NULL, NULL },
225 ALL_ZERO
226};
227
228static const struct sr_option *get_options(void)
229{
230 if (!options[0].def) {
231 options[0].def = g_variant_new_uint32(DEFAULT_SAMPLES_PER_LINE);
232 g_variant_ref_sink(options[0].def);
233 }
234
235 return options;
236}
237
238SR_PRIV struct sr_output_module output_bits = {
239 .id = "bits",
240 .name = "Bits",
241 .desc = "0/1 digits",
242 .exts = (const char*[]){"txt", NULL},
243 .flags = 0,
244 .options = get_options,
245 .init = init,
246 .receive = receive,
247 .cleanup = cleanup,
248};