2016-12-11 13:55:13 +00:00
|
|
|
#pragma once
|
2018-08-21 15:56:50 +00:00
|
|
|
#include <string>
|
2016-12-11 13:55:13 +00:00
|
|
|
|
2017-06-01 13:41:58 +00:00
|
|
|
|
|
|
|
/// Maps 0..15 to 0..9A..F or 0..9a..f correspondingly.
|
|
|
|
|
|
|
|
extern const char * const hex_digit_to_char_uppercase_table;
|
|
|
|
extern const char * const hex_digit_to_char_lowercase_table;
|
|
|
|
|
2017-07-23 06:53:28 +00:00
|
|
|
inline char hexDigitUppercase(unsigned char c)
|
2017-06-01 13:41:58 +00:00
|
|
|
{
|
|
|
|
return hex_digit_to_char_uppercase_table[c];
|
|
|
|
}
|
|
|
|
|
2017-07-23 06:53:28 +00:00
|
|
|
inline char hexDigitLowercase(unsigned char c)
|
2017-06-01 13:41:58 +00:00
|
|
|
{
|
|
|
|
return hex_digit_to_char_lowercase_table[c];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-07-23 06:53:28 +00:00
|
|
|
#include <cstring>
|
|
|
|
#include <cstddef>
|
|
|
|
|
2017-08-09 01:34:01 +00:00
|
|
|
#include <common/Types.h>
|
|
|
|
|
|
|
|
|
2017-07-23 06:53:28 +00:00
|
|
|
/// Maps 0..255 to 00..FF or 00..ff correspondingly
|
|
|
|
|
|
|
|
extern const char * const hex_byte_to_char_uppercase_table;
|
|
|
|
extern const char * const hex_byte_to_char_lowercase_table;
|
|
|
|
|
2017-08-09 01:34:01 +00:00
|
|
|
inline void writeHexByteUppercase(UInt8 byte, void * out)
|
2017-07-23 06:53:28 +00:00
|
|
|
{
|
|
|
|
memcpy(out, &hex_byte_to_char_uppercase_table[static_cast<size_t>(byte) * 2], 2);
|
|
|
|
}
|
|
|
|
|
2017-08-09 01:34:01 +00:00
|
|
|
inline void writeHexByteLowercase(UInt8 byte, void * out)
|
2017-07-23 06:53:28 +00:00
|
|
|
{
|
|
|
|
memcpy(out, &hex_byte_to_char_lowercase_table[static_cast<size_t>(byte) * 2], 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-05-21 13:49:54 +00:00
|
|
|
/// Produces hex representation of an unsigned int with leading zeros (for checksums)
|
|
|
|
template <typename TUInt>
|
|
|
|
inline void writeHexUIntImpl(TUInt uint, char * out, const char * const table)
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
TUInt value;
|
|
|
|
UInt8 uint8[sizeof(TUInt)];
|
|
|
|
};
|
|
|
|
|
|
|
|
value = uint;
|
|
|
|
|
|
|
|
/// Use little endian
|
|
|
|
for (size_t i = 0; i < sizeof(TUInt); ++i)
|
|
|
|
memcpy(out + i * 2, &table[static_cast<size_t>(uint8[sizeof(TUInt) - 1 - i]) * 2], 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename TUInt>
|
|
|
|
inline void writeHexUIntUppercase(TUInt uint, char * out)
|
|
|
|
{
|
|
|
|
writeHexUIntImpl(uint, out, hex_byte_to_char_uppercase_table);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename TUInt>
|
|
|
|
inline void writeHexUIntLowercase(TUInt uint, char * out)
|
|
|
|
{
|
|
|
|
writeHexUIntImpl(uint, out, hex_byte_to_char_lowercase_table);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename TUInt>
|
|
|
|
std::string getHexUIntUppercase(TUInt uint)
|
|
|
|
{
|
|
|
|
std::string res(sizeof(TUInt) * 2, '\0');
|
|
|
|
writeHexUIntUppercase(uint, res.data());
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename TUInt>
|
|
|
|
std::string getHexUIntLowercase(TUInt uint)
|
|
|
|
{
|
|
|
|
std::string res(sizeof(TUInt) * 2, '\0');
|
|
|
|
writeHexUIntLowercase(uint, res.data());
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-01 13:41:58 +00:00
|
|
|
/// Maps 0..9, A..F, a..f to 0..15. Other chars are mapped to implementation specific value.
|
|
|
|
|
|
|
|
extern const char * const hex_char_to_digit_table;
|
|
|
|
|
|
|
|
inline char unhex(char c)
|
|
|
|
{
|
2017-08-09 01:34:01 +00:00
|
|
|
return hex_char_to_digit_table[static_cast<UInt8>(c)];
|
|
|
|
}
|
|
|
|
|
|
|
|
inline char unhex2(const char * data)
|
|
|
|
{
|
|
|
|
return
|
|
|
|
static_cast<UInt8>(unhex(data[0])) * 0x10
|
|
|
|
+ static_cast<UInt8>(unhex(data[1]));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline UInt16 unhex4(const char * data)
|
|
|
|
{
|
|
|
|
return
|
|
|
|
static_cast<UInt16>(unhex(data[0])) * 0x1000
|
|
|
|
+ static_cast<UInt16>(unhex(data[1])) * 0x100
|
|
|
|
+ static_cast<UInt16>(unhex(data[2])) * 0x10
|
|
|
|
+ static_cast<UInt16>(unhex(data[3]));
|
2017-06-01 13:41:58 +00:00
|
|
|
}
|