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