2023-01-13 15:13:56 +00:00
|
|
|
#pragma once
|
|
|
|
#include <iostream>
|
2023-01-14 13:47:30 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2023-01-13 15:13:56 +00:00
|
|
|
#define UNUSED [[maybe_unused]]
|
|
|
|
#define LOG(x) std::cout << x << '\n'
|
2023-01-14 13:47:30 +00:00
|
|
|
#define ASSERT(x, log) \
|
|
|
|
if (!(x)) \
|
|
|
|
{ \
|
|
|
|
LOG(log << "\n[Exiting due to assert failed]"); \
|
|
|
|
exit(-1); \
|
|
|
|
}
|
2023-01-13 15:13:56 +00:00
|
|
|
|
|
|
|
// Flag helper macros
|
|
|
|
#define BIT(x) (1 << (x))
|
|
|
|
|
|
|
|
template<typename Enum, typename std::enable_if_t<std::is_enum_v<Enum>, bool> = true>
|
|
|
|
using EnumType = std::underlying_type_t<Enum>;
|
|
|
|
|
|
|
|
// Based on https://stackoverflow.com/questions/1448396/how-to-use-enums-as-flags-in-c
|
|
|
|
// (Answer https://stackoverflow.com/a/23152590): Licensed under CC BY-SA 3.0
|
|
|
|
#define DEFINE_ENUM_FLAGS(T) \
|
|
|
|
inline T operator~(T a) \
|
|
|
|
{ \
|
|
|
|
return (T) ~(EnumType<T>)a; \
|
|
|
|
} \
|
|
|
|
inline T operator|(T a, T b) \
|
|
|
|
{ \
|
|
|
|
return (T)((EnumType<T>)a | (EnumType<T>)b); \
|
|
|
|
} \
|
|
|
|
inline T operator&(T a, T b) \
|
|
|
|
{ \
|
|
|
|
return (T)((EnumType<T>)a & (EnumType<T>)b); \
|
|
|
|
} \
|
|
|
|
inline T operator^(T a, T b) \
|
|
|
|
{ \
|
|
|
|
return (T)((EnumType<T>)a ^ (EnumType<T>)b); \
|
|
|
|
} \
|
|
|
|
inline T& operator|=(T& a, T b) \
|
|
|
|
{ \
|
|
|
|
return (T&)((EnumType<T>&)a |= (EnumType<T>)b); \
|
|
|
|
} \
|
|
|
|
inline T& operator&=(T& a, T b) \
|
|
|
|
{ \
|
|
|
|
return (T&)((EnumType<T>&)a &= (EnumType<T>)b); \
|
|
|
|
} \
|
|
|
|
inline T& operator^=(T& a, T b) \
|
|
|
|
{ \
|
|
|
|
return (T&)((EnumType<T>&)a ^= (EnumType<T>)b); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define FLAG_CHECK(val, check) ((int)(val & (check)) == (int)check)
|
|
|
|
|
|
|
|
namespace Utils
|
|
|
|
{
|
|
|
|
inline std::string ToStringPrecision(double x, const char* fmt)
|
|
|
|
{
|
|
|
|
char buf[128];
|
|
|
|
snprintf(buf, sizeof(buf), fmt, x);
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
}
|
2023-01-14 22:18:34 +00:00
|
|
|
|
|
|
|
struct Process
|
|
|
|
{
|
|
|
|
pid_t pid;
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
inline Process OpenProcess(Args... args)
|
|
|
|
{
|
|
|
|
pid_t child = fork();
|
|
|
|
ASSERT(child != -1, "fork error");
|
|
|
|
|
|
|
|
if (child == 0)
|
|
|
|
{
|
|
|
|
// Child
|
|
|
|
execl(args...);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return {child};
|
|
|
|
}
|
|
|
|
}
|