]> git.lyx.org Git - lyx.git/blob - src/lyxfind.cpp
FindAdv: Remove dead code
[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  * \author Kornel Benko
12  *
13  * Full author contact details are available in file CREDITS.
14  */
15
16 #include <config.h>
17
18 #include "lyxfind.h"
19
20 #include "Buffer.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 "Text.h"
33 #include "Encoding.h"
34
35 #include "frontends/Application.h"
36 #include "frontends/alert.h"
37
38 #include "mathed/InsetMath.h"
39 #include "mathed/InsetMathHull.h"
40 #include "mathed/MathData.h"
41 #include "mathed/MathStream.h"
42 #include "mathed/MathSupport.h"
43
44 #include "support/debug.h"
45 #include "support/docstream.h"
46 #include "support/FileName.h"
47 #include "support/gettext.h"
48 #include "support/lassert.h"
49 #include "support/lstrings.h"
50 #include "support/textutils.h"
51
52 #include <map>
53 #include <regex>
54
55 //#define ResultsDebug
56 #define USE_QT_FOR_SEARCH
57 #if defined(USE_QT_FOR_SEARCH)
58         #include <QtCore>       // sets QT_VERSION
59         #if (QT_VERSION >= 0x050000)
60                 #include <QRegularExpression>
61                 #define QTSEARCH 1
62         #else
63                 #define QTSEARCH 0
64         #endif
65 #else
66         #define QTSEARCH 0
67 #endif
68
69 using namespace std;
70 using namespace lyx::support;
71
72 namespace lyx {
73
74 typedef map<string, string> AccentsMap;
75 static AccentsMap accents = map<string, string>();
76
77 // Helper class for deciding what should be ignored
78 class IgnoreFormats {
79  public:
80         ///
81         IgnoreFormats() = default;
82         ///
83         bool getFamily() const { return ignoreFamily_; }
84         ///
85         bool getSeries() const { return ignoreSeries_; }
86         ///
87         bool getShape() const { return ignoreShape_; }
88         ///
89         bool getUnderline() const { return ignoreUnderline_; }
90         ///
91         bool getMarkUp() const { return ignoreMarkUp_; }
92         ///
93         bool getStrikeOut() const { return ignoreStrikeOut_; }
94         ///
95         bool getSectioning() const { return ignoreSectioning_; }
96         ///
97         bool getFrontMatter() const { return ignoreFrontMatter_; }
98         ///
99         bool getColor() const { return ignoreColor_; }
100         ///
101         bool getLanguage() const { return ignoreLanguage_; }
102         ///
103         void setIgnoreFormat(string const & type, bool value);
104
105 private:
106         ///
107         bool ignoreFamily_ = false;
108         ///
109         bool ignoreSeries_ = false;
110         ///
111         bool ignoreShape_ = false;
112         ///
113         bool ignoreUnderline_ = false;
114         ///
115         bool ignoreMarkUp_ = false;
116         ///
117         bool ignoreStrikeOut_ = false;
118         ///
119         bool ignoreSectioning_ = false;
120         ///
121         bool ignoreFrontMatter_ = false;
122         ///
123         bool ignoreColor_ = false;
124         ///
125         bool ignoreLanguage_ = false;
126 };
127
128
129 void IgnoreFormats::setIgnoreFormat(string const & type, bool value)
130 {
131         if (type == "color") {
132                 ignoreColor_ = value;
133         }
134         else if (type == "language") {
135                 ignoreLanguage_ = value;
136         }
137         else if (type == "sectioning") {
138                 ignoreSectioning_ = value;
139                 ignoreFrontMatter_ = value;
140         }
141         else if (type == "font") {
142                 ignoreSeries_ = value;
143                 ignoreShape_ = value;
144                 ignoreFamily_ = value;
145         }
146         else if (type == "series") {
147                 ignoreSeries_ = value;
148         }
149         else if (type == "shape") {
150                 ignoreShape_ = value;
151         }
152         else if (type == "family") {
153                 ignoreFamily_ = value;
154         }
155         else if (type == "markup") {
156                 ignoreMarkUp_ = value;
157         }
158         else if (type == "underline") {
159                 ignoreUnderline_ = value;
160         }
161         else if (type == "strike") {
162                 ignoreStrikeOut_ = value;
163         }
164 }
165
166 // The global variable that can be changed from outside
167 IgnoreFormats ignoreFormats;
168
169
170 void setIgnoreFormat(string const & type, bool value)
171 {
172   ignoreFormats.setIgnoreFormat(type, value);
173 }
174
175
176 namespace {
177
178 bool parse_bool(docstring & howto)
179 {
180         if (howto.empty())
181                 return false;
182         docstring var;
183         howto = split(howto, var, ' ');
184         return var == "1";
185 }
186
187
188 class MatchString
189 {
190 public:
191         MatchString(docstring const & s, bool cs, bool mw)
192                 : str(s), case_sens(cs), whole_words(mw)
193         {}
194
195         // returns true if the specified string is at the specified position
196         // del specifies whether deleted strings in ct mode will be considered
197         int operator()(Paragraph const & par, pos_type pos, bool del = true) const
198         {
199                 return par.find(str, case_sens, whole_words, pos, del);
200         }
201
202 private:
203         // search string
204         docstring str;
205         // case sensitive
206         bool case_sens;
207         // match whole words only
208         bool whole_words;
209 };
210
211
212 int findForward(DocIterator & cur, MatchString const & match,
213                 bool find_del = true)
214 {
215         for (; cur; cur.forwardChar())
216                 if (cur.inTexted()) {
217                         int len = match(cur.paragraph(), cur.pos(), find_del);
218                         if (len > 0)
219                                 return len;
220                 }
221         return 0;
222 }
223
224
225 int findBackwards(DocIterator & cur, MatchString const & match,
226                   bool find_del = true)
227 {
228         while (cur) {
229                 cur.backwardChar();
230                 if (cur.inTexted()) {
231                         int len = match(cur.paragraph(), cur.pos(), find_del);
232                         if (len > 0)
233                                 return len;
234                 }
235         }
236         return 0;
237 }
238
239
240 bool searchAllowed(docstring const & str)
241 {
242         if (str.empty()) {
243                 frontend::Alert::error(_("Search error"), _("Search string is empty"));
244                 return false;
245         }
246         return true;
247 }
248
249
250 bool findOne(BufferView * bv, docstring const & searchstr,
251              bool case_sens, bool whole, bool forward,
252              bool find_del = true, bool check_wrap = false)
253 {
254         if (!searchAllowed(searchstr))
255                 return false;
256
257         DocIterator cur = forward
258                 ? bv->cursor().selectionEnd()
259                 : bv->cursor().selectionBegin();
260
261         MatchString const match(searchstr, case_sens, whole);
262
263         int match_len = forward
264                 ? findForward(cur, match, find_del)
265                 : findBackwards(cur, match, find_del);
266
267         if (match_len > 0)
268                 bv->putSelectionAt(cur, match_len, !forward);
269         else if (check_wrap) {
270                 DocIterator cur_orig(bv->cursor());
271                 docstring q;
272                 if (forward)
273                         q = _("End of file reached while searching forward.\n"
274                           "Continue searching from the beginning?");
275                 else
276                         q = _("Beginning of file reached while searching backward.\n"
277                           "Continue searching from the end?");
278                 int wrap_answer = frontend::Alert::prompt(_("Wrap search?"),
279                         q, 0, 1, _("&Yes"), _("&No"));
280                 if (wrap_answer == 0) {
281                         if (forward) {
282                                 bv->cursor().clear();
283                                 bv->cursor().push_back(CursorSlice(bv->buffer().inset()));
284                         } else {
285                                 bv->cursor().setCursor(doc_iterator_end(&bv->buffer()));
286                                 bv->cursor().backwardPos();
287                         }
288                         bv->clearSelection();
289                         if (findOne(bv, searchstr, case_sens, whole, forward, find_del, false))
290                                 return true;
291                 }
292                 bv->cursor().setCursor(cur_orig);
293                 return false;
294         }
295
296         return match_len > 0;
297 }
298
299
300 int replaceAll(BufferView * bv,
301                docstring const & searchstr, docstring const & replacestr,
302                bool case_sens, bool whole)
303 {
304         Buffer & buf = bv->buffer();
305
306         if (!searchAllowed(searchstr) || buf.isReadonly())
307                 return 0;
308
309         DocIterator cur_orig(bv->cursor());
310
311         MatchString const match(searchstr, case_sens, whole);
312         int num = 0;
313
314         int const rsize = replacestr.size();
315         int const ssize = searchstr.size();
316
317         Cursor cur(*bv);
318         cur.setCursor(doc_iterator_begin(&buf));
319         int match_len = findForward(cur, match, false);
320         while (match_len > 0) {
321                 // Backup current cursor position and font.
322                 pos_type const pos = cur.pos();
323                 Font const font = cur.paragraph().getFontSettings(buf.params(), pos);
324                 cur.recordUndo();
325                 int striked = ssize -
326                         cur.paragraph().eraseChars(pos, pos + match_len,
327                                                    buf.params().track_changes);
328                 cur.paragraph().insert(pos, replacestr, font,
329                                        Change(buf.params().track_changes
330                                               ? Change::INSERTED
331                                               : Change::UNCHANGED));
332                 for (int i = 0; i < rsize + striked; ++i)
333                         cur.forwardChar();
334                 ++num;
335                 match_len = findForward(cur, match, false);
336         }
337
338         bv->putSelectionAt(doc_iterator_begin(&buf), 0, false);
339
340         cur_orig.fixIfBroken();
341         bv->setCursor(cur_orig);
342
343         return num;
344 }
345
346
347 // the idea here is that we are going to replace the string that
348 // is selected IF it is the search string.
349 // if there is a selection, but it is not the search string, then
350 // we basically ignore it. (FIXME We ought to replace only within
351 // the selection.)
352 // if there is no selection, then:
353 //  (i) if some search string has been provided, then we find it.
354 //      (think of how the dialog works when you hit "replace" the
355 //      first time.)
356 // (ii) if no search string has been provided, then we treat the
357 //      word the cursor is in as the search string. (why? i have no
358 //      idea.) but this only works in text?
359 //
360 // returns the number of replacements made (one, if any) and
361 // whether anything at all was done.
362 pair<bool, int> replaceOne(BufferView * bv, docstring searchstr,
363                            docstring const & replacestr, bool case_sens,
364                            bool whole, bool forward, bool findnext)
365 {
366         Cursor & cur = bv->cursor();
367         if (!cur.selection()) {
368                 // no selection, non-empty search string: find it
369                 if (!searchstr.empty()) {
370                         bool const found = findOne(bv, searchstr, case_sens, whole, forward, true, findnext);
371                         return make_pair(found, 0);
372                 }
373                 // empty search string
374                 if (!cur.inTexted())
375                         // bail in math
376                         return make_pair(false, 0);
377                 // select current word and treat it as the search string.
378                 // This causes a minor bug as undo will restore this selection,
379                 // which the user did not create (#8986).
380                 cur.innerText()->selectWord(cur, WHOLE_WORD);
381                 searchstr = cur.selectionAsString(false, true);
382         }
383
384         // if we still don't have a search string, report the error
385         // and abort.
386         if (!searchAllowed(searchstr))
387                 return make_pair(false, 0);
388
389         bool have_selection = cur.selection();
390         docstring const selected = cur.selectionAsString(false, true);
391         bool match =
392                 case_sens
393                 ? searchstr == selected
394                 : compare_no_case(searchstr, selected) == 0;
395
396         // no selection or current selection is not search word:
397         // just find the search word
398         if (!have_selection || !match) {
399                 bool const found = findOne(bv, searchstr, case_sens, whole, forward, true, findnext);
400                 return make_pair(found, 0);
401         }
402
403         // we're now actually ready to replace. if the buffer is
404         // read-only, we can't, though.
405         if (bv->buffer().isReadonly())
406                 return make_pair(false, 0);
407
408         cap::replaceSelectionWithString(cur, replacestr);
409         if (forward) {
410                 cur.pos() += replacestr.length();
411                 LASSERT(cur.pos() <= cur.lastpos(),
412                         cur.pos() = cur.lastpos());
413         }
414         if (findnext)
415                 findOne(bv, searchstr, case_sens, whole, forward, false, findnext);
416
417         return make_pair(true, 1);
418 }
419
420 } // namespace
421
422
423 docstring const find2string(docstring const & search,
424                             bool casesensitive, bool matchword, bool forward)
425 {
426         odocstringstream ss;
427         ss << search << '\n'
428            << int(casesensitive) << ' '
429            << int(matchword) << ' '
430            << int(forward);
431         return ss.str();
432 }
433
434
435 docstring const replace2string(docstring const & replace,
436                                docstring const & search,
437                                bool casesensitive, bool matchword,
438                                bool all, bool forward, bool findnext)
439 {
440         odocstringstream ss;
441         ss << replace << '\n'
442            << search << '\n'
443            << int(casesensitive) << ' '
444            << int(matchword) << ' '
445            << int(all) << ' '
446            << int(forward) << ' '
447            << int(findnext);
448         return ss.str();
449 }
450
451
452 bool lyxfind(BufferView * bv, FuncRequest const & ev)
453 {
454         if (!bv || ev.action() != LFUN_WORD_FIND)
455                 return false;
456
457         //lyxerr << "find called, cmd: " << ev << endl;
458
459         // data is of the form
460         // "<search>
461         //  <casesensitive> <matchword> <forward>"
462         docstring search;
463         docstring howto = split(ev.argument(), search, '\n');
464
465         bool casesensitive = parse_bool(howto);
466         bool matchword     = parse_bool(howto);
467         bool forward       = parse_bool(howto);
468
469         return findOne(bv, search, casesensitive, matchword, forward, false, true);
470 }
471
472
473 bool lyxreplace(BufferView * bv, FuncRequest const & ev)
474 {
475         if (!bv || ev.action() != LFUN_WORD_REPLACE)
476                 return false;
477
478         // data is of the form
479         // "<search>
480         //  <replace>
481         //  <casesensitive> <matchword> <all> <forward> <findnext>"
482         docstring search;
483         docstring rplc;
484         docstring howto = split(ev.argument(), rplc, '\n');
485         howto = split(howto, search, '\n');
486
487         bool casesensitive = parse_bool(howto);
488         bool matchword     = parse_bool(howto);
489         bool all           = parse_bool(howto);
490         bool forward       = parse_bool(howto);
491         bool findnext      = howto.empty() ? true : parse_bool(howto);
492
493         bool update = false;
494
495         int replace_count = 0;
496         if (all) {
497                 replace_count = replaceAll(bv, search, rplc, casesensitive, matchword);
498                 update = replace_count > 0;
499         } else {
500                 pair<bool, int> rv =
501                         replaceOne(bv, search, rplc, casesensitive, matchword, forward, findnext);
502                 update = rv.first;
503                 replace_count = rv.second;
504         }
505
506         Buffer const & buf = bv->buffer();
507         if (!update) {
508                 // emit message signal.
509                 buf.message(_("String not found."));
510         } else {
511                 if (replace_count == 0) {
512                         buf.message(_("String found."));
513                 } else if (replace_count == 1) {
514                         buf.message(_("String has been replaced."));
515                 } else {
516                         docstring const str =
517                                 bformat(_("%1$d strings have been replaced."), replace_count);
518                         buf.message(str);
519                 }
520         }
521         return update;
522 }
523
524
525 bool findNextChange(BufferView * bv, Cursor & cur, bool const check_wrap)
526 {
527         for (; cur; cur.forwardPos())
528                 if (cur.inTexted() && cur.paragraph().isChanged(cur.pos()))
529                         return true;
530
531         if (check_wrap) {
532                 DocIterator cur_orig(bv->cursor());
533                 docstring q = _("End of file reached while searching forward.\n"
534                           "Continue searching from the beginning?");
535                 int wrap_answer = frontend::Alert::prompt(_("Wrap search?"),
536                         q, 0, 1, _("&Yes"), _("&No"));
537                 if (wrap_answer == 0) {
538                         bv->cursor().clear();
539                         bv->cursor().push_back(CursorSlice(bv->buffer().inset()));
540                         bv->clearSelection();
541                         cur.setCursor(bv->cursor().selectionBegin());
542                         if (findNextChange(bv, cur, false))
543                                 return true;
544                 }
545                 bv->cursor().setCursor(cur_orig);
546         }
547
548         return false;
549 }
550
551
552 bool findPreviousChange(BufferView * bv, Cursor & cur, bool const check_wrap)
553 {
554         for (cur.backwardPos(); cur; cur.backwardPos()) {
555                 if (cur.inTexted() && cur.paragraph().isChanged(cur.pos()))
556                         return true;
557         }
558
559         if (check_wrap) {
560                 DocIterator cur_orig(bv->cursor());
561                 docstring q = _("Beginning of file reached while searching backward.\n"
562                           "Continue searching from the end?");
563                 int wrap_answer = frontend::Alert::prompt(_("Wrap search?"),
564                         q, 0, 1, _("&Yes"), _("&No"));
565                 if (wrap_answer == 0) {
566                         bv->cursor().setCursor(doc_iterator_end(&bv->buffer()));
567                         bv->cursor().backwardPos();
568                         bv->clearSelection();
569                         cur.setCursor(bv->cursor().selectionBegin());
570                         if (findPreviousChange(bv, cur, false))
571                                 return true;
572                 }
573                 bv->cursor().setCursor(cur_orig);
574         }
575
576         return false;
577 }
578
579
580 bool selectChange(Cursor & cur, bool forward)
581 {
582         if (!cur.inTexted() || !cur.paragraph().isChanged(cur.pos()))
583                 return false;
584         Change ch = cur.paragraph().lookupChange(cur.pos());
585
586         CursorSlice tip1 = cur.top();
587         for (; tip1.pit() < tip1.lastpit() || tip1.pos() < tip1.lastpos(); tip1.forwardPos()) {
588                 Change ch2 = tip1.paragraph().lookupChange(tip1.pos());
589                 if (!ch2.isSimilarTo(ch))
590                         break;
591         }
592         CursorSlice tip2 = cur.top();
593         for (; tip2.pit() > 0 || tip2.pos() > 0;) {
594                 tip2.backwardPos();
595                 Change ch2 = tip2.paragraph().lookupChange(tip2.pos());
596                 if (!ch2.isSimilarTo(ch)) {
597                         // take a step forward to correctly set the selection
598                         tip2.forwardPos();
599                         break;
600                 }
601         }
602         if (forward)
603                 swap(tip1, tip2);
604         cur.top() = tip1;
605         cur.bv().mouseSetCursor(cur, false);
606         cur.top() = tip2;
607         cur.bv().mouseSetCursor(cur, true);
608         return true;
609 }
610
611
612 namespace {
613
614
615 bool findChange(BufferView * bv, bool forward)
616 {
617         Cursor cur(*bv);
618         cur.setCursor(forward ? bv->cursor().selectionEnd()
619                       : bv->cursor().selectionBegin());
620         forward ? findNextChange(bv, cur, true) : findPreviousChange(bv, cur, true);
621         return selectChange(cur, forward);
622 }
623
624 } // namespace
625
626 bool findNextChange(BufferView * bv)
627 {
628         return findChange(bv, true);
629 }
630
631
632 bool findPreviousChange(BufferView * bv)
633 {
634         return findChange(bv, false);
635 }
636
637
638
639 namespace {
640
641 typedef vector<pair<string, string> > Escapes;
642
643 string string2regex(string in)
644 {
645         static std::regex specialChars { R"([-[\]{}()*+?.,\^$|#\s\$\\])" };
646         string temp = std::regex_replace(in, specialChars,  R"(\$&)" );
647         string temp2("");
648         size_t lastpos = 0;
649         size_t fl_pos = 0;
650         int offset = 1;
651         while (fl_pos < temp.size()) {
652                 fl_pos = temp.find("\\\\foreignlanguage", lastpos + offset);
653                 if (fl_pos == string::npos)
654                         break;
655                 offset = 16;
656                 temp2 += temp.substr(lastpos, fl_pos - lastpos);
657                 temp2 += "\\n";
658                 lastpos = fl_pos;
659         }
660         if (lastpos == 0)
661                 return(temp);
662         if (lastpos < temp.size()) {
663                 temp2 += temp.substr(lastpos, temp.size() - lastpos);
664         }
665         return temp2;
666 }
667
668 string correctRegex(string t, bool withformat)
669 {
670         /* Convert \backslash => \
671          * and \{, \}, \[, \] => {, }, [, ]
672          */
673         string s("");
674         regex wordre("(\\\\)*(\\\\((backslash|mathcircumflex) ?|[\\[\\]\\{\\}]))");
675         size_t lastpos = 0;
676         smatch sub;
677         bool backslashed = false;
678         for (sregex_iterator it(t.begin(), t.end(), wordre), end; it != end; ++it) {
679                 sub = *it;
680                 string replace;
681                 if ((sub.position(2) - sub.position(0)) % 2 == 1) {
682                         continue;
683                 }
684                 else {
685                         if (sub.str(4) == "backslash") {
686                                 replace = "\\";
687                                 if (withformat) {
688                                         // transforms '\backslash \{' into '\{'
689                                         // and '\{' into '{'
690                                         string next = t.substr(sub.position(2) + sub.str(2).length(), 2);
691                                         if ((next == "\\{") || (next == "\\}")) {
692                                                 replace = "";
693                                                 backslashed = true;
694                                         }
695                                 }
696                         }
697                         else if (sub.str(4) == "mathcircumflex")
698                                 replace = "^";
699                         else if (backslashed) {
700                                 backslashed = false;
701                                 if (withformat && (sub.str(3) == "{"))
702                                         replace = accents["braceleft"];
703                                 else if (withformat && (sub.str(3) == "}"))
704                                         replace = accents["braceright"];
705                                 else {
706                                         // else part should not exist
707                                         LASSERT(1, /**/);
708                                 }
709                         }
710                         else
711                                 replace = sub.str(3);
712                 }
713                 if (lastpos < (size_t) sub.position(2))
714                         s += t.substr(lastpos, sub.position(2) - lastpos);
715                 s += replace;
716                 lastpos = sub.position(2) + sub.length(2);
717         }
718         if (lastpos == 0)
719                 return t;
720         else if (lastpos < t.length())
721                 s += t.substr(lastpos, t.length() - lastpos);
722         return s;
723 }
724
725 /// Within \regexp{} apply get_lyx_unescapes() only (i.e., preserve regexp semantics of the string),
726 /// while outside apply get_lyx_unescapes()+get_regexp_escapes().
727 /// If match_latex is true, then apply regexp_latex_escapes() to \regexp{} contents as well.
728 string escape_for_regex(string s, bool withformat)
729 {
730         size_t lastpos = 0;
731         string result = "";
732         while (lastpos < s.size()) {
733                 size_t regex_pos = s.find("\\regexp{", lastpos);
734                 if (regex_pos == string::npos) {
735                         regex_pos = s.size();
736                 }
737                 if (regex_pos > lastpos) {
738                         result += string2regex(s.substr(lastpos, regex_pos-lastpos));
739                         lastpos = regex_pos;
740                         if (lastpos == s.size())
741                                 break;
742                 }
743                 size_t end_pos = s.find("\\endregexp{}}", regex_pos + 8);
744                 result += correctRegex(s.substr(regex_pos + 8, end_pos -(regex_pos + 8)), withformat);
745                 lastpos = end_pos + 13;
746         }
747         return result;
748 }
749
750
751 /// Wrapper for lyx::regex_replace with simpler interface
752 bool regex_replace(string const & s, string & t, string const & searchstr,
753                    string const & replacestr)
754 {
755         regex e(searchstr, regex_constants::ECMAScript);
756         ostringstream oss;
757         ostream_iterator<char, char> it(oss);
758         regex_replace(it, s.begin(), s.end(), e, replacestr);
759         // tolerate t and s be references to the same variable
760         bool rv = (s != oss.str());
761         t = oss.str();
762         return rv;
763 }
764
765 class MatchResult {
766 public:
767         enum range {
768                 newIsTooFar,
769                 newIsBetter,
770                 newIsInvalid
771         };
772         int match_len;
773         int match_prefix;
774         int match2end;
775         int pos;
776         int leadsize;
777         int pos_len;
778         int searched_size;
779         vector <string> result = vector <string>();
780         MatchResult(int len = 0): match_len(len),match_prefix(0),match2end(0), pos(0),leadsize(0),pos_len(-1),searched_size(0) {};
781 };
782
783 static MatchResult::range interpretMatch(MatchResult &oldres, MatchResult &newres)
784 {
785   int range = oldres.match_len;
786   if (range > 0) range--;
787   if (newres.match2end < oldres.match2end - oldres.match_len)
788     return MatchResult::newIsTooFar;
789   if (newres.match_len < oldres.match_len)
790     return MatchResult::newIsTooFar;
791   if ((newres.match_len == oldres.match_len) &&
792       (newres.match2end < oldres.match2end + range) &&
793       (newres.match2end > oldres.match2end - range)) {
794     return MatchResult::newIsBetter;
795   }
796   return MatchResult::newIsInvalid;
797 }
798
799 /** The class performing a match between a position in the document and the FindAdvOptions.
800  **/
801
802 class MatchStringAdv {
803 public:
804         MatchStringAdv(lyx::Buffer & buf, FindAndReplaceOptions & opt);
805
806         /** Tests if text starting at the supplied position matches with the one provided to the MatchStringAdv
807          ** constructor as opt.search, under the opt.* options settings.
808          **
809          ** @param at_begin
810          **     If set, then match is searched only against beginning of text starting at cur.
811          **     If unset, then match is searched anywhere in text starting at cur.
812          **
813          ** @return
814          ** The length of the matching text, or zero if no match was found.
815          **/
816         MatchResult operator()(DocIterator const & cur, int len = -1, bool at_begin = true) const;
817 #if QTSEARCH
818         bool regexIsValid;
819         string regexError;
820 #endif
821
822 public:
823         /// buffer
824         lyx::Buffer * p_buf;
825         /// first buffer on which search was started
826         lyx::Buffer * const p_first_buf;
827         /// options
828         FindAndReplaceOptions const & opt;
829
830 private:
831         /// Auxiliary find method (does not account for opt.matchword)
832         MatchResult findAux(DocIterator const & cur, int len = -1, bool at_begin = true) const;
833         void CreateRegexp(FindAndReplaceOptions const & opt, string regexp_str, string regexp2_str, string par_as_string = "");
834
835         /** Normalize a stringified or latexified LyX paragraph.
836          **
837          ** Normalize means:
838          ** <ul>
839          **   <li>if search is not casesensitive, then lowercase the string;
840          **   <li>remove any newline at begin or end of the string;
841          **   <li>replace any newline in the middle of the string with a simple space;
842          **   <li>remove stale empty styles and environments, like \emph{} and \textbf{}.
843          ** </ul>
844          **
845          ** @todo Normalization should also expand macros, if the corresponding
846          ** search option was checked.
847          **/
848         string normalize(docstring const & s) const;
849         // normalized string to search
850         string par_as_string;
851         // regular expression to use for searching
852         // regexp2 is same as regexp, but prefixed with a ".*?"
853 #if QTSEARCH
854         QRegularExpression regexp;
855         QRegularExpression regexp2;
856 #else
857         regex regexp;
858         regex regexp2;
859 #endif
860         // leading format material as string
861         string lead_as_string;
862         // par_as_string after removal of lead_as_string
863         string par_as_string_nolead;
864         // unmatched open braces in the search string/regexp
865         int open_braces;
866         // number of (.*?) subexpressions added at end of search regexp for closing
867         // environments, math mode, styles, etc...
868         int close_wildcards;
869 public:
870         // Are we searching with regular expressions ?
871         bool use_regexp;
872         static int valid_matches;
873         static vector <string> matches;
874         void FillResults(MatchResult &found_mr);
875 };
876
877 int MatchStringAdv::valid_matches = 0;
878 vector <string> MatchStringAdv::matches = vector <string>(10);
879
880 void MatchStringAdv::FillResults(MatchResult &found_mr)
881 {
882   if (found_mr.match_len > 0) {
883     valid_matches = found_mr.result.size();
884     for (size_t i = 0; i < found_mr.result.size(); i++)
885       matches[i] = found_mr.result[i];
886   }
887   else
888     valid_matches = 0;
889 }
890
891 static docstring buffer_to_latex(Buffer & buffer)
892 {
893         //OutputParams runparams(&buffer.params().encoding());
894         OutputParams runparams(encodings.fromLyXName("utf8"));
895         odocstringstream ods;
896         otexstream os(ods);
897         runparams.nice = true;
898         runparams.flavor = Flavor::XeTeX;
899         runparams.linelen = 10000; //lyxrc.plaintext_linelen;
900         // No side effect of file copying and image conversion
901         runparams.dryrun = true;
902         runparams.for_search = true;
903         pit_type const endpit = buffer.paragraphs().size();
904         for (pit_type pit = 0; pit != endpit; ++pit) {
905                 TeXOnePar(buffer, buffer.text(), pit, os, runparams);
906                 LYXERR(Debug::FIND, "searchString up to here: " << ods.str());
907         }
908         return ods.str();
909 }
910
911
912 static docstring stringifySearchBuffer(Buffer & buffer, FindAndReplaceOptions const & opt)
913 {
914         docstring str;
915         if (!opt.ignoreformat) {
916                 str = buffer_to_latex(buffer);
917         } else {
918                 // OutputParams runparams(&buffer.params().encoding());
919                 OutputParams runparams(encodings.fromLyXName("utf8"));
920                 runparams.nice = true;
921                 runparams.flavor = Flavor::XeTeX;
922                 runparams.linelen = 10000; //lyxrc.plaintext_linelen;
923                 runparams.dryrun = true;
924                 runparams.for_search = true;
925                 for (pos_type pit = pos_type(0); pit < (pos_type)buffer.paragraphs().size(); ++pit) {
926                         Paragraph const & par = buffer.paragraphs().at(pit);
927                         LYXERR(Debug::FIND, "Adding to search string: '"
928                                << par.asString(pos_type(0), par.size(),
929                                                AS_STR_INSETS | AS_STR_SKIPDELETE | AS_STR_PLAINTEXT,
930                                                &runparams)
931                                << "'");
932                         str += par.asString(pos_type(0), par.size(),
933                                             AS_STR_INSETS | AS_STR_SKIPDELETE | AS_STR_PLAINTEXT,
934                                             &runparams);
935                 }
936                 // Even in ignore-format we have to remove "\text{}, \lyxmathsym{}" parts
937                 string t = to_utf8(str);
938                 while (regex_replace(t, t, "\\\\(text|lyxmathsym)\\{([^\\}]*)\\}", "$2"));
939                 str = from_utf8(t);
940         }
941         return str;
942 }
943
944
945 /// Return separation pos between the leading material and the rest
946 static size_t identifyLeading(string const & s)
947 {
948         string t = s;
949         // @TODO Support \item[text]
950         // Kornel: Added textsl, textsf, textit, texttt and noun
951         // + allow to search for colored text too
952         while (regex_replace(t, t, "^\\\\(("
953                              "(author|title|subtitle|subject|publishers|dedication|uppertitleback|lowertitleback|extratitle|"
954                                "lyxaddress|lyxrightaddress|"
955                                "footnotesize|tiny|scriptsize|small|large|Large|LARGE|huge|Huge|"
956                                "emph|noun|minisec|text(bf|md|sl|sf|it|tt))|"
957                              "((textcolor|foreignlanguage|latexenvironment)\\{[a-z]+\\*?\\})|"
958                              "(u|uu)line|(s|x)out|uwave)|((sub)?(((sub)?section)|paragraph)|part|chapter)\\*?)\\{", "")
959                || regex_replace(t, t, "^\\$", "")
960                || regex_replace(t, t, "^\\\\\\[", "")
961                || regex_replace(t, t, "^ ?\\\\item\\{[a-z]+\\}", "")
962                || regex_replace(t, t, "^\\\\begin\\{[a-zA-Z_]*\\*?\\}", ""))
963                ;
964         LYXERR(Debug::FIND, "  after removing leading $, \\[ , \\emph{, \\textbf{, etc.: '" << t << "'");
965         return s.find(t);
966 }
967
968 /*
969  * Given a latexified string, retrieve some handled features
970  * The features of the regex will later be compared with the features
971  * of the searched text. If the regex features are not a
972  * subset of the analized, then, in not format ignoring search
973  * we can early stop the search in the relevant inset.
974  */
975 typedef map<string, bool> Features;
976
977 static Features identifyFeatures(string const & s)
978 {
979         static regex const feature("\\\\(([a-zA-Z]+(\\{([a-z]+\\*?)\\}|\\*)?))\\{");
980         static regex const valid("^("
981                 "("
982                         "(footnotesize|tiny|scriptsize|small|large|Large|LARGE|huge|Huge|"
983                                 "emph|noun|text(bf|md|sl|sf|it|tt)|"
984                                 "(textcolor|foreignlanguage|item|listitem|latexenvironment)\\{[a-z]+\\*?\\})|"
985                         "(u|uu)line|(s|x)out|uwave|"
986                         "(sub|extra)?title|author|subject|publishers|dedication|(upper|lower)titleback|lyx(right)?address)|"
987                 "((sub)?(((sub)?section)|paragraph)|part|chapter|lyxslide)\\*?)$");
988         smatch sub;
989         bool displ = true;
990         Features info;
991
992         for (sregex_iterator it(s.begin(), s.end(), feature), end; it != end; ++it) {
993                 sub = *it;
994                 if (displ) {
995                         if (sub.str(1).compare("regexp") == 0) {
996                                 displ = false;
997                                 continue;
998                         }
999                         string token = sub.str(1);
1000                         smatch sub2;
1001                         if (regex_match(token, sub2, valid)) {
1002                                 info[token] = true;
1003                         }
1004                         else {
1005                                 // ignore
1006                         }
1007                 }
1008                 else {
1009                         if (sub.str(1).compare("endregexp") == 0) {
1010                                 displ = true;
1011                                 continue;
1012                         }
1013                 }
1014         }
1015         return info;
1016 }
1017
1018 /*
1019  * defines values features of a key "\\[a-z]+{"
1020  */
1021 class KeyInfo {
1022  public:
1023   enum KeyType {
1024     /* Char type with content discarded
1025      * like \hspace{1cm} */
1026     noContent,
1027     /* Char, like \backslash */
1028     isChar,
1029     /* replace starting backslash with '#' */
1030     isText,
1031     /* \part, \section*, ... */
1032     isSectioning,
1033     /* title, author etc */
1034     isTitle,
1035     /* \foreignlanguage{ngerman}, ... */
1036     isMain,
1037     /* inside \code{}
1038      * to discard language in content */
1039     noMain,
1040     isRegex,
1041     /* \begin{eqnarray}...\end{eqnarray}, ... $...$ */
1042     isMath,
1043     /* fonts, colors, markups, ... */
1044     isStandard,
1045     /* footnotesize, ... large, ...
1046      * Ignore all of them */
1047     isSize,
1048     invalid,
1049     /* inputencoding, ...
1050      * Discard also content, because they do not help in search */
1051     doRemove,
1052     /* twocolumns, ...
1053      * like remove, but also all arguments */
1054     removeWithArg,
1055     /* item, listitem */
1056     isList,
1057     /* tex, latex, ... like isChar */
1058     isIgnored,
1059     /* like \lettrine[lines=5]{}{} */
1060     cleanToStart,
1061     // like isStandard, but always remove head
1062     headRemove,
1063     /* End of arguments marker for lettrine,
1064      * so that they can be ignored */
1065     endArguments
1066   };
1067  KeyInfo() = default;
1068  KeyInfo(KeyType type, int parcount, bool disable)
1069    : keytype(type),
1070     parenthesiscount(parcount),
1071     disabled(disable) {}
1072   KeyType keytype = invalid;
1073   string head;
1074   int _tokensize = -1;
1075   int _tokenstart = -1;
1076   int _dataStart = -1;
1077   int _dataEnd = -1;
1078   int parenthesiscount = 1;
1079   bool disabled = false;
1080   bool used = false;                    /* by pattern */
1081 };
1082
1083 class Border {
1084  public:
1085  Border(int l=0, int u=0) : low(l), upper(u) {};
1086   int low;
1087   int upper;
1088 };
1089
1090 #define MAXOPENED 30
1091 class Intervall {
1092   bool isPatternString_;
1093 public:
1094   explicit Intervall(bool isPattern, string const & p) :
1095         isPatternString_(isPattern), par(p), ignoreidx(-1), actualdeptindex(0),
1096         hasTitle(false), langcount(0)
1097   {
1098     depts[0] = 0;
1099     closes[0] = 0;
1100   }
1101
1102   string par;
1103   int ignoreidx;
1104   static vector<Border> borders;
1105   int depts[MAXOPENED];
1106   int closes[MAXOPENED];
1107   int actualdeptindex;
1108   int previousNotIgnored(int) const;
1109   int nextNotIgnored(int) const;
1110   void handleOpenP(int i);
1111   void handleCloseP(int i, bool closingAllowed);
1112   void resetOpenedP(int openPos);
1113   void addIntervall(int upper);
1114   void addIntervall(int low, int upper); /* if explicit */
1115   void removeAccents();
1116   void setForDefaultLang(KeyInfo const & defLang) const;
1117   int findclosing(int start, int end, char up, char down, int repeat);
1118   void handleParentheses(int lastpos, bool closingAllowed);
1119   bool hasTitle;
1120   int langcount;        // Number of disabled language specs up to current position in actual interval
1121   int isOpeningPar(int pos) const;
1122   string titleValue;
1123   void output(ostringstream &os, int lastpos);
1124   // string show(int lastpos);
1125 };
1126
1127 vector<Border> Intervall::borders = vector<Border>(30);
1128
1129 int Intervall::isOpeningPar(int pos) const
1130 {
1131   if ((pos < 0) || (size_t(pos) >= par.size()))
1132     return 0;
1133   if (par[pos] != '{')
1134     return 0;
1135   if (size_t(pos) + 2 >= par.size())
1136     return 1;
1137   if (par[pos+2] != '}')
1138     return 1;
1139   if (par[pos+1] == '[' || par[pos+1] == ']')
1140     return 3;
1141   return 1;
1142 }
1143
1144 void Intervall::setForDefaultLang(KeyInfo const & defLang) const
1145 {
1146   // Enable the use of first token again
1147   if (ignoreidx >= 0) {
1148     int value = defLang._tokenstart + defLang._tokensize;
1149     int borderidx = 0;
1150     if (hasTitle) {
1151       borderidx = 1;
1152     }
1153     if (value > 0) {
1154       if (borders[borderidx].low < value)
1155         borders[borderidx].low = value;
1156       if (borders[borderidx].upper < value)
1157         borders[borderidx].upper = value;
1158     }
1159   }
1160 }
1161
1162 static void checkDepthIndex(int val)
1163 {
1164   static int maxdepthidx = MAXOPENED-2;
1165   static int lastmaxdepth = 0;
1166   if (val > lastmaxdepth) {
1167     LYXERR(Debug::INFO, "Depth reached " << val);
1168     lastmaxdepth = val;
1169   }
1170   if (val > maxdepthidx) {
1171     maxdepthidx = val;
1172     LYXERR(Debug::INFO, "maxdepthidx now " << val);
1173   }
1174 }
1175
1176 #if 0
1177 // Not needed, because borders are now dynamically expanded
1178 static void checkIgnoreIdx(int val)
1179 {
1180   static int lastmaxignore = -1;
1181   if ((lastmaxignore < val) && (size_t(val+1) >= borders.size())) {
1182     LYXERR(Debug::INFO, "IgnoreIdx reached " << val);
1183     lastmaxignore = val;
1184   }
1185 }
1186 #endif
1187
1188 /*
1189  * Expand the region of ignored parts of the input latex string
1190  * The region is only relevant in output()
1191  */
1192 void Intervall::addIntervall(int low, int upper)
1193 {
1194   int idx;
1195   if (low == upper) return;
1196   for (idx = ignoreidx+1; idx > 0; --idx) {
1197     if (low > borders[idx-1].upper) {
1198       break;
1199     }
1200   }
1201   Border br(low, upper);
1202   if (idx > ignoreidx) {
1203     if (borders.size() <= size_t(idx)) {
1204       borders.push_back(br);
1205     }
1206     else {
1207       borders[idx] = br;
1208     }
1209     ignoreidx = idx;
1210     // checkIgnoreIdx(ignoreidx);
1211     return;
1212   }
1213   else {
1214     // Expand only if one of the new bound is inside the interwall
1215     // We know here that br.low > borders[idx-1].upper
1216     if (br.upper < borders[idx].low) {
1217       // We have to insert at this pos
1218       if (size_t(ignoreidx+1) >= borders.size()) {
1219         borders.push_back(borders[ignoreidx]);
1220       }
1221       else {
1222         borders[ignoreidx+1] = borders[ignoreidx];
1223       }
1224       for (int i = ignoreidx; i > idx; --i) {
1225         borders[i] = borders[i-1];
1226       }
1227       borders[idx] = br;
1228       ignoreidx += 1;
1229       // checkIgnoreIdx(ignoreidx);
1230       return;
1231     }
1232     // Here we know, that we are overlapping
1233     if (br.low > borders[idx].low)
1234       br.low = borders[idx].low;
1235     // check what has to be concatenated
1236     int count = 0;
1237     for (int i = idx; i <= ignoreidx; i++) {
1238       if (br.upper >= borders[i].low) {
1239         count++;
1240         if (br.upper < borders[i].upper)
1241           br.upper = borders[i].upper;
1242       }
1243       else {
1244         break;
1245       }
1246     }
1247     // count should be >= 1 here
1248     borders[idx] = br;
1249     if (count > 1) {
1250       for (int i = idx + count; i <= ignoreidx; i++) {
1251         borders[i-count+1] = borders[i];
1252       }
1253       ignoreidx -= count - 1;
1254       return;
1255     }
1256   }
1257 }
1258
1259 static void buildaccent(string n, string param, string values)
1260 {
1261   stringstream s(n);
1262   string name;
1263   const char delim = '|';
1264   while (getline(s, name, delim)) {
1265     size_t start = 0;
1266     for (char c : param) {
1267       string key = name + "{" + c + "}";
1268       // get the corresponding utf8-value
1269       if ((values[start] & 0xc0) != 0xc0) {
1270         // should not happen, utf8 encoding starts at least with 11xxxxxx
1271         // but value for '\dot{i}' is 'i', which is ascii
1272         if ((values[start] & 0x80) == 0) {
1273           // is ascii
1274           accents[key] = values.substr(start, 1);
1275           // LYXERR(Debug::INFO, "" << key << "=" << accents[key]);
1276         }
1277         start++;
1278         continue;
1279       }
1280       for (int j = 1; ;j++) {
1281         if (start + j >= values.size()) {
1282           accents[key] = values.substr(start, j);
1283           start = values.size() - 1;
1284           break;
1285         }
1286         else if ((values[start+j] & 0xc0) != 0x80) {
1287           // This is the first byte of following utf8 char
1288           accents[key] = values.substr(start, j);
1289           start += j;
1290           // LYXERR(Debug::INFO, "" << key << "=" << accents[key]);
1291           break;
1292         }
1293       }
1294     }
1295   }
1296 }
1297
1298 // Helper function
1299 static string getutf8(unsigned uchar)
1300 {
1301         #define maxc 5
1302         string ret = string();
1303         char c[maxc] = {0};
1304         if (uchar <= 0x7f) {
1305                 c[maxc-1] = uchar & 0x7f;
1306         }
1307         else {
1308                 unsigned char rest = 0x40;
1309                 unsigned char first = 0x80;
1310                 int start = maxc-1;
1311                 for (int i = start; i >=0; --i) {
1312                         if (uchar < rest) {
1313                                 c[i] = first + uchar;
1314                                 break;
1315                         }
1316                         c[i] = 0x80 | (uchar &  0x3f);
1317                         uchar >>= 6;
1318                         rest >>= 1;
1319                         first >>= 1;
1320                         first |= 0x80;
1321                 }
1322         }
1323         for (int i = 0; i < maxc; i++) {
1324                 if (c[i] == 0) continue;
1325                 ret += c[i];
1326         }
1327         return(ret);
1328 }
1329
1330 static void buildAccentsMap()
1331 {
1332   accents["imath"] = "ı";
1333   accents["i"] = "ı";
1334   accents["jmath"] = "ȷ";
1335   accents["cdot"] = "·";
1336   accents["textasciicircum"] = "^";
1337   accents["mathcircumflex"] = "^";
1338   accents["sim"] = "~";
1339   accents["guillemotright"] = "»";
1340   accents["guillemotleft"] = "«";
1341   accents["hairspace"]     = getutf8(0xf0000);  // select from free unicode plane 15
1342   accents["thinspace"]     = getutf8(0xf0002);  // and used _only_ by findadv
1343   accents["negthinspace"]  = getutf8(0xf0003);  // to omit backslashed latex macros
1344   accents["medspace"]      = getutf8(0xf0004);  // See https://en.wikipedia.org/wiki/Private_Use_Areas
1345   accents["negmedspace"]   = getutf8(0xf0005);
1346   accents["thickspace"]    = getutf8(0xf0006);
1347   accents["negthickspace"] = getutf8(0xf0007);
1348   accents["lyx"]           = getutf8(0xf0010);  // Used logos
1349   accents["LyX"]           = getutf8(0xf0010);
1350   accents["tex"]           = getutf8(0xf0011);
1351   accents["TeX"]           = getutf8(0xf0011);
1352   accents["latex"]         = getutf8(0xf0012);
1353   accents["LaTeX"]         = getutf8(0xf0012);
1354   accents["latexe"]        = getutf8(0xf0013);
1355   accents["LaTeXe"]        = getutf8(0xf0013);
1356   accents["lyxarrow"]      = getutf8(0xf0020);
1357   accents["braceleft"]     = getutf8(0xf0030);
1358   accents["braceright"]    = getutf8(0xf0031);
1359   accents["backslash lyx"]           = getutf8(0xf0010);        // Used logos inserted with starting \backslash
1360   accents["backslash LyX"]           = getutf8(0xf0010);
1361   accents["backslash tex"]           = getutf8(0xf0011);
1362   accents["backslash TeX"]           = getutf8(0xf0011);
1363   accents["backslash latex"]         = getutf8(0xf0012);
1364   accents["backslash LaTeX"]         = getutf8(0xf0012);
1365   accents["backslash latexe"]        = getutf8(0xf0013);
1366   accents["backslash LaTeXe"]        = getutf8(0xf0013);
1367   accents["backslash lyxarrow"]      = getutf8(0xf0020);
1368   accents["ddot{\\imath}"] = "ï";
1369   buildaccent("ddot", "aAeEhHiIioOtuUwWxXyY",
1370                       "äÄëËḧḦïÏïöÖẗüÜẅẄẍẌÿŸ");       // umlaut
1371   buildaccent("dot|.", "aAbBcCdDeEfFGghHIimMnNoOpPrRsStTwWxXyYzZ",
1372                        "ȧȦḃḂċĊḋḊėĖḟḞĠġḣḢİİṁṀṅṄȯȮṗṖṙṘṡṠṫṪẇẆẋẊẏẎżŻ");   // dot{i} can only happen if ignoring case, but there is no lowercase of 'İ'
1373   accents["acute{\\imath}"] = "í";
1374   buildaccent("acute", "aAcCeEgGkKlLmMoOnNpPrRsSuUwWyYzZiI",
1375                        "áÁćĆéÉǵǴḱḰĺĹḿḾóÓńŃṕṔŕŔśŚúÚẃẂýÝźŹíÍ");
1376   buildaccent("dacute|H|h", "oOuU", "őŐűŰ");        // double acute
1377   buildaccent("mathring|r", "aAuUwy",
1378                             "åÅůŮẘẙ");  // ring
1379   accents["check{\\imath}"] = "ǐ";
1380   accents["check{\\jmath}"] = "ǰ";
1381   buildaccent("check|v", "cCdDaAeEiIoOuUgGkKhHlLnNrRsSTtzZ",
1382                          "čČďĎǎǍěĚǐǏǒǑǔǓǧǦǩǨȟȞľĽňŇřŘšŠŤťžŽ");   // caron
1383   accents["hat{\\imath}"] = "î";
1384   accents["hat{\\jmath}"] = "ĵ";
1385   buildaccent("hat|^", "aAcCeEgGhHiIjJoOsSuUwWyYzZ",
1386                        "âÂĉĈêÊĝĜĥĤîÎĵĴôÔŝŜûÛŵŴŷŶẑẐ");       // circ
1387   accents["bar{\\imath}"] = "ī";
1388   buildaccent("bar|=", "aAeEiIoOuUyY",
1389                        "āĀēĒīĪōŌūŪȳȲ");     // macron
1390   accents["tilde{\\imath}"] = "ĩ";
1391   buildaccent("tilde", "aAeEiInNoOuUvVyY",
1392                        "ãÃẽẼĩĨñÑõÕũŨṽṼỹỸ");       // tilde
1393   accents["breve{\\imath}"] = "ĭ";
1394   buildaccent("breve|u", "aAeEgGiIoOuU",
1395                          "ăĂĕĔğĞĭĬŏŎŭŬ");   // breve
1396   accents["grave{\\imath}"] = "ì";
1397   buildaccent("grave|`", "aAeEiIoOuUnNwWyY",
1398                          "àÀèÈìÌòÒùÙǹǸẁẀỳỲ");       // grave
1399   buildaccent("subdot|d", "BbDdHhKkLlMmNnRrSsTtVvWwZzAaEeIiOoUuYy",
1400                           "ḄḅḌḍḤḥḲḳḶḷṂṃṆṇṚṛṢṣṬṭṾṿẈẉẒẓẠạẸẹỊịỌọỤụỴỵ");        // dot below
1401   buildaccent("ogonek|k", "AaEeIiUuOo",
1402                           "ĄąĘęĮįŲųǪǫ");      // ogonek
1403   buildaccent("cedilla|c", "CcGgKkLlNnRrSsTtEeDdHh",
1404                            "ÇçĢģĶķĻļŅņŖŗŞşŢţȨȩḐḑḨḩ"); // cedilla
1405   buildaccent("subring|textsubring", "Aa",
1406                                      "Ḁḁ"); // subring
1407   buildaccent("subhat|textsubcircum", "DdEeLlNnTtUu",
1408                                       "ḒḓḘḙḼḽṊṋṰṱṶṷ");  // subcircum
1409   buildaccent("subtilde|textsubtilde", "EeIiUu",
1410                                        "ḚḛḬḭṴṵ");   // subtilde
1411   accents["dgrave{\\imath}"] = "ȉ";
1412   accents["textdoublegrave{\\i}"] = "ȉ";
1413   buildaccent("dgrave|textdoublegrave", "AaEeIiOoRrUu",
1414                                         "ȀȁȄȅȈȉȌȍȐȑȔȕ"); // double grave
1415   accents["rcap{\\imath}"] = "ȉ";
1416   accents["textroundcap{\\i}"] = "ȉ";
1417   buildaccent("rcap|textroundcap", "AaEeIiOoRrUu",
1418                                    "ȂȃȆȇȊȋȎȏȒȓȖȗ"); // inverted breve
1419   buildaccent("slashed", "oO",
1420                          "øØ"); // slashed
1421 }
1422
1423 /*
1424  * Created accents in math or regexp environment
1425  * are macros, but we need the utf8 equivalent
1426  */
1427 void Intervall::removeAccents()
1428 {
1429   if (accents.empty())
1430     buildAccentsMap();
1431   static regex const accre("\\\\(([\\S]|grave|breve|ddot|dot|acute|dacute|mathring|check|hat|bar|tilde|subdot|ogonek|"
1432          "cedilla|subring|textsubring|subhat|textsubcircum|subtilde|textsubtilde|dgrave|textdoublegrave|rcap|textroundcap|slashed)\\{[^\\{\\}]+\\}"
1433       "|((i|imath|jmath|cdot|[a-z]+space)|((backslash )?([lL]y[xX]|[tT]e[xX]|[lL]a[tT]e[xX]e?|lyxarrow))|(brace|guillemot)(left|right)|textasciicircum|mathcircumflex|sim)(?![a-zA-Z]))");
1434   smatch sub;
1435   for (sregex_iterator itacc(par.begin(), par.end(), accre), end; itacc != end; ++itacc) {
1436     sub = *itacc;
1437     string key = sub.str(1);
1438     if (accents.find(key) != accents.end()) {
1439       string val = accents[key];
1440       size_t pos = sub.position(size_t(0));
1441       for (size_t i = 0; i < val.size(); i++) {
1442         par[pos+i] = val[i];
1443       }
1444       // Remove possibly following space too
1445       if (par[pos+sub.str(0).size()] == ' ')
1446         addIntervall(pos+val.size(), pos + sub.str(0).size()+1);
1447       else
1448         addIntervall(pos+val.size(), pos + sub.str(0).size());
1449       for (size_t i = pos+val.size(); i < pos + sub.str(0).size(); i++) {
1450         // remove traces of any remaining chars
1451         par[i] = ' ';
1452       }
1453     }
1454     else {
1455       LYXERR(Debug::INFO, "Not added accent for \"" << key << "\"");
1456     }
1457   }
1458 }
1459
1460 void Intervall::handleOpenP(int i)
1461 {
1462   actualdeptindex++;
1463   depts[actualdeptindex] = i+1;
1464   closes[actualdeptindex] = -1;
1465   checkDepthIndex(actualdeptindex);
1466 }
1467
1468 void Intervall::handleCloseP(int i, bool closingAllowed)
1469 {
1470   if (actualdeptindex <= 0) {
1471     if (! closingAllowed)
1472       LYXERR(Debug::FIND, "Bad closing parenthesis in latex");  /* should not happen, but the latex input may be wrong */
1473     // if we are at the very end
1474     addIntervall(i, i+1);
1475   }
1476   else {
1477     closes[actualdeptindex] = i+1;
1478     actualdeptindex--;
1479   }
1480 }
1481
1482 void Intervall::resetOpenedP(int openPos)
1483 {
1484   // Used as initializer for foreignlanguage entry
1485   actualdeptindex = 1;
1486   depts[1] = openPos+1;
1487   closes[1] = -1;
1488 }
1489
1490 int Intervall::previousNotIgnored(int start) const
1491 {
1492     int idx = 0;                          /* int intervalls */
1493     for (idx = ignoreidx; idx >= 0; --idx) {
1494       if (start > borders[idx].upper)
1495         return start;
1496       if (start >= borders[idx].low)
1497         start = borders[idx].low-1;
1498     }
1499     return start;
1500 }
1501
1502 int Intervall::nextNotIgnored(int start) const
1503 {
1504     int idx = 0;                          /* int intervalls */
1505     for (idx = 0; idx <= ignoreidx; idx++) {
1506       if (start < borders[idx].low)
1507         return start;
1508       if (start < borders[idx].upper)
1509         start = borders[idx].upper;
1510     }
1511     return start;
1512 }
1513
1514 typedef map<string, KeyInfo> KeysMap;
1515 typedef vector< KeyInfo> Entries;
1516 static KeysMap keys = map<string, KeyInfo>();
1517
1518 class LatexInfo {
1519  private:
1520   int entidx_;
1521   Entries entries_;
1522   Intervall interval_;
1523   void buildKeys(bool);
1524   void buildEntries(bool);
1525   void makeKey(const string &, KeyInfo, bool isPatternString);
1526   void processRegion(int start, int region_end); /*  remove {} parts */
1527   void removeHead(KeyInfo const &, int count=0);
1528
1529  public:
1530  LatexInfo(string const & par, bool isPatternString)
1531          : entidx_(-1), interval_(isPatternString, par)
1532   {
1533     buildKeys(isPatternString);
1534     entries_ = vector<KeyInfo>();
1535     buildEntries(isPatternString);
1536   };
1537   int getFirstKey() {
1538     entidx_ = 0;
1539     if (entries_.empty()) {
1540       return -1;
1541     }
1542     if (entries_[0].keytype == KeyInfo::isTitle) {
1543       interval_.hasTitle = true;
1544       if (! entries_[0].disabled) {
1545         interval_.titleValue = entries_[0].head;
1546       }
1547       else {
1548         interval_.titleValue = "";
1549       }
1550       removeHead(entries_[0]);
1551       if (entries_.size() > 1)
1552         return 1;
1553       else
1554         return -1;
1555     }
1556     return 0;
1557   };
1558   int getNextKey() {
1559     entidx_++;
1560     if (int(entries_.size()) > entidx_) {
1561       return entidx_;
1562     }
1563     else {
1564       return -1;
1565     }
1566   };
1567   bool setNextKey(int idx) {
1568     if ((idx == entidx_) && (entidx_ >= 0)) {
1569       entidx_--;
1570       return true;
1571     }
1572     else
1573       return false;
1574   };
1575   int find(int start, KeyInfo::KeyType keytype) const {
1576     if (start < 0)
1577       return -1;
1578     int tmpIdx = start;
1579     while (tmpIdx < int(entries_.size())) {
1580       if (entries_[tmpIdx].keytype == keytype)
1581         return tmpIdx;
1582       tmpIdx++;
1583     }
1584     return -1;
1585   };
1586   int process(ostringstream & os, KeyInfo const & actual);
1587   int dispatch(ostringstream & os, int previousStart, KeyInfo & actual);
1588   // string show(int lastpos) { return interval.show(lastpos);};
1589   int nextNotIgnored(int start) { return interval_.nextNotIgnored(start);};
1590   KeyInfo &getKeyInfo(int keyinfo) {
1591     static KeyInfo invalidInfo = KeyInfo();
1592     if ((keyinfo < 0) || ( keyinfo >= int(entries_.size())))
1593       return invalidInfo;
1594     else
1595       return entries_[keyinfo];
1596   };
1597   void setForDefaultLang(KeyInfo const & defLang) {interval_.setForDefaultLang(defLang);};
1598   void addIntervall(int low, int up) { interval_.addIntervall(low, up); };
1599 };
1600
1601
1602 int Intervall::findclosing(int start, int end, char up = '{', char down = '}', int repeat = 1)
1603 {
1604   int skip = 0;
1605   int depth = 0;
1606   for (int i = start; i < end; i += 1 + skip) {
1607     char c;
1608     c = par[i];
1609     skip = 0;
1610     if (c == '\\') skip = 1;
1611     else if (c == up) {
1612       depth++;
1613     }
1614     else if (c == down) {
1615       if (depth == 0) {
1616         repeat--;
1617         if ((repeat <= 0) || (par[i+1] != up))
1618           return i;
1619       }
1620       --depth;
1621     }
1622   }
1623   return end;
1624 }
1625
1626 class MathInfo {
1627   class MathEntry {
1628   public:
1629     string wait;
1630     size_t mathEnd;
1631     size_t mathStart;
1632     size_t mathSize;
1633   };
1634   size_t actualIdx_;
1635   vector<MathEntry> entries_;
1636  public:
1637   MathInfo() {
1638     actualIdx_ = 0;
1639   }
1640   void insert(string const & wait, size_t start, size_t end) {
1641     MathEntry m = MathEntry();
1642     m.wait = wait;
1643     m.mathStart = start;
1644     m.mathEnd = end;
1645     m.mathSize = end - start;
1646     entries_.push_back(m);
1647   }
1648   bool empty() const { return entries_.empty(); };
1649   size_t getEndPos() const {
1650     if (entries_.empty() || (actualIdx_ >= entries_.size())) {
1651       return 0;
1652     }
1653     return entries_[actualIdx_].mathEnd;
1654   }
1655   size_t getStartPos() const {
1656     if (entries_.empty() || (actualIdx_ >= entries_.size())) {
1657       return 100000;                    /*  definitely enough? */
1658     }
1659     return entries_[actualIdx_].mathStart;
1660   }
1661   size_t getFirstPos() {
1662     actualIdx_ = 0;
1663     return getStartPos();
1664   }
1665   size_t getSize() const {
1666     if (entries_.empty() || (actualIdx_ >= entries_.size())) {
1667       return size_t(0);
1668     }
1669     return entries_[actualIdx_].mathSize;
1670   }
1671   void incrEntry() { actualIdx_++; };
1672 };
1673
1674 void LatexInfo::buildEntries(bool isPatternString)
1675 {
1676   static regex const rmath("(\\\\)*(\\$|\\\\\\[|\\\\\\]|\\\\(begin|end)\\{((eqnarray|equation|flalign|gather|multline|align|alignat)\\*?)\\})");
1677   static regex const rkeys("(\\\\)*(\\$|\\\\\\[|\\\\\\]|\\\\((([a-zA-Z]+\\*?)(\\{([a-z]+\\*?)\\}|=[0-9]+[a-z]+)?)))");
1678   static bool disableLanguageOverride = false;
1679   smatch sub, submath;
1680   bool evaluatingRegexp = false;
1681   MathInfo mi;
1682   bool evaluatingMath = false;
1683   bool evaluatingCode = false;
1684   size_t codeEnd = 0;
1685   bool evaluatingOptional = false;
1686   size_t optionalEnd = 0;
1687   int codeStart = -1;
1688   KeyInfo found;
1689   bool math_end_waiting = false;
1690   size_t math_pos = 10000;
1691   string math_end;
1692   static vector<string> usedText = vector<string>();
1693
1694   interval_.removeAccents();
1695
1696   for (sregex_iterator itmath(interval_.par.begin(), interval_.par.end(), rmath), end; itmath != end; ++itmath) {
1697     submath = *itmath;
1698     if ((submath.position(2) - submath.position(0)) %2 == 1) {
1699       // prefixed by odd count of '\\'
1700       continue;
1701     }
1702     if (math_end_waiting) {
1703       size_t pos = submath.position(size_t(2));
1704       if ((math_end == "$") &&
1705           (submath.str(2) == "$")) {
1706         mi.insert("$", math_pos, pos + 1);
1707         math_end_waiting = false;
1708       }
1709       else if ((math_end == "\\]") &&
1710                (submath.str(2) == "\\]")) {
1711         mi.insert("\\]", math_pos, pos + 2);
1712         math_end_waiting = false;
1713       }
1714       else if ((submath.str(3).compare("end") == 0) &&
1715           (submath.str(4).compare(math_end) == 0)) {
1716         mi.insert(math_end, math_pos, pos + submath.str(2).length());
1717         math_end_waiting = false;
1718       }
1719       else
1720         continue;
1721     }
1722     else {
1723       if (submath.str(3).compare("begin") == 0) {
1724         math_end_waiting = true;
1725         math_end = submath.str(4);
1726         math_pos = submath.position(size_t(2));
1727       }
1728       else if (submath.str(2).compare("\\[") == 0) {
1729         math_end_waiting = true;
1730         math_end = "\\]";
1731         math_pos = submath.position(size_t(2));
1732       }
1733       else if (submath.str(2) == "$") {
1734         size_t pos = submath.position(size_t(2));
1735         math_end_waiting = true;
1736         math_end = "$";
1737         math_pos = pos;
1738       }
1739     }
1740   }
1741   // Ignore language if there is math somewhere in pattern-string
1742   if (isPatternString) {
1743     for (auto s: usedText) {
1744       // Remove entries created in previous search runs
1745       keys.erase(s);
1746     }
1747     usedText = vector<string>();
1748     if (! mi.empty()) {
1749       // Disable language
1750       keys["foreignlanguage"].disabled = true;
1751       disableLanguageOverride = true;
1752     }
1753     else
1754       disableLanguageOverride = false;
1755   }
1756   else {
1757     if (disableLanguageOverride) {
1758       keys["foreignlanguage"].disabled = true;
1759     }
1760   }
1761   math_pos = mi.getFirstPos();
1762   for (sregex_iterator it(interval_.par.begin(), interval_.par.end(), rkeys), end; it != end; ++it) {
1763     sub = *it;
1764     if ((sub.position(2) - sub.position(0)) %2 == 1) {
1765       // prefixed by odd count of '\\'
1766       continue;
1767     }
1768     string key = sub.str(5);
1769     if (key == "") {
1770       if (sub.str(2)[0] == '\\')
1771         key = sub.str(2)[1];
1772       else {
1773         key = sub.str(2);
1774       }
1775     }
1776     if (keys.find(key) != keys.end()) {
1777       if (keys[key].keytype == KeyInfo::headRemove) {
1778         KeyInfo found1 = keys[key];
1779         found1.disabled = true;
1780         found1.head = "\\" + key + "{";
1781         found1._tokenstart = sub.position(size_t(2));
1782         found1._tokensize = found1.head.length();
1783         found1._dataStart = found1._tokenstart + found1.head.length();
1784         int endpos = interval_.findclosing(found1._dataStart, interval_.par.length(), '{', '}', 1);
1785         found1._dataEnd = endpos;
1786         removeHead(found1);
1787         continue;
1788       }
1789     }
1790     if (evaluatingRegexp) {
1791       if (sub.str(3).compare("endregexp") == 0) {
1792         evaluatingRegexp = false;
1793         // found._tokenstart already set
1794         found._dataEnd = sub.position(size_t(2)) + 13;
1795         found._dataStart = found._dataEnd;
1796         found._tokensize = found._dataEnd - found._tokenstart;
1797         found.parenthesiscount = 0;
1798         found.head = interval_.par.substr(found._tokenstart, found._tokensize);
1799       }
1800       else {
1801         continue;
1802       }
1803     }
1804     else {
1805       if (evaluatingMath) {
1806         if (size_t(sub.position(size_t(2))) < mi.getEndPos())
1807           continue;
1808         evaluatingMath = false;
1809         mi.incrEntry();
1810         math_pos = mi.getStartPos();
1811       }
1812       if (keys.find(key) == keys.end()) {
1813         found = KeyInfo(KeyInfo::isStandard, 0, true);
1814         LYXERR(Debug::INFO, "Undefined key " << key << " ==> will be used as text");
1815         found = KeyInfo(KeyInfo::isText, 0, false);
1816         if (isPatternString) {
1817           found.keytype = KeyInfo::isChar;
1818           found.disabled = false;
1819           found.used = true;
1820         }
1821         keys[key] = found;
1822         usedText.push_back(key);
1823       }
1824       else
1825         found = keys[key];
1826       if (key.compare("regexp") == 0) {
1827         evaluatingRegexp = true;
1828         found._tokenstart = sub.position(size_t(2));
1829         found._tokensize = 0;
1830         continue;
1831       }
1832     }
1833     // Handle the other params of key
1834     if (found.keytype == KeyInfo::isIgnored)
1835       continue;
1836     else if (found.keytype == KeyInfo::isMath) {
1837       if (size_t(sub.position(size_t(2))) == math_pos) {
1838         found = keys[key];
1839         found._tokenstart = sub.position(size_t(2));
1840         found._tokensize = mi.getSize();
1841         found._dataEnd = found._tokenstart + found._tokensize;
1842         found._dataStart = found._dataEnd;
1843         found.parenthesiscount = 0;
1844         found.head = interval_.par.substr(found._tokenstart, found._tokensize);
1845         evaluatingMath = true;
1846       }
1847       else {
1848         // begin|end of unknown env, discard
1849         // First handle tables
1850         // longtable|tabular
1851         bool discardComment;
1852         found = keys[key];
1853         found.keytype = KeyInfo::doRemove;
1854         if ((sub.str(7).compare("longtable") == 0) ||
1855             (sub.str(7).compare("tabular") == 0)) {
1856           discardComment = true;        /* '%' */
1857         }
1858         else {
1859           discardComment = false;
1860           static regex const removeArgs("^(multicols|multipar|sectionbox|subsectionbox|tcolorbox)$");
1861           smatch sub2;
1862           string token = sub.str(7);
1863           if (regex_match(token, sub2, removeArgs)) {
1864             found.keytype = KeyInfo::removeWithArg;
1865           }
1866         }
1867         // discard spaces before pos(2)
1868         int pos = sub.position(size_t(2));
1869         int count;
1870         for (count = 0; pos - count > 0; count++) {
1871           char c = interval_.par[pos-count-1];
1872           if (discardComment) {
1873             if ((c != ' ') && (c != '%'))
1874               break;
1875           }
1876           else if (c != ' ')
1877             break;
1878         }
1879         found._tokenstart = pos - count;
1880         if (sub.str(3).compare(0, 5, "begin") == 0) {
1881           size_t pos1 = pos + sub.str(2).length();
1882           if (sub.str(7).compare("cjk") == 0) {
1883             pos1 = interval_.findclosing(pos1+1, interval_.par.length()) + 1;
1884             if ((interval_.par[pos1] == '{') && (interval_.par[pos1+1] == '}'))
1885               pos1 += 2;
1886             found.keytype = KeyInfo::isMain;
1887             found._dataStart = pos1;
1888             found._dataEnd = interval_.par.length();
1889             found.disabled = keys["foreignlanguage"].disabled;
1890             found.used = keys["foreignlanguage"].used;
1891             found._tokensize = pos1 - found._tokenstart;
1892             found.head = interval_.par.substr(found._tokenstart, found._tokensize);
1893           }
1894           else {
1895             // Swallow possible optional params
1896             while (interval_.par[pos1] == '[') {
1897               pos1 = interval_.findclosing(pos1+1, interval_.par.length(), '[', ']')+1;
1898             }
1899             // Swallow also the eventual parameter
1900             if (interval_.par[pos1] == '{') {
1901               found._dataEnd = interval_.findclosing(pos1+1, interval_.par.length()) + 1;
1902             }
1903             else {
1904               found._dataEnd = pos1;
1905             }
1906             found._dataStart = found._dataEnd;
1907             found._tokensize = count + found._dataEnd - pos;
1908             found.parenthesiscount = 0;
1909             found.head = interval_.par.substr(found._tokenstart, found._tokensize);
1910             found.disabled = true;
1911           }
1912         }
1913         else {
1914           // Handle "\end{...}"
1915           found._dataStart = pos + sub.str(2).length();
1916           found._dataEnd = found._dataStart;
1917           found._tokensize = count + found._dataEnd - pos;
1918           found.parenthesiscount = 0;
1919           found.head = interval_.par.substr(found._tokenstart, found._tokensize);
1920           found.disabled = true;
1921         }
1922       }
1923     }
1924     else if (found.keytype != KeyInfo::isRegex) {
1925       found._tokenstart = sub.position(size_t(2));
1926       if (found.parenthesiscount == 0) {
1927         // Probably to be discarded
1928         size_t following_pos = sub.position(size_t(2)) + sub.str(5).length() + 1;
1929         char following = interval_.par[following_pos];
1930         if (following == ' ')
1931           found.head = "\\" + sub.str(5) + " ";
1932         else if (following == '=') {
1933           // like \uldepth=1000pt
1934           found.head = sub.str(2);
1935         }
1936         else
1937           found.head = "\\" + key;
1938         found._tokensize = found.head.length();
1939         found._dataEnd = found._tokenstart + found._tokensize;
1940         found._dataStart = found._dataEnd;
1941       }
1942       else {
1943         int params = found._tokenstart + key.length() + 1;
1944         if (evaluatingOptional) {
1945           if (size_t(found._tokenstart) > optionalEnd) {
1946             evaluatingOptional = false;
1947           }
1948           else {
1949             found.disabled = true;
1950           }
1951         }
1952         int optend = params;
1953         while (interval_.par[optend] == '[') {
1954           // discard optional parameters
1955           optend = interval_.findclosing(optend+1, interval_.par.length(), '[', ']') + 1;
1956         }
1957         if (optend > params) {
1958           key += interval_.par.substr(params, optend-params);
1959           evaluatingOptional = true;
1960           optionalEnd = optend;
1961           if (found.keytype == KeyInfo::isSectioning) {
1962             // Remove optional values (but still keep in header)
1963             interval_.addIntervall(params, optend);
1964           }
1965         }
1966         string token = sub.str(7);
1967         int closings;
1968         if (interval_.par[optend] != '{') {
1969           closings = 0;
1970           found.parenthesiscount = 0;
1971           found.head = "\\" + key;
1972         }
1973         else
1974           closings = found.parenthesiscount;
1975         if (found.parenthesiscount == 1) {
1976           found.head = "\\" + key + "{";
1977         }
1978         else if (found.parenthesiscount > 1) {
1979           if (token != "") {
1980             found.head = sub.str(2) + "{";
1981             closings = found.parenthesiscount - 1;
1982           }
1983           else {
1984             found.head = "\\" + key + "{";
1985           }
1986         }
1987         found._tokensize = found.head.length();
1988         found._dataStart = found._tokenstart + found.head.length();
1989         if (found.keytype == KeyInfo::doRemove) {
1990           if (closings > 0) {
1991             size_t endpar = 2 + interval_.findclosing(found._dataStart, interval_.par.length(), '{', '}', closings);
1992             if (endpar >= interval_.par.length())
1993               found._dataStart = interval_.par.length();
1994             else
1995               found._dataStart = endpar;
1996             found._tokensize = found._dataStart - found._tokenstart;
1997           }
1998           else {
1999             found._dataStart = found._tokenstart + found._tokensize;
2000           }
2001           closings = 0;
2002         }
2003         if (interval_.par.substr(found._dataStart, 15).compare("\\endarguments{}") == 0) {
2004           found._dataStart += 15;
2005         }
2006         size_t endpos;
2007         if (closings < 1)
2008           endpos = found._dataStart - 1;
2009         else
2010           endpos = interval_.findclosing(found._dataStart, interval_.par.length(), '{', '}', closings);
2011         if (found.keytype == KeyInfo::isList) {
2012           // Check if it really is list env
2013           static regex const listre("^([a-z]+)$");
2014           smatch sub2;
2015           if (!regex_match(token, sub2, listre)) {
2016             // Change the key of this entry. It is not in a list/item environment
2017             found.keytype = KeyInfo::endArguments;
2018           }
2019         }
2020         if (found.keytype == KeyInfo::noMain) {
2021           evaluatingCode = true;
2022           codeEnd = endpos;
2023           codeStart = found._dataStart;
2024         }
2025         else if (evaluatingCode) {
2026           if (size_t(found._dataStart) > codeEnd)
2027             evaluatingCode = false;
2028           else if (found.keytype == KeyInfo::isMain) {
2029             // Disable this key, treate it as standard
2030             found.keytype = KeyInfo::isStandard;
2031             found.disabled = true;
2032             if ((codeEnd +1 >= interval_.par.length()) &&
2033                 (found._tokenstart == codeStart)) {
2034               // trickery, because the code inset starts
2035               // with \selectlanguage ...
2036               codeEnd = endpos;
2037               if (entries_.size() > 1) {
2038                 entries_[entries_.size()-1]._dataEnd = codeEnd;
2039               }
2040             }
2041           }
2042         }
2043         if ((endpos == interval_.par.length()) &&
2044             (found.keytype == KeyInfo::doRemove)) {
2045           // Missing closing => error in latex-input?
2046           // therefore do not delete remaining data
2047           found._dataStart -= 1;
2048           found._dataEnd = found._dataStart;
2049         }
2050         else
2051           found._dataEnd = endpos;
2052       }
2053       if (isPatternString) {
2054         keys[key].used = true;
2055       }
2056     }
2057     entries_.push_back(found);
2058   }
2059 }
2060
2061 void LatexInfo::makeKey(const string &keysstring, KeyInfo keyI, bool isPatternString)
2062 {
2063   stringstream s(keysstring);
2064   string key;
2065   const char delim = '|';
2066   while (getline(s, key, delim)) {
2067     KeyInfo keyII(keyI);
2068     if (isPatternString) {
2069       keyII.used = false;
2070     }
2071     else if ( !keys[key].used)
2072       keyII.disabled = true;
2073     keys[key] = keyII;
2074   }
2075 }
2076
2077 void LatexInfo::buildKeys(bool isPatternString)
2078 {
2079
2080   static bool keysBuilt = false;
2081   if (keysBuilt && !isPatternString) return;
2082
2083   // Keys to ignore in any case
2084   makeKey("text|textcyrillic|lyxmathsym", KeyInfo(KeyInfo::headRemove, 1, true), true);
2085   // Known standard keys with 1 parameter.
2086   // Split is done, if not at start of region
2087   makeKey("textsf|textss|texttt", KeyInfo(KeyInfo::isStandard, 1, ignoreFormats.getFamily()), isPatternString);
2088   makeKey("textbf",               KeyInfo(KeyInfo::isStandard, 1, ignoreFormats.getSeries()), isPatternString);
2089   makeKey("textit|textsc|textsl", KeyInfo(KeyInfo::isStandard, 1, ignoreFormats.getShape()), isPatternString);
2090   makeKey("uuline|uline|uwave",   KeyInfo(KeyInfo::isStandard, 1, ignoreFormats.getUnderline()), isPatternString);
2091   makeKey("emph|noun",            KeyInfo(KeyInfo::isStandard, 1, ignoreFormats.getMarkUp()), isPatternString);
2092   makeKey("sout|xout",            KeyInfo(KeyInfo::isStandard, 1, ignoreFormats.getStrikeOut()), isPatternString);
2093
2094   makeKey("section|subsection|subsubsection|paragraph|subparagraph|minisec",
2095           KeyInfo(KeyInfo::isSectioning, 1, ignoreFormats.getSectioning()), isPatternString);
2096   makeKey("section*|subsection*|subsubsection*|paragraph*",
2097           KeyInfo(KeyInfo::isSectioning, 1, ignoreFormats.getSectioning()), isPatternString);
2098   makeKey("part|part*|chapter|chapter*", KeyInfo(KeyInfo::isSectioning, 1, ignoreFormats.getSectioning()), isPatternString);
2099   makeKey("title|subtitle|author|subject|publishers|dedication|uppertitleback|lowertitleback|extratitle|lyxaddress|lyxrightaddress", KeyInfo(KeyInfo::isTitle, 1, ignoreFormats.getFrontMatter()), isPatternString);
2100   // Regex
2101   makeKey("regexp", KeyInfo(KeyInfo::isRegex, 1, false), isPatternString);
2102
2103   // Split is done, if not at start of region
2104   makeKey("textcolor", KeyInfo(KeyInfo::isStandard, 2, ignoreFormats.getColor()), isPatternString);
2105   makeKey("latexenvironment", KeyInfo(KeyInfo::isStandard, 2, false), isPatternString);
2106
2107   // Split is done always.
2108   makeKey("foreignlanguage", KeyInfo(KeyInfo::isMain, 2, ignoreFormats.getLanguage()), isPatternString);
2109
2110   // Known charaters
2111   // No split
2112   makeKey("backslash|textbackslash|slash",  KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2113   makeKey("textasciicircum|textasciitilde", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2114   makeKey("textasciiacute|texemdash",       KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2115   makeKey("dots|ldots",                     KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2116   // Spaces
2117   makeKey("quad|qquad|hfill|dotfill",               KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2118   makeKey("textvisiblespace|nobreakspace",          KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2119   makeKey("negthickspace|negmedspace|negthinspace", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2120   makeKey("thickspace|medspace|thinspace",          KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2121   // Skip
2122   // makeKey("enskip|smallskip|medskip|bigskip|vfill", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2123   // Custom space/skip, remove the content (== length value)
2124   makeKey("vspace|vspace*|hspace|hspace*|mspace", KeyInfo(KeyInfo::noContent, 1, false), isPatternString);
2125   // Found in fr/UserGuide.lyx
2126   makeKey("og|fg", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2127   // quotes
2128   makeKey("textquotedbl|quotesinglbase|lyxarrow", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2129   makeKey("textquotedblleft|textquotedblright", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2130   // Known macros to remove (including their parameter)
2131   // No split
2132   makeKey("input|inputencoding|label|ref|index|bibitem", KeyInfo(KeyInfo::doRemove, 1, false), isPatternString);
2133   makeKey("addtocounter|setlength",                 KeyInfo(KeyInfo::noContent, 2, true), isPatternString);
2134   // handle like standard keys with 1 parameter.
2135   makeKey("url|href|vref|thanks", KeyInfo(KeyInfo::isStandard, 1, false), isPatternString);
2136
2137   // Ignore deleted text
2138   makeKey("lyxdeleted", KeyInfo(KeyInfo::doRemove, 3, false), isPatternString);
2139   // but preserve added text
2140   makeKey("lyxadded", KeyInfo(KeyInfo::doRemove, 2, false), isPatternString);
2141
2142   // Macros to remove, but let the parameter survive
2143   // No split
2144   makeKey("menuitem|textmd|textrm", KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
2145
2146   // Remove language spec from content of these insets
2147   makeKey("code", KeyInfo(KeyInfo::noMain, 1, false), isPatternString);
2148
2149   // Same effect as previous, parameter will survive (because there is no one anyway)
2150   // No split
2151   makeKey("noindent|textcompwordmark|maketitle", KeyInfo(KeyInfo::isStandard, 0, true), isPatternString);
2152   // Remove table decorations
2153   makeKey("hline|tabularnewline|toprule|bottomrule|midrule", KeyInfo(KeyInfo::doRemove, 0, true), isPatternString);
2154   // Discard shape-header.
2155   // For footnote or shortcut too, because of lang settings
2156   // and wrong handling if used 'KeyInfo::noMain'
2157   makeKey("circlepar|diamondpar|heartpar|nutpar",  KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
2158   makeKey("trianglerightpar|hexagonpar|starpar",   KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
2159   makeKey("triangleuppar|triangledownpar|droppar", KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
2160   makeKey("triangleleftpar|shapepar|dropuppar",    KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
2161   makeKey("hphantom|vphantom|footnote|shortcut|include|includegraphics",     KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
2162   makeKey("parbox", KeyInfo(KeyInfo::doRemove, 1, true), isPatternString);
2163   // like ('tiny{}' or '\tiny ' ... )
2164   makeKey("footnotesize|tiny|scriptsize|small|large|Large|LARGE|huge|Huge", KeyInfo(KeyInfo::isSize, 0, false), isPatternString);
2165
2166   // Survives, like known character
2167   // makeKey("lyx|LyX|latex|LaTeX|latexe|LaTeXe|tex|TeX", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2168   makeKey("tableofcontents", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
2169   makeKey("item|listitem", KeyInfo(KeyInfo::isList, 1, false), isPatternString);
2170
2171   makeKey("begin|end", KeyInfo(KeyInfo::isMath, 1, false), isPatternString);
2172   makeKey("[|]", KeyInfo(KeyInfo::isMath, 1, false), isPatternString);
2173   makeKey("$", KeyInfo(KeyInfo::isMath, 1, false), isPatternString);
2174
2175   makeKey("par|uldepth|ULdepth|protect|nobreakdash|medskip|relax", KeyInfo(KeyInfo::isStandard, 0, true), isPatternString);
2176   // Remove RTL/LTR marker
2177   makeKey("l|r|textlr|textfr|textar|beginl|endl", KeyInfo(KeyInfo::isStandard, 0, true), isPatternString);
2178   makeKey("lettrine", KeyInfo(KeyInfo::cleanToStart, 0, true), isPatternString);
2179   makeKey("lyxslide", KeyInfo(KeyInfo::isSectioning, 1, true), isPatternString);
2180   makeKey("endarguments", KeyInfo(KeyInfo::endArguments, 0, true), isPatternString);
2181   makeKey("twocolumn", KeyInfo(KeyInfo::removeWithArg, 2, true), isPatternString);
2182   makeKey("tnotetext|ead|fntext|cortext|address", KeyInfo(KeyInfo::removeWithArg, 0, true), isPatternString);
2183   makeKey("lyxend", KeyInfo(KeyInfo::isStandard, 0, true), isPatternString);
2184   if (isPatternString) {
2185     // Allow the first searched string to rebuild the keys too
2186     keysBuilt = false;
2187   }
2188   else {
2189     // no need to rebuild again
2190     keysBuilt = true;
2191   }
2192 }
2193
2194 /*
2195  * Keep the list of actual opened parentheses actual
2196  * (e.g. depth == 4 means there are 4 '{' not processed yet)
2197  */
2198 void Intervall::handleParentheses(int lastpos, bool closingAllowed)
2199 {
2200   int skip = 0;
2201   for (int i = depts[actualdeptindex]; i < lastpos; i+= 1 + skip) {
2202     char c;
2203     c = par[i];
2204     skip = 0;
2205     if (c == '\\') skip = 1;
2206     else if (c == '{') {
2207       handleOpenP(i);
2208     }
2209     else if (c == '}') {
2210       handleCloseP(i, closingAllowed);
2211     }
2212   }
2213 }
2214
2215 #if (0)
2216 string Intervall::show(int lastpos)
2217 {
2218   int idx = 0;                          /* int intervalls */
2219   string s;
2220   int i = 0;
2221   for (idx = 0; idx <= ignoreidx; idx++) {
2222     while (i < lastpos) {
2223       int printsize;
2224       if (i <= borders[idx].low) {
2225         if (borders[idx].low > lastpos)
2226           printsize = lastpos - i;
2227         else
2228           printsize = borders[idx].low - i;
2229         s += par.substr(i, printsize);
2230         i += printsize;
2231         if (i >= borders[idx].low)
2232           i = borders[idx].upper;
2233       }
2234       else {
2235         i = borders[idx].upper;
2236         break;
2237       }
2238     }
2239   }
2240   if (lastpos > i) {
2241     s += par.substr(i, lastpos-i);
2242   }
2243   return s;
2244 }
2245 #endif
2246
2247 void Intervall::output(ostringstream &os, int lastpos)
2248 {
2249   // get number of chars to output
2250   int idx = 0;                          /* int intervalls */
2251   int i = 0;
2252   int printed = 0;
2253   string startTitle = titleValue;
2254   for (idx = 0; idx <= ignoreidx; idx++) {
2255     if (i < lastpos) {
2256       if (i <= borders[idx].low) {
2257         int printsize;
2258         if (borders[idx].low > lastpos)
2259           printsize = lastpos - i;
2260         else
2261           printsize = borders[idx].low - i;
2262         if (printsize > 0) {
2263           os << startTitle << par.substr(i, printsize);
2264           i += printsize;
2265           printed += printsize;
2266           startTitle = "";
2267         }
2268         handleParentheses(i, false);
2269         if (i >= borders[idx].low)
2270           i = borders[idx].upper;
2271       }
2272       else {
2273         i = borders[idx].upper;
2274       }
2275     }
2276     else
2277       break;
2278   }
2279   if (lastpos > i) {
2280     os << startTitle << par.substr(i, lastpos-i);
2281     printed += lastpos-i;
2282   }
2283   handleParentheses(lastpos, false);
2284   int startindex;
2285   if (keys["foreignlanguage"].disabled)
2286     startindex = actualdeptindex-langcount;
2287   else
2288     startindex = actualdeptindex;
2289   for (int i = startindex; i > 0; --i) {
2290     os << "}";
2291   }
2292   if (hasTitle && (printed > 0))
2293     os << "}";
2294   if (! isPatternString_)
2295     os << "\n";
2296   handleParentheses(lastpos, true); /* extra closings '}' allowed here */
2297 }
2298
2299 void LatexInfo::processRegion(int start, int region_end)
2300 {
2301   while (start < region_end) {          /* Let {[} and {]} survive */
2302     int cnt = interval_.isOpeningPar(start);
2303     if (cnt == 1) {
2304       // Closing is allowed past the region
2305       int closing = interval_.findclosing(start+1, interval_.par.length());
2306       interval_.addIntervall(start, start+1);
2307       interval_.addIntervall(closing, closing+1);
2308     }
2309     else if (cnt == 3)
2310       start += 2;
2311     start = interval_.nextNotIgnored(start+1);
2312   }
2313 }
2314
2315 void LatexInfo::removeHead(KeyInfo const & actual, int count)
2316 {
2317   if (actual.parenthesiscount == 0) {
2318     // "{\tiny{} ...}" ==> "{{} ...}"
2319     interval_.addIntervall(actual._tokenstart-count, actual._tokenstart + actual._tokensize);
2320   }
2321   else {
2322     // Remove header hull, that is "\url{abcd}" ==> "abcd"
2323     interval_.addIntervall(actual._tokenstart - count, actual._dataStart);
2324     interval_.addIntervall(actual._dataEnd, actual._dataEnd+1);
2325   }
2326 }
2327
2328 int LatexInfo::dispatch(ostringstream &os, int previousStart, KeyInfo &actual)
2329 {
2330   int nextKeyIdx = 0;
2331   switch (actual.keytype)
2332   {
2333     case KeyInfo::isTitle: {
2334       removeHead(actual);
2335       nextKeyIdx = getNextKey();
2336       break;
2337     }
2338     case KeyInfo::cleanToStart: {
2339       actual._dataEnd = actual._dataStart;
2340       nextKeyIdx = getNextKey();
2341       // Search for end of arguments
2342       int tmpIdx = find(nextKeyIdx, KeyInfo::endArguments);
2343       if (tmpIdx > 0) {
2344         for (int i = nextKeyIdx; i <= tmpIdx; i++) {
2345           entries_[i].disabled = true;
2346         }
2347         actual._dataEnd = entries_[tmpIdx]._dataEnd;
2348       }
2349       while (interval_.par[actual._dataEnd] == ' ')
2350         actual._dataEnd++;
2351       interval_.addIntervall(0, actual._dataEnd+1);
2352       interval_.actualdeptindex = 0;
2353       interval_.depts[0] = actual._dataEnd+1;
2354       interval_.closes[0] = -1;
2355       break;
2356     }
2357     case KeyInfo::isText:
2358       interval_.par[actual._tokenstart] = '#';
2359       //interval_.addIntervall(actual._tokenstart, actual._tokenstart+1);
2360       nextKeyIdx = getNextKey();
2361       break;
2362     case KeyInfo::noContent: {          /* char like "\hspace{2cm}" */
2363       if (actual.disabled)
2364         interval_.addIntervall(actual._tokenstart, actual._dataEnd);
2365       else
2366         interval_.addIntervall(actual._dataStart, actual._dataEnd);
2367     }
2368       // fall through
2369     case KeyInfo::isChar: {
2370       nextKeyIdx = getNextKey();
2371       break;
2372     }
2373     case KeyInfo::isSize: {
2374       if (actual.disabled || (interval_.par[actual._dataStart] != '{') || (interval_.par[actual._dataStart-1] == ' ')) {
2375         if (actual.parenthesiscount == 0)
2376           interval_.addIntervall(actual._tokenstart, actual._dataEnd);
2377         else {
2378           interval_.addIntervall(actual._tokenstart, actual._dataEnd+1);
2379         }
2380         nextKeyIdx = getNextKey();
2381       } else {
2382         // Here _dataStart points to '{', so correct it
2383         actual._dataStart += 1;
2384         actual._tokensize += 1;
2385         actual.parenthesiscount = 1;
2386         if (interval_.par[actual._dataStart] == '}') {
2387           // Determine the end if used like '{\tiny{}...}'
2388           actual._dataEnd = interval_.findclosing(actual._dataStart+1, interval_.par.length()) + 1;
2389           interval_.addIntervall(actual._dataStart, actual._dataStart+1);
2390         }
2391         else {
2392           // Determine the end if used like '\tiny{...}'
2393           actual._dataEnd = interval_.findclosing(actual._dataStart, interval_.par.length()) + 1;
2394         }
2395         // Split on this key if not at start
2396         int start = interval_.nextNotIgnored(previousStart);
2397         if (start < actual._tokenstart) {
2398           interval_.output(os, actual._tokenstart);
2399           interval_.addIntervall(start, actual._tokenstart);
2400         }
2401         // discard entry if at end of actual
2402         nextKeyIdx = process(os, actual);
2403       }
2404       break;
2405     }
2406     case KeyInfo::endArguments: {
2407       // Remove trailing '{}' too
2408       actual._dataStart += 1;
2409       actual._dataEnd += 1;
2410       interval_.addIntervall(actual._tokenstart, actual._dataEnd+1);
2411       nextKeyIdx = getNextKey();
2412       break;
2413     }
2414     case KeyInfo::noMain:
2415       // fall through
2416     case KeyInfo::isStandard: {
2417       if (actual.disabled) {
2418         removeHead(actual);
2419         processRegion(actual._dataStart, actual._dataStart+1);
2420         nextKeyIdx = getNextKey();
2421       } else {
2422         // Split on this key if not at datastart of calling entry
2423         int start = interval_.nextNotIgnored(previousStart);
2424         if (start < actual._tokenstart) {
2425           interval_.output(os, actual._tokenstart);
2426           interval_.addIntervall(start, actual._tokenstart);
2427         }
2428         // discard entry if at end of actual
2429         nextKeyIdx = process(os, actual);
2430       }
2431       break;
2432     }
2433     case KeyInfo::removeWithArg: {
2434       nextKeyIdx = getNextKey();
2435       // Search for end of arguments
2436       int tmpIdx = find(nextKeyIdx, KeyInfo::endArguments);
2437       if (tmpIdx > 0) {
2438         for (int i = nextKeyIdx; i <= tmpIdx; i++) {
2439           entries_[i].disabled = true;
2440         }
2441         actual._dataEnd = entries_[tmpIdx]._dataEnd;
2442       }
2443       interval_.addIntervall(actual._tokenstart, actual._dataEnd+1);
2444       break;
2445     }
2446     case KeyInfo::doRemove: {
2447       // Remove the key with all parameters and following spaces
2448       size_t pos;
2449       size_t start;
2450       if (interval_.par[actual._dataEnd-1] == ' ')
2451         start = actual._dataEnd;
2452       else
2453         start = actual._dataEnd+1;
2454       for (pos = start; pos < interval_.par.length(); pos++) {
2455         if ((interval_.par[pos] != ' ') && (interval_.par[pos] != '%'))
2456           break;
2457       }
2458       // Remove also enclosing parentheses [] and {}
2459       int numpars = 0;
2460       int spaces = 0;
2461       while (actual._tokenstart > numpars) {
2462         if (pos+numpars >= interval_.par.size())
2463           break;
2464         else if (interval_.par[pos+numpars] == ']' && interval_.par[actual._tokenstart-numpars-1] == '[')
2465           numpars++;
2466         else if (interval_.par[pos+numpars] == '}' && interval_.par[actual._tokenstart-numpars-1] == '{')
2467           numpars++;
2468         else
2469           break;
2470       }
2471       if (numpars > 0) {
2472         if (interval_.par[pos+numpars] == ' ')
2473           spaces++;
2474       }
2475
2476       interval_.addIntervall(actual._tokenstart-numpars, pos+numpars+spaces);
2477       nextKeyIdx = getNextKey();
2478       break;
2479     }
2480     case KeyInfo::isList: {
2481       // Discard space before _tokenstart
2482       int count;
2483       for (count = 0; count < actual._tokenstart; count++) {
2484         if (interval_.par[actual._tokenstart-count-1] != ' ')
2485           break;
2486       }
2487       nextKeyIdx = getNextKey();
2488       int tmpIdx = find(nextKeyIdx, KeyInfo::endArguments);
2489       if (tmpIdx > 0) {
2490         // Special case: \item is not a list, but a command (like in Style Author_Biography in maa-monthly.layout)
2491         // with arguments
2492         // How else can we catch this one?
2493         for (int i = nextKeyIdx; i <= tmpIdx; i++) {
2494           entries_[i].disabled = true;
2495         }
2496         actual._dataEnd = entries_[tmpIdx]._dataEnd;
2497       }
2498       else if (nextKeyIdx > 0) {
2499         // Ignore any lang entries inside data region
2500         for (int i = nextKeyIdx; i < int(entries_.size()) && entries_[i]._tokenstart < actual._dataEnd; i++) {
2501           if (entries_[i].keytype == KeyInfo::isMain)
2502             entries_[i].disabled = true;
2503         }
2504       }
2505       if (actual.disabled) {
2506         interval_.addIntervall(actual._tokenstart-count, actual._dataEnd+1);
2507       }
2508       else {
2509         interval_.addIntervall(actual._tokenstart-count, actual._tokenstart);
2510       }
2511       if (interval_.par[actual._dataEnd+1] == '[') {
2512         int posdown = interval_.findclosing(actual._dataEnd+2, interval_.par.length(), '[', ']');
2513         if ((interval_.par[actual._dataEnd+2] == '{') &&
2514             (interval_.par[posdown-1] == '}')) {
2515           interval_.addIntervall(actual._dataEnd+1,actual._dataEnd+3);
2516           interval_.addIntervall(posdown-1, posdown+1);
2517         }
2518         else {
2519           interval_.addIntervall(actual._dataEnd+1, actual._dataEnd+2);
2520           interval_.addIntervall(posdown, posdown+1);
2521         }
2522         int blk = interval_.nextNotIgnored(actual._dataEnd+1);
2523         if (blk > posdown) {
2524           // Discard at most 1 space after empty item
2525           int count;
2526           for (count = 0; count < 1; count++) {
2527             if (interval_.par[blk+count] != ' ')
2528               break;
2529           }
2530           if (count > 0)
2531             interval_.addIntervall(blk, blk+count);
2532         }
2533       }
2534       break;
2535     }
2536     case KeyInfo::isSectioning: {
2537       // Discard spaces before _tokenstart
2538       int count;
2539       int val = actual._tokenstart;
2540       for (count = 0; count < actual._tokenstart;) {
2541         val = interval_.previousNotIgnored(val-1);
2542         if (val < 0 || interval_.par[val] != ' ')
2543           break;
2544         else {
2545           count = actual._tokenstart - val;
2546         }
2547       }
2548       if (actual.disabled) {
2549         removeHead(actual, count);
2550         nextKeyIdx = getNextKey();
2551       } else {
2552         interval_.addIntervall(actual._tokenstart-count, actual._tokenstart);
2553         nextKeyIdx = process(os, actual);
2554       }
2555       break;
2556     }
2557     case KeyInfo::isMath: {
2558       // Same as regex, use the content unchanged
2559       nextKeyIdx = getNextKey();
2560       break;
2561     }
2562     case KeyInfo::isRegex: {
2563       // DO NOT SPLIT ON REGEX
2564       // Do not disable
2565       nextKeyIdx = getNextKey();
2566       break;
2567     }
2568     case KeyInfo::isIgnored: {
2569       // Treat like a character for now
2570       nextKeyIdx = getNextKey();
2571       break;
2572     }
2573     case KeyInfo::isMain: {
2574       if (interval_.par.substr(actual._dataStart, 2) == "% ")
2575         interval_.addIntervall(actual._dataStart, actual._dataStart+2);
2576       if (actual._tokenstart > 0) {
2577         int prev = interval_.previousNotIgnored(actual._tokenstart - 1);
2578         if ((prev >= 0) && interval_.par[prev] == '%')
2579           interval_.addIntervall(prev, prev+1);
2580       }
2581       if (actual.disabled) {
2582         removeHead(actual);
2583         interval_.langcount++;
2584         if ((interval_.par.substr(actual._dataStart, 3) == " \\[") ||
2585             (interval_.par.substr(actual._dataStart, 8) == " \\begin{")) {
2586           // Discard also the space before math-equation
2587           interval_.addIntervall(actual._dataStart, actual._dataStart+1);
2588         }
2589         nextKeyIdx = getNextKey();
2590         // interval.resetOpenedP(actual._dataStart-1);
2591       }
2592       else {
2593         if (actual._tokenstart < 26) {
2594           // for the first (and maybe dummy) language
2595           interval_.setForDefaultLang(actual);
2596         }
2597         interval_.resetOpenedP(actual._dataStart-1);
2598       }
2599       break;
2600     }
2601     case KeyInfo::invalid:
2602     case KeyInfo::headRemove:
2603       // These two cases cannot happen, already handled
2604       // fall through
2605     default: {
2606       // LYXERR(Debug::INFO, "Unhandled keytype");
2607       nextKeyIdx = getNextKey();
2608       break;
2609     }
2610   }
2611   return nextKeyIdx;
2612 }
2613
2614 int LatexInfo::process(ostringstream & os, KeyInfo const & actual )
2615 {
2616   int end = interval_.nextNotIgnored(actual._dataEnd);
2617   int oldStart = actual._dataStart;
2618   int nextKeyIdx = getNextKey();
2619   while (true) {
2620     if ((nextKeyIdx < 0) ||
2621         (entries_[nextKeyIdx]._tokenstart >= actual._dataEnd) ||
2622         (entries_[nextKeyIdx].keytype == KeyInfo::invalid)) {
2623       if (oldStart <= end) {
2624         processRegion(oldStart, end);
2625         oldStart = end+1;
2626       }
2627       break;
2628     }
2629     KeyInfo &nextKey = getKeyInfo(nextKeyIdx);
2630
2631     if ((nextKey.keytype == KeyInfo::isMain) && !nextKey.disabled) {
2632       (void) dispatch(os, actual._dataStart, nextKey);
2633       end = nextKey._tokenstart;
2634       break;
2635     }
2636     processRegion(oldStart, nextKey._tokenstart);
2637     nextKeyIdx = dispatch(os, actual._dataStart, nextKey);
2638
2639     oldStart = nextKey._dataEnd+1;
2640   }
2641   // now nextKey is either invalid or is outside of actual._dataEnd
2642   // output the remaining and discard myself
2643   if (oldStart <= end) {
2644     processRegion(oldStart, end);
2645   }
2646   if (interval_.par.size() > (size_t) end && interval_.par[end] == '}') {
2647     end += 1;
2648     // This is the normal case.
2649     // But if using the firstlanguage, the closing may be missing
2650   }
2651   // get minimum of 'end' and  'actual._dataEnd' in case that the nextKey.keytype was 'KeyInfo::isMain'
2652   int output_end;
2653   if (actual._dataEnd < end)
2654     output_end = interval_.nextNotIgnored(actual._dataEnd);
2655   else if (interval_.par.size() > (size_t) end)
2656     output_end = interval_.nextNotIgnored(end);
2657   else
2658     output_end = interval_.par.size();
2659   if ((actual.keytype == KeyInfo::isMain) && actual.disabled) {
2660     interval_.addIntervall(actual._tokenstart, actual._tokenstart+actual._tokensize);
2661   }
2662   // Remove possible empty data
2663   int dstart = interval_.nextNotIgnored(actual._dataStart);
2664   while (interval_.isOpeningPar(dstart) == 1) {
2665     interval_.addIntervall(dstart, dstart+1);
2666     int dend = interval_.findclosing(dstart+1, output_end);
2667     interval_.addIntervall(dend, dend+1);
2668     dstart = interval_.nextNotIgnored(dstart+1);
2669   }
2670   if (dstart < output_end)
2671     interval_.output(os, output_end);
2672   interval_.addIntervall(actual._tokenstart, end);
2673   return nextKeyIdx;
2674 }
2675
2676 string splitOnKnownMacros(string par, bool isPatternString)
2677 {
2678   ostringstream os;
2679   LatexInfo li(par, isPatternString);
2680   // LYXERR(Debug::INFO, "Berfore split: " << par);
2681   KeyInfo DummyKey = KeyInfo(KeyInfo::KeyType::isMain, 2, true);
2682   DummyKey.head = "";
2683   DummyKey._tokensize = 0;
2684   DummyKey._dataStart = 0;
2685   DummyKey._dataEnd = par.length();
2686   DummyKey.disabled = true;
2687   int firstkeyIdx = li.getFirstKey();
2688   string s;
2689   if (firstkeyIdx >= 0) {
2690     KeyInfo firstKey = li.getKeyInfo(firstkeyIdx);
2691     DummyKey._tokenstart = firstKey._tokenstart;
2692     int nextkeyIdx;
2693     if ((firstKey.keytype != KeyInfo::isMain) || firstKey.disabled) {
2694       // Use dummy firstKey
2695       firstKey = DummyKey;
2696       (void) li.setNextKey(firstkeyIdx);
2697     }
2698     else {
2699       if (par.substr(firstKey._dataStart, 2) == "% ")
2700         li.addIntervall(firstKey._dataStart, firstKey._dataStart+2);
2701     }
2702     nextkeyIdx = li.process(os, firstKey);
2703     while (nextkeyIdx >= 0) {
2704       // Check for a possible gap between the last
2705       // entry and this one
2706       int datastart = li.nextNotIgnored(firstKey._dataStart);
2707       KeyInfo &nextKey = li.getKeyInfo(nextkeyIdx);
2708       if ((nextKey._tokenstart > datastart)) {
2709         // Handle the gap
2710         firstKey._dataStart = datastart;
2711         firstKey._dataEnd = par.length();
2712         (void) li.setNextKey(nextkeyIdx);
2713         // Fake the last opened parenthesis
2714         li.setForDefaultLang(firstKey);
2715         nextkeyIdx = li.process(os, firstKey);
2716       }
2717       else {
2718         if (nextKey.keytype != KeyInfo::isMain) {
2719           firstKey._dataStart = datastart;
2720           firstKey._dataEnd = nextKey._dataEnd+1;
2721           (void) li.setNextKey(nextkeyIdx);
2722           li.setForDefaultLang(firstKey);
2723           nextkeyIdx = li.process(os, firstKey);
2724         }
2725         else {
2726           nextkeyIdx = li.process(os, nextKey);
2727         }
2728       }
2729     }
2730     // Handle the remaining
2731     firstKey._dataStart = li.nextNotIgnored(firstKey._dataStart);
2732     firstKey._dataEnd = par.length();
2733     // Check if ! empty
2734     if ((firstKey._dataStart < firstKey._dataEnd) &&
2735         (par[firstKey._dataStart] != '}')) {
2736       li.setForDefaultLang(firstKey);
2737       (void) li.process(os, firstKey);
2738     }
2739     s = os.str();
2740     if (s.empty()) {
2741       // return string definitelly impossible to match
2742       s = "\\foreignlanguage{ignore}{ }";
2743     }
2744   }
2745   else
2746     s = par;                            /* no known macros found */
2747   // LYXERR(Debug::INFO, "After split: " << s);
2748   return s;
2749 }
2750
2751 /*
2752  * Try to unify the language specs in the latexified text.
2753  * Resulting modified string is set to "", if
2754  * the searched tex does not contain all the features in the search pattern
2755  */
2756 static string correctlanguagesetting(string par, bool isPatternString, bool withformat)
2757 {
2758         static Features regex_f;
2759         static int missed = 0;
2760         static bool regex_with_format = false;
2761
2762         int parlen = par.length();
2763
2764         while ((parlen > 0) && (par[parlen-1] == '\n')) {
2765                 parlen--;
2766         }
2767         if (isPatternString && (parlen > 0) && (par[parlen-1] == '~')) {
2768                 // Happens to be there in case of description or labeling environment
2769                 parlen--;
2770         }
2771         string result;
2772         if (withformat) {
2773                 // Split the latex input into pieces which
2774                 // can be digested by our search engine
2775                 LYXERR(Debug::FIND, "input: \"" << par << "\"");
2776                 result = splitOnKnownMacros(par.substr(0,parlen), isPatternString);
2777                 LYXERR(Debug::FIND, "After split: \"" << result << "\"");
2778         }
2779         else
2780                 result = par.substr(0, parlen);
2781         if (isPatternString) {
2782                 missed = 0;
2783                 if (withformat) {
2784                         regex_f = identifyFeatures(result);
2785                         string features = "";
2786                         for (auto it = regex_f.cbegin(); it != regex_f.cend(); ++it) {
2787                                 string a = it->first;
2788                                 regex_with_format = true;
2789                                 features += " " + a;
2790                                 // LYXERR(Debug::INFO, "Identified regex format:" << a);
2791                         }
2792                         LYXERR(Debug::FIND, "Identified Features" << features);
2793
2794                 }
2795         } else if (regex_with_format) {
2796                 Features info = identifyFeatures(result);
2797                 for (auto it = regex_f.cbegin(); it != regex_f.cend(); ++it) {
2798                         string a = it->first;
2799                         bool b = it->second;
2800                         if (b && ! info[a]) {
2801                                 missed++;
2802                                 LYXERR(Debug::FIND, "Missed(" << missed << " " << a <<", srclen = " << parlen );
2803                                 return "";
2804                         }
2805                 }
2806
2807         }
2808         else {
2809                 // LYXERR(Debug::INFO, "No regex formats");
2810         }
2811         return result;
2812 }
2813
2814
2815 // Remove trailing closure of math, macros and environments, so to catch parts of them.
2816 static int identifyClosing(string & t)
2817 {
2818         int open_braces = 0;
2819         do {
2820                 LYXERR(Debug::FIND, "identifyClosing(): t now is '" << t << "'");
2821                 if (regex_replace(t, t, "(.*[^\\\\])\\$$", "$1"))
2822                         continue;
2823                 if (regex_replace(t, t, "(.*[^\\\\])\\\\\\]$", "$1"))
2824                         continue;
2825                 if (regex_replace(t, t, "(.*[^\\\\])\\\\end\\{[a-zA-Z_]*\\*?\\}$", "$1"))
2826                         continue;
2827                 if (regex_replace(t, t, "(.*[^\\\\])\\}$", "$1")) {
2828                         ++open_braces;
2829                         continue;
2830                 }
2831                 break;
2832         } while (true);
2833         return open_braces;
2834 }
2835
2836 static int num_replaced = 0;
2837 static bool previous_single_replace = true;
2838
2839 void MatchStringAdv::CreateRegexp(FindAndReplaceOptions const & opt, string regexp_str, string regexp2_str, string par_as_string)
2840 {
2841 #if QTSEARCH
2842         // Handle \w properly
2843         QRegularExpression::PatternOptions popts = QRegularExpression::UseUnicodePropertiesOption | QRegularExpression::MultilineOption;
2844         if (! opt.casesensitive) {
2845                 popts |= QRegularExpression::CaseInsensitiveOption;
2846         }
2847         regexp = QRegularExpression(QString::fromStdString(regexp_str), popts);
2848         regexp2 = QRegularExpression(QString::fromStdString(regexp2_str), popts);
2849         regexError = "";
2850         if (regexp.isValid() && regexp2.isValid()) {
2851                 regexIsValid = true;
2852                 // Check '{', '}' pairs inside the regex
2853                 int balanced = 0;
2854                 int skip = 1;
2855                 for (unsigned i = 0; i < par_as_string.size(); i+= skip) {
2856                         char c = par_as_string[i];
2857                         if (c == '\\') {
2858                                 skip = 2;
2859                                 continue;
2860                         }
2861                         if (c == '{')
2862                                 balanced++;
2863                         else if (c == '}') {
2864                                 balanced--;
2865                                 if (balanced < 0)
2866                                         break;
2867                                 }
2868                                 skip = 1;
2869                         }
2870                 if (balanced != 0) {
2871                         regexIsValid = false;
2872                         regexError = "Unbalanced curly brackets in regexp \"" + regexp_str + "\"";
2873                 }
2874         }
2875         else {
2876                 regexIsValid = false;
2877                 if (!regexp.isValid())
2878                         regexError += "Invalid regexp \"" + regexp_str + "\", error = " + regexp.errorString().toStdString();
2879                 else
2880                         regexError += "Invalid regexp2 \"" + regexp2_str + "\", error = " + regexp2.errorString().toStdString();
2881         }
2882 #else
2883         if (opt.casesensitive) {
2884                 regexp = regex(regexp_str);
2885                 regexp2 = regex(regexp2_str);
2886         }
2887         else {
2888                 regexp = regex(regexp_str, std::regex_constants::icase);
2889                 regexp2 = regex(regexp2_str, std::regex_constants::icase);
2890         }
2891 #endif
2892 }
2893
2894 static void modifyRegexForMatchWord(string &t)
2895 {
2896         string s("");
2897         regex wordre("(\\\\)*((\\.|\\\\b))");
2898         size_t lastpos = 0;
2899         smatch sub;
2900         for (sregex_iterator it(t.begin(), t.end(), wordre), end; it != end; ++it) {
2901                 sub = *it;
2902                 if ((sub.position(2) - sub.position(0)) % 2 == 1) {
2903                         continue;
2904                 }
2905                 else if (sub.str(2) == "\\\\b")
2906                         return;
2907                 if (lastpos < (size_t) sub.position(2))
2908                         s += t.substr(lastpos, sub.position(2) - lastpos);
2909                 s += "\\S";
2910                 lastpos = sub.position(2) + sub.length(2);
2911         }
2912         if (lastpos == 0) {
2913                 s = "\\b" + t + "\\b";
2914                 t = s;
2915                 return;
2916         }
2917         else if (lastpos < t.length())
2918                 s += t.substr(lastpos, t.length() - lastpos);
2919       t = "\\b" + s + "\\b";
2920 }
2921
2922 MatchStringAdv::MatchStringAdv(lyx::Buffer & buf, FindAndReplaceOptions & opt)
2923         : p_buf(&buf), p_first_buf(&buf), opt(opt)
2924 {
2925         Buffer & find_buf = *theBufferList().getBuffer(FileName(to_utf8(opt.find_buf_name)), true);
2926         docstring const & ds = stringifySearchBuffer(find_buf, opt);
2927         use_regexp = lyx::to_utf8(ds).find("\\regexp{") != std::string::npos;
2928         if (opt.replace_all && previous_single_replace) {
2929                 previous_single_replace = false;
2930                 num_replaced = 0;
2931         }
2932         else if (!opt.replace_all) {
2933                 num_replaced = 0;       // count number of replaced strings
2934                 previous_single_replace = true;
2935         }
2936         // When using regexp, braces are hacked already by escape_for_regex()
2937         par_as_string = normalize(ds);
2938         open_braces = 0;
2939         close_wildcards = 0;
2940
2941         size_t lead_size = 0;
2942         // correct the language settings
2943         par_as_string = correctlanguagesetting(par_as_string, true, !opt.ignoreformat);
2944         opt.matchstart = false;
2945         if (!use_regexp) {
2946                 identifyClosing(par_as_string); // Removes math closings ($, ], ...) at end of string
2947                 if (opt.ignoreformat) {
2948                         lead_size = 0;
2949                 }
2950                 else {
2951                         lead_size = identifyLeading(par_as_string);
2952                 }
2953                 lead_as_string = par_as_string.substr(0, lead_size);
2954                 string lead_as_regex_string = string2regex(lead_as_string);
2955                 par_as_string_nolead = par_as_string.substr(lead_size, par_as_string.size() - lead_size);
2956                 string par_as_regex_string_nolead = string2regex(par_as_string_nolead);
2957                 /* Handle whole words too in this case
2958                 */
2959                 if (opt.matchword) {
2960                         par_as_regex_string_nolead = "\\b" + par_as_regex_string_nolead + "\\b";
2961                         opt.matchword = false;
2962                 }
2963                 string regexp_str = "(" + lead_as_regex_string + ")()" + par_as_regex_string_nolead;
2964                 string regexp2_str = "(" + lead_as_regex_string + ")(.*?)" + par_as_regex_string_nolead;
2965                 CreateRegexp(opt, regexp_str, regexp2_str);
2966                 use_regexp = true;
2967                 LYXERR(Debug::FIND, "Setting regexp to : '" << regexp_str << "'");
2968                 LYXERR(Debug::FIND, "Setting regexp2 to: '" << regexp2_str << "'");
2969                 return;
2970         }
2971
2972         if (!opt.ignoreformat) {
2973                 lead_size = identifyLeading(par_as_string);
2974                 LYXERR(Debug::FIND, "Lead_size: " << lead_size);
2975                 lead_as_string = par_as_string.substr(0, lead_size);
2976                 par_as_string_nolead = par_as_string.substr(lead_size, par_as_string.size() - lead_size);
2977         }
2978
2979         // Here we are using regexp
2980         LASSERT(use_regexp, /**/);
2981         {
2982                 string lead_as_regexp;
2983                 if (lead_size > 0) {
2984                         lead_as_regexp = string2regex(par_as_string.substr(0, lead_size));
2985                         regex_replace(par_as_string_nolead, par_as_string_nolead, "}$", "");
2986                         par_as_string = par_as_string_nolead;
2987                         LYXERR(Debug::FIND, "lead_as_regexp is '" << lead_as_regexp << "'");
2988                         LYXERR(Debug::FIND, "par_as_string now is '" << par_as_string << "'");
2989                 }
2990                 LYXERR(Debug::FIND, "par_as_string before escape_for_regex() is '" << par_as_string << "'");
2991                 par_as_string = escape_for_regex(par_as_string, !opt.ignoreformat);
2992                 // Insert (.*?) before trailing closure of math, macros and environments, so to catch parts of them.
2993                 LYXERR(Debug::FIND, "par_as_string now is '" << par_as_string << "'");
2994                 LYXERR(Debug::FIND, "par_as_string after correctRegex is '" << par_as_string << "'");
2995                 ++close_wildcards;
2996                 size_t lng = par_as_string.size();
2997                 if (!opt.ignoreformat) {
2998                         // Remove extra '\}' at end if not part of \{\.\}
2999                         while(lng > 2) {
3000                                 if (par_as_string.substr(lng-2, 2).compare("\\}") == 0) {
3001                                         if (lng >= 6) {
3002                                                 if (par_as_string.substr(lng-6,3).compare("\\{\\") == 0)
3003                                                         break;
3004                                         }
3005                                         lng -= 2;
3006                                         open_braces++;
3007                                 }
3008                                 else
3009                                         break;
3010                         }
3011                         if (lng < par_as_string.size())
3012                                 par_as_string = par_as_string.substr(0,lng);
3013                 }
3014                 if ((lng > 0) && (par_as_string[0] == '^')) {
3015                         par_as_string = par_as_string.substr(1);
3016                         --lng;
3017                         opt.matchstart = true;
3018                 }
3019                 LYXERR(Debug::FIND, "par_as_string now is '" << par_as_string << "'");
3020                 LYXERR(Debug::FIND, "Open braces: " << open_braces);
3021                 LYXERR(Debug::FIND, "Replaced text (to be used as regex): " << par_as_string);
3022
3023                 // If entered regexp must match at begin of searched string buffer
3024                 // Kornel: Added parentheses to use $1 for size of the leading string
3025                 string regexp_str;
3026                 string regexp2_str;
3027                 {
3028                         // TODO: Adapt '\[12345678]' in par_as_string to acount for the first '()
3029                         // Unfortunately is '\1', '\2', etc not working for strings with extra format
3030                         // so the convert has no effect in that case
3031                         for (int i = 7; i > 0; --i) {
3032                                 string orig = "\\\\" + std::to_string(i);
3033                                 string dest = "\\" + std::to_string(i+2);
3034                                 while (regex_replace(par_as_string, par_as_string, orig, dest));
3035                         }
3036                         if (opt.matchword) {
3037                                 modifyRegexForMatchWord(par_as_string);
3038                                 opt.matchword = false;
3039                         }
3040                         regexp_str = "(" + lead_as_regexp + ")()" + par_as_string;
3041                         regexp2_str = "(" + lead_as_regexp + ")(.*?)" + par_as_string;
3042                 }
3043                 LYXERR(Debug::FIND, "Setting regexp to : '" << regexp_str << "'");
3044                 LYXERR(Debug::FIND, "Setting regexp2 to: '" << regexp2_str << "'");
3045                 CreateRegexp(opt, regexp_str, regexp2_str, par_as_string);
3046         }
3047 }
3048
3049 MatchResult MatchStringAdv::findAux(DocIterator const & cur, int len, bool at_begin) const
3050 {
3051         MatchResult mres;
3052
3053         mres.searched_size = len;
3054         if (at_begin &&
3055                 (opt.restr == FindAndReplaceOptions::R_ONLY_MATHS && !cur.inMathed()) )
3056                 return mres;
3057
3058         docstring docstr = stringifyFromForSearch(opt, cur, len);
3059         string str;
3060         str = normalize(docstr);
3061         if (!opt.ignoreformat) {
3062                 str = correctlanguagesetting(str, false, !opt.ignoreformat);
3063                 // remove closing '}' and '\n' to allow for use of '$' in regex
3064                 size_t lng = str.size();
3065                 while ((lng > 1) && ((str[lng -1] == '}') || (str[lng -1] == '\n')))
3066                         lng--;
3067                 if (lng != str.size()) {
3068                         str = str.substr(0, lng);
3069                 }
3070         }
3071         if (str.empty()) {
3072                 mres.match_len = -1;
3073                 return mres;
3074         }
3075         LYXERR(Debug::FIND, "Matching against     '" << lyx::to_utf8(docstr) << "'");
3076         LYXERR(Debug::FIND, "After normalization: '" << str << "'");
3077
3078         LASSERT(use_regexp, /**/);
3079         {
3080                 // use_regexp always true
3081                 LYXERR(Debug::FIND, "Searching in regexp mode: at_begin=" << at_begin);
3082 #if QTSEARCH
3083                 QString qstr = QString::fromStdString(str);
3084                 QRegularExpression const *p_regexp;
3085                 QRegularExpression::MatchType flags = QRegularExpression::NormalMatch;
3086                 if (at_begin) {
3087                         p_regexp = &regexp;
3088                 } else {
3089                         p_regexp = &regexp2;
3090                 }
3091                 QRegularExpressionMatch match = p_regexp->match(qstr, 0, flags);
3092                 if (!match.hasMatch())
3093                         return mres;
3094 #else
3095                 regex const *p_regexp;
3096                 regex_constants::match_flag_type flags;
3097                 if (at_begin) {
3098                         flags = regex_constants::match_continuous;
3099                         p_regexp = &regexp;
3100                 } else {
3101                         flags = regex_constants::match_default;
3102                         p_regexp = &regexp2;
3103                 }
3104                 sregex_iterator re_it(str.begin(), str.end(), *p_regexp, flags);
3105                 if (re_it == sregex_iterator())
3106                         return mres;
3107                 match_results<string::const_iterator> const & m = *re_it;
3108 #endif
3109                 // Whole found string, including the leading
3110                 // std: m[0].second - m[0].first
3111                 // Qt: match.capturedEnd(0) - match.capturedStart(0)
3112                 //
3113                 // Size of the leading string
3114                 // std: m[1].second - m[1].first
3115                 // Qt: match.capturedEnd(1) - match.capturedStart(1)
3116                 int leadingsize = 0;
3117 #if QTSEARCH
3118                 if (match.lastCapturedIndex() > 0) {
3119                         leadingsize = match.capturedEnd(1) - match.capturedStart(1);
3120                 }
3121
3122 #else
3123                 if (m.size() > 2) {
3124                         leadingsize = m[1].second - m[1].first;
3125                 }
3126 #endif
3127 #if QTSEARCH
3128                 mres.match_prefix = match.capturedEnd(2) - match.capturedStart(2);
3129                 mres.match_len = match.capturedEnd(0) - match.capturedEnd(2);
3130                 // because of different number of closing at end of string
3131                 // we have to 'unify' the length of the post-match.
3132                 // Done by ignoring closing parenthesis and linefeeds at string end
3133                 int matchend = match.capturedEnd(0);
3134                 while (mres.match_len > 0) {
3135                   QChar c = qstr.at(matchend - 1);
3136                   if ((c == '\n') || (c == '}') || (c == '{')) {
3137                     mres.match_len--;
3138                     matchend--;
3139                   }
3140                   else
3141                     break;
3142                 }
3143                 size_t strsize = qstr.size();
3144                 while (strsize > (size_t) match.capturedEnd(0)) {
3145                         QChar c = qstr.at(strsize-1);
3146                         if ((c == '\n') || (c == '}')) {
3147                                 --strsize;
3148                         }
3149                         else
3150                                 break;
3151                 }
3152                 // LYXERR0(qstr.toStdString());
3153                 mres.match2end = strsize - matchend;
3154                 mres.pos = match.capturedStart(2);
3155 #else
3156                 mres.match_prefix = m[2].second - m[2].first;
3157                 mres.match_len = m[0].second - m[2].second;
3158                 // ignore closing parenthesis and linefeeds at string end
3159                 size_t strend = m[0].second - m[0].first;
3160                 int matchend = strend;
3161                 while (mres.match_len > 0) {
3162                   char c = str.at(matchend - 1);
3163                   if ((c == '\n') || (c == '}') || (c == '{')) {
3164                     mres.match_len--;
3165                     matchend--;
3166                   }
3167                   else
3168                     break;
3169                 }
3170                 size_t strsize = str.size();
3171                 while (strsize > strend) {
3172                         if ((str.at(strsize-1) == '}') || (str.at(strsize-1) == '\n')) {
3173                                 --strsize;
3174                         }
3175                         else
3176                                 break;
3177                 }
3178                 // LYXERR0(str);
3179                 mres.match2end = strsize - matchend;
3180                 mres.pos = m[2].first - m[0].first;;
3181 #endif
3182                 if (mres.match2end < 0)
3183                   mres.match_len = 0;
3184                 mres.leadsize = leadingsize;
3185 #if QTSEARCH
3186                 if (mres.match_len > 0) {
3187                   string a0 = match.captured(0).mid(mres.pos + mres.match_prefix, mres.match_len).toStdString();
3188                   mres.result.push_back(a0);
3189                   for (int i = 3; i <= match.lastCapturedIndex(); i++) {
3190                     mres.result.push_back(match.captured(i).toStdString());
3191                   }
3192                 }
3193 #else
3194                 if (mres.match_len > 0) {
3195                   string a0 = m[0].str().substr(mres.pos + mres.match_prefix, mres.match_len);
3196                   mres.result.push_back(a0);
3197                   for (size_t i = 3; i < m.size(); i++) {
3198                     mres.result.push_back(m[i]);
3199                   }
3200                 }
3201 #endif
3202                 return mres;
3203         }
3204 }
3205
3206
3207 MatchResult MatchStringAdv::operator()(DocIterator const & cur, int len, bool at_begin) const
3208 {
3209         MatchResult mres = findAux(cur, len, at_begin);
3210         int res = mres.match_len;
3211         LYXERR(Debug::FIND,
3212                "res=" << res << ", at_begin=" << at_begin
3213                << ", matchstart=" << opt.matchstart
3214                << ", inTexted=" << cur.inTexted());
3215         if (opt.matchstart) {
3216                 if (cur.pos() != 0)
3217                         mres.match_len = 0;
3218                 else if (mres.match_prefix > 0)
3219                         mres.match_len = 0;
3220                 return mres;
3221         }
3222         else
3223                 return mres;
3224 }
3225
3226 #if 0
3227 static bool simple_replace(string &t, string from, string to)
3228 {
3229   regex repl("(\\\\)*(" + from + ")");
3230   string s("");
3231   size_t lastpos = 0;
3232   smatch sub;
3233   for (sregex_iterator it(t.begin(), t.end(), repl), end; it != end; ++it) {
3234     sub = *it;
3235     if ((sub.position(2) - sub.position(0)) % 2 == 1)
3236       continue;
3237     if (lastpos < (size_t) sub.position(2))
3238       s += t.substr(lastpos, sub.position(2) - lastpos);
3239     s += to;
3240     lastpos = sub.position(2) + sub.length(2);
3241   }
3242   if (lastpos == 0)
3243     return false;
3244   else if (lastpos < t.length())
3245     s += t.substr(lastpos, t.length() - lastpos);
3246   t = s;
3247   return true;
3248 }
3249 #endif
3250
3251 string MatchStringAdv::normalize(docstring const & s) const
3252 {
3253         string t;
3254         t = lyx::to_utf8(s);
3255         // Remove \n at begin
3256         while (!t.empty() && t[0] == '\n')
3257                 t = t.substr(1);
3258         // Remove \n at end
3259         while (!t.empty() && t[t.size() - 1] == '\n')
3260                 t = t.substr(0, t.size() - 1);
3261         size_t pos;
3262         // Handle all other '\n'
3263         while ((pos = t.find("\n")) != string::npos) {
3264                 if (pos > 1 && t[pos-1] == '\\' && t[pos-2] == '\\' ) {
3265                         // Handle '\\\n'
3266                         if (isAlnumASCII(t[pos+1])) {
3267                                 t.replace(pos-2, 3, " ");
3268                         }
3269                         else {
3270                                 t.replace(pos-2, 3, "");
3271                         }
3272                 }
3273                 else if (!isAlnumASCII(t[pos+1]) || !isAlnumASCII(t[pos-1])) {
3274                         // '\n' adjacent to non-alpha-numerics, discard
3275                         t.replace(pos, 1, "");
3276                 }
3277                 else {
3278                         // Replace all other \n with spaces
3279                         t.replace(pos, 1, " ");
3280                 }
3281         }
3282         // Remove stale empty \emph{}, \textbf{} and similar blocks from latexify
3283         // Kornel: Added textsl, textsf, textit, texttt and noun
3284         // + allow to seach for colored text too
3285         LYXERR(Debug::FIND, "Removing stale empty \\emph{}, \\textbf{}, \\*section{} macros from: " << t);
3286         while (regex_replace(t, t, "\\\\(emph|noun|text(bf|sl|sf|it|tt)|(u|uu)line|(s|x)out|uwave)(\\{(\\{\\})?\\})+", ""))
3287                 LYXERR(Debug::FIND, "  further removing stale empty \\emph{}, \\textbf{} macros from: " << t);
3288         while (regex_replace(t, t, "\\\\((sub)?(((sub)?section)|paragraph)|part)\\*?(\\{(\\{\\})?\\})+", ""))
3289                 LYXERR(Debug::FIND, "  further removing stale empty \\emph{}, \\textbf{} macros from: " << t);
3290         while (regex_replace(t, t, "\\\\(foreignlanguage|textcolor|item)\\{[a-z]+\\}(\\{(\\{\\})?\\})+", ""));
3291
3292         return t;
3293 }
3294
3295
3296 docstring stringifyFromCursor(DocIterator const & cur, int len)
3297 {
3298         LYXERR(Debug::FIND, "Stringifying with len=" << len << " from cursor at pos: " << cur);
3299         if (cur.inTexted()) {
3300                 Paragraph const & par = cur.paragraph();
3301                 // TODO what about searching beyond/across paragraph breaks ?
3302                 // TODO Try adding a AS_STR_INSERTS as last arg
3303                 pos_type end = ( len == -1 || cur.pos() + len > int(par.size()) ) ?
3304                         int(par.size()) : cur.pos() + len;
3305                 // OutputParams runparams(&cur.buffer()->params().encoding());
3306                 OutputParams runparams(encodings.fromLyXName("utf8"));
3307                 runparams.nice = true;
3308                 runparams.flavor = Flavor::XeTeX;
3309                 runparams.linelen = 10000; //lyxrc.plaintext_linelen;
3310                 // No side effect of file copying and image conversion
3311                 runparams.dryrun = true;
3312                 runparams.for_search = true;
3313                 LYXERR(Debug::FIND, "Stringifying with cur: "
3314                        << cur << ", from pos: " << cur.pos() << ", end: " << end);
3315                 return par.asString(cur.pos(), end,
3316                         AS_STR_INSETS | AS_STR_SKIPDELETE | AS_STR_PLAINTEXT,
3317                         &runparams);
3318         } else if (cur.inMathed()) {
3319                 CursorSlice cs = cur.top();
3320                 MathData md = cs.cell();
3321                 MathData::const_iterator it_end =
3322                         (( len == -1 || cs.pos() + len > int(md.size()))
3323                          ? md.end()
3324                          : md.begin() + cs.pos() + len );
3325                 MathData md2;
3326                 for (MathData::const_iterator it = md.begin() + cs.pos();
3327                      it != it_end; ++it)
3328                         md2.push_back(*it);
3329                 docstring s = asString(md2);
3330                 LYXERR(Debug::FIND, "Stringified math: '" << s << "'");
3331                 return s;
3332         }
3333         LYXERR(Debug::FIND, "Don't know how to stringify from here: " << cur);
3334         return docstring();
3335 }
3336
3337
3338 /** Computes the LaTeX export of buf starting from cur and ending len positions
3339  * after cur, if len is positive, or at the paragraph or innermost inset end
3340  * if len is -1.
3341  */
3342 docstring latexifyFromCursor(DocIterator const & cur, int len)
3343 {
3344         LYXERR(Debug::FIND, "Latexifying with len=" << len << " from cursor at pos: " << cur);
3345         LYXERR(Debug::FIND, "  with cur.lastpost=" << cur.lastpos() << ", cur.lastrow="
3346                << cur.lastrow() << ", cur.lastcol=" << cur.lastcol());
3347         Buffer const & buf = *cur.buffer();
3348
3349         odocstringstream ods;
3350         otexstream os(ods);
3351         //OutputParams runparams(&buf.params().encoding());
3352         OutputParams runparams(encodings.fromLyXName("utf8"));
3353         runparams.nice = false;
3354         runparams.flavor = Flavor::XeTeX;
3355         runparams.linelen = 8000; //lyxrc.plaintext_linelen;
3356         // No side effect of file copying and image conversion
3357         runparams.dryrun = true;
3358         runparams.for_search = true;
3359
3360         if (cur.inTexted()) {
3361                 // @TODO what about searching beyond/across paragraph breaks ?
3362                 pos_type endpos = cur.paragraph().size();
3363                 if (len != -1 && endpos > cur.pos() + len)
3364                         endpos = cur.pos() + len;
3365                 TeXOnePar(buf, *cur.innerText(), cur.pit(), os, runparams,
3366                           string(), cur.pos(), endpos);
3367                 string s = lyx::to_utf8(ods.str());
3368                 LYXERR(Debug::FIND, "Latexified +modified text: '" << s << "'");
3369                 return(lyx::from_utf8(s));
3370         } else if (cur.inMathed()) {
3371                 // Retrieve the math environment type, and add '$' or '$[' or others (\begin{equation}) accordingly
3372                 for (int s = cur.depth() - 1; s >= 0; --s) {
3373                         CursorSlice const & cs = cur[s];
3374                         if (cs.asInsetMath() && cs.asInsetMath()->asHullInset()) {
3375                                 TeXMathStream ws(os);
3376                                 cs.asInsetMath()->asHullInset()->header_write(ws);
3377                                 break;
3378                         }
3379                 }
3380
3381                 CursorSlice const & cs = cur.top();
3382                 MathData md = cs.cell();
3383                 MathData::const_iterator it_end =
3384                         ((len == -1 || cs.pos() + len > int(md.size()))
3385                          ? md.end()
3386                          : md.begin() + cs.pos() + len);
3387                 MathData md2;
3388                 for (MathData::const_iterator it = md.begin() + cs.pos();
3389                      it != it_end; ++it)
3390                         md2.push_back(*it);
3391
3392                 ods << asString(md2);
3393                 // Retrieve the math environment type, and add '$' or '$]'
3394                 // or others (\end{equation}) accordingly
3395                 for (int s = cur.depth() - 1; s >= 0; --s) {
3396                         CursorSlice const & cs2 = cur[s];
3397                         InsetMath * inset = cs2.asInsetMath();
3398                         if (inset && inset->asHullInset()) {
3399                                 TeXMathStream ws(os);
3400                                 inset->asHullInset()->footer_write(ws);
3401                                 break;
3402                         }
3403                 }
3404                 LYXERR(Debug::FIND, "Latexified math: '" << lyx::to_utf8(ods.str()) << "'");
3405         } else {
3406                 LYXERR(Debug::FIND, "Don't know how to stringify from here: " << cur);
3407         }
3408         return ods.str();
3409 }
3410
3411 #if defined(ResultsDebug)
3412 // Debugging output
3413 static void displayMResult(MatchResult &mres, string from, DocIterator & cur)
3414 {
3415         LYXERR0( "from:\t\t\t" << from);
3416         string status;
3417         if (mres.pos_len > 0) {
3418                 // Set in finalize
3419                 status = "FINALSEARCH";
3420         }
3421         else {
3422                 if (mres.match_len > 0) {
3423                         if ((mres.match_prefix == 0) && (mres.pos == mres.leadsize))
3424                                 status = "Good Match";
3425                         else
3426                                 status = "Matched in";
3427                 }
3428                 else
3429                         status = "MissedSearch";
3430         }
3431
3432         LYXERR0( status << "(" << cur.pos() << " ... " << mres.searched_size + cur.pos() << ") cur.lastpos(" << cur.lastpos() << ")");
3433         if ((mres.leadsize > 0) || (mres.match_len > 0) || (mres.match2end > 0))
3434                 LYXERR0( "leadsize(" << mres.leadsize << ") match_len(" << mres.match_len << ") match2end(" << mres.match2end << ")");
3435         if ((mres.pos > 0) || (mres.match_prefix > 0))
3436                 LYXERR0( "pos(" << mres.pos << ") match_prefix(" << mres.match_prefix << ")");
3437         for (size_t i = 0; i < mres.result.size(); i++)
3438                 LYXERR0( "Match " << i << " = \"" << mres.result[i] << "\"");
3439 }
3440         #define displayMres(s, txt, cur) displayMResult(s, txt, cur);
3441 #else
3442         #define displayMres(s, txt, cur)
3443 #endif
3444
3445 /** Finalize an advanced find operation, advancing the cursor to the innermost
3446  ** position that matches, plus computing the length of the matching text to
3447  ** be selected
3448  ** Return the cur.pos() difference between start and end of found match
3449  **/
3450 MatchResult &findAdvFinalize(DocIterator & cur, MatchStringAdv const & match, MatchResult const & expected = MatchResult(-1))
3451 {
3452         // Search the foremost position that matches (avoids find of entire math
3453         // inset when match at start of it)
3454         DocIterator old_cur(cur.buffer());
3455         MatchResult mres;
3456         static MatchResult fail = MatchResult();
3457         static MatchResult max_match;
3458         // If (prefix_len > 0) means that forwarding 1 position will remove the complete entry
3459         // Happens with e.g. hyperlinks
3460         // either one sees "http://www.bla.bla" or nothing
3461         // so the search for "www" gives prefix_len = 7 (== sizeof("http://")
3462         // and although we search for only 3 chars, we find the whole hyperlink inset
3463         bool at_begin = (expected.match_prefix == 0);
3464         LASSERT(at_begin, /**/);
3465         if (expected.match_len > 0 && at_begin) {
3466                 // Search for deepest match
3467                 old_cur = cur;
3468                 max_match = expected;
3469                 do {
3470                         size_t d = cur.depth();
3471                         cur.forwardPos();
3472                         if (!cur)
3473                                 break;
3474                         if (cur.depth() < d)
3475                                 break;
3476                         if (cur.depth() == d)
3477                                 break;
3478                         size_t lastd = d;
3479                         while (cur && cur.depth() > lastd) {
3480                                 lastd = cur.depth();
3481                                 mres = match(cur, -1, at_begin);
3482                                 displayMres(mres, "Checking innermost", cur);
3483                                 if (mres.match_len > 0)
3484                                         break;
3485                                 // maybe deeper?
3486                                 cur.forwardPos();
3487                         }
3488                         if (mres.match_len < expected.match_len)
3489                                 break;
3490                         max_match = mres;
3491                         old_cur = cur;;
3492                 } while(1);
3493                 cur = old_cur;
3494         }
3495         else {
3496                 // (expected.match_len <= 0)
3497                 mres = match(cur);      /* match valid only if not searching whole words */
3498                 displayMres(mres, "Start with negative match", cur);
3499                 max_match = mres;
3500         }
3501         if (max_match.match_len <= 0) return fail;
3502         LYXERR(Debug::FIND, "Ok");
3503
3504         // Compute the match length
3505         int len = 1;
3506         if (cur.pos() + len > cur.lastpos())
3507           return fail;
3508
3509         LASSERT(match.use_regexp, /**/);
3510         {
3511           int minl = 1;
3512           int maxl = cur.lastpos() - cur.pos();
3513           // Greedy behaviour while matching regexps
3514           while (maxl > minl) {
3515             MatchResult mres2;
3516             mres2 = match(cur, len, at_begin);
3517             displayMres(mres2, "Finalize loop", cur);
3518             int actual_match_len = mres2.match_len;
3519             if (actual_match_len >= max_match.match_len) {
3520               // actual_match_len > max_match _can_ happen,
3521               // if the search area splits
3522               // some following word so that the regex
3523               // (e.g. 'r.*r\b' matches 'r' from the middle of the
3524               // splitted word)
3525               // This means, the len value is too big
3526               actual_match_len = max_match.match_len;
3527               max_match = mres2;
3528               max_match.match_len = actual_match_len;
3529               maxl = len;
3530               if (maxl - minl < 4)
3531                 len = (int)((maxl + minl)/2);
3532               else
3533                 len = (int)(minl + (maxl - minl + 3)/4);
3534             }
3535             else {
3536               // (actual_match_len < max_match.match_len)
3537               minl = len + 1;
3538               len = (int)((maxl + minl)/2);
3539             }
3540           }
3541           len = minl;
3542           old_cur = cur;
3543           // Search for real start of matched characters
3544           while (len > 1) {
3545             MatchResult actual_match;
3546             do {
3547               cur.forwardPos();
3548             } while (cur.depth() > old_cur.depth()); /* Skip inner insets */
3549             if (cur.depth() < old_cur.depth()) {
3550               // Outer inset?
3551               LYXERR(Debug::INFO, "cur.depth() < old_cur.depth(), this should never happen");
3552               break;
3553             }
3554             if (cur.pos() != old_cur.pos()) {
3555               // OK, forwarded 1 pos in actual inset
3556               actual_match = match(cur, len-1, at_begin);
3557               if (actual_match.match_len == max_match.match_len) {
3558                 // Ha, got it! The shorter selection has the same match length
3559                 len--;
3560                 old_cur = cur;
3561                 max_match = actual_match;
3562               }
3563               else {
3564                 // OK, the shorter selection matches less chars, revert to previous value
3565                 cur = old_cur;
3566                 break;
3567               }
3568             }
3569             else {
3570               LYXERR(Debug::INFO, "cur.pos() == old_cur.pos(), this should never happen");
3571               actual_match = match(cur, len, at_begin);
3572               if (actual_match.match_len == max_match.match_len) {
3573                 old_cur = cur;
3574                 max_match = actual_match;
3575               }
3576             }
3577           }
3578           if (len == 0)
3579             return fail;
3580           else {
3581             max_match.pos_len = len;
3582             displayMres(max_match, "SEARCH RESULT", cur)
3583             return max_match;
3584           }
3585         }
3586 }
3587
3588 /// Finds forward
3589 int findForwardAdv(DocIterator & cur, MatchStringAdv & match)
3590 {
3591         if (!cur)
3592                 return 0;
3593         bool repeat = false;
3594         while (!theApp()->longOperationCancelled() && cur) {
3595                 //(void) findAdvForwardInnermost(cur);
3596                 LYXERR(Debug::FIND, "findForwardAdv() cur: " << cur);
3597                 MatchResult mres = match(cur, -1, false);
3598                 string msg = "Starting";
3599                 if (repeat)
3600                         msg = "Repeated";
3601                 displayMres(mres, msg + " findForwardAdv", cur)
3602                 int match_len = mres.match_len;
3603                 if ((mres.pos > 100000) || (mres.match2end > 100000) || (match_len > 100000)) {
3604                         LYXERR(Debug::INFO, "BIG LENGTHS: " << mres.pos << ", " << match_len << ", " << mres.match2end);
3605                         match_len = 0;
3606                 }
3607                 if (match_len <= 0) {
3608                         // This should exit nested insets, if any, or otherwise undefine the currsor.
3609                         cur.pos() = cur.lastpos();
3610                         LYXERR(Debug::FIND, "Advancing pos: cur=" << cur);
3611                         cur.forwardPos();
3612                 }
3613                 else {  // match_len > 0
3614                         // Try to find the begin of searched string
3615                         int increment;
3616                         int firstInvalid = 100000;
3617                         {
3618                                 int incrmatch = (mres.match_prefix + mres.pos - mres.leadsize + 1)*3/4;
3619                                 int incrcur = (cur.lastpos() - cur.pos() + 1 )*3/4;
3620                                 if (incrcur < incrmatch)
3621                                         increment = incrcur;
3622                                 else
3623                                         increment = incrmatch;
3624                                 if (increment < 1)
3625                                         increment = 1;
3626                         }
3627                         LYXERR(Debug::FIND, "Set increment to " << increment);
3628                         while (increment > 0) {
3629                                 DocIterator old_cur = cur;
3630                                 size_t skipping = cur.depth();
3631                                 for (int i = 0; i < increment && cur; i++) {
3632                                         cur.forwardPos();
3633                                         while (cur && cur.depth() > skipping) {
3634                                                 cur.pos() = cur.lastpos();
3635                                                 cur.forwardPos();
3636                                         }
3637                                 }
3638                                 if (! cur || (cur.pit() > old_cur.pit())) {
3639                                         // Are we outside of the paragraph?
3640                                         // This can happen if moving past some UTF8-encoded chars
3641                                         cur = old_cur;
3642                                         increment /= 2;
3643                                 }
3644                                 else {
3645                                         MatchResult mres2 = match(cur, -1, false);
3646                                         displayMres(mres2, "findForwardAdv loop", cur)
3647                                         switch (interpretMatch(mres, mres2)) {
3648                                         case MatchResult::newIsTooFar:
3649                                           // behind the expected match
3650                                           firstInvalid = increment;
3651                                           cur = old_cur;
3652                                           increment /= 2;
3653                                           break;
3654                                         case MatchResult::newIsBetter:
3655                                           // not reached yet, but cur.pos()+increment is bettert
3656                                           mres = mres2;
3657                                           firstInvalid -= increment;
3658                                           if (increment > firstInvalid*3/4)
3659                                             increment = firstInvalid*3/4;
3660                                           if ((mres2.pos == mres2.leadsize) && (increment >= mres2.match_prefix)) {
3661                                             if (increment >= mres2.match_prefix)
3662                                               increment = (mres2.match_prefix+1)*3/4;
3663                                           }
3664                                           break;
3665                                         default:
3666                                           // Todo@
3667                                           // Handle not like MatchResult::newIsTooFar
3668                                           LYXERR0( "Something is wrong: Increment = " << increment << " match_prefix = " << mres.match_prefix);
3669                                           firstInvalid--;
3670                                           increment = increment*3/4;
3671                                           cur = old_cur;
3672                                           break;
3673                                         }
3674                                 }
3675                         }
3676                         if (mres.match_len > 0 && mres.match_prefix + mres.pos - mres.leadsize > 0) {
3677                                 repeat = true;
3678                                 cur.forwardPos();
3679                                 continue;
3680                         }
3681                         // LYXERR0("Leaving first loop");
3682                         LYXERR(Debug::FIND, "Finalizing 1");
3683                         MatchResult found_match = findAdvFinalize(cur, match, mres);
3684                         if (found_match.match_len > 0) {
3685                           LASSERT(found_match.pos_len > 0, /**/);
3686                           match.FillResults(found_match);
3687                           return found_match.pos_len;
3688                         }
3689                         else {
3690                           // try next possible match
3691                           cur.forwardPos();
3692                           repeat = false;
3693                           continue;
3694                         }
3695                 }
3696         }
3697         return 0;
3698 }
3699
3700
3701 /// Find the most backward consecutive match within same paragraph while searching backwards.
3702 MatchResult &findMostBackwards(DocIterator & cur, MatchStringAdv const & match)
3703 {
3704         DocIterator cur_begin = doc_iterator_begin(cur.buffer());
3705         DocIterator tmp_cur = cur;
3706         static MatchResult mr = findAdvFinalize(tmp_cur, match, MatchResult(-1));
3707         Inset & inset = cur.inset();
3708         for (; cur != cur_begin; cur.backwardPos()) {
3709                 LYXERR(Debug::FIND, "findMostBackwards(): cur=" << cur);
3710                 DocIterator new_cur = cur;
3711                 new_cur.backwardPos();
3712                 if (new_cur == cur || &new_cur.inset() != &inset || !match(new_cur).match_len)
3713                         break;
3714                 MatchResult new_mr = findAdvFinalize(new_cur, match, MatchResult(-1));
3715                 if (new_mr.match_len == mr.match_len)
3716                         break;
3717                 mr = new_mr;
3718         }
3719         LYXERR(Debug::FIND, "findMostBackwards(): exiting with cur=" << cur);
3720         return mr;
3721 }
3722
3723
3724 /// Finds backwards
3725 int findBackwardsAdv(DocIterator & cur, MatchStringAdv & match)
3726 {
3727         if (! cur)
3728                 return 0;
3729         // Backup of original position
3730         DocIterator cur_begin = doc_iterator_begin(cur.buffer());
3731         if (cur == cur_begin)
3732                 return 0;
3733         cur.backwardPos();
3734         DocIterator cur_orig(cur);
3735         bool pit_changed = false;
3736         do {
3737                 cur.pos() = 0;
3738                 bool found_match = (match(cur, -1, false).match_len > 0);
3739
3740                 if (found_match) {
3741                         if (pit_changed)
3742                                 cur.pos() = cur.lastpos();
3743                         else
3744                                 cur.pos() = cur_orig.pos();
3745                         LYXERR(Debug::FIND, "findBackAdv2: cur: " << cur);
3746                         DocIterator cur_prev_iter;
3747                         do {
3748                                 found_match = (match(cur).match_len > 0);
3749                                 LYXERR(Debug::FIND, "findBackAdv3: found_match="
3750                                        << found_match << ", cur: " << cur);
3751                                 if (found_match) {
3752                                         MatchResult found_mr = findMostBackwards(cur, match);
3753                                         match.FillResults(found_mr);
3754                                         LASSERT(found_mr.pos_len > 0, /**/);
3755                                         return found_mr.pos_len;
3756                                 }
3757
3758                                 // Stop if begin of document reached
3759                                 if (cur == cur_begin)
3760                                         break;
3761                                 cur_prev_iter = cur;
3762                                 cur.backwardPos();
3763                         } while (true);
3764                 }
3765                 if (cur == cur_begin)
3766                         break;
3767                 if (cur.pit() > 0)
3768                         --cur.pit();
3769                 else
3770                         cur.backwardPos();
3771                 pit_changed = true;
3772         } while (!theApp()->longOperationCancelled());
3773         return 0;
3774 }
3775
3776
3777 } // namespace
3778
3779
3780 docstring stringifyFromForSearch(FindAndReplaceOptions const & opt,
3781                                  DocIterator const & cur, int len)
3782 {
3783         if (cur.pos() < 0 || cur.pos() > cur.lastpos())
3784                 return docstring();
3785         if (!opt.ignoreformat)
3786                 return latexifyFromCursor(cur, len);
3787         else
3788                 return stringifyFromCursor(cur, len);
3789 }
3790
3791
3792 FindAndReplaceOptions::FindAndReplaceOptions(
3793         docstring const & _find_buf_name, bool _casesensitive,
3794         bool _matchword, bool _forward, bool _expandmacros, bool _ignoreformat,
3795         docstring const & _repl_buf_name, bool _keep_case,
3796         SearchScope _scope, SearchRestriction _restr, bool _replace_all)
3797         : find_buf_name(_find_buf_name), casesensitive(_casesensitive), matchword(_matchword),
3798           forward(_forward), expandmacros(_expandmacros), ignoreformat(_ignoreformat),
3799           repl_buf_name(_repl_buf_name), keep_case(_keep_case), scope(_scope), restr(_restr), replace_all(_replace_all)
3800 {
3801 }
3802
3803
3804 namespace {
3805
3806
3807 /** Check if 'len' letters following cursor are all non-lowercase */
3808 static bool allNonLowercase(Cursor const & cur, int len)
3809 {
3810         pos_type beg_pos = cur.selectionBegin().pos();
3811         pos_type end_pos = cur.selectionBegin().pos() + len;
3812         if (len > cur.lastpos() + 1 - beg_pos) {
3813                 LYXERR(Debug::FIND, "This should not happen, more debug needed");
3814                 len = cur.lastpos() + 1 - beg_pos;
3815                 end_pos = beg_pos + len;
3816         }
3817         for (pos_type pos = beg_pos; pos != end_pos; ++pos)
3818                 if (isLowerCase(cur.paragraph().getChar(pos)))
3819                         return false;
3820         return true;
3821 }
3822
3823
3824 /** Check if first letter is upper case and second one is lower case */
3825 static bool firstUppercase(Cursor const & cur)
3826 {
3827         char_type ch1, ch2;
3828         pos_type pos = cur.selectionBegin().pos();
3829         if (pos >= cur.lastpos() - 1) {
3830                 LYXERR(Debug::FIND, "No upper-case at cur: " << cur);
3831                 return false;
3832         }
3833         ch1 = cur.paragraph().getChar(pos);
3834         ch2 = cur.paragraph().getChar(pos + 1);
3835         bool result = isUpperCase(ch1) && isLowerCase(ch2);
3836         LYXERR(Debug::FIND, "firstUppercase(): "
3837                << "ch1=" << ch1 << "(" << char(ch1) << "), ch2="
3838                << ch2 << "(" << char(ch2) << ")"
3839                << ", result=" << result << ", cur=" << cur);
3840         return result;
3841 }
3842
3843
3844 /** Make first letter of supplied buffer upper-case, and the rest lower-case.
3845  **
3846  ** \fixme What to do with possible further paragraphs in replace buffer ?
3847  **/
3848 static void changeFirstCase(Buffer & buffer, TextCase first_case, TextCase others_case)
3849 {
3850         ParagraphList::iterator pit = buffer.paragraphs().begin();
3851         LASSERT(!pit->empty(), /**/);
3852         pos_type right = pos_type(1);
3853         pit->changeCase(buffer.params(), pos_type(0), right, first_case);
3854         right = pit->size();
3855         pit->changeCase(buffer.params(), pos_type(1), right, others_case);
3856 }
3857 } // namespace
3858
3859 static bool replaceMatches(string &t, int maxmatchnum, vector <string> const & replacements)
3860 {
3861   // Should replace the string "$" + std::to_string(matchnum) with replacement
3862   // if the char '$' is not prefixed with odd number of char '\\'
3863   static regex const rematch("(\\\\)*(\\$\\$([0-9]))");
3864   string s;
3865   size_t lastpos = 0;
3866   smatch sub;
3867   for (sregex_iterator it(t.begin(), t.end(), rematch), end; it != end; ++it) {
3868     sub = *it;
3869     if ((sub.position(2) - sub.position(0)) % 2 == 1)
3870       continue;
3871     int num = stoi(sub.str(3), nullptr, 10);
3872     if (num >= maxmatchnum)
3873       continue;
3874     if (lastpos < (size_t) sub.position(2))
3875       s += t.substr(lastpos, sub.position(2) - lastpos);
3876     s += replacements[num];
3877     lastpos = sub.position(2) + sub.length(2);
3878   }
3879   if (lastpos == 0)
3880     return false;
3881   else if (lastpos < t.length())
3882     s += t.substr(lastpos, t.length() - lastpos);
3883   t = s;
3884   return true;
3885 }
3886
3887 ///
3888 static int findAdvReplace(BufferView * bv, FindAndReplaceOptions const & opt, MatchStringAdv & matchAdv)
3889 {
3890         Cursor & cur = bv->cursor();
3891         if (opt.repl_buf_name.empty()
3892             || theBufferList().getBuffer(FileName(to_utf8(opt.repl_buf_name)), true) == 0
3893             || theBufferList().getBuffer(FileName(to_utf8(opt.find_buf_name)), true) == 0)
3894                 return 0;
3895
3896         DocIterator sel_beg = cur.selectionBegin();
3897         DocIterator sel_end = cur.selectionEnd();
3898         if (&sel_beg.inset() != &sel_end.inset()
3899             || sel_beg.pit() != sel_end.pit()
3900             || sel_beg.idx() != sel_end.idx())
3901                 return 0;
3902         int sel_len = sel_end.pos() - sel_beg.pos();
3903         LYXERR(Debug::FIND, "sel_beg: " << sel_beg << ", sel_end: " << sel_end
3904                << ", sel_len: " << sel_len << endl);
3905         if (sel_len == 0)
3906                 return 0;
3907         LASSERT(sel_len > 0, return 0);
3908
3909         if (!matchAdv(sel_beg, sel_len).match_len)
3910                 return 0;
3911
3912         // Build a copy of the replace buffer, adapted to the KeepCase option
3913         Buffer const & repl_buffer_orig = *theBufferList().getBuffer(FileName(to_utf8(opt.repl_buf_name)), true);
3914         ostringstream oss;
3915         repl_buffer_orig.write(oss);
3916         string lyx = oss.str();
3917         if (matchAdv.valid_matches > 0) {
3918           replaceMatches(lyx, matchAdv.valid_matches, matchAdv.matches);
3919         }
3920         Buffer repl_buffer("", false);
3921         repl_buffer.setUnnamed(true);
3922         LASSERT(repl_buffer.readString(lyx), return 0);
3923         if (opt.keep_case && sel_len >= 2) {
3924                 LYXERR(Debug::FIND, "keep_case true: cur.pos()=" << cur.pos() << ", sel_len=" << sel_len);
3925                 if (cur.inTexted()) {
3926                         if (firstUppercase(cur))
3927                                 changeFirstCase(repl_buffer, text_uppercase, text_lowercase);
3928                         else if (allNonLowercase(cur, sel_len))
3929                                 changeFirstCase(repl_buffer, text_uppercase, text_uppercase);
3930                 }
3931         }
3932         cap::cutSelection(cur, false);
3933         if (cur.inTexted()) {
3934                 repl_buffer.changeLanguage(
3935                         repl_buffer.language(),
3936                         cur.getFont().language());
3937                 LYXERR(Debug::FIND, "Replacing by pasteParagraphList()ing repl_buffer");
3938                 LYXERR(Debug::FIND, "Before pasteParagraphList() cur=" << cur << endl);
3939                 cap::pasteParagraphList(cur, repl_buffer.paragraphs(),
3940                                         repl_buffer.params().documentClassPtr(),
3941                                         bv->buffer().errorList("Paste"));
3942                 LYXERR(Debug::FIND, "After pasteParagraphList() cur=" << cur << endl);
3943                 sel_len = repl_buffer.paragraphs().begin()->size();
3944         } else if (cur.inMathed()) {
3945                 odocstringstream ods;
3946                 otexstream os(ods);
3947                 // OutputParams runparams(&repl_buffer.params().encoding());
3948                 OutputParams runparams(encodings.fromLyXName("utf8"));
3949                 runparams.nice = false;
3950                 runparams.flavor = Flavor::XeTeX;
3951                 runparams.linelen = 8000; //lyxrc.plaintext_linelen;
3952                 runparams.dryrun = true;
3953                 TeXOnePar(repl_buffer, repl_buffer.text(), 0, os, runparams);
3954                 //repl_buffer.getSourceCode(ods, 0, repl_buffer.paragraphs().size(), false);
3955                 docstring repl_latex = ods.str();
3956                 LYXERR(Debug::FIND, "Latexified replace_buffer: '" << repl_latex << "'");
3957                 string s;
3958                 (void)regex_replace(to_utf8(repl_latex), s, "\\$(.*)\\$", "$1");
3959                 (void)regex_replace(s, s, "\\\\\\[(.*)\\\\\\]", "$1");
3960                 repl_latex = from_utf8(s);
3961                 LYXERR(Debug::FIND, "Replacing by insert()ing latex: '" << repl_latex << "' cur=" << cur << " with depth=" << cur.depth());
3962                 MathData ar(cur.buffer());
3963                 asArray(repl_latex, ar, Parse::NORMAL);
3964                 cur.insert(ar);
3965                 sel_len = ar.size();
3966                 LYXERR(Debug::FIND, "After insert() cur=" << cur << " with depth: " << cur.depth() << " and len: " << sel_len);
3967         }
3968         if (cur.pos() >= sel_len)
3969                 cur.pos() -= sel_len;
3970         else
3971                 cur.pos() = 0;
3972         LYXERR(Debug::FIND, "After pos adj cur=" << cur << " with depth: " << cur.depth() << " and len: " << sel_len);
3973         bv->putSelectionAt(DocIterator(cur), sel_len, !opt.forward);
3974         bv->processUpdateFlags(Update::Force);
3975         return 1;
3976 }
3977
3978
3979 /// Perform a FindAdv operation.
3980 bool findAdv(BufferView * bv, FindAndReplaceOptions & opt)
3981 {
3982         DocIterator cur;
3983         int pos_len = 0;
3984
3985         // e.g., when invoking word-findadv from mini-buffer wither with
3986         //       wrong options syntax or before ever opening advanced F&R pane
3987         if (theBufferList().getBuffer(FileName(to_utf8(opt.find_buf_name)), true) == 0)
3988                 return false;
3989
3990         try {
3991                 MatchStringAdv matchAdv(bv->buffer(), opt);
3992 #if QTSEARCH
3993                 if (!matchAdv.regexIsValid) {
3994                         bv->message(lyx::from_utf8(matchAdv.regexError));
3995                         return(false);
3996                 }
3997 #endif
3998                 int length = bv->cursor().selectionEnd().pos() - bv->cursor().selectionBegin().pos();
3999                 if (length > 0)
4000                         bv->putSelectionAt(bv->cursor().selectionBegin(), length, !opt.forward);
4001                 num_replaced += findAdvReplace(bv, opt, matchAdv);
4002                 cur = bv->cursor();
4003                 if (opt.forward)
4004                         pos_len = findForwardAdv(cur, matchAdv);
4005                 else
4006                         pos_len = findBackwardsAdv(cur, matchAdv);
4007         } catch (exception & ex) {
4008                 bv->message(from_utf8(ex.what()));
4009                 return false;
4010         }
4011
4012         if (pos_len == 0) {
4013                 if (num_replaced > 0) {
4014                         switch (num_replaced)
4015                         {
4016                                 case 1:
4017                                         bv->message(_("One match has been replaced."));
4018                                         break;
4019                                 case 2:
4020                                         bv->message(_("Two matches have been replaced."));
4021                                         break;
4022                                 default:
4023                                         bv->message(bformat(_("%1$d matches have been replaced."), num_replaced));
4024                                         break;
4025                         }
4026                         num_replaced = 0;
4027                 }
4028                 else {
4029                         bv->message(_("Match not found."));
4030                 }
4031                 return false;
4032         }
4033
4034         if (num_replaced > 0)
4035                 bv->message(_("Match has been replaced."));
4036         else
4037                 bv->message(_("Match found."));
4038
4039         if (cur.pos() + pos_len > cur.lastpos()) {
4040                 // Prevent crash in bv->putSelectionAt()
4041                 // Should never happen, maybe LASSERT() here?
4042                 pos_len = cur.lastpos() - cur.pos();
4043         }
4044         LYXERR(Debug::FIND, "Putting selection at cur=" << cur << " with len: " << pos_len);
4045         bv->putSelectionAt(cur, pos_len, !opt.forward);
4046
4047         return true;
4048 }
4049
4050
4051 ostringstream & operator<<(ostringstream & os, FindAndReplaceOptions const & opt)
4052 {
4053         os << to_utf8(opt.find_buf_name) << "\nEOSS\n"
4054            << opt.casesensitive << ' '
4055            << opt.matchword << ' '
4056            << opt.forward << ' '
4057            << opt.expandmacros << ' '
4058            << opt.ignoreformat << ' '
4059            << opt.replace_all << ' '
4060            << to_utf8(opt.repl_buf_name) << "\nEOSS\n"
4061            << opt.keep_case << ' '
4062            << int(opt.scope) << ' '
4063            << int(opt.restr);
4064
4065         LYXERR(Debug::FIND, "built: " << os.str());
4066
4067         return os;
4068 }
4069
4070
4071 istringstream & operator>>(istringstream & is, FindAndReplaceOptions & opt)
4072 {
4073         LYXERR(Debug::FIND, "parsing");
4074         string s;
4075         string line;
4076         getline(is, line);
4077         while (line != "EOSS") {
4078                 if (! s.empty())
4079                         s = s + "\n";
4080                 s = s + line;
4081                 if (is.eof())   // Tolerate malformed request
4082                         break;
4083                 getline(is, line);
4084         }
4085         LYXERR(Debug::FIND, "file_buf_name: '" << s << "'");
4086         opt.find_buf_name = from_utf8(s);
4087         is >> opt.casesensitive >> opt.matchword >> opt.forward >> opt.expandmacros >> opt.ignoreformat >> opt.replace_all;
4088         is.get();       // Waste space before replace string
4089         s = "";
4090         getline(is, line);
4091         while (line != "EOSS") {
4092                 if (! s.empty())
4093                         s = s + "\n";
4094                 s = s + line;
4095                 if (is.eof())   // Tolerate malformed request
4096                         break;
4097                 getline(is, line);
4098         }
4099         LYXERR(Debug::FIND, "repl_buf_name: '" << s << "'");
4100         opt.repl_buf_name = from_utf8(s);
4101         is >> opt.keep_case;
4102         int i;
4103         is >> i;
4104         opt.scope = FindAndReplaceOptions::SearchScope(i);
4105         is >> i;
4106         opt.restr = FindAndReplaceOptions::SearchRestriction(i);
4107
4108         LYXERR(Debug::FIND, "parsed: " << opt.casesensitive << ' ' << opt.matchword << ' ' << opt.forward << ' '
4109                << opt.expandmacros << ' ' << opt.ignoreformat << ' ' << opt.keep_case << ' '
4110                << opt.scope << ' ' << opt.restr);
4111         return is;
4112 }
4113
4114 } // namespace lyx