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