]> git.lyx.org Git - lyx.git/blob - src/support/lstrings.cpp
InsetArgument: Set ResetsFontEdit to false
[lyx.git] / src / support / lstrings.cpp
1 /**
2  * \file lstrings.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author Jean-Marc Lasgouttes
8  * \author Dekel Tsur
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #include <config.h>
14
15 #include "support/lstrings.h"
16
17 #include "support/convert.h"
18 #include "support/qstring_helpers.h"
19
20 #include "support/lassert.h"
21
22 #include <QString>
23
24 #include <cstdio>
25 #include <algorithm>
26
27 using namespace std;
28
29 namespace lyx {
30
31 // Using this allows us to have docstring default arguments in headers
32 // without #include "support/docstring" there.
33 docstring const & empty_docstring()
34 {
35         static docstring s;
36         return s;
37 }
38
39 // Using this allows us to have string default arguments in headers
40 // without #include <string>
41 string const & empty_string()
42 {
43         static string s;
44         return s;
45 }
46
47 namespace {
48 /**
49  * Convert a QChar into a UCS4 character.
50  * This is a hack (it does only make sense for the common part of the UCS4
51  * and UTF16 encodings) and should not be used.
52  * This does only exist because of performance reasons (a real conversion
53  * using iconv is too slow on windows).
54  */
55 inline char_type qchar_to_ucs4(QChar const & qchar)
56 {
57         LASSERT(is_utf16(static_cast<char_type>(qchar.unicode())), return '?');
58         return static_cast<char_type>(qchar.unicode());
59 }
60
61 /**
62  * Convert a UCS4 character into a QChar.
63  * This is a hack (it does only make sense for the common part of the UCS4
64  * and UTF16 encodings) and should not be used.
65  * This does only exist because of performance reasons (a real conversion
66  * using iconv is too slow on windows).
67  */
68 inline QChar const ucs4_to_qchar(char_type const ucs4)
69 {
70         LASSERT(is_utf16(ucs4), return QChar('?'));
71         return QChar(static_cast<unsigned short>(ucs4));
72 }
73
74 /// Maximum valid UCS4 code point
75 char_type const ucs4_max = 0x10ffff;
76 } // anon namespace
77
78
79 bool isLetterChar(char_type c)
80 {
81         if (!is_utf16(c)) {
82                 if (c > ucs4_max)
83                         // outside the UCS4 range
84                         return false;
85                 // assume that all non-utf16 characters are letters
86                 return true;
87         }
88         return ucs4_to_qchar(c).isLetter();
89 }
90
91
92 bool isLower(char_type c)
93 {
94         if (!is_utf16(c))
95                 return false;
96         return ucs4_to_qchar(c).isLower();
97 }
98
99
100 bool isAlphaASCII(char_type c)
101 {
102         return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z');
103 }
104
105
106 bool isPrintable(char_type c)
107 {
108         if (!is_utf16(c)) {
109                 if (c > ucs4_max)
110                         // outside the UCS4 range
111                         return false;
112                 // assume that all non-utf16 characters are printable
113                 return true;
114         }
115         // Not yet recognized by QChar::isPrint()
116         // See https://bugreports.qt-project.org/browse/QTBUG-12144
117         // LATIN CAPITAL LETTER SHARP S
118         else if (c == 0x1e9e)
119                 return true;
120         return ucs4_to_qchar(c).isPrint();
121 }
122
123
124 bool isPrintableNonspace(char_type c)
125 {
126         if (!is_utf16(c)) {
127                 if (c > ucs4_max)
128                         // outside the UCS4 range
129                         return false;
130                 // assume that all non-utf16 characters are printable and
131                 // no space
132                 return true;
133         }
134         QChar const qc = ucs4_to_qchar(c);
135         return qc.isPrint() && !qc.isSpace();
136 }
137
138
139 bool isSpace(char_type c)
140 {
141         if (!is_utf16(c)) {
142                 // assume that no non-utf16 character is a space
143                 // c outside the UCS4 range is catched as well
144                 return false;
145         }
146         QChar const qc = ucs4_to_qchar(c);
147         return qc.isSpace();
148 }
149
150
151 bool isNumber(char_type c)
152 {
153         if (!is_utf16(c))
154                 // assume that no non-utf16 character is a numeral
155                 // c outside the UCS4 range is catched as well
156                 return false;
157         return ucs4_to_qchar(c).isNumber();
158 }
159
160
161 bool isDigitASCII(char_type c)
162 {
163         return '0' <= c && c <= '9';
164 }
165
166
167 bool isAlnumASCII(char_type c)
168 {
169         return isAlphaASCII(c) || isDigitASCII(c);
170 }
171
172
173 bool isASCII(char_type c)
174 {
175         return c < 0x80;
176 }
177
178
179 namespace support {
180
181 int compare_no_case(docstring const & s, docstring const & s2)
182 {
183         docstring::const_iterator p = s.begin();
184         docstring::const_iterator p2 = s2.begin();
185
186         while (p != s.end() && p2 != s2.end()) {
187                 char_type const lc1 = lowercase(*p);
188                 char_type const lc2 = lowercase(*p2);
189                 if (lc1 != lc2)
190                         return (lc1 < lc2) ? -1 : 1;
191                 ++p;
192                 ++p2;
193         }
194
195         if (s.size() == s2.size())
196                 return 0;
197         if (s.size() < s2.size())
198                 return -1;
199         return 1;
200 }
201
202
203 namespace {
204
205 template<typename Char>
206 Char ascii_tolower(Char c) {
207         if (c >= 'A' && c <= 'Z')
208                 return c - 'A' + 'a';
209         return c;
210 }
211
212 }
213
214
215 int compare_ascii_no_case(string const & s, string const & s2)
216 {
217         string::const_iterator p = s.begin();
218         string::const_iterator p2 = s2.begin();
219
220         while (p != s.end() && p2 != s2.end()) {
221                 int const lc1 = ascii_tolower(*p);
222                 int const lc2 = ascii_tolower(*p2);
223                 if (lc1 != lc2)
224                         return (lc1 < lc2) ? -1 : 1;
225                 ++p;
226                 ++p2;
227         }
228
229         if (s.size() == s2.size())
230                 return 0;
231         if (s.size() < s2.size())
232                 return -1;
233         return 1;
234 }
235
236
237 int compare_ascii_no_case(docstring const & s, docstring const & s2)
238 {
239         docstring::const_iterator p = s.begin();
240         docstring::const_iterator p2 = s2.begin();
241
242         while (p != s.end() && p2 != s2.end()) {
243                 char_type const lc1 = ascii_tolower(*p);
244                 char_type const lc2 = ascii_tolower(*p2);
245                 if (lc1 != lc2)
246                         return (lc1 < lc2) ? -1 : 1;
247                 ++p;
248                 ++p2;
249         }
250
251         if (s.size() == s2.size())
252                 return 0;
253         if (s.size() < s2.size())
254                 return -1;
255         return 1;
256 }
257
258
259 bool isStrInt(string const & str)
260 {
261         if (str.empty())
262                 return false;
263
264         // Remove leading and trailing white space chars.
265         string const tmpstr = trim(str);
266         if (tmpstr.empty())
267                 return false;
268
269         string::const_iterator cit = tmpstr.begin();
270         if ((*cit) == '-')
271                 ++cit;
272
273         string::const_iterator end = tmpstr.end();
274         for (; cit != end; ++cit)
275                 if (!isDigitASCII(*cit))
276                         return false;
277
278         return true;
279 }
280
281
282 bool isStrUnsignedInt(string const & str)
283 {
284         if (str.empty())
285                 return false;
286
287         // Remove leading and trailing white space chars.
288         string const tmpstr = trim(str);
289         if (tmpstr.empty())
290                 return false;
291
292         string::const_iterator cit = tmpstr.begin();
293         string::const_iterator end = tmpstr.end();
294         for (; cit != end; ++cit)
295                 if (!isDigitASCII(*cit))
296                         return false;
297
298         return true;
299 }
300
301
302 bool isStrDbl(string const & str)
303 {
304         if (str.empty())
305                 return false;
306
307         // Remove leading and trailing white space chars.
308         string const tmpstr = trim(str);
309         if (tmpstr.empty())
310                 return false;
311         //      if (tmpstr.count('.') > 1) return false;
312
313         string::const_iterator cit = tmpstr.begin();
314         bool found_dot = false;
315         if (*cit == '-')
316                 ++cit;
317         string::const_iterator end = tmpstr.end();
318         for (; cit != end; ++cit) {
319                 if (!isDigitASCII(*cit) && *cit != '.')
320                         return false;
321                 if ('.' == (*cit)) {
322                         if (found_dot)
323                                 return false;
324                         found_dot = true;
325                 }
326         }
327         return true;
328 }
329
330
331 bool hasDigitASCII(docstring const & str)
332 {
333         docstring::const_iterator cit = str.begin();
334         docstring::const_iterator const end = str.end();
335         for (; cit != end; ++cit)
336                 if (isDigitASCII(*cit))
337                         return true;
338         return false;
339 }
340
341
342 bool isHexChar(char_type c)
343 {
344         return c == '0' ||
345                 c == '1' ||
346                 c == '2' ||
347                 c == '3' ||
348                 c == '4' ||
349                 c == '5' ||
350                 c == '6' ||
351                 c == '7' ||
352                 c == '8' ||
353                 c == '9' ||
354                 c == 'a' || c == 'A' ||
355                 c == 'b' || c == 'B' ||
356                 c == 'c' || c == 'C' ||
357                 c == 'd' || c == 'D' ||
358                 c == 'e' || c == 'E' ||
359                 c == 'f' || c == 'F';
360 }
361
362
363 bool isHex(docstring const & str)
364 {
365         int index = 0;
366
367         if (str.length() > 2 && str[0] == '0' &&
368             (str[1] == 'x' || str[1] == 'X'))
369                 index = 2;
370
371         int const len = str.length();
372
373         for (; index < len; ++index) {
374                 if (!isHexChar(str[index]))
375                         return false;
376         }
377         return true;
378 }
379
380
381 int hexToInt(docstring const & str)
382 {
383         string s = to_ascii(str);
384         int h;
385         sscanf(s.c_str(), "%x", &h);
386         return h;
387 }
388
389
390 bool isAscii(docstring const & str)
391 {
392         int const len = str.length();
393         for (int i = 0; i < len; ++i)
394                 if (str[i] >= 0x80)
395                         return false;
396         return true;
397 }
398
399
400 bool isAscii(string const & str)
401 {
402         int const len = str.length();
403         for (int i = 0; i < len; ++i)
404                 if (static_cast<unsigned char>(str[i]) >= 0x80)
405                         return false;
406         return true;
407 }
408
409
410 char lowercase(char c)
411 {
412         LASSERT(isASCII(c), return '?');
413         return char(tolower(c));
414 }
415
416
417 char uppercase(char c)
418 {
419         LASSERT(isASCII(c), return '?');
420         return char(toupper(c));
421 }
422
423
424 char_type lowercase(char_type c)
425 {
426         if (!is_utf16(c))
427                 // We don't know how to lowercase a non-utf16 char
428                 return c;
429         return qchar_to_ucs4(ucs4_to_qchar(c).toLower());
430 }
431
432
433 char_type uppercase(char_type c)
434 {
435         if (!is_utf16(c))
436                 // We don't know how to uppercase a non-utf16 char
437                 return c;
438         return qchar_to_ucs4(ucs4_to_qchar(c).toUpper());
439 }
440
441
442 bool isLowerCase(char_type ch) {
443         return lowercase(ch) == ch;
444 }
445
446
447 bool isUpperCase(char_type ch) {
448         return uppercase(ch) == ch;
449 }
450
451
452 namespace {
453
454 // since we cannot use tolower and toupper directly in the
455 // calls to transform yet, we use these helper clases. (Lgb)
456
457 struct local_lowercase {
458         char_type operator()(char_type c) const {
459                 return lowercase(c);
460         }
461 };
462
463 struct local_uppercase {
464         char_type operator()(char_type c) const {
465                 return uppercase(c);
466         }
467 };
468
469 template<typename Char> struct local_ascii_lowercase {
470         Char operator()(Char c) const { return ascii_tolower(c); }
471 };
472
473 } // end of anon namespace
474
475
476 docstring const lowercase(docstring const & a)
477 {
478         docstring tmp(a);
479         transform(tmp.begin(), tmp.end(), tmp.begin(), local_lowercase());
480         return tmp;
481 }
482
483
484 docstring const uppercase(docstring const & a)
485 {
486         docstring tmp(a);
487         transform(tmp.begin(), tmp.end(), tmp.begin(), local_uppercase());
488         return tmp;
489 }
490
491
492 string const ascii_lowercase(string const & a)
493 {
494         string tmp(a);
495         transform(tmp.begin(), tmp.end(), tmp.begin(),
496                   local_ascii_lowercase<char>());
497         return tmp;
498 }
499
500
501 docstring const ascii_lowercase(docstring const & a)
502 {
503         docstring tmp(a);
504         transform(tmp.begin(), tmp.end(), tmp.begin(),
505                   local_ascii_lowercase<char_type>());
506         return tmp;
507 }
508
509
510 char_type superscript(char_type c)
511 {
512         switch (c) {
513                 case    '2': return 0x00b2;
514                 case    '3': return 0x00b3;
515                 case    '1': return 0x00b9;
516                 case    '0': return 0x2070;
517                 case    'i': return 0x2071;
518                 case    '4': return 0x2074;
519                 case    '5': return 0x2075;
520                 case    '6': return 0x2076;
521                 case    '7': return 0x2077;
522                 case    '8': return 0x2078;
523                 case    '9': return 0x2079;
524                 case    '+': return 0x207a;
525                 case    '-': return 0x207b;
526                 case    '=': return 0x207c;
527                 case    '(': return 0x207d;
528                 case    ')': return 0x207e;
529                 case    'n': return 0x207f;
530                 case    'h': return 0x02b0;
531                 case 0x0266: return 0x02b1; // LATIN SMALL LETTER H WITH HOOK
532                 case    'j': return 0x02b2;
533                 case    'r': return 0x02b3;
534                 case 0x0279: return 0x02b4; // LATIN SMALL LETTER TURNED R
535                 case 0x027b: return 0x02b5; // LATIN SMALL LETTER TURNED R WITH HOOK
536                 case 0x0281: return 0x02b6; // LATIN SMALL LETTER CAPITAL INVERTED R
537                 case    'w': return 0x02b7;
538                 case    'y': return 0x02b8;
539 //              case 0x0294: return 0x02c0; // LATIN LETTER GLOTTAL STOP)
540 //              case 0x0295: return 0x02c1; // LATIN LETTER PHARYNGEAL VOICED FRICATIVE
541                                             // (= LATIN LETTER REVERSED GLOTTAL STOP)
542                 case    'l': return 0x02e1;
543                 case    's': return 0x02e2;
544                 case    'x': return 0x02e3;
545 //              case 0x0295: return 0x02e4; // LATIN SMALL LETTER REVERSED GLOTTAL STOP
546                 case    'A': return 0x1d2c;
547                 case 0x00c6: return 0x1d2d; // LATIN CAPITAL LETTER AE
548                 case    'B': return 0x1d2e;
549                 case    'D': return 0x1d30;
550                 case    'E': return 0x1d31;
551                 case    'G': return 0x1d33;
552                 case    'H': return 0x1d34;
553                 case    'I': return 0x1d35;
554                 case    'J': return 0x1d36;
555                 case    'K': return 0x1d37;
556                 case    'L': return 0x1d38;
557                 case    'M': return 0x1d39;
558                 case    'N': return 0x1d3a;
559                 case    'O': return 0x1d3c;
560                 case    'P': return 0x1d3e;
561                 case    'R': return 0x1d3f;
562                 case    'T': return 0x1d40;
563                 case    'U': return 0x1d41;
564                 case    'W': return 0x1d42;
565                 case    'a': return 0x1d43;
566                 case 0x0250: return 0x1d44; // LATIN SMALL LETTER TURNED A
567                 case 0x0251: return 0x1d45; // LATIN SMALL LETTER ALPHA
568                 case    'b': return 0x1d47;
569                 case    'd': return 0x1d48;
570                 case    'e': return 0x1d49;
571                 case 0x0259: return 0x1d4a; // LATIN SMALL LETTER SCHWA
572                 case 0x025b: return 0x1d4b; // LATIN SMALL LETTER OPEN E
573                 case 0x1d08: return 0x1d4c; // LATIN SMALL LETTER TURNED OPEN E
574                 case    'g': return 0x1d4d;
575                 case 0x1d09: return 0x1d4e; // LATIN SMALL LETTER TURNED I
576                 case    'k': return 0x1d4f;
577                 case    'm': return 0x1d50;
578                 case 0x014b: return 0x1d51; // LATIN SMALL LETTER ENG
579                 case    'o': return 0x1d52;
580                 case 0x0254: return 0x1d53; // LATIN SMALL LETTER OPEN O
581                 case 0x1d16: return 0x1d54; // LATIN SMALL LETTER TOP HALF O
582                 case 0x1d17: return 0x1d55; // LATIN SMALL LETTER BOTTOM HALF O
583                 case    'p': return 0x1d56;
584                 case    't': return 0x1d57;
585                 case    'u': return 0x1d58;
586                 case 0x1d1d: return 0x1d59; // LATIN SMALL LETTER SIDEWAYS U
587                 case 0x1d1f: return 0x1d5a; // LATIN SMALL LETTER SIDEWAYS TURNED M
588                 case    'v': return 0x1d5b;
589                 case 0x03b2: return 0x1d5d; // GREEK SMALL LETTER BETA
590                 case 0x03b3: return 0x1d5e; // GREEK SMALL LETTER GAMMA
591                 case 0x03b4: return 0x1d5f; // GREEK SMALL LETTER DELTA
592                 case 0x03c6: return 0x1d60; // GREEK SMALL LETTER PHI
593                 case 0x03c7: return 0x1d61; // GREEK SMALL LETTER CHI
594         }
595         return c;
596 }
597
598
599 char_type subscript(char_type c)
600 {
601         switch (c) {
602                 case    'i': return 0x1d62;
603                 case    'r': return 0x1d63;
604                 case    'u': return 0x1d64;
605                 case    'v': return 0x1d65;
606                 case 0x03b2: return 0x1d66; // GREEK SMALL LETTER BETA
607                 case 0x03b3: return 0x1d67; // GREEK SMALL LETTER GAMMA
608                 case 0x03c1: return 0x1d68; // GREEK SMALL LETTER RHO
609                 case 0x03c6: return 0x1d69; // GREEK SMALL LETTER PHI
610                 case 0x03c7: return 0x1d6a; // GREEK SMALL LETTER CHI
611                 case    '0': return 0x2080;
612                 case    '1': return 0x2081;
613                 case    '2': return 0x2082;
614                 case    '3': return 0x2083;
615                 case    '4': return 0x2084;
616                 case    '5': return 0x2085;
617                 case    '6': return 0x2086;
618                 case    '7': return 0x2087;
619                 case    '8': return 0x2088;
620                 case    '9': return 0x2089;
621                 case    '+': return 0x208a;
622                 case    '-': return 0x208b;
623                 case    '=': return 0x208c;
624                 case    '(': return 0x208d;
625                 case    ')': return 0x208e;
626                 case    'a': return 0x2090;
627                 case    'e': return 0x2091;
628                 case    'o': return 0x2092;
629                 case    'x': return 0x2093;
630                 case 0x0259: return 0x2093; // LATIN SMALL LETTER SCHWA
631         }
632         return c;
633 }
634
635
636 bool prefixIs(docstring const & a, char_type c)
637 {
638         if (a.empty())
639                 return false;
640         return a[0] == c;
641 }
642
643
644 bool prefixIs(string const & a, string const & pre)
645 {
646         size_t const prelen = pre.length();
647         size_t const alen = a.length();
648         return prelen <= alen && !a.empty() && a.compare(0, prelen, pre) == 0;
649 }
650
651
652 bool prefixIs(docstring const & a, docstring const & pre)
653 {
654         size_t const prelen = pre.length();
655         size_t const alen = a.length();
656         return prelen <= alen && !a.empty() && a.compare(0, prelen, pre) == 0;
657 }
658
659
660 bool suffixIs(string const & a, char c)
661 {
662         if (a.empty())
663                 return false;
664         return a[a.length() - 1] == c;
665 }
666
667
668 bool suffixIs(docstring const & a, char_type c)
669 {
670         if (a.empty())
671                 return false;
672         return a[a.length() - 1] == c;
673 }
674
675
676 bool suffixIs(string const & a, string const & suf)
677 {
678         size_t const suflen = suf.length();
679         size_t const alen = a.length();
680         return suflen <= alen && a.compare(alen - suflen, suflen, suf) == 0;
681 }
682
683
684 bool suffixIs(docstring const & a, docstring const & suf)
685 {
686         size_t const suflen = suf.length();
687         size_t const alen = a.length();
688         return suflen <= alen && a.compare(alen - suflen, suflen, suf) == 0;
689 }
690
691
692 bool containsOnly(string const & s, string const & cset)
693 {
694         return s.find_first_not_of(cset) == string::npos;
695 }
696
697
698 // ale970405+lasgoutt-970425
699 // rewritten to use new string (Lgb)
700 string const token(string const & a, char delim, int n)
701 {
702         if (a.empty())
703                 return string();
704
705         size_t k = 0;
706         size_t i = 0;
707
708         // Find delimiter or end of string
709         for (; n--;) {
710                 if ((i = a.find(delim, i)) == string::npos)
711                         break;
712                 else
713                         ++i; // step delim
714         }
715
716         // i is now the n'th delim (or string::npos)
717         if (i == string::npos)
718                 return string();
719
720         k = a.find(delim, i);
721         // k is now the n'th + 1 delim (or string::npos)
722
723         return a.substr(i, k - i);
724 }
725
726
727 docstring const token(docstring const & a, char_type delim, int n)
728 {
729         if (a.empty())
730                 return docstring();
731
732         size_t k = 0;
733         size_t i = 0;
734
735         // Find delimiter or end of string
736         for (; n--;) {
737                 if ((i = a.find(delim, i)) == docstring::npos)
738                         break;
739                 else
740                         ++i; // step delim
741         }
742
743         // i is now the n'th delim (or string::npos)
744         if (i == docstring::npos)
745                 return docstring();
746
747         k = a.find(delim, i);
748         // k is now the n'th + 1 delim (or string::npos)
749
750         return a.substr(i, k - i);
751 }
752
753
754 // this could probably be faster and/or cleaner, but it seems to work (JMarc)
755 // rewritten to use new string (Lgb)
756 int tokenPos(string const & a, char delim, string const & tok)
757 {
758         int i = 0;
759         string str = a;
760         string tmptok;
761
762         while (!str.empty()) {
763                 str = split(str, tmptok, delim);
764                 if (tok == tmptok)
765                         return i;
766                 ++i;
767         }
768         return -1;
769 }
770
771
772 // this could probably be faster and/or cleaner, but it seems to work (JMarc)
773 // rewritten to use new string (Lgb)
774 int tokenPos(docstring const & a, char_type delim, docstring const & tok)
775 {
776         int i = 0;
777         docstring str = a;
778         docstring tmptok;
779
780         while (!str.empty()) {
781                 str = split(str, tmptok, delim);
782                 if (tok == tmptok)
783                         return i;
784                 ++i;
785         }
786         return -1;
787 }
788
789
790 namespace {
791
792 /// Substitute all \a oldchar with \a newchar
793 template<typename Ch> inline
794 basic_string<Ch> const subst_char(basic_string<Ch> const & a,
795                 Ch oldchar, Ch newchar)
796 {
797         typedef basic_string<Ch> String;
798         String tmp(a);
799         typename String::iterator lit = tmp.begin();
800         typename String::iterator end = tmp.end();
801         for (; lit != end; ++lit)
802                 if ((*lit) == oldchar)
803                         (*lit) = newchar;
804         return tmp;
805 }
806
807
808 /// Substitute all \a oldchar with \a newchar
809 docstring const subst_char(docstring const & a,
810         docstring::value_type oldchar, docstring::value_type newchar)
811 {
812         docstring tmp(a);
813         docstring::iterator lit = tmp.begin();
814         docstring::iterator end = tmp.end();
815         for (; lit != end; ++lit)
816                 if ((*lit) == oldchar)
817                         (*lit) = newchar;
818         return tmp;
819 }
820
821
822 /// substitutes all instances of \a oldstr with \a newstr
823 template<typename String> inline
824 String const subst_string(String const & a,
825                 String const & oldstr, String const & newstr)
826 {
827         LASSERT(!oldstr.empty(), return a);
828         String lstr = a;
829         size_t i = 0;
830         size_t const olen = oldstr.length();
831         while ((i = lstr.find(oldstr, i)) != string::npos) {
832                 lstr.replace(i, olen, newstr);
833                 i += newstr.length(); // We need to be sure that we dont
834                 // use the same i over and over again.
835         }
836         return lstr;
837 }
838
839
840 docstring const subst_string(docstring const & a,
841                 docstring const & oldstr, docstring const & newstr)
842 {
843         LASSERT(!oldstr.empty(), return a);
844         docstring lstr = a;
845         size_t i = 0;
846         size_t const olen = oldstr.length();
847         while ((i = lstr.find(oldstr, i)) != string::npos) {
848                 lstr.replace(i, olen, newstr);
849                 i += newstr.length(); // We need to be sure that we dont
850                 // use the same i over and over again.
851         }
852         return lstr;
853 }
854
855 }
856
857
858 string const subst(string const & a, char oldchar, char newchar)
859 {
860         return subst_char(a, oldchar, newchar);
861 }
862
863
864 docstring const subst(docstring const & a,
865                 char_type oldchar, char_type newchar)
866 {
867         return subst_char(a, oldchar, newchar);
868 }
869
870
871 string const subst(string const & a,
872                 string const & oldstr, string const & newstr)
873 {
874         return subst_string(a, oldstr, newstr);
875 }
876
877
878 docstring const subst(docstring const & a,
879                 docstring const & oldstr, docstring const & newstr)
880 {
881         return subst_string(a, oldstr, newstr);
882 }
883
884
885 int count_char(string const & str, char chr)
886 {
887         int count = 0;
888         string::const_iterator lit = str.begin();
889         string::const_iterator end = str.end();
890         for (; lit != end; ++lit)
891                 if ((*lit) == chr)
892                         count++;
893         return count;
894 }
895
896
897 /// Count all occurences of char \a chr inside \a str
898 int count_char(docstring const & str, docstring::value_type chr)
899 {
900         int count = 0;
901         docstring::const_iterator lit = str.begin();
902         docstring::const_iterator end = str.end();
903         for (; lit != end; ++lit)
904                 if ((*lit) == chr)
905                         count++;
906         return count;
907 }
908
909
910 docstring const trim(docstring const & a, char const * p)
911 {
912         LASSERT(p, return a);
913
914         if (a.empty() || !*p)
915                 return a;
916
917         docstring s = from_ascii(p);
918         size_t r = a.find_last_not_of(s);
919         size_t l = a.find_first_not_of(s);
920
921         // Is this the minimal test? (lgb)
922         if (r == docstring::npos && l == docstring::npos)
923                 return docstring();
924
925         return a.substr(l, r - l + 1);
926 }
927
928
929 string const trim(string const & a, char const * p)
930 {
931         LASSERT(p, return a);
932
933         if (a.empty() || !*p)
934                 return a;
935
936         size_t r = a.find_last_not_of(p);
937         size_t l = a.find_first_not_of(p);
938
939         // Is this the minimal test? (lgb)
940         if (r == string::npos && l == string::npos)
941                 return string();
942
943         return a.substr(l, r - l + 1);
944 }
945
946
947 string const rtrim(string const & a, char const * p)
948 {
949         LASSERT(p, return a);
950
951         if (a.empty() || !*p)
952                 return a;
953
954         size_t r = a.find_last_not_of(p);
955
956         // Is this test really needed? (Lgb)
957         if (r == string::npos)
958                 return string();
959
960         return a.substr(0, r + 1);
961 }
962
963
964 docstring const rtrim(docstring const & a, char const * p)
965 {
966         LASSERT(p, return a);
967
968         if (a.empty() || !*p)
969                 return a;
970
971         size_t r = a.find_last_not_of(from_ascii(p));
972
973         // Is this test really needed? (Lgb)
974         if (r == docstring::npos)
975                 return docstring();
976
977         return a.substr(0, r + 1);
978 }
979
980
981 string const ltrim(string const & a, char const * p)
982 {
983         LASSERT(p, return a);
984         if (a.empty() || !*p)
985                 return a;
986         size_t l = a.find_first_not_of(p);
987         if (l == string::npos)
988                 return string();
989         return a.substr(l, string::npos);
990 }
991
992
993 docstring const ltrim(docstring const & a, char const * p)
994 {
995         LASSERT(p, return a);
996         if (a.empty() || !*p)
997                 return a;
998         size_t l = a.find_first_not_of(from_ascii(p));
999         if (l == docstring::npos)
1000                 return docstring();
1001         return a.substr(l, docstring::npos);
1002 }
1003
1004 namespace {
1005
1006 template<typename String, typename Char> inline
1007 String const doSplit(String const & a, String & piece, Char delim)
1008 {
1009         String tmp;
1010         size_t i = a.find(delim);
1011         if (i == a.length() - 1) {
1012                 piece = a.substr(0, i);
1013         } else if (i != String::npos) {
1014                 piece = a.substr(0, i);
1015                 tmp = a.substr(i + 1);
1016         } else if (i == 0) {
1017                 piece.erase();
1018                 tmp = a.substr(i + 1);
1019         } else {
1020                 piece = a;
1021         }
1022         return tmp;
1023 }
1024
1025 template<typename Char> inline
1026 docstring const doSplit(docstring const & a, docstring & piece, Char delim)
1027 {
1028         docstring tmp;
1029         size_t i = a.find(delim);
1030         if (i == a.length() - 1) {
1031                 piece = a.substr(0, i);
1032         } else if (i != docstring::npos) {
1033                 piece = a.substr(0, i);
1034                 tmp = a.substr(i + 1);
1035         } else if (i == 0) {
1036                 piece.erase();
1037                 tmp = a.substr(i + 1);
1038         } else {
1039                 piece = a;
1040         }
1041         return tmp;
1042 }
1043
1044 } // anon
1045
1046
1047 string const split(string const & a, string & piece, char delim)
1048 {
1049         return doSplit(a, piece, delim);
1050 }
1051
1052
1053 docstring const split(docstring const & a, docstring & piece, char_type delim)
1054 {
1055         return doSplit(a, piece, delim);
1056 }
1057
1058
1059 string const split(string const & a, char delim)
1060 {
1061         string tmp;
1062         size_t i = a.find(delim);
1063         if (i != string::npos) // found delim
1064                 tmp = a.substr(i + 1);
1065         return tmp;
1066 }
1067
1068
1069 // ale970521
1070 string const rsplit(string const & a, string & piece, char delim)
1071 {
1072         string tmp;
1073         size_t i = a.rfind(delim);
1074         if (i != string::npos) { // delimiter was found
1075                 piece = a.substr(0, i);
1076                 tmp = a.substr(i + 1);
1077         } else { // delimiter was not found
1078                 piece.erase();
1079         }
1080         return tmp;
1081 }
1082
1083
1084 docstring const rsplit(docstring const & a, docstring & piece, char_type delim)
1085 {
1086         docstring tmp;
1087         size_t i = a.rfind(delim);
1088         if (i != string::npos) { // delimiter was found
1089                 piece = a.substr(0, i);
1090                 tmp = a.substr(i + 1);
1091         } else { // delimiter was not found
1092                 piece.erase();
1093         }
1094         return tmp;
1095 }
1096
1097
1098 docstring const rsplit(docstring const & a, char_type delim)
1099 {
1100         docstring tmp;
1101         size_t i = a.rfind(delim);
1102         if (i != string::npos)
1103                 tmp = a.substr(i + 1);
1104         return tmp;
1105 }
1106
1107
1108 docstring const escape(docstring const & lab)
1109 {
1110         char_type hexdigit[16] = { '0', '1', '2', '3', '4', '5', '6', '7',
1111                                    '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
1112         docstring enc;
1113         for (size_t i = 0; i < lab.length(); ++i) {
1114                 char_type c = lab[i];
1115                 if (c >= 128 || c == '=' || c == '%' || c == '#' || c == '$'
1116                     || c == '}' || c == '{' || c == ']' || c == '[' || c == '&') {
1117                         // Although char_type is a 32 bit type we know that
1118                         // UCS4 occupies only 21 bits, so we don't need to
1119                         // encode bigger values. Test for 2^24 because we
1120                         // can encode that with the 6 hex digits that are
1121                         // needed for 21 bits anyway.
1122                         LASSERT(c < (1 << 24), continue);
1123                         enc += '=';
1124                         enc += hexdigit[(c>>20) & 15];
1125                         enc += hexdigit[(c>>16) & 15];
1126                         enc += hexdigit[(c>>12) & 15];
1127                         enc += hexdigit[(c>> 8) & 15];
1128                         enc += hexdigit[(c>> 4) & 15];
1129                         enc += hexdigit[ c      & 15];
1130                 } else {
1131                         enc += c;
1132                 }
1133         }
1134         return enc;
1135 }
1136
1137
1138 namespace {
1139
1140 // this doesn't check whether str is empty, so do that first.
1141 vector<docstring> wrapToVec(docstring const & str, int ind,
1142                             size_t const width)
1143 {
1144         docstring s = trim(str);
1145         if (s.empty())
1146                 return vector<docstring>();
1147
1148         docstring indent;
1149         if (ind < 0) {
1150                 indent.insert(0, -ind, ' ');
1151                 ind = 0;
1152         } else if (ind > 0)
1153                 s.insert(0, ind, ' ');
1154
1155         vector<docstring> retval;
1156         while (s.size() > width) {
1157                 // find the last space within the first 'width' chars
1158                 size_t const i = s.find_last_of(' ', width - 1);
1159                 if (i == docstring::npos || i <= size_t(ind)) {
1160                         // no space found
1161                         s = s.substr(0, width - 3) + "...";
1162                         break;
1163                 }
1164                 retval.push_back(s.substr(0, i));
1165                 s = indent + s.substr(i);
1166                 ind = indent.size();
1167         }
1168         if (!s.empty())
1169                 retval.push_back(s);
1170         return retval;
1171 }
1172
1173 }
1174
1175
1176 docstring wrap(docstring const & str, int const ind, size_t const width)
1177 {
1178         docstring s = trim(str);
1179         if (s.empty())
1180                 return docstring();
1181
1182         vector<docstring> const svec = wrapToVec(str, ind, width);
1183         return getStringFromVector(svec, from_ascii("\n"));
1184 }
1185
1186
1187 docstring wrapParas(docstring const & str, int const indent,
1188                     size_t const width, size_t const maxlines)
1189 {
1190         docstring const dots = from_ascii("...");
1191         if (str.empty())
1192                 return docstring();
1193
1194         vector<docstring> const pars = getVectorFromString(str, from_ascii("\n"), true);
1195         vector<docstring> retval;
1196
1197         vector<docstring>::const_iterator it = pars.begin();
1198         vector<docstring>::const_iterator const en = pars.end();
1199         for (; it != en; ++it) {
1200                 vector<docstring> tmp = wrapToVec(*it, indent, width);
1201                 size_t const nlines = tmp.size();
1202                 if (nlines == 0)
1203                         continue;
1204                 size_t const curlines = retval.size();
1205                 if (maxlines > 0 && curlines + nlines > maxlines) {
1206                         tmp.resize(maxlines - curlines);
1207                         docstring last = tmp.back();
1208                         size_t const lsize = last.size();
1209                         if (lsize > width - 3) {
1210                                 size_t const i = last.find_last_of(' ', width - 3);
1211                                 if (i == docstring::npos || i <= size_t(indent))
1212                                         // no space found
1213                                         last = last.substr(0, lsize - 3) + dots;
1214                                 else
1215                                         last = last.substr(0, i) + dots;
1216                         } else
1217                                 last += dots;
1218                         tmp.pop_back();
1219                         tmp.push_back(last);
1220                 }
1221                 retval.insert(retval.end(), tmp.begin(), tmp.end());
1222                 if (maxlines > 0 && retval.size() >= maxlines)
1223                         break;
1224         }
1225         return getStringFromVector(retval, from_ascii("\n"));
1226 }
1227
1228
1229 namespace {
1230
1231 template<typename String> vector<String> const
1232 getVectorFromStringT(String const & str, String const & delim, bool keepempty)
1233 {
1234 // Lars would like this code to go, but for now his replacement (below)
1235 // doesn't fullfil the same function. I have, therefore, reactivated the
1236 // old code for now. Angus 11 Nov 2002.
1237 #if 1
1238         vector<String> vec;
1239         if (str.empty())
1240                 return vec;
1241         String keys = rtrim(str);
1242         while (true) {
1243                 size_t const idx = keys.find(delim);
1244                 if (idx == String::npos) {
1245                         vec.push_back(ltrim(keys));
1246                         break;
1247                 }
1248                 String const key = trim(keys.substr(0, idx));
1249                 if (!key.empty() || keepempty)
1250                         vec.push_back(key);
1251                 size_t const start = idx + delim.size();
1252                 keys = keys.substr(start);
1253         }
1254         return vec;
1255 #else
1256         typedef boost::char_separator<typename String::value_type> Separator;
1257         typedef boost::tokenizer<Separator, typename String::const_iterator, String> Tokenizer;
1258         Separator sep(delim.c_str());
1259         Tokenizer tokens(str, sep);
1260         return vector<String>(tokens.begin(), tokens.end());
1261 #endif
1262 }
1263
1264
1265 template<typename String> const String
1266         getStringFromVector(vector<String> const & vec, String const & delim)
1267 {
1268         String str;
1269         typename vector<String>::const_iterator it = vec.begin();
1270         typename vector<String>::const_iterator en = vec.end();
1271         for (; it != en; ++it) {
1272                 String item = trim(*it);
1273                 if (item.empty())
1274                         continue;
1275                 if (!str.empty())
1276                         str += delim;
1277                 str += item;
1278         }
1279         return str;
1280 }
1281
1282 } // namespace anon
1283
1284
1285 vector<string> const getVectorFromString(string const & str,
1286                                          string const & delim,
1287                                          bool keepempty)
1288 {
1289         return getVectorFromStringT<string>(str, delim, keepempty);
1290 }
1291
1292
1293 vector<docstring> const getVectorFromString(docstring const & str,
1294                                             docstring const & delim,
1295                                             bool keepempty)
1296 {
1297         return getVectorFromStringT<docstring>(str, delim, keepempty);
1298 }
1299
1300
1301 string const getStringFromVector(vector<string> const & vec,
1302                                  string const & delim)
1303 {
1304         return getStringFromVector<string>(vec, delim);
1305 }
1306
1307
1308 docstring const getStringFromVector(vector<docstring> const & vec,
1309                                     docstring const & delim)
1310 {
1311         return getStringFromVector<docstring>(vec, delim);
1312 }
1313
1314
1315 int findToken(char const * const str[], string const & search_token)
1316 {
1317         int i = 0;
1318
1319         while (str[i][0] && str[i] != search_token)
1320                 ++i;
1321         if (!str[i][0])
1322                 i = -1;
1323         return i;
1324 }
1325
1326
1327 template<>
1328 docstring bformat(docstring const & fmt, int arg1)
1329 {
1330         LATTEST(contains(fmt, from_ascii("%1$d")));
1331         docstring const str = subst(fmt, from_ascii("%1$d"), convert<docstring>(arg1));
1332         return subst(str, from_ascii("%%"), from_ascii("%"));
1333 }
1334
1335
1336 template<>
1337 docstring bformat(docstring const & fmt, long arg1)
1338 {
1339         LATTEST(contains(fmt, from_ascii("%1$d")));
1340         docstring const str = subst(fmt, from_ascii("%1$d"), convert<docstring>(arg1));
1341         return subst(str, from_ascii("%%"), from_ascii("%"));
1342 }
1343
1344
1345 template<>
1346 docstring bformat(docstring const & fmt, unsigned int arg1)
1347 {
1348         LATTEST(contains(fmt, from_ascii("%1$d")));
1349         docstring const str = subst(fmt, from_ascii("%1$d"), convert<docstring>(arg1));
1350         return subst(str, from_ascii("%%"), from_ascii("%"));
1351 }
1352
1353
1354 template<>
1355 docstring bformat(docstring const & fmt, docstring arg1)
1356 {
1357         LATTEST(contains(fmt, from_ascii("%1$s")));
1358         docstring const str = subst(fmt, from_ascii("%1$s"), arg1);
1359         return subst(str, from_ascii("%%"), from_ascii("%"));
1360 }
1361
1362
1363 template<>
1364 docstring bformat(docstring const & fmt, char * arg1)
1365 {
1366         LATTEST(contains(fmt, from_ascii("%1$s")));
1367         docstring const str = subst(fmt, from_ascii("%1$s"), from_ascii(arg1));
1368         return subst(str, from_ascii("%%"), from_ascii("%"));
1369 }
1370
1371
1372 template<>
1373 docstring bformat(docstring const & fmt, docstring arg1, docstring arg2)
1374 {
1375         LATTEST(contains(fmt, from_ascii("%1$s")));
1376         LATTEST(contains(fmt, from_ascii("%2$s")));
1377         docstring str = subst(fmt, from_ascii("%1$s"), arg1);
1378         str = subst(str, from_ascii("%2$s"), arg2);
1379         return subst(str, from_ascii("%%"), from_ascii("%"));
1380 }
1381
1382
1383 template<>
1384 docstring bformat(docstring const & fmt, docstring arg1, int arg2)
1385 {
1386         LATTEST(contains(fmt, from_ascii("%1$s")));
1387         LATTEST(contains(fmt, from_ascii("%2$d")));
1388         docstring str = subst(fmt, from_ascii("%1$s"), arg1);
1389         str = subst(str, from_ascii("%2$d"), convert<docstring>(arg2));
1390         return subst(str, from_ascii("%%"), from_ascii("%"));
1391 }
1392
1393
1394 template<>
1395 docstring bformat(docstring const & fmt, char const * arg1, docstring arg2)
1396 {
1397         LATTEST(contains(fmt, from_ascii("%1$s")));
1398         LATTEST(contains(fmt, from_ascii("%2$s")));
1399         docstring str = subst(fmt, from_ascii("%1$s"), from_ascii(arg1));
1400         str = subst(fmt, from_ascii("%2$s"), arg2);
1401         return subst(str, from_ascii("%%"), from_ascii("%"));
1402 }
1403
1404
1405 template<>
1406 docstring bformat(docstring const & fmt, int arg1, int arg2)
1407 {
1408         LATTEST(contains(fmt, from_ascii("%1$d")));
1409         LATTEST(contains(fmt, from_ascii("%2$d")));
1410         docstring str = subst(fmt, from_ascii("%1$d"), convert<docstring>(arg1));
1411         str = subst(str, from_ascii("%2$d"), convert<docstring>(arg2));
1412         return subst(str, from_ascii("%%"), from_ascii("%"));
1413 }
1414
1415
1416 template<>
1417 docstring bformat(docstring const & fmt, docstring arg1, docstring arg2, docstring arg3)
1418 {
1419         LATTEST(contains(fmt, from_ascii("%1$s")));
1420         LATTEST(contains(fmt, from_ascii("%2$s")));
1421         LATTEST(contains(fmt, from_ascii("%3$s")));
1422         docstring str = subst(fmt, from_ascii("%1$s"), arg1);
1423         str = subst(str, from_ascii("%2$s"), arg2);
1424         str = subst(str, from_ascii("%3$s"), arg3);
1425         return subst(str, from_ascii("%%"), from_ascii("%"));
1426 }
1427
1428
1429 template<>
1430 docstring bformat(docstring const & fmt,
1431                docstring arg1, docstring arg2, docstring arg3, docstring arg4)
1432 {
1433         LATTEST(contains(fmt, from_ascii("%1$s")));
1434         LATTEST(contains(fmt, from_ascii("%2$s")));
1435         LATTEST(contains(fmt, from_ascii("%3$s")));
1436         LATTEST(contains(fmt, from_ascii("%4$s")));
1437         docstring str = subst(fmt, from_ascii("%1$s"), arg1);
1438         str = subst(str, from_ascii("%2$s"), arg2);
1439         str = subst(str, from_ascii("%3$s"), arg3);
1440         str = subst(str, from_ascii("%4$s"), arg4);
1441         return subst(str, from_ascii("%%"), from_ascii("%"));
1442 }
1443
1444 } // namespace support
1445 } // namespace lyx