]> sigrok.org Git - libsigrok.git/blame_incremental - src/output/csv.c
ols: Fix a compiler warning (unused variable).
[libsigrok.git] / src / output / csv.c
... / ...
CommitLineData
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2011 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 "config.h" /* Needed for PACKAGE_STRING and others. */
25#include "libsigrok.h"
26#include "libsigrok-internal.h"
27
28#define LOG_PREFIX "output/csv"
29
30struct context {
31 unsigned int num_enabled_channels;
32 uint64_t samplerate;
33 char separator;
34 gboolean header_done;
35 int *channel_index;
36};
37
38/*
39 * TODO:
40 * - Option to specify delimiter character and/or string.
41 * - Option to (not) print metadata as comments.
42 * - Option to specify the comment character(s), e.g. # or ; or C/C++-style.
43 * - Option to (not) print samplenumber / time as extra column.
44 * - Option to "compress" output (only print changed samples, VCD-like).
45 * - Option to print comma-separated bits, or whole bytes/words (for 8/16
46 * channel LAs) as ASCII/hex etc. etc.
47 * - Trigger support.
48 */
49
50static int init(struct sr_output *o, GHashTable *options)
51{
52 struct context *ctx;
53 struct sr_channel *ch;
54 GSList *l;
55 int i;
56
57 (void)options;
58
59 if (!o || !o->sdi)
60 return SR_ERR_ARG;
61
62 ctx = g_malloc0(sizeof(struct context));
63 o->priv = ctx;
64 ctx->separator = ',';
65
66 /* Get the number of channels, and the unitsize. */
67 for (l = o->sdi->channels; l; l = l->next) {
68 ch = l->data;
69 if (ch->type != SR_CHANNEL_LOGIC)
70 continue;
71 if (!ch->enabled)
72 continue;
73 ctx->num_enabled_channels++;
74 }
75 ctx->channel_index = g_malloc(sizeof(int) * ctx->num_enabled_channels);
76
77 /* Once more to map the enabled channels. */
78 for (i = 0, l = o->sdi->channels; l; l = l->next) {
79 ch = l->data;
80 if (ch->type != SR_CHANNEL_LOGIC)
81 continue;
82 if (!ch->enabled)
83 continue;
84 ctx->channel_index[i++] = ch->index;
85 }
86
87 return SR_OK;
88}
89
90static GString *gen_header(const struct sr_output *o)
91{
92 struct context *ctx;
93 struct sr_channel *ch;
94 GVariant *gvar;
95 GString *header;
96 GSList *l;
97 time_t t;
98 int num_channels, i;
99 char *samplerate_s;
100
101 ctx = o->priv;
102 header = g_string_sized_new(512);
103
104 /* Some metadata */
105 t = time(NULL);
106 g_string_append_printf(header, "; CSV, generated by %s on %s",
107 PACKAGE_STRING, ctime(&t));
108
109 /* Columns / channels */
110 num_channels = g_slist_length(o->sdi->channels);
111 g_string_append_printf(header, "; Channels (%d/%d):",
112 ctx->num_enabled_channels, num_channels);
113 for (i = 0, l = o->sdi->channels; l; l = l->next, i++) {
114 ch = l->data;
115 if (ch->type != SR_CHANNEL_LOGIC)
116 continue;
117 if (!ch->enabled)
118 continue;
119 g_string_append_printf(header, " %s,", ch->name);
120 }
121 if (o->sdi->channels)
122 /* Drop last separator. */
123 g_string_truncate(header, header->len - 1);
124 g_string_append_printf(header, "\n");
125
126 if (ctx->samplerate == 0) {
127 if (sr_config_get(o->sdi->driver, o->sdi, NULL, SR_CONF_SAMPLERATE,
128 &gvar) == SR_OK) {
129 ctx->samplerate = g_variant_get_uint64(gvar);
130 g_variant_unref(gvar);
131 }
132 }
133 if (ctx->samplerate != 0) {
134 samplerate_s = sr_samplerate_string(ctx->samplerate);
135 g_string_append_printf(header, "; Samplerate: %s\n", samplerate_s);
136 g_free(samplerate_s);
137 }
138
139 return header;
140}
141
142static int receive(const struct sr_output *o, const struct sr_datafeed_packet *packet,
143 GString **out)
144{
145 const struct sr_datafeed_meta *meta;
146 const struct sr_datafeed_logic *logic;
147 const struct sr_config *src;
148 GSList *l;
149 struct context *ctx;
150 int idx;
151 uint64_t i, j;
152 gchar *p, c;
153
154 *out = NULL;
155 if (!o || !o->sdi)
156 return SR_ERR_ARG;
157 if (!(ctx = o->priv))
158 return SR_ERR_ARG;
159
160 switch (packet->type) {
161 case SR_DF_META:
162 meta = packet->payload;
163 for (l = meta->config; l; l = l->next) {
164 src = l->data;
165 if (src->key != SR_CONF_SAMPLERATE)
166 continue;
167 ctx->samplerate = g_variant_get_uint64(src->data);
168 }
169 break;
170 case SR_DF_LOGIC:
171 logic = packet->payload;
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
179 for (i = 0; i <= logic->length - logic->unitsize; i += logic->unitsize) {
180 for (j = 0; j < ctx->num_enabled_channels; j++) {
181 idx = ctx->channel_index[j];
182 p = logic->data + i + idx / 8;
183 c = *p & (1 << (idx % 8));
184 g_string_append_c(*out, c ? '1' : '0');
185 g_string_append_c(*out, ctx->separator);
186 }
187 if (j) {
188 /* Drop last separator. */
189 g_string_truncate(*out, (*out)->len - 1);
190 }
191 g_string_append_printf(*out, "\n");
192 }
193 break;
194 }
195
196 return SR_OK;
197}
198
199static int cleanup(struct sr_output *o)
200{
201 struct context *ctx;
202
203 if (!o || !o->sdi)
204 return SR_ERR_ARG;
205
206 if (o->priv) {
207 ctx = o->priv;
208 g_free(ctx->channel_index);
209 g_free(o->priv);
210 o->priv = NULL;
211 }
212
213 return SR_OK;
214}
215
216SR_PRIV struct sr_output_module output_csv = {
217 .id = "csv",
218 .name = "CSV",
219 .desc = "Comma-separated values",
220 .exts = (const char*[]){"csv", NULL},
221 .options = NULL,
222 .init = init,
223 .receive = receive,
224 .cleanup = cleanup,
225};