]> sigrok.org Git - libsigrok.git/blame - output/csv.c
Revise SCPI read API to allow backend-independent data handling.
[libsigrok.git] / output / csv.c
CommitLineData
02604ed6 1/*
50985c20 2 * This file is part of the libsigrok project.
02604ed6
UH
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>
545f9786 24#include "config.h" /* Needed for PACKAGE_STRING and others. */
45c59c8b
BV
25#include "libsigrok.h"
26#include "libsigrok-internal.h"
02604ed6 27
3544f848 28#define LOG_PREFIX "output/csv"
a944a84b 29
02604ed6
UH
30struct context {
31 unsigned int num_enabled_probes;
32 unsigned int unitsize;
02604ed6
UH
33 uint64_t samplerate;
34 GString *header;
35 char separator;
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 * probe LAs) as ASCII/hex etc. etc.
47 * - Trigger support.
48 */
49
50static int init(struct sr_output *o)
51{
52 struct context *ctx;
53 struct sr_probe *probe;
54 GSList *l;
ec4063b8 55 GVariant *gvar;
02604ed6 56 int num_probes;
02604ed6 57 time_t t;
02604ed6
UH
58
59 if (!o) {
a944a84b 60 sr_err("%s: o was NULL", __func__);
02604ed6
UH
61 return SR_ERR_ARG;
62 }
63
5c3c1241 64 if (!o->sdi) {
a944a84b 65 sr_err("%s: o->sdi was NULL", __func__);
02604ed6
UH
66 return SR_ERR_ARG;
67 }
68
02604ed6 69 if (!(ctx = g_try_malloc0(sizeof(struct context)))) {
a944a84b 70 sr_err("%s: ctx malloc failed", __func__);
02604ed6
UH
71 return SR_ERR_MALLOC;
72 }
73
74 o->internal = ctx;
75
1c5b099a 76 /* Get the number of probes, and the unitsize. */
5c3c1241 77 for (l = o->sdi->probes; l; l = l->next) {
02604ed6 78 probe = l->data;
1c5b099a
ML
79 if (probe->enabled)
80 ctx->num_enabled_probes++;
02604ed6 81 }
1c5b099a 82
02604ed6
UH
83 ctx->unitsize = (ctx->num_enabled_probes + 7) / 8;
84
5c3c1241 85 num_probes = g_slist_length(o->sdi->probes);
02604ed6 86
d3c74a6f
BV
87 if (sr_config_get(o->sdi->driver, o->sdi, NULL, SR_CONF_SAMPLERATE,
88 &gvar) == SR_OK) {
ec4063b8
BV
89 ctx->samplerate = g_variant_get_uint64(gvar);
90 g_variant_unref(gvar);
5c3c1241
BV
91 } else
92 ctx->samplerate = 0;
02604ed6
UH
93
94 ctx->separator = ',';
02604ed6
UH
95 ctx->header = g_string_sized_new(512);
96
97 t = time(NULL);
98
99 /* Some metadata */
100 g_string_append_printf(ctx->header, "; CSV, generated by %s on %s",
101 PACKAGE_STRING, ctime(&t));
102 g_string_append_printf(ctx->header, "; Samplerate: %"PRIu64"\n",
103 ctx->samplerate);
104
105 /* Columns / channels */
106 g_string_append_printf(ctx->header, "; Channels (%d/%d): ",
107 ctx->num_enabled_probes, num_probes);
1c5b099a
ML
108 for (l = o->sdi->probes; l; l = l->next) {
109 probe = l->data;
110 if (probe->enabled)
111 g_string_append_printf(ctx->header, "%s, ", probe->name);
112 }
02604ed6
UH
113 g_string_append_printf(ctx->header, "\n");
114
5c3c1241 115 return SR_OK;
02604ed6
UH
116}
117
054e6709 118static int event(struct sr_output *o, int event_type, uint8_t **data_out,
02604ed6
UH
119 uint64_t *length_out)
120{
121 struct context *ctx;
02604ed6
UH
122
123 if (!o) {
a944a84b 124 sr_err("%s: o was NULL", __func__);
02604ed6
UH
125 return SR_ERR_ARG;
126 }
127
128 if (!(ctx = o->internal)) {
a944a84b 129 sr_err("%s: o->internal was NULL", __func__);
02604ed6
UH
130 return SR_ERR_ARG;
131 }
132
133 if (!data_out) {
a944a84b 134 sr_err("%s: data_out was NULL", __func__);
02604ed6
UH
135 return SR_ERR_ARG;
136 }
137
138 switch (event_type) {
139 case SR_DF_TRIGGER:
a944a84b 140 sr_dbg("%s: SR_DF_TRIGGER event", __func__);
02604ed6
UH
141 /* TODO */
142 *data_out = NULL;
143 *length_out = 0;
144 break;
145 case SR_DF_END:
a944a84b 146 sr_dbg("%s: SR_DF_END event", __func__);
02604ed6
UH
147 /* TODO */
148 *data_out = NULL;
149 *length_out = 0;
150 g_free(o->internal);
151 o->internal = NULL;
152 break;
153 default:
a944a84b 154 sr_err("%s: unsupported event type: %d", __func__, event_type);
02604ed6
UH
155 *data_out = NULL;
156 *length_out = 0;
157 break;
158 }
159
160 return SR_OK;
161}
162
054e6709
UH
163static int data(struct sr_output *o, const uint8_t *data_in,
164 uint64_t length_in, uint8_t **data_out, uint64_t *length_out)
02604ed6
UH
165{
166 struct context *ctx;
167 GString *outstr;
adf33ecc 168 uint64_t sample, i, j;
02604ed6
UH
169
170 if (!o) {
a944a84b 171 sr_err("%s: o was NULL", __func__);
02604ed6
UH
172 return SR_ERR_ARG;
173 }
174
175 if (!(ctx = o->internal)) {
a944a84b 176 sr_err("%s: o->internal was NULL", __func__);
02604ed6
UH
177 return SR_ERR_ARG;
178 }
179
180 if (!data_in) {
a944a84b 181 sr_err("%s: data_in was NULL", __func__);
02604ed6
UH
182 return SR_ERR_ARG;
183 }
184
185 if (ctx->header) {
186 /* First data packet. */
187 outstr = ctx->header;
188 ctx->header = NULL;
189 } else {
190 outstr = g_string_sized_new(512);
191 }
192
193 for (i = 0; i <= length_in - ctx->unitsize; i += ctx->unitsize) {
194 memcpy(&sample, data_in + i, ctx->unitsize);
adf33ecc 195 for (j = 0; j < ctx->num_enabled_probes; j++) {
02604ed6
UH
196 g_string_append_printf(outstr, "%d%c",
197 (int)((sample & (1 << j)) >> j),
198 ctx->separator);
199 }
200 g_string_append_printf(outstr, "\n");
201 }
202
054e6709 203 *data_out = (uint8_t *)outstr->str;
02604ed6
UH
204 *length_out = outstr->len;
205 g_string_free(outstr, FALSE);
206
207 return SR_OK;
208}
209
7c1d391c 210SR_PRIV struct sr_output_format output_csv = {
02604ed6
UH
211 .id = "csv",
212 .description = "Comma-separated values (CSV)",
213 .df_type = SR_DF_LOGIC,
214 .init = init,
215 .data = data,
216 .event = event,
217};