]> git.lyx.org Git - lyx.git/blobdiff - src/DocIterator.cpp
Fulfill promise to Andre: TextClass_ptr --> TextClassPtr.
[lyx.git] / src / DocIterator.cpp
index f6b3b87293eed7509a020c3ad955fa477dc0d3a9..07e0d6f5e0d012a7e24dfeb18400db2c3cae2789 100644 (file)
@@ -4,6 +4,7 @@
  * Licence details can be found in the file COPYING.
  *
  * \author André Pönitz
+ * \author Alfredo Braunstein
  *
  * Full author contact details are available in file CREDITS.
  */
 #include <boost/assert.hpp>
 #include <boost/current_function.hpp>
 
+using std::endl;
 
-namespace lyx {
 
-using std::endl;
+namespace lyx {
 
 
 // We could be able to get rid of this if only every BufferView were
@@ -57,7 +58,7 @@ DocIterator doc_iterator_end(Inset & inset)
 }
 
 
-Inset * DocIterator::nextInset()
+Inset * DocIterator::nextInset() const
 {
        BOOST_ASSERT(!empty());
        if (pos() == lastpos())
@@ -72,29 +73,12 @@ Inset * DocIterator::nextInset()
 }
 
 
-Inset * DocIterator::prevInset()
-{
-       BOOST_ASSERT(!empty());
-       if (pos() == 0)
-               return 0;
-       if (inMathed())
-               if (cell().empty())
-                       // FIXME: this should not happen but it does.
-                       // See bug 3189
-                       // http://bugzilla.lyx.org/show_bug.cgi?id=3189
-                       return 0;
-               else
-                       return prevAtom().nucleus();
-       return paragraph().isInset(pos() - 1) ? paragraph().getInset(pos() - 1) : 0;
-}
-
-
-Inset const * DocIterator::prevInset() const
+Inset * DocIterator::prevInset() const
 {
        BOOST_ASSERT(!empty());
        if (pos() == 0)
                return 0;
-       if (inMathed())
+       if (inMathed()) {
                if (cell().empty())
                        // FIXME: this should not happen but it does.
                        // See bug 3189
@@ -102,6 +86,7 @@ Inset const * DocIterator::prevInset() const
                        return 0;
                else
                        return prevAtom().nucleus();
+       }
        return paragraph().isInset(pos() - 1) ? paragraph().getInset(pos() - 1) : 0;
 }
 
@@ -118,15 +103,7 @@ Inset * DocIterator::realInset() const
 }
 
 
-MathAtom const & DocIterator::prevAtom() const
-{
-       BOOST_ASSERT(!empty());
-       BOOST_ASSERT(pos() > 0);
-       return cell()[pos() - 1];
-}
-
-
-MathAtom & DocIterator::prevAtom()
+MathAtom & DocIterator::prevAtom() const
 {
        BOOST_ASSERT(!empty());
        BOOST_ASSERT(pos() > 0);
@@ -134,16 +111,7 @@ MathAtom & DocIterator::prevAtom()
 }
 
 
-MathAtom const & DocIterator::nextAtom() const
-{
-       BOOST_ASSERT(!empty());
-       //lyxerr << "lastpos: " << lastpos() << " next atom:\n" << *this << endl;
-       BOOST_ASSERT(pos() < lastpos());
-       return cell()[pos()];
-}
-
-
-MathAtom & DocIterator::nextAtom()
+MathAtom & DocIterator::nextAtom() const
 {
        BOOST_ASSERT(!empty());
        //lyxerr << "lastpos: " << lastpos() << " next atom:\n" << *this << endl;
@@ -152,20 +120,14 @@ MathAtom & DocIterator::nextAtom()
 }
 
 
-Text * DocIterator::text()
-{
-       BOOST_ASSERT(!empty());
-       return top().text();
-}
-
-Text const * DocIterator::text() const
+Text * DocIterator::text() const
 {
        BOOST_ASSERT(!empty());
        return top().text();
 }
 
 
-Paragraph & DocIterator::paragraph()
+Paragraph & DocIterator::paragraph() const
 {
        if (!inTexted())
                lyxerr << *this << endl;
@@ -174,26 +136,27 @@ Paragraph & DocIterator::paragraph()
 }
 
 
-Paragraph const & DocIterator::paragraph() const
+Paragraph & DocIterator::innerParagraph() const
 {
-       BOOST_ASSERT(inTexted());
-       return top().paragraph();
+       BOOST_ASSERT(!empty());
+       return innerTextSlice().paragraph();
 }
 
 
-Paragraph const & DocIterator::innerParagraph() const
+CursorSlice const & DocIterator::innerTextSlice() const
 {
        BOOST_ASSERT(!empty());
        // go up until first non-0 text is hit
        // (innermost text is 0 in mathed)
        for (int i = depth() - 1; i >= 0; --i)
                if (slices_[i].text())
-                       return slices_[i].paragraph();
+                       return slices_[i];
 
        // This case is in principe not possible. We _must_
-       // we inside a Paragraph.
+       // be inside a Text.
        BOOST_ASSERT(false);
-       return paragraph();
+       static CursorSlice dummy;
+       return dummy;
 }
 
 
@@ -248,32 +211,14 @@ DocIterator::col_type DocIterator::col() const
 }
 
 
-MathData const & DocIterator::cell() const
-{
-//     BOOST_ASSERT(inMathed());
-       return top().cell();
-}
-
-
-MathData & DocIterator::cell()
+MathData & DocIterator::cell() const
 {
 //     BOOST_ASSERT(inMathed());
        return top().cell();
 }
 
 
-Text * DocIterator::innerText()
-{
-       BOOST_ASSERT(!empty());
-       // Go up until first non-0 text is hit
-       // (innermost text is 0 in mathed)
-       for (int i = depth() - 1; i >= 0; --i)
-               if (slices_[i].text())
-                       return slices_[i].text();
-       return 0;
-}
-
-Text const * DocIterator::innerText() const
+Text * DocIterator::innerText() const
 {
        BOOST_ASSERT(!empty());
        // go up until first non-0 text is hit
@@ -337,76 +282,13 @@ void DocIterator::forwardPos(bool ignorecollapsed)
                return;
        }
 
-       // otherwise move on one position if possible
-       if (tip.pos() < lastp) {
-               //lyxerr << "... next pos" << endl;
-               ++tip.pos();
-               return;
-       }
-       //lyxerr << "... no next pos" << endl;
-
-       // otherwise move on one paragraph if possible
-       if (tip.pit() < lastpit()) {
-               //lyxerr << "... next par" << endl;
-               ++tip.pit();
-               tip.pos() = 0;
-               return;
-       }
-       //lyxerr << "... no next pit" << endl;
-
-       // otherwise try to move on one cell if possible
-       if (tip.idx() < lastidx()) {
-               //lyxerr << "... next idx" << endl;
-               ++tip.idx();
-               tip.pit() = 0;
-               tip.pos() = 0;
-               return;
-       }
-       //lyxerr << "... no next idx" << endl;
-
-       // otherwise leave inset and jump over inset as a whole
-       pop_back();
-       // 'top' is invalid now...
-       if (!empty())
-               ++top().pos();
-}
-
-
-void DocIterator::forwardPosNoDescend()
-{
-       CursorSlice & tip = top();
-       pos_type const lastp = lastpos();
-
-       //  move on one position if possible
-       if (tip.pos() < lastp) {
-               //lyxerr << "... next pos" << endl;
-               ++tip.pos();
-               return;
-       }
-       //lyxerr << "... no next pos" << endl;
-
-       // otherwise move on one paragraph if possible
-       if (tip.pit() < lastpit()) {
-               //lyxerr << "... next par" << endl;
-               ++tip.pit();
-               tip.pos() = 0;
-               return;
-       }
-       //lyxerr << "... no next pit" << endl;
-
-       // otherwise try to move on one cell if possible
-       if (tip.idx() < lastidx()) {
-               //lyxerr << "... next idx" << endl;
-               ++tip.idx();
-               tip.pit() = 0;
-               tip.pos() = 0;
+       if (!tip.at_end()) {
+               tip.forwardPos();
                return;
        }
-       //lyxerr << "... no next idx" << endl;
-
        // otherwise leave inset and jump over inset as a whole
        pop_back();
-       // 'top' is invalid now...
+       // 'tip' is invalid now...
        if (!empty())
                ++top().pos();
 }
@@ -478,32 +360,21 @@ void DocIterator::backwardPos()
                return;
        }
 
-       CursorSlice & tip = top();
-
-       if (tip.pos() != 0) {
-               --tip.pos();
-       } else if (tip.pit() != 0) {
-               --tip.pit();
-               tip.pos() = lastpos();
-               return;
-       } else if (tip.idx() != 0) {
-               --tip.idx();
-               tip.pit() = lastpit();
-               tip.pos() = lastpos();
-               return;
-       } else {
+       if (top().at_begin()) {
                pop_back();
                return;
        }
 
+       top().backwardPos();
+
        // move into an inset to the left if possible
        Inset * n = 0;
 
        if (inMathed()) {
-               n = (tip.cell().begin() + tip.pos())->nucleus();
+               n = (top().cell().begin() + top().pos())->nucleus();
        } else {
-               if (paragraph().isInset(tip.pos()))
-                       n = paragraph().getInset(tip.pos());
+               if (paragraph().isInset(top().pos()))
+                       n = paragraph().getInset(top().pos());
        }
 
        if (n && n->isActive()) {
@@ -545,6 +416,60 @@ void DocIterator::updateInsets(Inset * inset)
 }
 
 
+bool DocIterator::fixIfBroken()
+{
+       // Go through the slice stack from the bottom. 
+       // Check that all coordinates (idx, pit, pos) are correct and
+       // that the inset is the one which is claimed to be there
+       Inset * inset = &slices_[0].inset();
+       size_t i = 0;
+       size_t n = slices_.size();
+       for (; i != n; ++i) {
+               CursorSlice & cs = slices_[i];
+               if (&cs.inset() != inset) {
+                       // the whole slice is wrong, chop off this as well
+                       --i;
+                       LYXERR(Debug::DEBUG) << "fixIfBroken(): inset changed" << endl;
+                       break;
+               } else if (cs.idx() > cs.lastidx()) {
+                       cs.idx() = cs.lastidx();
+                       cs.pit() = cs.lastpit();
+                       cs.pos() = cs.lastpos();
+                       LYXERR(Debug::DEBUG) << "fixIfBroken(): idx fixed" << endl;
+                       break;
+               } else if (cs.pit() > cs.lastpit()) {
+                       cs.pit() = cs.lastpit();
+                       cs.pos() = cs.lastpos();
+                       LYXERR(Debug::DEBUG) << "fixIfBroken(): pit fixed" << endl;
+                       break;
+               } else if (cs.pos() > cs.lastpos()) {
+                       cs.pos() = cs.lastpos();
+                       LYXERR(Debug::DEBUG) << "fixIfBroken(): pos fixed" << endl;
+                       break;
+               } else if (i != n - 1 && cs.pos() != cs.lastpos()) {
+                       // get inset which is supposed to be in the next slice
+                       if (cs.inset().inMathed())
+                               inset = (cs.cell().begin() + cs.pos())->nucleus();
+                       else if (cs.paragraph().isInset(cs.pos()))
+                               inset = cs.paragraph().getInset(cs.pos());
+                       else {
+                               // there are slices left, so there must be another inset
+                               break;
+                       }
+               }
+       }
+
+       // Did we make it through the whole slice stack? Otherwise there
+       // was a problem at slice i, and we have to chop off above
+       if (i < n) {
+               LYXERR(Debug::DEBUG) << "fixIfBroken(): cursor chopped at " << i << endl;
+               resize(i + 1);
+               return true;
+       } else
+               return false;
+}
+
+
 std::ostream & operator<<(std::ostream & os, DocIterator const & dit)
 {
        for (size_t i = 0, n = dit.depth(); i != n; ++i)
@@ -553,6 +478,28 @@ std::ostream & operator<<(std::ostream & os, DocIterator const & dit)
 }
 
 
+bool operator<(DocIterator const & p, DocIterator const & q)
+{
+       size_t depth = std::min(p.depth(), q.depth());
+       for (size_t i = 0 ; i < depth ; ++i) {
+               if (p[i] != q[i])
+                       return p[i] < q[i];
+       }
+       return p.depth() < q.depth();
+}
+
+
+bool operator>(DocIterator const & p, DocIterator const & q)
+{
+       return q < p;
+}
+
+
+bool operator<=(DocIterator const & p, DocIterator const & q)
+{
+       return !(q < p);
+}
+
 
 ///////////////////////////////////////////////////////
 
@@ -573,14 +520,17 @@ DocIterator StableDocIterator::asDocIterator(Inset * inset) const
                if (inset == 0) {
                        // FIXME
                        lyxerr << BOOST_CURRENT_FUNCTION
-                              << " Should not happen, but does e.g. after C-n C-l C-z S-C-z"
+                              << " Should not happen, but does e.g. after C-n C-l C-z S-C-z\n"
+                                  << " or when a Buffer has been concurently edited by two views"
                                << '\n' << "dit: " << dit << '\n'
                                << " lastpos: " << dit.lastpos() << endl;
-                       //break;
-                       BOOST_ASSERT(false);
+                       dit.fixIfBroken();
+                       break;
                }
                dit.push_back(data_[i]);
                dit.top().inset_ = inset;
+               if (dit.fixIfBroken())
+                       break;
                if (i + 1 != n)
                        inset = dit.nextInset();
        }