#pragma once #include #include #include #include #include #include #include #include #include #include #include // keep trying if x gets interrupted by a signal #define HANDLE_EINTR(x) \ ({ \ decltype(x) ret; \ int try_cnt = 0; \ do { \ ret = (x); \ } while (ret == -1 && errno == EINTR && try_cnt++ < 100); \ ret; \ }) #ifndef sighandler_t typedef void (*sighandler_t)(int sig); #endif void set_thread_name(const char* name); int set_realtime_priority(int level); int set_core_affinity(int core); namespace util { // ***** Time helpers ***** struct tm get_time(); bool time_valid(struct tm sys_time); // ***** math helpers ***** // map x from [a1, a2] to [b1, b2] template T map_val(T x, T a1, T a2, T b1, T b2) { x = std::clamp(x, a1, a2); T ra = a2 - a1; T rb = b2 - b1; return (x - a1) * rb / ra + b1; } // ***** string helpers ***** template std::string string_format(const std::string& format, Args... args) { size_t size = snprintf(nullptr, 0, format.c_str(), args...) + 1; std::unique_ptr buf(new char[size]); snprintf(buf.get(), size, format.c_str(), args...); return std::string(buf.get(), buf.get() + size - 1); } std::string getenv(const char* key, const char* default_val = ""); int getenv(const char* key, int default_val); float getenv(const char* key, float default_val); std::string tohex(const uint8_t* buf, size_t buf_size); std::string hexdump(const std::string& in); std::string base_name(std::string const& path); std::string dir_name(std::string const& path); // **** file fhelpers ***** std::string read_file(const std::string& fn); std::map read_files_in_dir(const std::string& path); int write_file(const char* path, const void* data, size_t size, int flags = O_WRONLY, mode_t mode = 0664); std::string readlink(const std::string& path); bool file_exists(const std::string& fn); inline void sleep_for(const int milliseconds) { std::this_thread::sleep_for(std::chrono::milliseconds(milliseconds)); } } // namespace util class ExitHandler { public: ExitHandler() { std::signal(SIGINT, (sighandler_t)set_do_exit); std::signal(SIGTERM, (sighandler_t)set_do_exit); #ifndef __APPLE__ std::signal(SIGPWR, (sighandler_t)set_do_exit); #endif }; inline static std::atomic power_failure = false; inline static std::atomic signal = 0; inline operator bool() { return do_exit; } inline ExitHandler& operator=(bool v) { signal = 0; do_exit = v; return *this; } private: static void set_do_exit(int sig) { #ifndef __APPLE__ power_failure = (sig == SIGPWR); #endif signal = sig; do_exit = true; } inline static std::atomic do_exit = false; }; struct unique_fd { unique_fd(int fd = -1) : fd_(fd) {} unique_fd& operator=(unique_fd&& uf) { fd_ = uf.fd_; uf.fd_ = -1; return *this; } ~unique_fd() { if (fd_ != -1) close(fd_); } operator int() const { return fd_; } int fd_; }; class FirstOrderFilter { public: FirstOrderFilter(float x0, float ts, float dt) { k_ = (dt / ts) / (1.0 + dt / ts); x_ = x0; } inline float update(float x) { x_ = (1. - k_) * x_ + k_ * x; return x_; } inline void reset(float x) { x_ = x; } inline float x(){ return x_; } private: float x_, k_; };