11#include <cosmos/dso_export.h>
12#include <cosmos/BitMask.hxx>
13#include <cosmos/SysString.hxx>
35 bool operator()(
const char *a,
const char *b)
const {
36 return std::strcmp(a, b) < 0;
41std::string COSMOS_API to_lower(
const std::string_view s);
43std::string COSMOS_API to_upper(
const std::string_view s);
46std::wstring COSMOS_API to_lower(
const std::wstring_view s);
48std::wstring COSMOS_API to_upper(
const std::wstring_view s);
51void COSMOS_API strip(std::string &s);
54inline std::string
stripped(
const std::string_view s) {
61void COSMOS_API strip(std::wstring &s);
64inline std::wstring
stripped(
const std::wstring_view s) {
71inline bool is_prefix(
const std::string_view s,
const std::string_view prefix) {
73 return s.substr(0, prefix.length()) == prefix;
77inline bool is_suffix(
const std::string_view s,
const std::string_view suffix) {
78 if (s.size() < suffix.size())
81 return s.substr(s.size() - suffix.size()) == suffix;
91 return s ? std::string_view{s} : std::string_view{};
100template <
typename CH>
102 static_assert(
sizeof(ch) == 1,
"only character types of one byte size allowed");
103 return std::isprint(
static_cast<unsigned char>(ch));
114using SplitFlags = BitMask<SplitFlag>;
124template <
typename CHAR>
125COSMOS_API std::vector<std::basic_string<CHAR>> split(
126 const std::basic_string_view<CHAR> str,
127 const std::basic_string_view<CHAR> sep,
128 const SplitFlags flags = SplitFlags{});
131inline std::vector<std::string> split(
132 const std::string_view str,
133 const std::string_view sep,
134 const SplitFlags flags = SplitFlags{}) {
135 return split<char>(str, sep, flags);
SplitFlag
Bitmask for algorithm settings of the split() function.
@ KEEP_EMPTY
When multiple subsequent separators occur, keep empty parts in the result.
@ STRIP_PARTS
Strip each extracted part using strip().
std::vector< std::string > StringVector
A vector of std::string.
bool printable(CH ch)
Simple wrapper around std::isprint that implicitly casts to unsigned char.
std::vector< const char * > CStringVector
A vector of plain const char*.
std::string_view to_string_view(const char *s)
Simple wrapper that creates a string_view from s and supports also nullptr.
std::vector< SysString > SysStringVector
A vector of c-string wrappers.
std::string stripped(const std::string_view s)
Returns a version of the given string with stripped off leading and trailing whitespace.
std::vector< std::string_view > StringViewVector
A vector of std::string_view.
bool is_prefix(const std::string_view s, const std::string_view prefix)
Returns whether prefix is a prefix of s.
bool is_suffix(const std::string_view s, const std::string_view suffix)
Returns whether suffix is a suffix of s.
Comparison type for std::map and similar containers with plain char* as keys.