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"
|
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"
|
2008-11-15 23:30:27 +00:00
|
|
|
#include "OutputParams.h"
|
|
|
|
#include "output_latex.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"
|
2009-01-14 15:34:56 +00:00
|
|
|
#include "FuncRequest.h"
|
|
|
|
#include "LyXFunc.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"
|
2003-09-09 22:13:45 +00:00
|
|
|
|
2007-04-28 20:44:46 +00:00
|
|
|
#include "frontends/alert.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"
|
2008-02-18 07:14:42 +00:00
|
|
|
#include "support/gettext.h"
|
2007-11-13 23:50:28 +00:00
|
|
|
#include "support/lstrings.h"
|
2008-12-20 16:00:47 +00:00
|
|
|
#include "support/lassert.h"
|
2003-09-09 22:13:45 +00:00
|
|
|
|
2008-11-15 23:30:27 +00:00
|
|
|
#include <boost/regex.hpp>
|
2008-12-20 16:00:47 +00:00
|
|
|
#include <boost/next_prior.hpp>
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-12 19:28:07 +00:00
|
|
|
class MatchString : public binary_function<Paragraph, pos_type, bool>
|
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)
|
2004-01-07 14:07:46 +00:00
|
|
|
: str(str), cs(cs), mw(mw)
|
|
|
|
{}
|
|
|
|
|
|
|
|
// 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
|
|
|
|
bool operator()(Paragraph const & par, pos_type pos, bool del = true) const
|
2004-01-07 17:00:03 +00:00
|
|
|
{
|
2007-10-24 08:22:26 +00:00
|
|
|
return par.find(str, cs, mw, 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
|
2003-11-04 12:01:15 +00:00
|
|
|
bool cs;
|
2004-01-07 14:07:46 +00:00
|
|
|
// match whole words only
|
2003-11-04 12:01:15 +00:00
|
|
|
bool mw;
|
|
|
|
};
|
2003-07-27 12:02:58 +00:00
|
|
|
|
|
|
|
|
2007-06-10 15:07:21 +00:00
|
|
|
bool findForward(DocIterator & cur, MatchString const & match,
|
|
|
|
bool find_del = true)
|
2001-03-06 10:20:33 +00:00
|
|
|
{
|
2004-04-01 08:58:45 +00:00
|
|
|
for (; cur; cur.forwardChar())
|
2007-06-10 15:07:21 +00:00
|
|
|
if (cur.inTexted() &&
|
|
|
|
match(cur.paragraph(), cur.pos(), find_del))
|
2003-11-17 09:02:10 +00:00
|
|
|
return true;
|
|
|
|
return false;
|
2003-11-04 12:01:15 +00:00
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-08-13 10:09:50 +00:00
|
|
|
|
2007-06-10 15:07:21 +00:00
|
|
|
bool findBackwards(DocIterator & cur, MatchString const & match,
|
|
|
|
bool find_del = true)
|
2003-11-04 12:01:15 +00:00
|
|
|
{
|
2004-09-17 16:28:47 +00:00
|
|
|
while (cur) {
|
|
|
|
cur.backwardChar();
|
2007-06-10 15:07:21 +00:00
|
|
|
if (cur.inTexted() &&
|
|
|
|
match(cur.paragraph(), cur.pos(), find_del))
|
2003-11-17 09:02:10 +00:00
|
|
|
return true;
|
2004-09-17 16:28:47 +00:00
|
|
|
}
|
2003-11-17 09:02:10 +00:00
|
|
|
return false;
|
2003-11-04 12:01:15 +00:00
|
|
|
}
|
2003-03-19 14:45:22 +00:00
|
|
|
|
2003-11-04 12:01:15 +00:00
|
|
|
|
2009-04-05 19:11:25 +00:00
|
|
|
bool findChange(DocIterator & cur, bool next)
|
2003-11-04 12:01:15 +00:00
|
|
|
{
|
2009-05-07 12:40:35 +00:00
|
|
|
if (!next)
|
2009-04-05 19:11:25 +00:00
|
|
|
cur.backwardPos();
|
|
|
|
for (; cur; next ? cur.forwardPos() : cur.backwardPos())
|
2009-08-04 22:44:23 +00:00
|
|
|
if (cur.inTexted() && cur.paragraph().isChanged(cur.pos())) {
|
2009-04-05 19:11:25 +00:00
|
|
|
if (!next)
|
|
|
|
// if we search backwards, take a step forward
|
|
|
|
// to correctly set the anchor
|
|
|
|
cur.forwardPos();
|
2003-11-17 09:02:10 +00:00
|
|
|
return true;
|
2009-04-05 19:11:25 +00:00
|
|
|
}
|
|
|
|
|
2003-11-17 09:02:10 +00:00
|
|
|
return false;
|
2001-03-06 10:20:33 +00:00
|
|
|
}
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2001-03-06 10:20:33 +00:00
|
|
|
|
2007-10-20 17:35:27 +00:00
|
|
|
bool searchAllowed(BufferView * /*bv*/, 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
|
|
|
|
2007-11-13 23:50:28 +00:00
|
|
|
bool find(BufferView * bv, docstring const & searchstr,
|
|
|
|
bool cs, bool mw, bool fw, bool find_del = true)
|
2002-06-18 15:44:30 +00:00
|
|
|
{
|
2003-11-04 12:01:15 +00:00
|
|
|
if (!searchAllowed(bv, searchstr))
|
|
|
|
return false;
|
|
|
|
|
2004-03-31 19:11:56 +00:00
|
|
|
DocIterator cur = bv->cursor();
|
2002-06-18 15:44:30 +00:00
|
|
|
|
2003-11-17 09:02:10 +00:00
|
|
|
MatchString const match(searchstr, cs, mw);
|
|
|
|
|
2007-06-10 15:07:21 +00:00
|
|
|
bool found = fw ? findForward(cur, match, find_del) :
|
|
|
|
findBackwards(cur, match, find_del);
|
2003-11-17 09:02:10 +00:00
|
|
|
|
2003-11-04 12:01:15 +00:00
|
|
|
if (found)
|
2004-01-14 17:21:39 +00:00
|
|
|
bv->putSelectionAt(cur, searchstr.length(), !fw);
|
2002-06-18 15:44:30 +00:00
|
|
|
|
2003-11-04 12:01:15 +00:00
|
|
|
return found;
|
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,
|
2003-11-04 12:01:15 +00:00
|
|
|
bool cs, bool mw)
|
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
|
|
|
|
2003-11-04 12:01:15 +00:00
|
|
|
if (!searchAllowed(bv, searchstr) || buf.isReadonly())
|
|
|
|
return 0;
|
2004-01-26 17:00:09 +00:00
|
|
|
|
2003-11-17 09:02:10 +00:00
|
|
|
MatchString const match(searchstr, cs, mw);
|
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));
|
2007-06-10 15:07:21 +00:00
|
|
|
while (findForward(cur, match, false)) {
|
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();
|
2006-10-22 14:36:08 +00:00
|
|
|
int striked = ssize - cur.paragraph().eraseChars(pos, pos + ssize,
|
2006-10-20 13:16:15 +00:00
|
|
|
buf.params().trackChanges);
|
2006-12-10 11:52:46 +00:00
|
|
|
cur.paragraph().insert(pos, replacestr, font,
|
2007-05-28 22:27:45 +00:00
|
|
|
Change(buf.params().trackChanges ?
|
|
|
|
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;
|
|
|
|
}
|
2003-11-17 09:02:10 +00:00
|
|
|
|
2008-11-16 16:43:49 +00:00
|
|
|
buf.updateLabels();
|
2008-11-17 11:46:07 +00:00
|
|
|
bv->putSelectionAt(doc_iterator_begin(&buf), 0, false);
|
2003-11-06 10:10:43 +00:00
|
|
|
if (num)
|
|
|
|
buf.markDirty();
|
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
|
|
|
|
2009-07-04 23:02:27 +00:00
|
|
|
bool stringSelected(BufferView * bv, docstring & searchstr,
|
2003-11-17 09:02:10 +00:00
|
|
|
bool cs, bool mw, bool fw)
|
|
|
|
{
|
2009-07-04 23:02:27 +00:00
|
|
|
// if nothing selected and searched string is empty, this
|
|
|
|
// means that we want to search current word at cursor position.
|
|
|
|
if (!bv->cursor().selection() && searchstr.empty()) {
|
|
|
|
bv->cursor().innerText()->selectWord(bv->cursor(), WHOLE_WORD);
|
|
|
|
searchstr = bv->cursor().selectionAsString(false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2003-11-17 09:02:10 +00:00
|
|
|
// if nothing selected or selection does not equal search
|
|
|
|
// string search and select next occurance and return
|
2006-12-10 11:52:46 +00:00
|
|
|
docstring const & str1 = searchstr;
|
|
|
|
docstring const str2 = bv->cursor().selectionAsString(false);
|
2007-03-02 16:52:49 +00:00
|
|
|
if ((cs && str1 != str2) || compare_no_case(str1, str2) != 0) {
|
2003-11-17 09:02:10 +00:00
|
|
|
find(bv, searchstr, cs, mw, fw);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-04 23:02:27 +00:00
|
|
|
int replace(BufferView * bv, docstring & searchstr,
|
2006-12-10 11:52:46 +00:00
|
|
|
docstring const & replacestr, bool cs, bool mw, bool fw)
|
2003-11-04 12:01:15 +00:00
|
|
|
{
|
2009-07-04 23:02:27 +00:00
|
|
|
if (!stringSelected(bv, searchstr, cs, mw, fw))
|
2003-11-04 12:01:15 +00:00
|
|
|
return 0;
|
2003-02-08 19:18:01 +00:00
|
|
|
|
2009-07-04 23:02:27 +00:00
|
|
|
if (!searchAllowed(bv, searchstr) || bv->buffer().isReadonly())
|
2003-11-17 09:02:10 +00:00
|
|
|
return 0;
|
|
|
|
|
2007-04-26 14:56:30 +00:00
|
|
|
Cursor & cur = bv->cursor();
|
2006-12-10 11:52:46 +00:00
|
|
|
cap::replaceSelectionWithString(cur, replacestr, fw);
|
2007-08-21 13:03:55 +00:00
|
|
|
bv->buffer().markDirty();
|
2007-06-10 15:07:21 +00:00
|
|
|
find(bv, searchstr, cs, mw, fw, false);
|
2007-12-21 20:42:46 +00:00
|
|
|
bv->buffer().updateMacros();
|
2007-10-10 08:52:55 +00:00
|
|
|
bv->processUpdateFlags(Update::Force | Update::FitCursor);
|
2004-01-26 17:00:09 +00:00
|
|
|
|
2003-11-04 12:01:15 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-03-25 09:16:36 +00:00
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
2006-12-10 11:52:46 +00:00
|
|
|
docstring const find2string(docstring const & search,
|
2004-03-25 09:16:36 +00:00
|
|
|
bool casesensitive, bool matchword, bool forward)
|
|
|
|
{
|
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,
|
|
|
|
docstring const & search, bool casesensitive, bool matchword,
|
|
|
|
bool all, bool forward)
|
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) << ' '
|
|
|
|
<< int(forward);
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-10 18:52:32 +00:00
|
|
|
bool find(BufferView * bv, FuncRequest const & ev)
|
2004-03-25 09:16:36 +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);
|
|
|
|
|
2008-02-10 18:52:32 +00:00
|
|
|
return find(bv, search, casesensitive, matchword, forward);
|
2004-03-25 09:16:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-19 21:48:04 +00:00
|
|
|
void replace(BufferView * bv, FuncRequest const & ev, bool has_deleted)
|
2004-03-25 09:16:36 +00:00
|
|
|
{
|
|
|
|
if (!bv || ev.action != LFUN_WORD_REPLACE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// data is of the form
|
|
|
|
// "<search>
|
|
|
|
// <replace>
|
|
|
|
// <casesensitive> <matchword> <all> <forward>"
|
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);
|
|
|
|
|
2007-06-19 21:48:04 +00:00
|
|
|
if (!has_deleted) {
|
|
|
|
int const replace_count = all
|
|
|
|
? replaceAll(bv, search, rplc, casesensitive, matchword)
|
|
|
|
: replace(bv, search, rplc, casesensitive, matchword, forward);
|
2009-05-07 12:40:35 +00:00
|
|
|
|
2007-08-21 13:03:55 +00:00
|
|
|
Buffer & buf = bv->buffer();
|
2007-06-19 21:48:04 +00:00
|
|
|
if (replace_count == 0) {
|
2006-08-23 21:14:43 +00:00
|
|
|
// emit message signal.
|
2007-08-21 13:03:55 +00:00
|
|
|
buf.message(_("String not found!"));
|
2004-03-25 09:16:36 +00:00
|
|
|
} else {
|
2007-06-19 21:48:04 +00:00
|
|
|
if (replace_count == 1) {
|
|
|
|
// emit message signal.
|
2007-08-21 13:03:55 +00:00
|
|
|
buf.message(_("String has been replaced."));
|
2007-06-19 21:48:04 +00:00
|
|
|
} else {
|
|
|
|
docstring str = convert<docstring>(replace_count);
|
|
|
|
str += _(" strings have been replaced.");
|
|
|
|
// emit message signal.
|
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
|
|
|
}
|
2007-06-19 21:48:04 +00:00
|
|
|
} else {
|
|
|
|
// if we have deleted characters, we do not replace at all, but
|
|
|
|
// rather search for the next occurence
|
2008-02-10 19:05:09 +00:00
|
|
|
if (find(bv, search, casesensitive, matchword, forward))
|
|
|
|
bv->showCursor();
|
|
|
|
else
|
2007-06-19 21:48:04 +00:00
|
|
|
bv->message(_("String not found!"));
|
2004-03-25 09:16:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool findNextChange(BufferView * bv)
|
|
|
|
{
|
2009-04-05 19:11:25 +00:00
|
|
|
return findChange(bv, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool findPreviousChange(BufferView * bv)
|
|
|
|
{
|
|
|
|
return findChange(bv, false);
|
|
|
|
}
|
2004-03-25 09:16:36 +00:00
|
|
|
|
2009-04-05 19:11:25 +00:00
|
|
|
|
|
|
|
bool findChange(BufferView * bv, bool next)
|
|
|
|
{
|
2009-04-05 20:16:32 +00:00
|
|
|
if (bv->cursor().selection()) {
|
|
|
|
// set the cursor at the beginning or at the end of the selection
|
|
|
|
// before searching. Otherwise, the current change will be found.
|
2009-05-07 12:40:35 +00:00
|
|
|
if (next != (bv->cursor().top() > bv->cursor().anchor()))
|
2009-04-05 20:16:32 +00:00
|
|
|
bv->cursor().setCursorToAnchor();
|
|
|
|
}
|
|
|
|
|
2009-04-05 19:11:25 +00:00
|
|
|
DocIterator cur = bv->cursor();
|
2009-05-07 12:40:35 +00:00
|
|
|
|
|
|
|
// Are we within a change ? Then first search forward (backward),
|
2009-04-15 22:07:59 +00:00
|
|
|
// clear the selection and search the other way around (see the end
|
|
|
|
// of this function). This will avoid changes to be selected half.
|
|
|
|
bool search_both_sides = false;
|
|
|
|
if (cur.pos() > 1) {
|
2009-05-07 12:40:35 +00:00
|
|
|
Change change_next_pos
|
2009-04-15 22:07:59 +00:00
|
|
|
= cur.paragraph().lookupChange(cur.pos());
|
2009-05-07 12:40:35 +00:00
|
|
|
Change change_prev_pos
|
2009-04-15 22:07:59 +00:00
|
|
|
= cur.paragraph().lookupChange(cur.pos() - 1);
|
|
|
|
if (change_next_pos.isSimilarTo(change_prev_pos))
|
|
|
|
search_both_sides = true;
|
|
|
|
}
|
|
|
|
|
2009-04-05 19:11:25 +00:00
|
|
|
if (!findChange(cur, next))
|
2004-03-25 09:16:36 +00:00
|
|
|
return false;
|
|
|
|
|
2006-03-11 13:31:41 +00:00
|
|
|
bv->cursor().setCursor(cur);
|
|
|
|
bv->cursor().resetAnchor();
|
2006-04-05 23:56:29 +00:00
|
|
|
|
2009-04-05 19:11:25 +00:00
|
|
|
if (!next)
|
|
|
|
// take a step into the change
|
|
|
|
cur.backwardPos();
|
|
|
|
|
2006-05-05 23:11:19 +00:00
|
|
|
Change orig_change = cur.paragraph().lookupChange(cur.pos());
|
2004-03-25 09:16:36 +00:00
|
|
|
|
2007-08-13 13:36:19 +00:00
|
|
|
CursorSlice & tip = cur.top();
|
2009-04-05 19:11:25 +00:00
|
|
|
if (next) {
|
|
|
|
for (; !tip.at_end(); tip.forwardPos()) {
|
|
|
|
Change change = tip.paragraph().lookupChange(tip.pos());
|
|
|
|
if (change != orig_change)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
2009-04-15 22:09:27 +00:00
|
|
|
for (; !tip.at_begin();) {
|
|
|
|
tip.backwardPos();
|
2009-04-05 19:11:25 +00:00
|
|
|
Change change = tip.paragraph().lookupChange(tip.pos());
|
|
|
|
if (change != orig_change) {
|
|
|
|
// take a step forward to correctly set the selection
|
|
|
|
tip.forwardPos();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2004-03-25 09:16:36 +00:00
|
|
|
}
|
2007-02-01 17:26:29 +00:00
|
|
|
|
2006-03-11 13:31:41 +00:00
|
|
|
// Now put cursor to end of selection:
|
|
|
|
bv->cursor().setCursor(cur);
|
|
|
|
bv->cursor().setSelection();
|
2004-09-17 16:28:47 +00:00
|
|
|
|
2009-04-15 22:07:59 +00:00
|
|
|
if (search_both_sides) {
|
|
|
|
bv->cursor().setSelection(false);
|
|
|
|
findChange(bv, !next);
|
|
|
|
}
|
|
|
|
|
2004-03-25 09:16:36 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
Escapes const & get_regexp_escapes()
|
|
|
|
{
|
|
|
|
static Escapes escape_map;
|
|
|
|
if (escape_map.empty()) {
|
|
|
|
escape_map.push_back(pair<string, string>("\\", "\\\\"));
|
|
|
|
escape_map.push_back(pair<string, string>("^", "\\^"));
|
|
|
|
escape_map.push_back(pair<string, string>("$", "\\$"));
|
|
|
|
escape_map.push_back(pair<string, string>("{", "\\{"));
|
|
|
|
escape_map.push_back(pair<string, string>("}", "\\}"));
|
|
|
|
escape_map.push_back(pair<string, string>("[", "\\["));
|
|
|
|
escape_map.push_back(pair<string, string>("]", "\\]"));
|
|
|
|
escape_map.push_back(pair<string, string>("(", "\\("));
|
|
|
|
escape_map.push_back(pair<string, string>(")", "\\)"));
|
|
|
|
escape_map.push_back(pair<string, string>("+", "\\+"));
|
|
|
|
escape_map.push_back(pair<string, string>("*", "\\*"));
|
|
|
|
escape_map.push_back(pair<string, string>(".", "\\."));
|
|
|
|
}
|
|
|
|
return escape_map;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A map of lyx escaped strings and their unescaped equivalent.
|
|
|
|
Escapes const & get_lyx_unescapes() {
|
|
|
|
static Escapes escape_map;
|
|
|
|
if (escape_map.empty()) {
|
|
|
|
escape_map.push_back(pair<string, string>("{*}", "*"));
|
|
|
|
escape_map.push_back(pair<string, string>("{[}", "["));
|
|
|
|
escape_map.push_back(pair<string, string>("\\$", "$"));
|
|
|
|
escape_map.push_back(pair<string, string>("\\backslash{}", "\\"));
|
|
|
|
escape_map.push_back(pair<string, string>("\\backslash", "\\"));
|
|
|
|
escape_map.push_back(pair<string, string>("\\sim ", "~"));
|
|
|
|
escape_map.push_back(pair<string, string>("\\^", "^"));
|
|
|
|
}
|
|
|
|
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);
|
2009-08-17 14:39:00 +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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Return the position of the closing brace matching the open one at s[pos],
|
|
|
|
** or s.size() if not found.
|
|
|
|
**/
|
|
|
|
size_t find_matching_brace(string const & s, size_t pos)
|
|
|
|
{
|
2008-12-20 16:00:47 +00:00
|
|
|
LASSERT(s[pos] == '{', /* */);
|
2008-11-15 23:30:27 +00:00
|
|
|
int open_braces = 1;
|
|
|
|
for (++pos; pos < s.size(); ++pos) {
|
|
|
|
if (s[pos] == '\\')
|
|
|
|
++pos;
|
|
|
|
else if (s[pos] == '{')
|
|
|
|
++open_braces;
|
|
|
|
else if (s[pos] == '}') {
|
|
|
|
--open_braces;
|
|
|
|
if (open_braces == 0)
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return s.size();
|
|
|
|
}
|
|
|
|
|
2009-08-15 15:35:14 +00:00
|
|
|
/// Within \regexp{} apply get_regex_escapes(), while outside apply get_lyx_unescapes().
|
2008-11-15 23:30:27 +00:00
|
|
|
string escape_for_regex(string s)
|
|
|
|
{
|
|
|
|
size_t pos = 0;
|
|
|
|
while (pos < s.size()) {
|
|
|
|
size_t new_pos = s.find("\\regexp{", pos);
|
|
|
|
if (new_pos == string::npos)
|
|
|
|
new_pos = s.size();
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "new_pos: " << new_pos);
|
2008-11-15 23:30:27 +00:00
|
|
|
string t = apply_escapes(s.substr(pos, new_pos - pos), get_lyx_unescapes());
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "t : " << t);
|
2008-11-15 23:30:27 +00:00
|
|
|
t = apply_escapes(t, get_regexp_escapes());
|
|
|
|
s.replace(pos, new_pos - pos, t);
|
|
|
|
new_pos = pos + t.size();
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Regexp after escaping: " << s);
|
|
|
|
LYXERR(Debug::FIND, "new_pos: " << new_pos);
|
2008-11-15 23:30:27 +00:00
|
|
|
if (new_pos == s.size())
|
|
|
|
break;
|
|
|
|
size_t end_pos = find_matching_brace(s, new_pos + 7);
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "end_pos: " << end_pos);
|
2008-11-15 23:30:27 +00:00
|
|
|
t = apply_escapes(s.substr(new_pos + 8, end_pos - (new_pos + 8)), get_lyx_unescapes());
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "t : " << t);
|
2008-11-15 23:30:27 +00:00
|
|
|
if (end_pos == s.size()) {
|
|
|
|
s.replace(new_pos, end_pos - new_pos, t);
|
|
|
|
pos = s.size();
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Regexp after \\regexp{} removal: " << s);
|
2008-11-15 23:30:27 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
s.replace(new_pos, end_pos + 1 - new_pos, t);
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Regexp after \\regexp{} removal: " << s);
|
2008-11-15 23:30:27 +00:00
|
|
|
pos = new_pos + t.size();
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "pos: " << pos);
|
2008-11-15 23:30:27 +00:00
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Wrapper for boost::regex_replace with simpler interface
|
|
|
|
bool regex_replace(string const & s, string & t, string const & searchstr,
|
|
|
|
string const & replacestr)
|
|
|
|
{
|
|
|
|
boost::regex e(searchstr);
|
|
|
|
ostringstream oss;
|
|
|
|
ostream_iterator<char, char> it(oss);
|
|
|
|
boost::regex_replace(it, s.begin(), s.end(), e, replacestr);
|
|
|
|
// tolerate t and s be references to the same variable
|
|
|
|
bool rv = (s != oss.str());
|
|
|
|
t = oss.str();
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 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,
|
|
|
|
string::const_iterator const & end, int unmatched = 0)
|
|
|
|
{
|
|
|
|
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) {
|
2009-09-04 13:06:43 +00:00
|
|
|
LYXERR(Debug::FIND, "Found " << open_pars
|
|
|
|
<< " instead of " << unmatched
|
|
|
|
<< " unmatched open braces at the end of count");
|
2008-11-15 23:30:27 +00:00
|
|
|
return false;
|
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** The class performing a match between a position in the document and the FindAdvOptions.
|
|
|
|
**/
|
|
|
|
class MatchStringAdv {
|
|
|
|
public:
|
2009-01-14 15:34:56 +00:00
|
|
|
MatchStringAdv(lyx::Buffer const & 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
|
|
|
|
lyx::Buffer const & buf;
|
|
|
|
/// options
|
2009-01-14 15:34:56 +00:00
|
|
|
FindAndReplaceOptions const & opt;
|
2008-11-15 23:30:27 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
/** 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.
|
|
|
|
**/
|
|
|
|
string normalize(docstring const & s) const;
|
|
|
|
// normalized string to search
|
|
|
|
string par_as_string;
|
|
|
|
// regular expression to use for searching
|
|
|
|
boost::regex regexp;
|
2008-12-20 16:00:47 +00:00
|
|
|
// same as regexp, but prefixed with a ".*"
|
|
|
|
boost::regex regexp2;
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-01-14 15:34:56 +00:00
|
|
|
MatchStringAdv::MatchStringAdv(lyx::Buffer const & buf, FindAndReplaceOptions const & opt)
|
2008-11-15 23:30:27 +00:00
|
|
|
: buf(buf), opt(opt)
|
|
|
|
{
|
|
|
|
par_as_string = normalize(opt.search);
|
|
|
|
open_braces = 0;
|
|
|
|
close_wildcards = 0;
|
|
|
|
|
|
|
|
if (! opt.regexp) {
|
|
|
|
// Remove trailing closure of math, macros and environments, so to catch parts of them.
|
|
|
|
do {
|
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 (regex_replace(par_as_string, par_as_string, "(.*)[[:blank:]]\\'", "$1"))
|
|
|
|
continue;
|
|
|
|
if (regex_replace(par_as_string, par_as_string, "(.*[^\\\\]) ?\\$\\'", "$1"))
|
|
|
|
continue;
|
|
|
|
// @todo need to account for open square braces as well ?
|
|
|
|
if (regex_replace(par_as_string, par_as_string, "(.*[^\\\\]) ?\\\\\\]\\'", "$1"))
|
|
|
|
continue;
|
|
|
|
if (regex_replace(par_as_string, par_as_string, "(.*[^\\\\]) ?\\\\end\\{[a-zA-Z_]*\\}\\'", "$1"))
|
|
|
|
continue;
|
|
|
|
if (regex_replace(par_as_string, par_as_string, "(.*[^\\\\]) ?\\}\\'", "$1")) {
|
|
|
|
++open_braces;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
} while (true);
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Open braces: " << open_braces);
|
2008-12-20 16:00:47 +00:00
|
|
|
LASSERT(braces_match(par_as_string.begin(), par_as_string.end(), open_braces), /* */);
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Built MatchStringAdv object: par_as_string = '" << par_as_string << "'");
|
2008-11-15 23:30:27 +00:00
|
|
|
} else {
|
|
|
|
par_as_string = escape_for_regex(par_as_string);
|
|
|
|
// 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")
|
|
|
|
// 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)
|
2009-09-04 13:06:43 +00:00
|
|
|
|| regex_replace(par_as_string, par_as_string,
|
|
|
|
"(.*[^\\\\])(\\\\\\\\end\\\\\\{[a-zA-Z_]*\\\\\\})\\'", "$1(.*?)$2")
|
2008-11-15 23:30:27 +00:00
|
|
|
// Insert .* before trailing '\}' ('}' has been escaped by escape_for_regex)
|
|
|
|
|| regex_replace(par_as_string, par_as_string, "(.*[^\\\\])(\\\\\\})\\'", "$1(.*?)$2")
|
|
|
|
) {
|
|
|
|
++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);
|
2008-12-20 16:00:47 +00:00
|
|
|
LASSERT(braces_match(par_as_string.begin(), par_as_string.end(), open_braces), /* */);
|
2009-08-17 14:39:00 +00:00
|
|
|
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
|
|
|
|
regexp = boost::regex(string("\\`") + par_as_string);
|
|
|
|
// If entered regexp may match wherever in searched string buffer
|
|
|
|
regexp2 = boost::regex(string("\\`.*") + par_as_string);
|
2008-11-15 23:30:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-20 16:00:47 +00:00
|
|
|
|
|
|
|
int MatchStringAdv::operator()(DocIterator const & cur, int len, bool at_begin) const
|
2008-11-15 23:30:27 +00:00
|
|
|
{
|
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) << "'");
|
2008-11-15 23:30:27 +00:00
|
|
|
string str = normalize(docstr);
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "After normalization: '" << str << "'");
|
2008-11-15 23:30:27 +00:00
|
|
|
if (! opt.regexp) {
|
2008-12-20 16:00:47 +00:00
|
|
|
if (at_begin) {
|
|
|
|
if (str.substr(0, par_as_string.size()) == par_as_string)
|
|
|
|
return par_as_string.size();
|
|
|
|
} else {
|
|
|
|
size_t pos = str.find(par_as_string);
|
|
|
|
if (pos != string::npos)
|
|
|
|
return par_as_string.size();
|
|
|
|
}
|
2008-11-15 23:30:27 +00:00
|
|
|
} else {
|
2009-09-04 13:06:43 +00:00
|
|
|
// Try all possible regexp matches,
|
|
|
|
//until one that verifies the braces match test is found
|
2008-12-20 16:00:47 +00:00
|
|
|
boost::regex const *p_regexp = at_begin ? ®exp : ®exp2;
|
|
|
|
boost::sregex_iterator re_it(str.begin(), str.end(), *p_regexp);
|
2008-11-15 23:30:27 +00:00
|
|
|
boost::sregex_iterator re_it_end;
|
|
|
|
for (; re_it != re_it_end; ++re_it) {
|
|
|
|
boost::match_results<string::const_iterator> const & m = *re_it;
|
|
|
|
// Check braces on the segment that matched the entire regexp expression,
|
|
|
|
// plus the last subexpression, if a (.*?) was inserted in the constructor.
|
|
|
|
if (! braces_match(m[0].first, m[0].second, open_braces))
|
|
|
|
return 0;
|
|
|
|
// Check braces on segments that matched all (.*?) subexpressions.
|
|
|
|
for (size_t i = 1; i < m.size(); ++i)
|
|
|
|
if (! braces_match(m[i].first, m[i].second))
|
|
|
|
return false;
|
2009-09-04 13:06:43 +00:00
|
|
|
// Exclude from the returned match length any length
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string MatchStringAdv::normalize(docstring const & s) const
|
|
|
|
{
|
|
|
|
string t;
|
|
|
|
if (! opt.casesensitive)
|
|
|
|
t = lyx::to_utf8(lowercase(s));
|
|
|
|
else
|
|
|
|
t = lyx::to_utf8(s);
|
|
|
|
// Remove \n at begin
|
|
|
|
while (t.size() > 0 && t[0] == '\n')
|
|
|
|
t = t.substr(1);
|
|
|
|
// Remove \n at end
|
|
|
|
while (t.size() > 0 && t[t.size() - 1] == '\n')
|
|
|
|
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);
|
|
|
|
while (regex_replace(t, t, "\\\\(emph|textbf|subsubsection|subsection|section|subparagraph|paragraph)(\\{\\})+", ""))
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, " further removing stale empty \\emph{}, \\textbf{} macros from: " << 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()) {
|
|
|
|
Paragraph const & par = cur.paragraph();
|
|
|
|
// TODO what about searching beyond/across paragraph breaks ?
|
|
|
|
// TODO Try adding a AS_STR_INSERTS as last arg
|
2009-09-04 13:06:43 +00:00
|
|
|
pos_type end = ( len == -1 || cur.pos() + len > int(par.size()) ) ?
|
|
|
|
int(par.size()) : cur.pos() + len;
|
2008-12-20 16:00:47 +00:00
|
|
|
OutputParams runparams(&cur.buffer()->params().encoding());
|
|
|
|
odocstringstream os;
|
|
|
|
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;
|
2009-09-04 13:06:43 +00:00
|
|
|
LYXERR(Debug::FIND, "Stringifying with cur: "
|
2009-09-04 13:52:49 +00:00
|
|
|
<< cur << ", from pos: " << cur.pos() << ", end: " << end);
|
2008-12-20 16:00:47 +00:00
|
|
|
return par.stringify(cur.pos(), end, AS_STR_INSETS, runparams);
|
2008-11-15 23:30:27 +00:00
|
|
|
} else if (cur.inMathed()) {
|
|
|
|
odocstringstream os;
|
|
|
|
CursorSlice cs = cur.top();
|
|
|
|
MathData md = cs.cell();
|
2009-09-04 13:06:43 +00:00
|
|
|
MathData::const_iterator it_end =
|
|
|
|
( ( len == -1 || cs.pos() + len > int(md.size()) )
|
|
|
|
? md.end() : md.begin() + cs.pos() + len );
|
2008-11-15 23:30:27 +00:00
|
|
|
for (MathData::const_iterator it = md.begin() + cs.pos(); it != it_end; ++it)
|
|
|
|
os << *it;
|
|
|
|
return os.str();
|
|
|
|
}
|
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="
|
2008-11-15 23:30:27 +00:00
|
|
|
<< cur.lastrow() << ", cur.lastcol=" << cur.lastcol());
|
2008-12-20 16:00:47 +00:00
|
|
|
Buffer const & buf = *cur.buffer();
|
|
|
|
LASSERT(buf.isLatex(), /* */);
|
2008-11-15 23:30:27 +00:00
|
|
|
|
|
|
|
TexRow texrow;
|
|
|
|
odocstringstream ods;
|
|
|
|
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()) {
|
|
|
|
// @TODO what about searching beyond/across paragraph breaks ?
|
|
|
|
ParagraphList::const_iterator pit = cur.innerText()->paragraphs().begin();
|
|
|
|
for (int i = 0; i < cur.pit(); ++i)
|
|
|
|
++pit;
|
|
|
|
// ParagraphList::const_iterator pit_end = pit;
|
|
|
|
// ++pit_end;
|
|
|
|
// lyx::latexParagraphs(buf, cur.innerText()->paragraphs(), ods, texrow, runparams, string(), pit, pit_end);
|
2008-11-16 00:12:21 +00:00
|
|
|
pos_type const endpos = (len == -1 || cur.pos() + len > int(pit->size()))
|
|
|
|
? pit->size() : cur.pos() + len;
|
2008-11-15 23:30:27 +00:00
|
|
|
TeXOnePar(buf, *cur.innerText(), pit, ods, texrow, runparams, string(),
|
2008-11-16 00:12:21 +00:00
|
|
|
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) {
|
|
|
|
CursorSlice const & cs = cur[s];
|
|
|
|
if (cs.asInsetMath() && cs.asInsetMath() && cs.asInsetMath()->asHullInset()) {
|
|
|
|
WriteStream ws(ods);
|
|
|
|
cs.asInsetMath()->asHullInset()->header_write(ws);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CursorSlice const & 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)
|
|
|
|
ods << *it;
|
|
|
|
|
2008-11-17 11:46:07 +00:00
|
|
|
// MathData md = cur.cell();
|
|
|
|
// MathData::const_iterator it_end = ( ( len == -1 || cur.pos() + len > int(md.size()) ) ? md.end() : md.begin() + cur.pos() + len );
|
|
|
|
// for (MathData::const_iterator it = md.begin() + cur.pos(); it != it_end; ++it) {
|
|
|
|
// MathAtom const & ma = *it;
|
|
|
|
// ma.nucleus()->latex(buf, ods, runparams);
|
|
|
|
// }
|
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()) {
|
|
|
|
WriteStream ws(ods);
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 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;
|
2008-12-20 16:00:47 +00:00
|
|
|
LASSERT(match(cur) > 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;
|
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
|
|
|
|
int findForwardAdv(DocIterator & cur, MatchStringAdv const & match)
|
|
|
|
{
|
2008-11-17 11:46:07 +00:00
|
|
|
if (!cur)
|
2008-11-15 23:30:27 +00:00
|
|
|
return 0;
|
2009-12-17 07:53:20 +00:00
|
|
|
int wrap_answer = -1;
|
2008-12-20 16:00:47 +00:00
|
|
|
do {
|
|
|
|
while (cur && !match(cur, -1, false)) {
|
|
|
|
if (cur.pit() < cur.lastpit())
|
|
|
|
cur.forwardPar();
|
|
|
|
else {
|
|
|
|
cur.forwardPos();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (; cur; cur.forwardPos()) {
|
|
|
|
if (match(cur))
|
|
|
|
return findAdvFinalize(cur, match);
|
|
|
|
}
|
2009-12-17 07:53:20 +00:00
|
|
|
if (wrap_answer != -1)
|
|
|
|
break;
|
2008-12-20 16:00:47 +00:00
|
|
|
wrap_answer = frontend::Alert::prompt(
|
2009-09-04 13:06:43 +00:00
|
|
|
_("Wrap search?"),
|
|
|
|
_("End of document reached while searching forward.\n"
|
2008-12-20 16:00:47 +00:00
|
|
|
"\n"
|
2009-09-04 13:06:43 +00:00
|
|
|
"Continue searching from beginning?"),
|
2009-12-17 07:57:50 +00:00
|
|
|
0, 1, _("&Yes"), _("&No"));
|
2008-12-20 16:00:47 +00:00
|
|
|
cur.clear();
|
|
|
|
cur.push_back(CursorSlice(match.buf.inset()));
|
|
|
|
} while (wrap_answer == 0);
|
2008-11-15 23:30:27 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-08-17 08:08:21 +00:00
|
|
|
/// Find the most backward consecutive match within same paragraph while searching backwards.
|
|
|
|
void findMostBackwards(DocIterator & cur, MatchStringAdv const & match, int & len) {
|
|
|
|
DocIterator cur_begin = doc_iterator_begin(cur.buffer());
|
|
|
|
len = findAdvFinalize(cur, match);
|
|
|
|
if (cur != cur_begin) {
|
|
|
|
Inset & inset = cur.inset();
|
|
|
|
int old_len;
|
|
|
|
DocIterator old_cur;
|
|
|
|
DocIterator dit2;
|
|
|
|
do {
|
|
|
|
old_cur = cur;
|
|
|
|
old_len = len;
|
|
|
|
cur.backwardPos();
|
2009-09-04 13:06:43 +00:00
|
|
|
LYXERR(Debug::FIND, "findMostBackwards(): old_cur="
|
|
|
|
<< old_cur << ", old_len=" << len << ", cur=" << cur);
|
2009-08-17 08:08:21 +00:00
|
|
|
dit2 = cur;
|
|
|
|
} while (cur != cur_begin && &cur.inset() == &inset && match(cur)
|
|
|
|
&& (len = findAdvFinalize(dit2, match)) > old_len);
|
|
|
|
cur = old_cur;
|
|
|
|
len = old_len;
|
|
|
|
}
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "findMostBackwards(): cur=" << cur);
|
2009-08-17 08:08:21 +00:00
|
|
|
}
|
2008-12-20 16:00:47 +00:00
|
|
|
|
2008-11-15 23:30:27 +00:00
|
|
|
/// Finds backwards
|
2008-12-20 16:00:47 +00:00
|
|
|
int findBackwardsAdv(DocIterator & cur, MatchStringAdv const & match) {
|
2009-08-17 08:08:21 +00:00
|
|
|
if (! cur)
|
|
|
|
return 0;
|
2009-12-26 22:31:59 +00:00
|
|
|
// Backup of original position (for restoring it in case match not found)
|
2008-11-15 23:30:27 +00:00
|
|
|
DocIterator cur_orig(cur);
|
2009-12-26 22:31:59 +00:00
|
|
|
// Position beyond which match is not considered
|
|
|
|
// (set to end of document after wrap-around question)
|
|
|
|
DocIterator cur_orig2(cur);
|
2009-08-17 08:08:21 +00:00
|
|
|
DocIterator cur_begin = doc_iterator_begin(cur.buffer());
|
|
|
|
/* if (match(cur_orig)) */
|
|
|
|
/* findAdvFinalize(cur_orig, match); */
|
|
|
|
int wrap_answer = 0;
|
|
|
|
bool found_match;
|
2008-12-20 16:00:47 +00:00
|
|
|
do {
|
|
|
|
bool pit_changed = false;
|
2009-08-17 08:08:21 +00:00
|
|
|
found_match = false;
|
2009-09-04 13:06:43 +00:00
|
|
|
// Search in current par occurs from start to end,
|
|
|
|
// but in next loop match is discarded if pos > original pos
|
2009-08-17 08:08:21 +00:00
|
|
|
cur.pos() = 0;
|
|
|
|
found_match = match(cur, -1, false);
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "findBackAdv0: found_match=" << found_match << ", cur: " << cur);
|
2009-08-17 08:08:21 +00:00
|
|
|
while (cur != cur_begin) {
|
|
|
|
if (found_match)
|
|
|
|
break;
|
2008-12-20 16:00:47 +00:00
|
|
|
if (cur.pit() > 0)
|
|
|
|
--cur.pit();
|
2009-08-17 08:08:21 +00:00
|
|
|
else
|
2008-11-15 23:30:27 +00:00
|
|
|
cur.backwardPos();
|
2008-12-20 16:00:47 +00:00
|
|
|
pit_changed = true;
|
2009-08-17 08:08:21 +00:00
|
|
|
// Search in previous pars occurs from start to end
|
|
|
|
cur.pos() = 0;
|
|
|
|
found_match = match(cur, -1, false);
|
2009-09-04 13:06:43 +00:00
|
|
|
LYXERR(Debug::FIND, "findBackAdv1: found_match="
|
|
|
|
<< found_match << ", cur: " << cur);
|
2008-11-15 23:30:27 +00:00
|
|
|
}
|
2009-08-17 08:08:21 +00:00
|
|
|
if (pit_changed)
|
2008-12-20 16:00:47 +00:00
|
|
|
cur.pos() = cur.lastpos();
|
2009-08-17 08:08:21 +00:00
|
|
|
else
|
2009-12-26 22:31:59 +00:00
|
|
|
cur.pos() = cur_orig2.pos();
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "findBackAdv2: cur: " << cur);
|
2009-12-26 22:10:14 +00:00
|
|
|
DocIterator cur_prev_iter;
|
2009-08-17 08:08:21 +00:00
|
|
|
if (found_match) {
|
|
|
|
while (true) {
|
|
|
|
found_match=match(cur);
|
2009-09-04 13:06:43 +00:00
|
|
|
LYXERR(Debug::FIND, "findBackAdv3: found_match="
|
|
|
|
<< found_match << ", cur: " << cur);
|
2009-08-17 08:08:21 +00:00
|
|
|
if (found_match) {
|
|
|
|
int len;
|
|
|
|
findMostBackwards(cur, match, len);
|
2009-12-26 22:31:59 +00:00
|
|
|
if (&cur.inset() != &cur_orig2.inset()
|
|
|
|
|| !(cur.pit() == cur_orig2.pit())
|
|
|
|
|| cur.pos() < cur_orig2.pos())
|
2009-08-17 08:08:21 +00:00
|
|
|
return len;
|
|
|
|
}
|
2009-12-26 22:10:14 +00:00
|
|
|
// Prevent infinite loop at begin of document
|
|
|
|
if (cur == cur_begin || cur == cur_prev_iter)
|
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();
|
|
|
|
};
|
2008-12-20 16:00:47 +00:00
|
|
|
}
|
|
|
|
wrap_answer = frontend::Alert::prompt(
|
2009-09-04 13:08:09 +00:00
|
|
|
_("Wrap search?"),
|
2008-12-20 16:00:47 +00:00
|
|
|
_("Beginning of document reached while searching backwards\n"
|
2009-09-04 13:08:09 +00:00
|
|
|
"\n"
|
|
|
|
"Continue searching from end?"),
|
2008-12-20 16:00:47 +00:00
|
|
|
0, 1, _("&Yes"), _("&No"));
|
|
|
|
cur = doc_iterator_end(&match.buf);
|
|
|
|
cur.backwardPos();
|
2009-12-26 22:31:59 +00:00
|
|
|
LYXERR(Debug::FIND, "findBackAdv5: cur: " << cur);
|
|
|
|
cur_orig2 = cur;
|
2008-12-20 16:00:47 +00:00
|
|
|
} while (wrap_answer == 0);
|
2009-08-17 08:08:21 +00:00
|
|
|
cur = cur_orig;
|
2008-11-15 23:30:27 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // anonym namespace
|
|
|
|
|
|
|
|
|
2009-01-14 15:34:56 +00:00
|
|
|
docstring stringifyFromForSearch(FindAndReplaceOptions const & opt,
|
2008-11-15 23:30:27 +00:00
|
|
|
DocIterator const & cur, int len)
|
|
|
|
{
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-20 00:28:34 +00:00
|
|
|
FindAndReplaceOptions::FindAndReplaceOptions(docstring const & search, bool casesensitive,
|
2008-11-15 23:30:27 +00:00
|
|
|
bool matchword, bool forward, bool expandmacros, bool ignoreformat,
|
2009-08-19 22:55:38 +00:00
|
|
|
bool regexp, docstring const & replace, bool keep_case)
|
2009-08-20 00:36:52 +00:00
|
|
|
: search(search), casesensitive(casesensitive), matchword(matchword),
|
|
|
|
forward(forward), expandmacros(expandmacros), ignoreformat(ignoreformat),
|
|
|
|
regexp(regexp), replace(replace), keep_case(keep_case)
|
2008-11-15 23:30:27 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-08-19 22:55:38 +00:00
|
|
|
|
|
|
|
/** Checks if the supplied character is lower-case */
|
|
|
|
static bool isLowerCase(char_type ch) {
|
|
|
|
return lowercase(ch) == ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Checks if the supplied character is upper-case */
|
|
|
|
static bool isUpperCase(char_type ch) {
|
|
|
|
return uppercase(ch) == ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Check if 'len' letters following cursor are all non-lowercase */
|
|
|
|
static bool allNonLowercase(DocIterator const & cur, int len) {
|
|
|
|
pos_type end_pos = cur.pos() + len;
|
|
|
|
for (pos_type pos = cur.pos(); pos != end_pos; ++pos)
|
|
|
|
if (isLowerCase(cur.paragraph().getChar(pos)))
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Check if first letter is upper case and second one is lower case */
|
|
|
|
static bool firstUppercase(DocIterator const & cur) {
|
|
|
|
char_type ch1, ch2;
|
|
|
|
if (cur.pos() >= cur.lastpos() - 1) {
|
|
|
|
LYXERR(Debug::FIND, "No upper-case at cur: " << cur);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
ch1 = cur.paragraph().getChar(cur.pos());
|
|
|
|
ch2 = cur.paragraph().getChar(cur.pos()+1);
|
|
|
|
bool result = isUpperCase(ch1) && isLowerCase(ch2);
|
|
|
|
LYXERR(Debug::FIND, "firstUppercase(): "
|
2009-09-04 13:06:43 +00:00
|
|
|
<< "ch1=" << ch1 << "(" << char(ch1) << "), ch2="
|
|
|
|
<< 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 ?
|
|
|
|
**/
|
|
|
|
static void changeFirstCase(Buffer & buffer, TextCase first_case, TextCase others_case) {
|
|
|
|
ParagraphList::iterator pit = buffer.paragraphs().begin();
|
|
|
|
pos_type right = pos_type(1);
|
|
|
|
pit->changeCase(buffer.params(), pos_type(0), right, first_case);
|
|
|
|
right = pit->size() + 1;
|
|
|
|
pit->changeCase(buffer.params(), right, right, others_case);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
{
|
|
|
|
DocIterator cur = bv->cursor();
|
|
|
|
int match_len = 0;
|
|
|
|
|
|
|
|
if (opt.search.empty()) {
|
2008-12-07 17:18:30 +00:00
|
|
|
bv->message(_("Search text is empty!"));
|
2008-11-15 23:30:27 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// if (! bv->buffer()) {
|
|
|
|
// bv->message(_("No open document !"));
|
|
|
|
// return false;
|
|
|
|
// }
|
|
|
|
|
|
|
|
try {
|
|
|
|
MatchStringAdv const matchAdv(bv->buffer(), opt);
|
|
|
|
if (opt.forward)
|
|
|
|
match_len = findForwardAdv(cur, matchAdv);
|
|
|
|
else
|
|
|
|
match_len = findBackwardsAdv(cur, matchAdv);
|
|
|
|
} catch (...) {
|
|
|
|
// This may only be raised by boost::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;
|
|
|
|
}
|
|
|
|
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "Putting selection at " << cur << " with len: " << match_len);
|
2008-11-15 23:30:27 +00:00
|
|
|
bv->putSelectionAt(cur, match_len, ! opt.forward);
|
2009-08-19 15:14:28 +00:00
|
|
|
if (opt.replace == docstring(from_utf8(LYX_FR_NULL_STRING))) {
|
|
|
|
bv->message(_("Match found !"));
|
|
|
|
} else {
|
|
|
|
string lyx = to_utf8(opt.replace);
|
|
|
|
// FIXME: Seems so stupid to me to rebuild a buffer here,
|
|
|
|
// when we already have one (replace_work_area_.buffer())
|
|
|
|
Buffer repl_buffer("", false);
|
|
|
|
repl_buffer.setUnnamed(true);
|
|
|
|
if (repl_buffer.readString(lyx)) {
|
2009-08-19 22:55:38 +00:00
|
|
|
if (opt.keep_case && match_len >= 2) {
|
|
|
|
if (cur.inTexted()) {
|
|
|
|
if (firstUppercase(cur))
|
|
|
|
changeFirstCase(repl_buffer, text_uppercase, text_lowercase);
|
|
|
|
else if (allNonLowercase(cur, match_len))
|
|
|
|
changeFirstCase(repl_buffer, text_uppercase, text_uppercase);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cap::cutSelection(bv->cursor(), false, false);
|
2009-08-19 15:14:28 +00:00
|
|
|
if (! cur.inMathed()) {
|
|
|
|
LYXERR(Debug::FIND, "Replacing by pasteParagraphList()ing repl_buffer");
|
|
|
|
cap::pasteParagraphList(bv->cursor(), repl_buffer.paragraphs(),
|
|
|
|
repl_buffer.params().documentClassPtr(),
|
|
|
|
bv->buffer().errorList("Paste"));
|
|
|
|
} else {
|
|
|
|
odocstringstream ods;
|
|
|
|
OutputParams runparams(&repl_buffer.params().encoding());
|
|
|
|
runparams.nice = false;
|
|
|
|
runparams.flavor = OutputParams::LATEX;
|
|
|
|
runparams.linelen = 8000; //lyxrc.plaintext_linelen;
|
|
|
|
runparams.dryrun = true;
|
|
|
|
TexRow texrow;
|
2009-09-04 13:06:43 +00:00
|
|
|
TeXOnePar(repl_buffer, repl_buffer.text(),
|
|
|
|
repl_buffer.paragraphs().begin(), ods, texrow, runparams);
|
2009-08-19 15:14:28 +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;
|
|
|
|
regex_replace(to_utf8(repl_latex), s, "\\$(.*)\\$", "$1");
|
|
|
|
regex_replace(s, s, "\\\\\\[(.*)\\\\\\]", "$1");
|
|
|
|
repl_latex = from_utf8(s);
|
|
|
|
LYXERR(Debug::FIND, "Replacing by niceInsert()ing latex: '" << repl_latex << "'");
|
|
|
|
bv->cursor().niceInsert(repl_latex);
|
|
|
|
}
|
|
|
|
bv->putSelectionAt(cur, repl_buffer.paragraphs().begin()->size(), ! opt.forward);
|
|
|
|
bv->message(_("Match found and replaced !"));
|
|
|
|
} else
|
|
|
|
LASSERT(false, /**/);
|
|
|
|
// dispatch(FuncRequest(LFUN_SELF_INSERT, opt.replace));
|
2009-01-14 15:34:56 +00:00
|
|
|
}
|
2008-11-15 23:30:27 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void findAdv(BufferView * bv, FuncRequest const & ev)
|
|
|
|
{
|
|
|
|
if (!bv || ev.action != LFUN_WORD_FINDADV)
|
|
|
|
return;
|
|
|
|
|
2009-01-14 15:34:56 +00:00
|
|
|
FindAndReplaceOptions opt;
|
2008-11-15 23:30:27 +00:00
|
|
|
istringstream iss(to_utf8(ev.argument()));
|
|
|
|
iss >> opt;
|
|
|
|
findAdv(bv, opt);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-14 15:34:56 +00:00
|
|
|
ostringstream & operator<<(ostringstream & os, lyx::FindAndReplaceOptions const & opt)
|
2008-11-15 23:30:27 +00:00
|
|
|
{
|
|
|
|
os << to_utf8(opt.search) << "\nEOSS\n"
|
|
|
|
<< opt.casesensitive << ' '
|
|
|
|
<< opt.matchword << ' '
|
|
|
|
<< opt.forward << ' '
|
|
|
|
<< opt.expandmacros << ' '
|
|
|
|
<< opt.ignoreformat << ' '
|
2009-01-14 15:34:56 +00:00
|
|
|
<< opt.regexp << ' '
|
2009-08-19 22:55:38 +00:00
|
|
|
<< to_utf8(opt.replace) << "\nEOSS\n"
|
|
|
|
<< opt.keep_case;
|
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;
|
|
|
|
}
|
|
|
|
|
2009-01-14 15:34:56 +00:00
|
|
|
istringstream & operator>>(istringstream & is, lyx::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())
|
|
|
|
s = s + "\n";
|
|
|
|
s = s + line;
|
|
|
|
if (is.eof()) // Tolerate malformed request
|
|
|
|
break;
|
|
|
|
getline(is, line);
|
|
|
|
}
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "searching for: '" << s << "'");
|
2008-11-15 23:30:27 +00:00
|
|
|
opt.search = from_utf8(s);
|
|
|
|
is >> opt.casesensitive >> opt.matchword >> opt.forward >> opt.expandmacros >> opt.ignoreformat >> opt.regexp;
|
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())
|
|
|
|
s = s + "\n";
|
|
|
|
s = s + line;
|
|
|
|
if (is.eof()) // Tolerate malformed request
|
|
|
|
break;
|
|
|
|
getline(is, line);
|
|
|
|
}
|
2009-08-19 22:55:38 +00:00
|
|
|
is >> opt.keep_case;
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "parsed: " << opt.casesensitive << ' ' << opt.matchword << ' ' << opt.forward << ' '
|
2009-08-19 22:55:38 +00:00
|
|
|
<< opt.expandmacros << ' ' << opt.ignoreformat << ' ' << opt.regexp << ' ' << opt.keep_case);
|
2009-08-17 14:39:00 +00:00
|
|
|
LYXERR(Debug::FIND, "replacing with: '" << s << "'");
|
2009-01-14 15:34:56 +00:00
|
|
|
opt.replace = from_utf8(s);
|
2008-11-15 23:30:27 +00:00
|
|
|
return is;
|
|
|
|
}
|
|
|
|
|
2004-03-25 09:16:36 +00:00
|
|
|
} // lyx namespace
|