2021-10-09 00:58:55 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <malloc.h>
|
2022-07-26 09:24:06 +02:00
|
|
|
#include <memory>
|
2021-10-09 00:58:55 +02:00
|
|
|
#include <string>
|
|
|
|
|
2022-07-26 08:16:27 +02:00
|
|
|
#define LIMIT(x, min, max) \
|
|
|
|
({ \
|
|
|
|
typeof(x) _x = x; \
|
|
|
|
typeof(min) _min = min; \
|
|
|
|
typeof(max) _max = max; \
|
|
|
|
(((_x) < (_min)) ? (_min) : ((_x) > (_max)) ? (_max) \
|
|
|
|
: (_x)); \
|
|
|
|
})
|
2021-10-09 00:58:55 +02:00
|
|
|
|
2022-07-26 08:16:27 +02:00
|
|
|
#define DegToRad(a) ((a) *0.01745329252f)
|
|
|
|
#define RadToDeg(a) ((a) *57.29577951f)
|
2021-10-09 00:58:55 +02:00
|
|
|
|
2022-07-26 08:16:27 +02:00
|
|
|
#define ALIGN4(x) (((x) + 3) & ~3)
|
|
|
|
#define ALIGN32(x) (((x) + 31) & ~31)
|
2021-10-09 00:58:55 +02:00
|
|
|
|
|
|
|
// those work only in powers of 2
|
2022-07-26 08:16:27 +02:00
|
|
|
#define ROUNDDOWN(val, align) ((val) & ~(align - 1))
|
|
|
|
#define ROUNDUP(val, align) ROUNDDOWN(((val) + (align - 1)), align)
|
2021-10-09 00:58:55 +02:00
|
|
|
|
|
|
|
|
2022-07-26 08:16:27 +02:00
|
|
|
#define le16(i) ((((uint16_t) ((i) &0xFF)) << 8) | ((uint16_t) (((i) &0xFF00) >> 8)))
|
|
|
|
#define le32(i) ((((uint32_t) le16((i) &0xFFFF)) << 16) | ((uint32_t) le16(((i) &0xFFFF0000) >> 16)))
|
|
|
|
#define le64(i) ((((uint64_t) le32((i) &0xFFFFFFFFLL)) << 32) | ((uint64_t) le32(((i) &0xFFFFFFFF00000000LL) >> 32)))
|
2021-10-09 00:58:55 +02:00
|
|
|
|
2021-10-15 15:41:16 +02:00
|
|
|
unsigned int swap_uint32(unsigned int val);
|
|
|
|
|
|
|
|
unsigned long long swap_uint64(unsigned long long val);
|
|
|
|
|
|
|
|
void calculateHash256(unsigned char *data, unsigned int length, unsigned char *hashOut);
|
|
|
|
|
2022-07-26 09:24:06 +02:00
|
|
|
template<class T, class... Args>
|
|
|
|
std::unique_ptr<T> make_unique_nothrow(Args &&...args) noexcept(noexcept(T(std::forward<Args>(args)...))) {
|
|
|
|
return std::unique_ptr<T>(new (std::nothrow) T(std::forward<Args>(args)...));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
inline typename std::unique_ptr<T> make_unique_nothrow(size_t num) noexcept {
|
|
|
|
return std::unique_ptr<T>(new (std::nothrow) std::remove_extent_t<T>[num]());
|
2021-10-09 00:58:55 +02:00
|
|
|
}
|
|
|
|
|
2022-07-26 09:24:06 +02:00
|
|
|
template<class T, class... Args>
|
|
|
|
std::shared_ptr<T> make_shared_nothrow(Args &&...args) noexcept(noexcept(T(std::forward<Args>(args)...))) {
|
|
|
|
return std::shared_ptr<T>(new (std::nothrow) T(std::forward<Args>(args)...));
|
|
|
|
}
|
2021-10-09 00:58:55 +02:00
|
|
|
|
|
|
|
class Utils {
|
|
|
|
public:
|
|
|
|
static void dumpHex(const void *data, size_t size);
|
|
|
|
|
|
|
|
static std::string calculateSHA1(const char *buffer, size_t size);
|
|
|
|
|
|
|
|
static std::string hashFile(const std::string &path);
|
|
|
|
};
|