]> git.lyx.org Git - lyx.git/blobdiff - src/lyxfind.C
Remove cached var from RenderPreview. Changes elsewhere to suit.
[lyx.git] / src / lyxfind.C
index fe37598adb0a24526c7145427b938958053c54a6..cfee2c9f04435a7be031677ef35ef4764c07eef2 100644 (file)
  * \author Lars Gullik Bjønnes
  * \author John Levon
  * \author Jürgen Vigna
+ * \author Alfredo Braunstein
  *
  * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
-#include "lyxtext.h"
 #include "lyxfind.h"
-#include "paragraph.h"
-#include "frontends/LyXView.h"
-#include "frontends/Alert.h"
-#include "support/textutils.h"
-#include "support/lstrings.h"
-#include "BufferView.h"
+
 #include "buffer.h"
+#include "cursor.h"
+#include "CutAndPaste.h"
+#include "BufferView.h"
 #include "debug.h"
+#include "funcrequest.h"
 #include "gettext.h"
-#include "insets/insettext.h"
-#include "changes.h"
+#include "lyxtext.h"
+#include "paragraph.h"
+#include "pariterator.h"
+#include "undo.h"
+
+#include "frontends/Alert.h"
+#include "frontends/LyXView.h"
 
-using namespace lyx::support;
+#include "support/textutils.h"
+#include "support/tostr.h"
+
+#include "support/std_sstream.h"
 
+using lyx::support::lowercase;
+using lyx::support::uppercase;
+using lyx::support::split;
+
+using lyx::par_type;
 using lyx::pos_type;
-using std::endl;
 
-namespace lyx {
-namespace find {
+using std::advance;
+using std::ostringstream;
+using std::string;
+
 
 namespace {
 
-// returns true if the specified string is at the specified position
-bool isStringInText(Paragraph const & par, pos_type pos,
-                   string const & str, bool const & cs,
-                   bool const & mw)
+bool parse_bool(string & howto)
 {
-       string::size_type size = str.length();
-       pos_type i = 0;
-       pos_type parsize = par.size();
-       while (((pos + i) < parsize)
-              && (string::size_type(i) < size)
-              && (cs ? (str[i] == par.getChar(pos + i))
-                  : (uppercase(str[i]) == uppercase(par.getChar(pos + i))))) {
-               ++i;
-       }
+       if (howto.empty())
+               return false;
+       string var;
+       howto = split(howto, var, ' ');
+       return (var == "1");
+}
+
+
+class MatchString : public std::binary_function<Paragraph, lyx::pos_type, bool>
+{
+public:
+       MatchString(string const & str, bool cs, bool mw)
+               : str(str), cs(cs), mw(mw)
+       {}
+
+       // returns true if the specified string is at the specified position
+       bool operator()(Paragraph const & par, lyx::pos_type pos) const
+       {
+               string::size_type const size = str.length();
+               lyx::pos_type i = 0;
+               lyx::pos_type const parsize = par.size();
+               for (i = 0; pos + i < parsize; ++i) {
+                       if (string::size_type(i) >= size)
+                               break;
+                       if (cs && str[i] != par.getChar(pos + i))
+                               break;
+                       if (!cs && uppercase(str[i]) != uppercase(par.getChar(pos + i)))
+                               break;
+               }
+
+               if (size != string::size_type(i))
+                       return false;
 
-       if (size == string::size_type(i)) {
                // if necessary, check whether string matches word
-               if (!mw)
-                       return true;
-               if ((pos <= 0 || !IsLetterCharOrDigit(par.getChar(pos - 1)))
-                       && (pos + pos_type(size) >= parsize
-                       || !IsLetterCharOrDigit(par.getChar(pos + size)))) {
-                       return true;
+               if (mw) {
+                       if (pos > 0 && IsLetterCharOrDigit(par.getChar(pos - 1)))
+                               return false;
+                       if (pos + lyx::pos_type(size) < parsize
+                                       && IsLetterCharOrDigit(par.getChar(pos + size)));
+                               return false;
                }
+
+               return true;
        }
+
+private:
+       // search string
+       string str;
+       // case sensitive
+       bool cs;
+       // match whole words only
+       bool mw;
+};
+
+
+bool findForward(DocIterator & cur, MatchString const & match)
+{
+       for (; cur; cur.forwardChar())
+               if (cur.inTexted() && match(cur.paragraph(), cur.pos()))
+                       return true;
        return false;
 }
 
-// forward search:
-// if the string can be found: return true and set the cursor to
-// the new position, cs = casesensitive, mw = matchword
-SearchResult searchForward(BufferView * bv, LyXText * text, string const & str,
-                          bool const & cs, bool const & mw)
+
+bool findBackwards(DocIterator & cur, MatchString const & match)
 {
-       ParagraphList::iterator pit = text->cursor.par();
-       ParagraphList::iterator pend = text->ownerParagraphs().end();
-       pos_type pos = text->cursor.pos();
-       UpdatableInset * inset;
-
-       while (pit != pend && !isStringInText(*pit, pos, str, cs, mw)) {
-               if (pos < pit->size()
-                   && pit->isInset(pos)
-                   && (inset = (UpdatableInset *)pit->getInset(pos))
-                   && inset->isTextInset()
-                   && inset->searchForward(bv, str, cs, mw))
-                       return SR_FOUND_NOUPDATE;
-
-               if (++pos >= pit->size()) {
-                       ++pit;
-                       pos = 0;
-               }
-       }
+       for (; cur; cur.backwardChar())
+               if (cur.inTexted() && match(cur.paragraph(), cur.pos()))
+                       return true;
+       return false;
+}
 
-       if (pit != pend) {
-               text->setCursor(pit, pos);
-               return SR_FOUND;
-       } else
-               return SR_NOT_FOUND;
+
+bool findChange(DocIterator & cur)
+{
+       for (; cur; cur.forwardChar())
+               if (cur.inTexted() && !cur.paragraph().empty() &&
+                   cur.paragraph().lookupChange(cur.pos())
+                   != Change::UNCHANGED)
+                       return true;
+       return false;
 }
 
 
-// backward search:
-// if the string can be found: return true and set the cursor to
-// the new position, cs = casesensitive, mw = matchword
-SearchResult searchBackward(BufferView * bv, LyXText * text,
-                           string const & str,
-                           bool const & cs, bool const & mw)
+bool searchAllowed(BufferView * bv, string const & str)
 {
-       ParagraphList::iterator pit = text->cursor.par();
-       ParagraphList::iterator pbegin = text->ownerParagraphs().begin();
-       pos_type pos = text->cursor.pos();
-
-       // skip past a match at the current cursor pos
-       if (pos > 0) {
-               --pos;
-       } else if (pit != pbegin) {
-               --pit;
-               pos = pit->size();
-       } else {
-               return SR_NOT_FOUND;
+       if (str.empty()) {
+               Alert::error(_("Search error"), _("Search string is empty"));
+               return false;
        }
+       return bv->available();
+}
 
-       while (true) {
-               if (pos < pit->size()) {
-                       if (pit->isInset(pos) && pit->getInset(pos)->isTextInset()) {
-                               UpdatableInset * inset = (UpdatableInset *)pit->getInset(pos);
-                               if (inset->searchBackward(bv, str, cs, mw))
-                                       return SR_FOUND_NOUPDATE;
-                       }
-
-                       if (isStringInText(*pit, pos, str, cs, mw)) {
-                               text->setCursor(pit, pos);
-                               return SR_FOUND;
-                       }
-               }
 
-               if (pos == 0 && pit == pbegin)
-                       break;
+bool find(BufferView * bv, string const & searchstr, bool cs, bool mw, bool fw)
+{
+       if (!searchAllowed(bv, searchstr))
+               return false;
 
-               if (pos > 0) {
-                       --pos;
-               } else if (pit != pbegin) {
-                       --pit;
-                       pos = pit->size();
-               }
-       }
+       DocIterator cur = bv->cursor();
 
-       return SR_NOT_FOUND;
-}
+       MatchString const match(searchstr, cs, mw);
+
+       bool found = fw ? findForward(cur, match) : findBackwards(cur, match);
 
-} // anon namespace
+       if (found)
+               bv->putSelectionAt(cur, searchstr.length(), !fw);
+
+       return found;
+}
 
 
-int replace(BufferView * bv,
+int replaceAll(BufferView * bv,
               string const & searchstr, string const & replacestr,
-              bool forward, bool casesens, bool matchwrd, bool replaceall,
-              bool once)
+              bool cs, bool mw)
 {
-       if (!bv->available() || bv->buffer()->isReadonly())
-               return 0;
+       Buffer & buf = *bv->buffer();
 
-       // CutSelection cannot cut a single space, so we have to stop
-       // in order to avoid endless loop :-(
-       if (searchstr.length() == 0
-               || (searchstr.length() == 1 && searchstr[0] == ' ')) {
-#ifdef WITH_WARNINGS
-#warning BLECH. If we have an LFUN for replace, we can sort of fix this bogosity
-#endif
-               Alert::error(_("Cannot replace"),
-                       _("You cannot replace a single space or "
-                         "an empty character."));
+       if (!searchAllowed(bv, searchstr) || buf.isReadonly())
                return 0;
-       }
 
-       // now we can start searching for the first
-       // start at top if replaceall
-       LyXText * text = bv->getLyXText();
-       bool fw = forward;
-       if (replaceall) {
-               text->clearSelection();
-               bv->unlockInset(bv->theLockingInset());
-               text = bv->text;
-               text->cursorTop();
-               // override search direction because we search top to bottom
-               fw = true;
-       }
+       recordUndoFullDocument(bv->cursor());
 
-       // if nothing selected or selection does not equal search string
-       // search and select next occurance and return if no replaceall
-       string str1;
-       string str2;
-       if (casesens) {
-               str1 = searchstr;
-               str2 = text->selectionAsString(*bv->buffer(), false);
-       } else {
-               str1 = lowercase(searchstr);
-               str2 = lowercase(text->selectionAsString(*bv->buffer(), false));
-       }
-       if (str1 != str2) {
-               if (!find(bv, searchstr, fw, casesens, matchwrd) ||
-                       !replaceall) {
-                       return 0;
-               }
-       }
+       MatchString const match(searchstr, cs, mw);
+       int num = 0;
 
-       bool found = false;
-       int replace_count = 0;
-       do {
-               text = bv->getLyXText();
-               // We have to do this check only because mathed insets don't
-               // return their own LyXText but the LyXText of it's parent!
-               if (!bv->theLockingInset() ||
-                       ((text != bv->text) &&
-                        (text->inset_owner == text->inset_owner->getLockingInset()))) {
-                       text->replaceSelectionWithString(replacestr);
-                       text->setSelectionRange(replacestr.length());
-                       ++replace_count;
-               }
-               if (!once)
-                       found = find(bv, searchstr, fw, casesens, matchwrd);
-       } while (!once && replaceall && found);
+       int const rsize = replacestr.size();
+       int const ssize = searchstr.size();
 
-       // FIXME: should be called via an LFUN
-       bv->buffer()->markDirty();
-       bv->update();
+       DocIterator cur = doc_iterator_begin(buf.inset());
+       while (findForward(cur, match)) {
+               lyx::pos_type pos = cur.pos();
+               LyXFont const font
+                       = cur.paragraph().getFontSettings(buf.params(), pos);
+               int striked = ssize - cur.paragraph().erase(pos, pos + ssize);
+               cur.paragraph().insert(pos, replacestr, font);
+               for (int i = 0; i < rsize + striked; ++i)
+                       cur.forwardChar();
+               ++num;
+       }
 
-       return replace_count;
+       bv->text()->init(bv);
+       bv->putSelectionAt(doc_iterator_begin(buf.inset()), 0, false);
+       if (num)
+               buf.markDirty();
+       return num;
 }
 
 
-bool find(BufferView * bv,
-            string const & searchstr, bool forward,
-            bool casesens, bool matchwrd)
+bool stringSelected(BufferView * bv, string const & searchstr,
+                   bool cs, bool mw, bool fw)
 {
-       if (!bv->available() || searchstr.empty())
+       // if nothing selected or selection does not equal search
+       // string search and select next occurance and return
+       string const & str1 = searchstr;
+       string const str2 = bv->cursor().selectionAsString(false);
+       if ((cs && str1 != str2) || lowercase(str1) != lowercase(str2)) {
+               find(bv, searchstr, cs, mw, fw);
                return false;
-
-       if (bv->theLockingInset()) {
-               bool found = forward ?
-                       bv->theLockingInset()->searchForward(bv, searchstr, casesens, matchwrd) :
-                       bv->theLockingInset()->searchBackward(bv, searchstr, casesens, matchwrd);
-               // We found the stuff inside the inset so we don't have to
-               // do anything as the inset did all the update for us!
-               if (found)
-                       return true;
-               // We now are in the main text but if we did a forward
-               // search we have to put the cursor behind the inset.
-               if (forward) {
-                       bv->text->cursorRight(true);
-               }
        }
-       // If we arrive here we are in the main text again so we
-       // just start searching from the root LyXText at the position
-       // we are!
-       LyXText * text = bv->text;
-
-
-       if (text->selection.set())
-               text->cursor = forward ?
-                       text->selection.end : text->selection.start;
-
-       text->clearSelection();
-
-       SearchResult result = forward ?
-               searchForward(bv, text, searchstr, casesens, matchwrd) :
-               searchBackward(bv, text, searchstr, casesens, matchwrd);
-
-       bool found = true;
-       // If we found the cursor inside an inset we will get back
-       // SR_FOUND_NOUPDATE and we don't have to do anything as the
-       // inset did it already.
-       if (result == SR_FOUND) {
-               bv->unlockInset(bv->theLockingInset());
-               text->setSelectionRange(searchstr.length());
-       } else if (result == SR_NOT_FOUND) {
-               bv->unlockInset(bv->theLockingInset());
-               found = false;
-       }
-       bv->update();
 
-       return found;
+       return true;
 }
 
 
-SearchResult find(BufferView * bv, LyXText * text,
-                    string const & searchstr, bool forward,
-                    bool casesens, bool matchwrd)
+int replace(BufferView * bv, string const & searchstr,
+      string const & replacestr, bool cs, bool mw, bool fw)
 {
-       if (text->selection.set())
-               text->cursor = forward ?
-                       text->selection.end : text->selection.start;
+       if (!searchAllowed(bv, searchstr) || bv->buffer()->isReadonly())
+               return 0;
 
-       text->clearSelection();
+       if (!stringSelected(bv, searchstr, cs, mw, fw))
+               return 0;
 
-       SearchResult result = forward ?
-               searchForward(bv, text, searchstr, casesens, matchwrd) :
-               searchBackward(bv, text, searchstr, casesens, matchwrd);
+       LCursor & cur = bv->cursor();
+       lyx::cap::replaceSelectionWithString(cur, replacestr);
+       lyx::cap::setSelectionRange(cur, replacestr.length());
+       cur.top() = fw ? cur.selEnd() : cur.selBegin();
+       bv->buffer()->markDirty();
+       find(bv, searchstr, cs, mw, fw);
+       bv->update();
 
-       return result;
+       return 1;
 }
 
+} // namespace anon
 
 
+namespace lyx {
+namespace find {
 
-SearchResult nextChange(BufferView * bv, LyXText * text, pos_type & length)
+string const find2string(string const & search,
+                        bool casesensitive, bool matchword, bool forward)
 {
-       ParagraphList::iterator pit = text->cursor.par();
-       ParagraphList::iterator pend = text->ownerParagraphs().end();
-       pos_type pos = text->cursor.pos();
+       ostringstream ss;
+       ss << search << '\n'
+          << int(casesensitive) << ' '
+          << int(matchword) << ' '
+          << int(forward);
+       return ss.str();
+}
 
-       while (pit != pend) {
-               pos_type parsize = pit->size();
 
-               if (pos < parsize) {
-                       if ((!parsize || pos != parsize)
-                               && pit->lookupChange(pos) != Change::UNCHANGED)
-                               break;
+string const replace2string(string const & search, string const & replace,
+                           bool casesensitive, bool matchword,
+                           bool all, bool forward)
+{
+       ostringstream ss;
+       ss << search << '\n'
+          << replace << '\n'
+          << int(casesensitive) << ' '
+          << int(matchword) << ' '
+          << int(all) << ' '
+          << int(forward);
+       return ss.str();
+}
 
-                       if (pit->isInset(pos) && pit->getInset(pos)->isTextInset()) {
-                               UpdatableInset * inset = (UpdatableInset *)pit->getInset(pos);
-                               if (inset->nextChange(bv, length))
-                                       return SR_FOUND_NOUPDATE;
-                       }
-               }
 
-               ++pos;
+void find(BufferView * bv, FuncRequest const & ev)
+{
+       if (!bv || ev.action != LFUN_WORD_FIND)
+               return;
 
-               if (pos >= parsize) {
-                       ++pit;
-                       pos = 0;
-               }
-       }
+       lyxerr << "find called, cmd: " << ev << std::endl;
 
-       if (pit == pend)
-               return SR_NOT_FOUND;
+       // data is of the form
+       // "<search>
+       //  <casesensitive> <matchword> <forward>"
+       string search;
+       string howto = split(ev.argument, search, '\n');
 
-       text->setCursor(pit, pos);
-       Change orig_change = pit->lookupChangeFull(pos);
-       pos_type parsize = pit->size();
-       pos_type end = pos;
+       bool casesensitive = parse_bool(howto);
+       bool matchword     = parse_bool(howto);
+       bool forward       = parse_bool(howto);
 
-       for (; end != parsize; ++end) {
-               Change change = pit->lookupChangeFull(end);
-               if (change != orig_change) {
-                       // slight UI optimisation: for replacements, we get
-                       // text like : _old_new. Consider that as one change.
-                       if (!(orig_change.type == Change::DELETED &&
-                               change.type == Change::INSERTED))
-                               break;
-               }
-       }
-       length = end - pos;
-       return SR_FOUND;
+       bool const found = ::find(bv, search,
+                                 casesensitive, matchword, forward);
+
+       if (!found)
+               bv->owner()->message(_("String not found!"));
 }
 
 
-SearchResult findNextChange(BufferView * bv, LyXText * text, pos_type & length)
+void replace(BufferView * bv, FuncRequest const & ev)
 {
-       if (text->selection.set())
-               text->cursor = text->selection.end;
-
-       text->clearSelection();
-
-       return nextChange(bv, text, length);
+       if (!bv || ev.action != LFUN_WORD_REPLACE)
+               return;
+
+       // data is of the form
+       // "<search>
+       //  <replace>
+       //  <casesensitive> <matchword> <all> <forward>"
+       string search;
+       string replace;
+       string howto = split(ev.argument, search, '\n');
+       howto = split(howto, replace, '\n');
+
+       bool casesensitive = parse_bool(howto);
+       bool matchword     = parse_bool(howto);
+       bool all           = parse_bool(howto);
+       bool forward       = parse_bool(howto);
+
+       LyXView * lv = bv->owner();
+
+       int const replace_count = all
+               ? ::replaceAll(bv, search, replace, casesensitive, matchword)
+               : ::replace(bv, search, replace, casesensitive, matchword, forward);
+
+       if (replace_count == 0) {
+               lv->message(_("String not found!"));
+       } else {
+               if (replace_count == 1) {
+                       lv->message(_("String has been replaced."));
+               } else {
+                       string str = tostr(replace_count);
+                       str += _(" strings have been replaced.");
+                       lv->message(str);
+               }
+       }
 }
 
 
@@ -368,48 +338,31 @@ bool findNextChange(BufferView * bv)
        if (!bv->available())
                return false;
 
-       pos_type length;
-
-       if (bv->theLockingInset()) {
-               bool found = bv->theLockingInset()->nextChange(bv, length);
-
-               // We found the stuff inside the inset so we don't have to
-               // do anything as the inset did all the update for us!
-               if (found)
-                       return true;
-
-               // We now are in the main text but if we did a forward
-               // search we have to put the cursor behind the inset.
-               bv->text->cursorRight(true);
-       }
-       // If we arrive here we are in the main text again so we
-       // just start searching from the root LyXText at the position
-       // we are!
-       LyXText * text = bv->text;
-
-       if (text->selection.set())
-               text->cursor = text->selection.end;
+       DocIterator cur = DocIterator(bv->cursor());
 
-       text->clearSelection();
+       if (!findChange(cur))
+               return false;
 
-       SearchResult result = nextChange(bv, text, length);
+       Paragraph const & par = cur.paragraph();
+       pos_type pos = cur.pos();
 
-       bool found = true;
+       Change orig_change = par.lookupChangeFull(pos);
+       pos_type parsize = par.size();
+       pos_type end = pos;
 
-       // If we found the cursor inside an inset we will get back
-       // SR_FOUND_NOUPDATE and we don't have to do anything as the
-       // inset did it already.
-       if (result == SR_FOUND) {
-               bv->unlockInset(bv->theLockingInset());
-               text->setSelectionRange(length);
-       } else if (result == SR_NOT_FOUND) {
-               bv->unlockInset(bv->theLockingInset());
-               found = false;
+       for (; end != parsize; ++end) {
+               Change change = par.lookupChangeFull(end);
+               if (change != orig_change) {
+                       // slight UI optimisation: for replacements, we get
+                       // text like : _old_new. Consider that as one change.
+                       if (!(orig_change.type == Change::DELETED &&
+                               change.type == Change::INSERTED))
+                               break;
+               }
        }
-
-       bv->update();
-
-       return found;
+       pos_type length = end - pos;
+       bv->putSelectionAt(cur, length, true);
+       return true;
 }
 
 } // find namespace