]> sigrok.org Git - libsigrok.git/blame - output/output_vcd.c
Sigma: Limit number of edge triggers to 1.
[libsigrok.git] / output / output_vcd.c
CommitLineData
4c9ffa83
UH
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
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 2 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, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <stdlib.h>
22#include <string.h>
23#include <glib.h>
24#include <sigrok.h>
25#include "config.h"
26
27struct context {
28 int num_enabled_probes;
29 int unitsize;
30 char *probelist[65];
31 int *prevbits;
32 char *header;
4c9ffa83
UH
33};
34
35const char *vcd_header = "\
5cca9adb 36$date\n %s$end\n\
7aae7462 37$version\n %s\n$end\n%s\
4c9ffa83
UH
38$timescale\n %i %s\n$end\n\
39$scope module %s $end\n\
40%s\
41$upscope $end\n\
42$enddefinitions $end\n\
43$dumpvars\n";
44
7aae7462
BV
45const char *vcd_header_comment = "\
46$comment\n Acquisition with %d/%d probes at %s\n$end\n";
47
5a8fda15 48static int init(struct output *o)
4c9ffa83
UH
49{
50/* Maximum header length */
51#define MAX_HEADER_LEN 2048
52
53 struct context *ctx;
54 struct probe *probe;
55 GSList *l;
56 uint64_t samplerate;
57 int i, b, num_probes;
25e7d9b1 58 char *c, *samplerate_s;
7aae7462 59 char wbuf[1000], comment[128];
5cca9adb 60 time_t t;
4c9ffa83 61
6b5e3cee 62 if (!(ctx = calloc(1, sizeof(struct context))))
e31b636d 63 return SIGROK_ERR_MALLOC;
757b8c62 64
4c9ffa83
UH
65 o->internal = ctx;
66 ctx->num_enabled_probes = 0;
757b8c62 67
4c9ffa83
UH
68 for (l = o->device->probes; l; l = l->next) {
69 probe = l->data;
757b8c62
UH
70 if (!probe->enabled)
71 continue;
72 ctx->probelist[ctx->num_enabled_probes++] = probe->name;
4c9ffa83
UH
73 }
74
75 ctx->probelist[ctx->num_enabled_probes] = 0;
76 ctx->unitsize = (ctx->num_enabled_probes + 7) / 8;
77
78 /* TODO: Allow for configuration via o->param. */
79
6b5e3cee
UH
80 if (!(ctx->header = calloc(1, MAX_HEADER_LEN + 1))) {
81 free(ctx);
e31b636d 82 return SIGROK_ERR_MALLOC;
6b5e3cee 83 }
4c9ffa83 84 num_probes = g_slist_length(o->device->probes);
4c9ffa83 85
6b5e3cee 86 comment[0] = '\0';
7aae7462
BV
87 if (o->device->plugin) {
88 /* TODO: Handle num_probes == 0, too many probes, etc. */
6b5e3cee 89 /* TODO: Error handling. */
7aae7462
BV
90 samplerate = *((uint64_t *) o->device->plugin->get_device_info(
91 o->device->plugin_index, DI_CUR_SAMPLERATE));
6b5e3cee
UH
92 if (!((samplerate_s = sigrok_samplerate_string(samplerate)))) {
93 free(ctx->header);
94 free(ctx);
7aae7462 95 return SIGROK_ERR;
6b5e3cee
UH
96 }
97 /* TODO: Handle sprintf() errors. */
98 snprintf(comment, 127, vcd_header_comment,
99 ctx->num_enabled_probes, num_probes, samplerate_s);
7aae7462
BV
100 free(samplerate_s);
101 }
4c9ffa83
UH
102
103 /* Wires / channels */
104 wbuf[0] = '\0';
bc010c05 105 for (i = 0; i < ctx->num_enabled_probes; i++) {
4c9ffa83 106 c = (char *)&wbuf + strlen((char *)&wbuf);
6b5e3cee
UH
107 /* TODO: Needs fixing for very large number of probes. */
108 /* TODO: Handle sprintf() errors. */
bc010c05 109 sprintf(c, "$var wire 1 %c channel%s $end\n",
99c1fc59 110 (char)('!' + i), ctx->probelist[i]);
4c9ffa83
UH
111 }
112
99c1fc59 113 /* TODO: Date: File or signals? Make y/n configurable. */
5cca9adb
UH
114 t = time(NULL);
115 b = snprintf(ctx->header, MAX_HEADER_LEN, vcd_header, ctime(&t),
6b5e3cee
UH
116 PACKAGE_STRING, comment, 1, "ns", PACKAGE, (char *)&wbuf);
117 /* TODO: Handle snprintf() errors. */
4c9ffa83 118
6b5e3cee
UH
119 if (!(ctx->prevbits = calloc(sizeof(int), num_probes))) {
120 free(ctx->header);
121 free(ctx);
e31b636d 122 return SIGROK_ERR_MALLOC;
6b5e3cee 123 }
5a8fda15 124
6b5e3cee 125 return SIGROK_OK;
4c9ffa83
UH
126}
127
128static int event(struct output *o, int event_type, char **data_out,
129 uint64_t *length_out)
130{
131 struct context *ctx;
132 char *outbuf;
133 int outlen;
134
135 ctx = o->internal;
99c1fc59 136 switch (event_type) {
4c9ffa83 137 case DF_TRIGGER:
9ab95e54
BV
138 /* TODO: can a trigger mark be in a VCD file? */
139 *data_out = NULL;
140 *length_out = 0;
4c9ffa83
UH
141 break;
142 case DF_END:
143 outlen = strlen("$dumpoff\n$end\n");
6b5e3cee 144 if (!(outbuf = malloc(outlen + 1)))
e31b636d 145 return SIGROK_ERR_MALLOC;
6b5e3cee
UH
146 /* TODO: Bug? Drop the + 1? */
147 /* TODO: Handle snprintf() errors. */
bc010c05 148 snprintf(outbuf, outlen + 1, "$dumpoff\n$end\n");
4c9ffa83
UH
149 *data_out = outbuf;
150 *length_out = outlen;
151 free(o->internal);
152 o->internal = NULL;
153 break;
9ab95e54
BV
154 default:
155 *data_out = NULL;
156 *length_out = 0;
157 break;
4c9ffa83
UH
158 }
159
160 return SIGROK_OK;
161}
162
163static int data(struct output *o, char *data_in, uint64_t length_in,
164 char **data_out, uint64_t *length_out)
165{
166 struct context *ctx;
607b58de 167 unsigned int i, outsize;
afc8e4de 168 int p, curbit, prevbit;
4c9ffa83 169 uint64_t sample, prevsample;
086eac7c 170 static uint64_t samplecount = 0;
4c9ffa83
UH
171 char *outbuf, *c;
172
173 ctx = o->internal;
e273a904
HE
174 outsize = 0;
175 if (ctx->header)
176 outsize = strlen(ctx->header);
6b5e3cee
UH
177
178 /* FIXME: Use realloc(). */
179 if (!(outbuf = calloc(1, outsize + 1 + 10000)))
180 return SIGROK_ERR_MALLOC; /* TODO: free()? What to free? */
181
182 outbuf[0] = '\0';
4c9ffa83
UH
183 if (ctx->header) {
184 /* The header is still here, this must be the first packet. */
185 strncpy(outbuf, ctx->header, outsize);
186 free(ctx->header);
187 ctx->header = NULL;
4c9ffa83
UH
188 }
189
190 /* TODO: Are disabled probes handled correctly? */
191
607b58de 192 for (i = 0; i <= length_in - ctx->unitsize; i += ctx->unitsize) {
086eac7c 193 samplecount++;
607b58de 194 memcpy(&sample, data_in + i, ctx->unitsize);
fbe2f794
UH
195 if (i == 0)
196 prevsample = sample;
197 else
198 memcpy(&prevsample, data_in + i - 1, ctx->unitsize);
199
4c9ffa83 200 for (p = 0; p < ctx->num_enabled_probes; p++) {
fbe2f794
UH
201 curbit = (sample & ((uint64_t) (1 << p))) >> p;
202 prevbit = (prevsample & ((uint64_t) (1 << p))) >> p;
203
204 /* VCD only contains deltas/changes of signals. */
607b58de
UH
205 if (prevbit == curbit)
206 continue;
4c9ffa83 207
fbe2f794 208 /* Output which signal changed to which value. */
607b58de 209 c = outbuf + strlen(outbuf);
086eac7c
UH
210 sprintf(c, "#%" PRIu64 "\n%i%c\n", samplecount,
211 curbit, (char)('!' + p));
4c9ffa83
UH
212 }
213
99c1fc59 214 /* TODO: Use realloc() if strlen(outbuf) is almost "full"... */
4c9ffa83
UH
215 }
216
217 *data_out = outbuf;
218 *length_out = strlen(outbuf);
219
220 return SIGROK_OK;
221}
222
223struct output_format output_vcd = {
224 "vcd",
225 "Value Change Dump (VCD)",
f0411b1d 226 DF_LOGIC,
4c9ffa83
UH
227 init,
228 data,
229 event,
230};