Files
mu4e/lib/utils/mu-utils.hh
Dirk-Jan C. Binnema 86464cd083 modernization: tweaks for c++20
Update various places for what we can do with C++20:

- ends_with / starts_with
- std::to_array
- using instead of typedef
- designated initializers
- "[[maybe_unused]]" instead of G_GNUC_UNUSED

Also remove some unnecessary 'static'
2026-08-20 15:05:30 -07:00

865 lines
22 KiB
C++

/*
** Copyright (C) 2020-2026 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
**
** This library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser General Public License
** as published by the Free Software Foundation; either version 2.1
** of the License, or (at your option) any later version.
**
** This library is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
** Lesser General Public License for more details.
**
** You should have received a copy of the GNU Lesser General Public
** License along with this library; if not, write to the Free
** Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
** 02110-1301, USA.
*/
#ifndef MU_UTILS_HH__
#define MU_UTILS_HH__
#include <string>
#include <string_view>
#include <sstream>
#include <vector>
#include <chrono>
#include <memory>
#include <cstdarg>
#include <glib.h>
#include <ostream>
#include <iostream>
#include <type_traits>
#include <concepts>
#include <algorithm>
#include <numeric>
#include "mu-option.hh"
#include <fmt/format.h>
#include <fmt/core.h>
#include <fmt/chrono.h>
#include <fmt/ostream.h>
#include <fmt/xchar.h>
namespace Mu {
/*
* Separator characters used in various places; importantly,
* they are not used in UTF-8
*/
constexpr const auto SepaChar1 = '\xfe';
constexpr const auto SepaChar2 = '\xff';
/*
* Logging/printing/formatting functions connect libfmt with the Glib logging
* system. We wrap so perhaps at some point (C++23?) we can use std:: instead.
*/
/*
* Fprmatting
*/
template<typename...T>
std::string mu_format(fmt::format_string<T...> frm, T&&... args) noexcept {
return fmt::format(frm, std::forward<T>(args)...);
}
/*
* Debug/error/warning logging
*
* The 'noexcept' means that they _will_ terminate the program
* when the formatting fails (ie. a bug)
*/
template<typename...T>
void mu_log(GLogLevelFlags level, fmt::format_string<T...> frm, T&&... args) noexcept {
g_log("mu", level, "%s", mu_format(frm, std::forward<T>(args)...).c_str());
}
template<typename...T>
void mu_none(fmt::format_string<T...>, T&&...) noexcept {
// ignore
}
template<typename...T>
void mu_debug(fmt::format_string<T...> frm, T&&... args) noexcept {
mu_log(G_LOG_LEVEL_DEBUG, frm, std::forward<T>(args)...);
}
template<typename...T>
void mu_info(fmt::format_string<T...> frm, T&&... args) noexcept {
mu_log(G_LOG_LEVEL_INFO, frm, std::forward<T>(args)...);
}
template<typename...T>
void mu_message(fmt::format_string<T...> frm, T&&... args) noexcept {
mu_log(G_LOG_LEVEL_MESSAGE, frm, std::forward<T>(args)...);
}
template<typename...T>
void mu_warning(fmt::format_string<T...> frm, T&&... args) noexcept {
mu_log(G_LOG_LEVEL_WARNING, frm, std::forward<T>(args)...);
}
template<typename...T>
void mu_critical(fmt::format_string<T...> frm, T&&... args) noexcept {
mu_log(G_LOG_LEVEL_CRITICAL, frm, std::forward<T>(args)...);
}
template<typename...T>
void mu_error(fmt::format_string<T...> frm, T&&... args) noexcept {
mu_log(G_LOG_LEVEL_ERROR, frm, std::forward<T>(args)...);
}
/* LCOV_EXCL_STOP*/
/*
* Printing; add our wrapper functions, one day we might be able to use std::
*/
template<typename...T>
void mu_print(fmt::format_string<T...> frm, T&&... args) noexcept {
fmt::print(frm, std::forward<T>(args)...);
}
template<typename...T>
void mu_println(fmt::format_string<T...> frm, T&&... args) noexcept {
fmt::println(frm, std::forward<T>(args)...);
}
template<typename...T>
void mu_printerr(fmt::format_string<T...> frm, T&&... args) noexcept {
fmt::print(stderr, frm, std::forward<T>(args)...);
}
template<typename...T>
void mu_printerrln(fmt::format_string<T...> frm, T&&... args) noexcept {
fmt::println(stderr, frm, std::forward<T>(args)...);
}
// null-stream
class NullStream : public std::ostream {
public:
NullStream() : std::ostream(&buf_) {}
private:
struct NullBuffer : public std::streambuf {
int overflow(int c) override { return c; }
};
NullBuffer buf_;
};
/* stream print */
template<typename...T>
void mu_print(std::ostream& os, fmt::format_string<T...> frm, T&&... args) noexcept {
fmt::print(os, frm, std::forward<T>(args)...);
}
template<typename...T>
void mu_println(std::ostream& os, fmt::format_string<T...> frm, T&&... args) noexcept {
fmt::println(os, frm, std::forward<T>(args)...);
}
template<typename Range>
auto mu_join(Range&& range, std::string_view sepa) {
return fmt::join(std::forward<Range>(range), sepa);
}
template <typename T=::time_t>
std::tm mu_time(T t={}, bool use_utc=false) {
::time_t tt{static_cast<::time_t>(t)};
std::tm time_tm = {};
use_utc ? gmtime_r(&tt, &time_tm) : localtime_r(&tt, &time_tm);
return time_tm;
}
/*
* Constexpr, locale-independent ASCII versions of some <cctype> functions.
*
* Unlike their libc counterparts, these are well-defined for _any_
* character value; no need for casting to unsigned char at the
* call-site (which the libc versions require to avoid UB for negative
* char values).
*/
/**
* Is this an ASCII character, i.e., in [0, 0x7f]? Constexpr version
* of ::isascii.
*
* @param c some character
*
* @return true or false
*/
template<std::integral Char>
constexpr bool is_ascii(Char c) noexcept {
return static_cast<std::make_unsigned_t<Char>>(c) < 0x80;
}
/**
* Is this an ASCII control character? ASCII version of ::iscntrl.
*
* @param c some character
*
* @return true or false
*/
template<std::integral Char>
constexpr bool is_ascii_cntrl(Char c) noexcept {
const auto uc{static_cast<std::make_unsigned_t<Char>>(c)};
return uc < 0x20 || uc == 0x7f;
}
/**
* Is this an ASCII alphabetic character, i.e., in [a-zA-Z]?
* ASCII version of ::isalpha.
*
* @param c some character
*
* @return true or false
*/
template<std::integral Char>
constexpr bool is_ascii_alpha(Char c) noexcept {
return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z');
}
/**
* Is this an ASCII digit, i.e., in [0-9]? ASCII version of ::isdigit.
*
* @param c some character
*
* @return true or false
*/
template<std::integral Char>
constexpr bool is_ascii_digit(Char c) noexcept {
return c >= '0' && c <= '9';
}
/**
* Is this an ASCII alphanumeric character, i.e., in [a-zA-Z0-9]?
* ASCII version of ::isalnum.
*
* @param c some character
*
* @return true or false
*/
template<std::integral Char>
constexpr bool is_ascii_alnum(Char c) noexcept {
return is_ascii_alpha(c) || is_ascii_digit(c);
}
/**
* Is this an ASCII blank character, i.e., SPC or TAB? ASCII version
* of ::isblank.
*
* @param c some character
*
* @return true or false
*/
template<std::integral Char>
constexpr bool is_ascii_blank(Char c) noexcept {
return c == ' ' || c == '\t';
}
/**
* Is this an ASCII white-space character, i.e., SPC, TAB, LF, VT, FF
* or CR? ASCII version of ::isspace.
*
* @param c some character
*
* @return true or false
*/
template<std::integral Char>
constexpr bool is_ascii_space(Char c) noexcept {
return c == ' ' || (c >= '\t' && c <= '\r');
}
/**
* Is this an ASCII punctuation character, i.e., a printable character
* that is neither alphanumeric nor SPC? ASCII version of ::ispunct.
*
* @param c some character
*
* @return true or false
*/
template<std::integral Char>
constexpr bool is_ascii_punct(Char c) noexcept {
const auto uc{static_cast<std::make_unsigned_t<Char>>(c)};
return uc > 0x20 && uc < 0x7f && !is_ascii_alnum(c);
}
/**
* Get the lower-case version of an ASCII character in [A-Z]; any
* other character is returned unchanged. ASCII version of ::tolower.
*
* @param c some character
*
* @return the lower-cased character
*/
template<std::integral Char>
constexpr Char to_ascii_lower(Char c) noexcept {
return (c >= 'A' && c <= 'Z') ?
static_cast<Char>(c + ('a' - 'A')) : c;
}
using StringVec = std::vector<std::string>;
/**
* Does the string contain script without explicit word separators?
*
* @param str a string
*
* @return true or false
*/
bool contains_unbroken_script(const char* str);
inline bool contains_unbroken_script(const std::string& str) {
return contains_unbroken_script(str.c_str());
}
/**
* If the string is already valid utf8, return it
* otherwise, return a valid utf8 version
*
* @param str some string
*
* @return a utf8-string
*/
inline std::string utf8_clean(std::string&& str) {
if (!g_utf8_validate(str.c_str(), static_cast<gssize>(str.length()), {})) {
gchar* clean{g_utf8_make_valid(
str.c_str(), static_cast<gssize>(str.length()))};
str = clean;
g_free(clean);
}
return std::move(str);
}
/**
* Flatten a string -- down-case and fold diacritics.
*
* @param str a string
*
* @return a flattened string
*/
std::string utf8_flatten(const char* str);
inline std::string
utf8_flatten(const std::string& s) {
return utf8_flatten(s.c_str());
}
/**
* Replace all control characters with spaces, and remove leading and trailing space.
*
* @param dirty an unclean string
*
* @return a cleaned-up string.
*/
[[nodiscard]] std::string utf8_clean(const std::string& dirty);
/**
* Replace all wordbreak chars (as recognized by Xapian by single SPC)
*
* @param txt text
*
* @return string
*/
[[nodiscard]] std::string utf8_wordbreak(const std::string& txt);
/**
* Remove ctrl characters, replacing them with ' '; subsequent
* ctrl characters are replaced by a single ' '
*
* @param str a string
*
* @return the string without control characters
*/
[[nodiscard]] std::string remove_ctrl(const std::string& str);
/**
* Split a string in parts. As a special case, splitting an empty string
* yields an empty vector (not a vector with a single empty element)
*
* @param str a string
* @param sepa the separator
*
* @return the parts.
*/
[[nodiscard]] std::vector<std::string> split(const std::string& str,
const std::string& sepa);
/**
* Split a string in parts. As a special case, splitting an empty string
* yields an empty vector (not a vector with a single empty element)
*
* @param str a string
* @param sepa the separator
*
* @return the parts.
*/
std::vector<std::string> split(const std::string& str, char sepa);
/**
* Join the strings in svec into a string, separated by sepa
*
* @param svec a string vector
* @param sepa separator
*
* @return string
*/
[[nodiscard]] std::string join(const std::vector<std::string>& svec,
const std::string& sepa);
[[nodiscard]] inline std::string join(const std::vector<std::string>& svec,
char sepa) {
return join(svec, std::string(1, sepa));
}
/**
* write a string (assumed to be in utf8-format) to a stream,
* converted to the current locale
*
* @param str a string
* @param stream a stream
*
* @return true if printing worked, false otherwise
*/
bool fputs_encoded (const std::string& str, FILE *stream);
/**
* print a fmt-style formatted string (assumed to be in utf8-format) to stdout,
* converted to the current locale
*
* @param a standard fmt-style format string, followed by a parameter list
*
* @return true if printing worked, false otherwise
*/
template<typename...T>
inline bool mu_print_encoded(fmt::format_string<T...> frm, T&&... args) noexcept {
return fputs_encoded(fmt::format(frm, std::forward<T>(args)...),
stdout);
}
/**
* Convert an int64_t to a time_t, clamping it within the range.
*
* This is only doing anything when using a 32-bit time_t value. This doesn't
* solve the 3038 problem, but at least allows for clearly marking where we
* convert
*
* @param t some 64-bit value that encodes a Unix time.
*
* @return a time_t value
*/
constexpr ::time_t time_t_min = 0;
constexpr ::time_t time_t_max = std::numeric_limits<::time_t>::max();
[[nodiscard]] constexpr ::time_t to_time_t(int64_t t) {
return std::clamp(t,
static_cast<int64_t>(time_t_min),
static_cast<int64_t>(time_t_max));
}
/**
* Parse a date string to the corresponding time_t
* *
* @param date the date expressed a YYYYMMDDHHMMSS or any n... of the first
* characters, using the local timezone. Non-digits are ignored,
* so 2018-05-05 is equivalent to 20180505.
* @param first whether to fill out incomplete dates to the start (@true) or the
* end (@false); ie. either 1972 -> 197201010000 or 1972 -> 197212312359
* @param use_utc interpret @param date as UTC
*
* @return the corresponding time_t or Nothing if parsing failed.
*/
[[nodiscard]] Option<::time_t> parse_date_time(const std::string& date,
bool first, bool use_utc=false);
/**
* Crudely convert HTML to plain text. This attempts to scrape the
* human-readable text from html-email so we can use it for indexing.
*
* @param html html
*
* @return plain text
*/
[[nodiscard]] std::string html_to_text(const std::string& html);
/**
* Hack to avoid locale crashes
*
* @return true if setting locale worked; false otherwise
*/
bool locale_workaround();
/**
* Is the given timezone available? For tests
*
* @param tz a timezone, such as Europe/Helsinki
*
* @return true or false
*/
bool timezone_available(const std::string& tz);
// https://stackoverflow.com/questions/19053351/how-do-i-use-a-custom-deleter-with-a-stdunique-ptr-member
template <auto fn>
struct deleter_from_fn {
template <typename T>
constexpr void operator()(T* arg) const {
fn(arg);
}
};
template <typename T, auto fn>
using deletable_unique_ptr = std::unique_ptr<T, deleter_from_fn<fn>>;
using Clock = std::chrono::steady_clock;
using Duration = Clock::duration;
template <typename Unit>
constexpr int64_t
to_unit(Duration d)
{
using namespace std::chrono;
return duration_cast<Unit>(d).count();
}
constexpr int64_t
to_s(Duration d)
{
return to_unit<std::chrono::seconds>(d);
}
constexpr int64_t
to_ms(Duration d)
{
return to_unit<std::chrono::milliseconds>(d);
}
constexpr int64_t
to_us(Duration d)
{
return to_unit<std::chrono::microseconds>(d);
}
struct StopWatch {
using Clock = std::chrono::steady_clock;
StopWatch(const std::string name) : start_{Clock::now()}, name_{name} {}
~StopWatch() {
const auto us{static_cast<double>(to_us(Clock::now() - start_))};
/* LCOV_EXCL_START*/
if (us > 2000000)
mu_debug("sw: {}: finished after {:.1f} s", name_, us / 1000000);
/* LCOV_EXCL_STOP*/
else if (us > 2000)
mu_debug("sw: {}: finished after {:.1f} ms", name_, us / 1000);
else
mu_debug("sw: {}: finished after {} us", name_, us);
}
private:
Clock::time_point start_;
std::string name_;
};
/**
* Convert a size string to a size in bytes
*
* @param sizestr the size string
* @param first
*
* @return the size or Nothing if parsing failed
*/
Option<int64_t> parse_size(const std::string& sizestr, bool first);
/**
* Convert a size into a size in bytes string
*
* @param size the size
* @param first
*
* @return the size expressed as a string with the decimal number of bytes
*/
std::string size_to_string(int64_t size);
/**
* get a crude 'summary' of the string, ie. the first /n/ lines of the strings,
* with all newlines removed, replaced by single spaces
*
* @param str the source string
* @param max_lines the maximum number of lines to include in the summary
*
* @return a newly allocated string with the summary. use g_free to free it.
*/
std::string summarize(const std::string& str, size_t max_lines);
/**
* Quote & escape a string for " and \
*
* @param str a string
*
* @return quoted string
*/
std::string quote(const std::string& str);
/**
* Set the name of the current thread
*
* This depends on pthread_setname_np() being available;
* otherwise, does nothing.
*
* @param name thread name
*/
void set_thread_name(const std::string& name);
/**
* Convert any ostreamable<< value to a string
*
* @param t the value
*
* @return a std::string
*/
template <typename T>
inline std::string
to_string(const T& val)
{
std::stringstream sstr;
sstr << val;
return sstr.str();
}
/**
* Convert to std::string to a std::string_view
* Careful with the lifetimes!
*
* @param s a string
*
* @return a string_view
*/
inline std::string_view
to_string_view(const std::string& s)
{
return std::string_view{s.data(), s.size()};
}
/**
* Consume a gchar* and return a std::string
*
* @param str a gchar* (consumed/freed with g_free())
*
* @return a std::string, empty if gchar was {}
*/
inline std::string
to_string_gchar(gchar*&& str)
{
std::string s(str?str:"");
g_free(str);
return s;
}
/**
* Consume a char* and return a std::string
*
* @param str a gchar* (consumed/freed with ::free())
*
* @return a std::string, empty if gchar was {}
*/
inline std::string
to_string_char(char*&& str)
{
std::string s(str?str:"");
::free(str);
return s;
}
/**
* Shell-quote the given string (as per g_shell_quote())
*
* @param str some string
*
* @return quoted string
*/
inline std::string shell_quote(const std::string& str) {
return to_string_gchar(g_shell_quote(str.c_str()));
}
/*
* Lexnums are lexicographically sortable string representations of non-negative
* integers. Start with 'f' + length of hex-representation number, followed by
* the hex representation itself. So,
*
* 0 -> 'g0'
* 1 -> 'g1'
* 10 -> 'ga'
* 16 -> 'h10'
*
* etc.
*/
std::string to_lexnum(int64_t val);
int64_t from_lexnum(const std::string& str);
/**
* Like std::find_if, but using sequence instead of a range.
*
* @param seq some std::find_if compatible sequence
* @param pred a predicate
*
* @return an iterator
*/
template<typename Sequence, typename UnaryPredicate>
typename Sequence::const_iterator seq_find_if(const Sequence& seq, UnaryPredicate pred) {
return std::find_if(seq.cbegin(), seq.cend(), pred);
}
/**
* Is pred(element) true for at least one element of sequence?
*
* @param seq sequence
* @param pred a predicate
*
* @return true or false
*/
template<typename Sequence, typename UnaryPredicate>
bool seq_some(const Sequence& seq, UnaryPredicate pred) {
return seq_find_if(seq, pred) != seq.cend();
}
/**
* Create a sequence that has all element of seq for which pred is true
*
* @param seq sequence
* @param pred false
*
* @return sequence
*/
template<typename Sequence, typename UnaryPredicate>
Sequence seq_filter(const Sequence& seq, UnaryPredicate pred) {
Sequence res;
std::copy_if(seq.begin(), seq.end(), std::back_inserter(res), pred);
return res;
}
/**
* Create a sequence that has all element of seq for which pred is false
*
* @param seq sequence
* @param pred false
*
* @return sequence
*/
template<typename Sequence, typename UnaryPredicate>
Sequence seq_remove(const Sequence& seq, UnaryPredicate pred) {
Sequence res;
std::remove_copy_if(seq.begin(), seq.end(), std::back_inserter(res), pred);
return res;
}
template<typename Sequence, typename Compare>
void seq_sort(Sequence& seq, Compare cmp) { std::sort(seq.begin(), seq.end(), cmp); }
/**
* Like std::accumulate, but using a sequence instead of a range.
*
* @param seq some std::accumulate compatible sequence
* @param init the initial value
* @param op binary operation to calculate the next element
*
* @return the result value.
*/
template<typename Sequence, typename ResultType, typename BinaryOp>
ResultType seq_fold(const Sequence& seq, ResultType init, BinaryOp op) {
return std::accumulate(seq.cbegin(), seq.cend(), init, op);
}
template<typename Sequence, typename UnaryOp>
void seq_for_each(const Sequence& seq, UnaryOp op) {
std::for_each(seq.cbegin(), seq.cend(), op);
}
struct MaybeAnsi {
explicit MaybeAnsi(bool use_color) : color_{use_color} {}
enum struct Color {
Black = 30,
Red = 31,
Green = 32,
Yellow = 33,
Blue = 34,
Magenta = 35,
Cyan = 36,
White = 37,
BrightBlack = 90,
BrightRed = 91,
BrightGreen = 92,
BrightYellow = 93,
BrightBlue = 94,
BrightMagenta = 95,
BrightCyan = 96,
BrightWhite = 97,
};
std::string fg(Color c) const { return ansi(c, true); }
std::string bg(Color c) const { return ansi(c, false); }
std::string reset() const { return color_ ? "\x1b[0m" : ""; }
private:
std::string ansi(Color c, bool fg = true) const
{
return color_ ? mu_format("\x1b[{}m",
static_cast<int>(c) + (fg ? 0 : 10)) : "";
}
const bool color_;
};
constexpr auto MU_COLOR_RED = "\x1b[31m";
constexpr auto MU_COLOR_GREEN = "\x1b[32m";
constexpr auto MU_COLOR_YELLOW = "\x1b[33m";
constexpr auto MU_COLOR_BLUE = "\x1b[34m";
constexpr auto MU_COLOR_MAGENTA = "\x1b[35m";
constexpr auto MU_COLOR_CYAN = "\x1b[36m";
constexpr auto MU_COLOR_DEFAULT = "\x1b[0m";
template<class Enum> // like C++23 std::to_underlying
constexpr std::underlying_type_t<Enum> to_ut( Enum e ) noexcept {
return static_cast<std::underlying_type_t<Enum>>(e);
}
// C++20 way to make enum-class bitmaps usable
template<typename Enum>
requires std::is_enum_v<Enum>
struct enable_bitops {
static constexpr bool enable = false;
};
// add a concept EnumBitmap which work for enum-classes that specialize enable_bitmups
template<typename Enum> concept EnumBitmap = enable_bitops<Enum>::enable;
template<EnumBitmap Enum> constexpr Enum operator|(Enum e1, Enum e2) {
return static_cast<Enum>(to_ut(e1) | to_ut(e2));
}
template<EnumBitmap Enum> constexpr Enum operator|=(Enum& e1, Enum e2) {
return e1 = static_cast<Enum>(e1 | e2);
}
template<EnumBitmap Enum> constexpr Enum operator&=(Enum& e1, Enum e2) {
return e1 = static_cast<Enum>(e1 & e2);
}
template<EnumBitmap Enum> constexpr Enum operator&(Enum e1, Enum e2) {
return static_cast<Enum>(to_ut(e1) & to_ut(e2));
}
template<EnumBitmap Enum> constexpr Enum operator~(Enum e) {
return static_cast<Enum>(~to_ut(e));
}
template<EnumBitmap Enum> constexpr bool any_of(Enum e) {
return to_ut(e) != 0;
}
template<EnumBitmap Enum> constexpr bool none_of(Enum e) {
return to_ut(e) == 0;
}
// macro to enable bitops for the enum-class enums
#define MU_ENABLE_BITOPS(Enum) \
template<> \
struct enable_bitops<Enum> { \
static constexpr bool enable = true; \
}
} // namespace Mu
#endif /* MU_UTILS_HH__ */