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