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