]> git.lyx.org Git - features.git/blob - src/support/lstrings.h
move everything into namespace lyx
[features.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 ///
72 char lowercase(char c);
73
74 ///
75 char uppercase(char c);
76
77 /// changes the case only if c is a one-byte char
78 char_type lowercase(char_type c);
79
80 /// changes the case only if c is a one-byte char
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
86 ///
87 std::string const lowercase(std::string const &);
88
89 ///
90 std::string const uppercase(std::string const &);
91
92 /// Does the std::string start with this prefix?
93 bool prefixIs(std::string const &, std::string const &);
94 bool prefixIs(lyx::docstring const &, lyx::docstring const &);
95
96 /// Does the string end with this char?
97 bool suffixIs(std::string const &, char);
98
99 /// Does the std::string end with this suffix?
100 bool suffixIs(std::string const &, std::string const &);
101
102 ///
103 template <typename B>
104 bool contains(std::string const & a, B b)
105 {
106         return a.find(b) != std::string::npos;
107 }
108
109 template <typename B>
110 bool contains(docstring const & a, B b)
111 {
112         return a.find(b) != docstring::npos;
113 }
114
115 ///
116 bool containsOnly(std::string const &, std::string const &);
117
118 /** Extracts a token from this string at the nth delim.
119     Doesn't modify the original string. Similar to strtok.
120     Example:
121     \code
122     token("a;bc;d", ';', 1) == "bc";
123     token("a;bc;d", ';', 2) == "d";
124     \endcode
125 */
126 std::string const token(std::string const & a, char delim, int n);
127
128 docstring const token(docstring const & a, char_type delim, int n);
129
130 /** Search a token in this string using the delim.
131     Doesn't modify the original string. Returns -1 in case of
132     failure.
133     Example:
134     \code
135     tokenPos("a;bc;d", ';', "bc") == 1;
136     tokenPos("a;bc;d", ';', "d") == 2;
137     \endcode
138 */
139 int tokenPos(std::string const & a, char delim, std::string const & tok);
140
141
142 /// Substitute all \a oldchar with \a newchar
143 std::string const subst(std::string const & a, char oldchar, char newchar);
144
145 /// Substitute all \a oldchar with \a newchar
146 docstring const subst(docstring const & a, char_type oldchar, char_type newchar);
147
148 /// substitutes all instances of \a oldstr with \a newstr
149 std::string const subst(std::string const & a,
150                    std::string const & oldstr, std::string const & newstr);
151
152 /// substitutes all instances of \a oldstr with \a newstr
153 docstring const subst(docstring const & a,
154                 docstring const & oldstr, docstring const & newstr);
155
156 /** Trims characters off the end and beginning of a string.
157     \code
158     trim("ccabccc", "c") == "ab".
159     \endcode
160 */
161 docstring const trim(docstring const & a, char const * p = " ");
162
163 /** Trims characters off the end and beginning of a string.
164     \code
165     trim("ccabccc", "c") == "ab".
166     \endcode
167 */
168 std::string const trim(std::string const & a, char const * p = " ");
169
170 /** Trims characters off the end of a string.
171     \code
172     rtrim("abccc", "c") == "ab".
173     \endcode
174 */
175 std::string const rtrim(std::string const & a, char const * p = " ");
176
177 /** Trims characters off the beginning of a string.
178     \code
179    ltrim("ababcdef", "ab") = "cdef"
180     \endcode
181 */
182 std::string const ltrim(std::string const & a, char const * p = " ");
183
184 /** Splits the string by the first delim.
185     Splits the string by the first appearance of delim.
186     The leading string up to delim is returned in piece (not including
187     delim), while the original string is cut from after the delimiter.
188     Example:
189     \code
190     s1= ""; s2= "a;bc".split(s1, ';') -> s1 == "a"; s2 == "bc";
191     \endcode
192 */
193 std::string const split(std::string const & a, std::string & piece, char delim);
194 docstring const split(docstring const & a, docstring & piece, char_type delim);
195
196 /// Same as split but does not return a piece
197 std::string const split(std::string const & a, char delim);
198
199 /// Same as split but uses the last delim.
200 std::string const rsplit(std::string const & a, std::string & piece, char delim);
201
202 /// Escapes non ASCII chars
203 docstring const escape(docstring const & lab);
204
205 /// gives a vector of stringparts which have the delimiter delim
206 std::vector<std::string> const getVectorFromString(std::string const & str,
207                                               std::string const & delim = std::string(","));
208
209 // the same vice versa
210 std::string const getStringFromVector(std::vector<std::string> const & vec,
211                                  std::string const & delim = std::string(","));
212
213 /// Search \p search_token in \p str and return the position if it is
214 /// found, else -1. The last item in \p str must be "".
215 int findToken(char const * const str[], std::string const & search_token);
216
217 /// Convert internal line endings to line endings as expected by the OS
218 docstring const externalLineEnding(docstring const & str);
219
220 /// Convert line endings in any formnat to internal line endings
221 docstring const internalLineEnding(docstring const & str);
222
223
224 #ifdef I_AM_NOT_AFRAID_OF_HEADER_LIBRARIES
225
226 #include <boost/format.hpp>
227
228 template<class Arg1>
229 docstring bformat(docstring const & fmt, Arg1 arg1)
230 {
231         return (boost::basic_format<char_type>(fmt) % arg1).str();
232 }
233
234
235 template<class Arg1, class Arg2>
236 docstring bformat(docstring const & fmt, Arg1 arg1, Arg2 arg2)
237 {
238         return (boost::basic_format<char_type>(fmt) % arg1 % arg2).str();
239 }
240
241
242 template<class Arg1, class Arg2, class Arg3>
243 docstring bformat(docstring const & fmt, Arg1 arg1, Arg2 arg2, Arg3 arg3)
244 {
245         return (boost::basic_format<char_type>(fmt) % arg1 % arg2 % arg3).str();
246 }
247
248
249 template<class Arg1, class Arg2, class Arg3, class Arg4>
250 docstring bformat(docstring const & fmt, Arg1 arg1, Arg2 arg2, Arg3 arg3, Arg4 arg4)
251 {
252         return (boost::basic_format<char_type>(fmt) % arg1 % arg2 % arg3 % arg4).str();
253 }
254
255 #else
256
257 template <class Arg1>
258 docstring bformat(docstring const & fmt, Arg1);
259
260 template <class Arg1, class Arg2>
261 docstring bformat(docstring const & fmt, Arg1, Arg2);
262
263 template <class Arg1, class Arg2, class Arg3>
264 docstring bformat(docstring const & fmt, Arg1, Arg2, Arg3);
265
266 template <class Arg1, class Arg2, class Arg3, class Arg4>
267 docstring bformat(docstring const & fmt, Arg1, Arg2, Arg3, Arg4);
268
269 #endif
270
271 } // namespace support
272 } // namespace lyx
273
274 #endif