nuttx/libs/libc/stream/lib_hexdumpstream.c
chao an e51ec54c02 stream/hexdump: add hexdump stream to dump binary to syslog
Signed-off-by: chao an <anchao@xiaomi.com>
2023-05-25 15:22:04 +08:00

183 lines
5.4 KiB
C

/****************************************************************************
* libs/libc/stream/lib_hexdumpstream.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <nuttx/compiler.h>
#include <nuttx/streams.h>
/****************************************************************************
* Private Functions
****************************************************************************/
/****************************************************************************
* Name: nibble2hex
*
* Description:
* Convert a binary nibble to a hexadecimal character.
*
****************************************************************************/
static char nibble2hex(unsigned char nibble)
{
if (nibble < 10)
{
return '0' + nibble;
}
else
{
return 'A' + nibble - 10;
}
}
/****************************************************************************
* Name: bin2hex
****************************************************************************/
static size_t bin2hex(FAR const uint8_t *buf, size_t buflen,
FAR char *hex, size_t hexlen)
{
size_t i;
if (buflen > hexlen)
{
buflen = hexlen;
}
for (i = 0; i < buflen; i++)
{
hex[2 * i] = nibble2hex(buf[i] >> 4);
hex[2 * i + 1] = nibble2hex(buf[i] & 0xf);
}
return buflen;
}
/****************************************************************************
* Name: hexdumpstream_flush
****************************************************************************/
static int hexdumpstream_flush(FAR struct lib_outstream_s *this)
{
FAR struct lib_hexdumpstream_s *rthis = (FAR void *)this;
if (rthis->pending > 0)
{
rthis->buffer[rthis->pending] = '\n';
lib_stream_puts(rthis->backend, rthis->buffer, rthis->pending + 1);
rthis->pending = 0;
}
return OK;
}
/****************************************************************************
* Name: hexdumpstream_putc
****************************************************************************/
static void hexdumpstream_putc(FAR struct lib_outstream_s *this, int ch)
{
FAR struct lib_hexdumpstream_s *rthis = (FAR void *)this;
int outlen = CONFIG_STREAM_HEXDUMP_BUFFER_SIZE;
const uint8_t byte = ch;
bin2hex(&byte, 1, rthis->buffer + rthis->pending,
(outlen - rthis->pending) / 2);
rthis->pending += 2;
if (rthis->pending == outlen)
{
hexdumpstream_flush(this);
}
}
/****************************************************************************
* Name: hexdumpstream_puts
****************************************************************************/
static int hexdumpstream_puts(FAR struct lib_outstream_s *this,
FAR const void *buf, int len)
{
FAR struct lib_hexdumpstream_s *rthis = (FAR void *)this;
const unsigned char *p = buf;
int outlen = CONFIG_STREAM_HEXDUMP_BUFFER_SIZE;
int line = outlen / 2;
int remain = len;
int ret;
while (remain > 0)
{
ret = remain > line ? line : remain;
ret = bin2hex(p, ret, rthis->buffer + rthis->pending,
(outlen - rthis->pending) / 2);
p += ret;
remain -= ret;
rthis->pending += ret * 2;
if (rthis->pending == outlen)
{
hexdumpstream_flush(this);
}
}
this->nput += len;
return len;
}
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* Name: lib_hexdumpstream
*
* Description:
* Convert binary stream to hex and redirect to syslog
*
* Input Parameters:
* stream - User allocated, uninitialized instance of struct
* lib_bufferedoutstream_s to be initialized.
* backend - Stream backend port.
*
* Returned Value:
* None (User allocated instance initialized).
*
****************************************************************************/
void lib_hexdumpstream(FAR struct lib_hexdumpstream_s *stream,
FAR struct lib_outstream_s *backend)
{
struct lib_outstream_s *public = &stream->public;
public->putc = hexdumpstream_putc;
public->puts = hexdumpstream_puts;
public->flush = hexdumpstream_flush;
public->nput = 0;
stream->pending = 0;
stream->backend = backend;
}