]> sigrok.org Git - libsigrok.git/blame - src/output/ascii.c
Build: Set local include directories in Makefile.am
[libsigrok.git] / src / output / ascii.c
CommitLineData
6f64ebb2
BV
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2011 HÃ¥vard Espeland <gus@ping.uio.no>
5 * Copyright (C) 2014 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 3 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, see <http://www.gnu.org/licenses/>.
19 */
20
21#include <stdlib.h>
22#include <string.h>
23#include <glib.h>
c1aae900 24#include <libsigrok/libsigrok.h>
6f64ebb2
BV
25#include "libsigrok-internal.h"
26
27#define LOG_PREFIX "output/hex"
28
29#define DEFAULT_SAMPLES_PER_LINE 74
30
31struct context {
32 unsigned int num_enabled_channels;
dcc55fe9 33 int spl;
6f64ebb2
BV
34 int bit_cnt;
35 int spl_cnt;
36 int trigger;
787e9bc9 37 uint64_t samplerate;
6f64ebb2
BV
38 int *channel_index;
39 char **channel_names;
40 char **line_values;
41 uint8_t *prev_sample;
787e9bc9 42 gboolean header_done;
6f64ebb2
BV
43 GString **lines;
44 GString *header;
45};
46
a755b0e1 47static int init(struct sr_output *o, GHashTable *options)
6f64ebb2
BV
48{
49 struct context *ctx;
50 struct sr_channel *ch;
51 GSList *l;
6f64ebb2 52 unsigned int i, j;
6f64ebb2
BV
53
54 if (!o || !o->sdi)
55 return SR_ERR_ARG;
dba3e682 56
6f64ebb2 57 ctx = g_malloc0(sizeof(struct context));
d686c5ec 58 o->priv = ctx;
6f64ebb2 59 ctx->trigger = -1;
dcc55fe9 60 ctx->spl = g_variant_get_uint32(g_hash_table_lookup(options, "width"));
6f64ebb2
BV
61
62 for (l = o->sdi->channels; l; l = l->next) {
63 ch = l->data;
64 if (ch->type != SR_CHANNEL_LOGIC)
65 continue;
66 if (!ch->enabled)
67 continue;
68 ctx->num_enabled_channels++;
69 }
70 ctx->channel_index = g_malloc(sizeof(int) * ctx->num_enabled_channels);
71 ctx->channel_names = g_malloc(sizeof(char *) * ctx->num_enabled_channels);
72 ctx->lines = g_malloc(sizeof(GString *) * ctx->num_enabled_channels);
73 ctx->prev_sample = g_malloc(g_slist_length(o->sdi->channels));
74
75 j = 0;
76 for (i = 0, l = o->sdi->channels; l; l = l->next, i++) {
77 ch = l->data;
78 if (ch->type != SR_CHANNEL_LOGIC)
79 continue;
80 if (!ch->enabled)
81 continue;
82 ctx->channel_index[j] = ch->index;
83 ctx->channel_names[j] = ch->name;
84 ctx->lines[j] = g_string_sized_new(80);
85 g_string_printf(ctx->lines[j], "%s:", ch->name);
86 j++;
87 }
88
787e9bc9
BV
89 return SR_OK;
90}
91
a755b0e1 92static GString *gen_header(const struct sr_output *o)
787e9bc9
BV
93{
94 struct context *ctx;
95 GVariant *gvar;
96 GString *header;
97 int num_channels;
98 char *samplerate_s;
99
d686c5ec 100 ctx = o->priv;
787e9bc9
BV
101 if (ctx->samplerate == 0) {
102 if (sr_config_get(o->sdi->driver, o->sdi, NULL, SR_CONF_SAMPLERATE,
103 &gvar) == SR_OK) {
104 ctx->samplerate = g_variant_get_uint64(gvar);
105 g_variant_unref(gvar);
106 }
107 }
108
109 header = g_string_sized_new(512);
110 g_string_printf(header, "%s\n", PACKAGE_STRING);
6f64ebb2 111 num_channels = g_slist_length(o->sdi->channels);
787e9bc9
BV
112 g_string_append_printf(header, "Acquisition with %d/%d channels",
113 ctx->num_enabled_channels, num_channels);
114 if (ctx->samplerate != 0) {
115 samplerate_s = sr_samplerate_string(ctx->samplerate);
116 g_string_append_printf(header, " at %s", samplerate_s);
6f64ebb2 117 g_free(samplerate_s);
6f64ebb2 118 }
787e9bc9 119 g_string_append_printf(header, "\n");
6f64ebb2 120
787e9bc9 121 return header;
6f64ebb2
BV
122}
123
a755b0e1 124static int receive(const struct sr_output *o, const struct sr_datafeed_packet *packet,
dba3e682 125 GString **out)
6f64ebb2 126{
787e9bc9 127 const struct sr_datafeed_meta *meta;
6f64ebb2 128 const struct sr_datafeed_logic *logic;
787e9bc9
BV
129 const struct sr_config *src;
130 GSList *l;
6f64ebb2
BV
131 struct context *ctx;
132 int idx, offset, curbit, prevbit;
133 uint64_t i, j;
134 gchar *p, c;
135
6f64ebb2
BV
136 *out = NULL;
137 if (!o || !o->sdi)
138 return SR_ERR_ARG;
d686c5ec 139 if (!(ctx = o->priv))
6f64ebb2
BV
140 return SR_ERR_ARG;
141
142 switch (packet->type) {
787e9bc9
BV
143 case SR_DF_META:
144 meta = packet->payload;
145 for (l = meta->config; l; l = l->next) {
146 src = l->data;
147 if (src->key != SR_CONF_SAMPLERATE)
148 continue;
149 ctx->samplerate = g_variant_get_uint64(src->data);
150 }
151 break;
6f64ebb2
BV
152 case SR_DF_TRIGGER:
153 ctx->trigger = ctx->spl_cnt;
154 break;
155 case SR_DF_LOGIC:
787e9bc9
BV
156 if (!ctx->header_done) {
157 *out = gen_header(o);
158 ctx->header_done = TRUE;
6f64ebb2
BV
159 } else
160 *out = g_string_sized_new(512);
161
162 logic = packet->payload;
163 for (i = 0; i <= logic->length - logic->unitsize; i += logic->unitsize) {
164 ctx->spl_cnt++;
165 for (j = 0; j < ctx->num_enabled_channels; j++) {
166 idx = ctx->channel_index[j];
167 p = logic->data + i + idx / 8;
168 curbit = *p & (1 << (idx % 8));
169 prevbit = (ctx->prev_sample[idx / 8] & ((uint8_t) 1 << (idx % 8)));
170
171 c = curbit ? '"' : '.';
172 if (ctx->spl_cnt > 1) {
173 if (curbit < prevbit)
174 c = '\\';
175 else if (curbit > prevbit)
176 c = '/';
177 }
178 g_string_append_c(ctx->lines[j], c);
179
dcc55fe9 180 if (ctx->spl_cnt == ctx->spl) {
6f64ebb2
BV
181 /* Flush line buffers. */
182 g_string_append_len(*out, ctx->lines[j]->str, ctx->lines[j]->len);
183 g_string_append_c(*out, '\n');
184 if (j == ctx->num_enabled_channels - 1 && ctx->trigger > -1) {
185 offset = ctx->trigger + ctx->trigger / 8;
186 g_string_append_printf(*out, "T:%*s^ %d\n", offset, "", ctx->trigger);
187 ctx->trigger = -1;
188 }
189 g_string_printf(ctx->lines[j], "%s:", ctx->channel_names[j]);
190 }
191 }
dcc55fe9 192 if (ctx->spl_cnt == ctx->spl)
6f64ebb2
BV
193 /* Line buffers were already flushed. */
194 ctx->spl_cnt = 0;
195 memcpy(ctx->prev_sample, logic->data + i, logic->unitsize);
196 }
197 break;
198 case SR_DF_END:
199 if (ctx->spl_cnt) {
200 /* Line buffers need flushing. */
201 *out = g_string_sized_new(512);
202 for (i = 0; i < ctx->num_enabled_channels; i++) {
203 g_string_append_len(*out, ctx->lines[i]->str, ctx->lines[i]->len);
204 g_string_append_c(*out, '\n');
205 }
206 }
207 break;
208 }
209
210 return SR_OK;
211}
212
213static int cleanup(struct sr_output *o)
214{
215 struct context *ctx;
216 unsigned int i;
217
218 if (!o)
219 return SR_ERR_ARG;
220
d686c5ec 221 if (!(ctx = o->priv))
6f64ebb2
BV
222 return SR_OK;
223
6f64ebb2
BV
224 g_free(ctx->channel_index);
225 g_free(ctx->prev_sample);
226 g_free(ctx->channel_names);
227 for (i = 0; i < ctx->num_enabled_channels; i++)
228 g_string_free(ctx->lines[i], TRUE);
229 g_free(ctx->lines);
6f64ebb2 230 g_free(ctx);
d686c5ec 231 o->priv = NULL;
6f64ebb2
BV
232
233 return SR_OK;
234}
235
a755b0e1
BV
236static struct sr_option options[] = {
237 { "width", "Width", "Number of samples per line", NULL, NULL },
1685c276 238 ALL_ZERO
a755b0e1
BV
239};
240
af7d656d 241static const struct sr_option *get_options(void)
a755b0e1 242{
950043c3
BV
243 if (!options[0].def) {
244 options[0].def = g_variant_new_uint32(DEFAULT_SAMPLES_PER_LINE);
245 g_variant_ref_sink(options[0].def);
246 }
a755b0e1
BV
247
248 return options;
249}
250
251SR_PRIV struct sr_output_module output_ascii = {
6f64ebb2 252 .id = "ascii",
a755b0e1
BV
253 .name = "ASCII",
254 .desc = "ASCII art",
8a174d23 255 .exts = (const char*[]){"txt", NULL},
3cd4b381 256 .flags = 0,
a755b0e1 257 .options = get_options,
6f64ebb2
BV
258 .init = init,
259 .receive = receive,
260 .cleanup = cleanup,
261};