]> git.lyx.org Git - lyx.git/blobdiff - src/Undo.cpp
Typo.
[lyx.git] / src / Undo.cpp
index 3d39308efb4c2b7545ba2897db4ab55d4fd9023f..f7d31eb0a40e8f2e7c583e163ffef1e4314e69e8 100644 (file)
@@ -20,7 +20,6 @@
 #include "Buffer.h"
 #include "BufferParams.h"
 #include "buffer_funcs.h"
-#include "debug.h"
 #include "DocIterator.h"
 #include "Paragraph.h"
 #include "ParagraphList.h"
 
 #include "insets/Inset.h"
 
-#include "support/limited_stack.h"
+#include "support/lassert.h"
+#include "support/debug.h"
 
 #include <algorithm>
-#include <ostream>
+#include <deque>
 
-using std::advance;
+using namespace std;
+using namespace lyx::support;
 
-namespace lyx {
 
+namespace lyx {
 
 /**
 These are the elements put on the undo stack. Each object contains complete
@@ -60,8 +61,9 @@ Obviously, the stored ranged should be as small as possible. However, it
 there is a lower limit: The StableDocIterator pointing stored in the undo
 class must be valid after the changes, too, as it will used as a pointer
 where to insert the stored bits when performining undo.
-
 */
+
+
 struct UndoElement
 {
        /// Which kind of operation are we recording for?
@@ -85,9 +87,51 @@ struct UndoElement
 };
 
 
+class UndoElementStack 
+{
+public:
+       /// limit is the maximum size of the stack
+       UndoElementStack(size_t limit = 100) { limit_ = limit; }
+       /// limit is the maximum size of the stack
+       ~UndoElementStack() { clear(); }
+
+       /// Return the top element.
+       UndoElement & top() { return c_.front(); }
+
+       /// Pop and throw away the top element.
+       void pop() { c_.pop_front(); }
+
+       /// Return true if the stack is empty.
+       bool empty() const { return c_.empty(); }
+
+       /// Clear all elements, deleting them.
+       void clear() {
+               for (size_t i = 0; i != c_.size(); ++i) {
+                       delete c_[i].array;
+                       delete c_[i].pars;
+               }
+               c_.clear();
+       }
+
+       /// Push an item on to the stack, deleting the
+       /// bottom item on overflow.
+       void push(UndoElement const & v) {
+               c_.push_front(v);
+               if (c_.size() > limit_)
+                       c_.pop_back();
+       }
+
+private:
+       /// Internal contents.
+       std::deque<UndoElement> c_;
+       /// The maximum number elements stored.
+       size_t limit_;
+};
+
+
 struct Undo::Private
 {
-       Private(Buffer & buffer): buffer_(buffer) {}
+       Private(Buffer & buffer) : buffer_(buffer), undo_finished_(true) {}
        
        // Returns false if no undo possible.
        bool textUndoOrRedo(DocIterator & cur, bool isUndoOperation);
@@ -109,18 +153,25 @@ struct Undo::Private
        ///
        Buffer & buffer_;
        /// Undo stack.
-       limited_stack<UndoElement> undostack;
+       UndoElementStack undostack_;
        /// Redo stack.
-       limited_stack<UndoElement> redostack;
+       UndoElementStack redostack_;
 
        /// The flag used by Undo::finishUndo().
-       bool undo_finished;
+       bool undo_finished_;
 };
 
 
-Undo::Undo(Buffer & buffer): d(new Undo::Private(buffer))
-{
-}
+/////////////////////////////////////////////////////////////////////
+//
+// Undo
+//
+/////////////////////////////////////////////////////////////////////
+
+
+Undo::Undo(Buffer & buffer)
+       : d(new Undo::Private(buffer))
+{}
 
 
 Undo::~Undo()
@@ -131,37 +182,29 @@ Undo::~Undo()
 
 bool Undo::hasUndoStack() const
 {
-       return !d->undostack.empty();
+       return !d->undostack_.empty();
 }
 
 
 bool Undo::hasRedoStack() const
 {
-       return !d->redostack.empty();
-}
-
-
-
-
-namespace {
-
-std::ostream & operator<<(std::ostream & os, UndoElement const & undo)
-{
-       return os << " from: " << undo.from << " end: " << undo.end
-               << " cell:\n" << undo.cell
-               << " cursor:\n" << undo.cursor;
+       return !d->redostack_.empty();
 }
 
 
-bool samePar(StableDocIterator const & i1, StableDocIterator const & i2)
+static bool samePar(StableDocIterator const & i1, StableDocIterator const & i2)
 {
        StableDocIterator tmpi2 = i2;
        tmpi2.pos() = i1.pos();
        return i1 == tmpi2;
 }
 
-} // namespace anon
 
+/////////////////////////////////////////////////////////////////////
+//
+// Undo::Private
+//
+///////////////////////////////////////////////////////////////////////
 
 void Undo::Private::doRecordUndo(UndoKind kind,
        DocIterator const & cell,
@@ -171,7 +214,7 @@ void Undo::Private::doRecordUndo(UndoKind kind,
        bool isUndoOperation)
 {
        if (first_pit > last_pit)
-               std::swap(first_pit, last_pit);
+               swap(first_pit, last_pit);
        // create the position information of the Undo entry
        UndoElement undo;
        undo.array = 0;
@@ -187,13 +230,12 @@ void Undo::Private::doRecordUndo(UndoKind kind,
        undo.from = first_pit;
        undo.end = cell.lastpit() - last_pit;
 
-       limited_stack<UndoElement> & stack = isUndoOperation ?
-               undostack : redostack;
+       UndoElementStack & stack = isUndoOperation ?  undostack_ : redostack_;
 
        // Undo::ATOMIC are always recorded (no overlapping there).
        // As nobody wants all removed character appear one by one when undoing,
        // we want combine 'similar' non-ATOMIC undo recordings to one.
-       if (!undo_finished
+       if (!undo_finished_
            && kind != ATOMIC_UNDO
            && !stack.empty()
            && samePar(stack.top().cell, undo.cell)
@@ -211,7 +253,7 @@ void Undo::Private::doRecordUndo(UndoKind kind,
                // main Text _is_ the whole document.
                // record the relevant paragraphs
                Text const * text = cell.text();
-               BOOST_ASSERT(text);
+               LASSERT(text, /**/);
                ParagraphList const & plist = text->paragraphs();
                ParagraphList::const_iterator first = plist.begin();
                advance(first, first_pit);
@@ -222,43 +264,41 @@ void Undo::Private::doRecordUndo(UndoKind kind,
 
        // push the undo entry to undo stack
        stack.push(undo);
-       //lyxerr << "undo record: " << stack.top() << std::endl;
+       //lyxerr << "undo record: " << stack.top() << endl;
 
        // next time we'll try again to combine entries if possible
-       undo_finished = false;
+       undo_finished_ = false;
 }
 
 
 void Undo::Private::recordUndo(UndoKind kind, DocIterator & cur,
        pit_type first_pit, pit_type last_pit)
 {
-       BOOST_ASSERT(first_pit <= cur.lastpit());
-       BOOST_ASSERT(last_pit <= cur.lastpit());
+       LASSERT(first_pit <= cur.lastpit(), /**/);
+       LASSERT(last_pit <= cur.lastpit(), /**/);
 
        doRecordUndo(kind, cur, first_pit, last_pit, cur,
                false, true);
 
-       undo_finished = false;
-       redostack.clear();
+       undo_finished_ = false;
+       redostack_.clear();
        //lyxerr << "undostack:\n";
        //for (size_t i = 0, n = buf.undostack().size(); i != n && i < 6; ++i)
-       //      lyxerr << "  " << i << ": " << buf.undostack()[i] << std::endl;
+       //      lyxerr << "  " << i << ": " << buf.undostack()[i] << endl;
 }
 
 
 bool Undo::Private::textUndoOrRedo(DocIterator & cur, bool isUndoOperation)
 {
-       undo_finished = true;
+       undo_finished_ = true;
 
-       limited_stack<UndoElement> & stack = isUndoOperation ?
-               undostack : redostack;
+       UndoElementStack & stack = isUndoOperation ?  undostack_ : redostack_;
 
        if (stack.empty())
                // Nothing to do.
                return false;
 
-       limited_stack<UndoElement> & otherstack = isUndoOperation ?
-               redostack : undostack;
+       UndoElementStack & otherstack = isUndoOperation ?  redostack_ : undostack_;
 
        // Adjust undo stack and get hold of current undo data.
        UndoElement undo = stack.top();
@@ -276,11 +316,11 @@ bool Undo::Private::textUndoOrRedo(DocIterator & cur, bool isUndoOperation)
        bool labelsUpdateNeeded = false;
        DocIterator dit = undo.cell.asDocIterator(&buffer_.inset());
        if (undo.isFullBuffer) {
-               BOOST_ASSERT(undo.pars);
+               LASSERT(undo.pars, /**/);
                // This is a full document
                otherstack.top().bparams = buffer_.params();
                buffer_.params() = undo.bparams;
-               std::swap(buffer_.paragraphs(), *undo.pars);
+               swap(buffer_.paragraphs(), *undo.pars);
                delete undo.pars;
                undo.pars = 0;
        } else if (dit.inMathed()) {
@@ -288,15 +328,15 @@ bool Undo::Private::textUndoOrRedo(DocIterator & cur, bool isUndoOperation)
                // gained by storing just 'a few' paragraphs (most if not
                // all math inset cells have just one paragraph!)
                //LYXERR0("undo.array: " << *undo.array);
-               BOOST_ASSERT(undo.array);
+               LASSERT(undo.array, /**/);
                dit.cell().swap(*undo.array);
                delete undo.array;
                undo.array = 0;
        } else {
                // Some finer machinery is needed here.
                Text * text = dit.text();
-               BOOST_ASSERT(text);
-               BOOST_ASSERT(undo.pars);
+               LASSERT(text, /**/);
+               LASSERT(undo.pars, /**/);
                ParagraphList & plist = text->paragraphs();
 
                // remove new stuff between first and last
@@ -321,14 +361,14 @@ bool Undo::Private::textUndoOrRedo(DocIterator & cur, bool isUndoOperation)
                undo.pars = 0;
                labelsUpdateNeeded = true;
        }
-       BOOST_ASSERT(undo.pars == 0);
-       BOOST_ASSERT(undo.array == 0);
+       LASSERT(undo.pars == 0, /**/);
+       LASSERT(undo.array == 0, /**/);
 
        cur = undo.cursor.asDocIterator(&buffer_.inset());
        
        if (labelsUpdateNeeded)
                updateLabels(buffer_);
-       undo_finished = true;
+       undo_finished_ = true;
        return true;
 }
 
@@ -336,7 +376,7 @@ bool Undo::Private::textUndoOrRedo(DocIterator & cur, bool isUndoOperation)
 void Undo::finishUndo()
 {
        // Make sure the next operation will be stored.
-       d->undo_finished = true;
+       d->undo_finished_ = true;
 }
 
 
@@ -362,7 +402,7 @@ void Undo::recordUndoInset(DocIterator & cur, UndoKind kind)
 {
        DocIterator c = cur;
        c.pop_back();
-       d->doRecordUndo(kind, c, c.pit(), c.pit(),      cur, false, true);
+       d->doRecordUndo(kind, c, c.pit(), c.pit(), cur, false, true);
 }