You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.2 KiB
C++
78 lines
2.2 KiB
C++
//
|
|
// Created by koncord on 24.01.16.
|
|
//
|
|
|
|
#ifndef UTILS_HPP
|
|
#define UTILS_HPP
|
|
|
|
#include <cstddef>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#if (!defined(DEBUG_PRINTF) && defined(DEBUG))
|
|
#define DEBUG_PRINTF(...) LOG_MESSAGE_SIMPLE(Log::LOG_VERBOSE, __VA_ARGS__)
|
|
#else
|
|
#define DEBUG_PRINTF(...)
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
int setenv(const char *name, const char *value, int overwrite);
|
|
#endif
|
|
|
|
namespace Utils
|
|
{
|
|
|
|
const std::vector<std::string> split(const std::string &str, int delimiter);
|
|
|
|
std::string convertPath(std::string str);
|
|
template<size_t N>
|
|
constexpr unsigned int hash(const char(&str)[N], size_t I = N)
|
|
{
|
|
return (I == 1 ? ((2166136261u ^ str[0]) * 16777619u) : ((hash(str, I - 1) ^ str[I - 1]) * 16777619u));
|
|
}
|
|
|
|
inline unsigned int hash(const char *str, std::size_t I)
|
|
{
|
|
return (I == 1 ? ((2166136261u ^ str[0]) * 16777619u) : ((hash(str, I - 1) ^ str[I - 1]) * 16777619u));
|
|
}
|
|
|
|
void timestamp();
|
|
|
|
int progress_func(double TotalToDownload, double NowDownloaded);
|
|
|
|
bool DoubleCompare(double a, double b, double epsilon);
|
|
|
|
std::string str_replace(const std::string &source, const char *find, const char *replace);
|
|
|
|
std::string &RemoveExtension(std::string &file);
|
|
|
|
long int FileLength(const char *file);
|
|
|
|
unsigned int crc32buf(char *buf, size_t len);
|
|
|
|
unsigned int updateCRC32(unsigned char ch, unsigned int crc);
|
|
|
|
bool crc32file(const char *name, unsigned int *crc);
|
|
|
|
template<typename F, typename T, typename E = void>
|
|
struct is_static_castable : std::false_type
|
|
{
|
|
};
|
|
template<typename F, typename T>
|
|
struct is_static_castable<F, T, typename std::conditional<true, void, decltype(static_cast<T>(std::declval<F>()))>::type>
|
|
: std::true_type
|
|
{
|
|
};
|
|
|
|
template<typename T, typename F>
|
|
inline static typename std::enable_if<is_static_castable<F *, T *>::value, T *>::type static_or_dynamic_cast(
|
|
F *from)
|
|
{ return static_cast<T *>(from); }
|
|
|
|
template<typename T, typename F>
|
|
inline static typename std::enable_if<!is_static_castable<F *, T *>::value, T *>::type static_or_dynamic_cast(
|
|
F *from)
|
|
{ return dynamic_cast<T *>(from); }
|
|
}
|
|
#endif //UTILS_HPP
|