BLE_TYQ_BJQ_CH32V303/common/lwutil-1.3.0/lwutil.c

169 lines
5.4 KiB
C

/*
* @Author : stark1898y 1658608470@qq.com
* @Date : 2024-08-31 11:38:57
* @LastEditors : stark1898y 1658608470@qq.com
* @LastEditTime : 2024-08-31 11:38:57
* @FilePath : \JT-DT-YD4N02A_RTT-Nano\common\lwutil-1.3.0\lwutil.c
* @Description :
*
* Copyright (c) 2024 by yzy, All Rights Reserved.
*/
/**
* \file lwutil.c
* \brief Lightweight utility library
*/
/*
* Copyright (c) 2024 Tilen MAJERLE
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
* AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*
* This file is part of LwUTIL - Lightweight utility library.
*
* Author: Tilen MAJERLE <tilen@majerle.eu>
* Version: v1.3.0
*/
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include "lwutil.h"
/**
* \brief Makes ascii char array from `unsigned 8-bit` value
* \param[in] hex: Hexadecimal data to be converted
* \param[out] ascii: Minimum `3-bytes` long array to write value to
*/
void
lwutil_u8_to_2asciis(uint8_t hex, char* ascii) {
for (uint8_t idx = 2U; idx != 0; --idx) {
uint8_t aux = (uint8_t)(hex >> (4U * (idx - 1U))) & 0x0FU;
aux = (aux <= 9U) ? (aux + 0x30U) : (aux + 0x57U);
ascii[2U - idx] = (char)aux;
}
ascii[2U] = '\0';
}
/**
* \brief Makes ascii char array from `unsigned 16-bit` value
* \param[in] hex: Hexadecimal data to be converted
* \param[out] ascii: Minimum `5-bytes` long array to write value to
*/
void
lwutil_u16_to_4asciis(uint16_t hex, char* ascii) {
for (uint8_t idx = 4U; idx != 0; --idx) {
uint8_t aux = (uint8_t)(hex >> (4U * (idx - 1U))) & 0x0FU;
aux = (aux <= 9U) ? (aux + 0x30U) : (aux + 0x57U);
ascii[4U - idx] = (char)aux;
}
ascii[4] = '\0';
}
/**
* \brief Makes ascii char array from `unsigned 32-bit` value
* \param[in] hex: Hexadecimal data to be converted
* \param[out] ascii: Minimum `9-bytes` long array to write value to
*/
void
lwutil_u32_to_8asciis(uint32_t hex, char* ascii) {
for (uint8_t idx = 8U; idx != 0; --idx) {
uint8_t aux = (uint8_t)(hex >> (4U * (idx - 1U))) & 0x0FU;
aux = (aux <= 9U) ? (aux + 0x30U) : (aux + 0x57U);
ascii[8U - idx] = (char)aux;
}
ascii[8] = '\0';
}
/**
* \brief Load variable length integer from the byte stream to the variable.
*
* Variable length integers (short varints) are stored with continuation bit (bit 7, 0x80),
* which tells us if there is a next byte to be used as part of the number sequence.
*
* 32-bit integer can be stored with anything between `1` and `5` bytes.
*
* \param ptr: Array pointer to load data from
* \param ptr_len: Input array length
* \param val_out: Pointer to variable to write result value
* \return Number of bytes written (stored). `0` in case of an error.
*/
uint8_t
lwutil_ld_u32_varint(const void* ptr, size_t ptr_len, uint32_t* val_out) {
size_t cnt = 0;
uint32_t val = 0;
const uint8_t* p_data = ptr;
uint8_t byt;
if (ptr == NULL || ptr_len == 0 || val_out == NULL) {
return 0;
}
do {
byt = *p_data++;
val |= ((uint32_t)(byt & 0x7FU)) << (cnt * 7U);
++cnt;
} while (--ptr_len > 0 && (byt & 0x80U) > 0);
/* Check memory length */
if ((byt & 0x80U) > 0) {
val = 0;
cnt = 0;
}
*val_out = val;
return cnt;
}
/**
* \brief Store an integer into variable length byte sequence array.
*
* Variable length integers (short varints) are stored with continuation bit (bit 7, 0x80),
* which tells us if there is a next byte to be used as part of the number sequence.
*
* 32-bit integer can be stored with anything between `1` and `5` bytes.
*
* \param val: Value to encode into byte sequence
* \param ptr: Array to write output result
* \param ptr_len: Length of an input array
* \return Number of bytes written (stored). `0` in case of an error.
*/
uint8_t
lwutil_st_u32_varint(uint32_t val, void* ptr, size_t ptr_len) {
uint8_t* p_data = ptr;
size_t cnt = 0;
if (ptr == NULL || ptr_len == 0) {
return 0;
}
do {
*p_data++ = (val & 0x7FU) | (val > 0x7FU ? 0x80U : 0x00U);
val >>= 7U;
++cnt;
} while (--ptr_len > 0 && val > 0);
/* Memory check */
if (val > 0) {
cnt = 0;
}
return cnt;
}