libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
string.hxx File Reference
#include <cctype>
#include <cstring>
#include <string>
#include <string_view>
#include <vector>
#include <cosmos/dso_export.h>
#include <cosmos/BitMask.hxx>
#include <cosmos/SysString.hxx>

Go to the source code of this file.

Classes

struct  cosmos::CompareCString
 Comparison type for std::map and similar containers with plain char* as keys. More...
 

Typedefs

using cosmos::StringVector = std::vector<std::string>
 A vector of std::string.
 
using cosmos::StringViewVector = std::vector<std::string_view>
 A vector of std::string_view.
 
using cosmos::CStringVector = std::vector<const char*>
 A vector of plain const char*.
 
using cosmos::SysStringVector = std::vector<SysString>
 A vector of c-string wrappers.
 
using cosmos::SplitFlags = BitMask<SplitFlag>
 

Enumerations

enum class  cosmos::SplitFlag { STRIP_PARTS = 0x1 , KEEP_EMPTY = 0x2 }
 Bitmask for algorithm settings of the split() function. More...
 

Functions

std::string cosmos::to_lower (const std::string_view s)
 Returns an all lower case version of s.
 
std::string cosmos::to_upper (const std::string_view s)
 Returns an all upper case version of s.
 
std::wstring cosmos::to_lower (const std::wstring_view s)
 Returns an all lower case version of s.
 
std::wstring cosmos::to_upper (const std::wstring_view s)
 Returns an all upper case version of s.
 
void cosmos::strip (std::string &s)
 Strips leading and trailing whitespace from the given string in-place.
 
std::string cosmos::stripped (const std::string_view s)
 Returns a version of the given string with stripped off leading and trailing whitespace.
 
void cosmos::strip (std::wstring &s)
 Wide string variant of strip(std::string &s)
 
std::wstring cosmos::stripped (const std::wstring_view s)
 Wide string variant of stripped(const std::string_view)
 
bool cosmos::is_prefix (const std::string_view s, const std::string_view prefix)
 Returns whether prefix is a prefix of s.
 
bool cosmos::is_suffix (const std::string_view s, const std::string_view suffix)
 Returns whether suffix is a suffix of s.
 
std::string_view cosmos::to_string_view (const char *s)
 Simple wrapper that creates a string_view from s and supports also nullptr.
 
template<typename CH >
bool cosmos::printable (CH ch)
 Simple wrapper around std::isprint that implicitly casts to unsigned char.
 
template<typename CHAR >
COSMOS_API std::vector< std::basic_string< CHAR > > cosmos::split (const std::basic_string_view< CHAR > str, const std::basic_string_view< CHAR > sep, const SplitFlags flags=SplitFlags{})
 Split a string at separator boundaries.
 
std::vector< std::string > cosmos::split (const std::string_view str, const std::string_view sep, const SplitFlags flags=SplitFlags{})
 

Detailed Description

This header contains helper functions and types for dealing with std::string objects and general string processing topics.

Definition in file string.hxx.

Typedef Documentation

◆ CStringVector

using cosmos::CStringVector = std::vector<const char*>

A vector of plain const char*.

Definition at line 22 of file string.hxx.

◆ SplitFlags

using cosmos::SplitFlags = BitMask<SplitFlag>

Definition at line 114 of file string.hxx.

◆ StringVector

using cosmos::StringVector = std::vector<std::string>

A vector of std::string.

Definition at line 18 of file string.hxx.

◆ StringViewVector

using cosmos::StringViewVector = std::vector<std::string_view>

A vector of std::string_view.

Definition at line 20 of file string.hxx.

◆ SysStringVector

using cosmos::SysStringVector = std::vector<SysString>

A vector of c-string wrappers.

Definition at line 24 of file string.hxx.

Enumeration Type Documentation

◆ SplitFlag

enum class cosmos::SplitFlag
strong

Bitmask for algorithm settings of the split() function.

Enumerator
STRIP_PARTS 

Strip each extracted part using strip().

KEEP_EMPTY 

When multiple subsequent separators occur, keep empty parts in the result.

Definition at line 107 of file string.hxx.

107 {
109 STRIP_PARTS = 0x1,
111 KEEP_EMPTY = 0x2
112};
@ KEEP_EMPTY
When multiple subsequent separators occur, keep empty parts in the result.
@ STRIP_PARTS
Strip each extracted part using strip().

Function Documentation

◆ is_prefix()

bool cosmos::is_prefix ( const std::string_view s,
const std::string_view prefix )
inline

Returns whether prefix is a prefix of s.

Definition at line 71 of file string.hxx.

71 {
72 // TODO: in C++20 string_view has a starts_with() member
73 return s.substr(0, prefix.length()) == prefix;
74}

◆ is_suffix()

bool cosmos::is_suffix ( const std::string_view s,
const std::string_view suffix )
inline

Returns whether suffix is a suffix of s.

Definition at line 77 of file string.hxx.

77 {
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}

◆ printable()

template<typename CH >
bool cosmos::printable ( CH ch)
inline

Simple wrapper around std::isprint that implicitly casts to unsigned char.

std::isprint is undefined if the passed value is not an unsigned 8 bit type or EOF. Thus cast different character types to unsigned char in this wrapper to avoid this trap.

Definition at line 101 of file string.hxx.

101 {
102 static_assert(sizeof(ch) == 1, "only character types of one byte size allowed");
103 return std::isprint(static_cast<unsigned char>(ch));
104}

◆ split() [1/2]

template<typename CHAR >
COSMOS_API std::vector< std::basic_string< CHAR > > cosmos::split ( const std::basic_string_view< CHAR > str,
const std::basic_string_view< CHAR > sep,
const SplitFlags flags = SplitFlags{} )

Split a string at separator boundaries.

The input string str will be split up at every occurrence of the sep substring. The resulting parts are returned as a vector. By default subsequent occurrences of sep are ignored. If SplitFlag::KEEP_EMPTY is set in flags then empty elements will be returned for these occurrences instead.

Definition at line 80 of file string.cxx.

83 {
84
85 using String = std::basic_string<CHAR>;
86 std::vector<String> parts;
87
88 // index of current start of token
89 size_t pos1;
90 // index of current end of token
91 size_t pos2 = 0;
92
93 while(true) {
94 String token;
95
96 pos1 = pos2;
97
98 if (!flags[SplitFlag::KEEP_EMPTY]) {
99 while (str.substr(pos1, sep.size()) == sep)
100 pos1 += sep.size();
101 }
102
103 pos2 = str.find(sep, pos1);
104
105 auto token_len = pos2 - pos1;
106
107 if (token_len) {
108 token = str.substr(pos1, token_len);
109
110 if (flags[SplitFlag::STRIP_PARTS]) {
111 strip(token);
112 }
113 }
114
115 if (!token.empty() || flags[SplitFlag::KEEP_EMPTY]) {
116 parts.push_back(token);
117 }
118
119 if (pos2 == str.npos)
120 break;
121
122 pos2 += sep.size();
123 }
124
125 return parts;
126}

◆ split() [2/2]

std::vector< std::string > cosmos::split ( const std::string_view str,
const std::string_view sep,
const SplitFlags flags = SplitFlags{} )
inline

Definition at line 131 of file string.hxx.

134 {}) {
135 return split<char>(str, sep, flags);
136}

◆ strip() [1/2]

void COSMOS_API cosmos::strip ( std::string & s)

Strips leading and trailing whitespace from the given string in-place.

Definition at line 63 of file string.cxx.

63 {
64 while (!s.empty() && std::isspace(s[0]))
65 s.erase(s.begin());
66
67 while (!s.empty() && std::isspace(s.back()))
68 s.pop_back();
69}

◆ strip() [2/2]

void COSMOS_API cosmos::strip ( std::wstring & s)

Wide string variant of strip(std::string &s)

Definition at line 71 of file string.cxx.

71 {
72 while (!s.empty() && std::iswspace(s[0]))
73 s.erase(s.begin());
74
75 while (!s.empty() && std::iswspace(s.back()))
76 s.pop_back();
77}

◆ stripped() [1/2]

std::string cosmos::stripped ( const std::string_view s)
inline

Returns a version of the given string with stripped off leading and trailing whitespace.

Definition at line 54 of file string.hxx.

54 {
55 std::string ret{s};
56 strip(ret);
57 return ret;
58}

◆ stripped() [2/2]

std::wstring cosmos::stripped ( const std::wstring_view s)
inline

Wide string variant of stripped(const std::string_view)

Definition at line 64 of file string.hxx.

64 {
65 std::wstring ret{s};
66 strip(ret);
67 return ret;
68}

◆ to_lower() [1/2]

std::string COSMOS_API cosmos::to_lower ( const std::string_view s)

Returns an all lower case version of s.

Definition at line 11 of file string.cxx.

11 {
12 std::string ret;
13 ret.resize(s.size());
14 // put it all to lower case
15 std::transform(
16 s.begin(), s.end(),
17 ret.begin(),
18 ::tolower
19 );
20
21 return ret;
22}

◆ to_lower() [2/2]

std::wstring COSMOS_API cosmos::to_lower ( const std::wstring_view s)

Returns an all lower case version of s.

Definition at line 37 of file string.cxx.

37 {
38 std::wstring ret;
39 ret.resize(s.size());
40 // put it all to lower case
41 std::transform(
42 s.begin(), s.end(),
43 ret.begin(),
44 std::towlower
45 );
46
47 return ret;
48}

◆ to_string_view()

std::string_view cosmos::to_string_view ( const char * s)
inline

Simple wrapper that creates a string_view from s and supports also nullptr.

The std::string_view constructor does not allow a nullptr argument. This wrapper makes this limitation transparent by returning an empty string_view for nullptr C strings.

Definition at line 90 of file string.hxx.

90 {
91 return s ? std::string_view{s} : std::string_view{};
92}

◆ to_upper() [1/2]

std::string COSMOS_API cosmos::to_upper ( const std::string_view s)

Returns an all upper case version of s.

Definition at line 24 of file string.cxx.

24 {
25 std::string ret;
26 ret.resize(s.size());
27 // put it all to lower case
28 std::transform(
29 s.begin(), s.end(),
30 ret.begin(),
31 ::toupper
32 );
33
34 return ret;
35}

◆ to_upper() [2/2]

std::wstring COSMOS_API cosmos::to_upper ( const std::wstring_view s)

Returns an all upper case version of s.

Definition at line 50 of file string.cxx.

50 {
51 std::wstring ret;
52 ret.resize(s.size());
53 // put it all to lower case
54 std::transform(
55 s.begin(), s.end(),
56 ret.begin(),
57 std::towupper
58 );
59
60 return ret;
61}