]> sigrok.org Git - libsigrok.git/blob - src/output/bits.c
e9eace0793702f7b8d531426767e40403f540329
[libsigrok.git] / src / output / bits.c
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 <stdlib.h>
21 #include <string.h>
22 #include <glib.h>
23 #include "libsigrok.h"
24 #include "libsigrok-internal.h"
25
26 #define LOG_PREFIX "output/bits"
27
28 #define DEFAULT_SAMPLES_PER_LINE 64
29
30 struct context {
31         unsigned int num_enabled_channels;
32         int samples_per_line;
33         int spl_cnt;
34         int trigger;
35         uint64_t samplerate;
36         int *channel_index;
37         char **channel_names;
38         gboolean header_done;
39         GString **lines;
40 };
41
42 static int init(struct sr_output *o, GHashTable *options)
43 {
44         struct context *ctx;
45         struct sr_channel *ch;
46         GSList *l;
47         GHashTableIter iter;
48         gpointer key, value;
49         unsigned int i, j;
50         uint32_t spl;
51
52         if (!o || !o->sdi)
53                 return SR_ERR_ARG;
54
55         spl = DEFAULT_SAMPLES_PER_LINE;
56         if (options) {
57                 g_hash_table_iter_init(&iter, options);
58                 while (g_hash_table_iter_next(&iter, &key, &value)) {
59                         if (!strcmp(key, "width")) {
60                                 if (!g_variant_is_of_type(value, G_VARIANT_TYPE_UINT32)) {
61                                         sr_err("Invalid type for 'width' option.");
62                                         return SR_ERR_ARG;
63                                 }
64                                 if (!(spl = g_variant_get_uint32(value))) {
65                                         sr_err("Invalid width.");
66                                         return SR_ERR_ARG;
67                                 }
68                         } else {
69                                 sr_err("Unknown option '%s'.", key);
70                         }
71                 }
72         }
73
74         ctx = g_malloc0(sizeof(struct context));
75         o->priv = ctx;
76         ctx->trigger = -1;
77         ctx->samples_per_line = spl;
78
79         for (l = o->sdi->channels; l; l = l->next) {
80                 ch = l->data;
81                 if (ch->type != SR_CHANNEL_LOGIC)
82                         continue;
83                 if (!ch->enabled)
84                         continue;
85                 ctx->num_enabled_channels++;
86         }
87         ctx->channel_index = g_malloc(sizeof(int) * ctx->num_enabled_channels);
88         ctx->channel_names = g_malloc(sizeof(char *) * ctx->num_enabled_channels);
89         ctx->lines = g_malloc(sizeof(GString *) * ctx->num_enabled_channels);
90
91         j = 0;
92         for (i = 0, l = o->sdi->channels; l; l = l->next, i++) {
93                 ch = l->data;
94                 if (ch->type != SR_CHANNEL_LOGIC)
95                         continue;
96                 if (!ch->enabled)
97                         continue;
98                 ctx->channel_index[j] = ch->index;
99                 ctx->channel_names[j] = ch->name;
100                 ctx->lines[j] = g_string_sized_new(80);
101                 g_string_printf(ctx->lines[j], "%s:", ch->name);
102                 j++;
103         }
104
105         return SR_OK;
106 }
107
108 static GString *gen_header(const struct sr_output *o)
109 {
110         struct context *ctx;
111         GVariant *gvar;
112         GString *header;
113         int num_channels;
114         char *samplerate_s;
115
116         ctx = o->priv;
117         if (ctx->samplerate == 0) {
118                 if (sr_config_get(o->sdi->driver, o->sdi, NULL, SR_CONF_SAMPLERATE,
119                                 &gvar) == SR_OK) {
120                         ctx->samplerate = g_variant_get_uint64(gvar);
121                         g_variant_unref(gvar);
122                 }
123         }
124
125         header = g_string_sized_new(512);
126         g_string_printf(header, "%s\n", PACKAGE_STRING);
127         num_channels = g_slist_length(o->sdi->channels);
128         g_string_append_printf(header, "Acquisition with %d/%d channels",
129                         ctx->num_enabled_channels, num_channels);
130         if (ctx->samplerate != 0) {
131                 samplerate_s = sr_samplerate_string(ctx->samplerate);
132                 g_string_append_printf(header, " at %s", samplerate_s);
133                 g_free(samplerate_s);
134         }
135         g_string_append_printf(header, "\n");
136
137         return header;
138 }
139
140 static int receive(const struct sr_output *o, const struct sr_datafeed_packet *packet,
141                 GString **out)
142 {
143         const struct sr_datafeed_meta *meta;
144         const struct sr_datafeed_logic *logic;
145         const struct sr_config *src;
146         struct context *ctx;
147         GSList *l;
148         int idx, offset;
149         uint64_t i, j;
150         gchar *p, c;
151
152         *out = NULL;
153         if (!o || !o->sdi)
154                 return SR_ERR_ARG;
155         if (!(ctx = o->priv))
156                 return SR_ERR_ARG;
157
158         switch (packet->type) {
159         case SR_DF_META:
160                 meta = packet->payload;
161                 for (l = meta->config; l; l = l->next) {
162                         src = l->data;
163                         if (src->key != SR_CONF_SAMPLERATE)
164                                 continue;
165                         ctx->samplerate = g_variant_get_uint64(src->data);
166                 }
167                 break;
168         case SR_DF_TRIGGER:
169                 ctx->trigger = ctx->spl_cnt;
170                 break;
171         case SR_DF_LOGIC:
172                 if (!ctx->header_done) {
173                         *out = gen_header(o);
174                         ctx->header_done = TRUE;
175                 } else
176                         *out = g_string_sized_new(512);
177
178                 logic = packet->payload;
179                 for (i = 0; i <= logic->length - logic->unitsize; i += logic->unitsize) {
180                         ctx->spl_cnt++;
181                         for (j = 0; j < ctx->num_enabled_channels; j++) {
182                                 idx = ctx->channel_index[j];
183                                 p = logic->data + i + idx / 8;
184                                 c = (*p & (1 << (idx % 8))) ? '1' : '0';
185                                 g_string_append_c(ctx->lines[j], c);
186
187                                 if (ctx->spl_cnt == ctx->samples_per_line) {
188                                         /* Flush line buffers. */
189                                         g_string_append_len(*out, ctx->lines[j]->str, ctx->lines[j]->len);
190                                         g_string_append_c(*out, '\n');
191                                         if (j == ctx->num_enabled_channels  - 1 && ctx->trigger > -1) {
192                                                 offset = ctx->trigger + ctx->trigger / 8;
193                                                 g_string_append_printf(*out, "T:%*s^ %d\n", offset, "", ctx->trigger);
194                                                 ctx->trigger = -1;
195                                         }
196                                         g_string_printf(ctx->lines[j], "%s:", ctx->channel_names[j]);
197                                 } else if ((ctx->spl_cnt & 7) == 0) {
198                                         /* Add a space every 8th bit. */
199                                         g_string_append_c(ctx->lines[j], ' ');
200                                 }
201                         }
202                         if (ctx->spl_cnt == ctx->samples_per_line)
203                                 /* Line buffers were already flushed. */
204                                 ctx->spl_cnt = 0;
205                 }
206                 break;
207         case SR_DF_END:
208                 if (ctx->spl_cnt) {
209                         /* Line buffers need flushing. */
210                         *out = g_string_sized_new(512);
211                         for (i = 0; i < ctx->num_enabled_channels; i++) {
212                                 g_string_append_len(*out, ctx->lines[i]->str, ctx->lines[i]->len);
213                                 g_string_append_c(*out, '\n');
214                         }
215                 }
216                 break;
217         }
218
219         return SR_OK;
220 }
221
222 static int cleanup(struct sr_output *o)
223 {
224         struct context *ctx;
225         unsigned int i;
226
227         if (!o)
228                 return SR_ERR_ARG;
229
230         if (!(ctx = o->priv))
231                 return SR_OK;
232
233         g_free(ctx->channel_index);
234         g_free(ctx->channel_names);
235         for (i = 0; i < ctx->num_enabled_channels; i++)
236                 g_string_free(ctx->lines[i], TRUE);
237         g_free(ctx->lines);
238         g_free(ctx);
239         o->priv = NULL;
240
241         return SR_OK;
242 }
243
244 static struct sr_option options[] = {
245         { "width", "Width", "Number of samples per line", NULL, NULL },
246         { 0 }
247 };
248
249 static struct sr_option *get_options(gboolean cached)
250 {
251         if (cached)
252                 return options;
253
254         options[0].def = g_variant_new_uint32(DEFAULT_SAMPLES_PER_LINE);
255         g_variant_ref_sink(options[0].def);
256
257         return options;
258 }
259
260 SR_PRIV struct sr_output_module output_bits = {
261         .id = "bits",
262         .name = "Bits",
263         .desc = "0/1 digits",
264         .options = get_options,
265         .init = init,
266         .receive = receive,
267         .cleanup = cleanup,
268 };