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