mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
282b0f4e73
* Create default config and install to /etc/polybar Closes #2405 * Search for config in /etc We search in XDG_CONFIG_DIRS, /etc/xdg, and /etc but only for config.ini Closes #2016 * Remove config installation from build.sh * Remove userconfig cmake file * Cleanup * Cleanup default config * Update CHANGELOG.md Co-authored-by: dvermd <315743+dvermd@users.noreply.github.com> * Update src/main.cpp Co-authored-by: dvermd <315743+dvermd@users.noreply.github.com> * Add tests for string functions * Support loading bars from fallbacks in /etc * Combine duplicate string_util::contains test Co-authored-by: dvermd <315743+dvermd@users.noreply.github.com>
108 lines
3.2 KiB
C++
108 lines
3.2 KiB
C++
#pragma once
|
|
|
|
#include <sstream>
|
|
|
|
#include "common.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
namespace {
|
|
/**
|
|
* Overload that allows sub-string removal at the end of given string
|
|
*/
|
|
inline string& operator-(string& a, const string& b) {
|
|
if (a.size() >= b.size() && a.substr(a.size() - b.size()) == b) {
|
|
return a.erase(a.size() - b.size());
|
|
} else {
|
|
return a;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Overload that allows sub-string removal at the end of given string
|
|
*/
|
|
inline void operator-=(string& a, const string& b) {
|
|
if (a.size() >= b.size() && a.substr(a.size() - b.size()) == b) {
|
|
a.erase(a.size() - b.size());
|
|
}
|
|
}
|
|
} // namespace
|
|
|
|
class sstream {
|
|
public:
|
|
sstream() : m_stream() {}
|
|
|
|
template <typename T>
|
|
sstream& operator<<(const T& object) {
|
|
m_stream << object;
|
|
return *this;
|
|
}
|
|
|
|
sstream& operator<<(const char* cz) {
|
|
m_stream << cz;
|
|
return *this;
|
|
}
|
|
|
|
operator string() const {
|
|
return m_stream.str();
|
|
}
|
|
|
|
const string to_string() const {
|
|
return m_stream.str();
|
|
}
|
|
|
|
private:
|
|
std::stringstream m_stream;
|
|
};
|
|
|
|
namespace string_util {
|
|
/**
|
|
* Hash type
|
|
*/
|
|
using hash_type = unsigned long;
|
|
|
|
bool contains(const string& haystack, const string& needle);
|
|
bool contains_ignore_case(const string& haystack, const string& needle);
|
|
bool ends_with(const string& haystack, const string& suffix);
|
|
string upper(const string& s);
|
|
string lower(const string& s);
|
|
bool compare(const string& s1, const string& s2);
|
|
|
|
string replace(const string& haystack, const string& needle, const string& replacement, size_t start = 0,
|
|
size_t end = string::npos);
|
|
string replace_all(const string& haystack, const string& needle, const string& replacement, size_t start = 0,
|
|
size_t end = string::npos);
|
|
|
|
string squeeze(const string& haystack, char needle);
|
|
|
|
string strip(const string& haystack, char needle);
|
|
string strip_trailing_newline(const string& haystack);
|
|
|
|
string ltrim(string value, function<bool(char)> pred);
|
|
string rtrim(string value, function<bool(char)> pred);
|
|
string trim(string value, function<bool(char)> pred);
|
|
|
|
string ltrim(string&& value, const char& needle = ' ');
|
|
string rtrim(string&& value, const char& needle = ' ');
|
|
string trim(string&& value, const char& needle = ' ');
|
|
|
|
size_t char_len(const string& value);
|
|
string utf8_truncate(string&& value, size_t len);
|
|
|
|
string join(const vector<string>& strs, const string& delim);
|
|
vector<string> split(const string& s, char delim);
|
|
std::vector<std::string> tokenize(const string& str, char delimiters);
|
|
|
|
size_t find_nth(const string& haystack, size_t pos, const string& needle, size_t nth);
|
|
|
|
string floating_point(double value, size_t precision, bool fixed = false, const string& locale = "");
|
|
string filesize_mib(unsigned long long kibibytes, size_t precision = 0, const string& locale = "");
|
|
string filesize_gib(unsigned long long kibibytes, size_t precision = 0, const string& locale = "");
|
|
string filesize_gib_mib(
|
|
unsigned long long kibibytes, size_t precision_mib = 0, size_t precision_gib = 0, const string& locale = "");
|
|
string filesize(unsigned long long kbytes, size_t precision = 0, bool fixed = false, const string& locale = "");
|
|
|
|
hash_type hash(const string& src);
|
|
} // namespace string_util
|
|
|
|
POLYBAR_NS_END
|