]> sigrok.org Git - libsigrok.git/blob - output/output_text.c
output_text: More error handling.
[libsigrok.git] / output / output_text.c
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2010 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 <stdio.h>
22 #include <string.h>
23 #include <glib.h>
24 #include <sigrok.h>
25 #include "config.h"
26
27 #define DEFAULT_BPL_BITS 64
28 #define DEFAULT_BPL_HEX  256
29
30 struct context {
31         unsigned int num_enabled_probes;
32         int samples_per_line;
33         unsigned int unitsize;
34         int line_offset;
35         int linebuf_len;
36         char *probelist[65];
37         char *linebuf;
38         int spl_cnt;
39         uint8_t *linevalues;
40         char *header;
41         int mark_trigger;
42 };
43
44 static void flush_linebufs(struct context *ctx, char *outbuf)
45 {
46         static int max_probename_len = 0;
47         int len, i;
48
49         if (ctx->linebuf[0] == 0)
50                 return;
51
52         if (max_probename_len == 0) {
53                 /* First time through... */
54                 for (i = 0; ctx->probelist[i]; i++) {
55                         len = strlen(ctx->probelist[i]);
56                         if (len > max_probename_len)
57                                 max_probename_len = len;
58                 }
59         }
60
61         for (i = 0; ctx->probelist[i]; i++) {
62                 sprintf(outbuf + strlen(outbuf), "%*s:%s\n", max_probename_len,
63                         ctx->probelist[i], ctx->linebuf + i * ctx->linebuf_len);
64         }
65
66         /* Mark trigger with a ^ character. */
67         if (ctx->mark_trigger != -1)
68                 sprintf(outbuf + strlen(outbuf), "T:%*s^\n",
69                         ctx->mark_trigger + (ctx->mark_trigger / 8), "");
70
71         memset(ctx->linebuf, 0, i * ctx->linebuf_len);
72 }
73
74 static int init(struct output *o, int default_spl)
75 {
76         struct context *ctx;
77         struct probe *probe;
78         GSList *l;
79         uint64_t samplerate;
80         int num_probes;
81         char *samplerate_s;
82
83         if (!(ctx = calloc(1, sizeof(struct context))))
84                 return SIGROK_ERR_MALLOC;
85
86         o->internal = ctx;
87         ctx->num_enabled_probes = 0;
88
89         for (l = o->device->probes; l; l = l->next) {
90                 probe = l->data;
91                 if (probe->enabled)
92                         ctx->probelist[ctx->num_enabled_probes++] = probe->name;
93         }
94
95         ctx->probelist[ctx->num_enabled_probes] = 0;
96         ctx->unitsize = (ctx->num_enabled_probes + 7) / 8;
97         ctx->line_offset = 0;
98         ctx->spl_cnt = 0;
99         ctx->mark_trigger = -1;
100
101         if (o->param && o->param[0])
102                 ctx->samples_per_line = strtoul(o->param, NULL, 10);
103         else
104                 ctx->samples_per_line = default_spl;
105
106         if (!(ctx->header = malloc(512))) {
107                 free(ctx);
108                 return SIGROK_ERR_MALLOC;
109         }
110
111         snprintf(ctx->header, 511, "%s\n", PACKAGE_STRING);
112         if (o->device->plugin) {
113                 num_probes = g_slist_length(o->device->probes);
114                 samplerate = *((uint64_t *) o->device->plugin->get_device_info(
115                                 o->device->plugin_index, DI_CUR_SAMPLERATE));
116                 if (!(samplerate_s = sigrok_samplerate_string(samplerate))) {
117                         free(ctx->header);
118                         free(ctx);
119                         return SIGROK_ERR;
120                 }
121                 snprintf(ctx->header + strlen(ctx->header),
122                          511 - strlen(ctx->header),
123                          "Acquisition with %d/%d probes at %s\n",
124                          ctx->num_enabled_probes, num_probes, samplerate_s);
125                 free(samplerate_s);
126         }
127
128         ctx->linebuf_len = ctx->samples_per_line * 2;
129         if (!(ctx->linebuf = calloc(1, num_probes * ctx->linebuf_len))) {
130                 free(ctx->header);
131                 free(ctx);
132                 return SIGROK_ERR_MALLOC;
133         }
134         if (!(ctx->linevalues = calloc(1, num_probes))) {
135                 free(ctx->header);
136                 free(ctx);
137                 return SIGROK_ERR_MALLOC;
138         }
139
140         return SIGROK_OK;
141 }
142
143 static int event(struct output *o, int event_type, char **data_out,
144                  uint64_t *length_out)
145 {
146         struct context *ctx;
147         int outsize;
148         char *outbuf;
149
150         ctx = o->internal;
151         switch (event_type) {
152         case DF_TRIGGER:
153                 ctx->mark_trigger = ctx->spl_cnt;
154                 break;
155         case DF_END:
156                 outsize = ctx->num_enabled_probes
157                                 * (ctx->samples_per_line + 20) + 512;
158                 if (!(outbuf = calloc(1, outsize)))
159                         return SIGROK_ERR_MALLOC;
160                 flush_linebufs(ctx, outbuf);
161                 *data_out = outbuf;
162                 *length_out = strlen(outbuf);
163                 free(o->internal);
164                 o->internal = NULL;
165                 break;
166         }
167
168         return SIGROK_OK;
169 }
170
171 static int init_bits(struct output *o)
172 {
173         return init(o, DEFAULT_BPL_BITS);
174 }
175
176 static int data_bits(struct output *o, char *data_in, uint64_t length_in,
177                      char **data_out, uint64_t *length_out)
178 {
179         struct context *ctx;
180         unsigned int outsize, offset, p;
181         uint64_t sample;
182         char *outbuf;
183
184         ctx = o->internal;
185         outsize = length_in / ctx->unitsize * ctx->num_enabled_probes *
186                   ctx->samples_per_line + 512;
187
188         if (!(outbuf = calloc(1, outsize + 1)))
189                 return SIGROK_ERR_MALLOC;
190
191         outbuf[0] = '\0';
192         if (ctx->header) {
193                 /* The header is still here, this must be the first packet. */
194                 strncpy(outbuf, ctx->header, outsize);
195                 free(ctx->header);
196                 ctx->header = NULL;
197         }
198
199         if (length_in >= ctx->unitsize) {
200                 for (offset = 0; offset <= length_in - ctx->unitsize;
201                      offset += ctx->unitsize) {
202                         memcpy(&sample, data_in + offset, ctx->unitsize);
203                         for (p = 0; p < ctx->num_enabled_probes; p++) {
204                                 if (sample & ((uint64_t) 1 << p))
205                                         ctx->linebuf[p * ctx->linebuf_len +
206                                                      ctx->line_offset] = '1';
207                                 else
208                                         ctx->linebuf[p * ctx->linebuf_len +
209                                                      ctx->line_offset] = '0';
210                         }
211                         ctx->line_offset++;
212                         ctx->spl_cnt++;
213
214                         /* Add a space every 8th bit. */
215                         if ((ctx->spl_cnt & 7) == 0) {
216                                 for (p = 0; p < ctx->num_enabled_probes; p++)
217                                         ctx->linebuf[p * ctx->linebuf_len +
218                                                      ctx->line_offset] = ' ';
219                                 ctx->line_offset++;
220                         }
221
222                         /* End of line. */
223                         if (ctx->spl_cnt >= ctx->samples_per_line) {
224                                 flush_linebufs(ctx, outbuf);
225                                 ctx->line_offset = ctx->spl_cnt = 0;
226                                 ctx->mark_trigger = -1;
227                         }
228                 }
229         } else {
230                 g_message("short buffer (length_in=%" PRIu64 ")", length_in);
231         }
232
233         *data_out = outbuf;
234         *length_out = strlen(outbuf);
235
236         return SIGROK_OK;
237 }
238
239 static int init_hex(struct output *o)
240 {
241         return init(o, DEFAULT_BPL_BITS);
242 }
243
244 static int data_hex(struct output *o, char *data_in, uint64_t length_in,
245                     char **data_out, uint64_t *length_out)
246 {
247         struct context *ctx;
248         unsigned int outsize, offset, p;
249         uint64_t sample;
250         char *outbuf;
251
252         ctx = o->internal;
253         outsize = length_in / ctx->unitsize * ctx->num_enabled_probes *
254                   ctx->samples_per_line + 512;
255
256         if (!(outbuf = calloc(1, outsize + 1)))
257                 return SIGROK_ERR_MALLOC;
258
259         outbuf[0] = '\0';
260         if (ctx->header) {
261                 /* The header is still here, this must be the first packet. */
262                 strncpy(outbuf, ctx->header, outsize);
263                 free(ctx->header);
264                 ctx->header = NULL;
265         }
266
267         ctx->line_offset = 0;
268         for (offset = 0; offset <= length_in - ctx->unitsize;
269              offset += ctx->unitsize) {
270                 memcpy(&sample, data_in + offset, ctx->unitsize);
271                 for (p = 0; p < ctx->num_enabled_probes; p++) {
272                         ctx->linevalues[p] <<= 1;
273                         if (sample & ((uint64_t) 1 << p))
274                                 ctx->linevalues[p] |= 1;
275                         sprintf(ctx->linebuf + (p * ctx->linebuf_len) +
276                                 ctx->line_offset, "%.2x", ctx->linevalues[p]);
277                 }
278                 ctx->spl_cnt++;
279
280                 /* Add a space after every complete hex byte. */
281                 if ((ctx->spl_cnt & 7) == 0) {
282                         for (p = 0; p < ctx->num_enabled_probes; p++)
283                                 ctx->linebuf[p * ctx->linebuf_len +
284                                              ctx->line_offset + 2] = ' ';
285                         ctx->line_offset += 3;
286                 }
287
288                 /* End of line. */
289                 if (ctx->spl_cnt >= ctx->samples_per_line) {
290                         flush_linebufs(ctx, outbuf);
291                         ctx->line_offset = ctx->spl_cnt = 0;
292                 }
293         }
294
295         *data_out = outbuf;
296         *length_out = strlen(outbuf);
297
298         return SIGROK_OK;
299 }
300
301 struct output_format output_text_bits = {
302         "bits",
303         "Text (bits)",
304         init_bits,
305         data_bits,
306         event,
307 };
308
309 struct output_format output_text_hex = {
310         "hex",
311         "Text (hexadecimal)",
312         init_hex,
313         data_hex,
314         event,
315 };