365 lines
11 KiB
C++
365 lines
11 KiB
C++
// This file Copyright © 2009-2023 Mnemosyne LLC.
|
||
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
||
// or any future license endorsed by Mnemosyne LLC.
|
||
// License text can be found in the licenses/ folder.
|
||
|
||
#pragma once
|
||
|
||
#include <algorithm>
|
||
#include <cctype>
|
||
#include <chrono>
|
||
#include <cstdint> // uint8_t, uint32_t, uint64_t
|
||
#include <cstddef> // size_t
|
||
#include <ctime> // time_t
|
||
#include <optional>
|
||
#include <string>
|
||
#include <string_view>
|
||
#include <thread>
|
||
#include <type_traits>
|
||
#include <vector>
|
||
|
||
#include "platform-quota.h"
|
||
#include "tr-macros.h"
|
||
|
||
struct tr_error;
|
||
|
||
/**
|
||
* @addtogroup utils Utilities
|
||
* @{
|
||
*/
|
||
|
||
#if !defined(_)
|
||
#if defined(HAVE_GETTEXT) && !defined(__APPLE__)
|
||
#include <libintl.h>
|
||
#define _(a) gettext(a)
|
||
#else
|
||
#define _(a) (a)
|
||
#endif
|
||
#endif
|
||
|
||
#if defined(HAVE_NGETTEXT)
|
||
#define tr_ngettext ngettext
|
||
#else
|
||
#define tr_ngettext(singular, plural, count) ((count) == 1 ? (singular) : (plural))
|
||
#endif
|
||
|
||
/* #define DISABLE_GETTEXT */
|
||
#ifndef DISABLE_GETTEXT
|
||
#if defined(_WIN32)
|
||
#define DISABLE_GETTEXT
|
||
#endif
|
||
#endif
|
||
#ifdef DISABLE_GETTEXT
|
||
#undef _
|
||
#undef tr_ngettext
|
||
#define _(a) (a)
|
||
#define tr_ngettext(singular, plural, count) ((count) == 1 ? (singular) : (plural))
|
||
#endif
|
||
|
||
// ---
|
||
|
||
[[nodiscard]] std::string_view tr_get_mime_type_for_filename(std::string_view filename);
|
||
|
||
/**
|
||
* @brief Rich Salz's classic implementation of shell-style pattern matching for `?`, `\`, `[]`, and `*` characters.
|
||
* @return 1 if the pattern matches, 0 if it doesn't, or -1 if an error occurred
|
||
*/
|
||
[[nodiscard]] bool tr_wildmat(std::string_view text, std::string_view pattern);
|
||
|
||
bool tr_loadFile(std::string_view filename, std::vector<char>& contents, tr_error** error = nullptr);
|
||
|
||
bool tr_saveFile(std::string_view filename, std::string_view contents, tr_error** error = nullptr);
|
||
|
||
template<typename ContiguousRange>
|
||
constexpr auto tr_saveFile(std::string_view filename, ContiguousRange const& x, tr_error** error = nullptr)
|
||
{
|
||
return tr_saveFile(filename, std::string_view{ std::data(x), std::size(x) }, error);
|
||
}
|
||
|
||
/**
|
||
* @brief Get disk capacity and free disk space (in bytes) for the specified folder.
|
||
* @return struct with free and total as zero or positive integer on success, -1 in case of error.
|
||
*/
|
||
[[nodiscard]] tr_disk_space tr_dirSpace(std::string_view directory);
|
||
|
||
/** @brief return the current date in milliseconds */
|
||
[[nodiscard]] uint64_t tr_time_msec();
|
||
|
||
/** @brief sleep for the specified duration */
|
||
template<class rep, class period>
|
||
void tr_wait(std::chrono::duration<rep, period> const& delay)
|
||
{
|
||
std::this_thread::sleep_for(delay);
|
||
}
|
||
|
||
template<typename T, std::enable_if_t<std::is_integral<T>::value, bool> = true>
|
||
[[nodiscard]] std::optional<T> tr_parseNum(std::string_view str, std::string_view* setme_remainder = nullptr, int base = 10);
|
||
|
||
template<typename T, std::enable_if_t<std::is_floating_point<T>::value, bool> = true>
|
||
[[nodiscard]] std::optional<T> tr_parseNum(std::string_view str, std::string_view* setme_remainder = nullptr);
|
||
|
||
#ifdef _WIN32
|
||
|
||
[[nodiscard]] std::string tr_win32_format_message(uint32_t code);
|
||
[[nodiscard]] std::string tr_win32_native_to_utf8(std::wstring_view);
|
||
[[nodiscard]] std::wstring tr_win32_utf8_to_native(std::string_view);
|
||
|
||
int tr_main_win32(int argc, char** argv, int (*real_main)(int, char**));
|
||
|
||
#define tr_main(...) \
|
||
main_impl(__VA_ARGS__); \
|
||
int main(int argc, char* argv[]) \
|
||
{ \
|
||
return tr_main_win32(argc, argv, &main_impl); \
|
||
} \
|
||
int main_impl(__VA_ARGS__)
|
||
|
||
#else
|
||
|
||
#define tr_main main
|
||
|
||
#endif
|
||
|
||
// ---
|
||
|
||
[[nodiscard]] constexpr bool tr_str_is_empty(char const* value)
|
||
{
|
||
return value == nullptr || *value == '\0';
|
||
}
|
||
|
||
/** @brief Portability wrapper for `strlcpy()` that uses the system implementation if available */
|
||
size_t tr_strlcpy(void* dst, void const* src, size_t siz);
|
||
|
||
/** @brief Convenience wrapper around `strerorr()` guaranteed to not return nullptr
|
||
@param errnum the error number to describe */
|
||
[[nodiscard]] char const* tr_strerror(int errnum);
|
||
|
||
template<typename T>
|
||
[[nodiscard]] std::string tr_strlower(T in)
|
||
{
|
||
auto out = std::string{ in };
|
||
std::for_each(std::begin(out), std::end(out), [](char& ch) { ch = std::tolower(ch); });
|
||
return out;
|
||
}
|
||
|
||
template<typename T>
|
||
[[nodiscard]] std::string tr_strupper(T in)
|
||
{
|
||
auto out = std::string{ in };
|
||
std::for_each(std::begin(out), std::end(out), [](char& ch) { ch = std::toupper(ch); });
|
||
return out;
|
||
}
|
||
|
||
// --- std::string_view utils
|
||
|
||
template<typename T>
|
||
[[nodiscard]] constexpr bool tr_strvContains(std::string_view sv, T key) noexcept // c++23
|
||
{
|
||
return sv.find(key) != std::string_view::npos;
|
||
}
|
||
|
||
[[nodiscard]] constexpr bool tr_strvStartsWith(std::string_view sv, char key) // c++20
|
||
{
|
||
return !std::empty(sv) && sv.front() == key;
|
||
}
|
||
|
||
[[nodiscard]] constexpr bool tr_strvStartsWith(std::string_view sv, std::string_view key) // c++20
|
||
{
|
||
return std::size(key) <= std::size(sv) && sv.substr(0, std::size(key)) == key;
|
||
}
|
||
|
||
[[nodiscard]] constexpr bool tr_strvStartsWith(std::wstring_view sv, std::wstring_view key) // c++20
|
||
{
|
||
return std::size(key) <= std::size(sv) && sv.substr(0, std::size(key)) == key;
|
||
}
|
||
|
||
[[nodiscard]] constexpr bool tr_strvEndsWith(std::string_view sv, std::string_view key) // c++20
|
||
{
|
||
return std::size(key) <= std::size(sv) && sv.substr(std::size(sv) - std::size(key)) == key;
|
||
}
|
||
|
||
[[nodiscard]] constexpr bool tr_strvEndsWith(std::string_view sv, char key) // c++20
|
||
{
|
||
return !std::empty(sv) && sv.back() == key;
|
||
}
|
||
|
||
constexpr std::string_view tr_strvSep(std::string_view* sv, char delim)
|
||
{
|
||
auto pos = sv->find(delim);
|
||
auto const ret = sv->substr(0, pos);
|
||
sv->remove_prefix(pos != std::string_view::npos ? pos + 1 : std::size(*sv));
|
||
return ret;
|
||
}
|
||
|
||
constexpr bool tr_strvSep(std::string_view* sv, std::string_view* token, char delim)
|
||
{
|
||
if (std::empty(*sv))
|
||
{
|
||
return false;
|
||
}
|
||
|
||
*token = tr_strvSep(sv, delim);
|
||
return true;
|
||
}
|
||
|
||
[[nodiscard]] std::string_view tr_strvStrip(std::string_view str);
|
||
|
||
[[nodiscard]] std::string tr_strv_convert_utf8(std::string_view sv);
|
||
|
||
[[nodiscard]] std::string tr_strv_replace_invalid(std::string_view sv, uint32_t replacement = 0xFFFD /*<2A>*/);
|
||
|
||
/**
|
||
* @brief copies `src` into `buf`.
|
||
*
|
||
* - Always returns std::size(src).
|
||
* - `src` will be copied into `buf` iff `buflen >= std::size(src)`
|
||
* - `buf` will also be zero terminated iff `buflen >= std::size(src) + 1`.
|
||
*/
|
||
size_t tr_strvToBuf(std::string_view src, char* buf, size_t buflen);
|
||
|
||
// ---
|
||
|
||
/** @brief return `TR_RATIO_NA`, `TR_RATIO_INF`, or a number in [0..1]
|
||
@return `TR_RATIO_NA`, `TR_RATIO_INF`, or a number in [0..1] */
|
||
[[nodiscard]] double tr_getRatio(uint64_t numerator, uint64_t denominator);
|
||
|
||
/**
|
||
* @brief Given a string like "1-4" or "1-4,6,9,14-51", this returns a
|
||
* newly-allocated array of all the integers in the set.
|
||
* @return a vector of integers, which is empty if the string can't be parsed.
|
||
*
|
||
* For example, "5-8" will return [ 5, 6, 7, 8 ] and setmeCount will be 4.
|
||
*/
|
||
[[nodiscard]] std::vector<int> tr_parseNumberRange(std::string_view str);
|
||
|
||
/**
|
||
* @brief truncate a double value at a given number of decimal places.
|
||
*
|
||
* this can be used to prevent a `printf()` call from rounding up:
|
||
* call with the `decimal_places` argument equal to the number of
|
||
* decimal places in the `printf()`'s precision:
|
||
*
|
||
* - printf("%.2f%%", 99.999) ==> "100.00%"
|
||
*
|
||
* - printf("%.2f%%", tr_truncd(99.999, 2)) ==> "99.99%"
|
||
* ^ ^
|
||
* | These should match |
|
||
* +------------------------+
|
||
*/
|
||
[[nodiscard]] double tr_truncd(double x, int decimal_places);
|
||
|
||
/* return a percent formatted string of either x.xx, xx.x or xxx */
|
||
[[nodiscard]] std::string tr_strpercent(double x);
|
||
|
||
/**
|
||
* @param ratio the ratio to convert to a string
|
||
* @param infinity the string representation of "infinity"
|
||
*/
|
||
[[nodiscard]] std::string tr_strratio(double ratio, char const* infinity);
|
||
|
||
/**
|
||
* @brief move a file
|
||
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
||
*/
|
||
bool tr_moveFile(std::string_view oldpath, std::string_view newpath, struct tr_error** error = nullptr);
|
||
|
||
// ---
|
||
|
||
namespace libtransmission::detail::tr_time
|
||
{
|
||
extern time_t current_time;
|
||
}
|
||
|
||
/**
|
||
* @brief very inexpensive form of time(nullptr)
|
||
* @return the current epoch time in seconds
|
||
*
|
||
* This function returns a second counter that is updated once per second.
|
||
* If something blocks the libtransmission thread for more than a second,
|
||
* that counter may be thrown off, so this function is not guaranteed
|
||
* to always be accurate. However, it is *much* faster when 100% accuracy
|
||
* isn't needed
|
||
*/
|
||
[[nodiscard]] static inline time_t tr_time() noexcept
|
||
{
|
||
return libtransmission::detail::tr_time::current_time;
|
||
}
|
||
|
||
/** @brief Private libtransmission function to update `tr_time()`'s counter */
|
||
constexpr void tr_timeUpdate(time_t now) noexcept
|
||
{
|
||
libtransmission::detail::tr_time::current_time = now;
|
||
}
|
||
|
||
/** @brief Portability wrapper for `htonll()` that uses the system implementation if available */
|
||
[[nodiscard]] uint64_t tr_htonll(uint64_t hostlonglong);
|
||
|
||
/** @brief Portability wrapper for `ntohll()` that uses the system implementation if available */
|
||
[[nodiscard]] uint64_t tr_ntohll(uint64_t netlonglong);
|
||
|
||
// ---
|
||
|
||
/* example: tr_formatter_size_init(1024, _("KiB"), _("MiB"), _("GiB"), _("TiB")); */
|
||
|
||
void tr_formatter_size_init(uint64_t kilo, char const* kb, char const* mb, char const* gb, char const* tb);
|
||
|
||
void tr_formatter_speed_init(size_t kilo, char const* kb, char const* mb, char const* gb, char const* tb);
|
||
|
||
void tr_formatter_mem_init(size_t kilo, char const* kb, char const* mb, char const* gb, char const* tb);
|
||
|
||
extern size_t tr_speed_K;
|
||
extern size_t tr_mem_K;
|
||
extern uint64_t tr_size_K; /* unused? */
|
||
|
||
/* format a speed from KBps into a user-readable string. */
|
||
[[nodiscard]] std::string tr_formatter_speed_KBps(double kilo_per_second);
|
||
|
||
/* format a memory size from bytes into a user-readable string. */
|
||
[[nodiscard]] std::string tr_formatter_mem_B(size_t bytes);
|
||
|
||
/* format a memory size from MB into a user-readable string. */
|
||
[[nodiscard]] static inline std::string tr_formatter_mem_MB(double MBps)
|
||
{
|
||
return tr_formatter_mem_B((size_t)(MBps * tr_mem_K * tr_mem_K));
|
||
}
|
||
|
||
/* format a file size from bytes into a user-readable string. */
|
||
[[nodiscard]] std::string tr_formatter_size_B(uint64_t bytes);
|
||
|
||
void tr_formatter_get_units(void* dict);
|
||
|
||
[[nodiscard]] static inline size_t tr_toSpeedBytes(size_t KBps)
|
||
{
|
||
return KBps * tr_speed_K;
|
||
}
|
||
|
||
[[nodiscard]] static inline auto tr_toSpeedKBps(size_t Bps)
|
||
{
|
||
return Bps / double(tr_speed_K);
|
||
}
|
||
|
||
[[nodiscard]] static inline auto tr_toMemBytes(size_t MB)
|
||
{
|
||
return uint64_t(tr_mem_K) * tr_mem_K * MB;
|
||
}
|
||
|
||
[[nodiscard]] static inline auto tr_toMemMB(uint64_t B)
|
||
{
|
||
return size_t(B / (tr_mem_K * tr_mem_K));
|
||
}
|
||
|
||
// ---
|
||
|
||
/** @brief Check if environment variable exists. */
|
||
[[nodiscard]] bool tr_env_key_exists(char const* key);
|
||
|
||
/** @brief Get environment variable value as int. */
|
||
[[nodiscard]] int tr_env_get_int(char const* key, int default_value);
|
||
|
||
/** @brief Get environment variable value as string. */
|
||
[[nodiscard]] std::string tr_env_get_string(std::string_view key, std::string_view default_value = {});
|
||
|
||
// ---
|
||
|
||
void tr_net_init();
|