]> git.lyx.org Git - features.git/blob - src/support/lstrings.cpp
revert the obviously incorrect fix of rev. 19001.
[features.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  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "support/lstrings.h"
15 #include "support/lyxlib.h"
16 #include "support/convert.h"
17 #include "support/qstring_helpers.h"
18
19 #include "debug.h"
20
21 #include <boost/tokenizer.hpp>
22 #include <boost/assert.hpp>
23
24 #ifndef I_AM_NOT_AFRAID_OF_HEADER_LIBRARIES
25 #if USE_BOOST_FORMAT
26 #include <boost/format.hpp>
27 #endif
28 #endif
29
30 #include <cctype>
31 #include <cstdlib>
32
33 #include <algorithm>
34 #include <sstream>
35
36
37 using std::transform;
38 using std::string;
39 using std::vector;
40
41 #ifndef CXX_GLOBAL_CSTD
42 using std::isdigit;
43 using std::tolower;
44 using std::toupper;
45 #endif
46
47
48 namespace lyx {
49 namespace support {
50
51 int compare_no_case(docstring const & s, docstring const & s2)
52 {
53         docstring::const_iterator p = s.begin();
54         docstring::const_iterator p2 = s2.begin();
55
56         while (p != s.end() && p2 != s2.end()) {
57                 char_type const lc1 = lowercase(*p);
58                 char_type const lc2 = lowercase(*p2);
59                 if (lc1 != lc2)
60                         return (lc1 < lc2) ? -1 : 1;
61                 ++p;
62                 ++p2;
63         }
64
65         if (s.size() == s2.size())
66                 return 0;
67         if (s.size() < s2.size())
68                 return -1;
69         return 1;
70 }
71
72
73 namespace {
74
75 template<typename Char>
76 Char ascii_tolower(Char c) {
77         if (c >= 'A' && c <= 'Z')
78                 return c - 'A' + 'a';
79         return c;
80 }
81
82 }
83
84
85 int compare_ascii_no_case(string const & s, string const & s2)
86 {
87         string::const_iterator p = s.begin();
88         string::const_iterator p2 = s2.begin();
89
90         while (p != s.end() && p2 != s2.end()) {
91                 int const lc1 = ascii_tolower(*p);
92                 int const lc2 = ascii_tolower(*p2);
93                 if (lc1 != lc2)
94                         return (lc1 < lc2) ? -1 : 1;
95                 ++p;
96                 ++p2;
97         }
98
99         if (s.size() == s2.size())
100                 return 0;
101         if (s.size() < s2.size())
102                 return -1;
103         return 1;
104 }
105
106
107 int compare_ascii_no_case(docstring const & s, docstring const & s2)
108 {
109         docstring::const_iterator p = s.begin();
110         docstring::const_iterator p2 = s2.begin();
111
112         while (p != s.end() && p2 != s2.end()) {
113                 char_type const lc1 = ascii_tolower(*p);
114                 char_type const lc2 = ascii_tolower(*p2);
115                 if (lc1 != lc2)
116                         return (lc1 < lc2) ? -1 : 1;
117                 ++p;
118                 ++p2;
119         }
120
121         if (s.size() == s2.size())
122                 return 0;
123         if (s.size() < s2.size())
124                 return -1;
125         return 1;
126 }
127
128
129 bool isStrInt(string const & str)
130 {
131         if (str.empty()) return false;
132
133         // Remove leading and trailing white space chars.
134         string const tmpstr = trim(str);
135         if (tmpstr.empty()) return false;
136
137         string::const_iterator cit = tmpstr.begin();
138         if ((*cit) == '-') ++cit;
139         string::const_iterator end = tmpstr.end();
140         for (; cit != end; ++cit) {
141                 if (!isdigit((*cit))) return false;
142         }
143         return true;
144 }
145
146
147 bool isStrUnsignedInt(string const & str)
148 {
149         if (str.empty()) return false;
150
151         // Remove leading and trailing white space chars.
152         string const tmpstr = trim(str);
153         if (tmpstr.empty()) return false;
154
155         string::const_iterator cit = tmpstr.begin();
156         string::const_iterator end = tmpstr.end();
157         for (; cit != end; ++cit) {
158                 if (!isdigit((*cit))) return false;
159         }
160         return true;
161 }
162
163
164 bool isStrDbl(string const & str)
165 {
166         if (str.empty()) return false;
167
168         // Remove leading and trailing white space chars.
169         string const tmpstr = trim(str);
170         if (tmpstr.empty()) return false;
171         //      if (1 < tmpstr.count('.')) return false;
172
173         string::const_iterator cit = tmpstr.begin();
174         bool found_dot(false);
175         if ((*cit) == '-') ++cit;
176         string::const_iterator end = tmpstr.end();
177         for (; cit != end; ++cit) {
178                 if (!isdigit((*cit))
179                     && '.' != (*cit)) {
180                         return false;
181                 }
182                 if ('.' == (*cit)) {
183                         if (found_dot) {
184                                 return false;
185                         } else {
186                                 found_dot = true;
187                         }
188                 }
189         }
190         return true;
191 }
192
193
194 namespace {
195
196 inline
197 bool isHexChar(char_type c)
198 {
199         return c == '0' ||
200                 c == '1' ||
201                 c == '2' ||
202                 c == '3' ||
203                 c == '4' ||
204                 c == '5' ||
205                 c == '6' ||
206                 c == '7' ||
207                 c == '8' ||
208                 c == '9' ||
209                 c == 'a' || c == 'A' ||
210                 c == 'b' || c == 'B' ||
211                 c == 'c' || c == 'C' ||
212                 c == 'd' || c == 'D' ||
213                 c == 'e' || c == 'E' ||
214                 c == 'f' || c == 'F';
215 }
216
217 } // anon namespace
218
219
220 bool isHex(docstring const & str)
221 {
222         int index = 0;
223
224         if (str.length() > 2 && str[0] == '0' &&
225             (str[1] == 'x' || str[1] == 'X'))
226                 index = 2;
227
228         int const len = str.length();
229
230         for (; index < len; ++index) {
231                 if (!isHexChar(str[index]))
232                         return false;
233         }
234         return true;
235 }
236
237
238 int hexToInt(docstring const & str)
239 {
240         string s = to_ascii(str);
241         int h;
242         sscanf(s.c_str(), "%x", &h);
243         return h;
244 }
245
246
247 bool isAscii(docstring const & str)
248 {
249         int const len = str.length();
250         for (int i = 0; i < len; ++i)
251                 if (str[i] >= 0x80)
252                         return false;
253         return true;
254 }
255
256
257 bool isAscii(string const & str)
258 {
259         int const len = str.length();
260         for (int i = 0; i < len; ++i)
261                 if (static_cast<unsigned char>(str[i]) >= 0x80)
262                         return false;
263         return true;
264 }
265
266
267 char lowercase(char c)
268 {
269         BOOST_ASSERT(static_cast<unsigned char>(c) < 0x80);
270         return char(tolower(c));
271 }
272
273
274 char uppercase(char c)
275 {
276         BOOST_ASSERT(static_cast<unsigned char>(c) < 0x80);
277         return char(toupper(c));
278 }
279
280
281 char_type lowercase(char_type c)
282 {
283         if (!is_utf16(c))
284                 // We don't know how to lowercase a non-utf16 char
285                 return c;
286         return qchar_to_ucs4(ucs4_to_qchar(c).toLower());
287 }
288
289
290 char_type uppercase(char_type c)
291 {
292         if (!is_utf16(c))
293                 // We don't know how to uppercase a non-utf16 char
294                 return c;
295         return qchar_to_ucs4(ucs4_to_qchar(c).toUpper());
296 }
297
298
299 namespace {
300
301 // since we cannot use std::tolower and std::toupper directly in the
302 // calls to std::transform yet, we use these helper clases. (Lgb)
303
304 struct local_lowercase {
305         char_type operator()(char_type c) const {
306                 if (!is_utf16(c))
307                         // We don't know how to lowercase a non-utf16 char
308                         return c;
309                 return qchar_to_ucs4(ucs4_to_qchar(c).toLower());
310         }
311 };
312
313 struct local_uppercase {
314         char_type operator()(char_type c) const {
315                 if (!is_utf16(c))
316                         // We don't know how to uppercase a non-utf16 char
317                         return c;
318                 return qchar_to_ucs4(ucs4_to_qchar(c).toUpper());
319         }
320 };
321
322 template<typename Char> struct local_ascii_lowercase {
323         Char operator()(Char c) const {
324                 return ascii_tolower(c);
325         }
326 };
327
328 } // end of anon namespace
329
330 docstring const lowercase(docstring const & a)
331 {
332         docstring tmp(a);
333         transform(tmp.begin(), tmp.end(), tmp.begin(), local_lowercase());
334         return tmp;
335 }
336
337
338 docstring const uppercase(docstring const & a)
339 {
340         docstring tmp(a);
341         transform(tmp.begin(), tmp.end(), tmp.begin(), local_uppercase());
342         return tmp;
343 }
344
345
346 string const ascii_lowercase(string const & a)
347 {
348         string tmp(a);
349         transform(tmp.begin(), tmp.end(), tmp.begin(),
350                   local_ascii_lowercase<char>());
351         return tmp;
352 }
353
354
355 docstring const ascii_lowercase(docstring const & a)
356 {
357         docstring tmp(a);
358         transform(tmp.begin(), tmp.end(), tmp.begin(),
359                   local_ascii_lowercase<char_type>());
360         return tmp;
361 }
362
363
364 bool prefixIs(docstring const & a, char_type c)
365 {
366         if (a.empty())
367                 return false;
368         return a[0] == c;
369 }
370
371
372 bool prefixIs(string const & a, string const & pre)
373 {
374         string::size_type const prelen = pre.length();
375         string::size_type const alen = a.length();
376
377         if (prelen > alen || a.empty())
378                 return false;
379         else {
380 #if defined(STD_STRING_IS_GOOD)
381                 return a.compare(0, prelen, pre) == 0;
382 #else
383                 return ::strncmp(a.c_str(), pre.c_str(), prelen) == 0;
384 #endif
385         }
386 }
387
388
389 bool prefixIs(docstring const & a, docstring const & pre)
390 {
391         docstring::size_type const prelen = pre.length();
392         docstring::size_type const alen = a.length();
393
394         if (prelen > alen || a.empty())
395                 return false;
396         else
397                 return a.compare(0, prelen, pre) == 0;
398 }
399
400
401 bool suffixIs(string const & a, char c)
402 {
403         if (a.empty()) return false;
404         return a[a.length() - 1] == c;
405 }
406
407
408 bool suffixIs(docstring const & a, char_type c)
409 {
410         if (a.empty())
411                 return false;
412         return a[a.length() - 1] == c;
413 }
414
415
416 bool suffixIs(string const & a, string const & suf)
417 {
418         string::size_type const suflen = suf.length();
419         string::size_type const alen = a.length();
420
421         if (suflen > alen) {
422                 return false;
423         } else {
424 #if !defined(USE_INCLUDED_STRING) && !defined(STD_STRING_IS_GOOD)
425                 string tmp(a, alen - suflen);
426                 return ::strncmp(tmp.c_str(), suf.c_str(), suflen) == 0;
427 #else
428                 return a.compare(alen - suflen, suflen, suf) == 0;
429 #endif
430         }
431 }
432
433
434 bool containsOnly(string const & s, string const & cset)
435 {
436         return s.find_first_not_of(cset) == string::npos;
437 }
438
439
440 // ale970405+lasgoutt-970425
441 // rewritten to use new string (Lgb)
442 string const token(string const & a, char delim, int n)
443 {
444         if (a.empty()) return string();
445
446         string::size_type k = 0;
447         string::size_type i = 0;
448
449         // Find delimiter or end of string
450         for (; n--;)
451                 if ((i = a.find(delim, i)) == string::npos)
452                         break;
453                 else
454                         ++i; // step delim
455         // i is now the n'th delim (or string::npos)
456         if (i == string::npos) return string();
457         k = a.find(delim, i);
458         // k is now the n'th + 1 delim (or string::npos)
459
460         return a.substr(i, k - i);
461 }
462
463
464 docstring const token(docstring const & a, char_type delim, int n)
465 {
466         if (a.empty()) return docstring();
467
468         string::size_type k = 0;
469         string::size_type i = 0;
470
471         // Find delimiter or end of string
472         for (; n--;)
473                 if ((i = a.find(delim, i)) == docstring::npos)
474                         break;
475                 else
476                         ++i; // step delim
477         // i is now the n'th delim (or string::npos)
478         if (i == docstring::npos) return docstring();
479         k = a.find(delim, i);
480         // k is now the n'th + 1 delim (or string::npos)
481
482         return a.substr(i, k - i);
483 }
484
485
486 // this could probably be faster and/or cleaner, but it seems to work (JMarc)
487 // rewritten to use new string (Lgb)
488 int tokenPos(string const & a, char delim, string const & tok)
489 {
490         int i = 0;
491         string str(a);
492         string tmptok;
493
494         while (!str.empty()) {
495                 str = split(str, tmptok, delim);
496                 if (tok == tmptok)
497                         return i;
498                 ++i;
499         }
500         return -1;
501 }
502
503
504 namespace {
505
506 /// Substitute all \a oldchar with \a newchar
507 template<typename Ch> inline
508 std::basic_string<Ch> const subst_char(std::basic_string<Ch> const & a,
509                 Ch oldchar, Ch newchar)
510 {
511         typedef std::basic_string<Ch> String;
512         String tmp(a);
513         typename String::iterator lit = tmp.begin();
514         typename String::iterator end = tmp.end();
515         for (; lit != end; ++lit)
516                 if ((*lit) == oldchar)
517                         (*lit) = newchar;
518         return tmp;
519 }
520
521
522 /// substitutes all instances of \a oldstr with \a newstr
523 template<typename String> inline
524 String const subst_string(String const & a,
525                 String const & oldstr, String const & newstr)
526 {
527         BOOST_ASSERT(!oldstr.empty());
528         String lstr = a;
529         typename String::size_type i = 0;
530         typename String::size_type const olen = oldstr.length();
531         while ((i = lstr.find(oldstr, i)) != string::npos) {
532                 lstr.replace(i, olen, newstr);
533                 i += newstr.length(); // We need to be sure that we dont
534                 // use the same i over and over again.
535         }
536         return lstr;
537 }
538
539 }
540
541
542 string const subst(string const & a, char oldchar, char newchar)
543 {
544         return subst_char(a, oldchar, newchar);
545 }
546
547
548 docstring const subst(docstring const & a,
549                 char_type oldchar, char_type newchar)
550 {
551         return subst_char(a, oldchar, newchar);
552 }
553
554
555 string const subst(string const & a,
556                 string const & oldstr, string const & newstr)
557 {
558         return subst_string(a, oldstr, newstr);
559 }
560
561
562 docstring const subst(docstring const & a,
563                 docstring const & oldstr, docstring const & newstr)
564 {
565         return subst_string(a, oldstr, newstr);
566 }
567
568
569 docstring const trim(docstring const & a, char const * p)
570 {
571         BOOST_ASSERT(p);
572
573         if (a.empty() || !*p)
574                 return a;
575
576         docstring s = lyx::from_ascii(p);
577         docstring::size_type r = a.find_last_not_of(s);
578         docstring::size_type l = a.find_first_not_of(s);
579
580         // Is this the minimal test? (lgb)
581         if (r == docstring::npos && l == docstring::npos)
582                 return docstring();
583
584         return a.substr(l, r - l + 1);
585 }
586
587
588 string const trim(string const & a, char const * p)
589 {
590         BOOST_ASSERT(p);
591
592         if (a.empty() || !*p)
593                 return a;
594
595         string::size_type r = a.find_last_not_of(p);
596         string::size_type l = a.find_first_not_of(p);
597
598         // Is this the minimal test? (lgb)
599         if (r == string::npos && l == string::npos)
600                 return string();
601
602         return a.substr(l, r - l + 1);
603 }
604
605
606 string const rtrim(string const & a, char const * p)
607 {
608         BOOST_ASSERT(p);
609
610         if (a.empty() || !*p)
611                 return a;
612
613         string::size_type r = a.find_last_not_of(p);
614
615         // Is this test really needed? (Lgb)
616         if (r == string::npos)
617                 return string();
618
619         return a.substr(0, r + 1);
620 }
621
622
623 docstring const rtrim(docstring const & a, char const * p)
624 {
625         BOOST_ASSERT(p);
626
627         if (a.empty() || !*p)
628                 return a;
629
630         docstring::size_type r = a.find_last_not_of(from_ascii(p));
631
632         // Is this test really needed? (Lgb)
633         if (r == docstring::npos)
634                 return docstring();
635
636         return a.substr(0, r + 1);
637 }
638
639
640 string const ltrim(string const & a, char const * p)
641 {
642         BOOST_ASSERT(p);
643         if (a.empty() || !*p)
644                 return a;
645         string::size_type l = a.find_first_not_of(p);
646         if (l == string::npos)
647                 return string();
648         return a.substr(l, string::npos);
649 }
650
651
652 docstring const ltrim(docstring const & a, char const * p)
653 {
654         BOOST_ASSERT(p);
655         if (a.empty() || !*p)
656                 return a;
657         size_t l = a.find_first_not_of(from_ascii(p));
658         if (l == docstring::npos)
659                 return docstring();
660         return a.substr(l, docstring::npos);
661 }
662
663 namespace {
664
665 template<typename String, typename Char> inline
666 String const doSplit(String const & a, String & piece, Char delim)
667 {
668         String tmp;
669         typename String::size_type i = a.find(delim);
670         if (i == a.length() - 1) {
671                 piece = a.substr(0, i);
672         } else if (i != String::npos) {
673                 piece = a.substr(0, i);
674                 tmp = a.substr(i + 1);
675         } else if (i == 0) {
676                 piece.erase();
677                 tmp = a.substr(i + 1);
678         } else {
679                 piece = a;
680         }
681         return tmp;
682 }
683
684 }
685
686
687 string const split(string const & a, string & piece, char delim)
688 {
689         return doSplit(a, piece, delim);
690 }
691
692
693 docstring const split(docstring const & a, docstring & piece, char_type delim)
694 {
695         return doSplit(a, piece, delim);
696 }
697
698
699 string const split(string const & a, char delim)
700 {
701         string tmp;
702         string::size_type i = a.find(delim);
703         if (i != string::npos) // found delim
704                 tmp = a.substr(i + 1);
705         return tmp;
706 }
707
708
709 // ale970521
710 string const rsplit(string const & a, string & piece, char delim)
711 {
712         string tmp;
713         string::size_type i = a.rfind(delim);
714         if (i != string::npos) { // delimiter was found
715                 piece = a.substr(0, i);
716                 tmp = a.substr(i + 1);
717         } else { // delimiter was not found
718                 piece.erase();
719         }
720         return tmp;
721 }
722
723
724 docstring const escape(docstring const & lab)
725 {
726         char_type hexdigit[16] = { '0', '1', '2', '3', '4', '5', '6', '7',
727                                    '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
728         docstring enc;
729         for (docstring::size_type i = 0; i < lab.length(); ++i) {
730                 char_type c = lab[i];
731                 if (c >= 128 || c == '=' || c == '%') {
732                         // Although char_type is a 32 bit type we know that
733                         // UCS4 occupies only 21 bits, so we don't need to
734                         // encode bigger values. Test for 2^24 because we
735                         // can encode that with the 6 hex digits that are
736                         // needed for 21 bits anyway.
737                         BOOST_ASSERT(c < (1 << 24));
738                         enc += '=';
739                         enc += hexdigit[(c>>20) & 15];
740                         enc += hexdigit[(c>>16) & 15];
741                         enc += hexdigit[(c>>12) & 15];
742                         enc += hexdigit[(c>> 8) & 15];
743                         enc += hexdigit[(c>> 4) & 15];
744                         enc += hexdigit[ c      & 15];
745                 } else {
746                         enc += c;
747                 }
748         }
749         return enc;
750 }
751
752
753 namespace {
754
755 template<typename String> vector<String> const
756 getVectorFromStringT(String const & str, String const & delim)
757 {
758 // Lars would like this code to go, but for now his replacement (below)
759 // doesn't fullfil the same function. I have, therefore, reactivated the
760 // old code for now. Angus 11 Nov 2002.
761 #if 1
762         vector<String> vec;
763         if (str.empty())
764                 return vec;
765         String keys = rtrim(str);
766         for(;;) {
767                 typename String::size_type const idx = keys.find(delim);
768                 if (idx == String::npos) {
769                         vec.push_back(ltrim(keys));
770                         break;
771                 }
772                 String const key = trim(keys.substr(0, idx));
773                 if (!key.empty())
774                         vec.push_back(key);
775                 typename String::size_type const start = idx + delim.size();
776                 keys = keys.substr(start);
777         }
778         return vec;
779 #else
780         typedef boost::char_separator<typename String::value_type> Separator;
781         typedef boost::tokenizer<Separator, typename String::const_iterator, String> Tokenizer;
782         Separator sep(delim.c_str());
783         Tokenizer tokens(str, sep);
784         return vector<String>(tokens.begin(), tokens.end());
785 #endif
786 }
787
788 }
789
790
791 vector<string> const getVectorFromString(string const & str,
792                                          string const & delim)
793 {
794         return getVectorFromStringT<string>(str, delim);
795 }
796
797
798 vector<docstring> const getVectorFromString(docstring const & str,
799                                             docstring const & delim)
800 {
801         return getVectorFromStringT<docstring>(str, delim);
802 }
803
804
805 // the same vice versa
806 string const getStringFromVector(vector<string> const & vec,
807                                  string const & delim)
808 {
809         string str;
810         int i = 0;
811         for (vector<string>::const_iterator it = vec.begin();
812              it != vec.end(); ++it) {
813                 string item = trim(*it);
814                 if (item.empty())
815                         continue;
816                 if (i++ > 0)
817                         str += delim;
818                 str += item;
819         }
820         return str;
821 }
822
823
824 int findToken(char const * const str[], string const & search_token)
825 {
826         int i = 0;
827
828         while (str[i][0] && str[i] != search_token)
829                 ++i;
830         if (!str[i][0])
831                 i = -1;
832         return i;
833 }
834
835
836 docstring const externalLineEnding(docstring const & str)
837 {
838 #if defined(__APPLE__)
839         // The MAC clipboard uses \r for lineendings, and we use \n
840         return subst(str, '\n', '\r');
841 #elif defined (_WIN32) || (defined (__CYGWIN__) && defined (X_DISPLAY_MISSING))
842         // Windows clipboard uses \r\n for lineendings, and we use \n
843         return subst(str, lyx::from_ascii("\n"), lyx::from_ascii("\r\n"));
844 #else
845         return str;
846 #endif
847 }
848
849
850 docstring const internalLineEnding(docstring const & str)
851 {
852         docstring const s = subst(str,
853                         lyx::from_ascii("\r\n"), lyx::from_ascii("\n"));
854         return subst(s, '\r', '\n');
855 }
856
857
858 #ifndef I_AM_NOT_AFRAID_OF_HEADER_LIBRARIES
859 #if USE_BOOST_FORMAT
860
861 template<>
862 docstring bformat(docstring const & fmt, int arg1)
863 {
864         return (boost::basic_format<char_type>(fmt) % arg1).str();
865 }
866
867
868 template<>
869 docstring bformat(docstring const & fmt, long arg1)
870 {
871         return (boost::basic_format<char_type>(fmt) % arg1).str();
872 }
873
874
875 template<>
876 docstring bformat(docstring const & fmt, unsigned int arg1)
877 {
878         return (boost::basic_format<char_type>(fmt) % arg1).str();
879 }
880
881
882 template<>
883 docstring bformat<docstring>(docstring const & fmt, docstring arg1)
884 {
885         return (boost::basic_format<char_type>(fmt) % arg1).str();
886 }
887
888
889 template<>
890 docstring bformat(docstring const & fmt, char * arg1)
891 {
892         return (boost::basic_format<char_type>(fmt) % arg1).str();
893 }
894
895
896 template<>
897 docstring bformat(docstring const & fmt, int arg1, int arg2)
898 {
899         return (boost::basic_format<char_type>(fmt) % arg1 % arg2).str();
900 }
901
902
903 template<>
904 docstring bformat(docstring const & fmt, docstring arg1, docstring arg2)
905 {
906         return (boost::basic_format<char_type>(fmt) % arg1 % arg2).str();
907 }
908
909
910 template<>
911 docstring bformat(docstring const & fmt, char const * arg1, docstring arg2)
912 {
913         return (boost::basic_format<char_type>(fmt) % arg1 % arg2).str();
914 }
915
916
917 template<>
918 docstring bformat(docstring const & fmt, docstring arg1, docstring arg2, docstring arg3)
919 {
920         return (boost::basic_format<char_type>(fmt) % arg1 % arg2 % arg3).str();
921 }
922
923
924 template<>
925 docstring bformat(docstring const & fmt,
926                docstring arg1, docstring arg2, docstring arg3, docstring arg4)
927 {
928         return (boost::basic_format<char_type>(fmt) % arg1 % arg2 % arg3 % arg4).str();
929 }
930
931 #else
932
933 template<>
934 docstring bformat(docstring const & fmt, int arg1)
935 {
936         BOOST_ASSERT(contains(fmt, lyx::from_ascii("%1$d")));
937         docstring const str = subst(fmt, lyx::from_ascii("%1$d"), convert<docstring>(arg1));
938         return subst(str, lyx::from_ascii("%%"), lyx::from_ascii("%"));
939 }
940
941
942 template<>
943 docstring bformat(docstring const & fmt, long arg1)
944 {
945         BOOST_ASSERT(contains(fmt, lyx::from_ascii("%1$d")));
946         docstring const str = subst(fmt, lyx::from_ascii("%1$d"), convert<docstring>(arg1));
947         return subst(str, lyx::from_ascii("%%"), lyx::from_ascii("%"));
948 }
949
950
951 template<>
952 docstring bformat(docstring const & fmt, unsigned int arg1)
953 {
954         BOOST_ASSERT(contains(fmt, lyx::from_ascii("%1$d")));
955         docstring const str = subst(fmt, lyx::from_ascii("%1$d"), convert<docstring>(arg1));
956         return subst(str, lyx::from_ascii("%%"), lyx::from_ascii("%"));
957 }
958
959
960 template<>
961 docstring bformat(docstring const & fmt, docstring arg1)
962 {
963         BOOST_ASSERT(contains(fmt, lyx::from_ascii("%1$s")));
964         docstring const str = subst(fmt, lyx::from_ascii("%1$s"), arg1);
965         return subst(str, lyx::from_ascii("%%"), lyx::from_ascii("%"));
966 }
967
968
969 template<>
970 docstring bformat(docstring const & fmt, char * arg1)
971 {
972         BOOST_ASSERT(contains(fmt, lyx::from_ascii("%1$s")));
973         docstring const str = subst(fmt, lyx::from_ascii("%1$s"), lyx::from_ascii(arg1));
974         return subst(str, lyx::from_ascii("%%"), lyx::from_ascii("%"));
975 }
976
977
978 template<>
979 docstring bformat(docstring const & fmt, docstring arg1, docstring arg2)
980 {
981         BOOST_ASSERT(contains(fmt, lyx::from_ascii("%1$s")));
982         BOOST_ASSERT(contains(fmt, lyx::from_ascii("%2$s")));
983         docstring str = subst(fmt, lyx::from_ascii("%1$s"), arg1);
984         str = subst(str, lyx::from_ascii("%2$s"), arg2);
985         return subst(str, lyx::from_ascii("%%"), lyx::from_ascii("%"));
986 }
987
988
989 template<>
990 docstring bformat(docstring const & fmt, char const * arg1, docstring arg2)
991 {
992         BOOST_ASSERT(contains(fmt, lyx::from_ascii("%1$s")));
993         BOOST_ASSERT(contains(fmt, lyx::from_ascii("%2$s")));
994         docstring str = subst(fmt, lyx::from_ascii("%1$s"), lyx::from_ascii(arg1));
995         str = subst(fmt, lyx::from_ascii("%2$s"), arg2);
996         return subst(str, lyx::from_ascii("%%"), lyx::from_ascii("%"));
997 }
998
999
1000 template<>
1001 docstring bformat(docstring const & fmt, int arg1, int arg2)
1002 {
1003         BOOST_ASSERT(contains(fmt, lyx::from_ascii("%1$d")));
1004         BOOST_ASSERT(contains(fmt, lyx::from_ascii("%2$d")));
1005         docstring str = subst(fmt, lyx::from_ascii("%1$d"), convert<docstring>(arg1));
1006         str = subst(str, lyx::from_ascii("%2$d"), convert<docstring>(arg2));
1007         return subst(str, lyx::from_ascii("%%"), lyx::from_ascii("%"));
1008 }
1009
1010
1011 template<>
1012 docstring bformat(docstring const & fmt, docstring arg1, docstring arg2, docstring arg3)
1013 {
1014         BOOST_ASSERT(contains(fmt, lyx::from_ascii("%1$s")));
1015         BOOST_ASSERT(contains(fmt, lyx::from_ascii("%2$s")));
1016         BOOST_ASSERT(contains(fmt, lyx::from_ascii("%3$s")));
1017         docstring str = subst(fmt, lyx::from_ascii("%1$s"), arg1);
1018         str = subst(str, lyx::from_ascii("%2$s"), arg2);
1019         str = subst(str, lyx::from_ascii("%3$s"), arg3);
1020         return subst(str, lyx::from_ascii("%%"), lyx::from_ascii("%"));
1021 }
1022
1023
1024 template<>
1025 docstring bformat(docstring const & fmt,
1026                docstring arg1, docstring arg2, docstring arg3, docstring arg4)
1027 {
1028         BOOST_ASSERT(contains(fmt, lyx::from_ascii("%1$s")));
1029         BOOST_ASSERT(contains(fmt, lyx::from_ascii("%2$s")));
1030         BOOST_ASSERT(contains(fmt, lyx::from_ascii("%3$s")));
1031         BOOST_ASSERT(contains(fmt, lyx::from_ascii("%4$s")));
1032         docstring str = subst(fmt, lyx::from_ascii("%1$s"), arg1);
1033         str = subst(str, lyx::from_ascii("%2$s"), arg2);
1034         str = subst(str, lyx::from_ascii("%3$s"), arg3);
1035         str = subst(str, lyx::from_ascii("%4$s"), arg4);
1036         return subst(str, lyx::from_ascii("%%"), lyx::from_ascii("%"));
1037 }
1038
1039 #endif
1040 #endif
1041
1042 } // namespace support
1043 } // namespace lyx