Mercurial > minori
annotate include/core/strings.h @ 261:3ec7804abf17
include: make header guards more sane
The C++ standard[1] says:
Each identifier that contains a double underscore __ or
begins with an underscore followed by an uppercase letter
is reserved to the implementation for any use.
[1]: https://timsong-cpp.github.io/cppwp/n4659/lex.name#3.1
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Wed, 03 Apr 2024 20:04:28 -0400 |
parents | dd211ff68b36 |
children | 9a04802848c0 |
rev | line source |
---|---|
261
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
260
diff
changeset
|
1 #ifndef MINORI_CORE_STRINGS_H_ |
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
260
diff
changeset
|
2 #define MINORI_CORE_STRINGS_H_ |
15 | 3 |
258 | 4 #include <set> |
5 #include <sstream> | |
9 | 6 #include <string> |
7 #include <vector> | |
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. |
258 | 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); |
258 | 21 std::vector<std::string> Split(const std::string& text, const std::string& delimiter); |
9 | 22 |
23 /* Substring removal functions */ | |
260
dd211ff68b36
pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
24 void ReplaceAll(std::string& string, std::string_view find, std::string_view replace); |
dd211ff68b36
pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
25 void SanitizeLineEndings(std::string& string); |
dd211ff68b36
pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
26 void RemoveHtmlTags(std::string& string); |
dd211ff68b36
pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
27 void ParseHtmlEntities(std::string& string); |
9 | 28 |
29 /* stupid HTML bullshit */ | |
260
dd211ff68b36
pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
30 void TextifySynopsis(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) |
258 | 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? */ |
258 | 49 template<typename T = int, 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
|
50 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
|
51 std::istringstream s(str); |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
52 s >> std::noboolalpha >> def; |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
53 return def; |
122
bc218c9d2ea6
strings: convert ToInt() to be a template
Paper <mrpapersonic@gmail.com>
parents:
118
diff
changeset
|
54 } |
101
c537996cf67b
*: multitude of config changes
Paper <mrpapersonic@gmail.com>
parents:
100
diff
changeset
|
55 |
258 | 56 template<typename T, std::enable_if_t<std::is_integral<T>::value && !std::is_same<T, bool>::value, bool> = true> |
211
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
57 std::string ToUtf8String(T i) { |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
58 std::ostringstream s; |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
59 s << i; |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
60 return s.str(); |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
61 } |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
62 |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
63 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
|
64 |
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
65 std::string ToUtf8String(bool b); |
116
254b1d2b7096
settings: add torrents page, make rss feed configurable
Paper <mrpapersonic@gmail.com>
parents:
114
diff
changeset
|
66 |
114
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
67 uint64_t HumanReadableSizeToBytes(const std::string& str); |
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
68 |
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
69 std::string RemoveLeadingChars(std::string s, const char c); |
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
70 std::string RemoveTrailingChars(std::string s, const char c); |
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
71 |
102 | 72 bool BeginningMatchesSubstring(const std::string& str, const std::string& sub); |
73 | |
85 | 74 }; // namespace Strings |
75 | |
261
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
260
diff
changeset
|
76 #endif // MINORI_CORE_STRINGS_H_ |