2003-08-23 00:17:00 +00:00
|
|
|
/**
|
2007-04-26 04:41:58 +00:00
|
|
|
* \file lyxfind.cpp
|
2003-08-23 00:17:00 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
2008-12-20 16:00:47 +00:00
|
|
|
* License details can be found in the file COPYING.
|
2003-08-23 00:17:00 +00:00
|
|
|
*
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Lars Gullik Bjønnes
|
2003-08-23 00:17:00 +00:00
|
|
|
* \author John Levon
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Jürgen Vigna
|
2003-11-04 12:01:15 +00:00
|
|
|
* \author Alfredo Braunstein
|
2008-11-15 23:30:27 +00:00
|
|
|
* \author Tommaso Cucinotta
|
2003-08-23 00:17:00 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
2001-03-06 10:20:33 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "lyxfind.h"
|
2003-09-09 22:13:45 +00:00
|
|
|
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "Buffer.h"
|
2006-12-29 23:54:48 +00:00
|
|
|
#include "buffer_funcs.h"
|
2010-01-10 12:37:50 +00:00
|
|
|
#include "BufferList.h"
|
2008-11-15 23:30:27 +00:00
|
|
|
#include "BufferParams.h"
|
|
|
|
#include "BufferView.h"
|
2007-10-18 15:29:51 +00:00
|
|
|
#include "Changes.h"
|
2008-11-15 23:30:27 +00:00
|
|
|
#include "Cursor.h"
|
|
|
|
#include "CutAndPaste.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "FuncRequest.h"
|
2010-02-09 16:11:13 +00:00
|
|
|
#include "LyX.h"
|
2008-11-15 23:30:27 +00:00
|
|
|
#include "output_latex.h"
|
2010-01-10 12:37:50 +00:00
|
|
|
#include "OutputParams.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "Paragraph.h"
|
|
|
|
#include "ParIterator.h"
|
2008-11-15 23:30:27 +00:00
|
|
|
#include "TexRow.h"
|
|
|
|
#include "Text.h"
|
2010-01-10 12:37:50 +00:00
|
|
|
|
2011-02-07 20:36:40 +00:00
|
|
|
#include "frontends/Application.h"
|
2010-01-10 12:37:50 +00:00
|
|
|
#include "frontends/alert.h"
|
2008-11-15 23:30:27 +00:00
|
|
|
|
|
|
|
#include "mathed/InsetMath.h"
|
|
|
|
#include "mathed/InsetMathGrid.h"
|
|
|
|
#include "mathed/InsetMathHull.h"
|
|
|
|
#include "mathed/MathStream.h"
|
2011-05-29 13:40:34 +00:00
|
|
|
#include "mathed/MathSupport.h"
|
2003-09-09 22:13:45 +00:00
|
|
|
|
2005-01-06 16:39:35 +00:00
|
|
|
#include "support/convert.h"
|
2008-02-18 07:14:42 +00:00
|
|
|
#include "support/debug.h"
|
2006-12-10 11:52:46 +00:00
|
|
|
#include "support/docstream.h"
|
2013-05-20 01:07:53 +00:00
|
|
|
#include "support/FileName.h"
|
2008-02-18 07:14:42 +00:00
|
|
|
#include "support/gettext.h"
|
2008-12-20 16:00:47 +00:00
|
|
|
#include "support/lassert.h"
|
2010-01-10 12:37:50 +00:00
|
|
|
#include "support/lstrings.h"
|
2009-12-30 18:40:18 +00:00
|
|
|
|
2010-06-29 17:09:40 +00:00
|
|
|
#include "support/regex.h"
|
2008-11-15 23:30:27 +00:00
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2007-12-12 18:57:56 +00:00
|
|
|
using namespace lyx::support;
|
2007-12-12 10:16:00 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
2004-01-07 17:00:03 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2006-12-10 11:52:46 +00:00
|
|
|
bool parse_bool(docstring & howto)
|
2004-01-07 17:00:03 +00:00
|
|
|
{
|
|
|
|
if (howto.empty())
|
|
|
|
return false;
|
2006-12-10 11:52:46 +00:00
|
|
|
docstring var;
|
2004-01-07 17:00:03 +00:00
|
|
|
howto = split(howto, var, ' ');
|
2008-11-15 23:30:27 +00:00
|
|
|
return var == "1";
|
2004-01-07 17:00:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-22 07:50:34 +00:00
|
|
|
class MatchString : public binary_function<Paragraph, pos_type, int>
|
2003-07-27 12:02:58 +00:00
|
|
|
{
|
2003-11-04 12:01:15 +00:00
|
|
|
public:
|
2006-12-10 11:52:46 +00:00
|
|
|
MatchString(docstring const & str, bool cs, bool mw)
|
2010-10-13 18:24:53 +00:00
|
|
|
: str(str), case_sens(cs), whole_words(mw)
|
2004-01-07 14:07:46 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
// returns true if the specified string is at the specified position
|
2007-06-10 15:07:21 +00:00
|
|
|
// del specifies whether deleted strings in ct mode will be considered
|
2010-11-22 07:50:34 +00:00
|
|
|
int operator()(Paragraph const & par, pos_type pos, bool del = true) const
|
2004-01-07 17:00:03 +00:00
|
|
|
{
|
2010-10-13 18:24:53 +00:00
|
|
|
return par.find(str, case_sens, whole_words, pos, del);
|
2003-07-27 12:02:58 +00:00
|
|
|
}
|
2004-01-26 17:00:09 +00:00
|
|
|
|
2003-11-04 12:01:15 +00:00
|
|
|
private:
|
2004-01-07 14:07:46 +00:00
|
|
|
// search string
|
2006-12-10 11:52:46 +00:00
|
|
|
docstring str;
|
2004-01-07 14:07:46 +00:00
|
|
|
// case sensitive
|
2010-10-13 18:24:53 +00:00
|
|
|
bool case_sens;
|
2004-01-07 14:07:46 +00:00
|
|
|
// match whole words only
|
2010-10-13 18:24:53 +00:00
|
|
|
bool whole_words;
|
2003-11-04 12:01:15 +00:00
|
|
|
};
|
2003-07-27 12:02:58 +00:00
|
|
|
|
|
|
|
|
2010-11-22 07:50:34 +00:00
|
|
|
int findForward(DocIterator & cur, MatchString const & match,
|
2012-10-23 20:58:10 +00:00
|
|
|
bool find_del = true)
|
2001-03-06 10:20:33 +00:00
|
|
|
{
|
2004-04-01 08:58:45 +00:00
|
|
|
for (; cur; cur.forwardChar())
|
2010-11-22 07:50:34 +00:00
|
|
|
if (cur.inTexted()) {
|
|
|
|
int len = match(cur.paragraph(), cur.pos(), find_del);
|
|
|
|
if (len > 0)
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
return 0;
|
2003-11-04 12:01:15 +00:00
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-08-13 10:09:50 +00:00
|
|
|
|
2010-11-22 07:50:34 +00:00
|
|
|
int findBackwards(DocIterator & cur, MatchString const & match,
|
2012-10-23 20:58:10 +00:00
|
|
|
bool find_del = true)
|
2003-11-04 12:01:15 +00:00
|
|
|
{
|
2004-09-17 16:28:47 +00:00
|
|
|
while (cur) {
|
|
|
|
cur.backwardChar();
|
2010-11-22 07:50:34 +00:00
|
|
|
if (cur.inTexted()) {
|
|
|
|
int len = match(cur.paragraph(), cur.pos(), find_del);
|
|
|
|
if (len > 0)
|
|
|
|
return len;
|
|
|
|
}
|
2004-09-17 16:28:47 +00:00
|
|
|
}
|
2010-11-22 07:50:34 +00:00
|
|
|
return 0;
|
2003-11-04 12:01:15 +00:00
|
|
|
}
|
2003-03-19 14:45:22 +00:00
|
|
|
|
2003-11-04 12:01:15 +00:00
|
|
|
|
2010-10-13 18:27:40 +00:00
|
|
|
bool searchAllowed(docstring const & str)
|
2001-03-06 10:20:33 +00:00
|
|
|
{
|
2003-11-04 12:01:15 +00:00
|
|
|
if (str.empty()) {
|
2007-11-13 23:50:28 +00:00
|
|
|
frontend::Alert::error(_("Search error"), _("Search string is empty"));
|
2001-07-20 14:18:48 +00:00
|
|
|
return false;
|
|
|
|
}
|
2007-08-21 13:03:55 +00:00
|
|
|
return true;
|
2001-03-06 10:20:33 +00:00
|
|
|
}
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2003-11-10 09:06:48 +00:00
|
|
|
|
2010-10-13 18:19:21 +00:00
|
|
|
bool findOne(BufferView * bv, docstring const & searchstr,
|
2016-09-14 08:23:39 +00:00
|
|
|
bool case_sens, bool whole, bool forward,
|
|
|
|
bool find_del = true, bool check_wrap = false)
|
2002-06-18 15:44:30 +00:00
|
|
|
{
|
2010-10-13 18:27:40 +00:00
|
|
|
if (!searchAllowed(searchstr))
|
2003-11-04 12:01:15 +00:00
|
|
|
return false;
|
|
|
|
|
2015-05-17 15:27:12 +00:00
|
|
|
DocIterator cur = forward
|
|
|
|
? bv->cursor().selectionEnd()
|
2013-02-22 10:06:25 +00:00
|
|
|
: bv->cursor().selectionBegin();
|
2002-06-18 15:44:30 +00:00
|
|
|
|
2010-10-13 18:24:53 +00:00
|
|
|
MatchString const match(searchstr, case_sens, whole);
|
2003-11-17 09:02:10 +00:00
|
|
|
|
2012-10-23 20:58:10 +00:00
|
|
|
int match_len = forward
|
|
|
|
? findForward(cur, match, find_del)
|
|
|
|
: findBackwards(cur, match, find_del);
|
2003-11-17 09:02:10 +00:00
|
|
|
|
2010-11-22 07:50:34 +00:00
|
|
|
if (match_len > 0)
|
|
|
|
bv->putSelectionAt(cur, match_len, !forward);
|
2016-09-14 08:23:39 +00:00
|
|
|
else if (check_wrap) {
|
|
|
|
DocIterator cur_orig(bv->cursor());
|
|
|
|
docstring q;
|
|
|
|
if (forward)
|
|
|
|
q = _("End of file reached while searching forward.\n"
|
|
|
|
"Continue searching from the beginning?");
|
|
|
|
else
|
|
|
|
q = _("Beginning of file reached while searching backward.\n"
|
|
|
|
"Continue searching from the end?");
|
|
|
|
int wrap_answer = frontend::Alert::prompt(_("Wrap search?"),
|
|
|
|
q, 0, 1, _("&Yes"), _("&No"));
|
|
|
|
if (wrap_answer == 0) {
|
|
|
|
if (forward) {
|
|
|
|
bv->cursor().clear();
|
|
|
|
bv->cursor().push_back(CursorSlice(bv->buffer().inset()));
|
|
|
|
} else {
|
|
|
|
bv->cursor().setCursor(doc_iterator_end(&bv->buffer()));
|
|
|
|
bv->cursor().backwardPos();
|
|
|
|
}
|
|
|
|
bv->clearSelection();
|
|
|
|
if (findOne(bv, searchstr, case_sens, whole, forward, find_del, false))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
bv->cursor().setCursor(cur_orig);
|
|
|
|
return false;
|
|
|
|
}
|
2002-06-18 15:44:30 +00:00
|
|
|
|
2010-11-22 07:50:34 +00:00
|
|
|
return match_len > 0;
|
2002-06-18 15:44:30 +00:00
|
|
|
}
|
|
|
|
|
2003-03-04 09:27:27 +00:00
|
|
|
|
2003-11-04 12:01:15 +00:00
|
|
|
int replaceAll(BufferView * bv,
|
2006-12-10 11:52:46 +00:00
|
|
|
docstring const & searchstr, docstring const & replacestr,
|
2010-10-13 18:24:53 +00:00
|
|
|
bool case_sens, bool whole)
|
2003-02-08 19:18:01 +00:00
|
|
|
{
|
2007-08-21 13:03:55 +00:00
|
|
|
Buffer & buf = bv->buffer();
|
2003-02-08 19:18:01 +00:00
|
|
|
|
2010-10-13 18:27:40 +00:00
|
|
|
if (!searchAllowed(searchstr) || buf.isReadonly())
|
2003-11-04 12:01:15 +00:00
|
|
|
return 0;
|
2004-01-26 17:00:09 +00:00
|
|
|
|
2010-03-21 10:36:59 +00:00
|
|
|
DocIterator cur_orig(bv->cursor());
|
|
|
|
|
2010-10-13 18:24:53 +00:00
|
|
|
MatchString const match(searchstr, case_sens, whole);
|
2003-11-04 12:01:15 +00:00
|
|
|
int num = 0;
|
|
|
|
|
|
|
|
int const rsize = replacestr.size();
|
|
|
|
int const ssize = searchstr.size();
|
2003-11-17 09:02:10 +00:00
|
|
|
|
2008-08-15 19:24:56 +00:00
|
|
|
Cursor cur(*bv);
|
2008-11-17 11:46:07 +00:00
|
|
|
cur.setCursor(doc_iterator_begin(&buf));
|
2010-11-22 07:50:34 +00:00
|
|
|
int match_len = findForward(cur, match, false);
|
|
|
|
while (match_len > 0) {
|
2008-10-28 18:00:21 +00:00
|
|
|
// Backup current cursor position and font.
|
|
|
|
pos_type const pos = cur.pos();
|
|
|
|
Font const font = cur.paragraph().getFontSettings(buf.params(), pos);
|
2008-08-15 19:24:56 +00:00
|
|
|
cur.recordUndo();
|
2012-10-23 20:58:10 +00:00
|
|
|
int striked = ssize -
|
|
|
|
cur.paragraph().eraseChars(pos, pos + match_len,
|
2014-03-29 22:52:36 +00:00
|
|
|
buf.params().track_changes);
|
2006-12-10 11:52:46 +00:00
|
|
|
cur.paragraph().insert(pos, replacestr, font,
|
2014-03-29 22:52:36 +00:00
|
|
|
Change(buf.params().track_changes
|
2012-10-23 20:58:10 +00:00
|
|
|
? Change::INSERTED
|
|
|
|
: Change::UNCHANGED));
|
2004-03-25 09:16:36 +00:00
|
|
|
for (int i = 0; i < rsize + striked; ++i)
|
|
|
|
cur.forwardChar();
|
2003-11-04 12:01:15 +00:00
|
|
|
++num;
|
2010-11-22 07:50:34 +00:00
|
|
|
match_len = findForward(cur, match, false);
|
2003-11-04 12:01:15 +00:00
|
|
|
}
|
2003-11-17 09:02:10 +00:00
|
|
|
|
2008-11-17 11:46:07 +00:00
|
|
|
bv->putSelectionAt(doc_iterator_begin(&buf), 0, false);
|
2010-03-21 10:36:59 +00:00
|
|
|
|
|
|
|
cur_orig.fixIfBroken();
|
|
|
|
bv->setCursor(cur_orig);
|
|
|
|
|
2003-11-04 12:01:15 +00:00
|
|
|
return num;
|
|
|
|
}
|
2003-04-16 00:39:24 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
|
2010-10-14 14:32:58 +00:00
|
|
|
// the idea here is that we are going to replace the string that
|
2015-05-17 15:27:12 +00:00
|
|
|
// is selected IF it is the search string.
|
2010-10-14 14:32:58 +00:00
|
|
|
// if there is a selection, but it is not the search string, then
|
|
|
|
// we basically ignore it. (FIXME We ought to replace only within
|
|
|
|
// the selection.)
|
|
|
|
// if there is no selection, then:
|
|
|
|
// (i) if some search string has been provided, then we find it.
|
|
|
|
// (think of how the dialog works when you hit "replace" the
|
2015-05-17 15:27:12 +00:00
|
|
|
// first time.)
|
2010-10-14 14:32:58 +00:00
|
|
|
// (ii) if no search string has been provided, then we treat the
|
|
|
|
// word the cursor is in as the search string. (why? i have no
|
|
|
|
// idea.) but this only works in text?
|
|
|
|
//
|
2015-05-17 15:27:12 +00:00
|
|
|
// returns the number of replacements made (one, if any) and
|
2010-10-14 14:32:58 +00:00
|
|
|
// whether anything at all was done.
|
|
|
|
pair<bool, int> replaceOne(BufferView * bv, docstring searchstr,
|
2012-10-23 20:58:10 +00:00
|
|
|
docstring const & replacestr, bool case_sens,
|
|
|
|
bool whole, bool forward, bool findnext)
|
2003-11-17 09:02:10 +00:00
|
|
|
{
|
2010-10-14 14:32:58 +00:00
|
|
|
Cursor & cur = bv->cursor();
|
2016-09-14 08:23:39 +00:00
|
|
|
bool found = false;
|
2010-10-14 14:32:58 +00:00
|
|
|
if (!cur.selection()) {
|
|
|
|
// no selection, non-empty search string: find it
|
|
|
|
if (!searchstr.empty()) {
|
2016-09-14 08:23:39 +00:00
|
|
|
found = findOne(bv, searchstr, case_sens, whole, forward, true, findnext);
|
|
|
|
return make_pair(found, 0);
|
2010-10-14 14:32:58 +00:00
|
|
|
}
|
|
|
|
// empty search string
|
|
|
|
if (!cur.inTexted())
|
|
|
|
// bail in math
|
2012-10-23 21:00:13 +00:00
|
|
|
return make_pair(false, 0);
|
2014-02-19 21:18:28 +00:00
|
|
|
// select current word and treat it as the search string.
|
|
|
|
// This causes a minor bug as undo will restore this selection,
|
|
|
|
// which the user did not create (#8986).
|
2010-10-14 14:32:58 +00:00
|
|
|
cur.innerText()->selectWord(cur, WHOLE_WORD);
|
|
|
|
searchstr = cur.selectionAsString(false);
|
2009-07-04 23:02:27 +00:00
|
|
|
}
|
2015-05-17 15:27:12 +00:00
|
|
|
|
2010-10-14 14:32:58 +00:00
|
|
|
// if we still don't have a search string, report the error
|
|
|
|
// and abort.
|
|
|
|
if (!searchAllowed(searchstr))
|
2012-10-23 21:00:13 +00:00
|
|
|
return make_pair(false, 0);
|
2015-05-17 15:27:12 +00:00
|
|
|
|
2010-10-14 14:32:58 +00:00
|
|
|
bool have_selection = cur.selection();
|
|
|
|
docstring const selected = cur.selectionAsString(false);
|
2015-05-17 15:27:12 +00:00
|
|
|
bool match =
|
2012-10-23 20:58:10 +00:00
|
|
|
case_sens
|
|
|
|
? searchstr == selected
|
|
|
|
: compare_no_case(searchstr, selected) == 0;
|
2010-10-14 14:32:58 +00:00
|
|
|
|
|
|
|
// no selection or current selection is not search word:
|
|
|
|
// just find the search word
|
|
|
|
if (!have_selection || !match) {
|
2016-09-14 08:23:39 +00:00
|
|
|
found = findOne(bv, searchstr, case_sens, whole, forward, true, findnext);
|
|
|
|
return make_pair(found, 0);
|
2003-11-17 09:02:10 +00:00
|
|
|
}
|
|
|
|
|
2010-10-14 14:32:58 +00:00
|
|
|
// we're now actually ready to replace. if the buffer is
|
|
|
|
// read-only, we can't, though.
|
|
|
|
if (bv->buffer().isReadonly())
|
2012-10-23 21:00:13 +00:00
|
|
|
return make_pair(false, 0);
|
2003-11-17 09:02:10 +00:00
|
|
|
|
2012-04-18 10:44:31 +00:00
|
|
|
cap::replaceSelectionWithString(cur, replacestr);
|
2010-12-30 15:34:09 +00:00
|
|
|
if (forward) {
|
|
|
|
cur.pos() += replacestr.length();
|
2013-04-25 21:27:10 +00:00
|
|
|
LASSERT(cur.pos() <= cur.lastpos(),
|
|
|
|
cur.pos() = cur.lastpos());
|
2010-12-30 15:34:09 +00:00
|
|
|
}
|
2011-05-18 20:33:57 +00:00
|
|
|
if (findnext)
|
2016-09-14 08:23:39 +00:00
|
|
|
findOne(bv, searchstr, case_sens, whole, forward, false, findnext);
|
2004-01-26 17:00:09 +00:00
|
|
|
|
2012-10-23 21:00:13 +00:00
|
|
|
return make_pair(true, 1);
|
2003-11-04 12:01:15 +00:00
|
|
|
}
|
|
|
|
|
2004-03-25 09:16:36 +00:00
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
2006-12-10 11:52:46 +00:00
|
|
|
docstring const find2string(docstring const & search,
|
2012-10-23 20:58:10 +00:00
|
|
|
bool casesensitive, bool matchword, bool forward)
|
2004-03-25 09:16:36 +00:00
|
|
|
{
|
2006-12-10 11:52:46 +00:00
|
|
|
odocstringstream ss;
|
2004-03-25 09:16:36 +00:00
|
|
|
ss << search << '\n'
|
|
|
|
<< int(casesensitive) << ' '
|
|
|
|
<< int(matchword) << ' '
|
|
|
|
<< int(forward);
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-04 23:02:27 +00:00
|
|
|
docstring const replace2string(docstring const & replace,
|
2012-10-23 20:58:10 +00:00
|
|
|
docstring const & search,
|
|
|
|
bool casesensitive, bool matchword,
|
|
|
|
bool all, bool forward, bool findnext)
|
2004-03-25 09:16:36 +00:00
|
|
|
{
|
2006-12-10 11:52:46 +00:00
|
|
|
odocstringstream ss;
|
2009-07-04 23:02:27 +00:00
|
|
|
ss << replace << '\n'
|
|
|
|
<< search << '\n'
|
2004-03-25 09:16:36 +00:00
|
|
|
<< int(casesensitive) << ' '
|
|
|
|
<< int(matchword) << ' '
|
|
|
|
<< int(all) << ' '
|
2011-05-18 20:33:57 +00:00
|
|
|
<< int(forward) << ' '
|
|
|
|
<< int(findnext);
|
2004-03-25 09:16:36 +00:00
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-13 18:53:41 +00:00
|
|
|
bool lyxfind(BufferView * bv, FuncRequest const & ev)
|
2004-03-25 09:16:36 +00:00
|
|
|
{
|
2010-04-09 19:00:42 +00:00
|
|
|
if (!bv || ev.action() != LFUN_WORD_FIND)
|
2008-02-10 18:52:32 +00:00
|
|
|
return false;
|
2004-03-25 09:16:36 +00:00
|
|
|
|
2007-12-12 19:28:07 +00:00
|
|
|
//lyxerr << "find called, cmd: " << ev << endl;
|
2004-03-25 09:16:36 +00:00
|
|
|
|
|
|
|
// data is of the form
|
|
|
|
// "<search>
|
|
|
|
// <casesensitive> <matchword> <forward>"
|
2006-12-10 11:52:46 +00:00
|
|
|
docstring search;
|
|
|
|
docstring howto = split(ev.argument(), search, '\n');
|
2004-03-25 09:16:36 +00:00
|
|
|
|
|
|
|
bool casesensitive = parse_bool(howto);
|
|
|
|
bool matchword = parse_bool(howto);
|
|
|
|
bool forward = parse_bool(howto);
|
|
|
|
|
2016-09-14 08:23:39 +00:00
|
|
|
return findOne(bv, search, casesensitive, matchword, forward, true, true);
|
2004-03-25 09:16:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-17 15:27:12 +00:00
|
|
|
bool lyxreplace(BufferView * bv,
|
2010-10-14 14:32:58 +00:00
|
|
|
FuncRequest const & ev, bool has_deleted)
|
2004-03-25 09:16:36 +00:00
|
|
|
{
|
2010-04-09 19:00:42 +00:00
|
|
|
if (!bv || ev.action() != LFUN_WORD_REPLACE)
|
2010-10-13 18:53:41 +00:00
|
|
|
return false;
|
2004-03-25 09:16:36 +00:00
|
|
|
|
|
|
|
// data is of the form
|
|
|
|
// "<search>
|
|
|
|
// <replace>
|
2011-05-18 20:33:57 +00:00
|
|
|
// <casesensitive> <matchword> <all> <forward> <findnext>"
|
2006-12-10 11:52:46 +00:00
|
|
|
docstring search;
|
|
|
|
docstring rplc;
|
2009-07-04 23:02:27 +00:00
|
|
|
docstring howto = split(ev.argument(), rplc, '\n');
|
|
|
|
howto = split(howto, search, '\n');
|
2004-03-25 09:16:36 +00:00
|
|
|
|
|
|
|
bool casesensitive = parse_bool(howto);
|
|
|
|
bool matchword = parse_bool(howto);
|
|
|
|
bool all = parse_bool(howto);
|
|
|
|
bool forward = parse_bool(howto);
|
2011-05-19 05:50:55 +00:00
|
|
|
bool findnext = howto.empty() ? true : parse_bool(howto);
|
2004-03-25 09:16:36 +00:00
|
|
|
|
2010-10-14 14:32:58 +00:00
|
|
|
bool update = false;
|
|
|
|
|
2007-06-19 21:48:04 +00:00
|
|
|
if (!has_deleted) {
|
2015-09-20 08:42:35 +00:00
|
|
|
int replace_count = 0;
|
2010-10-14 14:32:58 +00:00
|
|
|
if (all) {
|
|
|
|
replace_count = replaceAll(bv, search, rplc, casesensitive, matchword);
|
|
|
|
update = replace_count > 0;
|
|
|
|
} else {
|
2012-10-23 20:58:10 +00:00
|
|
|
pair<bool, int> rv =
|
2011-05-18 20:33:57 +00:00
|
|
|
replaceOne(bv, search, rplc, casesensitive, matchword, forward, findnext);
|
2010-10-14 14:32:58 +00:00
|
|
|
update = rv.first;
|
|
|
|
replace_count = rv.second;
|
|
|
|
}
|
2009-05-07 12:40:35 +00:00
|
|
|
|
2010-10-13 18:59:24 +00:00
|
|
|
Buffer const & buf = bv->buffer();
|
2010-10-14 14:32:58 +00:00
|
|
|
if (!update) {
|
2006-08-23 21:14:43 +00:00
|
|
|
// emit message signal.
|
2013-04-01 05:35:48 +00:00
|
|
|
buf.message(_("String not found."));
|
2004-03-25 09:16:36 +00:00
|
|
|
} else {
|
2010-10-14 14:32:58 +00:00
|
|
|
if (replace_count == 0) {
|
|
|
|
buf.message(_("String found."));
|
|
|
|
} else if (replace_count == 1) {
|
2007-08-21 13:03:55 +00:00
|
|
|
buf.message(_("String has been replaced."));
|
2007-06-19 21:48:04 +00:00
|
|
|
} else {
|
2015-05-17 15:27:12 +00:00
|
|
|
docstring const str =
|
2010-10-13 18:57:57 +00:00
|
|
|
bformat(_("%1$d strings have been replaced."), replace_count);
|
2007-08-21 13:03:55 +00:00
|
|
|
buf.message(str);
|
2007-06-19 21:48:04 +00:00
|
|
|
}
|
2004-03-25 09:16:36 +00:00
|
|
|
}
|
2011-05-18 20:33:57 +00:00
|
|
|
} else if (findnext) {
|
2007-06-19 21:48:04 +00:00
|
|
|
// if we have deleted characters, we do not replace at all, but
|
|
|
|
// rather search for the next occurence
|
2016-09-14 08:23:39 +00:00
|
|
|
if (findOne(bv, search, casesensitive, matchword, forward, true, findnext))
|
2010-10-14 14:32:58 +00:00
|
|
|
update = true;
|
2008-02-10 19:05:09 +00:00
|
|
|
else
|
2013-04-01 05:35:48 +00:00
|
|
|
bv->message(_("String not found."));
|
2004-03-25 09:16:36 +00:00
|
|
|
}
|
2010-10-14 14:32:58 +00:00
|
|
|
return update;
|
2004-03-25 09:16:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-14 07:58:40 +00:00
|
|
|
bool findNextChange(DocIterator & cur)
|
2004-03-25 09:16:36 +00:00
|
|
|
{
|
2014-10-14 07:58:40 +00:00
|
|
|
for (; cur; cur.forwardPos())
|
|
|
|
if (cur.inTexted() && cur.paragraph().isChanged(cur.pos()))
|
2013-05-06 20:50:26 +00:00
|
|
|
return true;
|
|
|
|
return false;
|
2009-04-05 19:11:25 +00:00
|
|
|
}
|
2004-03-25 09:16:36 +00:00
|
|
|
|
2009-04-05 19:11:25 +00:00
|
|
|
|
2014-10-14 07:58:40 +00:00
|
|
|
bool findPreviousChange(DocIterator & cur)
|
2009-04-05 19:11:25 +00:00
|
|
|
{
|
2014-10-14 07:58:40 +00:00
|
|
|
for (cur.backwardPos(); cur; cur.backwardPos()) {
|
|
|
|
if (cur.inTexted() && cur.paragraph().isChanged(cur.pos()))
|
|
|
|
return true;
|
2009-04-15 22:07:59 +00:00
|
|
|
}
|
2014-10-14 07:58:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
2009-04-15 22:07:59 +00:00
|
|
|
|
2009-04-05 19:11:25 +00:00
|
|
|
|
2014-10-14 07:58:40 +00:00
|
|
|
bool selectChange(Cursor & cur, bool forward)
|
|
|
|
{
|
|
|
|
if (!cur.inTexted() || !cur.paragraph().isChanged(cur.pos()))
|
|
|
|
return false;
|
|
|
|
Change ch = cur.paragraph().lookupChange(cur.pos());
|
2004-03-25 09:16:36 +00:00
|
|
|
|
2014-10-14 07:58:40 +00:00
|
|
|
CursorSlice tip1 = cur.top();
|
|
|
|
for (; tip1.pit() < tip1.lastpit() || tip1.pos() < tip1.lastpos(); tip1.forwardPos()) {
|
|
|
|
Change ch2 = tip1.paragraph().lookupChange(tip1.pos());
|
|
|
|
if (!ch2.isSimilarTo(ch))
|
|
|
|
break;
|
2004-03-25 09:16:36 +00:00
|
|
|
}
|
2014-10-14 07:58:40 +00:00
|
|
|
CursorSlice tip2 = cur.top();
|
|
|
|
for (; tip2.pit() > 0 || tip2.pos() > 0;) {
|
|
|
|
tip2.backwardPos();
|
|
|
|
Change ch2 = tip2.paragraph().lookupChange(tip2.pos());
|
|
|
|
if (!ch2.isSimilarTo(ch)) {
|
|
|
|
// take a step forward to correctly set the selection
|
|
|
|
tip2.forwardPos();
|
|
|
|
break;
|
|
|
|
}
|
2009-04-15 22:07:59 +00:00
|
|
|
}
|
2014-10-14 07:58:40 +00:00
|
|
|
if (forward)
|
|
|
|
swap(tip1, tip2);
|
|
|
|
cur.top() = tip1;
|
|
|
|
cur.bv().mouseSetCursor(cur, false);
|
|
|
|
cur.top() = tip2;
|
|
|
|
cur.bv().mouseSetCursor(cur, true);
|
2004-03-25 09:16:36 +00:00
|
|
|
return true;
|
|
|
|
}
|
2014-10-14 07:58:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
|
|
bool findChange(BufferView * bv, bool forward)
|
|
|
|
{
|
|
|
|
Cursor cur(*bv);
|
|
|
|
cur.setCursor(forward ? bv->cursor().selectionEnd()
|
|
|
|
: bv->cursor().selectionBegin());
|
|
|
|
forward ? findNextChange(cur) : findPreviousChange(cur);
|
|
|
|
return selectChange(cur, forward);
|
2013-05-06 20:50:26 +00:00
|
|
|
}
|
|
|
|
|
2014-10-14 07:58:40 +00:00
|
|
|
}
|
2013-05-06 20:50:26 +00:00
|
|
|
|
|
|
|
bool findNextChange(BufferView * bv)
|
|
|
|
{
|
|
|
|
return findChange(bv, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool findPreviousChange(BufferView * bv)
|
|
|
|
{
|
|
|
|
return findChange(bv, false);
|
|
|
|
}
|
|
|
|
|
2004-03-25 09:16:36 +00:00
|
|
|
|
2014-10-14 07:58:40 +00:00
|
|
|
|
2008-11-15 23:30:27 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
typedef vector<pair<string, string> > Escapes;
|
|
|
|
|
|
|
|
/// A map of symbols and their escaped equivalent needed within a regex.
|
2011-06-19 16:41:23 +00:00
|
|
|
/// @note Beware of order
|
2008-11-15 23:30:27 +00:00
|
|
|
Escapes const & get_regexp_escapes()
|
|
|
|
{
|
2012-10-23 21:01:18 +00:00
|
|
|
typedef std::pair<std::string, std::string> P;
|
|
|
|
|
2008-11-15 23:30:27 +00:00
|
|
|
static Escapes escape_map;
|
|
|
|
if (escape_map.empty()) {
|
2012-10-23 21:01:18 +00:00
|
|
|
escape_map.push_back(P("$", "_x_$"));
|
|
|
|
escape_map.push_back(P("{", "_x_{"));
|
|
|
|
escape_map.push_back(P("}", "_x_}"));
|
|
|
|
escape_map.push_back(P("[", "_x_["));
|
|
|
|
escape_map.push_back(P("]", "_x_]"));
|
|
|
|
escape_map.push_back(P("(", "_x_("));
|
|
|
|
escape_map.push_back(P(")", "_x_)"));
|
|
|
|
escape_map.push_back(P("+", "_x_+"));
|
|
|
|
escape_map.push_back(P("*", "_x_*"));
|
|
|
|
escape_map.push_back(P(".", "_x_."));
|
|
|
|
escape_map.push_back(P("\\", "(?:\\\\|\\\\backslash)"));
|
|
|
|
escape_map.push_back(P("~", "(?:\\\\textasciitilde|\\\\sim)"));
|
|
|
|
escape_map.push_back(P("^", "(?:\\^|\\\\textasciicircum\\{\\}|\\\\mathcircumflex)"));
|
|
|
|
escape_map.push_back(P("_x_", "\\"));
|
2008-11-15 23:30:27 +00:00
|
|
|
}
|
|
|
|
return escape_map;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A map of lyx escaped strings and their unescaped equivalent.
|
2012-10-23 21:01:18 +00:00
|
|
|
Escapes const & get_lyx_unescapes()
|
|
|
|
{
|
|
|
|
typedef std::pair<std::string, std::string> P;
|
|
|
|
|
2008-11-15 23:30:27 +00:00
|
|
|
static Escapes escape_map;
|
|
|
|
if (escape_map.empty()) {
|
2012-10-23 21:01:18 +00:00
|
|
|
escape_map.push_back(P("\\%", "%"));
|
|
|
|
escape_map.push_back(P("\\mathcircumflex ", "^"));
|
|
|
|
escape_map.push_back(P("\\mathcircumflex", "^"));
|
|
|
|
escape_map.push_back(P("\\backslash ", "\\"));
|
|
|
|
escape_map.push_back(P("\\backslash", "\\"));
|
|
|
|
escape_map.push_back(P("\\\\{", "_x_<"));
|
|
|
|
escape_map.push_back(P("\\\\}", "_x_>"));
|
|
|
|
escape_map.push_back(P("\\sim ", "~"));
|
|
|
|
escape_map.push_back(P("\\sim", "~"));
|
2011-06-19 16:41:23 +00:00
|
|
|
}
|
|
|
|
return escape_map;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A map of escapes turning a regexp matching text to one matching latex.
|
2012-10-23 21:01:18 +00:00
|
|
|
Escapes const & get_regexp_latex_escapes()
|
|
|
|
{
|
|
|
|
typedef std::pair<std::string, std::string> P;
|
|
|
|
|
2011-06-19 16:41:23 +00:00
|
|
|
static Escapes escape_map;
|
|
|
|
if (escape_map.empty()) {
|
2012-10-23 21:01:18 +00:00
|
|
|
escape_map.push_back(P("\\\\", "(?:\\\\\\\\|\\\\backslash|\\\\textbackslash\\{\\})"));
|
|
|
|
escape_map.push_back(P("(<?!\\\\\\\\textbackslash)\\{", "\\\\\\{"));
|
|
|
|
escape_map.push_back(P("(<?!\\\\\\\\textbackslash\\\\\\{)\\}", "\\\\\\}"));
|
|
|
|
escape_map.push_back(P("\\[", "\\{\\[\\}"));
|
|
|
|
escape_map.push_back(P("\\]", "\\{\\]\\}"));
|
|
|
|
escape_map.push_back(P("\\^", "(?:\\^|\\\\textasciicircum\\{\\}|\\\\mathcircumflex)"));
|
|
|
|
escape_map.push_back(P("%", "\\\\\\%"));
|
2008-11-15 23:30:27 +00:00
|
|
|
}
|
|
|
|
return escape_map;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @todo Probably the maps need to be migrated to regexps, in order to distinguish if
|
|
|
|
** the found occurrence were escaped.
|
|
|
|
**/
|
|
|
|
string apply_escapes(string s, Escapes const & escape_map)
|
|
|
|
{
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Escaping: '" << s << "'");
|
2008-11-15 23:30:27 +00:00
|
|
|
Escapes::const_iterator it;
|
|
|
|
for (it = escape_map.begin(); it != escape_map.end(); ++it) {
|
2009-08-17 14:39:00 +00:00
|
|
|
// LYXERR(Debug::FIND, "Escaping " << it->first << " as " << it->second);
|
2008-11-15 23:30:27 +00:00
|
|
|
unsigned int pos = 0;
|
|
|
|
while (pos < s.length() && (pos = s.find(it->first, pos)) < s.length()) {
|
|
|
|
s.replace(pos, it->first.length(), it->second);
|
2011-06-19 16:41:23 +00:00
|
|
|
LYXERR(Debug::FIND, "After escape: " << s);
|
2008-11-15 23:30:27 +00:00
|
|
|
pos += it->second.length();
|
2009-08-17 14:39:00 +00:00
|
|
|
// LYXERR(Debug::FIND, "pos: " << pos);
|
2008-11-15 23:30:27 +00:00
|
|
|
}
|
|
|
|
}
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Escaped : '" << s << "'");
|
2008-11-15 23:30:27 +00:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-12 00:12:26 +00:00
|
|
|
/// Within \regexp{} apply get_lyx_unescapes() only (i.e., preserve regexp semantics of the string),
|
|
|
|
/// while outside apply get_lyx_unescapes()+get_regexp_escapes().
|
2011-06-19 16:41:23 +00:00
|
|
|
/// If match_latex is true, then apply regexp_latex_escapes() to \regexp{} contents as well.
|
|
|
|
string escape_for_regex(string s, bool match_latex)
|
2008-11-15 23:30:27 +00:00
|
|
|
{
|
|
|
|
size_t pos = 0;
|
|
|
|
while (pos < s.size()) {
|
2011-08-25 19:16:14 +00:00
|
|
|
size_t new_pos = s.find("\\regexp{", pos);
|
2010-02-07 21:44:31 +00:00
|
|
|
if (new_pos == string::npos)
|
|
|
|
new_pos = s.size();
|
|
|
|
LYXERR(Debug::FIND, "new_pos: " << new_pos);
|
|
|
|
string t = apply_escapes(s.substr(pos, new_pos - pos), get_lyx_unescapes());
|
2011-06-12 00:12:26 +00:00
|
|
|
LYXERR(Debug::FIND, "t [lyx]: " << t);
|
2010-02-07 21:44:31 +00:00
|
|
|
t = apply_escapes(t, get_regexp_escapes());
|
2011-06-12 00:12:26 +00:00
|
|
|
LYXERR(Debug::FIND, "t [rxp]: " << t);
|
2010-02-07 21:44:31 +00:00
|
|
|
s.replace(pos, new_pos - pos, t);
|
|
|
|
new_pos = pos + t.size();
|
|
|
|
LYXERR(Debug::FIND, "Regexp after escaping: " << s);
|
|
|
|
LYXERR(Debug::FIND, "new_pos: " << new_pos);
|
|
|
|
if (new_pos == s.size())
|
|
|
|
break;
|
2011-09-27 23:09:31 +00:00
|
|
|
// Might fail if \\endregexp{} is preceeded by unexpected stuff (weird escapes)
|
|
|
|
size_t end_pos = s.find("\\endregexp{}}", new_pos + 8);
|
2010-02-07 21:44:31 +00:00
|
|
|
LYXERR(Debug::FIND, "end_pos: " << end_pos);
|
2011-08-25 19:16:14 +00:00
|
|
|
t = s.substr(new_pos + 8, end_pos - (new_pos + 8));
|
|
|
|
LYXERR(Debug::FIND, "t in regexp : " << t);
|
|
|
|
t = apply_escapes(t, get_lyx_unescapes());
|
|
|
|
LYXERR(Debug::FIND, "t in regexp [lyx]: " << t);
|
|
|
|
if (match_latex) {
|
2011-06-19 16:41:23 +00:00
|
|
|
t = apply_escapes(t, get_regexp_latex_escapes());
|
2011-08-25 19:16:14 +00:00
|
|
|
LYXERR(Debug::FIND, "t in regexp [ltx]: " << t);
|
|
|
|
}
|
2010-02-07 21:44:31 +00:00
|
|
|
if (end_pos == s.size()) {
|
|
|
|
s.replace(new_pos, end_pos - new_pos, t);
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Regexp after \\regexp{} removal: " << s);
|
2010-02-07 21:44:31 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-08-25 19:16:14 +00:00
|
|
|
s.replace(new_pos, end_pos + 13 - new_pos, t);
|
|
|
|
LYXERR(Debug::FIND, "Regexp after \\regexp{...\\endregexp{}} removal: " << s);
|
2010-02-07 21:44:31 +00:00
|
|
|
pos = new_pos + t.size();
|
|
|
|
LYXERR(Debug::FIND, "pos: " << pos);
|
2008-11-15 23:30:27 +00:00
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2012-10-27 13:45:27 +00:00
|
|
|
|
2010-06-29 17:09:40 +00:00
|
|
|
/// Wrapper for lyx::regex_replace with simpler interface
|
2008-11-15 23:30:27 +00:00
|
|
|
bool regex_replace(string const & s, string & t, string const & searchstr,
|
2012-10-23 20:58:10 +00:00
|
|
|
string const & replacestr)
|
2008-11-15 23:30:27 +00:00
|
|
|
{
|
2010-06-29 17:09:40 +00:00
|
|
|
lyx::regex e(searchstr);
|
2008-11-15 23:30:27 +00:00
|
|
|
ostringstream oss;
|
|
|
|
ostream_iterator<char, char> it(oss);
|
2010-06-29 17:09:40 +00:00
|
|
|
lyx::regex_replace(it, s.begin(), s.end(), e, replacestr);
|
2008-11-15 23:30:27 +00:00
|
|
|
// tolerate t and s be references to the same variable
|
|
|
|
bool rv = (s != oss.str());
|
|
|
|
t = oss.str();
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2012-10-27 13:45:27 +00:00
|
|
|
|
2008-11-15 23:30:27 +00:00
|
|
|
/** Checks if supplied string segment is well-formed from the standpoint of matching open-closed braces.
|
|
|
|
**
|
|
|
|
** Verify that closed braces exactly match open braces. This avoids that, for example,
|
|
|
|
** \frac{.*}{x} matches \frac{x+\frac{y}{x}}{z} with .* being 'x+\frac{y'.
|
|
|
|
**
|
|
|
|
** @param unmatched
|
|
|
|
** Number of open braces that must remain open at the end for the verification to succeed.
|
|
|
|
**/
|
|
|
|
bool braces_match(string::const_iterator const & beg,
|
2010-02-07 21:44:31 +00:00
|
|
|
string::const_iterator const & end,
|
|
|
|
int unmatched = 0)
|
2008-11-15 23:30:27 +00:00
|
|
|
{
|
|
|
|
int open_pars = 0;
|
|
|
|
string::const_iterator it = beg;
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Checking " << unmatched << " unmatched braces in '" << string(beg, end) << "'");
|
2008-11-15 23:30:27 +00:00
|
|
|
for (; it != end; ++it) {
|
|
|
|
// Skip escaped braces in the count
|
|
|
|
if (*it == '\\') {
|
|
|
|
++it;
|
|
|
|
if (it == end)
|
|
|
|
break;
|
|
|
|
} else if (*it == '{') {
|
|
|
|
++open_pars;
|
|
|
|
} else if (*it == '}') {
|
|
|
|
if (open_pars == 0) {
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Found unmatched closed brace");
|
2008-11-15 23:30:27 +00:00
|
|
|
return false;
|
|
|
|
} else
|
|
|
|
--open_pars;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (open_pars != unmatched) {
|
2015-05-17 15:27:12 +00:00
|
|
|
LYXERR(Debug::FIND, "Found " << open_pars
|
|
|
|
<< " instead of " << unmatched
|
2011-06-19 16:41:23 +00:00
|
|
|
<< " unmatched open braces at the end of count");
|
|
|
|
return false;
|
2008-11-15 23:30:27 +00:00
|
|
|
}
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Braces match as expected");
|
2008-11-15 23:30:27 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-10-27 13:45:27 +00:00
|
|
|
|
2008-11-15 23:30:27 +00:00
|
|
|
/** The class performing a match between a position in the document and the FindAdvOptions.
|
|
|
|
**/
|
|
|
|
class MatchStringAdv {
|
|
|
|
public:
|
2009-12-30 18:40:18 +00:00
|
|
|
MatchStringAdv(lyx::Buffer & buf, FindAndReplaceOptions const & opt);
|
2008-11-15 23:30:27 +00:00
|
|
|
|
|
|
|
/** Tests if text starting at the supplied position matches with the one provided to the MatchStringAdv
|
|
|
|
** constructor as opt.search, under the opt.* options settings.
|
|
|
|
**
|
2008-12-20 16:00:47 +00:00
|
|
|
** @param at_begin
|
|
|
|
** If set, then match is searched only against beginning of text starting at cur.
|
|
|
|
** If unset, then match is searched anywhere in text starting at cur.
|
2009-05-07 12:40:35 +00:00
|
|
|
**
|
2008-11-15 23:30:27 +00:00
|
|
|
** @return
|
|
|
|
** The length of the matching text, or zero if no match was found.
|
|
|
|
**/
|
2008-12-20 16:00:47 +00:00
|
|
|
int operator()(DocIterator const & cur, int len = -1, bool at_begin = true) const;
|
2008-11-15 23:30:27 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
/// buffer
|
2009-12-30 18:40:18 +00:00
|
|
|
lyx::Buffer * p_buf;
|
|
|
|
/// first buffer on which search was started
|
|
|
|
lyx::Buffer * const p_first_buf;
|
2008-11-15 23:30:27 +00:00
|
|
|
/// options
|
2009-01-14 15:34:56 +00:00
|
|
|
FindAndReplaceOptions const & opt;
|
2008-11-15 23:30:27 +00:00
|
|
|
|
|
|
|
private:
|
2010-01-09 12:39:29 +00:00
|
|
|
/// Auxiliary find method (does not account for opt.matchword)
|
|
|
|
int findAux(DocIterator const & cur, int len = -1, bool at_begin = true) const;
|
|
|
|
|
2008-11-15 23:30:27 +00:00
|
|
|
/** Normalize a stringified or latexified LyX paragraph.
|
|
|
|
**
|
|
|
|
** Normalize means:
|
|
|
|
** <ul>
|
|
|
|
** <li>if search is not casesensitive, then lowercase the string;
|
|
|
|
** <li>remove any newline at begin or end of the string;
|
|
|
|
** <li>replace any newline in the middle of the string with a simple space;
|
|
|
|
** <li>remove stale empty styles and environments, like \emph{} and \textbf{}.
|
|
|
|
** </ul>
|
|
|
|
**
|
|
|
|
** @todo Normalization should also expand macros, if the corresponding
|
|
|
|
** search option was checked.
|
|
|
|
**/
|
2011-08-25 19:16:14 +00:00
|
|
|
string normalize(docstring const & s, bool hack_braces) const;
|
2008-11-15 23:30:27 +00:00
|
|
|
// normalized string to search
|
|
|
|
string par_as_string;
|
|
|
|
// regular expression to use for searching
|
2010-06-29 17:09:40 +00:00
|
|
|
lyx::regex regexp;
|
2008-12-20 16:00:47 +00:00
|
|
|
// same as regexp, but prefixed with a ".*"
|
2010-06-29 17:09:40 +00:00
|
|
|
lyx::regex regexp2;
|
2011-06-19 16:41:23 +00:00
|
|
|
// leading format material as string
|
|
|
|
string lead_as_string;
|
|
|
|
// par_as_string after removal of lead_as_string
|
|
|
|
string par_as_string_nolead;
|
2008-11-15 23:30:27 +00:00
|
|
|
// unmatched open braces in the search string/regexp
|
|
|
|
int open_braces;
|
|
|
|
// number of (.*?) subexpressions added at end of search regexp for closing
|
|
|
|
// environments, math mode, styles, etc...
|
|
|
|
int close_wildcards;
|
2011-02-07 20:36:40 +00:00
|
|
|
// Are we searching with regular expressions ?
|
|
|
|
bool use_regexp;
|
2008-11-15 23:30:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-05-17 15:27:12 +00:00
|
|
|
static docstring buffer_to_latex(Buffer & buffer)
|
2011-02-07 20:36:40 +00:00
|
|
|
{
|
|
|
|
OutputParams runparams(&buffer.params().encoding());
|
|
|
|
odocstringstream ods;
|
2016-06-19 02:39:38 +00:00
|
|
|
otexstream os(ods, false);
|
2011-02-07 20:36:40 +00:00
|
|
|
runparams.nice = true;
|
|
|
|
runparams.flavor = OutputParams::LATEX;
|
|
|
|
runparams.linelen = 80; //lyxrc.plaintext_linelen;
|
|
|
|
// No side effect of file copying and image conversion
|
|
|
|
runparams.dryrun = true;
|
|
|
|
pit_type const endpit = buffer.paragraphs().size();
|
|
|
|
for (pit_type pit = 0; pit != endpit; ++pit) {
|
2011-02-10 20:02:48 +00:00
|
|
|
TeXOnePar(buffer, buffer.text(), pit, os, runparams);
|
2011-02-07 20:36:40 +00:00
|
|
|
LYXERR(Debug::FIND, "searchString up to here: " << ods.str());
|
|
|
|
}
|
|
|
|
return ods.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-27 13:45:27 +00:00
|
|
|
static docstring stringifySearchBuffer(Buffer & buffer, FindAndReplaceOptions const & opt)
|
|
|
|
{
|
2011-02-07 20:36:40 +00:00
|
|
|
docstring str;
|
|
|
|
if (!opt.ignoreformat) {
|
|
|
|
str = buffer_to_latex(buffer);
|
|
|
|
} else {
|
|
|
|
OutputParams runparams(&buffer.params().encoding());
|
|
|
|
runparams.nice = true;
|
|
|
|
runparams.flavor = OutputParams::LATEX;
|
|
|
|
runparams.linelen = 100000; //lyxrc.plaintext_linelen;
|
|
|
|
runparams.dryrun = true;
|
2014-03-27 23:12:56 +00:00
|
|
|
runparams.for_search = true;
|
2011-05-26 17:08:48 +00:00
|
|
|
for (pos_type pit = pos_type(0); pit < (pos_type)buffer.paragraphs().size(); ++pit) {
|
|
|
|
Paragraph const & par = buffer.paragraphs().at(pit);
|
2011-02-07 20:36:40 +00:00
|
|
|
LYXERR(Debug::FIND, "Adding to search string: '"
|
2014-03-27 23:12:56 +00:00
|
|
|
<< par.asString(pos_type(0), par.size(),
|
2014-03-28 22:56:20 +00:00
|
|
|
AS_STR_INSETS | AS_STR_SKIPDELETE | AS_STR_PLAINTEXT,
|
2014-03-27 23:12:56 +00:00
|
|
|
&runparams)
|
2012-10-23 20:58:10 +00:00
|
|
|
<< "'");
|
2014-03-27 23:12:56 +00:00
|
|
|
str += par.asString(pos_type(0), par.size(),
|
2014-03-28 22:56:20 +00:00
|
|
|
AS_STR_INSETS | AS_STR_SKIPDELETE | AS_STR_PLAINTEXT,
|
2014-03-27 23:12:56 +00:00
|
|
|
&runparams);
|
2011-02-07 20:36:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Return separation pos between the leading material and the rest
|
2012-10-27 13:45:27 +00:00
|
|
|
static size_t identifyLeading(string const & s)
|
|
|
|
{
|
2011-02-07 20:36:40 +00:00
|
|
|
string t = s;
|
|
|
|
// @TODO Support \item[text]
|
2011-06-19 16:41:23 +00:00
|
|
|
while (regex_replace(t, t, "^\\\\(emph|textbf|subsubsection|subsection|section|subparagraph|paragraph|part)\\*?\\{", "")
|
2011-02-07 20:36:40 +00:00
|
|
|
|| regex_replace(t, t, "^\\$", "")
|
|
|
|
|| regex_replace(t, t, "^\\\\\\[ ", "")
|
2011-05-27 20:39:58 +00:00
|
|
|
|| regex_replace(t, t, "^\\\\item ", "")
|
2011-05-27 21:14:36 +00:00
|
|
|
|| regex_replace(t, t, "^\\\\begin\\{[a-zA-Z_]*\\*?\\} ", ""))
|
2011-05-27 20:39:58 +00:00
|
|
|
LYXERR(Debug::FIND, " after removing leading $, \\[ , \\emph{, \\textbf{, etc.: '" << t << "'");
|
2011-02-07 20:36:40 +00:00
|
|
|
return s.find(t);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-19 16:41:23 +00:00
|
|
|
// Remove trailing closure of math, macros and environments, so to catch parts of them.
|
2012-10-27 13:45:27 +00:00
|
|
|
static int identifyClosing(string & t)
|
|
|
|
{
|
2011-06-19 16:41:23 +00:00
|
|
|
int open_braces = 0;
|
|
|
|
do {
|
|
|
|
LYXERR(Debug::FIND, "identifyClosing(): t now is '" << t << "'");
|
|
|
|
if (regex_replace(t, t, "(.*[^\\\\])\\$\\'", "$1"))
|
|
|
|
continue;
|
|
|
|
if (regex_replace(t, t, "(.*[^\\\\]) \\\\\\]\\'", "$1"))
|
|
|
|
continue;
|
|
|
|
if (regex_replace(t, t, "(.*[^\\\\]) \\\\end\\{[a-zA-Z_]*\\*?\\}\\'", "$1"))
|
|
|
|
continue;
|
|
|
|
if (regex_replace(t, t, "(.*[^\\\\])\\}\\'", "$1")) {
|
|
|
|
++open_braces;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
} while (true);
|
|
|
|
return open_braces;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-30 18:40:18 +00:00
|
|
|
MatchStringAdv::MatchStringAdv(lyx::Buffer & buf, FindAndReplaceOptions const & opt)
|
|
|
|
: p_buf(&buf), p_first_buf(&buf), opt(opt)
|
2008-11-15 23:30:27 +00:00
|
|
|
{
|
2011-02-07 20:36:40 +00:00
|
|
|
Buffer & find_buf = *theBufferList().getBuffer(FileName(to_utf8(opt.find_buf_name)), true);
|
2011-08-25 19:16:14 +00:00
|
|
|
docstring const & ds = stringifySearchBuffer(find_buf, opt);
|
|
|
|
use_regexp = lyx::to_utf8(ds).find("\\regexp{") != std::string::npos;
|
|
|
|
// When using regexp, braces are hacked already by escape_for_regex()
|
|
|
|
par_as_string = normalize(ds, !use_regexp);
|
2008-11-15 23:30:27 +00:00
|
|
|
open_braces = 0;
|
|
|
|
close_wildcards = 0;
|
|
|
|
|
2011-06-19 16:41:23 +00:00
|
|
|
size_t lead_size = 0;
|
2013-04-01 08:16:45 +00:00
|
|
|
if (opt.ignoreformat) {
|
2015-05-17 15:27:12 +00:00
|
|
|
if (!use_regexp) {
|
|
|
|
// if par_as_string_nolead were emty,
|
|
|
|
// the following call to findAux will always *find* the string
|
|
|
|
// in the checked data, and thus always using the slow
|
|
|
|
// examining of the current text part.
|
|
|
|
par_as_string_nolead = par_as_string;
|
|
|
|
}
|
|
|
|
} else {
|
2011-06-19 16:41:23 +00:00
|
|
|
lead_size = identifyLeading(par_as_string);
|
|
|
|
lead_as_string = par_as_string.substr(0, lead_size);
|
|
|
|
par_as_string_nolead = par_as_string.substr(lead_size, par_as_string.size() - lead_size);
|
|
|
|
}
|
2011-02-07 20:36:40 +00:00
|
|
|
|
|
|
|
if (!use_regexp) {
|
2011-06-19 16:41:23 +00:00
|
|
|
open_braces = identifyClosing(par_as_string);
|
|
|
|
identifyClosing(par_as_string_nolead);
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Open braces: " << open_braces);
|
|
|
|
LYXERR(Debug::FIND, "Built MatchStringAdv object: par_as_string = '" << par_as_string << "'");
|
2008-11-15 23:30:27 +00:00
|
|
|
} else {
|
2011-02-07 20:36:40 +00:00
|
|
|
string lead_as_regexp;
|
|
|
|
if (lead_size > 0) {
|
2011-06-19 16:41:23 +00:00
|
|
|
// @todo No need to search for \regexp{} insets in leading material
|
|
|
|
lead_as_regexp = escape_for_regex(par_as_string.substr(0, lead_size), !opt.ignoreformat);
|
|
|
|
par_as_string = par_as_string_nolead;
|
2011-02-07 20:36:40 +00:00
|
|
|
LYXERR(Debug::FIND, "lead_as_regexp is '" << lead_as_regexp << "'");
|
|
|
|
LYXERR(Debug::FIND, "par_as_string now is '" << par_as_string << "'");
|
|
|
|
}
|
2011-06-19 16:41:23 +00:00
|
|
|
par_as_string = escape_for_regex(par_as_string, !opt.ignoreformat);
|
2008-11-15 23:30:27 +00:00
|
|
|
// Insert (.*?) before trailing closure of math, macros and environments, so to catch parts of them.
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "par_as_string now is '" << par_as_string << "'");
|
2008-11-15 23:30:27 +00:00
|
|
|
if (
|
|
|
|
// Insert .* before trailing '\$' ('$' has been escaped by escape_for_regex)
|
|
|
|
regex_replace(par_as_string, par_as_string, "(.*[^\\\\])(\\\\\\$)\\'", "$1(.*?)$2")
|
2012-10-23 20:58:10 +00:00
|
|
|
// Insert .* before trailing '\\\]' ('\]' has been escaped by escape_for_regex)
|
|
|
|
|| regex_replace(par_as_string, par_as_string, "(.*[^\\\\])( \\\\\\\\\\\\\\])\\'", "$1(.*?)$2")
|
|
|
|
// Insert .* before trailing '\\end\{...}' ('\end{...}' has been escaped by escape_for_regex)
|
|
|
|
|| regex_replace(par_as_string, par_as_string,
|
|
|
|
"(.*[^\\\\])( \\\\\\\\end\\\\\\{[a-zA-Z_]*)(\\\\\\*)?(\\\\\\})\\'", "$1(.*?)$2$3$4")
|
|
|
|
// Insert .* before trailing '\}' ('}' has been escaped by escape_for_regex)
|
|
|
|
|| regex_replace(par_as_string, par_as_string, "(.*[^\\\\])(\\\\\\})\\'", "$1(.*?)$2")
|
|
|
|
) {
|
2008-11-15 23:30:27 +00:00
|
|
|
++close_wildcards;
|
|
|
|
}
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "par_as_string now is '" << par_as_string << "'");
|
|
|
|
LYXERR(Debug::FIND, "Open braces: " << open_braces);
|
|
|
|
LYXERR(Debug::FIND, "Close .*? : " << close_wildcards);
|
|
|
|
LYXERR(Debug::FIND, "Replaced text (to be used as regex): " << par_as_string);
|
2009-08-17 07:06:01 +00:00
|
|
|
// If entered regexp must match at begin of searched string buffer
|
2011-02-07 20:36:40 +00:00
|
|
|
string regexp_str = string("\\`") + lead_as_regexp + par_as_string;
|
2011-06-19 16:41:23 +00:00
|
|
|
LYXERR(Debug::FIND, "Setting regexp to : '" << regexp_str << "'");
|
2011-02-07 20:36:40 +00:00
|
|
|
regexp = lyx::regex(regexp_str);
|
|
|
|
|
2009-08-17 07:06:01 +00:00
|
|
|
// If entered regexp may match wherever in searched string buffer
|
2011-02-07 20:36:40 +00:00
|
|
|
string regexp2_str = string("\\`.*") + lead_as_regexp + ".*" + par_as_string;
|
2011-06-19 16:41:23 +00:00
|
|
|
LYXERR(Debug::FIND, "Setting regexp2 to: '" << regexp2_str << "'");
|
2011-02-07 20:36:40 +00:00
|
|
|
regexp2 = lyx::regex(regexp2_str);
|
2008-11-15 23:30:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-20 16:00:47 +00:00
|
|
|
|
2010-01-09 12:39:29 +00:00
|
|
|
int MatchStringAdv::findAux(DocIterator const & cur, int len, bool at_begin) const
|
2008-11-15 23:30:27 +00:00
|
|
|
{
|
2013-08-23 19:36:50 +00:00
|
|
|
if (at_begin &&
|
|
|
|
(opt.restr == FindAndReplaceOptions::R_ONLY_MATHS && !cur.inMathed()) )
|
|
|
|
return 0;
|
2008-12-20 16:00:47 +00:00
|
|
|
docstring docstr = stringifyFromForSearch(opt, cur, len);
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Matching against '" << lyx::to_utf8(docstr) << "'");
|
2011-08-25 19:16:14 +00:00
|
|
|
string str = normalize(docstr, true);
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "After normalization: '" << str << "'");
|
2011-02-07 20:36:40 +00:00
|
|
|
if (! use_regexp) {
|
2010-11-20 11:03:24 +00:00
|
|
|
LYXERR(Debug::FIND, "Searching in normal mode: par_as_string='" << par_as_string << "', str='" << str << "'");
|
2011-06-19 16:41:23 +00:00
|
|
|
LYXERR(Debug::FIND, "Searching in normal mode: lead_as_string='" << lead_as_string << "', par_as_string_nolead='" << par_as_string_nolead << "'");
|
2008-12-20 16:00:47 +00:00
|
|
|
if (at_begin) {
|
2010-11-20 11:03:24 +00:00
|
|
|
LYXERR(Debug::FIND, "size=" << par_as_string.size() << ", substr='" << str.substr(0, par_as_string.size()) << "'");
|
2008-12-20 16:00:47 +00:00
|
|
|
if (str.substr(0, par_as_string.size()) == par_as_string)
|
|
|
|
return par_as_string.size();
|
|
|
|
} else {
|
2011-06-19 16:41:23 +00:00
|
|
|
size_t pos = str.find(par_as_string_nolead);
|
2008-12-20 16:00:47 +00:00
|
|
|
if (pos != string::npos)
|
|
|
|
return par_as_string.size();
|
|
|
|
}
|
2008-11-15 23:30:27 +00:00
|
|
|
} else {
|
2011-02-07 20:36:40 +00:00
|
|
|
LYXERR(Debug::FIND, "Searching in regexp mode: at_begin=" << at_begin);
|
2015-05-17 15:27:12 +00:00
|
|
|
// Try all possible regexp matches,
|
2009-09-04 13:06:43 +00:00
|
|
|
//until one that verifies the braces match test is found
|
2010-06-29 17:09:40 +00:00
|
|
|
regex const *p_regexp = at_begin ? ®exp : ®exp2;
|
|
|
|
sregex_iterator re_it(str.begin(), str.end(), *p_regexp);
|
|
|
|
sregex_iterator re_it_end;
|
2008-11-15 23:30:27 +00:00
|
|
|
for (; re_it != re_it_end; ++re_it) {
|
2010-06-29 17:09:40 +00:00
|
|
|
match_results<string::const_iterator> const & m = *re_it;
|
2008-11-15 23:30:27 +00:00
|
|
|
// Check braces on the segment that matched the entire regexp expression,
|
|
|
|
// plus the last subexpression, if a (.*?) was inserted in the constructor.
|
2010-11-20 18:28:28 +00:00
|
|
|
if (!braces_match(m[0].first, m[0].second, open_braces))
|
2008-11-15 23:30:27 +00:00
|
|
|
return 0;
|
2011-03-18 00:47:42 +00:00
|
|
|
// Check braces on segments that matched all (.*?) subexpressions,
|
|
|
|
// except the last "padding" one inserted by lyx.
|
|
|
|
for (size_t i = 1; i < m.size() - 1; ++i)
|
2010-11-20 18:28:28 +00:00
|
|
|
if (!braces_match(m[i].first, m[i].second))
|
2008-11-15 23:30:27 +00:00
|
|
|
return false;
|
2015-05-17 15:27:12 +00:00
|
|
|
// Exclude from the returned match length any length
|
2009-09-04 13:06:43 +00:00
|
|
|
// due to close wildcards added at end of regexp
|
2008-11-15 23:30:27 +00:00
|
|
|
if (close_wildcards == 0)
|
|
|
|
return m[0].second - m[0].first;
|
|
|
|
else
|
|
|
|
return m[m.size() - close_wildcards].first - m[0].first;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-09 12:39:29 +00:00
|
|
|
int MatchStringAdv::operator()(DocIterator const & cur, int len, bool at_begin) const
|
|
|
|
{
|
|
|
|
int res = findAux(cur, len, at_begin);
|
2011-02-07 20:36:40 +00:00
|
|
|
LYXERR(Debug::FIND,
|
2012-10-23 20:58:10 +00:00
|
|
|
"res=" << res << ", at_begin=" << at_begin
|
|
|
|
<< ", matchword=" << opt.matchword
|
|
|
|
<< ", inTexted=" << cur.inTexted());
|
2010-01-09 12:39:29 +00:00
|
|
|
if (res == 0 || !at_begin || !opt.matchword || !cur.inTexted())
|
|
|
|
return res;
|
|
|
|
Paragraph const & par = cur.paragraph();
|
2012-10-23 20:58:10 +00:00
|
|
|
bool ws_left = (cur.pos() > 0)
|
|
|
|
? par.isWordSeparator(cur.pos() - 1)
|
|
|
|
: true;
|
|
|
|
bool ws_right = (cur.pos() + res < par.size())
|
|
|
|
? par.isWordSeparator(cur.pos() + res)
|
|
|
|
: true;
|
2010-01-09 12:39:29 +00:00
|
|
|
LYXERR(Debug::FIND,
|
|
|
|
"cur.pos()=" << cur.pos() << ", res=" << res
|
|
|
|
<< ", separ: " << ws_left << ", " << ws_right
|
|
|
|
<< endl);
|
|
|
|
if (ws_left && ws_right)
|
|
|
|
return res;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-25 19:16:14 +00:00
|
|
|
string MatchStringAdv::normalize(docstring const & s, bool hack_braces) const
|
2008-11-15 23:30:27 +00:00
|
|
|
{
|
|
|
|
string t;
|
|
|
|
if (! opt.casesensitive)
|
|
|
|
t = lyx::to_utf8(lowercase(s));
|
|
|
|
else
|
|
|
|
t = lyx::to_utf8(s);
|
|
|
|
// Remove \n at begin
|
2012-10-21 19:14:16 +00:00
|
|
|
while (!t.empty() && t[0] == '\n')
|
2008-11-15 23:30:27 +00:00
|
|
|
t = t.substr(1);
|
|
|
|
// Remove \n at end
|
2012-10-21 19:14:16 +00:00
|
|
|
while (!t.empty() && t[t.size() - 1] == '\n')
|
2008-11-15 23:30:27 +00:00
|
|
|
t = t.substr(0, t.size() - 1);
|
|
|
|
size_t pos;
|
|
|
|
// Replace all other \n with spaces
|
|
|
|
while ((pos = t.find("\n")) != string::npos)
|
|
|
|
t.replace(pos, 1, " ");
|
|
|
|
// Remove stale empty \emph{}, \textbf{} and similar blocks from latexify
|
2009-08-22 16:06:19 +00:00
|
|
|
LYXERR(Debug::FIND, "Removing stale empty \\emph{}, \\textbf{}, \\*section{} macros from: " << t);
|
2010-11-20 15:57:54 +00:00
|
|
|
while (regex_replace(t, t, "\\\\(emph|textbf|subsubsection|subsection|section|subparagraph|paragraph|part)(\\{\\})+", ""))
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, " further removing stale empty \\emph{}, \\textbf{} macros from: " << t);
|
2011-08-25 19:16:14 +00:00
|
|
|
|
|
|
|
// FIXME - check what preceeds the brace
|
|
|
|
if (hack_braces) {
|
|
|
|
if (opt.ignoreformat)
|
|
|
|
while (regex_replace(t, t, "\\{", "_x_<")
|
|
|
|
|| regex_replace(t, t, "\\}", "_x_>"))
|
|
|
|
LYXERR(Debug::FIND, "After {} replacement: '" << t << "'");
|
|
|
|
else
|
|
|
|
while (regex_replace(t, t, "\\\\\\{", "_x_<")
|
|
|
|
|| regex_replace(t, t, "\\\\\\}", "_x_>"))
|
|
|
|
LYXERR(Debug::FIND, "After {} replacement: '" << t << "'");
|
|
|
|
}
|
|
|
|
|
2008-11-15 23:30:27 +00:00
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
docstring stringifyFromCursor(DocIterator const & cur, int len)
|
|
|
|
{
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Stringifying with len=" << len << " from cursor at pos: " << cur);
|
2008-11-15 23:30:27 +00:00
|
|
|
if (cur.inTexted()) {
|
2012-10-23 20:58:10 +00:00
|
|
|
Paragraph const & par = cur.paragraph();
|
|
|
|
// TODO what about searching beyond/across paragraph breaks ?
|
|
|
|
// TODO Try adding a AS_STR_INSERTS as last arg
|
|
|
|
pos_type end = ( len == -1 || cur.pos() + len > int(par.size()) ) ?
|
|
|
|
int(par.size()) : cur.pos() + len;
|
|
|
|
OutputParams runparams(&cur.buffer()->params().encoding());
|
|
|
|
runparams.nice = true;
|
|
|
|
runparams.flavor = OutputParams::LATEX;
|
|
|
|
runparams.linelen = 100000; //lyxrc.plaintext_linelen;
|
|
|
|
// No side effect of file copying and image conversion
|
|
|
|
runparams.dryrun = true;
|
|
|
|
LYXERR(Debug::FIND, "Stringifying with cur: "
|
|
|
|
<< cur << ", from pos: " << cur.pos() << ", end: " << end);
|
2014-03-27 23:12:56 +00:00
|
|
|
return par.asString(cur.pos(), end,
|
2014-03-28 22:56:20 +00:00
|
|
|
AS_STR_INSETS | AS_STR_SKIPDELETE | AS_STR_PLAINTEXT,
|
2014-03-27 23:12:56 +00:00
|
|
|
&runparams);
|
2008-11-15 23:30:27 +00:00
|
|
|
} else if (cur.inMathed()) {
|
2012-10-23 20:58:10 +00:00
|
|
|
docstring s;
|
|
|
|
CursorSlice cs = cur.top();
|
|
|
|
MathData md = cs.cell();
|
|
|
|
MathData::const_iterator it_end =
|
|
|
|
(( len == -1 || cs.pos() + len > int(md.size()))
|
|
|
|
? md.end()
|
|
|
|
: md.begin() + cs.pos() + len );
|
|
|
|
for (MathData::const_iterator it = md.begin() + cs.pos();
|
|
|
|
it != it_end; ++it)
|
|
|
|
s = s + asString(*it);
|
|
|
|
LYXERR(Debug::FIND, "Stringified math: '" << s << "'");
|
|
|
|
return s;
|
2008-11-15 23:30:27 +00:00
|
|
|
}
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Don't know how to stringify from here: " << cur);
|
2008-11-15 23:30:27 +00:00
|
|
|
return docstring();
|
|
|
|
}
|
|
|
|
|
2009-08-19 15:14:28 +00:00
|
|
|
|
2008-11-17 11:46:07 +00:00
|
|
|
/** Computes the LaTeX export of buf starting from cur and ending len positions
|
|
|
|
* after cur, if len is positive, or at the paragraph or innermost inset end
|
|
|
|
* if len is -1.
|
|
|
|
*/
|
2008-12-20 16:00:47 +00:00
|
|
|
docstring latexifyFromCursor(DocIterator const & cur, int len)
|
2008-11-15 23:30:27 +00:00
|
|
|
{
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Latexifying with len=" << len << " from cursor at pos: " << cur);
|
|
|
|
LYXERR(Debug::FIND, " with cur.lastpost=" << cur.lastpos() << ", cur.lastrow="
|
2012-10-23 20:58:10 +00:00
|
|
|
<< cur.lastrow() << ", cur.lastcol=" << cur.lastcol());
|
2008-12-20 16:00:47 +00:00
|
|
|
Buffer const & buf = *cur.buffer();
|
2013-04-27 21:52:55 +00:00
|
|
|
LBUFERR(buf.params().isLatex());
|
2008-11-15 23:30:27 +00:00
|
|
|
|
|
|
|
odocstringstream ods;
|
2016-06-19 02:39:38 +00:00
|
|
|
otexstream os(ods, false);
|
2008-11-15 23:30:27 +00:00
|
|
|
OutputParams runparams(&buf.params().encoding());
|
|
|
|
runparams.nice = false;
|
|
|
|
runparams.flavor = OutputParams::LATEX;
|
|
|
|
runparams.linelen = 8000; //lyxrc.plaintext_linelen;
|
|
|
|
// No side effect of file copying and image conversion
|
|
|
|
runparams.dryrun = true;
|
|
|
|
|
|
|
|
if (cur.inTexted()) {
|
2010-12-18 15:57:27 +00:00
|
|
|
// @TODO what about searching beyond/across paragraph breaks ?
|
|
|
|
pos_type endpos = cur.paragraph().size();
|
|
|
|
if (len != -1 && endpos > cur.pos() + len)
|
|
|
|
endpos = cur.pos() + len;
|
2011-02-10 20:02:48 +00:00
|
|
|
TeXOnePar(buf, *cur.innerText(), cur.pit(), os, runparams,
|
2012-10-23 20:58:10 +00:00
|
|
|
string(), cur.pos(), endpos);
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Latexified text: '" << lyx::to_utf8(ods.str()) << "'");
|
2008-11-15 23:30:27 +00:00
|
|
|
} else if (cur.inMathed()) {
|
|
|
|
// Retrieve the math environment type, and add '$' or '$[' or others (\begin{equation}) accordingly
|
|
|
|
for (int s = cur.depth() - 1; s >= 0; --s) {
|
2012-10-23 20:58:10 +00:00
|
|
|
CursorSlice const & cs = cur[s];
|
2015-10-10 19:23:52 +00:00
|
|
|
if (cs.asInsetMath() && cs.asInsetMath()->asHullInset()) {
|
2015-10-07 03:13:21 +00:00
|
|
|
WriteStream ws(os);
|
2012-10-23 20:58:10 +00:00
|
|
|
cs.asInsetMath()->asHullInset()->header_write(ws);
|
|
|
|
break;
|
|
|
|
}
|
2008-11-15 23:30:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CursorSlice const & cs = cur.top();
|
|
|
|
MathData md = cs.cell();
|
2012-10-23 20:58:10 +00:00
|
|
|
MathData::const_iterator it_end =
|
|
|
|
((len == -1 || cs.pos() + len > int(md.size()))
|
|
|
|
? md.end()
|
|
|
|
: md.begin() + cs.pos() + len);
|
|
|
|
for (MathData::const_iterator it = md.begin() + cs.pos();
|
|
|
|
it != it_end; ++it)
|
2011-05-29 14:08:29 +00:00
|
|
|
ods << asString(*it);
|
2008-11-15 23:30:27 +00:00
|
|
|
|
2008-11-17 11:46:07 +00:00
|
|
|
// Retrieve the math environment type, and add '$' or '$]'
|
|
|
|
// or others (\end{equation}) accordingly
|
2008-11-15 23:30:27 +00:00
|
|
|
for (int s = cur.depth() - 1; s >= 0; --s) {
|
|
|
|
CursorSlice const & cs = cur[s];
|
2008-11-17 11:46:07 +00:00
|
|
|
InsetMath * inset = cs.asInsetMath();
|
|
|
|
if (inset && inset->asHullInset()) {
|
2015-10-07 03:13:21 +00:00
|
|
|
WriteStream ws(os);
|
2008-11-17 11:46:07 +00:00
|
|
|
inset->asHullInset()->footer_write(ws);
|
|
|
|
break;
|
2008-11-15 23:30:27 +00:00
|
|
|
}
|
|
|
|
}
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Latexified math: '" << lyx::to_utf8(ods.str()) << "'");
|
2008-11-15 23:30:27 +00:00
|
|
|
} else {
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Don't know how to stringify from here: " << cur);
|
2008-11-15 23:30:27 +00:00
|
|
|
}
|
|
|
|
return ods.str();
|
|
|
|
}
|
|
|
|
|
2009-12-30 18:40:18 +00:00
|
|
|
|
2008-11-15 23:30:27 +00:00
|
|
|
/** Finalize an advanced find operation, advancing the cursor to the innermost
|
|
|
|
** position that matches, plus computing the length of the matching text to
|
|
|
|
** be selected
|
|
|
|
**/
|
|
|
|
int findAdvFinalize(DocIterator & cur, MatchStringAdv const & match)
|
|
|
|
{
|
2008-11-17 11:46:07 +00:00
|
|
|
// Search the foremost position that matches (avoids find of entire math
|
|
|
|
// inset when match at start of it)
|
2008-11-15 23:30:27 +00:00
|
|
|
size_t d;
|
2008-11-17 11:46:07 +00:00
|
|
|
DocIterator old_cur(cur.buffer());
|
2008-11-15 23:30:27 +00:00
|
|
|
do {
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Forwarding one step (searching for innermost match)");
|
2008-11-15 23:30:27 +00:00
|
|
|
d = cur.depth();
|
|
|
|
old_cur = cur;
|
|
|
|
cur.forwardPos();
|
|
|
|
} while (cur && cur.depth() > d && match(cur) > 0);
|
|
|
|
cur = old_cur;
|
2013-04-25 21:27:10 +00:00
|
|
|
LASSERT(match(cur) > 0, return 0);
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Ok");
|
2008-11-15 23:30:27 +00:00
|
|
|
|
|
|
|
// Compute the match length
|
|
|
|
int len = 1;
|
2010-02-02 20:36:12 +00:00
|
|
|
if (cur.pos() + len > cur.lastpos())
|
|
|
|
return 0;
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "verifying unmatch with len = " << len);
|
2008-11-15 23:30:27 +00:00
|
|
|
while (cur.pos() + len <= cur.lastpos() && match(cur, len) == 0) {
|
|
|
|
++len;
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "verifying unmatch with len = " << len);
|
2008-11-15 23:30:27 +00:00
|
|
|
}
|
2008-11-17 11:46:07 +00:00
|
|
|
// Length of matched text (different from len param)
|
|
|
|
int old_len = match(cur, len);
|
2008-11-15 23:30:27 +00:00
|
|
|
int new_len;
|
|
|
|
// Greedy behaviour while matching regexps
|
|
|
|
while ((new_len = match(cur, len + 1)) > old_len) {
|
|
|
|
++len;
|
|
|
|
old_len = new_len;
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "verifying match with len = " << len);
|
2008-11-15 23:30:27 +00:00
|
|
|
}
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2008-12-20 16:00:47 +00:00
|
|
|
|
2008-11-15 23:30:27 +00:00
|
|
|
/// Finds forward
|
2009-12-30 18:40:18 +00:00
|
|
|
int findForwardAdv(DocIterator & cur, MatchStringAdv & match)
|
2008-11-15 23:30:27 +00:00
|
|
|
{
|
2008-11-17 11:46:07 +00:00
|
|
|
if (!cur)
|
2008-11-15 23:30:27 +00:00
|
|
|
return 0;
|
2012-03-06 23:21:12 +00:00
|
|
|
while (!theApp()->longOperationCancelled() && cur) {
|
2011-02-07 20:36:40 +00:00
|
|
|
LYXERR(Debug::FIND, "findForwardAdv() cur: " << cur);
|
2011-05-27 20:39:58 +00:00
|
|
|
int match_len = match(cur, -1, false);
|
|
|
|
LYXERR(Debug::FIND, "match_len: " << match_len);
|
|
|
|
if (match_len) {
|
2012-03-06 23:21:12 +00:00
|
|
|
for (; !theApp()->longOperationCancelled() && cur; cur.forwardPos()) {
|
2011-02-07 20:36:40 +00:00
|
|
|
LYXERR(Debug::FIND, "Advancing cur: " << cur);
|
2011-05-27 20:39:58 +00:00
|
|
|
int match_len = match(cur);
|
|
|
|
LYXERR(Debug::FIND, "match_len: " << match_len);
|
|
|
|
if (match_len) {
|
2011-02-07 20:36:40 +00:00
|
|
|
// Sometimes in finalize we understand it wasn't a match
|
|
|
|
// and we need to continue the outest loop
|
|
|
|
int len = findAdvFinalize(cur, match);
|
|
|
|
if (len > 0)
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!cur)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (cur.pit() < cur.lastpit()) {
|
|
|
|
LYXERR(Debug::FIND, "Advancing par: cur=" << cur);
|
2010-01-04 12:29:38 +00:00
|
|
|
cur.forwardPar();
|
2011-02-07 20:36:40 +00:00
|
|
|
} else {
|
|
|
|
// This should exit nested insets, if any, or otherwise undefine the currsor.
|
|
|
|
cur.pos() = cur.lastpos();
|
|
|
|
LYXERR(Debug::FIND, "Advancing pos: cur=" << cur);
|
2010-01-04 12:29:38 +00:00
|
|
|
cur.forwardPos();
|
2008-12-20 16:00:47 +00:00
|
|
|
}
|
2010-01-04 12:29:38 +00:00
|
|
|
}
|
2008-11-15 23:30:27 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-12-30 21:50:55 +00:00
|
|
|
|
2009-08-17 08:08:21 +00:00
|
|
|
/// Find the most backward consecutive match within same paragraph while searching backwards.
|
2010-05-02 22:33:36 +00:00
|
|
|
int findMostBackwards(DocIterator & cur, MatchStringAdv const & match)
|
2010-01-04 12:29:38 +00:00
|
|
|
{
|
2009-08-17 08:08:21 +00:00
|
|
|
DocIterator cur_begin = doc_iterator_begin(cur.buffer());
|
2010-03-20 13:59:46 +00:00
|
|
|
DocIterator tmp_cur = cur;
|
2010-05-02 22:33:36 +00:00
|
|
|
int len = findAdvFinalize(tmp_cur, match);
|
2010-03-20 13:59:46 +00:00
|
|
|
Inset & inset = cur.inset();
|
|
|
|
for (; cur != cur_begin; cur.backwardPos()) {
|
|
|
|
LYXERR(Debug::FIND, "findMostBackwards(): cur=" << cur);
|
|
|
|
DocIterator new_cur = cur;
|
|
|
|
new_cur.backwardPos();
|
|
|
|
if (new_cur == cur || &new_cur.inset() != &inset || !match(new_cur))
|
|
|
|
break;
|
|
|
|
int new_len = findAdvFinalize(new_cur, match);
|
|
|
|
if (new_len == len)
|
|
|
|
break;
|
|
|
|
len = new_len;
|
2009-08-17 08:08:21 +00:00
|
|
|
}
|
2010-03-20 13:59:46 +00:00
|
|
|
LYXERR(Debug::FIND, "findMostBackwards(): exiting with cur=" << cur);
|
2010-05-02 22:33:36 +00:00
|
|
|
return len;
|
2009-08-17 08:08:21 +00:00
|
|
|
}
|
2008-12-20 16:00:47 +00:00
|
|
|
|
2010-01-04 12:29:38 +00:00
|
|
|
|
2008-11-15 23:30:27 +00:00
|
|
|
/// Finds backwards
|
2012-10-27 13:45:27 +00:00
|
|
|
int findBackwardsAdv(DocIterator & cur, MatchStringAdv & match)
|
|
|
|
{
|
2009-08-17 08:08:21 +00:00
|
|
|
if (! cur)
|
|
|
|
return 0;
|
2010-01-04 12:29:38 +00:00
|
|
|
// Backup of original position
|
2009-08-17 08:08:21 +00:00
|
|
|
DocIterator cur_begin = doc_iterator_begin(cur.buffer());
|
2010-01-04 12:29:38 +00:00
|
|
|
if (cur == cur_begin)
|
|
|
|
return 0;
|
2010-03-20 13:59:46 +00:00
|
|
|
cur.backwardPos();
|
|
|
|
DocIterator cur_orig(cur);
|
2010-01-04 12:29:38 +00:00
|
|
|
bool pit_changed = false;
|
2008-12-20 16:00:47 +00:00
|
|
|
do {
|
2009-08-17 08:08:21 +00:00
|
|
|
cur.pos() = 0;
|
2015-10-09 06:08:49 +00:00
|
|
|
bool found_match = match(cur, -1, false);
|
2010-01-04 12:29:38 +00:00
|
|
|
|
2009-08-17 08:08:21 +00:00
|
|
|
if (found_match) {
|
2010-01-04 12:29:38 +00:00
|
|
|
if (pit_changed)
|
|
|
|
cur.pos() = cur.lastpos();
|
|
|
|
else
|
|
|
|
cur.pos() = cur_orig.pos();
|
|
|
|
LYXERR(Debug::FIND, "findBackAdv2: cur: " << cur);
|
|
|
|
DocIterator cur_prev_iter;
|
2010-03-20 13:59:46 +00:00
|
|
|
do {
|
2010-01-04 12:29:38 +00:00
|
|
|
found_match = match(cur);
|
2015-05-17 15:27:12 +00:00
|
|
|
LYXERR(Debug::FIND, "findBackAdv3: found_match="
|
2010-01-04 12:29:38 +00:00
|
|
|
<< found_match << ", cur: " << cur);
|
2010-05-02 22:33:36 +00:00
|
|
|
if (found_match)
|
|
|
|
return findMostBackwards(cur, match);
|
|
|
|
|
2010-03-20 13:59:46 +00:00
|
|
|
// Stop if begin of document reached
|
|
|
|
if (cur == cur_begin)
|
2009-08-17 08:08:21 +00:00
|
|
|
break;
|
2009-12-26 22:10:14 +00:00
|
|
|
cur_prev_iter = cur;
|
2009-08-17 08:08:21 +00:00
|
|
|
cur.backwardPos();
|
2010-03-20 13:59:46 +00:00
|
|
|
} while (true);
|
2008-12-20 16:00:47 +00:00
|
|
|
}
|
2010-01-04 12:29:38 +00:00
|
|
|
if (cur == cur_begin)
|
2009-12-30 22:21:23 +00:00
|
|
|
break;
|
2010-01-04 12:29:38 +00:00
|
|
|
if (cur.pit() > 0)
|
|
|
|
--cur.pit();
|
|
|
|
else
|
|
|
|
cur.backwardPos();
|
|
|
|
pit_changed = true;
|
2012-03-06 23:21:12 +00:00
|
|
|
} while (!theApp()->longOperationCancelled());
|
2008-11-15 23:30:27 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-12-30 18:40:18 +00:00
|
|
|
|
2008-11-15 23:30:27 +00:00
|
|
|
} // anonym namespace
|
|
|
|
|
|
|
|
|
2009-01-14 15:34:56 +00:00
|
|
|
docstring stringifyFromForSearch(FindAndReplaceOptions const & opt,
|
2012-10-23 20:58:10 +00:00
|
|
|
DocIterator const & cur, int len)
|
2008-11-15 23:30:27 +00:00
|
|
|
{
|
2013-04-25 21:27:10 +00:00
|
|
|
LASSERT(cur.pos() >= 0 && cur.pos() <= cur.lastpos(),
|
|
|
|
return docstring());
|
2008-11-17 11:46:07 +00:00
|
|
|
if (!opt.ignoreformat)
|
2008-12-20 16:00:47 +00:00
|
|
|
return latexifyFromCursor(cur, len);
|
2008-11-15 23:30:27 +00:00
|
|
|
else
|
|
|
|
return stringifyFromCursor(cur, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-23 20:58:10 +00:00
|
|
|
FindAndReplaceOptions::FindAndReplaceOptions(
|
|
|
|
docstring const & find_buf_name, bool casesensitive,
|
2008-11-15 23:30:27 +00:00
|
|
|
bool matchword, bool forward, bool expandmacros, bool ignoreformat,
|
2011-02-07 20:36:40 +00:00
|
|
|
docstring const & repl_buf_name, bool keep_case,
|
2013-08-23 19:36:50 +00:00
|
|
|
SearchScope scope, SearchRestriction restr)
|
2011-02-07 20:36:40 +00:00
|
|
|
: find_buf_name(find_buf_name), casesensitive(casesensitive), matchword(matchword),
|
2012-10-23 20:58:10 +00:00
|
|
|
forward(forward), expandmacros(expandmacros), ignoreformat(ignoreformat),
|
2013-08-23 19:36:50 +00:00
|
|
|
repl_buf_name(repl_buf_name), keep_case(keep_case), scope(scope), restr(restr)
|
2008-11-15 23:30:27 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-08-19 22:55:38 +00:00
|
|
|
|
2010-10-13 18:30:37 +00:00
|
|
|
namespace {
|
2009-08-19 22:55:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
/** Check if 'len' letters following cursor are all non-lowercase */
|
2013-07-22 09:39:11 +00:00
|
|
|
static bool allNonLowercase(Cursor const & cur, int len)
|
2012-10-27 13:45:27 +00:00
|
|
|
{
|
2013-07-22 09:39:11 +00:00
|
|
|
pos_type beg_pos = cur.selectionBegin().pos();
|
|
|
|
pos_type end_pos = cur.selectionBegin().pos() + len;
|
|
|
|
if (len > cur.lastpos() + 1 - beg_pos) {
|
|
|
|
LYXERR(Debug::FIND, "This should not happen, more debug needed");
|
|
|
|
len = cur.lastpos() + 1 - beg_pos;
|
2015-10-09 06:14:18 +00:00
|
|
|
end_pos = beg_pos + len;
|
2013-07-22 09:39:11 +00:00
|
|
|
}
|
|
|
|
for (pos_type pos = beg_pos; pos != end_pos; ++pos)
|
2009-08-19 22:55:38 +00:00
|
|
|
if (isLowerCase(cur.paragraph().getChar(pos)))
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Check if first letter is upper case and second one is lower case */
|
2013-07-22 09:39:11 +00:00
|
|
|
static bool firstUppercase(Cursor const & cur)
|
2012-10-27 13:45:27 +00:00
|
|
|
{
|
2009-08-19 22:55:38 +00:00
|
|
|
char_type ch1, ch2;
|
2013-07-22 09:39:11 +00:00
|
|
|
pos_type pos = cur.selectionBegin().pos();
|
|
|
|
if (pos >= cur.lastpos() - 1) {
|
2009-08-19 22:55:38 +00:00
|
|
|
LYXERR(Debug::FIND, "No upper-case at cur: " << cur);
|
|
|
|
return false;
|
|
|
|
}
|
2013-07-22 09:39:11 +00:00
|
|
|
ch1 = cur.paragraph().getChar(pos);
|
|
|
|
ch2 = cur.paragraph().getChar(pos + 1);
|
2009-08-19 22:55:38 +00:00
|
|
|
bool result = isUpperCase(ch1) && isLowerCase(ch2);
|
|
|
|
LYXERR(Debug::FIND, "firstUppercase(): "
|
2015-05-17 15:27:12 +00:00
|
|
|
<< "ch1=" << ch1 << "(" << char(ch1) << "), ch2="
|
2009-09-04 13:06:43 +00:00
|
|
|
<< ch2 << "(" << char(ch2) << ")"
|
2009-08-19 22:55:38 +00:00
|
|
|
<< ", result=" << result << ", cur=" << cur);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Make first letter of supplied buffer upper-case, and the rest lower-case.
|
|
|
|
**
|
|
|
|
** \fixme What to do with possible further paragraphs in replace buffer ?
|
|
|
|
**/
|
2012-10-27 13:45:27 +00:00
|
|
|
static void changeFirstCase(Buffer & buffer, TextCase first_case, TextCase others_case)
|
|
|
|
{
|
2009-08-19 22:55:38 +00:00
|
|
|
ParagraphList::iterator pit = buffer.paragraphs().begin();
|
2013-07-22 09:39:11 +00:00
|
|
|
LASSERT(pit->size() >= 1, /**/);
|
2009-08-19 22:55:38 +00:00
|
|
|
pos_type right = pos_type(1);
|
|
|
|
pit->changeCase(buffer.params(), pos_type(0), right, first_case);
|
2013-07-22 09:39:11 +00:00
|
|
|
right = pit->size();
|
|
|
|
pit->changeCase(buffer.params(), pos_type(1), right, others_case);
|
2009-08-19 22:55:38 +00:00
|
|
|
}
|
2012-10-27 13:45:27 +00:00
|
|
|
|
2010-10-13 18:30:37 +00:00
|
|
|
} // anon namespace
|
2009-08-19 22:55:38 +00:00
|
|
|
|
2010-01-30 10:11:24 +00:00
|
|
|
///
|
|
|
|
static void findAdvReplace(BufferView * bv, FindAndReplaceOptions const & opt, MatchStringAdv & matchAdv)
|
|
|
|
{
|
|
|
|
Cursor & cur = bv->cursor();
|
2011-02-07 20:36:40 +00:00
|
|
|
if (opt.repl_buf_name == docstring())
|
2010-01-30 10:11:24 +00:00
|
|
|
return;
|
2011-02-07 20:36:40 +00:00
|
|
|
|
2010-01-30 10:11:24 +00:00
|
|
|
DocIterator sel_beg = cur.selectionBegin();
|
|
|
|
DocIterator sel_end = cur.selectionEnd();
|
2010-02-22 21:44:59 +00:00
|
|
|
if (&sel_beg.inset() != &sel_end.inset()
|
2014-03-31 16:33:53 +00:00
|
|
|
|| sel_beg.pit() != sel_end.pit()
|
|
|
|
|| sel_beg.idx() != sel_end.idx())
|
2010-02-22 21:44:59 +00:00
|
|
|
return;
|
2010-01-30 10:11:24 +00:00
|
|
|
int sel_len = sel_end.pos() - sel_beg.pos();
|
2010-02-22 21:44:59 +00:00
|
|
|
LYXERR(Debug::FIND, "sel_beg: " << sel_beg << ", sel_end: " << sel_end
|
|
|
|
<< ", sel_len: " << sel_len << endl);
|
2010-01-30 10:11:24 +00:00
|
|
|
if (sel_len == 0)
|
|
|
|
return;
|
2013-04-25 21:27:10 +00:00
|
|
|
LASSERT(sel_len > 0, return);
|
2010-01-30 10:11:24 +00:00
|
|
|
|
|
|
|
if (!matchAdv(sel_beg, sel_len))
|
|
|
|
return;
|
|
|
|
|
2011-02-07 20:36:40 +00:00
|
|
|
// Build a copy of the replace buffer, adapted to the KeepCase option
|
|
|
|
Buffer & repl_buffer_orig = *theBufferList().getBuffer(FileName(to_utf8(opt.repl_buf_name)), true);
|
|
|
|
ostringstream oss;
|
|
|
|
repl_buffer_orig.write(oss);
|
|
|
|
string lyx = oss.str();
|
2010-01-30 10:11:24 +00:00
|
|
|
Buffer repl_buffer("", false);
|
|
|
|
repl_buffer.setUnnamed(true);
|
2013-04-25 21:27:10 +00:00
|
|
|
LASSERT(repl_buffer.readString(lyx), return);
|
2010-01-30 10:11:24 +00:00
|
|
|
if (opt.keep_case && sel_len >= 2) {
|
2013-07-22 09:39:11 +00:00
|
|
|
LYXERR(Debug::FIND, "keep_case true: cur.pos()=" << cur.pos() << ", sel_len=" << sel_len);
|
2010-01-30 10:11:24 +00:00
|
|
|
if (cur.inTexted()) {
|
|
|
|
if (firstUppercase(cur))
|
|
|
|
changeFirstCase(repl_buffer, text_uppercase, text_lowercase);
|
|
|
|
else if (allNonLowercase(cur, sel_len))
|
|
|
|
changeFirstCase(repl_buffer, text_uppercase, text_uppercase);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cap::cutSelection(cur, false, false);
|
2011-10-18 18:57:42 +00:00
|
|
|
if (cur.inTexted()) {
|
2010-12-30 17:59:59 +00:00
|
|
|
repl_buffer.changeLanguage(
|
|
|
|
repl_buffer.language(),
|
|
|
|
cur.getFont().language());
|
2010-01-30 10:11:24 +00:00
|
|
|
LYXERR(Debug::FIND, "Replacing by pasteParagraphList()ing repl_buffer");
|
2010-12-29 19:59:41 +00:00
|
|
|
LYXERR(Debug::FIND, "Before pasteParagraphList() cur=" << cur << endl);
|
2010-01-30 10:11:24 +00:00
|
|
|
cap::pasteParagraphList(cur, repl_buffer.paragraphs(),
|
|
|
|
repl_buffer.params().documentClassPtr(),
|
|
|
|
bv->buffer().errorList("Paste"));
|
2010-12-29 19:59:41 +00:00
|
|
|
LYXERR(Debug::FIND, "After pasteParagraphList() cur=" << cur << endl);
|
2011-01-26 23:54:12 +00:00
|
|
|
sel_len = repl_buffer.paragraphs().begin()->size();
|
2011-10-18 18:57:42 +00:00
|
|
|
} else if (cur.inMathed()) {
|
2010-01-30 10:11:24 +00:00
|
|
|
odocstringstream ods;
|
2016-06-19 02:39:38 +00:00
|
|
|
otexstream os(ods, false);
|
2010-01-30 10:11:24 +00:00
|
|
|
OutputParams runparams(&repl_buffer.params().encoding());
|
|
|
|
runparams.nice = false;
|
|
|
|
runparams.flavor = OutputParams::LATEX;
|
|
|
|
runparams.linelen = 8000; //lyxrc.plaintext_linelen;
|
|
|
|
runparams.dryrun = true;
|
2011-02-10 20:02:48 +00:00
|
|
|
TeXOnePar(repl_buffer, repl_buffer.text(), 0, os, runparams);
|
2010-01-30 10:11:24 +00:00
|
|
|
//repl_buffer.getSourceCode(ods, 0, repl_buffer.paragraphs().size(), false);
|
|
|
|
docstring repl_latex = ods.str();
|
|
|
|
LYXERR(Debug::FIND, "Latexified replace_buffer: '" << repl_latex << "'");
|
|
|
|
string s;
|
2016-06-12 02:38:57 +00:00
|
|
|
// false positive from coverity
|
|
|
|
// coverity[CHECKED_RETURN]
|
2010-01-30 10:11:24 +00:00
|
|
|
regex_replace(to_utf8(repl_latex), s, "\\$(.*)\\$", "$1");
|
|
|
|
regex_replace(s, s, "\\\\\\[(.*)\\\\\\]", "$1");
|
|
|
|
repl_latex = from_utf8(s);
|
2011-07-10 00:19:11 +00:00
|
|
|
LYXERR(Debug::FIND, "Replacing by insert()ing latex: '" << repl_latex << "' cur=" << cur << " with depth=" << cur.depth());
|
|
|
|
MathData ar(cur.buffer());
|
|
|
|
asArray(repl_latex, ar, Parse::NORMAL);
|
|
|
|
cur.insert(ar);
|
|
|
|
sel_len = ar.size();
|
|
|
|
LYXERR(Debug::FIND, "After insert() cur=" << cur << " with depth: " << cur.depth() << " and len: " << sel_len);
|
2010-01-30 10:11:24 +00:00
|
|
|
}
|
2011-04-16 10:48:55 +00:00
|
|
|
if (cur.pos() >= sel_len)
|
|
|
|
cur.pos() -= sel_len;
|
|
|
|
else
|
2011-01-26 23:54:12 +00:00
|
|
|
cur.pos() = 0;
|
2011-07-10 00:19:11 +00:00
|
|
|
LYXERR(Debug::FIND, "After pos adj cur=" << cur << " with depth: " << cur.depth() << " and len: " << sel_len);
|
2011-01-26 23:54:12 +00:00
|
|
|
bv->putSelectionAt(DocIterator(cur), sel_len, !opt.forward);
|
2011-05-21 10:44:27 +00:00
|
|
|
bv->processUpdateFlags(Update::Force);
|
2010-01-30 10:11:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-15 23:30:27 +00:00
|
|
|
/// Perform a FindAdv operation.
|
2009-01-14 15:34:56 +00:00
|
|
|
bool findAdv(BufferView * bv, FindAndReplaceOptions const & opt)
|
2008-11-15 23:30:27 +00:00
|
|
|
{
|
2010-01-30 10:11:24 +00:00
|
|
|
DocIterator cur;
|
2010-12-29 19:59:41 +00:00
|
|
|
int match_len = 0;
|
2008-11-15 23:30:27 +00:00
|
|
|
|
|
|
|
try {
|
2010-01-30 10:11:24 +00:00
|
|
|
MatchStringAdv matchAdv(bv->buffer(), opt);
|
2013-04-03 23:43:36 +00:00
|
|
|
int length = bv->cursor().selectionEnd().pos() - bv->cursor().selectionBegin().pos();
|
2013-04-03 23:50:02 +00:00
|
|
|
if (length > 0)
|
|
|
|
bv->putSelectionAt(bv->cursor().selectionBegin(), length, !opt.forward);
|
2010-01-30 10:11:24 +00:00
|
|
|
findAdvReplace(bv, opt, matchAdv);
|
|
|
|
cur = bv->cursor();
|
2008-11-15 23:30:27 +00:00
|
|
|
if (opt.forward)
|
2012-10-23 20:58:10 +00:00
|
|
|
match_len = findForwardAdv(cur, matchAdv);
|
2008-11-15 23:30:27 +00:00
|
|
|
else
|
2012-10-23 20:58:10 +00:00
|
|
|
match_len = findBackwardsAdv(cur, matchAdv);
|
2008-11-15 23:30:27 +00:00
|
|
|
} catch (...) {
|
2010-06-29 17:09:40 +00:00
|
|
|
// This may only be raised by lyx::regex()
|
2008-12-07 17:18:30 +00:00
|
|
|
bv->message(_("Invalid regular expression!"));
|
2008-11-15 23:30:27 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (match_len == 0) {
|
2008-12-07 17:18:30 +00:00
|
|
|
bv->message(_("Match not found!"));
|
2008-11-15 23:30:27 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-01-30 10:11:24 +00:00
|
|
|
bv->message(_("Match found!"));
|
2009-12-30 18:40:18 +00:00
|
|
|
|
2010-01-30 10:11:24 +00:00
|
|
|
LYXERR(Debug::FIND, "Putting selection at cur=" << cur << " with len: " << match_len);
|
|
|
|
bv->putSelectionAt(cur, match_len, !opt.forward);
|
2008-11-15 23:30:27 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-10 12:37:50 +00:00
|
|
|
ostringstream & operator<<(ostringstream & os, FindAndReplaceOptions const & opt)
|
2008-11-15 23:30:27 +00:00
|
|
|
{
|
2011-02-07 20:36:40 +00:00
|
|
|
os << to_utf8(opt.find_buf_name) << "\nEOSS\n"
|
2008-11-15 23:30:27 +00:00
|
|
|
<< opt.casesensitive << ' '
|
|
|
|
<< opt.matchword << ' '
|
|
|
|
<< opt.forward << ' '
|
|
|
|
<< opt.expandmacros << ' '
|
|
|
|
<< opt.ignoreformat << ' '
|
2011-02-07 20:36:40 +00:00
|
|
|
<< to_utf8(opt.repl_buf_name) << "\nEOSS\n"
|
2009-12-30 18:40:18 +00:00
|
|
|
<< opt.keep_case << ' '
|
2013-08-23 19:36:50 +00:00
|
|
|
<< int(opt.scope) << ' '
|
|
|
|
<< int(opt.restr);
|
2008-11-15 23:30:27 +00:00
|
|
|
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "built: " << os.str());
|
2008-11-15 23:30:27 +00:00
|
|
|
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
2011-02-07 20:36:40 +00:00
|
|
|
|
2010-01-10 12:37:50 +00:00
|
|
|
istringstream & operator>>(istringstream & is, FindAndReplaceOptions & opt)
|
2008-11-15 23:30:27 +00:00
|
|
|
{
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "parsing");
|
2008-11-15 23:30:27 +00:00
|
|
|
string s;
|
|
|
|
string line;
|
|
|
|
getline(is, line);
|
|
|
|
while (line != "EOSS") {
|
|
|
|
if (! s.empty())
|
2012-10-23 20:58:10 +00:00
|
|
|
s = s + "\n";
|
2008-11-15 23:30:27 +00:00
|
|
|
s = s + line;
|
|
|
|
if (is.eof()) // Tolerate malformed request
|
2012-10-23 20:58:10 +00:00
|
|
|
break;
|
2008-11-15 23:30:27 +00:00
|
|
|
getline(is, line);
|
|
|
|
}
|
2011-02-07 20:36:40 +00:00
|
|
|
LYXERR(Debug::FIND, "file_buf_name: '" << s << "'");
|
|
|
|
opt.find_buf_name = from_utf8(s);
|
|
|
|
is >> opt.casesensitive >> opt.matchword >> opt.forward >> opt.expandmacros >> opt.ignoreformat;
|
2009-01-14 15:34:56 +00:00
|
|
|
is.get(); // Waste space before replace string
|
|
|
|
s = "";
|
|
|
|
getline(is, line);
|
|
|
|
while (line != "EOSS") {
|
|
|
|
if (! s.empty())
|
2012-10-23 20:58:10 +00:00
|
|
|
s = s + "\n";
|
2009-01-14 15:34:56 +00:00
|
|
|
s = s + line;
|
|
|
|
if (is.eof()) // Tolerate malformed request
|
2012-10-23 20:58:10 +00:00
|
|
|
break;
|
2009-01-14 15:34:56 +00:00
|
|
|
getline(is, line);
|
|
|
|
}
|
2011-02-07 20:36:40 +00:00
|
|
|
LYXERR(Debug::FIND, "repl_buf_name: '" << s << "'");
|
|
|
|
opt.repl_buf_name = from_utf8(s);
|
2009-08-19 22:55:38 +00:00
|
|
|
is >> opt.keep_case;
|
2009-12-30 18:40:18 +00:00
|
|
|
int i;
|
|
|
|
is >> i;
|
|
|
|
opt.scope = FindAndReplaceOptions::SearchScope(i);
|
2013-08-23 19:36:50 +00:00
|
|
|
is >> i;
|
|
|
|
opt.restr = FindAndReplaceOptions::SearchRestriction(i);
|
|
|
|
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "parsed: " << opt.casesensitive << ' ' << opt.matchword << ' ' << opt.forward << ' '
|
2013-08-23 19:36:50 +00:00
|
|
|
<< opt.expandmacros << ' ' << opt.ignoreformat << ' ' << opt.keep_case << ' '
|
|
|
|
<< opt.scope << ' ' << opt.restr);
|
2008-11-15 23:30:27 +00:00
|
|
|
return is;
|
|
|
|
}
|
|
|
|
|
2004-03-25 09:16:36 +00:00
|
|
|
} // lyx namespace
|