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