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