]> git.lyx.org Git - lyx.git/blob - src/support/lstrings.h
* src/LaTeX.C (deplog): fix the regex to parse filenames in the log file
[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 <vector>
22
23
24 namespace lyx {
25 namespace support {
26
27 ///
28 int compare_no_case(std::string const & s, std::string const & s2);
29 int compare_no_case(docstring const & s, docstring const & s2);
30
31 ///
32 int compare_ascii_no_case(std::string const & s, std::string const & s2);
33
34 ///
35 int compare_ascii_no_case(docstring const & s, docstring const & s2);
36
37 ///
38 int compare_no_case(std::string const & s, std::string const & s2, unsigned int len);
39
40 ///
41 inline
42 int compare(char const * a, char const * b)
43 {
44 #ifndef CXX_GLOBAL_CSTD
45         return std::strcmp(a, b);
46 #else
47         return strcmp(a, b);
48 #endif
49 }
50
51 ///
52 inline
53 int compare(char const * a, char const * b, unsigned int len)
54 {
55 #ifndef CXX_GLOBAL_CSTD
56         return std::strncmp(a, b, len);
57 #else
58         return strncmp(a, b, len);
59 #endif
60 }
61
62 ///
63 bool isStrInt(std::string const & str);
64
65 /// does the std::string represent an unsigned integer value ?
66 bool isStrUnsignedInt(std::string const & str);
67
68 ///
69 bool isStrDbl(std::string const & str);
70
71 bool isHex(lyx::docstring const & str);
72
73 int hexToInt(lyx::docstring const & str);
74
75 /// is \p str pure ascii?
76 bool isAscii(docstring const & str);
77
78 ///
79 char lowercase(char c);
80
81 ///
82 char uppercase(char c);
83
84 /// changes the case only if c is a one-byte char
85 char_type lowercase(char_type c);
86
87 /// changes the case only if c is a one-byte char
88 char_type uppercase(char_type c);
89
90 /// same as lowercase(), but ignores locale
91 std::string const ascii_lowercase(std::string const &);
92 docstring const ascii_lowercase(docstring const &);
93
94 ///
95 std::string const lowercase(std::string const &);
96 docstring const lowercase(docstring const &);
97
98 ///
99 std::string const uppercase(std::string const &);
100
101 /// Does the string start with this prefix?
102 bool prefixIs(docstring const &, char_type);
103
104 /// Does the std::string start with this prefix?
105 bool prefixIs(std::string const &, std::string const &);
106 bool prefixIs(docstring const &, docstring const &);
107
108 /// Does the string end with this char?
109 bool suffixIs(std::string const &, char);
110 bool suffixIs(docstring const &, char_type);
111
112 /// Does the std::string end with this suffix?
113 bool suffixIs(std::string const &, std::string const &);
114
115 ///
116 inline bool contains(std::string const & a, std::string const & b)
117 {
118         return a.find(b) != std::string::npos;
119 }
120
121 inline bool contains(docstring const & a, docstring const & b)
122 {
123         return a.find(b) != docstring::npos;
124 }
125
126 inline bool contains(std::string const & a, char b)
127 {
128         return a.find(b) != std::string::npos;
129 }
130
131 inline bool contains(docstring const & a, char_type b)
132 {
133         return a.find(b) != docstring::npos;
134 }
135
136 ///
137 bool containsOnly(std::string const &, std::string const &);
138
139 /** Extracts a token from this string at the nth delim.
140     Doesn't modify the original string. Similar to strtok.
141     Example:
142     \code
143     token("a;bc;d", ';', 1) == "bc";
144     token("a;bc;d", ';', 2) == "d";
145     \endcode
146 */
147 std::string const token(std::string const & a, char delim, int n);
148
149 docstring const token(docstring const & a, char_type delim, int n);
150
151 /** Search a token in this string using the delim.
152     Doesn't modify the original string. Returns -1 in case of
153     failure.
154     Example:
155     \code
156     tokenPos("a;bc;d", ';', "bc") == 1;
157     tokenPos("a;bc;d", ';', "d") == 2;
158     \endcode
159 */
160 int tokenPos(std::string const & a, char delim, std::string const & tok);
161
162
163 /// Substitute all \a oldchar with \a newchar
164 std::string const subst(std::string const & a, char oldchar, char newchar);
165
166 /// Substitute all \a oldchar with \a newchar
167 docstring const subst(docstring const & a, char_type oldchar, char_type newchar);
168
169 /// substitutes all instances of \a oldstr with \a newstr
170 std::string const subst(std::string const & a,
171                    std::string const & oldstr, std::string const & newstr);
172
173 /// substitutes all instances of \a oldstr with \a newstr
174 docstring const subst(docstring const & a,
175                 docstring const & oldstr, docstring const & newstr);
176
177 /** Trims characters off the end and beginning of a string.
178     \code
179     trim("ccabccc", "c") == "ab".
180     \endcode
181 */
182 docstring const trim(docstring const & a, char const * p = " ");
183
184 /** Trims characters off the end and beginning of a string.
185     \code
186     trim("ccabccc", "c") == "ab".
187     \endcode
188 */
189 std::string const trim(std::string const & a, char const * p = " ");
190
191 /** Trims characters off the end of a string.
192     \code
193     rtrim("abccc", "c") == "ab".
194     \endcode
195 */
196 std::string const rtrim(std::string const & a, char const * p = " ");
197 docstring const rtrim(docstring const & a, char const * p = " ");
198
199 /** Trims characters off the beginning of a string.
200     \code
201    ("ababcdef", "ab") = "cdef"
202     \endcode
203 */
204 std::string const ltrim(std::string const & a, char const * p = " ");
205 docstring const ltrim(docstring const & a, char const * p = " ");
206
207 /** Splits the string by the first delim.
208     Splits the string by the first appearance of delim.
209     The leading string up to delim is returned in piece (not including
210     delim), while the original string is cut from after the delimiter.
211     Example:
212     \code
213     s1= ""; s2= "a;bc".split(s1, ';') -> s1 == "a"; s2 == "bc";
214     \endcode
215 */
216 std::string const split(std::string const & a, std::string & piece, char delim);
217 docstring const split(docstring const & a, docstring & piece, char_type delim);
218
219 /// Same as split but does not return a piece
220 std::string const split(std::string const & a, char delim);
221
222 /// Same as split but uses the last delim.
223 std::string const rsplit(std::string const & a, std::string & piece, char delim);
224
225 /// Escapes non ASCII chars and other problematic characters that cause
226 /// problems in latex labels.
227 docstring const escape(docstring const & lab);
228
229 /// gives a vector of stringparts which have the delimiter delim
230 std::vector<std::string> const getVectorFromString(std::string const & str,
231                                               std::string const & delim = std::string(","));
232 std::vector<docstring> const getVectorFromString(docstring const & str,
233                 docstring const & delim = from_ascii(","));
234
235 // the same vice versa
236 std::string const getStringFromVector(std::vector<std::string> const & vec,
237                                  std::string const & delim = std::string(","));
238
239 /// Search \p search_token in \p str and return the position if it is
240 /// found, else -1. The last item in \p str must be "".
241 int findToken(char const * const str[], std::string const & search_token);
242
243 /// Convert internal line endings to line endings as expected by the OS
244 docstring const externalLineEnding(docstring const & str);
245
246 /// Convert line endings in any formnat to internal line endings
247 docstring const internalLineEnding(docstring const & str);
248
249
250 #ifdef I_AM_NOT_AFRAID_OF_HEADER_LIBRARIES
251
252 #include <boost/format.hpp>
253
254 template<class Arg1>
255 docstring bformat(docstring const & fmt, Arg1 arg1)
256 {
257         return (boost::basic_format<char_type>(fmt) % arg1).str();
258 }
259
260
261 template<class Arg1, class Arg2>
262 docstring bformat(docstring const & fmt, Arg1 arg1, Arg2 arg2)
263 {
264         return (boost::basic_format<char_type>(fmt) % arg1 % arg2).str();
265 }
266
267
268 template<class Arg1, class Arg2, class Arg3>
269 docstring bformat(docstring const & fmt, Arg1 arg1, Arg2 arg2, Arg3 arg3)
270 {
271         return (boost::basic_format<char_type>(fmt) % arg1 % arg2 % arg3).str();
272 }
273
274
275 template<class Arg1, class Arg2, class Arg3, class Arg4>
276 docstring bformat(docstring const & fmt, Arg1 arg1, Arg2 arg2, Arg3 arg3, Arg4 arg4)
277 {
278         return (boost::basic_format<char_type>(fmt) % arg1 % arg2 % arg3 % arg4).str();
279 }
280
281 #else
282
283 template <class Arg1>
284 docstring bformat(docstring const & fmt, Arg1);
285
286 template <class Arg1, class Arg2>
287 docstring bformat(docstring const & fmt, Arg1, Arg2);
288
289 template <class Arg1, class Arg2, class Arg3>
290 docstring bformat(docstring const & fmt, Arg1, Arg2, Arg3);
291
292 template <class Arg1, class Arg2, class Arg3, class Arg4>
293 docstring bformat(docstring const & fmt, Arg1, Arg2, Arg3, Arg4);
294
295 #endif
296
297 } // namespace support
298 } // namespace lyx
299
300 #endif