libwreport  3.29
string.h
1 #ifndef WREPORT_STRING_H
2 #define WREPORT_STRING_H
3 
11 #include <string>
12 #include <functional>
13 #include <sstream>
14 #include <cctype>
15 
16 namespace wreport {
17 namespace str {
18 
20 inline bool startswith(const std::string& str, const std::string& part)
21 {
22  if (str.size() < part.size())
23  return false;
24  return str.substr(0, part.size()) == part;
25 }
26 
28 inline bool endswith(const std::string& str, const std::string& part)
29 {
30  if (str.size() < part.size())
31  return false;
32  return str.substr(str.size() - part.size()) == part;
33 }
34 
38 template<typename ITER>
39 std::string join(const std::string& sep, const ITER& begin, const ITER& end)
40 {
41  std::stringstream res;
42  bool first = true;
43  for (ITER i = begin; i != end; ++i)
44  {
45  if (first)
46  first = false;
47  else
48  res << sep;
49  res << *i;
50  }
51  return res.str();
52 }
53 
57 template<typename ITEMS>
58 std::string join(const std::string& sep, const ITEMS& items)
59 {
60  std::stringstream res;
61  bool first = true;
62  for (const auto& i: items)
63  {
64  if (first)
65  first = false;
66  else
67  res << sep;
68  res << i;
69  }
70  return res.str();
71 }
72 
76 std::string lstrip(const std::string& str);
77 
81 std::string rstrip(const std::string& str);
82 
86 std::string strip(const std::string& str);
87 
89 inline std::string upper(const std::string& str)
90 {
91  std::string res;
92  res.reserve(str.size());
93  for (std::string::const_iterator i = str.begin(); i != str.end(); ++i)
94  res += ::toupper(*i);
95  return res;
96 }
97 
99 inline std::string lower(const std::string& str)
100 {
101  std::string res;
102  res.reserve(str.size());
103  for (std::string::const_iterator i = str.begin(); i != str.end(); ++i)
104  res += ::tolower(*i);
105  return res;
106 }
107 
109 std::string basename(const std::string& pathname);
110 
112 std::string dirname(const std::string& pathname);
113 
115 void appendpath(std::string& dest, const char* path2);
116 
118 void appendpath(std::string& dest, const std::string& path2);
119 
121 template<typename S1, typename S2, typename... Args>
122 void appendpath(std::string& dest, S1 first, S2 second, Args... next)
123 {
124  appendpath(dest, first);
125  appendpath(dest, second, next...);
126 }
127 
129 template<typename... Args>
130 std::string joinpath(Args... components)
131 {
132  std::string res;
133  appendpath(res, components...);
134  return res;
135 }
136 
142 std::string normpath(const std::string& pathname);
143 
156 struct Split
157 {
159  std::string str;
161  std::string sep;
167 
168  Split(const std::string& str, const std::string& sep, bool skip_empty=false)
169  : str(str), sep(sep), skip_empty(skip_empty) {}
170 
171  class const_iterator : public std::iterator<std::input_iterator_tag, std::string>
172  {
173  protected:
174  const Split* split = nullptr;
176  std::string cur;
178  size_t end = 0;
179 
182 
183  public:
185  const_iterator(const Split& split);
188  ~const_iterator();
189 
190  const_iterator& operator++();
191  const std::string& operator*() const;
192  const std::string* operator->() const;
193 
194  std::string remainder() const;
195 
196  bool operator==(const const_iterator& ti) const;
197  bool operator!=(const const_iterator& ti) const;
198  };
199 
201  const_iterator begin() { return const_iterator(*this); }
202 
205 };
206 
210 std::string encode_cstring(const std::string& str);
211 
219 std::string decode_cstring(const std::string& str, size_t& lenParsed);
220 
222 std::string encode_url(const std::string& str);
223 
225 std::string decode_url(const std::string& str);
226 
228 std::string encode_base64(const std::string& str);
229 
231 std::string encode_base64(const void* data, size_t size);
232 
234 std::string decode_base64(const std::string& str);
235 
236 }
237 }
238 #endif
wreport::str::Split::const_iterator::const_iterator
const_iterator()
End iterator.
Definition: string.h:187
wreport::str::Split::sep
std::string sep
Separator.
Definition: string.h:161
wreport::str::Split::const_iterator::skip_separators
void skip_separators()
Move end past all the consecutive separators that start at its position.
wreport::str::Split::skip_empty
bool skip_empty
If true, skip empty tokens, effectively grouping consecutive separators as if they were a single one.
Definition: string.h:166
wreport::str::Split::const_iterator::end
size_t end
Position of the first character of the next token.
Definition: string.h:178
wreport::str::Split::const_iterator
Definition: string.h:172
wreport::str::Split::begin
const_iterator begin()
Return the begin iterator to split a string on instances of sep.
Definition: string.h:201
wreport::str::Split::str
std::string str
String to split.
Definition: string.h:159
wreport::str::Split::const_iterator::const_iterator
const_iterator(const Split &split)
Begin iterator.
wreport::str::Split::const_iterator::cur
std::string cur
Current token.
Definition: string.h:176
wreport::str::Split
Split a string where a given substring is found.
Definition: string.h:157
wreport::str::Split::end
const_iterator end()
Return the end iterator to string split.
Definition: string.h:204
wreport
String functions.
Definition: benchmark.h:13