]> git.lyx.org Git - lyx.git/blobdiff - src/support/lstrings.C
fixes because of SUN CC warnings, bmtable now compiled with C compilator, countChar...
[lyx.git] / src / support / lstrings.C
index 18f452dcb8805b97d15d4edb5838efaa30190a95..06875d2159097c8322a1233b83991582abdf5471 100644 (file)
@@ -7,10 +7,54 @@
 
 #include "LString.h"
 #include "lstrings.h"
-
-//#include "debug.h"
+#include "LRegex.h"
 
 using std::count;
+using std::transform;
+
+int compare_no_case(string const & s, string const & s2)
+{
+       // ANSI C
+       string::const_iterator p = s.begin();
+       string::const_iterator p2 = s2.begin();
+
+       while (p != s.end() && p2 != s2.end()) {
+               int const lc1 = tolower(*p);
+               int const lc2 = 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)
+{
+//#warning verify this func please
+       string::const_iterator p = s.begin();
+       string::const_iterator p2 = s2.begin();
+       unsigned int i = 0;
+       while (i < len && p != s.end() && p2 != s2.end()) {
+               int const lc1 = tolower(*p);
+               int const lc2 = tolower(*p2);
+               if (lc1 != lc2)
+                       return (lc1 < lc2) ? -1 : 1;
+               ++i;
+               ++p;
+               ++p2;
+       }
+       if (s.size() == s2.size())
+               return 0;
+       if (s.size() < s2.size())
+               return -1;
+       return 1;
+}
 
 bool isStrInt(string const & str)
 {
@@ -29,7 +73,7 @@ bool isStrInt(string const & str)
 }
 
 
-int  LStr2Int(string const & str)
+int  strToInt(string const & str)
 {
        string tmpstr;
 
@@ -45,29 +89,38 @@ int  LStr2Int(string const & str)
 
 string lowercase(string const & a)
 {
-       string tmp;
-       string::const_iterator cit = a.begin();
-       for(; cit != a.end(); ++cit) {
-               tmp += char(tolower(*cit));
-       }
+       string tmp(a);
+       transform(tmp.begin(), tmp.end(), tmp.begin(), tolower);
+       return tmp;
+}
+
+
+string uppercase(string const & a)
+{
+       string tmp(a);
+       transform(tmp.begin(), tmp.end(), tmp.begin(), toupper);
        return tmp;
 }
 
 
 string tostr(long i)
 {
+       // should use string stream
        char str[30];
        sprintf(str, "%ld", i);
        return string(str);
 }
 
+
 string tostr(unsigned long i)
 {
+       // should use string stream
        char str[30];
        sprintf(str, "%lu", i);
        return string(str);
 }
 
+
 string tostr(void * v)
 {
        return tostr(long(v));
@@ -79,30 +132,28 @@ string tostr(int i)
        return tostr(long(i));
 }
 
+
 string tostr(unsigned int ui)
 {
        return tostr(long(ui));
 }
 
+
 string tostr(char c)
 {
-  return tostr(long(c));
+       return string(1, c);
 }
 
+
 string tostr(bool b)
 {
        return b ? "true" : "false";
 }
 
-#if 0
-string tostr(float f)
-{
-       return tostr(double(f));
-}
-#endif
 
 string tostr(double d)
 {
+       // should use string stream
        char tmp[40];
        sprintf(tmp, "%f", d);
        return string(tmp);
@@ -122,7 +173,7 @@ bool prefixIs(string const & a, char const * pre)
 bool suffixIs(string const & a, char c)
 {
        if (a.empty()) return false;
-       return a[a.length()-1] == c;
+       return a[a.length() - 1] == c;
 }
 
 
@@ -167,11 +218,15 @@ bool contains(char const * a, char const * b)
 }
 
 
-int countChar(string const & a, char const c)
+unsigned int countChar(string const & a, char const 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
 }
 
 
@@ -209,7 +264,7 @@ int tokenPos(string const & a, char delim, string const & tok)
 
        while (!str.empty()) {
                str = split(str, tmptok, delim);
-               if (tok==tmptok)
+               if (tok == tmptok)
                        return i;
                ++i;
        }
@@ -219,62 +274,16 @@ int tokenPos(string const & a, char delim, string const & tok)
 
 bool regexMatch(string const & a, string const & pattern)
 {
-       if (pattern.empty())
-               return true;
-       if (a.empty())
-               return false;
-       
-       string::size_type si=0, pi=0;
-       string::size_type const sl = a.length();
-       string::size_type const pl = pattern.length();  
-
-       while (si < sl && pi < pl) {
-               if (pattern[pi]=='*') {
-                       // Skip all consequtive *s
-                       while (pattern[pi] == '*') {
-                               ++pi;
-                               if (pi == pl)
-                                       return true;
-                       }
-
-                       // Get next chunk of pattern to match
-                       string chunk;
-                       string temp =
-                               split(pattern.substr(pi, pl-1), chunk, '*');
-
-                       if (!chunk.empty() && pattern[pl-1] == '*' && 
-                           temp.empty())
-                               temp = '*';
-
-                       if (temp.empty()) {
-                               // Last chunk, see if tail matches
-                               if (sl < chunk.length()) {
-                                       return false;
-                               }
-                               temp = a.substr(sl - chunk.length(), sl - 1);
-                               return temp == chunk;
-                       } else {
-                               // Middle chunk, see if we can find a match
-                               bool match = false;
-                               while (!match && si<sl) {
-                                       temp = a.substr(si, sl - 1);
-                                       match = prefixIs(temp, chunk.c_str());
-                                       ++si;
-                               };
-                               if (!match)
-                                       return false;
-                               si += chunk.length()-1;
-                               pi += chunk.length();
-                               if (si==sl && pi==pl-1)
-                                       return true;
-                       }
-               } else if (a[si++] != pattern[pi++]) {
-                       return false;
-               }
-       }
-       if (pi < pl || si < sl)
-               return false;   
-       return true;
+       // We massage the pattern a bit so that the usual
+       // shell pattern we all are used to will work.
+       // One nice thing about using a real regex is that
+       // things like "*.*[^~]" will work also.
+       // build the regex string.
+       string regex(pattern);
+       regex = subst(regex, ".", "\\.");
+       regex = subst(regex, "*", ".*");
+       LRegex reg(regex);
+       return reg.exact_match(a);
 }
 
 
@@ -290,7 +299,7 @@ string subst(string const & a, char oldchar, char newchar)
 
 
 string subst(string const & a,
-             char const * oldstr, string const & newstr)
+            char const * oldstr, string const & newstr)
 {
        string lstr(a);
        string::size_type i = 0;
@@ -313,7 +322,7 @@ string strip(string const & a, char const c)
        if (i != string::npos) 
                tmp.erase(i + 1, string::npos);
        else
-               tmp.erase(); // only c in the whole string
+               tmp.clear(); // only c in the whole string
        return tmp;
 }
 
@@ -350,7 +359,7 @@ string split(string const & a, string & piece, char delim)
                piece = a.substr(0, i);
                tmp = a.substr(i + 1);
        } else if (i == 0) {
-               piece.erase();
+               piece.clear();
                tmp = a.substr(i + 1);
        } else {
                piece = a;
@@ -378,7 +387,7 @@ string rsplit(string const & a, string & piece, char delim)
                piece = a.substr(0, i);
                tmp = a.substr(i + 1);
        } else { // delimter was not found
-               piece.erase();
+               piece.clear();
        }
        return tmp;
 }