]> sigrok.org Git - libsigrok.git/blame - output/text/hex.c
hex: fix for big-endian architectures.
[libsigrok.git] / output / text / hex.c
CommitLineData
97554432 1/*
50985c20 2 * This file is part of the libsigrok project.
97554432 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 <string.h>
23#include <glib.h>
45c59c8b
BV
24#include "libsigrok.h"
25#include "libsigrok-internal.h"
97554432
BV
26#include "text.h"
27
a944a84b
UH
28/* Message logging helpers with driver-specific prefix string. */
29#define DRIVER_LOG_DOMAIN "output/hex: "
30#define sr_log(l, s, args...) sr_log(l, DRIVER_LOG_DOMAIN s, ## args)
31#define sr_spew(s, args...) sr_spew(DRIVER_LOG_DOMAIN s, ## args)
32#define sr_dbg(s, args...) sr_dbg(DRIVER_LOG_DOMAIN s, ## args)
33#define sr_info(s, args...) sr_info(DRIVER_LOG_DOMAIN s, ## args)
34#define sr_warn(s, args...) sr_warn(DRIVER_LOG_DOMAIN s, ## args)
35#define sr_err(s, args...) sr_err(DRIVER_LOG_DOMAIN s, ## args)
36
7c1d391c 37SR_PRIV int init_hex(struct sr_output *o)
97554432
BV
38{
39 return init(o, DEFAULT_BPL_HEX, MODE_HEX);
40}
41
054e6709
UH
42SR_PRIV int data_hex(struct sr_output *o, const uint8_t *data_in,
43 uint64_t length_in, uint8_t **data_out,
44 uint64_t *length_out)
97554432
BV
45{
46 struct context *ctx;
47 unsigned int outsize, offset, p;
48 int max_linelen;
9275d232 49 const uint8_t *sample;
054e6709 50 uint8_t *outbuf;
97554432
BV
51
52 ctx = o->internal;
9688b443 53 max_linelen = SR_MAX_PROBENAME_LEN + 3 + ctx->samples_per_line
97554432
BV
54 + ctx->samples_per_line / 2;
55 outsize = length_in / ctx->unitsize * ctx->num_enabled_probes
56 / ctx->samples_per_line * max_linelen + 512;
57
133a37bf 58 if (!(outbuf = g_try_malloc0(outsize + 1))) {
a944a84b 59 sr_err("%s: outbuf malloc failed", __func__);
e46b8fb1 60 return SR_ERR_MALLOC;
133a37bf 61 }
97554432
BV
62
63 outbuf[0] = '\0';
64 if (ctx->header) {
65 /* The header is still here, this must be the first packet. */
054e6709 66 strncpy((char *)outbuf, ctx->header, outsize);
133a37bf 67 g_free(ctx->header);
97554432
BV
68 ctx->header = NULL;
69 }
70
71 ctx->line_offset = 0;
72 for (offset = 0; offset <= length_in - ctx->unitsize;
73 offset += ctx->unitsize) {
9275d232 74 sample = data_in + offset;
97554432
BV
75 for (p = 0; p < ctx->num_enabled_probes; p++) {
76 ctx->linevalues[p] <<= 1;
9275d232 77 if (sample[p / 8] & ((uint8_t) 1 << (p % 8)))
97554432 78 ctx->linevalues[p] |= 1;
054e6709 79 sprintf((char *)ctx->linebuf + (p * ctx->linebuf_len) +
97554432
BV
80 ctx->line_offset, "%.2x", ctx->linevalues[p]);
81 }
82 ctx->spl_cnt++;
83
84 /* Add a space after every complete hex byte. */
85 if ((ctx->spl_cnt & 7) == 0) {
86 for (p = 0; p < ctx->num_enabled_probes; p++)
87 ctx->linebuf[p * ctx->linebuf_len +
88 ctx->line_offset + 2] = ' ';
89 ctx->line_offset += 3;
90 }
91
92 /* End of line. */
93 if (ctx->spl_cnt >= ctx->samples_per_line) {
94 flush_linebufs(ctx, outbuf);
95 ctx->line_offset = ctx->spl_cnt = 0;
96 }
97 }
98
99 *data_out = outbuf;
054e6709 100 *length_out = strlen((const char *)outbuf);
97554432 101
e46b8fb1 102 return SR_OK;
97554432
BV
103}
104
7c1d391c 105SR_PRIV struct sr_output_format output_text_hex = {
cdb3573c 106 .id = "hex",
2e7cb004 107 .description = "Hexadecimal",
d494a4aa
UH
108 .df_type = SR_DF_LOGIC,
109 .init = init_hex,
110 .data = data_hex,
111 .event = event,
97554432 112};