]> git.lyx.org Git - lyx.git/blob - src/lyxfind.cpp
Win installer: updates and fixes
[lyx.git] / src / lyxfind.cpp
1 /**
2  * \file lyxfind.cpp
3  * This file is part of LyX, the document processor.
4  * License details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author John Levon
8  * \author Jürgen Vigna
9  * \author Alfredo Braunstein
10  * \author Tommaso Cucinotta
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #include <config.h>
16
17 #include "lyxfind.h"
18
19 #include "Buffer.h"
20 #include "buffer_funcs.h"
21 #include "BufferList.h"
22 #include "BufferParams.h"
23 #include "BufferView.h"
24 #include "Changes.h"
25 #include "Cursor.h"
26 #include "CutAndPaste.h"
27 #include "FuncRequest.h"
28 #include "LyX.h"
29 #include "output_latex.h"
30 #include "OutputParams.h"
31 #include "Paragraph.h"
32 #include "ParIterator.h"
33 #include "TexRow.h"
34 #include "Text.h"
35
36 #include "frontends/Application.h"
37 #include "frontends/alert.h"
38
39 #include "mathed/InsetMath.h"
40 #include "mathed/InsetMathGrid.h"
41 #include "mathed/InsetMathHull.h"
42 #include "mathed/MathData.h"
43 #include "mathed/MathStream.h"
44 #include "mathed/MathSupport.h"
45
46 #include "support/convert.h"
47 #include "support/debug.h"
48 #include "support/docstream.h"
49 #include "support/FileName.h"
50 #include "support/gettext.h"
51 #include "support/lassert.h"
52 #include "support/lstrings.h"
53
54 #include "support/regex.h"
55 #include <map>
56
57 using namespace std;
58 using namespace lyx::support;
59
60 namespace lyx {
61
62
63 // Helper class for deciding what should be ignored
64 class IgnoreFormats {
65  public:
66         ///
67         IgnoreFormats()
68                 : ignoreFamily_(false), ignoreSeries_(false),
69                   ignoreShape_(false), ignoreUnderline_(false),
70                   ignoreMarkUp_(false), ignoreStrikeOut_(false),
71                   ignoreSectioning_(false), ignoreFrontMatter_(true),
72                   ignoreColor_(false), ignoreLanguage_(false) {}
73         ///
74         bool getFamily() { return ignoreFamily_; };
75         ///
76         bool getSeries() { return ignoreSeries_; };
77         ///
78         bool getShape() { return ignoreShape_; };
79         ///
80         bool getUnderline() { return ignoreUnderline_; };
81         ///
82         bool getMarkUp() { return ignoreMarkUp_; };
83         ///
84         bool getStrikeOut() { return ignoreStrikeOut_; };
85         ///
86         bool getSectioning() { return ignoreSectioning_; };
87         ///
88         bool getFrontMatter() { return ignoreFrontMatter_; };
89         ///
90         bool getColor() { return ignoreColor_; };
91         ///
92         bool getLanguage() { return ignoreLanguage_; };
93         ///
94         void setIgnoreFormat(string type, bool value);
95
96 private:
97         ///
98         bool ignoreFamily_;
99         ///
100         bool ignoreSeries_;
101         ///
102         bool ignoreShape_;
103         ///
104         bool ignoreUnderline_;
105         ///
106         bool ignoreMarkUp_;
107         ///
108         bool ignoreStrikeOut_;
109         ///
110         bool ignoreSectioning_;
111         ///
112         bool ignoreFrontMatter_;
113         ///
114         bool ignoreColor_;
115         ///
116         bool ignoreLanguage_;
117 };
118
119
120 void IgnoreFormats::setIgnoreFormat(string type, bool value)
121 {
122         if (type == "color") {
123                 ignoreColor_ = value;
124         }
125         else if (type == "language") {
126                 ignoreLanguage_ = value;
127         }
128         else if (type == "sectioning") {
129                 ignoreSectioning_ = value;
130                 ignoreFrontMatter_ = value;
131         }
132         else if (type == "font") {
133                 ignoreSeries_ = value;
134                 ignoreShape_ = value;
135                 ignoreFamily_ = value;
136         }
137         else if (type == "series") {
138                 ignoreSeries_ = value;
139         }
140         else if (type == "shape") {
141                 ignoreShape_ = value;
142         }
143         else if (type == "family") {
144                 ignoreFamily_ = value;
145         }
146         else if (type == "markup") {
147                 ignoreMarkUp_ = value;
148         }
149         else if (type == "underline") {
150                 ignoreUnderline_ = value;
151         }
152         else if (type == "strike") {
153                 ignoreStrikeOut_ = value;
154         }
155 }
156
157 // The global variable that can be changed from outside
158 IgnoreFormats ignoreFormats;
159
160
161 void setIgnoreFormat(string type, bool value)
162 {
163         ignoreFormats.setIgnoreFormat(type, value);
164 }
165
166
167 namespace {
168
169 bool parse_bool(docstring & howto)
170 {
171         if (howto.empty())
172                 return false;
173         docstring var;
174         howto = split(howto, var, ' ');
175         return var == "1";
176 }
177
178
179 class MatchString : public binary_function<Paragraph, pos_type, int>
180 {
181 public:
182         MatchString(docstring const & str, bool cs, bool mw)
183                 : str(str), case_sens(cs), whole_words(mw)
184         {}
185
186         // returns true if the specified string is at the specified position
187         // del specifies whether deleted strings in ct mode will be considered
188         int operator()(Paragraph const & par, pos_type pos, bool del = true) const
189         {
190                 return par.find(str, case_sens, whole_words, pos, del);
191         }
192
193 private:
194         // search string
195         docstring str;
196         // case sensitive
197         bool case_sens;
198         // match whole words only
199         bool whole_words;
200 };
201
202
203 int findForward(DocIterator & cur, MatchString const & match,
204                 bool find_del = true)
205 {
206         for (; cur; cur.forwardChar())
207                 if (cur.inTexted()) {
208                         int len = match(cur.paragraph(), cur.pos(), find_del);
209                         if (len > 0)
210                                 return len;
211                 }
212         return 0;
213 }
214
215
216 int findBackwards(DocIterator & cur, MatchString const & match,
217                   bool find_del = true)
218 {
219         while (cur) {
220                 cur.backwardChar();
221                 if (cur.inTexted()) {
222                         int len = match(cur.paragraph(), cur.pos(), find_del);
223                         if (len > 0)
224                                 return len;
225                 }
226         }
227         return 0;
228 }
229
230
231 bool searchAllowed(docstring const & str)
232 {
233         if (str.empty()) {
234                 frontend::Alert::error(_("Search error"), _("Search string is empty"));
235                 return false;
236         }
237         return true;
238 }
239
240
241 bool findOne(BufferView * bv, docstring const & searchstr,
242              bool case_sens, bool whole, bool forward,
243              bool find_del = true, bool check_wrap = false)
244 {
245         if (!searchAllowed(searchstr))
246                 return false;
247
248         DocIterator cur = forward
249                 ? bv->cursor().selectionEnd()
250                 : bv->cursor().selectionBegin();
251
252         MatchString const match(searchstr, case_sens, whole);
253
254         int match_len = forward
255                 ? findForward(cur, match, find_del)
256                 : findBackwards(cur, match, find_del);
257
258         if (match_len > 0)
259                 bv->putSelectionAt(cur, match_len, !forward);
260         else if (check_wrap) {
261                 DocIterator cur_orig(bv->cursor());
262                 docstring q;
263                 if (forward)
264                         q = _("End of file reached while searching forward.\n"
265                           "Continue searching from the beginning?");
266                 else
267                         q = _("Beginning of file reached while searching backward.\n"
268                           "Continue searching from the end?");
269                 int wrap_answer = frontend::Alert::prompt(_("Wrap search?"),
270                         q, 0, 1, _("&Yes"), _("&No"));
271                 if (wrap_answer == 0) {
272                         if (forward) {
273                                 bv->cursor().clear();
274                                 bv->cursor().push_back(CursorSlice(bv->buffer().inset()));
275                         } else {
276                                 bv->cursor().setCursor(doc_iterator_end(&bv->buffer()));
277                                 bv->cursor().backwardPos();
278                         }
279                         bv->clearSelection();
280                         if (findOne(bv, searchstr, case_sens, whole, forward, find_del, false))
281                                 return true;
282                 }
283                 bv->cursor().setCursor(cur_orig);
284                 return false;
285         }
286
287         return match_len > 0;
288 }
289
290
291 int replaceAll(BufferView * bv,
292                docstring const & searchstr, docstring const & replacestr,
293                bool case_sens, bool whole)
294 {
295         Buffer & buf = bv->buffer();
296
297         if (!searchAllowed(searchstr) || buf.isReadonly())
298                 return 0;
299
300         DocIterator cur_orig(bv->cursor());
301
302         MatchString const match(searchstr, case_sens, whole);
303         int num = 0;
304
305         int const rsize = replacestr.size();
306         int const ssize = searchstr.size();
307
308         Cursor cur(*bv);
309         cur.setCursor(doc_iterator_begin(&buf));
310         int match_len = findForward(cur, match, false);
311         while (match_len > 0) {
312                 // Backup current cursor position and font.
313                 pos_type const pos = cur.pos();
314                 Font const font = cur.paragraph().getFontSettings(buf.params(), pos);
315                 cur.recordUndo();
316                 int striked = ssize -
317                         cur.paragraph().eraseChars(pos, pos + match_len,
318                                                    buf.params().track_changes);
319                 cur.paragraph().insert(pos, replacestr, font,
320                                        Change(buf.params().track_changes
321                                               ? Change::INSERTED
322                                               : Change::UNCHANGED));
323                 for (int i = 0; i < rsize + striked; ++i)
324                         cur.forwardChar();
325                 ++num;
326                 match_len = findForward(cur, match, false);
327         }
328
329         bv->putSelectionAt(doc_iterator_begin(&buf), 0, false);
330
331         cur_orig.fixIfBroken();
332         bv->setCursor(cur_orig);
333
334         return num;
335 }
336
337
338 // the idea here is that we are going to replace the string that
339 // is selected IF it is the search string.
340 // if there is a selection, but it is not the search string, then
341 // we basically ignore it. (FIXME We ought to replace only within
342 // the selection.)
343 // if there is no selection, then:
344 //  (i) if some search string has been provided, then we find it.
345 //      (think of how the dialog works when you hit "replace" the
346 //      first time.)
347 // (ii) if no search string has been provided, then we treat the
348 //      word the cursor is in as the search string. (why? i have no
349 //      idea.) but this only works in text?
350 //
351 // returns the number of replacements made (one, if any) and
352 // whether anything at all was done.
353 pair<bool, int> replaceOne(BufferView * bv, docstring searchstr,
354                            docstring const & replacestr, bool case_sens,
355                            bool whole, bool forward, bool findnext)
356 {
357         Cursor & cur = bv->cursor();
358         bool found = false;
359         if (!cur.selection()) {
360                 // no selection, non-empty search string: find it
361                 if (!searchstr.empty()) {
362                         found = findOne(bv, searchstr, case_sens, whole, forward, true, findnext);
363                         return make_pair(found, 0);
364                 }
365                 // empty search string
366                 if (!cur.inTexted())
367                         // bail in math
368                         return make_pair(false, 0);
369                 // select current word and treat it as the search string.
370                 // This causes a minor bug as undo will restore this selection,
371                 // which the user did not create (#8986).
372                 cur.innerText()->selectWord(cur, WHOLE_WORD);
373                 searchstr = cur.selectionAsString(false);
374         }
375
376         // if we still don't have a search string, report the error
377         // and abort.
378         if (!searchAllowed(searchstr))
379                 return make_pair(false, 0);
380
381         bool have_selection = cur.selection();
382         docstring const selected = cur.selectionAsString(false);
383         bool match =
384                 case_sens
385                 ? searchstr == selected
386                 : compare_no_case(searchstr, selected) == 0;
387
388         // no selection or current selection is not search word:
389         // just find the search word
390         if (!have_selection || !match) {
391                 found = findOne(bv, searchstr, case_sens, whole, forward, true, findnext);
392                 return make_pair(found, 0);
393         }
394
395         // we're now actually ready to replace. if the buffer is
396         // read-only, we can't, though.
397         if (bv->buffer().isReadonly())
398                 return make_pair(false, 0);
399
400         cap::replaceSelectionWithString(cur, replacestr);
401         if (forward) {
402                 cur.pos() += replacestr.length();
403                 LASSERT(cur.pos() <= cur.lastpos(),
404                         cur.pos() = cur.lastpos());
405         }
406         if (findnext)
407                 findOne(bv, searchstr, case_sens, whole, forward, false, findnext);
408
409         return make_pair(true, 1);
410 }
411
412 } // namespace
413
414
415 docstring const find2string(docstring const & search,
416                             bool casesensitive, bool matchword, bool forward)
417 {
418         odocstringstream ss;
419         ss << search << '\n'
420            << int(casesensitive) << ' '
421            << int(matchword) << ' '
422            << int(forward);
423         return ss.str();
424 }
425
426
427 docstring const replace2string(docstring const & replace,
428                                docstring const & search,
429                                bool casesensitive, bool matchword,
430                                bool all, bool forward, bool findnext)
431 {
432         odocstringstream ss;
433         ss << replace << '\n'
434            << search << '\n'
435            << int(casesensitive) << ' '
436            << int(matchword) << ' '
437            << int(all) << ' '
438            << int(forward) << ' '
439            << int(findnext);
440         return ss.str();
441 }
442
443
444 bool lyxfind(BufferView * bv, FuncRequest const & ev)
445 {
446         if (!bv || ev.action() != LFUN_WORD_FIND)
447                 return false;
448
449         //lyxerr << "find called, cmd: " << ev << endl;
450
451         // data is of the form
452         // "<search>
453         //  <casesensitive> <matchword> <forward>"
454         docstring search;
455         docstring howto = split(ev.argument(), search, '\n');
456
457         bool casesensitive = parse_bool(howto);
458         bool matchword     = parse_bool(howto);
459         bool forward       = parse_bool(howto);
460
461         return findOne(bv, search, casesensitive, matchword, forward, true, true);
462 }
463
464
465 bool lyxreplace(BufferView * bv,
466                 FuncRequest const & ev, bool has_deleted)
467 {
468         if (!bv || ev.action() != LFUN_WORD_REPLACE)
469                 return false;
470
471         // data is of the form
472         // "<search>
473         //  <replace>
474         //  <casesensitive> <matchword> <all> <forward> <findnext>"
475         docstring search;
476         docstring rplc;
477         docstring howto = split(ev.argument(), rplc, '\n');
478         howto = split(howto, search, '\n');
479
480         bool casesensitive = parse_bool(howto);
481         bool matchword     = parse_bool(howto);
482         bool all           = parse_bool(howto);
483         bool forward       = parse_bool(howto);
484         bool findnext      = howto.empty() ? true : parse_bool(howto);
485
486         bool update = false;
487
488         if (!has_deleted) {
489                 int replace_count = 0;
490                 if (all) {
491                         replace_count = replaceAll(bv, search, rplc, casesensitive, matchword);
492                         update = replace_count > 0;
493                 } else {
494                         pair<bool, int> rv =
495                                 replaceOne(bv, search, rplc, casesensitive, matchword, forward, findnext);
496                         update = rv.first;
497                         replace_count = rv.second;
498                 }
499
500                 Buffer const & buf = bv->buffer();
501                 if (!update) {
502                         // emit message signal.
503                         buf.message(_("String not found."));
504                 } else {
505                         if (replace_count == 0) {
506                                 buf.message(_("String found."));
507                         } else if (replace_count == 1) {
508                                 buf.message(_("String has been replaced."));
509                         } else {
510                                 docstring const str =
511                                         bformat(_("%1$d strings have been replaced."), replace_count);
512                                 buf.message(str);
513                         }
514                 }
515         } else if (findnext) {
516                 // if we have deleted characters, we do not replace at all, but
517                 // rather search for the next occurence
518                 if (findOne(bv, search, casesensitive, matchword, forward, true, findnext))
519                         update = true;
520                 else
521                         bv->message(_("String not found."));
522         }
523         return update;
524 }
525
526
527 bool findNextChange(BufferView * bv, Cursor & cur, bool const check_wrap)
528 {
529         for (; cur; cur.forwardPos())
530                 if (cur.inTexted() && cur.paragraph().isChanged(cur.pos()))
531                         return true;
532
533         if (check_wrap) {
534                 DocIterator cur_orig(bv->cursor());
535                 docstring q = _("End of file reached while searching forward.\n"
536                           "Continue searching from the beginning?");
537                 int wrap_answer = frontend::Alert::prompt(_("Wrap search?"),
538                         q, 0, 1, _("&Yes"), _("&No"));
539                 if (wrap_answer == 0) {
540                         bv->cursor().clear();
541                         bv->cursor().push_back(CursorSlice(bv->buffer().inset()));
542                         bv->clearSelection();
543                         cur.setCursor(bv->cursor().selectionBegin());
544                         if (findNextChange(bv, cur, false))
545                                 return true;
546                 }
547                 bv->cursor().setCursor(cur_orig);
548         }
549
550         return false;
551 }
552
553
554 bool findPreviousChange(BufferView * bv, Cursor & cur, bool const check_wrap)
555 {
556         for (cur.backwardPos(); cur; cur.backwardPos()) {
557                 if (cur.inTexted() && cur.paragraph().isChanged(cur.pos()))
558                         return true;
559         }
560
561         if (check_wrap) {
562                 DocIterator cur_orig(bv->cursor());
563                 docstring q = _("Beginning of file reached while searching backward.\n"
564                           "Continue searching from the end?");
565                 int wrap_answer = frontend::Alert::prompt(_("Wrap search?"),
566                         q, 0, 1, _("&Yes"), _("&No"));
567                 if (wrap_answer == 0) {
568                         bv->cursor().setCursor(doc_iterator_end(&bv->buffer()));
569                         bv->cursor().backwardPos();
570                         bv->clearSelection();
571                         cur.setCursor(bv->cursor().selectionBegin());
572                         if (findPreviousChange(bv, cur, false))
573                                 return true;
574                 }
575                 bv->cursor().setCursor(cur_orig);
576         }
577
578         return false;
579 }
580
581
582 bool selectChange(Cursor & cur, bool forward)
583 {
584         if (!cur.inTexted() || !cur.paragraph().isChanged(cur.pos()))
585                 return false;
586         Change ch = cur.paragraph().lookupChange(cur.pos());
587
588         CursorSlice tip1 = cur.top();
589         for (; tip1.pit() < tip1.lastpit() || tip1.pos() < tip1.lastpos(); tip1.forwardPos()) {
590                 Change ch2 = tip1.paragraph().lookupChange(tip1.pos());
591                 if (!ch2.isSimilarTo(ch))
592                         break;
593         }
594         CursorSlice tip2 = cur.top();
595         for (; tip2.pit() > 0 || tip2.pos() > 0;) {
596                 tip2.backwardPos();
597                 Change ch2 = tip2.paragraph().lookupChange(tip2.pos());
598                 if (!ch2.isSimilarTo(ch)) {
599                         // take a step forward to correctly set the selection
600                         tip2.forwardPos();
601                         break;
602                 }
603         }
604         if (forward)
605                 swap(tip1, tip2);
606         cur.top() = tip1;
607         cur.bv().mouseSetCursor(cur, false);
608         cur.top() = tip2;
609         cur.bv().mouseSetCursor(cur, true);
610         return true;
611 }
612
613
614 namespace {
615
616
617 bool findChange(BufferView * bv, bool forward)
618 {
619         Cursor cur(*bv);
620         cur.setCursor(forward ? bv->cursor().selectionEnd()
621                       : bv->cursor().selectionBegin());
622         forward ? findNextChange(bv, cur, true) : findPreviousChange(bv, cur, true);
623         return selectChange(cur, forward);
624 }
625
626 } // namespace
627
628 bool findNextChange(BufferView * bv)
629 {
630         return findChange(bv, true);
631 }
632
633
634 bool findPreviousChange(BufferView * bv)
635 {
636         return findChange(bv, false);
637 }
638
639
640
641 namespace {
642
643 typedef vector<pair<string, string> > Escapes;
644
645 /// A map of symbols and their escaped equivalent needed within a regex.
646 /// @note Beware of order
647 Escapes const & get_regexp_escapes()
648 {
649         typedef std::pair<std::string, std::string> P;
650
651         static Escapes escape_map;
652         if (escape_map.empty()) {
653                 escape_map.push_back(P("$", "_x_$"));
654                 escape_map.push_back(P("{", "_x_{"));
655                 escape_map.push_back(P("}", "_x_}"));
656                 escape_map.push_back(P("[", "_x_["));
657                 escape_map.push_back(P("]", "_x_]"));
658                 escape_map.push_back(P("(", "_x_("));
659                 escape_map.push_back(P(")", "_x_)"));
660                 escape_map.push_back(P("+", "_x_+"));
661                 escape_map.push_back(P("*", "_x_*"));
662                 escape_map.push_back(P(".", "_x_."));
663                 escape_map.push_back(P("\\", "(?:\\\\|\\\\backslash)"));
664                 escape_map.push_back(P("~", "(?:\\\\textasciitilde|\\\\sim)"));
665                 escape_map.push_back(P("^", "(?:\\^|\\\\textasciicircum\\{\\}|\\\\textasciicircum|\\\\mathcircumflex)"));
666                 escape_map.push_back(P("_x_", "\\"));
667         }
668         return escape_map;
669 }
670
671 /// A map of lyx escaped strings and their unescaped equivalent.
672 Escapes const & get_lyx_unescapes()
673 {
674         typedef std::pair<std::string, std::string> P;
675
676         static Escapes escape_map;
677         if (escape_map.empty()) {
678                 escape_map.push_back(P("\\%", "%"));
679                 escape_map.push_back(P("\\mathcircumflex ", "^"));
680                 escape_map.push_back(P("\\mathcircumflex", "^"));
681                 escape_map.push_back(P("\\backslash ", "\\"));
682                 escape_map.push_back(P("\\backslash", "\\"));
683                 escape_map.push_back(P("\\\\{", "_x_<"));
684                 escape_map.push_back(P("\\\\}", "_x_>"));
685                 escape_map.push_back(P("\\sim ", "~"));
686                 escape_map.push_back(P("\\sim", "~"));
687         }
688         return escape_map;
689 }
690
691 /// A map of escapes turning a regexp matching text to one matching latex.
692 Escapes const & get_regexp_latex_escapes()
693 {
694         typedef std::pair<std::string, std::string> P;
695
696         static Escapes escape_map;
697         if (escape_map.empty()) {
698                 escape_map.push_back(P("\\\\", "(?:\\\\\\\\|\\\\backslash|\\\\textbackslash\\{\\}|\\\\textbackslash)"));
699                 escape_map.push_back(P("(<?!\\\\\\\\textbackslash)\\{", "\\\\\\{"));
700                 escape_map.push_back(P("(<?!\\\\\\\\textbackslash\\\\\\{)\\}", "\\\\\\}"));
701                 escape_map.push_back(P("\\[", "\\{\\[\\}"));
702                 escape_map.push_back(P("\\]", "\\{\\]\\}"));
703                 escape_map.push_back(P("\\^", "(?:\\^|\\\\textasciicircum\\{\\}|\\\\textasciicircum|\\\\mathcircumflex)"));
704                 escape_map.push_back(P("%", "\\\\\\%"));
705                 escape_map.push_back(P("#", "\\\\#"));
706         }
707         return escape_map;
708 }
709
710 /** @todo Probably the maps need to be migrated to regexps, in order to distinguish if
711  ** the found occurrence were escaped.
712  **/
713 string apply_escapes(string s, Escapes const & escape_map)
714 {
715         LYXERR(Debug::FIND, "Escaping: '" << s << "'");
716         Escapes::const_iterator it;
717         for (it = escape_map.begin(); it != escape_map.end(); ++it) {
718 //              LYXERR(Debug::FIND, "Escaping " << it->first << " as " << it->second);
719                 unsigned int pos = 0;
720                 while (pos < s.length() && (pos = s.find(it->first, pos)) < s.length()) {
721                         s.replace(pos, it->first.length(), it->second);
722                         LYXERR(Debug::FIND, "After escape: " << s);
723                         pos += it->second.length();
724 //                      LYXERR(Debug::FIND, "pos: " << pos);
725                 }
726         }
727         LYXERR(Debug::FIND, "Escaped : '" << s << "'");
728         return s;
729 }
730
731
732 /// Within \regexp{} apply get_lyx_unescapes() only (i.e., preserve regexp semantics of the string),
733 /// while outside apply get_lyx_unescapes()+get_regexp_escapes().
734 /// If match_latex is true, then apply regexp_latex_escapes() to \regexp{} contents as well.
735 string escape_for_regex(string s, bool match_latex)
736 {
737         size_t pos = 0;
738         while (pos < s.size()) {
739                 size_t new_pos = s.find("\\regexp{", pos);
740                 if (new_pos == string::npos)
741                         new_pos = s.size();
742                 LYXERR(Debug::FIND, "new_pos: " << new_pos);
743                 string t = apply_escapes(s.substr(pos, new_pos - pos), get_lyx_unescapes());
744                 LYXERR(Debug::FIND, "t [lyx]: " << t);
745                 t = apply_escapes(t, get_regexp_escapes());
746                 LYXERR(Debug::FIND, "t [rxp]: " << t);
747                 s.replace(pos, new_pos - pos, t);
748                 new_pos = pos + t.size();
749                 LYXERR(Debug::FIND, "Regexp after escaping: " << s);
750                 LYXERR(Debug::FIND, "new_pos: " << new_pos);
751                 if (new_pos == s.size())
752                         break;
753                 // Might fail if \\endregexp{} is preceeded by unexpected stuff (weird escapes)
754                 size_t end_pos = s.find("\\endregexp{}}", new_pos + 8);
755                 LYXERR(Debug::FIND, "end_pos: " << end_pos);
756                 t = s.substr(new_pos + 8, end_pos - (new_pos + 8));
757                 LYXERR(Debug::FIND, "t in regexp      : " << t);
758                 t = apply_escapes(t, get_lyx_unescapes());
759                 LYXERR(Debug::FIND, "t in regexp [lyx]: " << t);
760                 if (match_latex) {
761                         t = apply_escapes(t, get_regexp_latex_escapes());
762                         LYXERR(Debug::FIND, "t in regexp [ltx]: " << t);
763                 }
764                 if (end_pos == s.size()) {
765                         s.replace(new_pos, end_pos - new_pos, t);
766                         LYXERR(Debug::FIND, "Regexp after \\regexp{} removal: " << s);
767                         break;
768                 }
769                 s.replace(new_pos, end_pos + 13 - new_pos, t);
770                 LYXERR(Debug::FIND, "Regexp after \\regexp{...\\endregexp{}} removal: " << s);
771                 pos = new_pos + t.size();
772                 LYXERR(Debug::FIND, "pos: " << pos);
773         }
774         return s;
775 }
776
777
778 /// Wrapper for lyx::regex_replace with simpler interface
779 bool regex_replace(string const & s, string & t, string const & searchstr,
780                    string const & replacestr)
781 {
782         lyx::regex e(searchstr, regex_constants::ECMAScript);
783         ostringstream oss;
784         ostream_iterator<char, char> it(oss);
785         lyx::regex_replace(it, s.begin(), s.end(), e, replacestr);
786         // tolerate t and s be references to the same variable
787         bool rv = (s != oss.str());
788         t = oss.str();
789         return rv;
790 }
791
792
793 /** Checks if supplied string segment is well-formed from the standpoint of matching open-closed braces.
794  **
795  ** Verify that closed braces exactly match open braces. This avoids that, for example,
796  ** \frac{.*}{x} matches \frac{x+\frac{y}{x}}{z} with .* being 'x+\frac{y'.
797  **
798  ** @param unmatched
799  ** Number of open braces that must remain open at the end for the verification to succeed.
800  **/
801 bool braces_match(string::const_iterator const & beg,
802                   string::const_iterator const & end,
803                   int unmatched = 0)
804 {
805         int open_pars = 0;
806         string::const_iterator it = beg;
807         LYXERR(Debug::FIND, "Checking " << unmatched << " unmatched braces in '" << string(beg, end) << "'");
808         for (; it != end; ++it) {
809                 // Skip escaped braces in the count
810                 if (*it == '\\') {
811                         ++it;
812                         if (it == end)
813                                 break;
814                 } else if (*it == '{') {
815                         ++open_pars;
816                 } else if (*it == '}') {
817                         if (open_pars == 0) {
818                                 LYXERR(Debug::FIND, "Found unmatched closed brace");
819                                 return false;
820                         } else
821                                 --open_pars;
822                 }
823         }
824         if (open_pars != unmatched) {
825                 LYXERR(Debug::FIND, "Found " << open_pars
826                        << " instead of " << unmatched
827                        << " unmatched open braces at the end of count");
828                 return false;
829         }
830         LYXERR(Debug::FIND, "Braces match as expected");
831         return true;
832 }
833
834
835 /** The class performing a match between a position in the document and the FindAdvOptions.
836  **/
837 class MatchStringAdv {
838 public:
839         MatchStringAdv(lyx::Buffer & buf, FindAndReplaceOptions const & opt);
840
841         /** Tests if text starting at the supplied position matches with the one provided to the MatchStringAdv
842          ** constructor as opt.search, under the opt.* options settings.
843          **
844          ** @param at_begin
845          **     If set, then match is searched only against beginning of text starting at cur.
846          **     If unset, then match is searched anywhere in text starting at cur.
847          **
848          ** @return
849          ** The length of the matching text, or zero if no match was found.
850          **/
851         int operator()(DocIterator const & cur, int len = -1, bool at_begin = true) const;
852
853 public:
854         /// buffer
855         lyx::Buffer * p_buf;
856         /// first buffer on which search was started
857         lyx::Buffer * const p_first_buf;
858         /// options
859         FindAndReplaceOptions const & opt;
860
861 private:
862         /// Auxiliary find method (does not account for opt.matchword)
863         int findAux(DocIterator const & cur, int len = -1, bool at_begin = true) const;
864
865         /** Normalize a stringified or latexified LyX paragraph.
866          **
867          ** Normalize means:
868          ** <ul>
869          **   <li>if search is not casesensitive, then lowercase the string;
870          **   <li>remove any newline at begin or end of the string;
871          **   <li>replace any newline in the middle of the string with a simple space;
872          **   <li>remove stale empty styles and environments, like \emph{} and \textbf{}.
873          ** </ul>
874          **
875          ** @todo Normalization should also expand macros, if the corresponding
876          ** search option was checked.
877          **/
878         string normalize(docstring const & s, bool hack_braces) const;
879         // normalized string to search
880         string par_as_string;
881         // regular expression to use for searching
882         lyx::regex regexp;
883         // same as regexp, but prefixed with a ".*?"
884         lyx::regex regexp2;
885         // leading format material as string
886         string lead_as_string;
887         // par_as_string after removal of lead_as_string
888         string par_as_string_nolead;
889         // unmatched open braces in the search string/regexp
890         int open_braces;
891         // number of (.*?) subexpressions added at end of search regexp for closing
892         // environments, math mode, styles, etc...
893         int close_wildcards;
894         // Are we searching with regular expressions ?
895         bool use_regexp;
896 };
897
898
899 static docstring buffer_to_latex(Buffer & buffer)
900 {
901         OutputParams runparams(&buffer.params().encoding());
902         odocstringstream ods;
903         otexstream os(ods);
904         runparams.nice = true;
905         runparams.flavor = OutputParams::LATEX;
906         runparams.linelen = 100000; //lyxrc.plaintext_linelen;
907         // No side effect of file copying and image conversion
908         runparams.dryrun = true;
909         runparams.for_search = true;
910         pit_type const endpit = buffer.paragraphs().size();
911         for (pit_type pit = 0; pit != endpit; ++pit) {
912                 TeXOnePar(buffer, buffer.text(), pit, os, runparams);
913                 LYXERR(Debug::FIND, "searchString up to here: " << ods.str());
914         }
915         return ods.str();
916 }
917
918
919 static docstring stringifySearchBuffer(Buffer & buffer, FindAndReplaceOptions const & opt)
920 {
921         docstring str;
922         if (!opt.ignoreformat) {
923                 str = buffer_to_latex(buffer);
924         } else {
925                 OutputParams runparams(&buffer.params().encoding());
926                 runparams.nice = true;
927                 runparams.flavor = OutputParams::LATEX;
928                 runparams.linelen = 100000; //lyxrc.plaintext_linelen;
929                 runparams.dryrun = true;
930                 runparams.for_search = true;
931                 for (pos_type pit = pos_type(0); pit < (pos_type)buffer.paragraphs().size(); ++pit) {
932                         Paragraph const & par = buffer.paragraphs().at(pit);
933                         LYXERR(Debug::FIND, "Adding to search string: '"
934                                << par.asString(pos_type(0), par.size(),
935                                                AS_STR_INSETS | AS_STR_SKIPDELETE | AS_STR_PLAINTEXT,
936                                                &runparams)
937                                << "'");
938                         str += par.asString(pos_type(0), par.size(),
939                                             AS_STR_INSETS | AS_STR_SKIPDELETE | AS_STR_PLAINTEXT,
940                                             &runparams);
941                 }
942         }
943         return str;
944 }
945
946
947 /// Return separation pos between the leading material and the rest
948 static size_t identifyLeading(string const & s)
949 {
950         string t = s;
951         // @TODO Support \item[text]
952         // Kornel: Added textsl, textsf, textit, texttt and noun
953         // + allow to search for colored text too
954         while (regex_replace(t, t, REGEX_BOS "\\\\(((footnotesize|tiny|scriptsize|small|large|Large|LARGE|huge|Huge|emph|noun|minisec|text(bf|md|sl|sf|it|tt))|((textcolor|foreignlanguage)\\{[a-z]+\\})|(u|uu)line|(s|x)out|uwave)|((sub)?(((sub)?section)|paragraph)|part|chapter)\\*?)\\{", "")
955                || regex_replace(t, t, REGEX_BOS "\\$", "")
956                || regex_replace(t, t, REGEX_BOS "\\\\\\[ ", "")
957                || regex_replace(t, t, REGEX_BOS " ?\\\\item\\{[a-z]+\\}", "")
958                || regex_replace(t, t, REGEX_BOS "\\\\begin\\{[a-zA-Z_]*\\*?\\} ", ""))
959                ;
960         LYXERR(Debug::FIND, "  after removing leading $, \\[ , \\emph{, \\textbf{, etc.: '" << t << "'");
961         return s.find(t);
962 }
963
964 /*
965  * Given a latexified string, retrieve some handled features
966  * The features of the regex will later be compared with the features
967  * of the searched text. If the regex features are not a
968  * subset of the analized, then, in not format ignoring search
969  * we can early stop the search in the relevant inset.
970  */
971 typedef map<string, bool> Features;
972
973 static Features identifyFeatures(string const & s)
974 {
975         static regex const feature("\\\\(([a-z]+(\\{([a-z]+)\\}|\\*)?))\\{");
976         static regex const valid("^(((footnotesize|tiny|scriptsize|small|large|Large|LARGE|huge|Huge|emph|noun|text(bf|md|sl|sf|it|tt)|(textcolor|foreignlanguage|item)\\{[a-z]+\\})|(u|uu)line|(s|x)out|uwave)|((sub)?(((sub)?section)|paragraph)|part|chapter)\\*?)$");
977         smatch sub;
978         bool displ = true;
979         Features info;
980
981         for (sregex_iterator it(s.begin(), s.end(), feature), end; it != end; ++it) {
982                 sub = *it;
983                 if (displ) {
984                         if (sub.str(1).compare("regexp") == 0) {
985                                 displ = false;
986                                 continue;
987                         }
988                         string token = sub.str(1);
989                         smatch sub2;
990                         if (regex_match(token, sub2, valid)) {
991                                 info[token] = true;
992                         }
993                         else {
994                                 // ignore
995                         }
996                 }
997                 else {
998                         if (sub.str(1).compare("endregexp") == 0) {
999                                 displ = true;
1000                                 continue;
1001                         }
1002                 }
1003         }
1004         return(info);
1005 }
1006
1007 /*
1008  * defines values features of a key "\\[a-z]+{"
1009  */
1010 class KeyInfo {
1011  public:
1012   enum KeyType {
1013     /* Char type with content discarded
1014      * like \hspace{1cm} */
1015     noContent,
1016     /* Char, like \backslash */
1017     isChar,
1018     /* \part, \section*, ... */
1019     isSectioning,
1020     /* \foreignlanguage{ngerman}, ... */
1021     isMain,
1022     /* inside \code{} or \footnote{}
1023      * to discard language in content */
1024     noMain,
1025     isRegex,
1026     /* \begin{eqnarray}...\end{eqnarray}, ... $...$ */
1027     isMath,
1028     /* fonts, colors, markups, ... */
1029     isStandard,
1030     /* footnotesize, ... large, ...
1031      * Ignore all of them */
1032     isSize,
1033     invalid,
1034     /* inputencoding, shortcut, ...
1035      * Discard also content, because they do not help in search */
1036     doRemove,
1037     /* twocolumns, ...
1038      * like remove, but also all arguments */
1039     removeWithArg,
1040     /* item */
1041     isList,
1042     /* tex, latex, ... like isChar */
1043     isIgnored,
1044     /* like \lettrine[lines=5]{}{} */
1045     cleanToStart,
1046     /* End of arguments marker for lettrine,
1047      * so that they can be ignored */
1048     endArguments
1049   };
1050  KeyInfo()
1051    : keytype(invalid),
1052     head(""),
1053     _tokensize(-1),
1054     _tokenstart(-1),
1055     _dataStart(-1),
1056     _dataEnd(-1),
1057     parenthesiscount(1),
1058     disabled(false),
1059     used(false)
1060   {};
1061  KeyInfo(KeyType type, int parcount, bool disable)
1062    : keytype(type),
1063     _tokensize(-1),
1064     _tokenstart(-1),
1065     _dataStart(-1),
1066     _dataEnd(-1),
1067     parenthesiscount(parcount),
1068     disabled(disable),
1069     used(false) {};
1070   KeyType keytype;
1071   string head;
1072   int _tokensize;
1073   int _tokenstart;
1074   int _dataStart;
1075   int _dataEnd;
1076   int parenthesiscount;
1077   bool disabled;
1078   bool used;                            /* by pattern */
1079 };
1080
1081 class Border {
1082  public:
1083  Border(int l=0, int u=0) : low(l), upper(u) {};
1084   int low;
1085   int upper;
1086 };
1087
1088 #define MAXOPENED 30
1089 class Intervall {
1090   bool isPatternString;
1091  public:
1092  explicit Intervall(bool isPattern) :
1093   isPatternString(isPattern),
1094     ignoreidx(-1),
1095     actualdeptindex(0) { depts[0] = 0; closes[0] = 0;};
1096   string par;
1097   int ignoreidx;
1098   int depts[MAXOPENED];
1099   int closes[MAXOPENED];
1100   int actualdeptindex;
1101   Border borders[2*MAXOPENED];
1102   int previousNotIgnored(int);
1103   int nextNotIgnored(int);
1104   void handleOpenP(int i);
1105   void handleCloseP(int i, bool closingAllowed);
1106   void resetOpenedP(int openPos);
1107   void addIntervall(int upper);
1108   void addIntervall(int low, int upper); /* if explicit */
1109   void setForDefaultLang(int upTo);
1110   int findclosing(int start, int end, char up, char down);
1111   void handleParentheses(int lastpos, bool closingAllowed);
1112   void output(ostringstream &os, int lastpos);
1113   // string show(int lastpos);
1114 };
1115
1116 void Intervall::setForDefaultLang(int upTo)
1117 {
1118   // Enable the use of first token again
1119   if (ignoreidx >= 0) {
1120     if (borders[0].low < upTo)
1121       borders[0].low = upTo;
1122     if (borders[0].upper < upTo)
1123       borders[0].upper = upTo;
1124   }
1125 }
1126
1127 static void checkDepthIndex(int val)
1128 {
1129   static int maxdepthidx = MAXOPENED-2;
1130   if (val > maxdepthidx) {
1131     maxdepthidx = val;
1132     LYXERR0("maxdepthidx now " << val);
1133   }
1134 }
1135
1136 static void checkIgnoreIdx(int val)
1137 {
1138   static int maxignoreidx = 2*MAXOPENED - 4;
1139   if (val > maxignoreidx) {
1140     maxignoreidx = val;
1141     LYXERR0("maxignoreidx now " << val);
1142   }
1143 }
1144
1145 /*
1146  * Expand the region of ignored parts of the input latex string
1147  * The region is only relevant in output()
1148  */
1149 void Intervall::addIntervall(int low, int upper)
1150 {
1151   int idx;
1152   if (low == upper) return;
1153   for (idx = ignoreidx+1; idx > 0; --idx) {
1154     if (low > borders[idx-1].upper) {
1155       break;
1156     }
1157   }
1158   Border br(low, upper);
1159   if (idx > ignoreidx) {
1160     borders[idx] = br;
1161     ignoreidx = idx;
1162     checkIgnoreIdx(ignoreidx);
1163     return;
1164   }
1165   else {
1166     // Expand only if one of the new bound is inside the interwall
1167     // We know here that br.low > borders[idx-1].upper
1168     if (br.upper < borders[idx].low) {
1169       // We have to insert at this pos
1170       for (int i = ignoreidx+1; i > idx; --i) {
1171         borders[i] = borders[i-1];
1172       }
1173       borders[idx] = br;
1174       ignoreidx += 1;
1175       checkIgnoreIdx(ignoreidx);
1176       return;
1177     }
1178     // Here we know, that we are overlapping
1179     if (br.low > borders[idx].low)
1180       br.low = borders[idx].low;
1181     // check what has to be concatenated
1182     int count = 0;
1183     for (int i = idx; i <= ignoreidx; i++) {
1184       if (br.upper >= borders[i].low) {
1185         count++;
1186         if (br.upper < borders[i].upper)
1187           br.upper = borders[i].upper;
1188       }
1189       else {
1190         break;
1191       }
1192     }
1193     // count should be >= 1 here
1194     borders[idx] = br;
1195     if (count > 1) {
1196       for (int i = idx + count; i <= ignoreidx; i++) {
1197         borders[i-count+1] = borders[i];
1198       }
1199       ignoreidx -= count - 1;
1200       return;
1201     }
1202   }
1203 }
1204
1205 void Intervall::handleOpenP(int i)
1206 {
1207   actualdeptindex++;
1208   depts[actualdeptindex] = i+1;
1209   closes[actualdeptindex] = -1;
1210   checkDepthIndex(actualdeptindex);
1211 }
1212
1213 void Intervall::handleCloseP(int i, bool closingAllowed)
1214 {
1215   if (actualdeptindex <= 0) {
1216     if (! closingAllowed)
1217       LYXERR(Debug::FIND, "Bad closing parenthesis in latex");  /* should not happen, but the latex input may be wrong */
1218     // if we are at the very end
1219     addIntervall(i, i+1);
1220   }
1221   else {
1222     closes[actualdeptindex] = i+1;
1223     actualdeptindex--;
1224   }
1225 }
1226
1227 void Intervall::resetOpenedP(int openPos)
1228 {
1229   // Used as initializer for foreignlanguage entry
1230   actualdeptindex = 1;
1231   depts[1] = openPos+1;
1232   closes[1] = -1;
1233 }
1234
1235 int Intervall::previousNotIgnored(int start)
1236 {
1237     int idx = 0;                          /* int intervalls */
1238     for (idx = ignoreidx; idx >= 0; --idx) {
1239       if (start > borders[idx].upper)
1240         return start;
1241       if (start >= borders[idx].low)
1242         start = borders[idx].low-1;
1243     }
1244     return start;
1245 }
1246
1247 int Intervall::nextNotIgnored(int start)
1248 {
1249     int idx = 0;                          /* int intervalls */
1250     for (idx = 0; idx <= ignoreidx; idx++) {
1251       if (start < borders[idx].low)
1252         return start;
1253       if (start < borders[idx].upper)
1254         start = borders[idx].upper;
1255     }
1256     return start;
1257 }
1258
1259 typedef map<string, KeyInfo> KeysMap;
1260 typedef vector< KeyInfo> Entries;
1261 static KeysMap keys = map<string, KeyInfo>();
1262
1263 class LatexInfo {
1264  private:
1265   int entidx;
1266   Entries entries;
1267   Intervall interval;
1268   void buildKeys(bool);
1269   void buildEntries(bool);
1270   void makeKey(const string &, KeyInfo, bool isPatternString);
1271   void processRegion(int start, int region_end); /*  remove {} parts */
1272   void removeHead(KeyInfo&, int count=0);
1273
1274  public:
1275  LatexInfo(string par, bool isPatternString) : entidx(-1), interval(isPatternString) {
1276     interval.par = par;
1277     buildKeys(isPatternString);
1278     entries = vector<KeyInfo>();
1279     buildEntries(isPatternString);
1280   };
1281   int getFirstKey() {
1282     entidx = 0;
1283     if (entries.empty()) {
1284       return (-1);
1285     }
1286     return 0;
1287   };
1288   int getNextKey() {
1289     entidx++;
1290     if (int(entries.size()) > entidx) {
1291       return entidx;
1292     }
1293     else {
1294       return (-1);
1295     }
1296   };
1297   bool setNextKey(int idx) {
1298     if ((idx == entidx) && (entidx >= 0)) {
1299       entidx--;
1300       return true;
1301     }
1302     else
1303       return false;
1304   };
1305   int find(int start, KeyInfo::KeyType keytype) {
1306     if (start < 0)
1307       return (-1);
1308     int tmpIdx = start;
1309     while (tmpIdx < int(entries.size())) {
1310       if (entries[tmpIdx].keytype == keytype)
1311         return tmpIdx;
1312       tmpIdx++;
1313     }
1314     return(-1);
1315   };
1316   int process(ostringstream &os, KeyInfo &actual);
1317   int dispatch(ostringstream &os, int previousStart, KeyInfo &actual);
1318   // string show(int lastpos) { return interval.show(lastpos);};
1319   int nextNotIgnored(int start) { return interval.nextNotIgnored(start);};
1320   KeyInfo &getKeyInfo(int keyinfo) {
1321     static KeyInfo invalidInfo = KeyInfo();
1322     if ((keyinfo < 0) || ( keyinfo >= int(entries.size())))
1323       return invalidInfo;
1324     else
1325       return entries[keyinfo];
1326   };
1327   void setForDefaultLang(int upTo) {interval.setForDefaultLang(upTo);};
1328   void addIntervall(int low, int up) { interval.addIntervall(low, up); };
1329 };
1330
1331
1332 int Intervall::findclosing(int start, int end, char up = '{', char down = '}')
1333 {
1334   int skip = 0;
1335   int depth = 0;
1336   for (int i = start; i < end; i += 1 + skip) {
1337     char c;
1338     c = par[i];
1339     skip = 0;
1340     if (c == '\\') skip = 1;
1341     else if (c == up) {
1342       depth++;
1343     }
1344     else if (c == down) {
1345       if (depth == 0) return i;
1346       --depth;
1347     }
1348   }
1349   return end;
1350 }
1351
1352 class MathInfo {
1353   class MathEntry {
1354   public:
1355     string wait;
1356     size_t mathEnd;
1357     size_t mathStart;
1358     size_t mathSize;
1359   };
1360   size_t actualIdx;
1361   vector<MathEntry> entries;
1362  public:
1363   MathInfo() {
1364     actualIdx = 0;
1365   }
1366   void insert(string wait, size_t start, size_t end) {
1367     MathEntry m = MathEntry();
1368     m.wait = wait;
1369     m.mathStart = start;
1370     m.mathEnd = end;
1371     m.mathSize = end - start;
1372     entries.push_back(m);
1373   }
1374   bool empty() { return entries.empty(); };
1375   size_t getEndPos() {
1376     if (entries.empty() || (actualIdx >= entries.size())) {
1377       return 0;
1378     }
1379     return entries[actualIdx].mathEnd;
1380   }
1381   size_t getStartPos() {
1382     if (entries.empty() || (actualIdx >= entries.size())) {
1383       return 100000;                    /*  definitely enough? */
1384     }
1385     return entries[actualIdx].mathStart;
1386   }
1387   size_t getFirstPos() {
1388     actualIdx = 0;
1389     return getStartPos();
1390   }
1391   size_t getSize() {
1392     if (entries.empty() || (actualIdx >= entries.size())) {
1393       return size_t(0);
1394     }
1395     return entries[actualIdx].mathSize;
1396   }
1397   void incrEntry() { actualIdx++; };
1398 };
1399
1400 void LatexInfo::buildEntries(bool isPatternString)
1401 {
1402   static regex const rmath("\\$|\\\\\\[|\\\\\\]|\\\\(begin|end)\\{((eqnarray|equation|flalign|gather|multline|align|alignat)\\*?)\\}");
1403   static regex const rkeys("\\$|\\\\\\[|\\\\\\]|\\\\((([a-zA-Z]+\\*?)(\\{([a-z]+\\*?)\\}|=[0-9]+[a-z]+)?))");
1404   static bool disableLanguageOverride = false;
1405   smatch sub, submath;
1406   bool evaluatingRegexp = false;
1407   MathInfo mi;
1408   bool evaluatingMath = false;
1409   bool evaluatingCode = false;
1410   size_t codeEnd = 0;
1411   bool evaluatingOptional = false;
1412   size_t optionalEnd = 0;
1413   int codeStart = -1;
1414   KeyInfo found;
1415   bool math_end_waiting = false;
1416   size_t math_pos = 10000;
1417   string math_end;
1418
1419   for (sregex_iterator itmath(interval.par.begin(), interval.par.end(), rmath), end; itmath != end; ++itmath) {
1420     submath = *itmath;
1421     if (math_end_waiting) {
1422       size_t pos = submath.position(size_t(0));
1423       if ((math_end == "$") &&
1424           (submath.str(0) == "$") &&
1425           (interval.par[pos-1] != '\\')) {
1426         mi.insert("$", math_pos, pos + 1);
1427         math_end_waiting = false;
1428       }
1429       else if ((math_end == "\\]") &&
1430                (submath.str(0) == "\\]")) {
1431         mi.insert("\\]", math_pos, pos + 2);
1432         math_end_waiting = false;
1433       }
1434       else if ((submath.str(1).compare("end") == 0) &&
1435           (submath.str(2).compare(math_end) == 0)) {
1436         mi.insert(math_end, math_pos, pos + submath.str(0).length());
1437         math_end_waiting = false;
1438       }
1439       else
1440         continue;
1441     }
1442     else {
1443       if (submath.str(1).compare("begin") == 0) {
1444         math_end_waiting = true;
1445         math_end = submath.str(2);
1446         math_pos = submath.position(size_t(0));
1447       }
1448       else if (submath.str(0).compare("\\[") == 0) {
1449         math_end_waiting = true;
1450         math_end = "\\]";
1451         math_pos = submath.position(size_t(0));
1452       }
1453       else if (submath.str(0) == "$") {
1454         size_t pos = submath.position(size_t(0));
1455         if ((pos == 0) || (interval.par[pos-1] != '\\')) {
1456           math_end_waiting = true;
1457           math_end = "$";
1458           math_pos = pos;
1459         }
1460       }
1461     }
1462   }
1463   // Ignore language if there is math somewhere in pattern-string
1464   if (isPatternString) {
1465     if (! mi.empty()) {
1466       // Disable language
1467       keys["foreignlanguage"].disabled = true;
1468       disableLanguageOverride = true;
1469     }
1470     else
1471       disableLanguageOverride = false;
1472   }
1473   else {
1474     if (disableLanguageOverride) {
1475       keys["foreignlanguage"].disabled = true;
1476     }
1477   }
1478   math_pos = mi.getFirstPos();
1479   for (sregex_iterator it(interval.par.begin(), interval.par.end(), rkeys), end; it != end; ++it) {
1480     sub = *it;
1481     string key = sub.str(3);
1482     if (key == "") {
1483       if (sub.str(0)[0] == '\\')
1484         key = sub.str(0)[1];
1485       else {
1486         key = sub.str(0);
1487         if (key == "$") {
1488           size_t k_pos = sub.position(size_t(0));
1489           if ((k_pos > 0) && (interval.par[k_pos - 1] == '\\')) {
1490             // Escaped '$', ignoring
1491             continue;
1492           }
1493         }
1494       }
1495     };
1496     if (evaluatingRegexp) {
1497       if (sub.str(1).compare("endregexp") == 0) {
1498         evaluatingRegexp = false;
1499         // found._tokenstart already set
1500         found._dataEnd = sub.position(size_t(0)) + 13;
1501         found._dataStart = found._dataEnd;
1502         found._tokensize = found._dataEnd - found._tokenstart;
1503         found.parenthesiscount = 0;
1504       }
1505     }
1506     else {
1507       if (evaluatingMath) {
1508         if (size_t(sub.position(size_t(0))) < mi.getEndPos())
1509           continue;
1510         evaluatingMath = false;
1511         mi.incrEntry();
1512         math_pos = mi.getStartPos();
1513       }
1514       if (keys.find(key) == keys.end()) {
1515         LYXERR(Debug::FIND, "Found unknown key " << sub.str(0));
1516         continue;
1517       }
1518       found = keys[key];
1519       if (key.compare("regexp") == 0) {
1520         evaluatingRegexp = true;
1521         found._tokenstart = sub.position(size_t(0));
1522         found._tokensize = 0;
1523         continue;
1524       }
1525     }
1526     // Handle the other params of key
1527     if (found.keytype == KeyInfo::isIgnored)
1528       continue;
1529     else if (found.keytype == KeyInfo::isMath) {
1530       if (size_t(sub.position(size_t(0))) == math_pos) {
1531         found = keys[key];
1532         found._tokenstart = sub.position(size_t(0));
1533         found._tokensize = mi.getSize();
1534         found._dataEnd = found._tokenstart + found._tokensize;
1535         found._dataStart = found._dataEnd;
1536         found.parenthesiscount = 0;
1537         evaluatingMath = true;
1538       }
1539       else {
1540         // begin|end of unknown env, discard
1541         // First handle tables
1542         // longtable|tabular
1543         bool discardComment;
1544         found = keys[key];
1545         found.keytype = KeyInfo::doRemove;
1546         if ((sub.str(5).compare("longtable") == 0) ||
1547             (sub.str(5).compare("tabular") == 0)) {
1548           discardComment = true;        /* '%' */
1549         }
1550         else {
1551           discardComment = false;
1552           if (sub.str(5).compare("multicols") == 0)
1553             found.keytype = KeyInfo::removeWithArg;
1554         }
1555         // discard spaces before pos(0)
1556         int pos = sub.position(size_t(0));
1557         int count;
1558         for (count = 0; pos - count > 0; count++) {
1559           char c = interval.par[pos-count-1];
1560           if (discardComment) {
1561             if ((c != ' ') && (c != '%'))
1562               break;
1563           }
1564           else if (c != ' ')
1565             break;
1566         }
1567         found._tokenstart = pos - count;
1568         if (sub.str(1).compare(0, 5, "begin") == 0) {
1569           size_t pos1 = pos + sub.str(0).length();
1570           if (sub.str(5).compare("cjk") == 0) {
1571             pos1 = interval.findclosing(pos1+1, interval.par.length()) + 1;
1572             if ((interval.par[pos1] == '{') && (interval.par[pos1+1] == '}'))
1573               pos1 += 2;
1574             found.keytype = KeyInfo::isMain;
1575             found._dataStart = pos1;
1576             found._dataEnd = interval.par.length();
1577             found.disabled = keys["foreignlanguage"].disabled;
1578             found.used = keys["foreignlanguage"].used;
1579             found._tokensize = pos1 - found._tokenstart;
1580             found.head = interval.par.substr(found._tokenstart, found._tokensize);
1581           }
1582           else {
1583             if (interval.par[pos1] == '[') {
1584               pos1 = interval.findclosing(pos1+1, interval.par.length(), '[', ']')+1;
1585             }
1586             if (interval.par[pos1] == '{') {
1587               found._dataEnd = interval.findclosing(pos1+1, interval.par.length()) + 1;
1588             }
1589             else {
1590               found._dataEnd = pos1;
1591             }
1592             found._dataStart = found._dataEnd;
1593             found._tokensize = count + found._dataEnd - pos;
1594             found.parenthesiscount = 0;
1595             found.disabled = true;
1596           }
1597         }
1598         else {
1599           // Handle "\end{...}"
1600           found._dataStart = pos + sub.str(0).length();
1601           found._dataEnd = found._dataStart;
1602           found._tokensize = count + found._dataEnd - pos;
1603           found.parenthesiscount = 0;
1604           found.disabled = true;
1605         }
1606       }
1607     }
1608     else if (found.keytype != KeyInfo::isRegex) {
1609       found._tokenstart = sub.position(size_t(0));
1610       if (found.parenthesiscount == 0) {
1611         // Probably to be discarded
1612         size_t following_pos = sub.position(size_t(0)) + sub.str(3).length() + 1;
1613         char following = interval.par[following_pos];
1614         if (following == ' ')
1615           found.head = "\\" + sub.str(3) + " ";
1616         else if (following == '=') {
1617           // like \uldepth=1000pt
1618           found.head = sub.str(0);
1619         }
1620         else
1621           found.head = "\\" + key;
1622         found._tokensize = found.head.length();
1623         found._dataEnd = found._tokenstart + found._tokensize;
1624         found._dataStart = found._dataEnd;
1625       }
1626       else {
1627         int params = found._tokenstart + key.length() + 1;
1628         if (evaluatingOptional) {
1629           if (size_t(found._tokenstart) > optionalEnd) {
1630             evaluatingOptional = false;
1631           }
1632           else {
1633             found.disabled = true;
1634           }
1635         }
1636         if (interval.par[params] == '[') {
1637           // discard optional parameters
1638           int optend = interval.findclosing(params+1, interval.par.length(), '[', ']') + 1;
1639           key += interval.par.substr(params, optend-params);
1640           evaluatingOptional = true;
1641           optionalEnd = optend;
1642         }
1643         if (found.parenthesiscount == 1) {
1644           found.head = "\\" + key + "{";
1645         }
1646         else if (found.parenthesiscount == 2) {
1647           found.head = sub.str(0) + "{";
1648         }
1649         found._tokensize = found.head.length();
1650         found._dataStart = found._tokenstart + found.head.length();
1651         size_t endpos = interval.findclosing(found._dataStart, interval.par.length());
1652         if (found.keytype == KeyInfo::noMain) {
1653           evaluatingCode = true;
1654           codeEnd = endpos;
1655           codeStart = found._dataStart;
1656         }
1657         else if (evaluatingCode) {
1658           if (size_t(found._dataStart) > codeEnd)
1659             evaluatingCode = false;
1660           else if (found.keytype == KeyInfo::isMain) {
1661             // Disable this key, treate it as standard
1662             found.keytype = KeyInfo::isStandard;
1663             found.disabled = true;
1664             if ((codeEnd == interval.par.length()) &&
1665                 (found._tokenstart == codeStart)) {
1666               // trickery, because the code inset starts
1667               // with \selectlanguage ...
1668               codeEnd = endpos;
1669               if (entries.size() > 1) {
1670                 entries[entries.size()-1]._dataEnd = codeEnd;
1671               }
1672             }
1673           }
1674         }
1675         if ((endpos == interval.par.length()) &&
1676             (found.keytype == KeyInfo::doRemove)) {
1677           // Missing closing => error in latex-input?
1678           // therefore do not delete remaining data
1679           found._dataStart -= 1;
1680           found._dataEnd = found._dataStart;
1681         }
1682         else
1683           found._dataEnd = endpos;
1684       }
1685       if (isPatternString) {
1686         keys[key].used = true;
1687       }
1688     }
1689     entries.push_back(found);
1690   }
1691 }
1692
1693 void LatexInfo::makeKey(const string &keysstring, KeyInfo keyI, bool isPatternString)
1694 {
1695   stringstream s(keysstring);
1696   string key;
1697   const char delim = '|';
1698   while (getline(s, key, delim)) {
1699     KeyInfo keyII(keyI);
1700     if (isPatternString) {
1701       keyII.used = false;
1702     }
1703     else if ( !keys[key].used)
1704       keyII.disabled = true;
1705     keys[key] = keyII;
1706   }
1707 }
1708
1709 void LatexInfo::buildKeys(bool isPatternString)
1710 {
1711
1712   static bool keysBuilt = false;
1713   if (keysBuilt && !isPatternString) return;
1714
1715   // Known standard keys with 1 parameter.
1716   // Split is done, if not at start of region
1717   makeKey("textsf|textss|texttt", KeyInfo(KeyInfo::isStandard, 1, ignoreFormats.getFamily()), isPatternString);
1718   makeKey("textbf",               KeyInfo(KeyInfo::isStandard, 1, ignoreFormats.getSeries()), isPatternString);
1719   makeKey("textit|textsc|textsl", KeyInfo(KeyInfo::isStandard, 1, ignoreFormats.getShape()), isPatternString);
1720   makeKey("uuline|uline|uwave",   KeyInfo(KeyInfo::isStandard, 1, ignoreFormats.getUnderline()), isPatternString);
1721   makeKey("emph|noun",            KeyInfo(KeyInfo::isStandard, 1, ignoreFormats.getMarkUp()), isPatternString);
1722   makeKey("sout|xout",            KeyInfo(KeyInfo::isStandard, 1, ignoreFormats.getStrikeOut()), isPatternString);
1723
1724   makeKey("section|subsection|subsubsection|paragraph|subparagraph|minisec",
1725           KeyInfo(KeyInfo::isSectioning, 1, ignoreFormats.getSectioning()), isPatternString);
1726   makeKey("section*|subsection*|subsubsection*|paragraph*",
1727           KeyInfo(KeyInfo::isSectioning, 1, ignoreFormats.getSectioning()), isPatternString);
1728   makeKey("part|part*|chapter|chapter*", KeyInfo(KeyInfo::isSectioning, 1, ignoreFormats.getSectioning()), isPatternString);
1729   makeKey("title|subtitle|author|subject|publishers|dedication|uppertitleback|lowertitleback|extratitle|lyxaddress|lyxrightaddress", KeyInfo(KeyInfo::isSectioning, 1, ignoreFormats.getFrontMatter()), isPatternString);
1730   // Regex
1731   makeKey("regexp", KeyInfo(KeyInfo::isRegex, 1, false), isPatternString);
1732
1733   // Split is done, if not at start of region
1734   makeKey("textcolor", KeyInfo(KeyInfo::isStandard, 2, ignoreFormats.getColor()), isPatternString);
1735
1736   // Split is done always.
1737   makeKey("foreignlanguage", KeyInfo(KeyInfo::isMain, 2, ignoreFormats.getLanguage()), isPatternString);
1738
1739   // Know charaters
1740   // No split
1741   makeKey("backslash|textbackslash|slash",  KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
1742   makeKey("textasciicircum|textasciitilde", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
1743   makeKey("textasciiacute|texemdash",       KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
1744   makeKey("dots|ldots",                     KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
1745   // Spaces
1746   makeKey("quad|qquad|hfill|dotfill",               KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
1747   makeKey("textvisiblespace|nobreakspace",          KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
1748   makeKey("negthickspace|negmedspace|negthinspace", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
1749   // Skip
1750   makeKey("enskip|smallskip|medskip|bigskip|vfill", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
1751   // Custom space/skip, remove the content (== length value)
1752   makeKey("vspace|hspace|mspace", KeyInfo(KeyInfo::noContent, 1, false), isPatternString);
1753   // Found in fr/UserGuide.lyx
1754   makeKey("og|fg", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
1755   // quotes
1756   makeKey("textquotedbl|quotesinglbase|lyxarrow", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
1757   makeKey("textquotedblleft|textquotedblright", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
1758   // Known macros to remove (including their parameter)
1759   // No split
1760   makeKey("inputencoding|shortcut|label|ref|index", KeyInfo(KeyInfo::doRemove, 1, false), isPatternString);
1761
1762   // handle like standard keys with 1 parameter.
1763   makeKey("url|href|vref|thanks", KeyInfo(KeyInfo::isStandard, 1, false), isPatternString);
1764
1765   // Macros to remove, but let the parameter survive
1766   // No split
1767   makeKey("menuitem|textmd|textrm", KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
1768
1769   // Remove language spec from content of these insets
1770   makeKey("code", KeyInfo(KeyInfo::noMain, 1, false), isPatternString);
1771
1772   // Same effect as previous, parameter will survive (because there is no one anyway)
1773   // No split
1774   makeKey("noindent|textcompwordmark", KeyInfo(KeyInfo::isStandard, 0, true), isPatternString);
1775   // Remove table decorations
1776   makeKey("hline|tabularnewline|toprule|bottomrule|midrule", KeyInfo(KeyInfo::doRemove, 0, true), isPatternString);
1777   // Discard shape-header
1778   makeKey("circlepar|diamondpar|heartpar|nutpar",  KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
1779   makeKey("trianglerightpar|hexagonpar|starpar",   KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
1780   makeKey("triangleuppar|triangledownpar|droppar", KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
1781   makeKey("triangleleftpar|shapepar|dropuppar",    KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
1782   makeKey("hphantom|footnote",    KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
1783   // like ('tiny{}' or '\tiny ' ... )
1784   makeKey("footnotesize|tiny|scriptsize|small|large|Large|LARGE|huge|Huge", KeyInfo(KeyInfo::isSize, 0, false), isPatternString);
1785
1786   // Survives, like known character
1787   makeKey("lyx|latex|latexe|tex", KeyInfo(KeyInfo::isIgnored, 0, false), isPatternString);
1788   makeKey("item", KeyInfo(KeyInfo::isList, 1, false), isPatternString);
1789
1790   makeKey("begin|end", KeyInfo(KeyInfo::isMath, 1, false), isPatternString);
1791   makeKey("[|]", KeyInfo(KeyInfo::isMath, 1, false), isPatternString);
1792   makeKey("$", KeyInfo(KeyInfo::isMath, 1, false), isPatternString);
1793
1794   makeKey("par|uldepth|ULdepth|protect|nobreakdash|medskip", KeyInfo(KeyInfo::isStandard, 0, true), isPatternString);
1795   // Remove RTL/LTR marker
1796   makeKey("l|r|textlr|textfr|textar|beginl|endl", KeyInfo(KeyInfo::isStandard, 0, true), isPatternString);
1797   makeKey("lettrine", KeyInfo(KeyInfo::cleanToStart, 0, true), isPatternString);
1798   makeKey("lyxslide", KeyInfo(KeyInfo::isSectioning, 1, true), isPatternString);
1799   makeKey("endarguments", KeyInfo(KeyInfo::endArguments, 0, true), isPatternString);
1800   makeKey("twocolumn", KeyInfo(KeyInfo::removeWithArg, 2, true), isPatternString);
1801   makeKey("lyxend", KeyInfo(KeyInfo::isStandard, 0, true), isPatternString);
1802   if (isPatternString) {
1803     // Allow the first searched string to rebuild the keys too
1804     keysBuilt = false;
1805   }
1806   else {
1807     // no need to rebuild again
1808     keysBuilt = true;
1809   }
1810 }
1811
1812 /*
1813  * Keep the list of actual opened parentheses actual
1814  * (e.g. depth == 4 means there are 4 '{' not processed yet)
1815  */
1816 void Intervall::handleParentheses(int lastpos, bool closingAllowed)
1817 {
1818   int skip = 0;
1819   for (int i = depts[actualdeptindex]; i < lastpos; i+= 1 + skip) {
1820     char c;
1821     c = par[i];
1822     skip = 0;
1823     if (c == '\\') skip = 1;
1824     else if (c == '{') {
1825       handleOpenP(i);
1826     }
1827     else if (c == '}') {
1828       handleCloseP(i, closingAllowed);
1829     }
1830   }
1831 }
1832
1833 #if (0)
1834 string Intervall::show(int lastpos)
1835 {
1836   int idx = 0;                          /* int intervalls */
1837   int count = 0;
1838   string s;
1839   int i = 0;
1840   for (idx = 0; idx <= ignoreidx; idx++) {
1841     while (i < lastpos) {
1842       int printsize;
1843       if (i <= borders[idx].low) {
1844         if (borders[idx].low > lastpos)
1845           printsize = lastpos - i;
1846         else
1847           printsize = borders[idx].low - i;
1848         s += par.substr(i, printsize);
1849         i += printsize;
1850         if (i >= borders[idx].low)
1851           i = borders[idx].upper;
1852       }
1853       else {
1854         i = borders[idx].upper;
1855         break;
1856       }
1857     }
1858   }
1859   if (lastpos > i) {
1860     s += par.substr(i, lastpos-i);
1861   }
1862   return (s);
1863 }
1864 #endif
1865
1866 void Intervall::output(ostringstream &os, int lastpos)
1867 {
1868   // get number of chars to output
1869   int idx = 0;                          /* int intervalls */
1870   int i = 0;
1871   for (idx = 0; idx <= ignoreidx; idx++) {
1872     if (i < lastpos) {
1873       if (i <= borders[idx].low) {
1874         int printsize;
1875         if (borders[idx].low > lastpos)
1876           printsize = lastpos - i;
1877         else
1878           printsize = borders[idx].low - i;
1879         os << par.substr(i, printsize);
1880         i += printsize;
1881         handleParentheses(i, false);
1882         if (i >= borders[idx].low)
1883           i = borders[idx].upper;
1884       }
1885       else {
1886         i = borders[idx].upper;
1887       }
1888     }
1889     else
1890       break;
1891   }
1892   if (lastpos > i) {
1893     os << par.substr(i, lastpos-i);
1894   }
1895   handleParentheses(lastpos, false);
1896   for (int i = actualdeptindex; i > 0; --i) {
1897     os << "}";
1898   }
1899   if (! isPatternString)
1900     os << "\n";
1901   handleParentheses(lastpos, true); /* extra closings '}' allowed here */
1902 }
1903
1904 void LatexInfo::processRegion(int start, int region_end)
1905 {
1906   while (start < region_end) {          /* Let {[} and {]} survive */
1907     if ((interval.par[start] == '{') &&
1908         (interval.par[start+1] != ']') &&
1909         (interval.par[start+1] != '[')) {
1910       // Closing is allowed past the region
1911       int closing = interval.findclosing(start+1, interval.par.length());
1912       interval.addIntervall(start, start+1);
1913       interval.addIntervall(closing, closing+1);
1914     }
1915     start = interval.nextNotIgnored(start+1);
1916   }
1917 }
1918
1919 void LatexInfo::removeHead(KeyInfo &actual, int count)
1920 {
1921   if (actual.parenthesiscount == 0) {
1922     // "{\tiny{} ...}" ==> "{{} ...}"
1923     interval.addIntervall(actual._tokenstart-count, actual._tokenstart + actual._tokensize);
1924   }
1925   else {
1926     // Remove header hull, that is "\url{abcd}" ==> "abcd"
1927     interval.addIntervall(actual._tokenstart - count, actual._dataStart);
1928     interval.addIntervall(actual._dataEnd, actual._dataEnd+1);
1929   }
1930 }
1931
1932 int LatexInfo::dispatch(ostringstream &os, int previousStart, KeyInfo &actual)
1933 {
1934   int nextKeyIdx = 0;
1935   switch (actual.keytype)
1936   {
1937     case KeyInfo::cleanToStart: {
1938       actual._dataEnd = actual._dataStart;
1939       nextKeyIdx = getNextKey();
1940       // Search for end of arguments
1941       int tmpIdx = find(nextKeyIdx, KeyInfo::endArguments);
1942       if (tmpIdx > 0) {
1943         for (int i = nextKeyIdx; i <= tmpIdx; i++) {
1944           entries[i].disabled = true;
1945         }
1946         actual._dataEnd = entries[tmpIdx]._dataEnd;
1947       }
1948       while (interval.par[actual._dataEnd] == ' ')
1949         actual._dataEnd++;
1950       interval.addIntervall(0, actual._dataEnd+1);
1951       interval.actualdeptindex = 0;
1952       interval.depts[0] = actual._dataEnd+1;
1953       interval.closes[0] = -1;
1954       break;
1955     }
1956     case KeyInfo::noContent: {          /* char like "\hspace{2cm}" */
1957       interval.addIntervall(actual._dataStart, actual._dataEnd);
1958     }
1959       // fall through
1960     case KeyInfo::isChar: {
1961       nextKeyIdx = getNextKey();
1962       break;
1963     }
1964     case KeyInfo::isSize: {
1965       if (actual.disabled || (interval.par[actual._dataStart] != '{') || (interval.par[actual._dataStart-1] == ' ')) {
1966         processRegion(actual._dataEnd, actual._dataEnd+1); /* remove possibly following {} */
1967         interval.addIntervall(actual._tokenstart, actual._dataEnd+1);
1968         nextKeyIdx = getNextKey();
1969       } else {
1970         // Here _dataStart points to '{', so correct it
1971         actual._dataStart += 1;
1972         actual._tokensize += 1;
1973         actual.parenthesiscount = 1;
1974         if (interval.par[actual._dataStart] == '}') {
1975           // Determine the end if used like '{\tiny{}...}'
1976           actual._dataEnd = interval.findclosing(actual._dataStart+1, interval.par.length()) + 1;
1977           interval.addIntervall(actual._dataStart, actual._dataStart+1);
1978         }
1979         else {
1980           // Determine the end if used like '\tiny{...}'
1981           actual._dataEnd = interval.findclosing(actual._dataStart, interval.par.length()) + 1;
1982         }
1983         // Split on this key if not at start
1984         int start = interval.nextNotIgnored(previousStart);
1985         if (start < actual._tokenstart) {
1986           interval.output(os, actual._tokenstart);
1987           interval.addIntervall(start, actual._tokenstart);
1988         }
1989         // discard entry if at end of actual
1990         nextKeyIdx = process(os, actual);
1991       }
1992       break;
1993     }
1994     case KeyInfo::endArguments:
1995       removeHead(actual);
1996       processRegion(actual._dataStart, actual._dataStart+1);
1997       nextKeyIdx = getNextKey();
1998       break;
1999     case KeyInfo::noMain:
2000       // fall through
2001     case KeyInfo::isStandard: {
2002       if (actual.disabled) {
2003         removeHead(actual);
2004         processRegion(actual._dataStart, actual._dataStart+1);
2005         nextKeyIdx = getNextKey();
2006       } else {
2007         // Split on this key if not at datastart of calling entry
2008         int start = interval.nextNotIgnored(previousStart);
2009         if (start < actual._tokenstart) {
2010           interval.output(os, actual._tokenstart);
2011           interval.addIntervall(start, actual._tokenstart);
2012         }
2013         // discard entry if at end of actual
2014         nextKeyIdx = process(os, actual);
2015       }
2016       break;
2017     }
2018     case KeyInfo::removeWithArg: {
2019       nextKeyIdx = getNextKey();
2020       // Search for end of arguments
2021       int tmpIdx = find(nextKeyIdx, KeyInfo::endArguments);
2022       if (tmpIdx > 0) {
2023         for (int i = nextKeyIdx; i <= tmpIdx; i++) {
2024           entries[i].disabled = true;
2025         }
2026         actual._dataEnd = entries[tmpIdx]._dataEnd;
2027       }
2028       interval.addIntervall(actual._tokenstart, actual._dataEnd+1);
2029       break;
2030     }
2031     case KeyInfo::doRemove: {
2032       // Remove the key with all parameters and following spaces
2033       size_t pos;
2034       for (pos = actual._dataEnd+1; pos < interval.par.length(); pos++) {
2035         if ((interval.par[pos] != ' ') && (interval.par[pos] != '%'))
2036           break;
2037       }
2038       interval.addIntervall(actual._tokenstart, pos);
2039       nextKeyIdx = getNextKey();
2040       break;
2041     }
2042     case KeyInfo::isList: {
2043       // Discard space before _tokenstart
2044       int count;
2045       for (count = 0; count < actual._tokenstart; count++) {
2046         if (interval.par[actual._tokenstart-count-1] != ' ')
2047           break;
2048       }
2049       if (actual.disabled) {
2050         interval.addIntervall(actual._tokenstart-count, actual._dataEnd+1);
2051       }
2052       else {
2053         interval.addIntervall(actual._tokenstart-count, actual._tokenstart);
2054       }
2055       // Discard extra parentheses '[]'
2056       if (interval.par[actual._dataEnd+1] == '[') {
2057         int posdown = interval.findclosing(actual._dataEnd+2, interval.par.length(), '[', ']');
2058         if ((interval.par[actual._dataEnd+2] == '{') &&
2059             (interval.par[posdown-1] == '}')) {
2060           interval.addIntervall(actual._dataEnd+1,actual._dataEnd+3);
2061           interval.addIntervall(posdown-1, posdown+1);
2062         }
2063         else {
2064           interval.addIntervall(actual._dataEnd+1, actual._dataEnd+2);
2065           interval.addIntervall(posdown, posdown+1);
2066         }
2067         int blk = interval.nextNotIgnored(actual._dataEnd+1);
2068         if (blk > posdown) {
2069           // Discard at most 1 space after empty item
2070           int count;
2071           for (count = 0; count < 1; count++) {
2072             if (interval.par[blk+count] != ' ')
2073               break;
2074           }
2075           if (count > 0)
2076             interval.addIntervall(blk, blk+count);
2077         }
2078       }
2079       nextKeyIdx = getNextKey();
2080       break;
2081     }
2082     case KeyInfo::isSectioning: {
2083       // Discard spaces before _tokenstart
2084       int count;
2085       int val = actual._tokenstart;
2086       for (count = 0; count < actual._tokenstart;) {
2087         val = interval.previousNotIgnored(val-1);
2088         if (interval.par[val] != ' ')
2089           break;
2090         else {
2091           count = actual._tokenstart - val;
2092         }
2093       }
2094       if (actual.disabled) {
2095         removeHead(actual, count);
2096         nextKeyIdx = getNextKey();
2097       } else {
2098         interval.addIntervall(actual._tokenstart-count, actual._tokenstart);
2099         nextKeyIdx = process(os, actual);
2100       }
2101       break;
2102     }
2103     case KeyInfo::isMath: {
2104       // Same as regex, use the content unchanged
2105       nextKeyIdx = getNextKey();
2106       break;
2107     }
2108     case KeyInfo::isRegex: {
2109       // DO NOT SPLIT ON REGEX
2110       // Do not disable
2111       nextKeyIdx = getNextKey();
2112       break;
2113     }
2114     case KeyInfo::isIgnored: {
2115       // Treat like a character for now
2116       nextKeyIdx = getNextKey();
2117       break;
2118     }
2119     case KeyInfo::isMain: {
2120       if (interval.par.substr(actual._dataStart, 2) == "% ")
2121         interval.addIntervall(actual._dataStart, actual._dataStart+2);
2122       if (actual.disabled) {
2123         removeHead(actual);
2124         if ((interval.par.substr(actual._dataStart, 3) == " \\[") ||
2125             (interval.par.substr(actual._dataStart, 8) == " \\begin{")) {
2126           // Discard also the space before math-equation
2127           interval.addIntervall(actual._dataStart, actual._dataStart+1);
2128         }
2129         nextKeyIdx = getNextKey();
2130         // interval.resetOpenedP(actual._dataStart-1);
2131       }
2132       else {
2133         if (actual._tokenstart == 0) {
2134           // for the first (and maybe dummy) language
2135           interval.setForDefaultLang(actual._tokenstart + actual._tokensize);
2136         }
2137         interval.resetOpenedP(actual._dataStart-1);
2138       }
2139       break;
2140     }
2141     case KeyInfo::invalid:
2142       // This cannot happen, already handled
2143       // fall through
2144     default: {
2145       // LYXERR0("Unhandled keytype");
2146       nextKeyIdx = getNextKey();
2147       break;
2148     }
2149   }
2150   return nextKeyIdx;
2151 }
2152
2153 int LatexInfo::process(ostringstream &os, KeyInfo &actual )
2154 {
2155   int end = interval.nextNotIgnored(actual._dataEnd);
2156   int oldStart = actual._dataStart;
2157   int nextKeyIdx = getNextKey();
2158   while (true) {
2159     if ((nextKeyIdx < 0) ||
2160         (entries[nextKeyIdx]._tokenstart >= actual._dataEnd) ||
2161         (entries[nextKeyIdx].keytype == KeyInfo::invalid)) {
2162       if (oldStart <= end) {
2163         processRegion(oldStart, end);
2164         oldStart = end+1;
2165       }
2166       break;
2167     }
2168     KeyInfo &nextKey = getKeyInfo(nextKeyIdx);
2169
2170     if ((nextKey.keytype == KeyInfo::isMain) && !nextKey.disabled) {
2171       (void) dispatch(os, actual._dataStart, nextKey);
2172       end = nextKey._tokenstart;
2173       break;
2174     }
2175     processRegion(oldStart, nextKey._tokenstart);
2176     nextKeyIdx = dispatch(os, actual._dataStart, nextKey);
2177
2178     oldStart = nextKey._dataEnd+1;
2179   }
2180   // now nextKey is either invalid or is outside of actual._dataEnd
2181   // output the remaining and discard myself
2182   if (oldStart <= end) {
2183     processRegion(oldStart, end);
2184   }
2185   if (interval.par[end] == '}') {
2186     end += 1;
2187     // This is the normal case.
2188     // But if using the firstlanguage, the closing may be missing
2189   }
2190   // get minimum of 'end' and  'actual._dataEnd' in case that the nextKey.keytype was 'KeyInfo::isMain'
2191   int output_end;
2192   if (actual._dataEnd < end)
2193     output_end = interval.nextNotIgnored(actual._dataEnd);
2194   else
2195     output_end = interval.nextNotIgnored(end);
2196   if ((actual.keytype == KeyInfo::isMain) && actual.disabled) {
2197     interval.addIntervall(actual._tokenstart, actual._tokenstart+actual._tokensize);
2198   }
2199   // Remove possible empty data
2200   int dstart = interval.nextNotIgnored(actual._dataStart);
2201   while ((dstart < output_end) && (interval.par[dstart] == '{')) {
2202     interval.addIntervall(dstart, dstart+1);
2203     int dend = interval.findclosing(dstart+1, output_end);
2204     interval.addIntervall(dend, dend+1);
2205     dstart = interval.nextNotIgnored(dstart+1);
2206   }
2207   if (dstart < output_end)
2208     interval.output(os, output_end);
2209   interval.addIntervall(actual._tokenstart, end);
2210   return nextKeyIdx;
2211 }
2212
2213 string splitOnKnownMacros(string par, bool isPatternString)
2214 {
2215   ostringstream os;
2216   LatexInfo li(par, isPatternString);
2217   // LYXERR0("Berfore split: " << par);
2218   KeyInfo DummyKey = KeyInfo(KeyInfo::KeyType::isMain, 2, true);
2219   DummyKey.head = "";
2220   DummyKey._tokensize = 0;
2221   DummyKey._tokenstart = 0;
2222   DummyKey._dataStart = 0;
2223   DummyKey._dataEnd = par.length();
2224   DummyKey.disabled = true;
2225   int firstkeyIdx = li.getFirstKey();
2226   string s;
2227   if (firstkeyIdx >= 0) {
2228     KeyInfo firstKey = li.getKeyInfo(firstkeyIdx);
2229     int nextkeyIdx;
2230     if ((firstKey.keytype != KeyInfo::isMain) || firstKey.disabled) {
2231       // Use dummy firstKey
2232       firstKey = DummyKey;
2233       (void) li.setNextKey(firstkeyIdx);
2234     }
2235     else {
2236       if (par.substr(firstKey._dataStart, 2) == "% ")
2237         li.addIntervall(firstKey._dataStart, firstKey._dataStart+2);
2238     }
2239     nextkeyIdx = li.process(os, firstKey);
2240     while (nextkeyIdx >= 0) {
2241       // Check for a possible gap between the last
2242       // entry and this one
2243       int datastart = li.nextNotIgnored(firstKey._dataStart);
2244       KeyInfo &nextKey = li.getKeyInfo(nextkeyIdx);
2245       if ((nextKey._tokenstart > datastart)) {
2246         // Handle the gap
2247         firstKey._dataStart = datastart;
2248         firstKey._dataEnd = par.length();
2249         (void) li.setNextKey(nextkeyIdx);
2250         if (firstKey._tokensize > 0) {
2251           // Fake the last opened parenthesis
2252           li.setForDefaultLang(firstKey._tokensize);
2253         }
2254         nextkeyIdx = li.process(os, firstKey);
2255       }
2256       else {
2257         if (nextKey.keytype != KeyInfo::isMain) {
2258           firstKey._dataStart = datastart;
2259           firstKey._dataEnd = nextKey._dataEnd+1;
2260           (void) li.setNextKey(nextkeyIdx);
2261           if (firstKey._tokensize > 0)
2262             li.setForDefaultLang(firstKey._tokensize);
2263           nextkeyIdx = li.process(os, firstKey);
2264         }
2265         else {
2266           nextkeyIdx = li.process(os, nextKey);
2267         }
2268       }
2269     }
2270     // Handle the remaining
2271     firstKey._dataStart = li.nextNotIgnored(firstKey._dataStart);
2272     firstKey._dataEnd = par.length();
2273     // Check if ! empty
2274     if ((firstKey._dataStart < firstKey._dataEnd) &&
2275         (par[firstKey._dataStart] != '}')) {
2276       if (firstKey._tokensize > 0)
2277         li.setForDefaultLang(firstKey._tokensize);
2278       (void) li.process(os, firstKey);
2279     }
2280     s = os.str();
2281     if (s.empty()) {
2282       // return string definitelly impossible to match
2283       s = "\\foreignlanguage{ignore}{ }";
2284     }
2285   }
2286   else
2287     s = par;                            /* no known macros found */
2288   // LYXERR0("After split: " << s);
2289   return s;
2290 }
2291
2292 /*
2293  * Try to unify the language specs in the latexified text.
2294  * Resulting modified string is set to "", if
2295  * the searched tex does not contain all the features in the search pattern
2296  */
2297 static string correctlanguagesetting(string par, bool isPatternString, bool withformat)
2298 {
2299         static Features regex_f;
2300         static int missed = 0;
2301         static bool regex_with_format = false;
2302
2303         int parlen = par.length();
2304
2305         while ((parlen > 0) && (par[parlen-1] == '\n')) {
2306                 parlen--;
2307         }
2308         string result;
2309         if (withformat) {
2310                 // Split the latex input into pieces which
2311                 // can be digested by our search engine
2312                 LYXERR(Debug::FIND, "input: \"" << par << "\"");
2313                 result = splitOnKnownMacros(par, isPatternString);
2314                 LYXERR(Debug::FIND, "After split: \"" << result << "\"");
2315         }
2316         else
2317                 result = par.substr(0, parlen);
2318         if (isPatternString) {
2319                 missed = 0;
2320                 if (withformat) {
2321                         regex_f = identifyFeatures(result);
2322                         string features = "";
2323                         for (auto it = regex_f.cbegin(); it != regex_f.cend(); ++it) {
2324                                 string a = it->first;
2325                                 regex_with_format = true;
2326                                 features += " " + a;
2327                                 // LYXERR0("Identified regex format:" << a);
2328                         }
2329                         LYXERR(Debug::FIND, "Identified Features" << features);
2330
2331                 }
2332         } else if (regex_with_format) {
2333                 Features info = identifyFeatures(result);
2334                 for (auto it = regex_f.cbegin(); it != regex_f.cend(); ++it) {
2335                         string a = it->first;
2336                         bool b = it->second;
2337                         if (b && ! info[a]) {
2338                                 missed++;
2339                                 LYXERR(Debug::FIND, "Missed(" << missed << " " << a <<", srclen = " << parlen );
2340                                 return("");
2341                         }
2342                 }
2343         }
2344         else {
2345                 // LYXERR0("No regex formats");
2346         }
2347         return(result);
2348 }
2349
2350
2351 // Remove trailing closure of math, macros and environments, so to catch parts of them.
2352 static int identifyClosing(string & t)
2353 {
2354         int open_braces = 0;
2355         do {
2356                 LYXERR(Debug::FIND, "identifyClosing(): t now is '" << t << "'");
2357                 if (regex_replace(t, t, "(.*[^\\\\])\\$" REGEX_EOS, "$1"))
2358                         continue;
2359                 if (regex_replace(t, t, "(.*[^\\\\]) \\\\\\]" REGEX_EOS, "$1"))
2360                         continue;
2361                 if (regex_replace(t, t, "(.*[^\\\\]) \\\\end\\{[a-zA-Z_]*\\*?\\}" REGEX_EOS, "$1"))
2362                         continue;
2363                 if (regex_replace(t, t, "(.*[^\\\\])\\}" REGEX_EOS, "$1")) {
2364                         ++open_braces;
2365                         continue;
2366                 }
2367                 break;
2368         } while (true);
2369         return open_braces;
2370 }
2371
2372
2373 MatchStringAdv::MatchStringAdv(lyx::Buffer & buf, FindAndReplaceOptions const & opt)
2374         : p_buf(&buf), p_first_buf(&buf), opt(opt)
2375 {
2376         Buffer & find_buf = *theBufferList().getBuffer(FileName(to_utf8(opt.find_buf_name)), true);
2377         docstring const & ds = stringifySearchBuffer(find_buf, opt);
2378         use_regexp = lyx::to_utf8(ds).find("\\regexp{") != std::string::npos;
2379         // When using regexp, braces are hacked already by escape_for_regex()
2380         par_as_string = normalize(ds, !use_regexp);
2381         open_braces = 0;
2382         close_wildcards = 0;
2383
2384         size_t lead_size = 0;
2385         // correct the language settings
2386         par_as_string = correctlanguagesetting(par_as_string, true, !opt.ignoreformat);
2387         if (opt.ignoreformat) {
2388                 if (!use_regexp) {
2389                         // if par_as_string_nolead were emty,
2390                         // the following call to findAux will always *find* the string
2391                         // in the checked data, and thus always using the slow
2392                         // examining of the current text part.
2393                         par_as_string_nolead = par_as_string;
2394                 }
2395         } else {
2396                 lead_size = identifyLeading(par_as_string);
2397                 LYXERR(Debug::FIND, "Lead_size: " << lead_size);
2398                 lead_as_string = par_as_string.substr(0, lead_size);
2399                 par_as_string_nolead = par_as_string.substr(lead_size, par_as_string.size() - lead_size);
2400         }
2401
2402         if (!use_regexp) {
2403                 open_braces = identifyClosing(par_as_string);
2404                 identifyClosing(par_as_string_nolead);
2405                 LYXERR(Debug::FIND, "Open braces: " << open_braces);
2406                 LYXERR(Debug::FIND, "Built MatchStringAdv object: par_as_string = '" << par_as_string << "'");
2407         } else {
2408                 string lead_as_regexp;
2409                 if (lead_size > 0) {
2410                         // @todo No need to search for \regexp{} insets in leading material
2411                         lead_as_regexp = escape_for_regex(par_as_string.substr(0, lead_size), !opt.ignoreformat);
2412                         par_as_string = par_as_string_nolead;
2413                         LYXERR(Debug::FIND, "lead_as_regexp is '" << lead_as_regexp << "'");
2414                         LYXERR(Debug::FIND, "par_as_string now is '" << par_as_string << "'");
2415                 }
2416                 par_as_string = escape_for_regex(par_as_string, !opt.ignoreformat);
2417                 // Insert (.*?) before trailing closure of math, macros and environments, so to catch parts of them.
2418                 LYXERR(Debug::FIND, "par_as_string now is '" << par_as_string << "'");
2419                 if (
2420                         // Insert .* before trailing '\$' ('$' has been escaped by escape_for_regex)
2421                         regex_replace(par_as_string, par_as_string, "(.*[^\\\\])(\\\\\\$)\\'", "$1(.*?)$2")
2422                         // Insert .* before trailing '\\\]' ('\]' has been escaped by escape_for_regex)
2423                         || regex_replace(par_as_string, par_as_string, "(.*[^\\\\])( \\\\\\\\\\\\\\])\\'", "$1(.*?)$2")
2424                         // Insert .* before trailing '\\end\{...}' ('\end{...}' has been escaped by escape_for_regex)
2425                         || regex_replace(par_as_string, par_as_string,
2426                                          "(.*[^\\\\])( \\\\\\\\end\\\\\\{[a-zA-Z_]*)(\\\\\\*)?(\\\\\\})\\'", "$1(.*?)$2$3$4")
2427                         // Insert .* before trailing '\}' ('}' has been escaped by escape_for_regex)
2428                         || regex_replace(par_as_string, par_as_string, "(.*[^\\\\])(\\\\\\})\\'", "$1(.*?)$2")
2429                         ) {
2430                         ++close_wildcards;
2431                 }
2432                 if (!opt.ignoreformat) {
2433                         // Remove extra '\}' at end
2434                         while ( regex_replace(par_as_string, par_as_string, "(.*)\\\\}$", "$1")) {
2435                                 open_braces++;
2436                         }
2437                         /*
2438                         // save '\.'
2439                         regex_replace(par_as_string, par_as_string, "\\\\\\.", "_xxbdotxx_");
2440                         // handle '.' -> '[^]', replace later as '[^\}\{\\]'
2441                         regex_replace(par_as_string, par_as_string, "\\.", "[^]");
2442                         // replace '[^...]' with '[^...\}\{\\]'
2443                         regex_replace(par_as_string, par_as_string, "\\[\\^([^\\\\\\]]*)\\]", "_xxbrlxx_$1\\}\\{\\\\_xxbrrxx_");
2444                         regex_replace(par_as_string, par_as_string, "_xxbrlxx_", "[^");
2445                         regex_replace(par_as_string, par_as_string, "_xxbrrxx_", "]");
2446                         // restore '\.'
2447                         regex_replace(par_as_string, par_as_string, "_xxbdotxx_", "\\.");
2448                         */
2449                 }
2450                 LYXERR(Debug::FIND, "par_as_string now is '" << par_as_string << "'");
2451                 LYXERR(Debug::FIND, "Open braces: " << open_braces);
2452                 LYXERR(Debug::FIND, "Close .*?  : " << close_wildcards);
2453                 LYXERR(Debug::FIND, "Replaced text (to be used as regex): " << par_as_string);
2454
2455                 // If entered regexp must match at begin of searched string buffer
2456                 // Kornel: Added parentheses to use $1 for size of the leading string
2457                 string regexp_str;
2458                 string regexp2_str;
2459                 {
2460                         // TODO: Adapt '\[12345678]' in par_as_string to acount for the first '()
2461                         // Unfortunately is '\1', '\2', etc not working for strings with extra format
2462                         // so the convert has no effect in that case
2463                         for (int i = 8; i > 0; --i) {
2464                                 string orig = "\\\\" + std::to_string(i);
2465                                 string dest = "\\" + std::to_string(i+1);
2466                                 while (regex_replace(par_as_string, par_as_string, orig, dest));
2467                         }
2468                         regexp_str = "(" + lead_as_regexp + ")" + par_as_string;
2469                         regexp2_str = "(" + lead_as_regexp + ").*?" + par_as_string;
2470                 }
2471                 LYXERR(Debug::FIND, "Setting regexp to : '" << regexp_str << "'");
2472                 regexp = lyx::regex(regexp_str);
2473
2474                 LYXERR(Debug::FIND, "Setting regexp2 to: '" << regexp2_str << "'");
2475                 regexp2 = lyx::regex(regexp2_str);
2476         }
2477 }
2478
2479
2480 // Count number of characters in string
2481 // {]} ==> 1
2482 // \&  ==> 1
2483 // --- ==> 1
2484 // \\[a-zA-Z]+ ==> 1
2485 static int computeSize(string s, int len)
2486 {
2487         if (len == 0)
2488                 return 0;
2489         int skip = 1;
2490         int count = 0;
2491         for (int i = 0; i < len; i += skip, count++) {
2492                 if (s[i] == '\\') {
2493                         skip = 2;
2494                         if (isalpha(s[i+1])) {
2495                                 for (int j = 2;  i+j < len; j++) {
2496                                         if (! isalpha(s[i+j])) {
2497                                                 if (s[i+j] == ' ')
2498                                                         skip++;
2499                                                 else if ((s[i+j] == '{') && s[i+j+1] == '}')
2500                                                         skip += 2;
2501                                                 else if ((s[i+j] == '{') && (i + j + 1 >= len))
2502                                                         skip++;
2503                                                 break;
2504                                         }
2505                                         skip++;
2506                                 }
2507                         }
2508                 }
2509                 else if (s[i] == '{') {
2510                         if (s[i+1] == '}')
2511                                 skip = 2;
2512                         else
2513                                 skip = 3;
2514                 }
2515                 else if (s[i] == '-') {
2516                         if (s[i+1] == '-') {
2517                                 if (s[i+2] == '-')
2518                                         skip = 3;
2519                                 else
2520                                         skip = 2;
2521                         }
2522                         else
2523                                 skip = 1;
2524                 }
2525                 else {
2526                         skip = 1;
2527                 }
2528         }
2529         return count;
2530 }
2531
2532 int MatchStringAdv::findAux(DocIterator const & cur, int len, bool at_begin) const
2533 {
2534         if (at_begin &&
2535                 (opt.restr == FindAndReplaceOptions::R_ONLY_MATHS && !cur.inMathed()) )
2536                 return 0;
2537
2538         docstring docstr = stringifyFromForSearch(opt, cur, len);
2539         string str = normalize(docstr, true);
2540         if (!opt.ignoreformat) {
2541                 str = correctlanguagesetting(str, false, !opt.ignoreformat);
2542         }
2543         if (str.empty()) return(-1);
2544         LYXERR(Debug::FIND, "Matching against     '" << lyx::to_utf8(docstr) << "'");
2545         LYXERR(Debug::FIND, "After normalization: '" << str << "'");
2546
2547         if (use_regexp) {
2548                 LYXERR(Debug::FIND, "Searching in regexp mode: at_begin=" << at_begin);
2549                 regex const *p_regexp;
2550                 regex_constants::match_flag_type flags;
2551                 if (at_begin) {
2552                         flags = regex_constants::match_continuous;
2553                         p_regexp = &regexp;
2554                 } else {
2555                         flags = regex_constants::match_default;
2556                         p_regexp = &regexp2;
2557                 }
2558                 sregex_iterator re_it(str.begin(), str.end(), *p_regexp, flags);
2559                 if (re_it == sregex_iterator())
2560                         return 0;
2561                 match_results<string::const_iterator> const & m = *re_it;
2562
2563                 if (0) { // Kornel Benko: DO NOT CHECKK
2564                         // Check braces on the segment that matched the entire regexp expression,
2565                         // plus the last subexpression, if a (.*?) was inserted in the constructor.
2566                         if (!braces_match(m[0].first, m[0].second, open_braces))
2567                                 return 0;
2568                 }
2569
2570                 // Check braces on segments that matched all (.*?) subexpressions,
2571                 // except the last "padding" one inserted by lyx.
2572                 for (size_t i = 1; i < m.size() - 1; ++i)
2573                         if (!braces_match(m[i].first, m[i].second, open_braces))
2574                                 return 0;
2575
2576                 // Exclude from the returned match length any length
2577                 // due to close wildcards added at end of regexp
2578                 // and also the length of the leading (e.g. '\emph{')
2579                 //
2580                 // Whole found string, including the leading: m[0].second - m[0].first
2581                 // Size of the leading string: m[1].second - m[1].first
2582                 int leadingsize = 0;
2583                 if (m.size() > 1)
2584                         leadingsize = m[1].second - m[1].first;
2585                 int result;
2586                 for (size_t i = 0; i < m.size(); i++) {
2587                   LYXERR(Debug::FIND, "Match " << i << " is " << m[i].second - m[i].first << " long");
2588                 }
2589                 if (close_wildcards == 0)
2590                         result = m[0].second - m[0].first;
2591
2592                 else
2593                         result =  m[m.size() - close_wildcards].first - m[0].first;
2594
2595                 size_t pos = m.position(size_t(0));
2596                 // Ignore last closing characters
2597                 while (result > 0) {
2598                         if (str[pos+result-1] == '}')
2599                                 --result;
2600                         else
2601                                 break;
2602                 }
2603                 if (result > leadingsize)
2604                         result -= leadingsize;
2605                 else
2606                         result = 0;
2607                 return computeSize(str.substr(pos+leadingsize,result), result);
2608         }
2609
2610         // else !use_regexp: but all code paths above return
2611         LYXERR(Debug::FIND, "Searching in normal mode: par_as_string='"
2612                                  << par_as_string << "', str='" << str << "'");
2613         LYXERR(Debug::FIND, "Searching in normal mode: lead_as_string='"
2614                                  << lead_as_string << "', par_as_string_nolead='"
2615                                  << par_as_string_nolead << "'");
2616
2617         if (at_begin) {
2618                 LYXERR(Debug::FIND, "size=" << par_as_string.size()
2619                                          << ", substr='" << str.substr(0, par_as_string.size()) << "'");
2620                 if (str.substr(0, par_as_string.size()) == par_as_string)
2621                         return par_as_string.size();
2622         } else {
2623                 size_t pos = str.find(par_as_string_nolead);
2624                 if (pos != string::npos)
2625                         return par_as_string.size();
2626         }
2627         return 0;
2628 }
2629
2630
2631 int MatchStringAdv::operator()(DocIterator const & cur, int len, bool at_begin) const
2632 {
2633         int res = findAux(cur, len, at_begin);
2634         LYXERR(Debug::FIND,
2635                "res=" << res << ", at_begin=" << at_begin
2636                << ", matchword=" << opt.matchword
2637                << ", inTexted=" << cur.inTexted());
2638         if (res == 0 || !at_begin || !opt.matchword || !cur.inTexted())
2639                 return res;
2640         if ((len > 0) && (res < len))
2641           return 0;
2642         Paragraph const & par = cur.paragraph();
2643         bool ws_left = (cur.pos() > 0)
2644                 ? par.isWordSeparator(cur.pos() - 1)
2645                 : true;
2646         bool ws_right = (cur.pos() + len < par.size())
2647                 ? par.isWordSeparator(cur.pos() + len)
2648                 : true;
2649         LYXERR(Debug::FIND,
2650                "cur.pos()=" << cur.pos() << ", res=" << res
2651                << ", separ: " << ws_left << ", " << ws_right
2652                << ", len: " << len
2653                << endl);
2654         if (ws_left && ws_right) {
2655           // Check for word separators inside the found 'word'
2656           for (int i = 0; i < len; i++) {
2657             if (par.isWordSeparator(cur.pos() + i))
2658               return 0;
2659           }
2660           return res;
2661         }
2662         return 0;
2663 }
2664
2665
2666 string MatchStringAdv::normalize(docstring const & s, bool hack_braces) const
2667 {
2668         string t;
2669         if (! opt.casesensitive)
2670                 t = lyx::to_utf8(lowercase(s));
2671         else
2672                 t = lyx::to_utf8(s);
2673         // Remove \n at begin
2674         while (!t.empty() && t[0] == '\n')
2675                 t = t.substr(1);
2676         // Remove \n at end
2677         while (!t.empty() && t[t.size() - 1] == '\n')
2678                 t = t.substr(0, t.size() - 1);
2679         size_t pos;
2680         // Handle all other '\n'
2681         while ((pos = t.find("\n")) != string::npos) {
2682                 if (pos > 1 && t[pos-1] == '\\' && t[pos-2] == '\\' ) {
2683                         // Handle '\\\n'
2684                         if (std::isalnum(t[pos+1])) {
2685                                 t.replace(pos-2, 3, " ");
2686                         }
2687                         else {
2688                                 t.replace(pos-2, 3, "");
2689                         }
2690                 }
2691                 else if (!std::isalnum(t[pos+1]) || !std::isalnum(t[pos-1])) {
2692                         // '\n' adjacent to non-alpha-numerics, discard
2693                         t.replace(pos, 1, "");
2694                 }
2695                 else {
2696                         // Replace all other \n with spaces
2697                         t.replace(pos, 1, " ");
2698                 }
2699         }
2700         // Remove stale empty \emph{}, \textbf{} and similar blocks from latexify
2701         // Kornel: Added textsl, textsf, textit, texttt and noun
2702         // + allow to seach for colored text too
2703         LYXERR(Debug::FIND, "Removing stale empty \\emph{}, \\textbf{}, \\*section{} macros from: " << t);
2704         while (regex_replace(t, t, "\\\\(emph|noun|text(bf|sl|sf|it|tt)|(u|uu)line|(s|x)out|uwave)(\\{(\\{\\})?\\})+", ""))
2705                 LYXERR(Debug::FIND, "  further removing stale empty \\emph{}, \\textbf{} macros from: " << t);
2706         while (regex_replace(t, t, "\\\\((sub)?(((sub)?section)|paragraph)|part)\\*?(\\{(\\{\\})?\\})+", ""))
2707                 LYXERR(Debug::FIND, "  further removing stale empty \\emph{}, \\textbf{} macros from: " << t);
2708
2709         while (regex_replace(t, t, "\\\\(foreignlanguage|textcolor|item)\\{[a-z]+\\}(\\{(\\{\\})?\\})+", ""));
2710         // FIXME - check what preceeds the brace
2711         if (hack_braces) {
2712                 if (opt.ignoreformat)
2713                         while (regex_replace(t, t, "\\{", "_x_<")
2714                                || regex_replace(t, t, "\\}", "_x_>"))
2715                                 LYXERR(Debug::FIND, "After {} replacement: '" << t << "'");
2716                 else
2717                         while (regex_replace(t, t, "\\\\\\{", "_x_<")
2718                                || regex_replace(t, t, "\\\\\\}", "_x_>"))
2719                                 LYXERR(Debug::FIND, "After {} replacement: '" << t << "'");
2720         }
2721
2722         return t;
2723 }
2724
2725
2726 docstring stringifyFromCursor(DocIterator const & cur, int len)
2727 {
2728         LYXERR(Debug::FIND, "Stringifying with len=" << len << " from cursor at pos: " << cur);
2729         if (cur.inTexted()) {
2730                 Paragraph const & par = cur.paragraph();
2731                 // TODO what about searching beyond/across paragraph breaks ?
2732                 // TODO Try adding a AS_STR_INSERTS as last arg
2733                 pos_type end = ( len == -1 || cur.pos() + len > int(par.size()) ) ?
2734                         int(par.size()) : cur.pos() + len;
2735                 OutputParams runparams(&cur.buffer()->params().encoding());
2736                 runparams.nice = true;
2737                 runparams.flavor = OutputParams::LATEX;
2738                 runparams.linelen = 100000; //lyxrc.plaintext_linelen;
2739                 // No side effect of file copying and image conversion
2740                 runparams.dryrun = true;
2741                 LYXERR(Debug::FIND, "Stringifying with cur: "
2742                        << cur << ", from pos: " << cur.pos() << ", end: " << end);
2743                 return par.asString(cur.pos(), end,
2744                         AS_STR_INSETS | AS_STR_SKIPDELETE | AS_STR_PLAINTEXT,
2745                         &runparams);
2746         } else if (cur.inMathed()) {
2747                 CursorSlice cs = cur.top();
2748                 MathData md = cs.cell();
2749                 MathData::const_iterator it_end =
2750                         (( len == -1 || cs.pos() + len > int(md.size()))
2751                          ? md.end()
2752                          : md.begin() + cs.pos() + len );
2753                 MathData md2;
2754                 for (MathData::const_iterator it = md.begin() + cs.pos();
2755                      it != it_end; ++it)
2756                         md2.push_back(*it);
2757                 docstring s = asString(md2);
2758                 LYXERR(Debug::FIND, "Stringified math: '" << s << "'");
2759                 return s;
2760         }
2761         LYXERR(Debug::FIND, "Don't know how to stringify from here: " << cur);
2762         return docstring();
2763 }
2764
2765
2766 /** Computes the LaTeX export of buf starting from cur and ending len positions
2767  * after cur, if len is positive, or at the paragraph or innermost inset end
2768  * if len is -1.
2769  */
2770 docstring latexifyFromCursor(DocIterator const & cur, int len)
2771 {
2772         LYXERR(Debug::FIND, "Latexifying with len=" << len << " from cursor at pos: " << cur);
2773         LYXERR(Debug::FIND, "  with cur.lastpost=" << cur.lastpos() << ", cur.lastrow="
2774                << cur.lastrow() << ", cur.lastcol=" << cur.lastcol());
2775         Buffer const & buf = *cur.buffer();
2776
2777         odocstringstream ods;
2778         otexstream os(ods);
2779         OutputParams runparams(&buf.params().encoding());
2780         runparams.nice = false;
2781         runparams.flavor = OutputParams::LATEX;
2782         runparams.linelen = 8000; //lyxrc.plaintext_linelen;
2783         // No side effect of file copying and image conversion
2784         runparams.dryrun = true;
2785         runparams.for_search = true;
2786
2787         if (cur.inTexted()) {
2788                 // @TODO what about searching beyond/across paragraph breaks ?
2789                 pos_type endpos = cur.paragraph().size();
2790                 if (len != -1 && endpos > cur.pos() + len)
2791                         endpos = cur.pos() + len;
2792                 TeXOnePar(buf, *cur.innerText(), cur.pit(), os, runparams,
2793                           string(), cur.pos(), endpos);
2794                 string s = lyx::to_utf8(ods.str());
2795                 LYXERR(Debug::FIND, "Latexified +modified text: '" << s << "'");
2796                 return(lyx::from_utf8(s));
2797         } else if (cur.inMathed()) {
2798                 // Retrieve the math environment type, and add '$' or '$[' or others (\begin{equation}) accordingly
2799                 for (int s = cur.depth() - 1; s >= 0; --s) {
2800                         CursorSlice const & cs = cur[s];
2801                         if (cs.asInsetMath() && cs.asInsetMath()->asHullInset()) {
2802                                 WriteStream ws(os);
2803                                 cs.asInsetMath()->asHullInset()->header_write(ws);
2804                                 break;
2805                         }
2806                 }
2807
2808                 CursorSlice const & cs = cur.top();
2809                 MathData md = cs.cell();
2810                 MathData::const_iterator it_end =
2811                         ((len == -1 || cs.pos() + len > int(md.size()))
2812                          ? md.end()
2813                          : md.begin() + cs.pos() + len);
2814                 MathData md2;
2815                 for (MathData::const_iterator it = md.begin() + cs.pos();
2816                      it != it_end; ++it)
2817                         md2.push_back(*it);
2818
2819                 ods << asString(md2);
2820                 // Retrieve the math environment type, and add '$' or '$]'
2821                 // or others (\end{equation}) accordingly
2822                 for (int s = cur.depth() - 1; s >= 0; --s) {
2823                         CursorSlice const & cs2 = cur[s];
2824                         InsetMath * inset = cs2.asInsetMath();
2825                         if (inset && inset->asHullInset()) {
2826                                 WriteStream ws(os);
2827                                 inset->asHullInset()->footer_write(ws);
2828                                 break;
2829                         }
2830                 }
2831                 LYXERR(Debug::FIND, "Latexified math: '" << lyx::to_utf8(ods.str()) << "'");
2832         } else {
2833                 LYXERR(Debug::FIND, "Don't know how to stringify from here: " << cur);
2834         }
2835         return ods.str();
2836 }
2837
2838
2839 /** Finalize an advanced find operation, advancing the cursor to the innermost
2840  ** position that matches, plus computing the length of the matching text to
2841  ** be selected
2842  **/
2843 int findAdvFinalize(DocIterator & cur, MatchStringAdv const & match)
2844 {
2845         // Search the foremost position that matches (avoids find of entire math
2846         // inset when match at start of it)
2847         size_t d;
2848         DocIterator old_cur(cur.buffer());
2849         do {
2850                 LYXERR(Debug::FIND, "Forwarding one step (searching for innermost match)");
2851                 d = cur.depth();
2852                 old_cur = cur;
2853                 cur.forwardPos();
2854         } while (cur && cur.depth() > d && match(cur) > 0);
2855         cur = old_cur;
2856         int max_match = match(cur);     /* match valid only if not searching whole words */
2857         if (max_match <= 0) return 0;
2858         LYXERR(Debug::FIND, "Ok");
2859
2860         // Compute the match length
2861         int len = 1;
2862         if (cur.pos() + len > cur.lastpos())
2863           return 0;
2864         if (match.opt.matchword) {
2865           LYXERR(Debug::FIND, "verifying unmatch with len = " << len);
2866           while (cur.pos() + len <= cur.lastpos() && match(cur, len) <= 0) {
2867             ++len;
2868             LYXERR(Debug::FIND, "verifying unmatch with len = " << len);
2869           }
2870           // Length of matched text (different from len param)
2871           int old_match = match(cur, len);
2872           if (old_match < 0)
2873             old_match = 0;
2874           int new_match;
2875           // Greedy behaviour while matching regexps
2876           while ((new_match = match(cur, len + 1)) > old_match) {
2877             ++len;
2878             old_match = new_match;
2879             LYXERR(Debug::FIND, "verifying   match with len = " << len);
2880           }
2881           if (old_match == 0)
2882             len = 0;
2883         }
2884         else {
2885           int minl = 1;
2886           int maxl = cur.lastpos() - cur.pos();
2887           // Greedy behaviour while matching regexps
2888           while (maxl > minl) {
2889             int actual_match = match(cur, len);
2890             if (actual_match >= max_match) {
2891               // actual_match > max_match _can_ happen,
2892               // if the search area splits
2893               // some following word so that the regex
2894               // (e.g. 'r.*r\b' matches 'r' from the middle of the
2895               // splitted word)
2896               // This means, the len value is too big
2897               maxl = len;
2898               len = (int)((maxl + minl)/2);
2899             }
2900             else {
2901               // (actual_match < max_match)
2902               minl = len + 1;
2903               len = (int)((maxl + minl)/2);
2904             }
2905           }
2906         }
2907         return len;
2908 }
2909
2910
2911 /// Finds forward
2912 int findForwardAdv(DocIterator & cur, MatchStringAdv & match)
2913 {
2914         if (!cur)
2915                 return 0;
2916         while (!theApp()->longOperationCancelled() && cur) {
2917                 LYXERR(Debug::FIND, "findForwardAdv() cur: " << cur);
2918                 int match_len = match(cur, -1, false);
2919                 LYXERR(Debug::FIND, "match_len: " << match_len);
2920                 if (match_len > 0) {
2921                         int match_len_zero_count = 0;
2922                         for (; !theApp()->longOperationCancelled() && cur; cur.forwardPos()) {
2923                                 LYXERR(Debug::FIND, "Advancing cur: " << cur);
2924                                 int match_len3 = match(cur, 1);
2925                                 if (match_len3 < 0)
2926                                         continue;
2927                                 int match_len2 = match(cur);
2928                                 LYXERR(Debug::FIND, "match_len2: " << match_len2);
2929                                 if (match_len2 > 0) {
2930                                         // Sometimes in finalize we understand it wasn't a match
2931                                         // and we need to continue the outest loop
2932                                         int len = findAdvFinalize(cur, match);
2933                                         if (len > 0) {
2934                                                 return len;
2935                                         }
2936                                 }
2937                                 if (match_len2 >= 0) {
2938                                         if (match_len2 == 0)
2939                                                 match_len_zero_count++;
2940                                         else
2941                                                 match_len_zero_count = 0;
2942                                 }
2943                                 else {
2944                                         if (++match_len_zero_count > 3) {
2945                                                 LYXERR(Debug::FIND, "match_len2_zero_count: " << match_len_zero_count << ", match_len was " << match_len);
2946                                                 match_len_zero_count = 0;
2947                                         }
2948                                         break;
2949                                 }
2950                         }
2951                         if (!cur)
2952                                 return 0;
2953                 }
2954                 if (match_len >= 0 && cur.pit() < cur.lastpit()) {
2955                         LYXERR(Debug::FIND, "Advancing par: cur=" << cur);
2956                         cur.forwardPar();
2957                 } else {
2958                         // This should exit nested insets, if any, or otherwise undefine the currsor.
2959                         cur.pos() = cur.lastpos();
2960                         LYXERR(Debug::FIND, "Advancing pos: cur=" << cur);
2961                         cur.forwardPos();
2962                 }
2963         }
2964         return 0;
2965 }
2966
2967
2968 /// Find the most backward consecutive match within same paragraph while searching backwards.
2969 int findMostBackwards(DocIterator & cur, MatchStringAdv const & match)
2970 {
2971         DocIterator cur_begin = doc_iterator_begin(cur.buffer());
2972         DocIterator tmp_cur = cur;
2973         int len = findAdvFinalize(tmp_cur, match);
2974         Inset & inset = cur.inset();
2975         for (; cur != cur_begin; cur.backwardPos()) {
2976                 LYXERR(Debug::FIND, "findMostBackwards(): cur=" << cur);
2977                 DocIterator new_cur = cur;
2978                 new_cur.backwardPos();
2979                 if (new_cur == cur || &new_cur.inset() != &inset || !match(new_cur))
2980                         break;
2981                 int new_len = findAdvFinalize(new_cur, match);
2982                 if (new_len == len)
2983                         break;
2984                 len = new_len;
2985         }
2986         LYXERR(Debug::FIND, "findMostBackwards(): exiting with cur=" << cur);
2987         return len;
2988 }
2989
2990
2991 /// Finds backwards
2992 int findBackwardsAdv(DocIterator & cur, MatchStringAdv & match)
2993 {
2994         if (! cur)
2995                 return 0;
2996         // Backup of original position
2997         DocIterator cur_begin = doc_iterator_begin(cur.buffer());
2998         if (cur == cur_begin)
2999                 return 0;
3000         cur.backwardPos();
3001         DocIterator cur_orig(cur);
3002         bool pit_changed = false;
3003         do {
3004                 cur.pos() = 0;
3005                 bool found_match = match(cur, -1, false);
3006
3007                 if (found_match) {
3008                         if (pit_changed)
3009                                 cur.pos() = cur.lastpos();
3010                         else
3011                                 cur.pos() = cur_orig.pos();
3012                         LYXERR(Debug::FIND, "findBackAdv2: cur: " << cur);
3013                         DocIterator cur_prev_iter;
3014                         do {
3015                                 found_match = match(cur);
3016                                 LYXERR(Debug::FIND, "findBackAdv3: found_match="
3017                                        << found_match << ", cur: " << cur);
3018                                 if (found_match)
3019                                         return findMostBackwards(cur, match);
3020
3021                                 // Stop if begin of document reached
3022                                 if (cur == cur_begin)
3023                                         break;
3024                                 cur_prev_iter = cur;
3025                                 cur.backwardPos();
3026                         } while (true);
3027                 }
3028                 if (cur == cur_begin)
3029                         break;
3030                 if (cur.pit() > 0)
3031                         --cur.pit();
3032                 else
3033                         cur.backwardPos();
3034                 pit_changed = true;
3035         } while (!theApp()->longOperationCancelled());
3036         return 0;
3037 }
3038
3039
3040 } // namespace
3041
3042
3043 docstring stringifyFromForSearch(FindAndReplaceOptions const & opt,
3044                                  DocIterator const & cur, int len)
3045 {
3046         if (cur.pos() < 0 || cur.pos() > cur.lastpos())
3047                 return docstring();
3048         if (!opt.ignoreformat)
3049                 return latexifyFromCursor(cur, len);
3050         else
3051                 return stringifyFromCursor(cur, len);
3052 }
3053
3054
3055 FindAndReplaceOptions::FindAndReplaceOptions(
3056         docstring const & find_buf_name, bool casesensitive,
3057         bool matchword, bool forward, bool expandmacros, bool ignoreformat,
3058         docstring const & repl_buf_name, bool keep_case,
3059         SearchScope scope, SearchRestriction restr)
3060         : find_buf_name(find_buf_name), casesensitive(casesensitive), matchword(matchword),
3061           forward(forward), expandmacros(expandmacros), ignoreformat(ignoreformat),
3062           repl_buf_name(repl_buf_name), keep_case(keep_case), scope(scope), restr(restr)
3063 {
3064 }
3065
3066
3067 namespace {
3068
3069
3070 /** Check if 'len' letters following cursor are all non-lowercase */
3071 static bool allNonLowercase(Cursor const & cur, int len)
3072 {
3073         pos_type beg_pos = cur.selectionBegin().pos();
3074         pos_type end_pos = cur.selectionBegin().pos() + len;
3075         if (len > cur.lastpos() + 1 - beg_pos) {
3076                 LYXERR(Debug::FIND, "This should not happen, more debug needed");
3077                 len = cur.lastpos() + 1 - beg_pos;
3078                 end_pos = beg_pos + len;
3079         }
3080         for (pos_type pos = beg_pos; pos != end_pos; ++pos)
3081                 if (isLowerCase(cur.paragraph().getChar(pos)))
3082                         return false;
3083         return true;
3084 }
3085
3086
3087 /** Check if first letter is upper case and second one is lower case */
3088 static bool firstUppercase(Cursor const & cur)
3089 {
3090         char_type ch1, ch2;
3091         pos_type pos = cur.selectionBegin().pos();
3092         if (pos >= cur.lastpos() - 1) {
3093                 LYXERR(Debug::FIND, "No upper-case at cur: " << cur);
3094                 return false;
3095         }
3096         ch1 = cur.paragraph().getChar(pos);
3097         ch2 = cur.paragraph().getChar(pos + 1);
3098         bool result = isUpperCase(ch1) && isLowerCase(ch2);
3099         LYXERR(Debug::FIND, "firstUppercase(): "
3100                << "ch1=" << ch1 << "(" << char(ch1) << "), ch2="
3101                << ch2 << "(" << char(ch2) << ")"
3102                << ", result=" << result << ", cur=" << cur);
3103         return result;
3104 }
3105
3106
3107 /** Make first letter of supplied buffer upper-case, and the rest lower-case.
3108  **
3109  ** \fixme What to do with possible further paragraphs in replace buffer ?
3110  **/
3111 static void changeFirstCase(Buffer & buffer, TextCase first_case, TextCase others_case)
3112 {
3113         ParagraphList::iterator pit = buffer.paragraphs().begin();
3114         LASSERT(pit->size() >= 1, /**/);
3115         pos_type right = pos_type(1);
3116         pit->changeCase(buffer.params(), pos_type(0), right, first_case);
3117         right = pit->size();
3118         pit->changeCase(buffer.params(), pos_type(1), right, others_case);
3119 }
3120
3121 } // namespace
3122
3123 ///
3124 static void findAdvReplace(BufferView * bv, FindAndReplaceOptions const & opt, MatchStringAdv & matchAdv)
3125 {
3126         Cursor & cur = bv->cursor();
3127         if (opt.repl_buf_name == docstring()
3128             || theBufferList().getBuffer(FileName(to_utf8(opt.repl_buf_name)), true) == 0
3129             || theBufferList().getBuffer(FileName(to_utf8(opt.find_buf_name)), true) == 0)
3130                 return;
3131
3132         DocIterator sel_beg = cur.selectionBegin();
3133         DocIterator sel_end = cur.selectionEnd();
3134         if (&sel_beg.inset() != &sel_end.inset()
3135             || sel_beg.pit() != sel_end.pit()
3136             || sel_beg.idx() != sel_end.idx())
3137                 return;
3138         int sel_len = sel_end.pos() - sel_beg.pos();
3139         LYXERR(Debug::FIND, "sel_beg: " << sel_beg << ", sel_end: " << sel_end
3140                << ", sel_len: " << sel_len << endl);
3141         if (sel_len == 0)
3142                 return;
3143         LASSERT(sel_len > 0, return);
3144
3145         if (!matchAdv(sel_beg, sel_len))
3146                 return;
3147
3148         // Build a copy of the replace buffer, adapted to the KeepCase option
3149         Buffer & repl_buffer_orig = *theBufferList().getBuffer(FileName(to_utf8(opt.repl_buf_name)), true);
3150         ostringstream oss;
3151         repl_buffer_orig.write(oss);
3152         string lyx = oss.str();
3153         Buffer repl_buffer("", false);
3154         repl_buffer.setUnnamed(true);
3155         LASSERT(repl_buffer.readString(lyx), return);
3156         if (opt.keep_case && sel_len >= 2) {
3157                 LYXERR(Debug::FIND, "keep_case true: cur.pos()=" << cur.pos() << ", sel_len=" << sel_len);
3158                 if (cur.inTexted()) {
3159                         if (firstUppercase(cur))
3160                                 changeFirstCase(repl_buffer, text_uppercase, text_lowercase);
3161                         else if (allNonLowercase(cur, sel_len))
3162                                 changeFirstCase(repl_buffer, text_uppercase, text_uppercase);
3163                 }
3164         }
3165         cap::cutSelection(cur, false);
3166         if (cur.inTexted()) {
3167                 repl_buffer.changeLanguage(
3168                         repl_buffer.language(),
3169                         cur.getFont().language());
3170                 LYXERR(Debug::FIND, "Replacing by pasteParagraphList()ing repl_buffer");
3171                 LYXERR(Debug::FIND, "Before pasteParagraphList() cur=" << cur << endl);
3172                 cap::pasteParagraphList(cur, repl_buffer.paragraphs(),
3173                                         repl_buffer.params().documentClassPtr(),
3174                                         bv->buffer().errorList("Paste"));
3175                 LYXERR(Debug::FIND, "After pasteParagraphList() cur=" << cur << endl);
3176                 sel_len = repl_buffer.paragraphs().begin()->size();
3177         } else if (cur.inMathed()) {
3178                 odocstringstream ods;
3179                 otexstream os(ods);
3180                 OutputParams runparams(&repl_buffer.params().encoding());
3181                 runparams.nice = false;
3182                 runparams.flavor = OutputParams::LATEX;
3183                 runparams.linelen = 8000; //lyxrc.plaintext_linelen;
3184                 runparams.dryrun = true;
3185                 TeXOnePar(repl_buffer, repl_buffer.text(), 0, os, runparams);
3186                 //repl_buffer.getSourceCode(ods, 0, repl_buffer.paragraphs().size(), false);
3187                 docstring repl_latex = ods.str();
3188                 LYXERR(Debug::FIND, "Latexified replace_buffer: '" << repl_latex << "'");
3189                 string s;
3190                 (void)regex_replace(to_utf8(repl_latex), s, "\\$(.*)\\$", "$1");
3191                 (void)regex_replace(s, s, "\\\\\\[(.*)\\\\\\]", "$1");
3192                 repl_latex = from_utf8(s);
3193                 LYXERR(Debug::FIND, "Replacing by insert()ing latex: '" << repl_latex << "' cur=" << cur << " with depth=" << cur.depth());
3194                 MathData ar(cur.buffer());
3195                 asArray(repl_latex, ar, Parse::NORMAL);
3196                 cur.insert(ar);
3197                 sel_len = ar.size();
3198                 LYXERR(Debug::FIND, "After insert() cur=" << cur << " with depth: " << cur.depth() << " and len: " << sel_len);
3199         }
3200         if (cur.pos() >= sel_len)
3201                 cur.pos() -= sel_len;
3202         else
3203                 cur.pos() = 0;
3204         LYXERR(Debug::FIND, "After pos adj cur=" << cur << " with depth: " << cur.depth() << " and len: " << sel_len);
3205         bv->putSelectionAt(DocIterator(cur), sel_len, !opt.forward);
3206         bv->processUpdateFlags(Update::Force);
3207 }
3208
3209
3210 /// Perform a FindAdv operation.
3211 bool findAdv(BufferView * bv, FindAndReplaceOptions const & opt)
3212 {
3213         DocIterator cur;
3214         int match_len = 0;
3215
3216         // e.g., when invoking word-findadv from mini-buffer wither with
3217         //       wrong options syntax or before ever opening advanced F&R pane
3218         if (theBufferList().getBuffer(FileName(to_utf8(opt.find_buf_name)), true) == 0)
3219                 return false;
3220
3221         try {
3222                 MatchStringAdv matchAdv(bv->buffer(), opt);
3223                 int length = bv->cursor().selectionEnd().pos() - bv->cursor().selectionBegin().pos();
3224                 if (length > 0)
3225                         bv->putSelectionAt(bv->cursor().selectionBegin(), length, !opt.forward);
3226                 findAdvReplace(bv, opt, matchAdv);
3227                 cur = bv->cursor();
3228                 if (opt.forward)
3229                         match_len = findForwardAdv(cur, matchAdv);
3230                 else
3231                         match_len = findBackwardsAdv(cur, matchAdv);
3232         } catch (...) {
3233                 // This may only be raised by lyx::regex()
3234                 bv->message(_("Invalid regular expression!"));
3235                 return false;
3236         }
3237
3238         if (match_len == 0) {
3239                 bv->message(_("Match not found!"));
3240                 return false;
3241         }
3242
3243         bv->message(_("Match found!"));
3244
3245         LYXERR(Debug::FIND, "Putting selection at cur=" << cur << " with len: " << match_len);
3246         bv->putSelectionAt(cur, match_len, !opt.forward);
3247
3248         return true;
3249 }
3250
3251
3252 ostringstream & operator<<(ostringstream & os, FindAndReplaceOptions const & opt)
3253 {
3254         os << to_utf8(opt.find_buf_name) << "\nEOSS\n"
3255            << opt.casesensitive << ' '
3256            << opt.matchword << ' '
3257            << opt.forward << ' '
3258            << opt.expandmacros << ' '
3259            << opt.ignoreformat << ' '
3260            << to_utf8(opt.repl_buf_name) << "\nEOSS\n"
3261            << opt.keep_case << ' '
3262            << int(opt.scope) << ' '
3263            << int(opt.restr);
3264
3265         LYXERR(Debug::FIND, "built: " << os.str());
3266
3267         return os;
3268 }
3269
3270
3271 istringstream & operator>>(istringstream & is, FindAndReplaceOptions & opt)
3272 {
3273         LYXERR(Debug::FIND, "parsing");
3274         string s;
3275         string line;
3276         getline(is, line);
3277         while (line != "EOSS") {
3278                 if (! s.empty())
3279                         s = s + "\n";
3280                 s = s + line;
3281                 if (is.eof())   // Tolerate malformed request
3282                         break;
3283                 getline(is, line);
3284         }
3285         LYXERR(Debug::FIND, "file_buf_name: '" << s << "'");
3286         opt.find_buf_name = from_utf8(s);
3287         is >> opt.casesensitive >> opt.matchword >> opt.forward >> opt.expandmacros >> opt.ignoreformat;
3288         is.get();       // Waste space before replace string
3289         s = "";
3290         getline(is, line);
3291         while (line != "EOSS") {
3292                 if (! s.empty())
3293                         s = s + "\n";
3294                 s = s + line;
3295                 if (is.eof())   // Tolerate malformed request
3296                         break;
3297                 getline(is, line);
3298         }
3299         LYXERR(Debug::FIND, "repl_buf_name: '" << s << "'");
3300         opt.repl_buf_name = from_utf8(s);
3301         is >> opt.keep_case;
3302         int i;
3303         is >> i;
3304         opt.scope = FindAndReplaceOptions::SearchScope(i);
3305         is >> i;
3306         opt.restr = FindAndReplaceOptions::SearchRestriction(i);
3307
3308         LYXERR(Debug::FIND, "parsed: " << opt.casesensitive << ' ' << opt.matchword << ' ' << opt.forward << ' '
3309                << opt.expandmacros << ' ' << opt.ignoreformat << ' ' << opt.keep_case << ' '
3310                << opt.scope << ' ' << opt.restr);
3311         return is;
3312 }
3313
3314 } // namespace lyx