]> sigrok.org Git - libsigrok.git/blob - output/text/hex.c
sr: adjust copyright year
[libsigrok.git] / output / text / hex.c
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
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 <string.h>
23 #include <glib.h>
24 #include "sigrok.h"
25 #include "sigrok-internal.h"
26 #include "text.h"
27
28 SR_PRIV int init_hex(struct sr_output *o)
29 {
30         return init(o, DEFAULT_BPL_HEX, MODE_HEX);
31 }
32
33 SR_PRIV int data_hex(struct sr_output *o, const char *data_in,
34                      uint64_t length_in, char **data_out, uint64_t *length_out)
35 {
36         struct context *ctx;
37         unsigned int outsize, offset, p;
38         int max_linelen;
39         uint64_t sample;
40         char *outbuf;
41
42         ctx = o->internal;
43         max_linelen = SR_MAX_PROBENAME_LEN + 3 + ctx->samples_per_line
44                         + ctx->samples_per_line / 2;
45         outsize = length_in / ctx->unitsize * ctx->num_enabled_probes
46                         / ctx->samples_per_line * max_linelen + 512;
47
48         if (!(outbuf = g_try_malloc0(outsize + 1))) {
49                 sr_err("hex out: %s: outbuf malloc failed", __func__);
50                 return SR_ERR_MALLOC;
51         }
52
53         outbuf[0] = '\0';
54         if (ctx->header) {
55                 /* The header is still here, this must be the first packet. */
56                 strncpy(outbuf, ctx->header, outsize);
57                 g_free(ctx->header);
58                 ctx->header = NULL;
59         }
60
61         ctx->line_offset = 0;
62         for (offset = 0; offset <= length_in - ctx->unitsize;
63              offset += ctx->unitsize) {
64                 memcpy(&sample, data_in + offset, ctx->unitsize);
65                 for (p = 0; p < ctx->num_enabled_probes; p++) {
66                         ctx->linevalues[p] <<= 1;
67                         if (sample & ((uint64_t) 1 << p))
68                                 ctx->linevalues[p] |= 1;
69                         sprintf(ctx->linebuf + (p * ctx->linebuf_len) +
70                                 ctx->line_offset, "%.2x", ctx->linevalues[p]);
71                 }
72                 ctx->spl_cnt++;
73
74                 /* Add a space after every complete hex byte. */
75                 if ((ctx->spl_cnt & 7) == 0) {
76                         for (p = 0; p < ctx->num_enabled_probes; p++)
77                                 ctx->linebuf[p * ctx->linebuf_len +
78                                              ctx->line_offset + 2] = ' ';
79                         ctx->line_offset += 3;
80                 }
81
82                 /* End of line. */
83                 if (ctx->spl_cnt >= ctx->samples_per_line) {
84                         flush_linebufs(ctx, outbuf);
85                         ctx->line_offset = ctx->spl_cnt = 0;
86                 }
87         }
88
89         *data_out = outbuf;
90         *length_out = strlen(outbuf);
91
92         return SR_OK;
93 }
94
95 SR_PRIV struct sr_output_format output_text_hex = {
96         .id = "hex",
97         .description = "Hexadecimal (takes argument, default 192)",
98         .df_type = SR_DF_LOGIC,
99         .init = init_hex,
100         .data = data_hex,
101         .event = event,
102 };