Mercurial > minori
annotate include/core/strings.h @ 227:c4f03f83b252
library: do explicit conversion from fs::path to std::string
this fixes compiler errors on Windows.
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Mon, 08 Jan 2024 21:30:18 -0500 |
parents | f784b5b1914c |
children | 862d0d8619f6 |
rev | line source |
---|---|
9 | 1 #ifndef __core__strings_h |
2 #define __core__strings_h | |
15 | 3 |
9 | 4 #include <string> |
5 #include <vector> | |
226 | 6 #include <set> |
211
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
7 #include <sstream> |
15 | 8 |
218 | 9 #include <cstdint> |
10 | |
64 | 11 class QString; |
116
254b1d2b7096
settings: add torrents page, make rss feed configurable
Paper <mrpapersonic@gmail.com>
parents:
114
diff
changeset
|
12 class QByteArray; |
64 | 13 |
10 | 14 namespace Strings { |
15 | 15 |
9 | 16 /* Implode function: takes a vector of strings and turns it |
211
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
17 * into a string, separated by delimiters. |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
18 */ |
9 | 19 std::string Implode(const std::vector<std::string>& vector, const std::string& delimiter); |
226 | 20 std::string Implode(const std::set<std::string>& set, const std::string& delimiter); |
118
39521c47c7a3
*: another huge megacommit, SORRY
Paper <mrpapersonic@gmail.com>
parents:
116
diff
changeset
|
21 std::vector<std::string> Split(const std::string &text, const std::string& delimiter); |
9 | 22 |
23 /* Substring removal functions */ | |
98
582b2fca1561
strings: parse HTML entities when reading synopsis, make the
Paper <mrpapersonic@gmail.com>
parents:
85
diff
changeset
|
24 std::string ReplaceAll(std::string string, const std::string& find, const std::string& replace); |
9 | 25 std::string SanitizeLineEndings(const std::string& string); |
100
f5940a575d83
track/constants: add many more video formats
Paper <mrpapersonic@gmail.com>
parents:
98
diff
changeset
|
26 std::string RemoveHtmlTags(std::string string); |
f5940a575d83
track/constants: add many more video formats
Paper <mrpapersonic@gmail.com>
parents:
98
diff
changeset
|
27 std::string ParseHtmlEntities(std::string string); |
9 | 28 |
29 /* stupid HTML bullshit */ | |
30 std::string TextifySynopsis(const std::string& string); | |
15 | 31 |
32 std::string ToUpper(const std::string& string); | |
33 std::string ToLower(const std::string& string); | |
34 | |
98
582b2fca1561
strings: parse HTML entities when reading synopsis, make the
Paper <mrpapersonic@gmail.com>
parents:
85
diff
changeset
|
35 /* functions that make the way we convert from and to |
211
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
36 * different string formats universal (and these functions |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
37 * typically do things the right way so we avoid retarded |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
38 * code) |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
39 */ |
62 | 40 std::wstring ToWstring(const std::string& string); |
64 | 41 std::wstring ToWstring(const QString& string); |
62 | 42 std::string ToUtf8String(const std::wstring& wstring); |
64 | 43 std::string ToUtf8String(const QString& string); |
116
254b1d2b7096
settings: add torrents page, make rss feed configurable
Paper <mrpapersonic@gmail.com>
parents:
114
diff
changeset
|
44 std::string ToUtf8String(const QByteArray& ba); |
64 | 45 QString ToQString(const std::string& string); |
46 QString ToQString(const std::wstring& wstring); | |
62 | 47 |
211
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
48 /* not really an "int"... but who cares? */ |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
49 template<typename T = int, |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
50 std::enable_if_t<std::is_integral<T>::value, bool> = true> |
122
bc218c9d2ea6
strings: convert ToInt() to be a template
Paper <mrpapersonic@gmail.com>
parents:
118
diff
changeset
|
51 T ToInt(const std::string& str, T def = 0) { |
211
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
52 std::istringstream s(str); |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
53 s >> std::noboolalpha >> def; |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
54 return def; |
122
bc218c9d2ea6
strings: convert ToInt() to be a template
Paper <mrpapersonic@gmail.com>
parents:
118
diff
changeset
|
55 } |
101
c537996cf67b
*: multitude of config changes
Paper <mrpapersonic@gmail.com>
parents:
100
diff
changeset
|
56 |
211
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
57 template<typename T, |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
58 std::enable_if_t<std::is_integral<T>::value && !std::is_same<T, bool>::value, bool> = true> |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
59 std::string ToUtf8String(T i) { |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
60 std::ostringstream s; |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
61 s << i; |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
62 return s.str(); |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
63 } |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
64 |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
65 bool ToBool(const std::string& s, bool def); |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
66 |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
67 std::string ToUtf8String(bool b); |
116
254b1d2b7096
settings: add torrents page, make rss feed configurable
Paper <mrpapersonic@gmail.com>
parents:
114
diff
changeset
|
68 |
114
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
69 uint64_t HumanReadableSizeToBytes(const std::string& str); |
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
70 |
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
71 std::string RemoveLeadingChars(std::string s, const char c); |
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
72 std::string RemoveTrailingChars(std::string s, const char c); |
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
73 |
102 | 74 bool BeginningMatchesSubstring(const std::string& str, const std::string& sub); |
75 | |
85 | 76 }; // namespace Strings |
77 | |
211
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
78 #endif // __core__strings_h |