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