]> git.lyx.org Git - lyx.git/blobdiff - src/support/lstrings.C
another safety belt
[lyx.git] / src / support / lstrings.C
index d4047936bd226729d2cb1ecc9809af9c074104e6..b3d87cedaa21332d7b497a7c7ee8f77e2eb5502a 100644 (file)
@@ -1,12 +1,13 @@
-/* This file is part of
- * ====================================================== 
- * 
- *           LyX, The Document Processor
- *        
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
+/**
+ * \file lstrings.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * ====================================================== */
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
+ *
+ * Full author contact details are available in file CREDITS
+ */
 
 #include <config.h>
 
 #pragma implementation
 #endif
 
+#include "LString.h"
+#include "lstrings.h"
+#include "LAssert.h"
+#include "debug.h"
+
+#include <boost/regex.hpp>
+#include <boost/tokenizer.hpp>
+
 #include <algorithm>
 
 #include <cctype>
 #include <cstdlib>
 
-#include "LString.h"
-#include "lstrings.h"
-#include "LRegex.h"
-#include "LAssert.h"
-
 using std::count;
 using std::transform;
+using std::vector;
 
 #ifndef CXX_GLOBAL_CSTD
+using std::atof;
+using std::isdigit;
+using std::strlen;
 using std::tolower;
 using std::toupper;
-using std::strlen;
 #endif
 
 
@@ -56,6 +63,37 @@ int compare_no_case(string const & s, string const & s2)
 }
 
 
+namespace {
+       int ascii_tolower(int c) {
+               if (c >= 'A' && c <= 'Z')
+                       return c - 'A' + 'a';
+               return c;
+       }
+}
+
+
+int compare_ascii_no_case(string const & s, string const & s2)
+{
+       string::const_iterator p = s.begin();
+       string::const_iterator p2 = s2.begin();
+
+       while (p != s.end() && p2 != s2.end()) {
+               int const lc1 = ascii_tolower(*p);
+               int const lc2 = ascii_tolower(*p2);
+               if (lc1 != lc2)
+                       return (lc1 < lc2) ? -1 : 1;
+               ++p;
+               ++p2;
+       }
+
+       if (s.size() == s2.size())
+               return 0;
+       if (s.size() < s2.size())
+               return -1;
+       return 1;
+}
+
+
 int compare_no_case(string const & s, string const & s2, unsigned int len)
 {
        string::const_iterator p = s.begin();
@@ -82,11 +120,11 @@ int compare_no_case(string const & s, string const & s2, unsigned int len)
 bool isStrInt(string const & str)
 {
        if (str.empty()) return false;
-       
+
        // Remove leading and trailing white space chars.
-       string const tmpstr = frontStrip(strip(str, ' '), ' ');
+       string const tmpstr = trim(str);
        if (tmpstr.empty()) return false;
-       
+
        string::const_iterator cit = tmpstr.begin();
        if ((*cit) == '-') ++cit;
        string::const_iterator end = tmpstr.end();
@@ -100,11 +138,11 @@ bool isStrInt(string const & str)
 bool isStrUnsignedInt(string const & str)
 {
        if (str.empty()) return false;
-       
+
        // Remove leading and trailing white space chars.
-       string const tmpstr = frontStrip(strip(str, ' '), ' ');
+       string const tmpstr = trim(str);
        if (tmpstr.empty()) return false;
-       
+
        string::const_iterator cit = tmpstr.begin();
        string::const_iterator end = tmpstr.end();
        for (; cit != end; ++cit) {
@@ -118,7 +156,7 @@ int strToInt(string const & str)
 {
        if (isStrInt(str)) {
                // Remove leading and trailing white space chars.
-               string const tmpstr = frontStrip(strip(str, ' '), ' ');
+               string const tmpstr = trim(str);
                // Do the conversion proper.
                return lyx::atoi(tmpstr);
        } else {
@@ -131,7 +169,7 @@ unsigned int strToUnsignedInt(string const & str)
 {
        if (isStrUnsignedInt(str)) {
                // Remove leading and trailing white space chars.
-               string const tmpstr = frontStrip(strip(str, ' '), ' ');
+               string const tmpstr = trim(str);
                // Do the conversion proper.
                return lyx::atoi(tmpstr);
        } else {
@@ -143,9 +181,9 @@ unsigned int strToUnsignedInt(string const & str)
 bool isStrDbl(string const & str)
 {
        if (str.empty()) return false;
-       
+
        // Remove leading and trailing white space chars.
-       string const tmpstr = frontStrip(strip(str, ' '), ' ');
+       string const tmpstr = trim(str);
        if (tmpstr.empty()) return false;
        //      if (1 < tmpstr.count('.')) return false;
 
@@ -174,7 +212,7 @@ double strToDbl(string const & str)
 {
        if (isStrDbl(str)) {
                // Remove leading and trailing white space chars.
-               string const tmpstr = frontStrip(strip(str, ' '), ' ');
+               string const tmpstr = trim(str);
                // Do the conversion proper.
                return ::atof(tmpstr.c_str());
        } else {
@@ -183,15 +221,15 @@ double strToDbl(string const & str)
 }
 
 
-char lowercase(char c) 
-{ 
-       return char( tolower(c) ); 
+char lowercase(char c)
+{
+       return char(tolower(c));
 }
 
 
-char uppercase(char c) 
-{ 
-       return char( toupper(c) ); 
+char uppercase(char c)
+{
+       return char(toupper(c));
 }
 
 
@@ -205,13 +243,19 @@ struct local_lowercase {
                return tolower(c);
        }
 };
-       
+
 struct local_uppercase {
        char operator()(char c) const {
                return toupper(c);
        }
 };
 
+struct local_ascii_lowercase {
+       char operator()(char c) const {
+               return ascii_tolower(c);
+       }
+};
+
 } // end of anon namespace
 
 string const lowercase(string const & a)
@@ -229,13 +273,22 @@ string const uppercase(string const & a)
 }
 
 
+string const ascii_lowercase(string const & a)
+{
+       string tmp(a);
+       transform(tmp.begin(), tmp.end(), tmp.begin(),
+                 local_ascii_lowercase());
+       return tmp;
+}
+
+
 bool prefixIs(string const & a, char const * pre)
 {
        lyx::Assert(pre);
-       
+
        size_t const l = strlen(pre);
        string::size_type const alen = a.length();
-       
+
        if (l > alen || a.empty())
                return false;
        else {
@@ -257,7 +310,7 @@ bool prefixIs(string const & a, string const & pre)
 {
        string::size_type const prelen = pre.length();
        string::size_type const alen = a.length();
-       
+
        if (prelen > alen || a.empty())
                return false;
        else {
@@ -280,10 +333,10 @@ bool suffixIs(string const & a, char c)
 bool suffixIs(string const & a, char const * suf)
 {
        lyx::Assert(suf);
-       
+
        size_t const suflen = strlen(suf);
        string::size_type const alen = a.length();
-       
+
        if (suflen > alen)
                return false;
        else {
@@ -306,7 +359,7 @@ bool suffixIs(string const & a, string const & suf)
 {
        string::size_type const suflen = suf.length();
        string::size_type const alen = a.length();
-       
+
        if (suflen > alen) {
                return false;
        } else {
@@ -320,22 +373,6 @@ bool suffixIs(string const & a, string const & suf)
 }
 
 
-bool contains(char const * a, string const & b)
-{
-       lyx::Assert(a);
-       string const at(a);
-       return contains(at, b);
-}
-
-
-bool contains(string const & a, char const * b)
-{
-       lyx::Assert(b);
-       string const bt(b);
-       return contains(a, bt);
-}
-
-
 bool contains(string const & a, string const & b)
 {
        if (a.empty())
@@ -352,63 +389,18 @@ bool contains(string const & a, char b)
 }
 
 
-bool contains(char const * a, char const * b)
-{
-       lyx::Assert(a && b);
-       string const at(a);
-       string const bt(b);
-       return contains(at, bt);
-}
-
-
-bool containsOnly(string const & s, char const * cset)
-{
-       lyx::Assert(cset);
-       
-       return s.find_first_not_of(cset) == string::npos;
-}
-
-
 bool containsOnly(string const & s, string const & cset)
 {
        return s.find_first_not_of(cset) == string::npos;
 }
 
 
-bool containsOnly(char const * s, char const * cset)
-{
-       lyx::Assert(s && cset);
-       
-       return string(s).find_first_not_of(cset) == string::npos;
-}
-
-
-bool containsOnly(char const * s, string const & cset)
-{
-       lyx::Assert(s);
-       
-       return string(s).find_first_not_of(cset) == string::npos;
-}
-
-
-string::size_type countChar(string const & a, char c)
-{
-#ifdef HAVE_STD_COUNT
-       return count(a.begin(), a.end(), c);
-#else
-       unsigned int n = 0;
-       count(a.begin(), a.end(), c, n);
-       return n;
-#endif
-}
-
-
 // ale970405+lasgoutt-970425
 // rewritten to use new string (Lgb)
 string const token(string const & a, char delim, int n)
 {
        if (a.empty()) return string();
-       
+
        string::size_type k = 0;
        string::size_type i = 0;
 
@@ -455,8 +447,8 @@ bool regexMatch(string const & a, string const & pattern)
        string regex(pattern);
        regex = subst(regex, ".", "\\.");
        regex = subst(regex, "*", ".*");
-       LRegex reg(regex);
-       return reg.exact_match(a);
+       boost::regex reg(STRCONV(regex));
+       return boost::regex_match(STRCONV(a), reg);
 }
 
 
@@ -476,11 +468,11 @@ string const subst(string const & a,
                   char const * oldstr, string const & newstr)
 {
        lyx::Assert(oldstr);
-       
+
        string lstr(a);
        string::size_type i = 0;
        string::size_type olen = strlen(oldstr);
-       while((i = lstr.find(oldstr, i)) != string::npos) {
+       while ((i = lstr.find(oldstr, i)) != string::npos) {
                lstr.replace(i, olen, newstr);
                i += newstr.length(); // We need to be sure that we dont
                // use the same i over and over again.
@@ -495,7 +487,7 @@ string const subst(string const & a,
        string lstr(a);
        string::size_type i = 0;
        string::size_type const olen = oldstr.length();
-       while((i = lstr.find(oldstr, i)) != string::npos) {
+       while ((i = lstr.find(oldstr, i)) != string::npos) {
                lstr.replace(i, olen, newstr);
                i += newstr.length(); // We need to be sure that we dont
                // use the same i over and over again.
@@ -504,48 +496,54 @@ string const subst(string const & a,
 }
 
 
-string const strip(string const & a, char c)
+string const trim(string const & a, char const * p)
 {
-       if (a.empty()) return a;
-       string tmp(a);
-       string::size_type i = tmp.find_last_not_of(c);
-       if (i == a.length() - 1) return tmp; // no c's at end of a
-       if (i != string::npos) 
-               tmp.erase(i + 1, string::npos);
-#if !defined(USE_INCLUDED_STRING) && !defined(STD_STRING_IS_GOOD)
-       /// Needed for broken string::find_last_not_of
-       else if (tmp[0] != c) {
-               if (a.length() == 1) return tmp;
-               tmp.erase(1, string::npos);
-       }
-#endif
-       else
-               tmp.erase(); // only c in the whole string
-       return tmp;
+       lyx::Assert(p);
+
+       if (a.empty() || !*p)
+               return a;
+
+       string::size_type r = a.find_last_not_of(p);
+       string::size_type l = a.find_first_not_of(p);
+
+       // Is this the minimal test? (lgb)
+       if (r == string::npos && l == string::npos)
+               return string();
+
+       return a.substr(l, r - l + 1);
 }
 
 
-string const frontStrip(string const & a, char const * p)
+string const rtrim(string const & a, char const * p)
 {
        lyx::Assert(p);
-       
-       if (a.empty() || !*p) return a;
-       string tmp(a);
-       string::size_type i = tmp.find_first_not_of(p);
-       if (i > 0)
-               tmp.erase(0, i);
-       return tmp;
+
+       if (a.empty() || !*p)
+               return a;
+
+       string::size_type r = a.find_last_not_of(p);
+
+       // Is this test really needed? (Lgb)
+       if (r == string::npos)
+               return string();
+
+       return a.substr(0, r + 1);
 }
 
 
-string const frontStrip(string const & a, char c)
+string const ltrim(string const & a, char const * p)
 {
-       if (a.empty()) return a;
-       string tmp(a);
-       string::size_type i = tmp.find_first_not_of(c);
-       if (i > 0)
-               tmp.erase(0, i);
-       return tmp;
+       lyx::Assert(p);
+
+       if (a.empty() || !*p)
+               return a;
+
+       string::size_type l = a.find_first_not_of(p);
+
+       if (l == string::npos)
+               return string();
+
+       return a.substr(l, string::npos);
 }
 
 
@@ -591,3 +589,88 @@ string const rsplit(string const & a, string & piece, char delim)
        }
        return tmp;
 }
+
+
+// This function escapes 8-bit characters and other problematic
+// characters that cause problems in latex labels.
+string const escape(string const & lab)
+{
+       char hexdigit[16] = { '0', '1', '2', '3', '4', '5', '6', '7',
+                             '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
+       string enc;
+       for (string::size_type i = 0; i < lab.length(); ++i) {
+               unsigned char c= lab[i];
+               if (c >= 128 || c == '=' || c == '%') {
+                       enc += '=';
+                       enc += hexdigit[c>>4];
+                       enc += hexdigit[c & 15];
+               } else {
+                       enc += c;
+               }
+       }
+       return enc;
+}
+
+
+/// gives a vector of stringparts which have the delimiter delim
+vector<string> const getVectorFromString(string const & str,
+                                        string const & delim)
+{
+// Lars would like this code to go, but for now his replacement (below)
+// doesn't fullfil the same function. I have, therefore, reactivated the
+// old code for now. Angus 11 Nov 2002.
+#if 1
+       vector<string> vec;
+       if (str.empty())
+               return vec;
+       string keys(rtrim(str));
+       for(;;) {
+               string::size_type const idx = keys.find(delim);
+               if (idx == string::npos) {
+                       vec.push_back(ltrim(keys));
+                       break;
+               }
+               string const key = trim(keys.substr(0, idx));
+               if (!key.empty())
+                       vec.push_back(key);
+               string::size_type const start = idx + delim.size();
+               keys = keys.substr(start);
+       }
+       return vec;
+#else
+       boost::char_separator<char> sep(delim.c_str());
+       boost::tokenizer<boost::char_separator<char> > tokens(str, sep);
+#ifndef USE_INCLUDED_STRING
+       return vector<string>(tokens.begin(), tokens.end());
+#else
+       vector<string> vec;
+       using boost::tokenizer;
+       using boost::char_separator;
+
+       tokenizer<char_separator<char> >::iterator it = tokens.begin();
+       tokenizer<char_separator<char> >::iterator end = tokens.end();
+       for (; it != end; ++it) {
+               vec.push_back(STRCONV((*it)));
+       }
+       return vec;
+#endif
+#endif
+}
+
+
+// the same vice versa
+string const getStringFromVector(vector<string> const & vec,
+                                string const & delim)
+{
+       string str;
+       int i = 0;
+       for (vector<string>::const_iterator it = vec.begin();
+            it != vec.end(); ++it) {
+               string item = trim(*it);
+               if (item.empty()) continue;
+
+               if (i++ > 0) str += delim;
+               str += item;
+       }
+       return str;
+}