abaddon-ppc/util.hpp

116 lines
3.4 KiB
C++
Raw Normal View History

2020-09-06 00:58:11 +00:00
#pragma once
2020-09-08 03:03:29 +00:00
#include <cctype>
2020-09-06 00:58:11 +00:00
#include <algorithm>
#include <cstdlib>
#include <vector>
#include <functional>
#include <iterator>
2020-09-06 01:05:52 +00:00
#include <sstream>
#include <string>
#include <iomanip>
#include <regex>
#include <mutex>
#include <condition_variable>
2020-11-20 00:18:59 +00:00
#include <optional>
#include <type_traits>
2020-12-13 02:57:39 +00:00
#include <gtkmm.h>
2020-11-20 00:18:59 +00:00
namespace util {
template<typename T>
struct is_optional : ::std::false_type {};
template<typename T>
struct is_optional<::std::optional<T>> : ::std::true_type {};
2020-12-13 02:57:39 +00:00
} // namespace util
2020-09-06 00:58:11 +00:00
class Semaphore {
public:
2020-12-18 06:25:05 +00:00
Semaphore(int count = 0);
void notify();
void wait();
private:
std::mutex m_mutex;
std::condition_variable m_cv;
int m_count;
};
2020-12-18 06:25:05 +00:00
void LaunchBrowser(Glib::ustring url);
void GetImageDimensions(int inw, int inh, int &outw, int &outh, int clampw = 400, int clamph = 300);
std::string IntToCSSColor(int color);
2021-02-28 07:00:15 +00:00
Gdk::RGBA IntToRGBA(int color);
2020-12-18 06:25:05 +00:00
void AddWidgetMenuHandler(Gtk::Widget *widget, Gtk::Menu &menu);
void AddWidgetMenuHandler(Gtk::Widget *widget, Gtk::Menu &menu, sigc::slot<void()> pre_callback);
2020-12-18 06:25:05 +00:00
std::vector<std::string> StringSplit(const std::string &str, const char *delim);
std::string GetExtension(std::string url);
bool IsURLViewableImage(const std::string &url);
std::vector<uint8_t> ReadWholeFile(std::string path);
std::string HumanReadableBytes(uint64_t bytes);
2021-01-22 04:49:42 +00:00
std::string FormatISO8601(const std::string &in, int extra_offset = 0, const std::string &fmt = "%x %X");
void AddPointerCursor(Gtk::Widget &widget);
2020-09-30 04:12:38 +00:00
template<typename T>
struct Bitwise {
static const bool enable = false;
};
template<typename T>
typename std::enable_if<Bitwise<T>::enable, T>::type operator|(T a, T b) {
using x = typename std::underlying_type<T>::type;
return static_cast<T>(static_cast<x>(a) | static_cast<x>(b));
}
template<typename T>
typename std::enable_if<Bitwise<T>::enable, T>::type operator|=(T &a, T b) {
using x = typename std::underlying_type<T>::type;
a = static_cast<T>(static_cast<x>(a) | static_cast<x>(b));
return a;
}
template<typename T>
typename std::enable_if<Bitwise<T>::enable, T>::type operator&(T a, T b) {
using x = typename std::underlying_type<T>::type;
return static_cast<T>(static_cast<x>(a) & static_cast<x>(b));
}
template<typename T>
typename std::enable_if<Bitwise<T>::enable, T>::type operator&=(T &a, T b) {
using x = typename std::underlying_type<T>::type;
a = static_cast<T>(static_cast<x>(a) & static_cast<x>(b));
return a;
}
template<typename T>
typename std::enable_if<Bitwise<T>::enable, T>::type operator~(T a) {
2020-09-24 06:58:05 +00:00
return static_cast<T>(~static_cast<typename std::underlying_type<T>::type>(a));
}
2020-09-06 00:58:11 +00:00
template<typename T>
2020-09-08 03:03:29 +00:00
inline void AlphabeticalSort(T start, T end, std::function<std::string(const typename std::iterator_traits<T>::value_type &)> get_string) {
2020-09-06 00:58:11 +00:00
std::sort(start, end, [&](const auto &a, const auto &b) -> bool {
const std::string &s1 = get_string(a);
const std::string &s2 = get_string(b);
if (s1.empty() || s2.empty())
return s1 < s2;
bool ac[] = {
!isalnum(s1[0]),
!isalnum(s2[0]),
!!isdigit(s1[0]),
!!isdigit(s2[0]),
!!isalpha(s1[0]),
!!isalpha(s2[0]),
};
if ((ac[0] && ac[1]) || (ac[2] && ac[3]) || (ac[4] && ac[5]))
return s1 < s2;
return ac[0] || ac[5];
});
}
2020-12-21 03:10:45 +00:00
void ScrollListBoxToSelected(Gtk::ListBox &list);
bool StringContainsCaseless(const Glib::ustring &str, const Glib::ustring &sub);