libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
string.hxx
Go to the documentation of this file.
1#pragma once
2
3// C++
4#include <cctype>
5#include <cstring>
6#include <string>
7#include <string_view>
8#include <vector>
9
10// cosmos
11#include <cosmos/dso_export.h>
12#include <cosmos/BitMask.hxx>
13#include <cosmos/SysString.hxx>
14
15namespace cosmos {
16
18using StringVector = std::vector<std::string>;
20using StringViewVector = std::vector<std::string_view>;
22using CStringVector = std::vector<const char*>;
24using SysStringVector = std::vector<SysString>;
25
35 bool operator()(const char *a, const char *b) const {
36 return std::strcmp(a, b) < 0;
37 }
38};
39
41std::string COSMOS_API to_lower(const std::string_view s);
43std::string COSMOS_API to_upper(const std::string_view s);
44
46std::wstring COSMOS_API to_lower(const std::wstring_view s);
48std::wstring COSMOS_API to_upper(const std::wstring_view s);
49
51void COSMOS_API strip(std::string &s);
52
54inline std::string stripped(const std::string_view s) {
55 std::string ret{s};
56 strip(ret);
57 return ret;
58}
59
61void COSMOS_API strip(std::wstring &s);
62
64inline std::wstring stripped(const std::wstring_view s) {
65 std::wstring ret{s};
66 strip(ret);
67 return ret;
68}
69
71inline bool is_prefix(const std::string_view s, const std::string_view prefix) {
72 // TODO: in C++20 string_view has a starts_with() member
73 return s.substr(0, prefix.length()) == prefix;
74}
75
77inline bool is_suffix(const std::string_view s, const std::string_view suffix) {
78 if (s.size() < suffix.size())
79 return false;
80 // TODO: in C++20 string_view has an ends_with() member
81 return s.substr(s.size() - suffix.size()) == suffix;
82}
83
85
90inline std::string_view to_string_view(const char *s) {
91 return s ? std::string_view{s} : std::string_view{};
92}
93
95
100template <typename CH>
101inline bool printable(CH ch) {
102 static_assert(sizeof(ch) == 1, "only character types of one byte size allowed");
103 return std::isprint(static_cast<unsigned char>(ch));
104}
105
107enum class SplitFlag {
109 STRIP_PARTS = 0x1,
111 KEEP_EMPTY = 0x2
112};
113
114using SplitFlags = BitMask<SplitFlag>;
115
117
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{});
129
130// overload of split avoid type deduction problems
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);
136}
137
138} // end ns
SplitFlag
Bitmask for algorithm settings of the split() function.
Definition string.hxx:107
@ 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.
Definition string.hxx:18
bool printable(CH ch)
Simple wrapper around std::isprint that implicitly casts to unsigned char.
Definition string.hxx:101
std::vector< const char * > CStringVector
A vector of plain const char*.
Definition string.hxx:22
std::string_view to_string_view(const char *s)
Simple wrapper that creates a string_view from s and supports also nullptr.
Definition string.hxx:90
std::vector< SysString > SysStringVector
A vector of c-string wrappers.
Definition string.hxx:24
std::string stripped(const std::string_view s)
Returns a version of the given string with stripped off leading and trailing whitespace.
Definition string.hxx:54
std::vector< std::string_view > StringViewVector
A vector of std::string_view.
Definition string.hxx:20
bool is_prefix(const std::string_view s, const std::string_view prefix)
Returns whether prefix is a prefix of s.
Definition string.hxx:71
bool is_suffix(const std::string_view s, const std::string_view suffix)
Returns whether suffix is a suffix of s.
Definition string.hxx:77
Comparison type for std::map and similar containers with plain char* as keys.
Definition string.hxx:34