]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxstring.C
fix lyxalgo.h, dra pagebreak with text on line, change the math_deco_search a bit
[lyx.git] / src / support / lyxstring.C
index 26705bb316a2917a092e345966228259e55e33ca..3f8deedfb55a18595f9b722aced6ae17ab750b37 100644 (file)
@@ -1,12 +1,12 @@
 /* This file is part of
- * ======================================================
+ * ====================================================== 
  * 
  *           LyX, The Document Processor
  *      
- *         Copyright (C) 1995 Matthias Ettrich
- *          Copyright (C) 1995-1999 The LyX Team.
+ *         Copyright 1995 Matthias Ettrich
+ *          Copyright 1995-1999 The LyX Team.
  *
- * ======================================================*/
+ * ====================================================== */
 
 #ifdef HAVE_CONFIG_H
 #include <config.h>
@@ -31,32 +31,46 @@ using std::min;
 // in this file consult me and/or the standard to discover the
 // right behavior.
 
+// Asserts with a STD! are required by the standard.
+// Asserts with a OURS! are added by me.
+// Some asserts could still be missing and some of the existing
+// ones might be wrong or not needed.
+
 // Reference count has been checked, empty_rep removed and
 // introduced again in a similar guise. Where is empty_rep _really_
 // needed?
 
-// Insertion and replace is implemented, as far as I can see everything
-// works, but could perhaps be done smarter.
+// We are missing a couple of imporant things from the standard:
+// reverse iterators and methods taking InputIterators as paramters.
+// Also the methods returning iterators is returning the wrong value.
 
 // All the different find functions need a good look over.
 // I have so far not tested them extensively and would be
 // happy if others took the time to have a peek.
 
+// Space allocation of string.
+// I have tried to do this very simple without using any special tricks.
+// Earlier we used a fixed value to enlarge the string with this would
+// cause a lot of reallocations with large strings (especially if
+// push_back was used) and wasting space for very small strings.
+// I have now changed the allocation to use a doubling of reserved
+// space until it is large enough. So far tests show a small speed
+// increase and a noticable memory saving.
+
+// Lgb.
+
 
 ///////////////////////////////////////
 // The internal string representation
 ///////////////////////////////////////
 
 struct lyxstring::Srep {
-       ///
-       static lyxstring::size_type const xtra = 
-       static_cast<lyxstring::size_type>(8);
        /// size
-       lyxstring::size_type sz;
+       size_t sz;
        /// Reference count
-       unsigned short ref;
+       size_t ref;
        /// The total amount of data reserved for this representaion
-       lyxstring::size_type res;
+       size_t res;
        /// Data. At least 1 char for trailing null.
        lyxstring::value_type * s;
        
@@ -67,12 +81,11 @@ struct lyxstring::Srep {
        ///
        ~Srep() { delete[] s; }
        ///
-       Srep * get_own_copy()
-               {
-                       if (ref == 1) return this;
-                       --ref;
-                       return new Srep(sz, s);
-               }
+       Srep * get_own_copy() {
+               if (ref == 1) return this;
+               --ref;
+               return new Srep(sz, s);
+       }
        
        ///
        void assign(lyxstring::size_type nsz, const lyxstring::value_type * p);
@@ -101,11 +114,12 @@ private:
 
 lyxstring::Srep::Srep(lyxstring::size_type nsz, const value_type * p)
 {
-// can be called with p==0 by lyxstring::assign(const value_type *, size_type)
+       // can be called with p == 0 by
+       // lyxstring::assign(const value_type *, size_type)
 
        sz = nsz;
        ref = 1;
-       res = sz + xtra;
+       res = sz ? sz : 1;
        s = new value_type[res + 1]; // add space for terminator
        if (p && sz) {
                // if sz = 0 nothing gets copied and we have an error
@@ -122,7 +136,7 @@ lyxstring::Srep::Srep(lyxstring::size_type nsz, value_type ch)
 {
        sz = nsz;
        ref = 1;
-       res = sz + xtra;
+       res = sz ? sz : 1;
        s = new value_type[res + 1]; // add space for terminator
        memset(s, ch, sz);
        if (!ch) {
@@ -135,12 +149,13 @@ lyxstring::Srep::Srep(lyxstring::size_type nsz, value_type ch)
 
 void lyxstring::Srep::assign(lyxstring::size_type nsz, const value_type * p)
 {
-// can be called with p==0 by lyxstring::assign(const value_type *, size_type)
+       // can be called with p == 0
+       // by lyxstring::assign(const value_type *, size_type)
 
        if (res < nsz) {
                delete[] s;
                sz = nsz;
-               res = sz + xtra;
+               res = sz ? sz : 1;
                s = new value_type[res + 1]; // add space for terminator
        } else {
                sz = nsz;
@@ -161,7 +176,7 @@ void lyxstring::Srep::assign(lyxstring::size_type nsz, value_type ch)
        sz = nsz;
        if (res < nsz) {
                delete[] s;
-               res = sz + xtra;
+               res = sz ? sz : 1;
                s = new value_type[res + 1]; // add space for terminator
        }
        memset(s, ch, sz);
@@ -177,7 +192,9 @@ void lyxstring::Srep::append(lyxstring::size_type asz, const value_type * p)
 {
        register unsigned int const len = sz + asz;
        if (res < len) {
-               res = len + xtra;
+               do {
+                       res *= 2;
+               } while (res < len);
                value_type * tmp = new value_type[res + 1];
                memcpy(tmp, s, sz);
                memcpy(tmp + sz, p, asz);
@@ -196,7 +213,9 @@ void lyxstring::Srep::push_back(value_type c)
        s[sz] = c; // it is always room to put a value_type at the end
        ++sz;
        if (res < sz) {
-               res = sz + xtra;
+               do {
+                       res *= 2;
+               } while (res < sz);
                value_type * tmp = new value_type[res + 1];
                memcpy(tmp, s, sz);
                delete[] s;
@@ -206,20 +225,21 @@ void lyxstring::Srep::push_back(value_type c)
 
 
 void lyxstring::Srep::insert(lyxstring::size_type pos, const value_type * p,
-                          lyxstring::size_type n)
+                            lyxstring::size_type n)
 {
-       Assert(pos <= sz);
        if (res < n + sz) {
-               res = sz + n + xtra;
+               do {
+                       res *= 2;
+               } while (res < n + sz);
                value_type * tmp = new value_type[res + 1];
                memcpy(tmp, s, pos);
                memcpy(tmp + pos, p, n);
-               memcpy(tmp + pos + n, & s[pos], sz - pos);
+               memcpy(tmp + pos + n, &s[pos], sz - pos);
                sz += n;
                delete[] s;
                s = tmp;
        } else {
-               memmove(s + pos + n, & s[pos], sz - pos);
+               memmove(s + pos + n, &s[pos], sz - pos);
                memcpy(s + pos, p, n);
                sz += n;
        }
@@ -228,7 +248,6 @@ void lyxstring::Srep::insert(lyxstring::size_type pos, const value_type * p,
 
 void lyxstring::Srep::resize(size_type n, value_type c)
 {
-       Assert(n < npos);
        // This resets sz to res_arg
        res = min(n, npos - 2); // We keep no xtra when we resize
        value_type * tmp = new value_type[res + 1];
@@ -254,10 +273,9 @@ void lyxstring::Srep::reserve(lyxstring::size_type res_arg)
 
 
 void lyxstring::Srep::replace(lyxstring::size_type i, lyxstring::size_type n,
-                           value_type const * p, size_type n2)
+                             value_type const * p, size_type n2)
 {
-// can be called with p=0 and n2=0
-       Assert(i < sz && ((!p && !n2) || p));
+// can be called with p= 0 and n2= 0
        n = min(sz - i, n);
        sz -= n;
        if (res >= n2 + sz) {
@@ -265,7 +283,9 @@ void lyxstring::Srep::replace(lyxstring::size_type i, lyxstring::size_type n,
                memcpy(s + i, p, n2);
                sz += n2;
        } else {
-               res = sz + n2 + xtra;
+               do {
+                       res *= 2;
+               } while (res < n2 + sz);
                value_type * tmp = new value_type[res + 1];
                memcpy(tmp, s, i);
                memcpy(tmp + i, p, n2);
@@ -280,7 +300,7 @@ void lyxstring::Srep::replace(lyxstring::size_type i, lyxstring::size_type n,
 ///////////////////////////////////////
 // The lyxstring Invariant tester
 ///////////////////////////////////////
-#ifdef DEVEL_VERSION
+#ifdef ENABLE_ASSERTIONS
 
 /** Testing of the lyxstring invariant
  * By creating an object that tests the lyxstring invariant during its
@@ -330,12 +350,14 @@ lyxstringInvariant::lyxstringInvariant(lyxstring const * ls) : object(ls)
        helper();
 }
 
+
 lyxstringInvariant::~lyxstringInvariant()
 {
        helper();
        // printf("lyxstringInvariant destructor completed\n");
 }
 
+
 void lyxstringInvariant::helper() const
 {
        // Some of these tests might look pointless but they are
@@ -344,30 +366,29 @@ void lyxstringInvariant::helper() const
        // test every last little thing we *know* should be true.
        // I may have missed a test or two, so feel free to fill
        // in the gaps.  ARRae.
-       // NOTE:  Don't put TestlyxstringInvariant() in any of the
-       // lyxstring methods used below otherwise you'll get an
-       // infinite recursion and a crash.
        Assert(object);
        Assert(object->rep);
        Assert(object->rep->s);    // s is never 0
-       Assert(object->rep->res);  // always some space allocated
-       Assert(object->size() <= object->rep->res);
+       Assert(object->rep->res);  // res cannot be 0
+       Assert(object->rep->sz <= object->rep->res);
        Assert(object->rep->ref >= 1);  // its in use so it must be referenced
-       Assert(object->rep->ref < (1 << 8*sizeof(object->rep->ref)) - 1);
+       Assert(object->rep->ref < 1UL << (8UL * sizeof(object->rep->ref) - 1));
        // if it does ever == then we should be generating a new copy
        // and starting again.  (Is char always 8-bits?)
 }
 #define TestlyxstringInvariant(s) lyxstringInvariant lyxstring_invariant(s);
 #else
 #define TestlyxstringInvariant(s)
-#endif //DEVEL_VERSION
+#endif /* ENABLE_ASSERTIONS */
 
 
 ///////////////////////////////////////
 // Constructors and Deconstructors.
 ///////////////////////////////////////
 
-lyxstring::size_type const lyxstring::npos = static_cast<lyxstring::size_type>(-1);
+lyxstring::size_type const lyxstring::npos =
+static_cast<lyxstring::size_type>(-1);
+
 
 lyxstring::lyxstring()
 {
@@ -379,7 +400,7 @@ lyxstring::lyxstring()
 
 lyxstring::lyxstring(lyxstring const & x, size_type pos, size_type n)
 {
-       Assert(pos < x.rep->sz || pos == 0);
+       Assert(pos <= x.rep->sz); // STD!
        if (pos == 0 && n >= x.length()) { // this is the default
                x.rep->ref++;
                rep = x.rep;
@@ -391,7 +412,7 @@ lyxstring::lyxstring(lyxstring const & x, size_type pos, size_type n)
 
 lyxstring::lyxstring(value_type const * s, size_type n)
 {
-       Assert(s); // we don't allow null pointers
+       Assert(s && n < npos); // STD!
        static Srep empty_rep(0, "");
        if (*s && n) { // s is not empty string and n > 0
                rep = new Srep(min(strlen(s), n), s);
@@ -404,7 +425,7 @@ lyxstring::lyxstring(value_type const * s, size_type n)
 
 lyxstring::lyxstring(value_type const * s)
 {
-       Assert(s); // we don't allow null pointers
+       Assert(s); // STD!
        static Srep empty_rep(0, "");
        if (*s) { // s is not empty string
                rep = new Srep(strlen(s), s);
@@ -417,11 +438,12 @@ lyxstring::lyxstring(value_type const * s)
 
 lyxstring::lyxstring(size_type n, value_type c)
 {
+       Assert(n < npos); // STD!
        rep = new Srep(n, c);
 }
 
 
-lyxstring::lyxstring(iterator first, iterator last)
+lyxstring::lyxstring(const_iterator first, const_iterator last)
 {
        rep = new Srep(last - first, first);
 }
@@ -497,6 +519,7 @@ lyxstring::size_type lyxstring::size() const
 
 void lyxstring::resize(size_type n, value_type c)
 {
+       Assert(n <= npos); // STD!
        TestlyxstringInvariant(this);
 
        // This resets sz to res_arg
@@ -524,7 +547,7 @@ void lyxstring::reserve(size_type res_arg)
 // Assignment
 ////////////////
 
-lyxstring & lyxstring::operator=(lyxstring const & x)
+lyxstring & lyxstring::operator= (lyxstring const & x)
 {
        TestlyxstringInvariant(this);
 
@@ -532,11 +555,11 @@ lyxstring & lyxstring::operator=(lyxstring const & x)
 }
 
 
-lyxstring & lyxstring::operator=(value_type const * s)
+lyxstring & lyxstring::operator= (value_type const * s)
 {
-       Assert(s);      
+       Assert(s); // OURS!
        TestlyxstringInvariant(this);
-//     printf("lyxstring::operator=(value_type const *)\n");
+//     printf("lyxstring::operator= (value_type const *)\n");
 
        return assign(s);
 }
@@ -571,6 +594,7 @@ lyxstring & lyxstring::assign(lyxstring const & x)
 
 lyxstring & lyxstring::assign(lyxstring const & x, size_type pos, size_type n)
 {
+       Assert(pos <= x.rep->sz); // STD!
        TestlyxstringInvariant(this);
 
        return assign(x.substr(pos, n));
@@ -579,7 +603,7 @@ lyxstring & lyxstring::assign(lyxstring const & x, size_type pos, size_type n)
 
 lyxstring & lyxstring::assign(value_type const * s, size_type n)
 {
-       Assert(s);
+       Assert(s); // OURS!
        TestlyxstringInvariant(this);
 
        n = min(strlen(s), n);
@@ -595,7 +619,7 @@ lyxstring & lyxstring::assign(value_type const * s, size_type n)
 
 lyxstring & lyxstring::assign(value_type const * s)
 {
-       Assert(s);
+       Assert(s); // OURS!
        TestlyxstringInvariant(this);
 
        return assign(s, strlen(s));
@@ -612,7 +636,7 @@ lyxstring & lyxstring::assign(size_type n, value_type ch)
 }
 
 
-lyxstring & lyxstring::assign(iterator first, iterator last)
+lyxstring & lyxstring::assign(const_iterator first, const_iterator last)
 {
        TestlyxstringInvariant(this);
 
@@ -628,14 +652,15 @@ lyxstring & lyxstring::assign(iterator first, iterator last)
 
 lyxstring::const_reference lyxstring::operator[](size_type pos) const
 {
-       Assert(pos < rep->sz);
-       return rep->s[pos];
+       Assert(pos <= rep->sz); // OURS!
+       static char helper = '\0';
+       return pos == rep->sz ? helper : rep->s[pos];
 }
 
 
 lyxstring::reference lyxstring::operator[](size_type pos)
 {
-       Assert(pos < rep->sz);
+       Assert(pos < rep->sz); // OURS!
        TestlyxstringInvariant(this);
 
        rep = rep->get_own_copy();
@@ -645,14 +670,14 @@ lyxstring::reference lyxstring::operator[](size_type pos)
 
 lyxstring::const_reference lyxstring::at(size_type n) const
 {
-       Assert(n < rep->sz);
+       Assert(n < rep->sz); // STD!
        return rep->s[n];
 }
 
 
 lyxstring::reference lyxstring::at(size_type n)
 {
-       Assert(n < rep->sz);
+       Assert(n < rep->sz); // STD!
        TestlyxstringInvariant(this);
 
        rep = rep->get_own_copy();
@@ -674,7 +699,7 @@ lyxstring & lyxstring::operator+=(lyxstring const & x)
 
 lyxstring & lyxstring::operator+=(value_type const * x)
 {
-       Assert(x);
+       Assert(x); // OURS!
        TestlyxstringInvariant(this);
 
        return append(x);
@@ -712,6 +737,7 @@ lyxstring & lyxstring::append(lyxstring const & x)
 
 lyxstring & lyxstring::append(lyxstring const & x, size_type pos, size_type n)
 {
+       Assert(pos <= x.rep->sz); // STD!
        TestlyxstringInvariant(this);
 
        return append(x.substr(pos, n));
@@ -720,7 +746,7 @@ lyxstring & lyxstring::append(lyxstring const & x, size_type pos, size_type n)
 
 lyxstring & lyxstring::append(value_type const * p, size_type n)
 {
-       Assert(p);
+       Assert(p); // OURS!
        TestlyxstringInvariant(this);
 
        if (!*p || !n) return *this;
@@ -732,7 +758,7 @@ lyxstring & lyxstring::append(value_type const * p, size_type n)
 
 lyxstring & lyxstring::append(value_type const * p)
 {
-       Assert(p);
+       Assert(p); // OURS!
        TestlyxstringInvariant(this);
 
        if (!*p) return *this;
@@ -775,8 +801,9 @@ lyxstring & lyxstring::insert(size_type pos, lyxstring const & x)
 
 
 lyxstring & lyxstring::insert(size_type pos, lyxstring const & x,
-                         size_type pos2, size_type n)
+                             size_type pos2, size_type n)
 {
+       Assert(pos <= rep->sz && pos2 <= x.rep->sz); // STD!
        TestlyxstringInvariant(this);
 
        rep = rep->get_own_copy();
@@ -787,7 +814,7 @@ lyxstring & lyxstring::insert(size_type pos, lyxstring const & x,
 
 lyxstring & lyxstring::insert(size_type pos, value_type const * p, size_type n)
 {
-       Assert(p);
+       Assert(p); // OURS!
        TestlyxstringInvariant(this);
 
        if (*p && n) {
@@ -801,7 +828,7 @@ lyxstring & lyxstring::insert(size_type pos, value_type const * p, size_type n)
 
 lyxstring & lyxstring::insert(size_type pos, value_type const * p)
 {
-       Assert(p);
+       Assert(p); // OURS!
        TestlyxstringInvariant(this);
 
        if (*p) {
@@ -887,12 +914,11 @@ lyxstring::size_type lyxstring::find(lyxstring const & a, size_type i) const
 
 
 lyxstring::size_type lyxstring::find(value_type const * ptr, size_type i,
-                                size_type n) const
+                                    size_type n) const
 {
-       Assert(ptr);
-       if (!rep->sz || !*ptr) return npos;
+       Assert(ptr); // OURS!
+       if (!rep->sz || !*ptr || i >= rep->sz) return npos;
        
-       Assert(i < rep->sz);
        TestlyxstringInvariant(this);
 
        // What is "n" here? is it the number of value_types to use in ptr
@@ -900,7 +926,7 @@ lyxstring::size_type lyxstring::find(value_type const * ptr, size_type i,
        // for ptr in? For now I will assume that "n" tells the length
        // of ptr. (Lgb)
        n = min(n, strlen(ptr));
-       for (size_type t = i; length() - t >= n; ++t) {
+       for (size_type t = i; rep->sz - t >= n; ++t) {
                // search until (*this)[i] == a[0]
                if (rep->s[t] == ptr[0]) {
                        // check if the rest of the value_types match
@@ -920,7 +946,7 @@ lyxstring::size_type lyxstring::find(value_type const * ptr, size_type i,
 
 lyxstring::size_type lyxstring::find(value_type const * s, size_type i) const
 {
-       Assert(s);
+       Assert(s); // OURS!
        if (!rep->sz || i >= rep->sz) return npos;
        
        TestlyxstringInvariant(this);
@@ -932,12 +958,11 @@ lyxstring::size_type lyxstring::find(value_type const * s, size_type i) const
 
 lyxstring::size_type lyxstring::find(value_type c, size_type i) const
 {
-       if (!rep->sz) return npos;
+       if (!rep->sz || i >= rep->sz) return npos;
 
-       Assert(i < rep->sz);
        TestlyxstringInvariant(this);
 
-        for (size_type t = 0; t + i < length(); ++t) {
+        for (size_type t = 0; t + i < rep->sz; ++t) {
                if (rep->s[t + i] == c) return t + i;
        }
         return npos;
@@ -948,10 +973,10 @@ lyxstring::size_type lyxstring::rfind(lyxstring const & a, size_type i) const
 {
        TestlyxstringInvariant(this);
 
-       size_type ii = min(length() - 1, i);
+       size_type ii = min(rep->sz - 1, i);
        do {
                if (a[a.length() - 1] == rep->s[ii]) {
-                       int t = length() - 2;
+                       int t = rep->sz - 2;
                        size_type l = ii - 1;
                        for (; t >= 0; --t, --l) {
                                if (a[t] != rep->s[l]) break;
@@ -964,13 +989,13 @@ lyxstring::size_type lyxstring::rfind(lyxstring const & a, size_type i) const
 
 
 lyxstring::size_type lyxstring::rfind(value_type const * ptr, size_type i,
-                                 size_type n) const
+                                     size_type n) const
 {
-       Assert(ptr);
+       Assert(ptr); // OURS!
        TestlyxstringInvariant(this);
        if (!*ptr) return npos;
 
-       size_type ii = min(length() - 1, i);
+       size_type ii = min(rep->sz - 1, i);
        do {
                if (ptr[n - 1] == rep->s[ii]) {
                        int t = n - 2;
@@ -985,13 +1010,14 @@ lyxstring::size_type lyxstring::rfind(value_type const * ptr, size_type i,
 }
 
 
-lyxstring::size_type lyxstring::rfind(value_type const * ptr, size_type i) const
+lyxstring::size_type lyxstring::rfind(value_type const * ptr,
+                                     size_type i) const
 {
-       Assert(ptr);
+       Assert(ptr); // OURS!
        TestlyxstringInvariant(this);
        if (!*ptr) return npos;
 
-       size_type ii = min(length() - 1, i);
+       size_type ii = min(rep->sz - 1, i);
        do {
                if (ptr[strlen(ptr) - 1] == rep->s[ii]) {
                        int t = strlen(ptr) - 2;
@@ -1010,7 +1036,7 @@ lyxstring::size_type lyxstring::rfind(value_type c, size_type i) const
 {
        TestlyxstringInvariant(this);
 
-       size_type ii = min(length() - 1, i);
+       size_type ii = min(rep->sz - 1, i);
         for (size_type t = ii; t != 0; --t) {
                if (rep->s[t] == c) return t;
        }
@@ -1019,26 +1045,27 @@ lyxstring::size_type lyxstring::rfind(value_type c, size_type i) const
 
 
 lyxstring::size_type lyxstring::find_first_of(lyxstring const & a,
-                                         size_type i) const
+                                             size_type i) const
 {
-       Assert(i < rep->sz);
+       Assert(i < rep->sz); // OURS!
        TestlyxstringInvariant(this);
 
-       for (size_type t = i; t < length(); ++t) {
+       for (size_type t = i; t < rep->sz; ++t) {
                if (a.find(rep->s[t]) != npos) return t;
        }
        return npos;
 }
 
 
-lyxstring::size_type lyxstring::find_first_of(value_type const * ptr, size_type i,
-                                         size_type n) const
+lyxstring::size_type lyxstring::find_first_of(value_type const * ptr,
+                                             size_type i,
+                                             size_type n) const
 {
-       Assert(ptr && i < rep->sz);
+       Assert(ptr && i < rep->sz); // OURS!
        TestlyxstringInvariant(this);
        if (!n) return npos;
 
-       for (size_type t = i; t < length(); ++t) {
+       for (size_type t = i; t < rep->sz; ++t) {
                if(memchr(ptr, rep->s[t], n) != 0) return t;
        }
        return npos;
@@ -1046,12 +1073,12 @@ lyxstring::size_type lyxstring::find_first_of(value_type const * ptr, size_type
 
 
 lyxstring::size_type lyxstring::find_first_of(value_type const * ptr,
-                                         size_type i) const
+                                             size_type i) const
 {
-       Assert(ptr && i < rep->sz);
+       Assert(ptr && i < rep->sz); // OURS!
        TestlyxstringInvariant(this);
 
-       for (size_type t = i; t < length(); ++t) {
+       for (size_type t = i; t < rep->sz; ++t) {
                if (strchr(ptr, rep->s[t]) != 0) return t;
        }
        return npos;
@@ -1060,10 +1087,10 @@ lyxstring::size_type lyxstring::find_first_of(value_type const * ptr,
 
 lyxstring::size_type lyxstring::find_first_of(value_type c, size_type i) const
 {
-       Assert(i < rep->sz);
+       Assert(i < rep->sz); // OURS!
        TestlyxstringInvariant(this);
 
-       for (size_type t = i; t < length(); ++t) {
+       for (size_type t = i; t < rep->sz; ++t) {
                if (rep->s[t] == c) return t;
        }
        return npos;
@@ -1071,25 +1098,27 @@ lyxstring::size_type lyxstring::find_first_of(value_type c, size_type i) const
 
 
 lyxstring::size_type lyxstring::find_last_of(lyxstring const & a,
-                                        size_type i) const
+                                            size_type i) const
 {
        TestlyxstringInvariant(this);
 
-       size_type ii = min(length() - 1, i);
+       size_type ii = min(rep->sz - 1, i);
        for (int t = ii; t >= 0; --t) {
                if (a.find(rep->s[t]) != npos) return t;
        }
        return npos;
 }
 
-lyxstring::size_type lyxstring::find_last_of(value_type const * ptr, size_type i,
-                                        size_type n) const
+
+lyxstring::size_type lyxstring::find_last_of(value_type const * ptr,
+                                            size_type i,
+                                            size_type n) const
 {
-       Assert(ptr);
+       Assert(ptr); // OURS!
        TestlyxstringInvariant(this);
        if (!n) return npos;
 
-       size_type ii = min(length() - 1, i);
+       size_type ii = min(rep->sz - 1, i);
        for (int t = ii; t >= 0; --t) {
                if(memchr(ptr, rep->s[t], n) != 0) return t;
        }
@@ -1098,12 +1127,12 @@ lyxstring::size_type lyxstring::find_last_of(value_type const * ptr, size_type i
 
 
 lyxstring::size_type lyxstring::find_last_of(value_type const * ptr,
-                                        size_type i) const
+                                            size_type i) const
 {
-       Assert(ptr);
+       Assert(ptr); // OURS!
        TestlyxstringInvariant(this);
 
-       size_type ii = min(length() - 1, i);
+       size_type ii = min(rep->sz - 1, i);
        for (int t = ii; t >= 0; --t) {
                if (strchr(ptr, rep->s[t]) != 0) return t;
        }
@@ -1116,7 +1145,7 @@ lyxstring::size_type lyxstring::find_last_of(value_type c, size_type i) const
        TestlyxstringInvariant(this);
 
        if (!rep->sz) return npos;
-       size_type ii = min(length() - 1, i);
+       size_type ii = min(rep->sz - 1, i);
        for (int t = ii; t >= 0; --t) {
                if (rep->s[t] == c) return t;
        }
@@ -1125,27 +1154,28 @@ lyxstring::size_type lyxstring::find_last_of(value_type c, size_type i) const
 
 
 lyxstring::size_type lyxstring::find_first_not_of(lyxstring const & a,
-                                             size_type i) const
+                                                 size_type i) const
 {
        TestlyxstringInvariant(this);
 
        if (!rep->sz) return npos;
        Assert(i < rep->sz);
-       for (size_type t = i; t < length(); ++t) {
+       for (size_type t = i; t < rep->sz; ++t) {
                if (a.find(rep->s[t]) == npos) return t;
        }
        return npos;
 }
 
 
-lyxstring::size_type lyxstring::find_first_not_of(value_type const * ptr, size_type i,
-                                             size_type n) const
+lyxstring::size_type lyxstring::find_first_not_of(value_type const * ptr,
+                                                 size_type i,
+                                                 size_type n) const
 {
-       Assert(ptr && i < rep->sz);
+       Assert(ptr && i < rep->sz); // OURS!
        TestlyxstringInvariant(this);
 
-       if (!n) return (i < length()) ? i : npos;
-       for (size_type t = i; t < length(); ++t) {
+       if (!n) return (i < rep->sz) ? i : npos;
+       for (size_type t = i; t < rep->sz; ++t) {
                if(memchr(ptr, rep->s[t], n) == 0) return t;
        }
        return npos;
@@ -1153,12 +1183,12 @@ lyxstring::size_type lyxstring::find_first_not_of(value_type const * ptr, size_t
 
 
 lyxstring::size_type lyxstring::find_first_not_of(value_type const * ptr,
-                                             size_type i) const
+                                                 size_type i) const
 {
-       Assert(ptr && i < rep->sz);
+       Assert(ptr && i < rep->sz); // OURS!
        TestlyxstringInvariant(this);
 
-       for (size_type t = i; t < length(); ++t) {
+       for (size_type t = i; t < rep->sz; ++t) {
                if (strchr(ptr, rep->s[t]) == 0) return t;
        }
        return npos;
@@ -1169,10 +1199,10 @@ lyxstring::size_type lyxstring::find_first_not_of(value_type c,
                                                  size_type i) const
 {
        if (!rep->sz) return npos;
-       Assert(i < rep->sz);
+       Assert(i < rep->sz); // OURS!
        TestlyxstringInvariant(this);
 
-       for (size_type t = i; t < length(); ++t) {
+       for (size_type t = i; t < rep->sz; ++t) {
                if (rep->s[t] != c) return t;
        }
        return npos;
@@ -1184,7 +1214,7 @@ lyxstring::size_type lyxstring::find_last_not_of(lyxstring const & a,
 {
        TestlyxstringInvariant(this);
 
-       size_type ii = min(length() - 1, i);
+       size_type ii = min(rep->sz - 1, i);
        for (int t = ii; t >= 0; --t) {
                if (a.find(rep->s[t]) == npos) return t;
        }
@@ -1196,12 +1226,12 @@ lyxstring::size_type lyxstring::find_last_not_of(value_type const * ptr,
                                                 size_type i,
                                                 size_type n) const
 {
-       Assert(ptr);
+       Assert(ptr); // OURS!
        TestlyxstringInvariant(this);
 
        if (!n) return npos;
-       size_type ii = min(length() - 1, i);
-       //if (!n) return (ii >= 0) ? ii : npos;
+       size_type ii = min(rep->sz - 1, i);
+
        for (int t = ii; t >= 0; --t) {
                if(memchr(ptr, rep->s[t], n) == 0) return t;
        }
@@ -1212,10 +1242,10 @@ lyxstring::size_type lyxstring::find_last_not_of(value_type const * ptr,
 lyxstring::size_type lyxstring::find_last_not_of(value_type const * ptr,
                                                 size_type i) const
 {
-       Assert(ptr);
+       Assert(ptr); // OURS!
        TestlyxstringInvariant(this);
 
-       size_type ii = min(length() - 1, i);
+       size_type ii = min(rep->sz - 1, i);
        for (int t = ii; t >= 0; --t) {
                if (strchr(ptr, rep->s[t]) == 0) return t;
        }
@@ -1228,7 +1258,7 @@ lyxstring::size_type lyxstring::find_last_not_of(value_type c,
 {
        TestlyxstringInvariant(this);
 
-       size_type ii = min(length() - 1, i);
+       size_type ii = min(rep->sz - 1, i);
        for (int t = ii; t >= 0; --t) {
                if (rep->s[t] != c) return t;
        }
@@ -1242,17 +1272,17 @@ lyxstring::size_type lyxstring::find_last_not_of(value_type c,
 
 lyxstring & lyxstring::replace(size_type i, size_type n, lyxstring const & x)
 {
-       Assert(i < rep->sz || i == 0);
+       Assert(i <= rep->sz); // OURS!
        TestlyxstringInvariant(this);
 
-       return replace(i, n, x, 0, x.length());
+       return replace(i, n, x, 0, x.rep->sz);
 }
 
 
-lyxstring & lyxstring::replace(size_type i,size_type n, lyxstring const & x,
+lyxstring & lyxstring::replace(size_type i, size_type n, lyxstring const & x,
                               size_type i2, size_type n2)
 {
-       Assert((i < rep->sz || i == 0) && (i2 < x.rep->sz || i2 == 0));
+       Assert(i <= rep->sz && i2 <= x.rep->sz); // STD!
        TestlyxstringInvariant(this);
 
        rep = rep->get_own_copy();
@@ -1264,7 +1294,7 @@ lyxstring & lyxstring::replace(size_type i,size_type n, lyxstring const & x,
 lyxstring & lyxstring::replace(size_type i, size_type n,
                               value_type const * p, size_type n2)
 {
-       Assert(p && i < rep->sz);
+       Assert(p && i < rep->sz); // OURS!
        TestlyxstringInvariant(this);
 
        rep = rep->get_own_copy();
@@ -1275,7 +1305,7 @@ lyxstring & lyxstring::replace(size_type i, size_type n,
 
 lyxstring & lyxstring::replace(size_type i, size_type n, value_type const * p)
 {
-       Assert(p && i < rep->sz);
+       Assert(p && i < rep->sz); // OURS!
        TestlyxstringInvariant(this);
 
        return replace(i, min(n, rep->sz), p, (!p) ? 0 : strlen(p));
@@ -1285,7 +1315,7 @@ lyxstring & lyxstring::replace(size_type i, size_type n, value_type const * p)
 lyxstring & lyxstring::replace(size_type i, size_type n,
                               size_type n2, value_type c)
 {
-       Assert(i < rep->sz);
+       Assert(i < rep->sz);  // OURS!
        TestlyxstringInvariant(this);
 
        rep = rep->get_own_copy();
@@ -1308,7 +1338,7 @@ lyxstring & lyxstring::replace(iterator i, iterator i2, const lyxstring & str)
 lyxstring & lyxstring::replace(iterator i, iterator i2,
                               value_type const * p, size_type n)
 {
-       Assert(p);
+       Assert(p); // OURS!
        TestlyxstringInvariant(this);
 
        return replace(i - begin(), i2 - i, p, n);
@@ -1317,7 +1347,7 @@ lyxstring & lyxstring::replace(iterator i, iterator i2,
 
 lyxstring & lyxstring::replace(iterator i, iterator i2, value_type const * p)
 {
-       Assert(p);
+       Assert(p); // OURS!
        TestlyxstringInvariant(this);
 
        return replace(i - begin(), i2 - i, p);
@@ -1342,9 +1372,18 @@ lyxstring & lyxstring::replace(iterator i, iterator i2,
 }
 
 
+void lyxstring::swap(lyxstring & str)
+{
+       if (rep == str.rep) return;
+       Srep * tmp = str.rep;
+       str.rep = rep;
+       rep = tmp;
+}
+
+
 lyxstring & lyxstring::erase(size_type i, size_type n)
 {
-       Assert(i < rep->sz || i == 0);
+       Assert(i <= rep->sz); // STD!
        TestlyxstringInvariant(this);
 
        rep = rep->get_own_copy();
@@ -1399,7 +1438,8 @@ lyxstring::value_type const * lyxstring::data() const
 lyxstring::size_type lyxstring::copy(value_type * buf, size_type len,
                                     size_type pos) const
 {
-       Assert(buf);
+       Assert(buf); // OURS!
+       Assert(pos <= rep->sz); // STD!
        TestlyxstringInvariant(this);
 
        register int nn = min(len, length() - pos);
@@ -1413,65 +1453,74 @@ lyxstring::size_type lyxstring::copy(value_type * buf, size_type len,
 ////////////////////
 
 // Compare funcs should be verified.
-// Should we try to make them work with '\0' value_types?
-// An STL string can usually contain '\0' value_types.
+
+int lyxstring::internal_compare(size_type pos, size_type n,
+                               value_type const * s,
+                               size_type slen, size_type n2) const
+{
+       if ((rep->sz == 0 || n == 0) && (!*s || n2 == 0)) return 0;
+       if (!*s) return 1;
+       // since n > n2, min(n, n2) == 0, c == 0 (stops segfault also)
+
+        // remember that n can very well be a lot larger than rep->sz
+        // so we have to ensure that n is no larger than rep->sz
+        n = min(n, rep->sz);
+       n2 = min(n2, slen);
+        if (n == n2)
+               return memcmp(&(rep->s[pos]), s, n);
+       int c = memcmp(&(rep->s[pos]), s, min(n, n2));
+       if (c)
+               return c;
+       if (n < n2)
+               return -1;
+       return 1;
+}
+
 
 int lyxstring::compare(lyxstring const & str) const
 {
        TestlyxstringInvariant(this);
-
-       return compare(0, rep->sz, str.rep->s, str.rep->sz);
+       return internal_compare(0, rep->sz, str.rep->s,
+                               str.rep->sz, str.rep->sz);
 }
 
 
 int lyxstring::compare(value_type const * s) const
 {
-       Assert(s);
+       Assert(s); //OURS!
        TestlyxstringInvariant(this);
-
-       return compare(0, rep->sz, s, (!s) ? 0 : strlen(s));
+       int n = (!s) ? 0 : strlen(s);
+       return internal_compare(0, rep->sz, s, n, n);
 }
 
 
-int lyxstring::compare(size_type pos, size_type n, lyxstring const & str) const
+int lyxstring::compare(size_type pos, size_type n,
+                      lyxstring const & str) const
 {
+       Assert(pos <= rep->sz); // OURS!
        TestlyxstringInvariant(this);
-
-       return compare(pos, n, str.rep->s, str.rep->sz);
+       return internal_compare(pos, n, str.rep->s, str.rep->sz, str.rep->sz);
 }
 
 
 int lyxstring::compare(size_type pos, size_type n, lyxstring const & str,
-                    size_type pos2, size_type n2) const
+                      size_type pos2, size_type n2) const
 {
+       Assert(pos <= rep->sz); // OURS!
+       Assert(pos2 <= str.rep->sz); // OURS!
        TestlyxstringInvariant(this);
-
-       return compare(pos, n, str.rep->s + pos2, n2);
+       return internal_compare(pos, n,
+                               str.rep->s + pos2,
+                               str.rep->sz - pos2, n2);
 }
 
 
 int lyxstring::compare(size_type pos, size_type n, value_type const * s,
-                    size_type n2) const
+                      size_type n2) const
 {
-       Assert(s && (pos < rep->sz || pos == 0));
+       Assert(s && pos <= rep->sz); // OURS!
        TestlyxstringInvariant(this);
-
-       if ((rep->sz == 0 || n == 0) && (!*s || n2 == 0)) return 0;
-       if (!*s) return 1;
-       // since n > n2, min(n,n2) == 0, c == 0 (stops segfault also)
-
-        // remember that n can very well be a lot larger than rep->sz
-        // so we have to ensure that n is no larger than rep->sz
-        n = min(n, rep->sz);
-       n2 = min(n2, strlen(s));
-        if (n == n2)
-               return memcmp(&(rep->s[pos]), s, n);
-       int c = memcmp(&(rep->s[pos]), s, min(n,n2));
-       if (c)
-               return c;
-       if (n < n2)
-               return -1;
-       return 1;
+       return internal_compare(pos, n, s, (!s) ? 0 : strlen(s), n2);
 }
 
 
@@ -1482,7 +1531,7 @@ int lyxstring::compare(size_type pos, size_type n, value_type const * s,
 // i = index, n = length
 lyxstring lyxstring::substr(size_type i, size_type n) const
 {
-       Assert(i < rep->sz || i == 0);
+       Assert(i <= rep->sz); // STD!
        TestlyxstringInvariant(this);
 
        return lyxstring(*this, i, n);
@@ -1501,14 +1550,14 @@ bool operator==(lyxstring const & a, lyxstring const & b)
 
 bool operator==(lyxstring::value_type const * a, lyxstring const & b)
 {
-       Assert(a);
+       Assert(a); // OURS!
        return b.compare(a) == 0;
 }
 
 
 bool operator==(lyxstring const & a, lyxstring::value_type const * b)
 {
-       Assert(b);
+       Assert(b); // OURS!
        return a.compare(b) == 0;
 }
 
@@ -1521,14 +1570,14 @@ bool operator!=(lyxstring const & a, lyxstring const & b)
 
 bool operator!=(lyxstring::value_type const * a, lyxstring const & b)
 {
-       Assert(a);
+       Assert(a); // OURS!
        return b.compare(a) != 0;
 }
 
 
 bool operator!=(lyxstring const & a, lyxstring::value_type const * b)
 {
-       Assert(b);
+       Assert(b); // OURS!
        return a.compare(b) != 0;
 }
 
@@ -1541,14 +1590,14 @@ bool operator>(lyxstring const & a, lyxstring const & b)
 
 bool operator>(lyxstring::value_type const * a, lyxstring const & b)
 {
-       Assert(a);
+       Assert(a); // OURS!
        return b.compare(a) < 0; // since we reverse the parameters
 }
 
 
 bool operator>(lyxstring const & a, lyxstring::value_type const * b)
 {
-       Assert(b);
+       Assert(b); // OURS!
        return a.compare(b) > 0;
 }
 
@@ -1561,14 +1610,14 @@ bool operator<(lyxstring const & a, lyxstring const & b)
 
 bool operator<(lyxstring::value_type const * a, lyxstring const & b)
 {
-       Assert(a);
+       Assert(a); // OURS!
        return b.compare(a) > 0; // since we reverse the parameters
 }
 
 
 bool operator<(lyxstring const & a, lyxstring::value_type const * b)
 {
-       Assert(b);
+       Assert(b); // OURS!
        return a.compare(b) < 0;
 }
 
@@ -1581,14 +1630,14 @@ bool operator>=(lyxstring const & a, lyxstring const & b)
 
 bool operator>=(lyxstring::value_type const * a, lyxstring const & b)
 {
-       Assert(a);
+       Assert(a); // OURS!
        return b.compare(a) <= 0; // since we reverse the parameters
 }
 
 
 bool operator>=(lyxstring const & a, lyxstring::value_type const * b)
 {
-       Assert(b);
+       Assert(b); // OURS!
        return a.compare(b) >= 0;
 }
 
@@ -1601,14 +1650,14 @@ bool operator<=(lyxstring const & a, lyxstring const & b)
 
 bool operator<=(lyxstring::value_type const * a, lyxstring const & b)
 {
-       Assert(a);
+       Assert(a); // OURS!
        return b.compare(a) >= 0; // since we reverse the parameters
 }
 
 
 bool operator<=(lyxstring const & a, lyxstring::value_type const * b)
 {
-       Assert(b);
+       Assert(b); // OURS!
        return a.compare(b) <= 0;
 }
 
@@ -1623,7 +1672,7 @@ lyxstring operator+(lyxstring const & a, lyxstring const & b)
 
 lyxstring operator+(lyxstring::value_type const * a, lyxstring const & b)
 {
-       Assert(a);
+       Assert(a); // OURS!
        lyxstring tmp(a);
        tmp += b;
        return tmp;
@@ -1641,7 +1690,7 @@ lyxstring operator+(lyxstring::value_type a, lyxstring const & b)
 
 lyxstring operator+(lyxstring const & a, lyxstring::value_type const * b)
 {
-       Assert(b);
+       Assert(b); // OURS!
        lyxstring tmp(a);
        tmp += b;
        return tmp;
@@ -1655,32 +1704,54 @@ lyxstring operator+(lyxstring const & a, lyxstring::value_type b)
        return tmp;
 }
 
+
+void swap(lyxstring & str1, lyxstring & str2)
+{
+       str1.swap(str2);
+}
+
+
 #include <iostream>
 
 istream & operator>>(istream & is, lyxstring & s)
 {
+#if 1
        // very bad solution
        char * nome = new char[1024];
        is >> nome;
        lyxstring tmp(nome);
        delete [] nome;
        if (!tmp.empty()) s = tmp;
+#else
+       // better solution
+       int w = is.widdth(0);
+       s.clear();
+       char c = 0;
+       while (is.get(c)) {
+               if (isspace(c)) { is.putback(c); break; }
+               s += c;
+               if (--w == 1) break;
+       }
+       if (s.empty()) is.setstate(ios::failbit);
+#endif
        return is;
 }
 
+
 ostream & operator<<(ostream & o, lyxstring const & s)
 {
        return o.write(s.data(), s.length());
 }
 
+
 istream & getline(istream & is, lyxstring & s,
                  lyxstring::value_type delim)
 {
        // very bad solution
-       char tmp;
+       char tmp = 0;
        s.erase();
        while(is) {
-               is >> tmp;
+               is.get(tmp);
                if (tmp != delim) {
                        s += tmp;
                } else {