]> git.lyx.org Git - lyx.git/blob - src/support/lstrings.h
add FileName::renameTo() method.
[lyx.git] / src / support / lstrings.h
1 // -*- C++ -*-
2 /**
3  * \file lstrings.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  *
10  * Full author contact details are available in file CREDITS.
11  *
12  * A collection of string helper functions that works with string.
13  * Some of these would certainly benefit from a rewrite/optimization.
14  */
15
16 #ifndef LSTRINGS_H
17 #define LSTRINGS_H
18
19 #include "support/docstring.h"
20
21 #include <string>
22 #include <vector>
23
24
25 namespace lyx {
26 namespace support {
27
28 /// Compare \p s and \p s2, ignoring the case.
29 /// Does not depend on the locale.
30 int compare_no_case(docstring const & s, docstring const & s2);
31
32 /// Compare \p s and \p s2, ignoring the case of ASCII characters only.
33 int compare_ascii_no_case(std::string const & s, std::string const & s2);
34
35 /// Compare \p s and \p s2, ignoring the case of ASCII characters only.
36 int compare_ascii_no_case(docstring const & s, docstring const & s2);
37
38 ///
39 bool isStrInt(std::string const & str);
40
41 /// does the std::string represent an unsigned integer value ?
42 bool isStrUnsignedInt(std::string const & str);
43
44 ///
45 bool isStrDbl(std::string const & str);
46
47 bool isHex(docstring const & str);
48
49 int hexToInt(docstring const & str);
50
51 /// is \p str pure ascii?
52 bool isAscii(docstring const & str);
53
54 /// is \p str pure ascii?
55 bool isAscii(std::string const & str);
56
57 /**
58  * Changes the case of \p c to lowercase.
59  * Don't use this for non-ASCII characters, since it depends on the locale.
60  * This overloaded function is only implemented because the char_type variant
61  * would be used otherwise, and we assert in this function that \p c is in
62  * the ASCII range.
63  */
64 char lowercase(char c);
65
66 /**
67  * Changes the case of \p c to uppercase.
68  * Don't use this for non-ASCII characters, since it depends on the locale.
69  * This overloaded function is only implemented because the char_type variant
70  * would be used otherwise, and we assert in this function that \p c is in
71  * the ASCII range.
72  */
73 char uppercase(char c);
74
75 /// Changes the case of \p c to lowercase.
76 /// Does not depend on the locale.
77 char_type lowercase(char_type c);
78
79 /// Changes the case of \p c to uppercase.
80 /// Does not depend on the locale.
81 char_type uppercase(char_type c);
82
83 /// same as lowercase(), but ignores locale
84 std::string const ascii_lowercase(std::string const &);
85 docstring const ascii_lowercase(docstring const &);
86
87 /// Changes the case of \p s to lowercase.
88 /// Does not depend on the locale.
89 docstring const lowercase(docstring const & s);
90
91 /// Changes the case of \p s to uppercase.
92 /// Does not depend on the locale.
93 docstring const uppercase(docstring const & s);
94
95 /// Does the string start with this prefix?
96 bool prefixIs(docstring const &, char_type);
97
98 /// Does the std::string start with this prefix?
99 bool prefixIs(std::string const &, std::string const &);
100 bool prefixIs(docstring const &, docstring const &);
101
102 /// Does the string end with this char?
103 bool suffixIs(std::string const &, char);
104 bool suffixIs(docstring const &, char_type);
105
106 /// Does the std::string end with this suffix?
107 bool suffixIs(std::string const &, std::string const &);
108
109 ///
110 inline bool contains(std::string const & a, std::string const & b)
111 {
112         return a.find(b) != std::string::npos;
113 }
114
115 inline bool contains(docstring const & a, docstring const & b)
116 {
117         return a.find(b) != docstring::npos;
118 }
119
120 inline bool contains(std::string const & a, char b)
121 {
122         return a.find(b) != std::string::npos;
123 }
124
125 inline bool contains(docstring const & a, char_type b)
126 {
127         return a.find(b) != docstring::npos;
128 }
129
130 ///
131 bool containsOnly(std::string const &, std::string const &);
132
133 /** Extracts a token from this string at the nth delim.
134     Doesn't modify the original string. Similar to strtok.
135     Example:
136     \code
137     token("a;bc;d", ';', 1) == "bc";
138     token("a;bc;d", ';', 2) == "d";
139     \endcode
140 */
141 std::string const token(std::string const & a, char delim, int n);
142
143 docstring const token(docstring const & a, char_type delim, int n);
144
145 /** Search a token in this string using the delim.
146     Doesn't modify the original string. Returns -1 in case of
147     failure.
148     Example:
149     \code
150     tokenPos("a;bc;d", ';', "bc") == 1;
151     tokenPos("a;bc;d", ';', "d") == 2;
152     \endcode
153 */
154 int tokenPos(std::string const & a, char delim, std::string const & tok);
155
156
157 /// Substitute all \a oldchar with \a newchar
158 std::string const subst(std::string const & a, char oldchar, char newchar);
159
160 /// Substitute all \a oldchar with \a newchar
161 docstring const subst(docstring const & a, char_type oldchar, char_type newchar);
162
163 /// substitutes all instances of \a oldstr with \a newstr
164 std::string const subst(std::string const & a,
165                    std::string const & oldstr, std::string const & newstr);
166
167 /// substitutes all instances of \a oldstr with \a newstr
168 docstring const subst(docstring const & a,
169                 docstring const & oldstr, docstring const & newstr);
170
171 /** Trims characters off the end and beginning of a string.
172     \code
173     trim("ccabccc", "c") == "ab".
174     \endcode
175 */
176 docstring const trim(docstring const & a, char const * p = " ");
177
178 /** Trims characters off the end and beginning of a string.
179     \code
180     trim("ccabccc", "c") == "ab".
181     \endcode
182 */
183 std::string const trim(std::string const & a, char const * p = " ");
184
185 /** Trims characters off the end of a string.
186     \code
187     rtrim("abccc", "c") == "ab".
188     \endcode
189 */
190 std::string const rtrim(std::string const & a, char const * p = " ");
191 docstring const rtrim(docstring const & a, char const * p = " ");
192
193 /** Trims characters off the beginning of a string.
194     \code
195    ("ababcdef", "ab") = "cdef"
196     \endcode
197 */
198 std::string const ltrim(std::string const & a, char const * p = " ");
199 docstring const ltrim(docstring const & a, char const * p = " ");
200
201 /** Splits the string given in the first argument at the first occurence 
202     of the third argumnent, delim.
203     What precedes delim is returned in the second argument, piece; this
204     will be the whole of the string if no delimiter is found.
205     The return value is what follows delim, if anything. So the return
206     value is the null string if no delimiter is found.
207     Examples:
208     \code
209     s1= "a;bc"; s2= ""
210     ret = split(s1, s2, ';') -> ret = "bc", s2 == "a"
211     \endcode
212  */
213 std::string const split(std::string const & a, std::string & piece, char delim);
214 docstring const split(docstring const & a, docstring & piece, char_type delim);
215
216 /// Same as split but does not return a piece
217 std::string const split(std::string const & a, char delim);
218
219 /// Same as split but uses the last delim.
220 std::string const rsplit(std::string const & a, std::string & piece, char delim);
221
222 /// Escapes non ASCII chars and other problematic characters that cause
223 /// problems in latex labels.
224 docstring const escape(docstring const & lab);
225
226 /// gives a vector of stringparts which have the delimiter delim
227 std::vector<std::string> const getVectorFromString(std::string const & str,
228                                               std::string const & delim = std::string(","));
229 std::vector<docstring> const getVectorFromString(docstring const & str,
230                 docstring const & delim = from_ascii(","));
231
232 // the same vice versa
233 std::string const getStringFromVector(std::vector<std::string> const & vec,
234                                  std::string const & delim = std::string(","));
235
236 /// Search \p search_token in \p str and return the position if it is
237 /// found, else -1. The last item in \p str must be "".
238 int findToken(char const * const str[], std::string const & search_token);
239
240 /// Convert internal line endings to line endings as expected by the OS
241 docstring const externalLineEnding(docstring const & str);
242
243 /// Convert line endings in any formnat to internal line endings
244 docstring const internalLineEnding(docstring const & str);
245
246
247 template <class Arg1>
248 docstring bformat(docstring const & fmt, Arg1);
249
250 template <class Arg1, class Arg2>
251 docstring bformat(docstring const & fmt, Arg1, Arg2);
252
253 template <class Arg1, class Arg2, class Arg3>
254 docstring bformat(docstring const & fmt, Arg1, Arg2, Arg3);
255
256 template <class Arg1, class Arg2, class Arg3, class Arg4>
257 docstring bformat(docstring const & fmt, Arg1, Arg2, Arg3, Arg4);
258
259
260 template<> docstring bformat(docstring const & fmt, int arg1);
261 template<> docstring bformat(docstring const & fmt, long arg1);
262 template<> docstring bformat(docstring const & fmt, unsigned int arg1);
263 template<> docstring bformat(docstring const & fmt, docstring arg1);
264 template<> docstring bformat(docstring const & fmt, char * arg1);
265 template<> docstring bformat(docstring const & fmt, docstring arg1, docstring arg2);
266 template<> docstring bformat(docstring const & fmt, char const * arg1, docstring arg2);
267 template<> docstring bformat(docstring const & fmt, int arg1, int arg2);
268 template<> docstring bformat(docstring const & fmt, docstring arg1, docstring arg2, docstring arg3);
269 template<> docstring bformat(docstring const & fmt, docstring arg1, docstring arg2, docstring arg3, docstring arg4);
270
271
272 } // namespace support
273 } // namespace lyx
274
275 #endif