]> sigrok.org Git - libsigrok.git/blame - output/text/text.c
configure.ac: Fix checks for cross-compiles.
[libsigrok.git] / output / text / text.c
CommitLineData
97554432
BV
1/*
2 * This file is part of the sigrok project.
3 *
c73d2ea4 4 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
97554432
BV
5 * Copyright (C) 2011 HÃ¥vard Espeland <gus@ping.uio.no>
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 <stdio.h>
23#include <string.h>
24#include <glib.h>
545f9786 25#include "config.h" /* Needed for PACKAGE_STRING and others. */
45c59c8b
BV
26#include "libsigrok.h"
27#include "libsigrok-internal.h"
97554432
BV
28#include "text.h"
29
a944a84b
UH
30/* Message logging helpers with driver-specific prefix string. */
31#define DRIVER_LOG_DOMAIN "output/text: "
32#define sr_log(l, s, args...) sr_log(l, DRIVER_LOG_DOMAIN s, ## args)
33#define sr_spew(s, args...) sr_spew(DRIVER_LOG_DOMAIN s, ## args)
34#define sr_dbg(s, args...) sr_dbg(DRIVER_LOG_DOMAIN s, ## args)
35#define sr_info(s, args...) sr_info(DRIVER_LOG_DOMAIN s, ## args)
36#define sr_warn(s, args...) sr_warn(DRIVER_LOG_DOMAIN s, ## args)
37#define sr_err(s, args...) sr_err(DRIVER_LOG_DOMAIN s, ## args)
38
054e6709 39SR_PRIV void flush_linebufs(struct context *ctx, uint8_t *outbuf)
97554432
BV
40{
41 static int max_probename_len = 0;
42 int len, i;
43
44 if (ctx->linebuf[0] == 0)
45 return;
46
47 if (max_probename_len == 0) {
48 /* First time through... */
49 for (i = 0; ctx->probelist[i]; i++) {
50 len = strlen(ctx->probelist[i]);
51 if (len > max_probename_len)
52 max_probename_len = len;
53 }
54 }
55
56 for (i = 0; ctx->probelist[i]; i++) {
054e6709
UH
57 sprintf((char *)outbuf + strlen((const char *)outbuf),
58 "%*s:%s\n", max_probename_len,
97554432
BV
59 ctx->probelist[i], ctx->linebuf + i * ctx->linebuf_len);
60 }
61
62 /* Mark trigger with a ^ character. */
63 if (ctx->mark_trigger != -1)
64 {
65 int space_offset = ctx->mark_trigger / 8;
66
67 if (ctx->mode == MODE_ASCII)
68 space_offset = 0;
69
054e6709
UH
70 sprintf((char *)outbuf + strlen((const char *)outbuf),
71 "T:%*s^\n", ctx->mark_trigger + space_offset, "");
97554432
BV
72 }
73
74 memset(ctx->linebuf, 0, i * ctx->linebuf_len);
75}
76
7c1d391c 77SR_PRIV int init(struct sr_output *o, int default_spl, enum outputmode mode)
97554432
BV
78{
79 struct context *ctx;
1afe8989 80 struct sr_probe *probe;
97554432 81 GSList *l;
5c3c1241
BV
82 uint64_t *samplerate;
83 int num_probes, ret;
97554432
BV
84 char *samplerate_s;
85
133a37bf 86 if (!(ctx = g_try_malloc0(sizeof(struct context)))) {
a944a84b 87 sr_err("%s: ctx malloc failed", __func__);
e46b8fb1 88 return SR_ERR_MALLOC;
133a37bf 89 }
97554432
BV
90
91 o->internal = ctx;
92 ctx->num_enabled_probes = 0;
93
5c3c1241 94 for (l = o->sdi->probes; l; l = l->next) {
97554432
BV
95 probe = l->data;
96 if (!probe->enabled)
97 continue;
98 ctx->probelist[ctx->num_enabled_probes++] = probe->name;
99 }
100
101 ctx->probelist[ctx->num_enabled_probes] = 0;
102 ctx->unitsize = (ctx->num_enabled_probes + 7) / 8;
103 ctx->line_offset = 0;
104 ctx->spl_cnt = 0;
105 ctx->mark_trigger = -1;
106 ctx->mode = mode;
107
aee878fa 108 ret = SR_OK;
97554432
BV
109 if (o->param && o->param[0]) {
110 ctx->samples_per_line = strtoul(o->param, NULL, 10);
5c3c1241
BV
111 if (ctx->samples_per_line < 1) {
112 ret = SR_ERR;
113 goto err;
114 }
97554432
BV
115 } else
116 ctx->samples_per_line = default_spl;
117
133a37bf 118 if (!(ctx->header = g_try_malloc0(512))) {
a944a84b 119 sr_err("%s: ctx->header malloc failed", __func__);
5c3c1241
BV
120 ret = SR_ERR_MALLOC;
121 goto err;
97554432
BV
122 }
123
124 snprintf(ctx->header, 511, "%s\n", PACKAGE_STRING);
5c3c1241 125 num_probes = g_slist_length(o->sdi->probes);
4d15e5c9 126 if (o->sdi->driver || sr_dev_has_option(o->sdi, SR_CONF_SAMPLERATE)) {
123e1313 127 ret = o->sdi->driver->config_get(SR_CONF_SAMPLERATE,
5c3c1241
BV
128 (const void **)&samplerate, o->sdi);
129 if (ret != SR_OK)
130 goto err;
131 if (!(samplerate_s = sr_samplerate_string(*samplerate))) {
132 ret = SR_ERR;
133 goto err;
97554432
BV
134 }
135 snprintf(ctx->header + strlen(ctx->header),
136 511 - strlen(ctx->header),
137 "Acquisition with %d/%d probes at %s\n",
138 ctx->num_enabled_probes, num_probes, samplerate_s);
133a37bf 139 g_free(samplerate_s);
97554432
BV
140 }
141
142 ctx->linebuf_len = ctx->samples_per_line * 2 + 4;
133a37bf 143 if (!(ctx->linebuf = g_try_malloc0(num_probes * ctx->linebuf_len))) {
a944a84b 144 sr_err("%s: ctx->linebuf malloc failed", __func__);
5c3c1241
BV
145 ret = SR_ERR_MALLOC;
146 goto err;
97554432 147 }
5c3c1241 148
133a37bf 149 if (!(ctx->linevalues = g_try_malloc0(num_probes))) {
a944a84b 150 sr_err("%s: ctx->linevalues malloc failed", __func__);
5c3c1241
BV
151 ret = SR_ERR_MALLOC;
152 }
153
154err:
155 if (ret != SR_OK) {
133a37bf
UH
156 g_free(ctx->header);
157 g_free(ctx);
97554432
BV
158 }
159
5c3c1241 160 return ret;
97554432
BV
161}
162
054e6709 163SR_PRIV int event(struct sr_output *o, int event_type, uint8_t **data_out,
7c1d391c 164 uint64_t *length_out)
97554432
BV
165{
166 struct context *ctx;
167 int outsize;
054e6709 168 uint8_t *outbuf;
97554432
BV
169
170 ctx = o->internal;
171 switch (event_type) {
5a2326a7 172 case SR_DF_TRIGGER:
97554432
BV
173 ctx->mark_trigger = ctx->spl_cnt;
174 *data_out = NULL;
175 *length_out = 0;
176 break;
5a2326a7 177 case SR_DF_END:
97554432
BV
178 outsize = ctx->num_enabled_probes
179 * (ctx->samples_per_line + 20) + 512;
133a37bf 180 if (!(outbuf = g_try_malloc0(outsize))) {
a944a84b 181 sr_err("%s: outbuf malloc failed", __func__);
e46b8fb1 182 return SR_ERR_MALLOC;
133a37bf 183 }
97554432
BV
184 flush_linebufs(ctx, outbuf);
185 *data_out = outbuf;
054e6709 186 *length_out = strlen((const char *)outbuf);
133a37bf 187 g_free(o->internal);
97554432
BV
188 o->internal = NULL;
189 break;
190 default:
191 *data_out = NULL;
192 *length_out = 0;
193 break;
194 }
195
e46b8fb1 196 return SR_OK;
97554432 197}