]> git.lizzy.rs Git - minetest.git/blob - src/util/string.h
Change screenshot colorformat properly
[minetest.git] / src / util / string.h
1 /*
2 Minetest
3 Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #ifndef UTIL_STRING_HEADER
21 #define UTIL_STRING_HEADER
22
23 #include "../irrlichttypes.h"
24 #include <stdlib.h>
25 #include <string>
26 #include <cstring>
27 #include <vector>
28 #include <sstream>
29 #include <cctype>
30
31 #define STRINGIFY(x) #x
32 #define TOSTRING(x) STRINGIFY(x)
33
34 struct FlagDesc {
35         const char *name;
36         u32 flag;
37 };
38
39 std::wstring narrow_to_wide(const std::string& mbs);
40 std::string wide_to_narrow(const std::wstring& wcs);
41
42 static inline std::string padStringRight(std::string s, size_t len)
43 {
44         if(len > s.size())
45                 s.insert(s.end(), len - s.size(), ' ');
46         return s;
47 }
48
49 // ends: NULL- or ""-terminated array of strings
50 // Returns "" if no end could be removed.
51 static inline std::string removeStringEnd(const std::string &s, const char *ends[])
52 {
53         const char **p = ends;
54         for(; (*p) && (*p)[0] != '\0'; p++){
55                 std::string end = *p;
56                 if(s.size() < end.size())
57                         continue;
58                 if(s.substr(s.size()-end.size(), end.size()) == end)
59                         return s.substr(0, s.size() - end.size());
60         }
61         return "";
62 }
63
64 // Tests if two strings are equal, optionally case insensitive
65 inline bool str_equal(const std::wstring& s1, const std::wstring& s2,
66                 bool case_insensitive = false)
67 {
68         if(case_insensitive)
69         {
70                 if(s1.size() != s2.size())
71                         return false;
72                 for(size_t i = 0; i < s1.size(); ++i)
73                         if(tolower(s1[i]) != tolower(s2[i]))
74                                 return false;
75                 return true;
76         }
77         else
78         {
79                 return s1 == s2;
80         }
81 }
82
83 // Tests if the second string is a prefix of the first, optionally case insensitive
84 inline bool str_starts_with(const std::wstring& str, const std::wstring& prefix,
85                 bool case_insensitive = false)
86 {
87         if(str.size() < prefix.size())
88                 return false;
89         if(case_insensitive)
90         {
91                 for(size_t i = 0; i < prefix.size(); ++i)
92                         if(tolower(str[i]) != tolower(prefix[i]))
93                                 return false;
94         }
95         else
96         {
97                 for(size_t i = 0; i < prefix.size(); ++i)
98                         if(str[i] != prefix[i])
99                                 return false;
100         }
101         return true;
102 }
103
104 // Split a string using the given delimiter. Returns a vector containing
105 // the component parts.
106 inline std::vector<std::wstring> str_split(const std::wstring &str, wchar_t delimiter)
107 {
108         std::vector<std::wstring> parts;
109         std::wstringstream sstr(str);
110         std::wstring part;
111         while(std::getline(sstr, part, delimiter))
112                 parts.push_back(part);
113         return parts;
114 }
115
116 inline std::string lowercase(const std::string &s)
117 {
118         std::string s2;
119         for(size_t i=0; i<s.size(); i++)
120         {
121                 char c = s[i];
122                 if(c >= 'A' && c <= 'Z')
123                         c -= 'A' - 'a';
124                 s2 += c;
125         }
126         return s2;
127 }
128
129 inline std::string trim(const std::string &s)
130 {
131         size_t front = 0;
132         while(s[front] == ' '    ||
133               s[front] == '\t'   ||
134               s[front] == '\r'   ||
135               s[front] == '\n'
136              )
137                 ++front;
138
139         size_t back = s.size();
140         while(back > front &&
141               (s[back-1] == ' '  ||
142                s[back-1] == '\t' ||
143                s[back-1] == '\r' ||
144                s[back-1] == '\n'
145               )
146              )
147                 --back;
148
149         return s.substr(front, back - front);
150 }
151
152 inline bool is_yes(const std::string &s)
153 {
154         std::string s2 = lowercase(trim(s));
155         if(s2 == "y" || s2 == "yes" || s2 == "true" || atoi(s2.c_str()) != 0)
156                 return true;
157         return false;
158 }
159
160 inline s32 mystoi(const std::string &s, s32 min, s32 max)
161 {
162         s32 i = atoi(s.c_str());
163         if(i < min)
164                 i = min;
165         if(i > max)
166                 i = max;
167         return i;
168 }
169
170 inline s64 stoi64(const std::string &s) {
171         std::stringstream tmp(s);
172         s64 t;
173         tmp >> t;
174         return t;
175 }
176
177 // MSVC2010 includes it's own versions of these
178 //#if !defined(_MSC_VER) || _MSC_VER < 1600
179
180 inline s32 mystoi(const std::string &s)
181 {
182         return atoi(s.c_str());
183 }
184
185 inline s32 mystoi(const std::wstring &s)
186 {
187         return atoi(wide_to_narrow(s).c_str());
188 }
189
190 inline float mystof(const std::string &s)
191 {
192         // This crap causes a segfault in certain cases on MinGW
193         /*float f;
194         std::istringstream ss(s);
195         ss>>f;
196         return f;*/
197         // This works in that case
198         return atof(s.c_str());
199 }
200
201 //#endif
202
203 #define stoi mystoi
204 #define stof mystof
205
206 inline std::string itos(s32 i)
207 {
208         std::ostringstream o;
209         o<<i;
210         return o.str();
211 }
212
213 inline std::string i64tos(s64 i) {
214         std::ostringstream o;
215         o<<i;
216         return o.str();
217 }
218
219 inline std::string ftos(float f)
220 {
221         std::ostringstream o;
222         o<<f;
223         return o.str();
224 }
225
226 inline void str_replace(std::string & str, std::string const & pattern,
227                 std::string const & replacement)
228 {
229         std::string::size_type start = str.find(pattern, 0);
230         while(start != str.npos)
231         {
232                 str.replace(start, pattern.size(), replacement);
233                 start = str.find(pattern, start+replacement.size());
234         }
235 }
236
237 inline void str_replace_char(std::string & str, char from, char to)
238 {
239         for(unsigned int i=0; i<str.size(); i++)
240         {
241                 if(str[i] == from)
242                         str[i] = to;
243         }
244 }
245
246 /*
247         Checks if a string contains only supplied characters
248 */
249 inline bool string_allowed(const std::string &s, const std::string &allowed_chars)
250 {
251         for(u32 i=0; i<s.size(); i++)
252         {
253                 bool confirmed = false;
254                 for(u32 j=0; j<allowed_chars.size(); j++)
255                 {
256                         if(s[i] == allowed_chars[j])
257                         {
258                                 confirmed = true;
259                                 break;
260                         }
261                 }
262                 if(confirmed == false)
263                         return false;
264         }
265         return true;
266 }
267
268 /*
269         Checks if a string contains no blacklisted characters (opposite
270         function of string_allowed())
271 */
272 inline bool string_allowed_blacklist(const std::string & s, const std::string & blacklisted_chars)
273 {
274         for(unsigned int i = 0; i < s.length(); i++)
275         {
276                 bool invalid = false;
277                 for(unsigned int j = 0; j < blacklisted_chars.length(); j++)
278                 {
279                         if(s[i] == blacklisted_chars[j])
280                         {
281                                 invalid = true;
282                                 break;
283                         }
284                 }
285                 if(invalid)
286                         return false;
287         }
288         return true;
289 }
290
291 /*
292         Forcefully wraps string into rows using \n
293         (no word wrap, used for showing paths in gui)
294 */
295 inline std::string wrap_rows(const std::string &from, u32 rowlen)
296 {
297         std::string to;
298         for(u32 i=0; i<from.size(); i++)
299         {
300                 if(i != 0 && i%rowlen == 0)
301                         to += '\n';
302                 to += from[i];
303         }
304         return to;
305 }
306
307 /*
308         Removes all \\ from a string that had been escaped (FormSpec strings)
309 */
310 inline std::string unescape_string(std::string &s)
311 {
312         std::string res;
313         
314         for (size_t i = 0; i < s.length(); i++) {
315                 if (s[i] == '\\')
316                         i++;
317                 res += s[i];
318         }
319         
320         return res;
321 }
322
323 inline bool is_number(const std::string& tocheck)
324 {
325         std::string::const_iterator iter = tocheck.begin();
326
327         while (iter != tocheck.end() && std::isdigit(*iter)) {
328                 ++iter;
329         }
330
331         return ((!tocheck.empty()) && (iter == tocheck.end()));
332 }
333
334 std::string translatePassword(std::string playername, std::wstring password);
335 std::string urlencode(std::string str);
336 std::string urldecode(std::string str);
337 u32 readFlagString(std::string str, FlagDesc *flagdesc, u32 *flagmask);
338 std::string writeFlagString(u32 flags, FlagDesc *flagdesc, u32 flagmask);
339 size_t mystrlcpy(char *dst, const char *src, size_t size);
340 char *mystrtok_r(char *s, const char *sep, char **lasts);
341 u64 read_seed(const char *str);
342
343 #endif
344