C++ Utilities 5.24.7
Useful C++ classes and routines such as argument parser, IO and conversion utilities
Loading...
Searching...
No Matches
binaryconversion.h
Go to the documentation of this file.
1#ifndef CONVERSION_UTILITIES_BINARY_CONVERSION_H
2#define CONVERSION_UTILITIES_BINARY_CONVERSION_H
3
4#include "../global.h"
5#include "../misc/traits.h"
6
7#include <cstdint>
8#include <cstring>
9
10// use helpers from bits header if available instead of custom code using bit operations
11#if __cplusplus >= 202002L
12#include <bit>
13#endif
14
15// detect byte order according to __BYTE_ORDER__
16#if defined(__BYTE_ORDER__)
17#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
18#define CONVERSION_UTILITIES_IS_BYTE_ORDER_LITTLE_ENDIAN false
19#define CONVERSION_UTILITIES_IS_BYTE_ORDER_BIG_ENDIAN true
20#define CONVERSION_UTILITIES_BYTE_ORDER_BIG_ENDIAN
21#elif __BYTE_ORDER__ == __ORDER_PDP_ENDIAN__
22#define CONVERSION_UTILITIES_IS_BYTE_ORDER_LITTLE_ENDIAN false
23#define CONVERSION_UTILITIES_IS_BYTE_ORDER_BIG_ENDIAN false
24#define CONVERSION_UTILITIES_BYTE_ORDER_MIDDLE_ENDIAN
25#elif __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
26#define CONVERSION_UTILITIES_IS_BYTE_ORDER_LITTLE_ENDIAN true
27#define CONVERSION_UTILITIES_IS_BYTE_ORDER_BIG_ENDIAN false
28#define CONVERSION_UTILITIES_BYTE_ORDER_LITTLE_ENDIAN
29#endif
30#endif // defined(__BYTE_ORDER__)
31
32// detect float byte order according to __FLOAT_WORD_ORDER__
33#if defined(__FLOAT_WORD_ORDER__)
34#if __FLOAT_WORD_ORDER__ == __ORDER_BIG_ENDIAN__
35#define CONVERSION_UTILITIES_FLOAT_BYTE_ORDER_BIG_ENDIAN
36#elif __FLOAT_WORD_ORDER__ == __ORDER_PDP_ENDIAN__
37#define CONVERSION_UTILITIES_FLOAT_BYTE_ORDER_MIDDLE_ENDIAN
38#elif __FLOAT_WORD_ORDER__ == __ORDER_LITTLE_ENDIAN__
39#define CONVERSION_UTILITIES_FLOAT_BYTE_ORDER_LITTLE_ENDIAN
40#endif
41#endif // defined(__FLOAT_WORD_ORDER__)
42
43// detect (float) byte order according to other macros
44#if !defined(__BYTE_ORDER__) || !defined(__FLOAT_WORD_ORDER__)
45
46// assume little endian from the presence of several macros
47#if defined(__i386) || defined(__i386__) || defined(_M_IX86) || defined(__x86_64) || defined(__x86_64__) || defined(__amd64) || defined(_M_X64) \
48 || defined(__LITTLE_ENDIAN__) || defined(_little_endian__) || defined(_LITTLE_ENDIAN) || defined(_WIN32_WCE) || defined(WINAPI_FAMILY)
49#if !defined(__BYTE_ORDER__)
50#define CONVERSION_UTILITIES_IS_BYTE_ORDER_LITTLE_ENDIAN true
51#define CONVERSION_UTILITIES_IS_BYTE_ORDER_BIG_ENDIAN false
52#define CONVERSION_UTILITIES_BYTE_ORDER_LITTLE_ENDIAN
53#endif
54#if !defined(__FLOAT_WORD_ORDER__)
55#define CONVERSION_UTILITIES_FLOAT_BYTE_ORDER_LITTLE_ENDIAN
56#endif
57
58// assume big endian from the presence of several macros
59#elif defined(__MIPSEB__) || defined(__s390__) || defined(__BIG_ENDIAN__) || defined(_big_endian__) || defined(_BIG_ENDIAN)
60#if !defined(__BYTE_ORDER__)
61#define CONVERSION_UTILITIES_IS_BYTE_ORDER_LITTLE_ENDIAN false
62#define CONVERSION_UTILITIES_IS_BYTE_ORDER_BIG_ENDIAN true
63#define CONVERSION_UTILITIES_BYTE_ORDER_BIG_ENDIAN
64#endif
65#if !defined(__FLOAT_WORD_ORDER__)
66#define CONVERSION_UTILITIES_FLOAT_BYTE_ORDER_BIG_ENDIAN
67#endif
68
69// fail if unable to detect endianness
70#else
71#error "Unable to determine byte order!"
72#endif
73
74#endif // !defined(__BYTE_ORDER__) || !defined(__FLOAT_WORD_ORDER__)
75
76// fail if middle endian detected
77#if defined(CONVERSION_UTILITIES_BYTE_ORDER_MIDDLE_ENDIAN) || defined(CONVERSION_UTILITIES_FLOAT_BYTE_ORDER_MIDDLE_ENDIAN)
78#error "Middle endian byte order is not supported!"
79#endif
80
81namespace CppUtilities {
82
86CPP_UTILITIES_EXPORT constexpr std::uint16_t toFixed8(float float32value)
87{
88 return static_cast<std::uint16_t>(float32value * 256.0f);
89}
90
94CPP_UTILITIES_EXPORT constexpr float toFloat32(std::uint16_t fixed8value)
95{
96 return static_cast<float>(fixed8value) / 256.0f;
97}
98
102CPP_UTILITIES_EXPORT constexpr std::uint32_t toFixed16(float float32value)
103{
104 return static_cast<std::uint32_t>(float32value * 65536.0f);
105}
106
110CPP_UTILITIES_EXPORT constexpr float toFloat32(std::uint32_t fixed16value)
111{
112 return static_cast<float>(fixed16value) / 65536.0f;
113}
114
120CPP_UTILITIES_EXPORT constexpr std::uint32_t toSynchsafeInt(std::uint32_t normalInt)
121{
122 return ((normalInt & 0x0000007fu)) | ((normalInt & 0x00003f80u) << 1) | ((normalInt & 0x001fc000u) << 2) | ((normalInt & 0x0fe00000u) << 3);
123}
124
130CPP_UTILITIES_EXPORT constexpr std::uint32_t toNormalInt(std::uint32_t synchsafeInt)
131{
132 return ((synchsafeInt & 0x0000007fu)) | ((synchsafeInt & 0x00007f00u) >> 1) | ((synchsafeInt & 0x007f0000u) >> 2)
133 | ((synchsafeInt & 0x7f000000u) >> 3);
134}
135
136// define helpers for byte swapping
137#ifdef __cpp_lib_byteswap // in C++ 23 we can just use the stdlib
138template <class T, Traits::EnableIf<std::is_integral<T>> * = nullptr> CPP_UTILITIES_EXPORT constexpr T swapOrder(T value)
139{
140 return std::byteswap(value);
141}
142
143#else // provide custom code for C++ 20 and older (will also be optimized by GCC and Clang to use bswap)
144
148CPP_UTILITIES_EXPORT constexpr std::uint16_t swapOrder(std::uint16_t value)
149{
150 return static_cast<std::uint16_t>(((value >> 8) & 0x00FF) | ((value << 8) & 0xFF00));
151}
152
156CPP_UTILITIES_EXPORT constexpr std::uint32_t swapOrder(std::uint32_t value)
157{
158 return (value >> 24) | ((value & 0x00FF0000) >> 8) | ((value & 0x0000FF00) << 8) | (value << 24);
159}
160
164CPP_UTILITIES_EXPORT constexpr std::uint64_t swapOrder(std::uint64_t value)
165{
166 return (value >> (7 * 8)) | ((value & 0x00FF000000000000) >> (5 * 8)) | ((value & 0x0000FF0000000000) >> (3 * 8))
167 | ((value & 0x000000FF00000000) >> (1 * 8)) | ((value & 0x00000000FF000000) << (1 * 8)) | ((value & 0x0000000000FF0000) << (3 * 8))
168 | ((value & 0x000000000000FF00) << (5 * 8)) | ((value) << (7 * 8));
169}
170
174CPP_UTILITIES_EXPORT constexpr std::int16_t swapOrder(std::int16_t value)
175{
176 return static_cast<std::int16_t>(((static_cast<std::uint16_t>(value) >> 8) & 0x00FF) | ((static_cast<std::uint16_t>(value) << 8) & 0xFF00));
177}
178
182CPP_UTILITIES_EXPORT constexpr std::int32_t swapOrder(std::int32_t value)
183{
184 return static_cast<std::int32_t>((static_cast<std::uint32_t>(value) >> 24) | ((static_cast<std::uint32_t>(value) & 0x00FF0000) >> 8)
185 | ((static_cast<std::uint32_t>(value) & 0x0000FF00) << 8) | (static_cast<std::uint32_t>(value) << 24));
186}
187
191CPP_UTILITIES_EXPORT constexpr std::int64_t swapOrder(std::int64_t value)
192{
193 return static_cast<std::int64_t>((static_cast<std::uint64_t>(value) >> (7 * 8))
194 | ((static_cast<std::uint64_t>(value) & 0x00FF000000000000) >> (5 * 8))
195 | ((static_cast<std::uint64_t>(value) & 0x0000FF0000000000) >> (3 * 8))
196 | ((static_cast<std::uint64_t>(value) & 0x000000FF00000000) >> (1 * 8))
197 | ((static_cast<std::uint64_t>(value) & 0x00000000FF000000) << (1 * 8))
198 | ((static_cast<std::uint64_t>(value) & 0x0000000000FF0000) << (3 * 8))
199 | ((static_cast<std::uint64_t>(value) & 0x000000000000FF00) << (5 * 8)) | ((static_cast<std::uint64_t>(value)) << (7 * 8)));
200}
201#endif
202
207namespace BE {
208
209#define CONVERSION_UTILITIES_BINARY_CONVERSION_INTERNAL 0
211#undef CONVERSION_UTILITIES_BINARY_CONVERSION_INTERNAL
212} // namespace BE
213
218namespace LE {
219
220#define CONVERSION_UTILITIES_BINARY_CONVERSION_INTERNAL 1
222#undef CONVERSION_UTILITIES_BINARY_CONVERSION_INTERNAL
223} // namespace LE
224
225} // namespace CppUtilities
226
227#endif // CONVERSION_UTILITIES_BINARY_CONVERSION_H
#define CPP_UTILITIES_EXPORT
Marks the symbol to be exported by the c++utilities library.
Definition global.h:14
Contains all utilities provides by the c++utilities library.
CPP_UTILITIES_EXPORT constexpr float toFloat32(std::uint16_t fixed8value)
Returns a 32-bit floating point number converted from the specified 8.8 fixed point representation.
CPP_UTILITIES_EXPORT constexpr std::uint32_t toNormalInt(std::uint32_t synchsafeInt)
Returns a normal 32-bit integer converted from a 32-bit synchsafe integer.
CPP_UTILITIES_EXPORT constexpr std::uint16_t swapOrder(std::uint16_t value)
Swaps the byte order of the specified 16-bit unsigned integer.
IntegralType stringToNumber(const StringType &string, BaseType base=10)
Converts the given string to an unsigned/signed number assuming string uses the specified base.
CPP_UTILITIES_EXPORT constexpr std::uint32_t toFixed16(float float32value)
Returns the 16.16 fixed point representation converted from the specified 32-bit floating point numbe...
CPP_UTILITIES_EXPORT constexpr std::uint16_t toFixed8(float float32value)
Returns the 8.8 fixed point representation converted from the specified 32-bit floating point number.
CPP_UTILITIES_EXPORT constexpr std::uint32_t toSynchsafeInt(std::uint32_t normalInt)
Returns a 32-bit synchsafe integer converted from a normal 32-bit integer.