]> git.lyx.org Git - lyx.git/blob - src/lyxfind.cpp
85e2d3b4261ecaa3ed58433d92ef54adb3b8ee27
[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 <map>
56
57 using namespace std;
58 using namespace lyx::support;
59
60 namespace lyx {
61
62 namespace {
63
64 bool parse_bool(docstring & howto)
65 {
66         if (howto.empty())
67                 return false;
68         docstring var;
69         howto = split(howto, var, ' ');
70         return var == "1";
71 }
72
73
74 class MatchString : public binary_function<Paragraph, pos_type, int>
75 {
76 public:
77         MatchString(docstring const & str, bool cs, bool mw)
78                 : str(str), case_sens(cs), whole_words(mw)
79         {}
80
81         // returns true if the specified string is at the specified position
82         // del specifies whether deleted strings in ct mode will be considered
83         int operator()(Paragraph const & par, pos_type pos, bool del = true) const
84         {
85                 return par.find(str, case_sens, whole_words, pos, del);
86         }
87
88 private:
89         // search string
90         docstring str;
91         // case sensitive
92         bool case_sens;
93         // match whole words only
94         bool whole_words;
95 };
96
97
98 int findForward(DocIterator & cur, MatchString const & match,
99                 bool find_del = true)
100 {
101         for (; cur; cur.forwardChar())
102                 if (cur.inTexted()) {
103                         int len = match(cur.paragraph(), cur.pos(), find_del);
104                         if (len > 0)
105                                 return len;
106                 }
107         return 0;
108 }
109
110
111 int findBackwards(DocIterator & cur, MatchString const & match,
112                   bool find_del = true)
113 {
114         while (cur) {
115                 cur.backwardChar();
116                 if (cur.inTexted()) {
117                         int len = match(cur.paragraph(), cur.pos(), find_del);
118                         if (len > 0)
119                                 return len;
120                 }
121         }
122         return 0;
123 }
124
125
126 bool searchAllowed(docstring const & str)
127 {
128         if (str.empty()) {
129                 frontend::Alert::error(_("Search error"), _("Search string is empty"));
130                 return false;
131         }
132         return true;
133 }
134
135
136 bool findOne(BufferView * bv, docstring const & searchstr,
137              bool case_sens, bool whole, bool forward,
138              bool find_del = true, bool check_wrap = false)
139 {
140         if (!searchAllowed(searchstr))
141                 return false;
142
143         DocIterator cur = forward
144                 ? bv->cursor().selectionEnd()
145                 : bv->cursor().selectionBegin();
146
147         MatchString const match(searchstr, case_sens, whole);
148
149         int match_len = forward
150                 ? findForward(cur, match, find_del)
151                 : findBackwards(cur, match, find_del);
152
153         if (match_len > 0)
154                 bv->putSelectionAt(cur, match_len, !forward);
155         else if (check_wrap) {
156                 DocIterator cur_orig(bv->cursor());
157                 docstring q;
158                 if (forward)
159                         q = _("End of file reached while searching forward.\n"
160                           "Continue searching from the beginning?");
161                 else
162                         q = _("Beginning of file reached while searching backward.\n"
163                           "Continue searching from the end?");
164                 int wrap_answer = frontend::Alert::prompt(_("Wrap search?"),
165                         q, 0, 1, _("&Yes"), _("&No"));
166                 if (wrap_answer == 0) {
167                         if (forward) {
168                                 bv->cursor().clear();
169                                 bv->cursor().push_back(CursorSlice(bv->buffer().inset()));
170                         } else {
171                                 bv->cursor().setCursor(doc_iterator_end(&bv->buffer()));
172                                 bv->cursor().backwardPos();
173                         }
174                         bv->clearSelection();
175                         if (findOne(bv, searchstr, case_sens, whole, forward, find_del, false))
176                                 return true;
177                 }
178                 bv->cursor().setCursor(cur_orig);
179                 return false;
180         }
181
182         return match_len > 0;
183 }
184
185
186 int replaceAll(BufferView * bv,
187                docstring const & searchstr, docstring const & replacestr,
188                bool case_sens, bool whole)
189 {
190         Buffer & buf = bv->buffer();
191
192         if (!searchAllowed(searchstr) || buf.isReadonly())
193                 return 0;
194
195         DocIterator cur_orig(bv->cursor());
196
197         MatchString const match(searchstr, case_sens, whole);
198         int num = 0;
199
200         int const rsize = replacestr.size();
201         int const ssize = searchstr.size();
202
203         Cursor cur(*bv);
204         cur.setCursor(doc_iterator_begin(&buf));
205         int match_len = findForward(cur, match, false);
206         while (match_len > 0) {
207                 // Backup current cursor position and font.
208                 pos_type const pos = cur.pos();
209                 Font const font = cur.paragraph().getFontSettings(buf.params(), pos);
210                 cur.recordUndo();
211                 int striked = ssize -
212                         cur.paragraph().eraseChars(pos, pos + match_len,
213                                                    buf.params().track_changes);
214                 cur.paragraph().insert(pos, replacestr, font,
215                                        Change(buf.params().track_changes
216                                               ? Change::INSERTED
217                                               : Change::UNCHANGED));
218                 for (int i = 0; i < rsize + striked; ++i)
219                         cur.forwardChar();
220                 ++num;
221                 match_len = findForward(cur, match, false);
222         }
223
224         bv->putSelectionAt(doc_iterator_begin(&buf), 0, false);
225
226         cur_orig.fixIfBroken();
227         bv->setCursor(cur_orig);
228
229         return num;
230 }
231
232
233 // the idea here is that we are going to replace the string that
234 // is selected IF it is the search string.
235 // if there is a selection, but it is not the search string, then
236 // we basically ignore it. (FIXME We ought to replace only within
237 // the selection.)
238 // if there is no selection, then:
239 //  (i) if some search string has been provided, then we find it.
240 //      (think of how the dialog works when you hit "replace" the
241 //      first time.)
242 // (ii) if no search string has been provided, then we treat the
243 //      word the cursor is in as the search string. (why? i have no
244 //      idea.) but this only works in text?
245 //
246 // returns the number of replacements made (one, if any) and
247 // whether anything at all was done.
248 pair<bool, int> replaceOne(BufferView * bv, docstring searchstr,
249                            docstring const & replacestr, bool case_sens,
250                            bool whole, bool forward, bool findnext)
251 {
252         Cursor & cur = bv->cursor();
253         bool found = false;
254         if (!cur.selection()) {
255                 // no selection, non-empty search string: find it
256                 if (!searchstr.empty()) {
257                         found = findOne(bv, searchstr, case_sens, whole, forward, true, findnext);
258                         return make_pair(found, 0);
259                 }
260                 // empty search string
261                 if (!cur.inTexted())
262                         // bail in math
263                         return make_pair(false, 0);
264                 // select current word and treat it as the search string.
265                 // This causes a minor bug as undo will restore this selection,
266                 // which the user did not create (#8986).
267                 cur.innerText()->selectWord(cur, WHOLE_WORD);
268                 searchstr = cur.selectionAsString(false);
269         }
270
271         // if we still don't have a search string, report the error
272         // and abort.
273         if (!searchAllowed(searchstr))
274                 return make_pair(false, 0);
275
276         bool have_selection = cur.selection();
277         docstring const selected = cur.selectionAsString(false);
278         bool match =
279                 case_sens
280                 ? searchstr == selected
281                 : compare_no_case(searchstr, selected) == 0;
282
283         // no selection or current selection is not search word:
284         // just find the search word
285         if (!have_selection || !match) {
286                 found = findOne(bv, searchstr, case_sens, whole, forward, true, findnext);
287                 return make_pair(found, 0);
288         }
289
290         // we're now actually ready to replace. if the buffer is
291         // read-only, we can't, though.
292         if (bv->buffer().isReadonly())
293                 return make_pair(false, 0);
294
295         cap::replaceSelectionWithString(cur, replacestr);
296         if (forward) {
297                 cur.pos() += replacestr.length();
298                 LASSERT(cur.pos() <= cur.lastpos(),
299                         cur.pos() = cur.lastpos());
300         }
301         if (findnext)
302                 findOne(bv, searchstr, case_sens, whole, forward, false, findnext);
303
304         return make_pair(true, 1);
305 }
306
307 } // namespace
308
309
310 docstring const find2string(docstring const & search,
311                             bool casesensitive, bool matchword, bool forward)
312 {
313         odocstringstream ss;
314         ss << search << '\n'
315            << int(casesensitive) << ' '
316            << int(matchword) << ' '
317            << int(forward);
318         return ss.str();
319 }
320
321
322 docstring const replace2string(docstring const & replace,
323                                docstring const & search,
324                                bool casesensitive, bool matchword,
325                                bool all, bool forward, bool findnext)
326 {
327         odocstringstream ss;
328         ss << replace << '\n'
329            << search << '\n'
330            << int(casesensitive) << ' '
331            << int(matchword) << ' '
332            << int(all) << ' '
333            << int(forward) << ' '
334            << int(findnext);
335         return ss.str();
336 }
337
338
339 bool lyxfind(BufferView * bv, FuncRequest const & ev)
340 {
341         if (!bv || ev.action() != LFUN_WORD_FIND)
342                 return false;
343
344         //lyxerr << "find called, cmd: " << ev << endl;
345
346         // data is of the form
347         // "<search>
348         //  <casesensitive> <matchword> <forward>"
349         docstring search;
350         docstring howto = split(ev.argument(), search, '\n');
351
352         bool casesensitive = parse_bool(howto);
353         bool matchword     = parse_bool(howto);
354         bool forward       = parse_bool(howto);
355
356         return findOne(bv, search, casesensitive, matchword, forward, true, true);
357 }
358
359
360 bool lyxreplace(BufferView * bv,
361                 FuncRequest const & ev, bool has_deleted)
362 {
363         if (!bv || ev.action() != LFUN_WORD_REPLACE)
364                 return false;
365
366         // data is of the form
367         // "<search>
368         //  <replace>
369         //  <casesensitive> <matchword> <all> <forward> <findnext>"
370         docstring search;
371         docstring rplc;
372         docstring howto = split(ev.argument(), rplc, '\n');
373         howto = split(howto, search, '\n');
374
375         bool casesensitive = parse_bool(howto);
376         bool matchword     = parse_bool(howto);
377         bool all           = parse_bool(howto);
378         bool forward       = parse_bool(howto);
379         bool findnext      = howto.empty() ? true : parse_bool(howto);
380
381         bool update = false;
382
383         if (!has_deleted) {
384                 int replace_count = 0;
385                 if (all) {
386                         replace_count = replaceAll(bv, search, rplc, casesensitive, matchword);
387                         update = replace_count > 0;
388                 } else {
389                         pair<bool, int> rv =
390                                 replaceOne(bv, search, rplc, casesensitive, matchword, forward, findnext);
391                         update = rv.first;
392                         replace_count = rv.second;
393                 }
394
395                 Buffer const & buf = bv->buffer();
396                 if (!update) {
397                         // emit message signal.
398                         buf.message(_("String not found."));
399                 } else {
400                         if (replace_count == 0) {
401                                 buf.message(_("String found."));
402                         } else if (replace_count == 1) {
403                                 buf.message(_("String has been replaced."));
404                         } else {
405                                 docstring const str =
406                                         bformat(_("%1$d strings have been replaced."), replace_count);
407                                 buf.message(str);
408                         }
409                 }
410         } else if (findnext) {
411                 // if we have deleted characters, we do not replace at all, but
412                 // rather search for the next occurence
413                 if (findOne(bv, search, casesensitive, matchword, forward, true, findnext))
414                         update = true;
415                 else
416                         bv->message(_("String not found."));
417         }
418         return update;
419 }
420
421
422 bool findNextChange(BufferView * bv, Cursor & cur, bool const check_wrap)
423 {
424         for (; cur; cur.forwardPos())
425                 if (cur.inTexted() && cur.paragraph().isChanged(cur.pos()))
426                         return true;
427
428         if (check_wrap) {
429                 DocIterator cur_orig(bv->cursor());
430                 docstring q = _("End of file reached while searching forward.\n"
431                           "Continue searching from the beginning?");
432                 int wrap_answer = frontend::Alert::prompt(_("Wrap search?"),
433                         q, 0, 1, _("&Yes"), _("&No"));
434                 if (wrap_answer == 0) {
435                         bv->cursor().clear();
436                         bv->cursor().push_back(CursorSlice(bv->buffer().inset()));
437                         bv->clearSelection();
438                         cur.setCursor(bv->cursor().selectionBegin());
439                         if (findNextChange(bv, cur, false))
440                                 return true;
441                 }
442                 bv->cursor().setCursor(cur_orig);
443         }
444
445         return false;
446 }
447
448
449 bool findPreviousChange(BufferView * bv, Cursor & cur, bool const check_wrap)
450 {
451         for (cur.backwardPos(); cur; cur.backwardPos()) {
452                 if (cur.inTexted() && cur.paragraph().isChanged(cur.pos()))
453                         return true;
454         }
455
456         if (check_wrap) {
457                 DocIterator cur_orig(bv->cursor());
458                 docstring q = _("Beginning of file reached while searching backward.\n"
459                           "Continue searching from the end?");
460                 int wrap_answer = frontend::Alert::prompt(_("Wrap search?"),
461                         q, 0, 1, _("&Yes"), _("&No"));
462                 if (wrap_answer == 0) {
463                         bv->cursor().setCursor(doc_iterator_end(&bv->buffer()));
464                         bv->cursor().backwardPos();
465                         bv->clearSelection();
466                         cur.setCursor(bv->cursor().selectionBegin());
467                         if (findPreviousChange(bv, cur, false))
468                                 return true;
469                 }
470                 bv->cursor().setCursor(cur_orig);
471         }
472
473         return false;
474 }
475
476
477 bool selectChange(Cursor & cur, bool forward)
478 {
479         if (!cur.inTexted() || !cur.paragraph().isChanged(cur.pos()))
480                 return false;
481         Change ch = cur.paragraph().lookupChange(cur.pos());
482
483         CursorSlice tip1 = cur.top();
484         for (; tip1.pit() < tip1.lastpit() || tip1.pos() < tip1.lastpos(); tip1.forwardPos()) {
485                 Change ch2 = tip1.paragraph().lookupChange(tip1.pos());
486                 if (!ch2.isSimilarTo(ch))
487                         break;
488         }
489         CursorSlice tip2 = cur.top();
490         for (; tip2.pit() > 0 || tip2.pos() > 0;) {
491                 tip2.backwardPos();
492                 Change ch2 = tip2.paragraph().lookupChange(tip2.pos());
493                 if (!ch2.isSimilarTo(ch)) {
494                         // take a step forward to correctly set the selection
495                         tip2.forwardPos();
496                         break;
497                 }
498         }
499         if (forward)
500                 swap(tip1, tip2);
501         cur.top() = tip1;
502         cur.bv().mouseSetCursor(cur, false);
503         cur.top() = tip2;
504         cur.bv().mouseSetCursor(cur, true);
505         return true;
506 }
507
508
509 namespace {
510
511
512 bool findChange(BufferView * bv, bool forward)
513 {
514         Cursor cur(*bv);
515         cur.setCursor(forward ? bv->cursor().selectionEnd()
516                       : bv->cursor().selectionBegin());
517         forward ? findNextChange(bv, cur, true) : findPreviousChange(bv, cur, true);
518         return selectChange(cur, forward);
519 }
520
521 } // namespace
522
523 bool findNextChange(BufferView * bv)
524 {
525         return findChange(bv, true);
526 }
527
528
529 bool findPreviousChange(BufferView * bv)
530 {
531         return findChange(bv, false);
532 }
533
534
535
536 namespace {
537
538 typedef vector<pair<string, string> > Escapes;
539
540 /// A map of symbols and their escaped equivalent needed within a regex.
541 /// @note Beware of order
542 Escapes const & get_regexp_escapes()
543 {
544         typedef std::pair<std::string, std::string> P;
545
546         static Escapes escape_map;
547         if (escape_map.empty()) {
548                 escape_map.push_back(P("$", "_x_$"));
549                 escape_map.push_back(P("{", "_x_{"));
550                 escape_map.push_back(P("}", "_x_}"));
551                 escape_map.push_back(P("[", "_x_["));
552                 escape_map.push_back(P("]", "_x_]"));
553                 escape_map.push_back(P("(", "_x_("));
554                 escape_map.push_back(P(")", "_x_)"));
555                 escape_map.push_back(P("+", "_x_+"));
556                 escape_map.push_back(P("*", "_x_*"));
557                 escape_map.push_back(P(".", "_x_."));
558                 escape_map.push_back(P("\\", "(?:\\\\|\\\\backslash)"));
559                 escape_map.push_back(P("~", "(?:\\\\textasciitilde|\\\\sim)"));
560                 escape_map.push_back(P("^", "(?:\\^|\\\\textasciicircum\\{\\}|\\\\textasciicircum|\\\\mathcircumflex)"));
561                 escape_map.push_back(P("_x_", "\\"));
562         }
563         return escape_map;
564 }
565
566 /// A map of lyx escaped strings and their unescaped equivalent.
567 Escapes const & get_lyx_unescapes()
568 {
569         typedef std::pair<std::string, std::string> P;
570
571         static Escapes escape_map;
572         if (escape_map.empty()) {
573                 escape_map.push_back(P("\\%", "%"));
574                 escape_map.push_back(P("\\mathcircumflex ", "^"));
575                 escape_map.push_back(P("\\mathcircumflex", "^"));
576                 escape_map.push_back(P("\\backslash ", "\\"));
577                 escape_map.push_back(P("\\backslash", "\\"));
578                 escape_map.push_back(P("\\\\{", "_x_<"));
579                 escape_map.push_back(P("\\\\}", "_x_>"));
580                 escape_map.push_back(P("\\sim ", "~"));
581                 escape_map.push_back(P("\\sim", "~"));
582         }
583         return escape_map;
584 }
585
586 /// A map of escapes turning a regexp matching text to one matching latex.
587 Escapes const & get_regexp_latex_escapes()
588 {
589         typedef std::pair<std::string, std::string> P;
590
591         static Escapes escape_map;
592         if (escape_map.empty()) {
593                 escape_map.push_back(P("\\\\", "(?:\\\\\\\\|\\\\backslash|\\\\textbackslash\\{\\}|\\\\textbackslash)"));
594                 escape_map.push_back(P("(<?!\\\\\\\\textbackslash)\\{", "\\\\\\{"));
595                 escape_map.push_back(P("(<?!\\\\\\\\textbackslash\\\\\\{)\\}", "\\\\\\}"));
596                 escape_map.push_back(P("\\[", "\\{\\[\\}"));
597                 escape_map.push_back(P("\\]", "\\{\\]\\}"));
598                 escape_map.push_back(P("\\^", "(?:\\^|\\\\textasciicircum\\{\\}|\\\\textasciicircum|\\\\mathcircumflex)"));
599                 escape_map.push_back(P("%", "\\\\\\%"));
600                 escape_map.push_back(P("#", "\\\\#"));
601         }
602         return escape_map;
603 }
604
605 /** @todo Probably the maps need to be migrated to regexps, in order to distinguish if
606  ** the found occurrence were escaped.
607  **/
608 string apply_escapes(string s, Escapes const & escape_map)
609 {
610         LYXERR(Debug::FIND, "Escaping: '" << s << "'");
611         Escapes::const_iterator it;
612         for (it = escape_map.begin(); it != escape_map.end(); ++it) {
613 //              LYXERR(Debug::FIND, "Escaping " << it->first << " as " << it->second);
614                 unsigned int pos = 0;
615                 while (pos < s.length() && (pos = s.find(it->first, pos)) < s.length()) {
616                         s.replace(pos, it->first.length(), it->second);
617                         LYXERR(Debug::FIND, "After escape: " << s);
618                         pos += it->second.length();
619 //                      LYXERR(Debug::FIND, "pos: " << pos);
620                 }
621         }
622         LYXERR(Debug::FIND, "Escaped : '" << s << "'");
623         return s;
624 }
625
626
627 /// Within \regexp{} apply get_lyx_unescapes() only (i.e., preserve regexp semantics of the string),
628 /// while outside apply get_lyx_unescapes()+get_regexp_escapes().
629 /// If match_latex is true, then apply regexp_latex_escapes() to \regexp{} contents as well.
630 string escape_for_regex(string s, bool match_latex)
631 {
632         size_t pos = 0;
633         while (pos < s.size()) {
634                 size_t new_pos = s.find("\\regexp{", pos);
635                 if (new_pos == string::npos)
636                         new_pos = s.size();
637                 LYXERR(Debug::FIND, "new_pos: " << new_pos);
638                 string t = apply_escapes(s.substr(pos, new_pos - pos), get_lyx_unescapes());
639                 LYXERR(Debug::FIND, "t [lyx]: " << t);
640                 t = apply_escapes(t, get_regexp_escapes());
641                 LYXERR(Debug::FIND, "t [rxp]: " << t);
642                 s.replace(pos, new_pos - pos, t);
643                 new_pos = pos + t.size();
644                 LYXERR(Debug::FIND, "Regexp after escaping: " << s);
645                 LYXERR(Debug::FIND, "new_pos: " << new_pos);
646                 if (new_pos == s.size())
647                         break;
648                 // Might fail if \\endregexp{} is preceeded by unexpected stuff (weird escapes)
649                 size_t end_pos = s.find("\\endregexp{}}", new_pos + 8);
650                 LYXERR(Debug::FIND, "end_pos: " << end_pos);
651                 t = s.substr(new_pos + 8, end_pos - (new_pos + 8));
652                 LYXERR(Debug::FIND, "t in regexp      : " << t);
653                 t = apply_escapes(t, get_lyx_unescapes());
654                 LYXERR(Debug::FIND, "t in regexp [lyx]: " << t);
655                 if (match_latex) {
656                         t = apply_escapes(t, get_regexp_latex_escapes());
657                         LYXERR(Debug::FIND, "t in regexp [ltx]: " << t);
658                 }
659                 if (end_pos == s.size()) {
660                         s.replace(new_pos, end_pos - new_pos, t);
661                         LYXERR(Debug::FIND, "Regexp after \\regexp{} removal: " << s);
662                         break;
663                 }
664                 s.replace(new_pos, end_pos + 13 - new_pos, t);
665                 LYXERR(Debug::FIND, "Regexp after \\regexp{...\\endregexp{}} removal: " << s);
666                 pos = new_pos + t.size();
667                 LYXERR(Debug::FIND, "pos: " << pos);
668         }
669         return s;
670 }
671
672
673 /// Wrapper for lyx::regex_replace with simpler interface
674 bool regex_replace(string const & s, string & t, string const & searchstr,
675                    string const & replacestr)
676 {
677         lyx::regex e(searchstr, regex_constants::ECMAScript);
678         ostringstream oss;
679         ostream_iterator<char, char> it(oss);
680         lyx::regex_replace(it, s.begin(), s.end(), e, replacestr);
681         // tolerate t and s be references to the same variable
682         bool rv = (s != oss.str());
683         t = oss.str();
684         return rv;
685 }
686
687
688 /** Checks if supplied string segment is well-formed from the standpoint of matching open-closed braces.
689  **
690  ** Verify that closed braces exactly match open braces. This avoids that, for example,
691  ** \frac{.*}{x} matches \frac{x+\frac{y}{x}}{z} with .* being 'x+\frac{y'.
692  **
693  ** @param unmatched
694  ** Number of open braces that must remain open at the end for the verification to succeed.
695  **/
696 bool braces_match(string::const_iterator const & beg,
697                   string::const_iterator const & end,
698                   int unmatched = 0)
699 {
700         int open_pars = 0;
701         string::const_iterator it = beg;
702         LYXERR(Debug::FIND, "Checking " << unmatched << " unmatched braces in '" << string(beg, end) << "'");
703         for (; it != end; ++it) {
704                 // Skip escaped braces in the count
705                 if (*it == '\\') {
706                         ++it;
707                         if (it == end)
708                                 break;
709                 } else if (*it == '{') {
710                         ++open_pars;
711                 } else if (*it == '}') {
712                         if (open_pars == 0) {
713                                 LYXERR(Debug::FIND, "Found unmatched closed brace");
714                                 return false;
715                         } else
716                                 --open_pars;
717                 }
718         }
719         if (open_pars != unmatched) {
720                 LYXERR(Debug::FIND, "Found " << open_pars
721                        << " instead of " << unmatched
722                        << " unmatched open braces at the end of count");
723                 return false;
724         }
725         LYXERR(Debug::FIND, "Braces match as expected");
726         return true;
727 }
728
729
730 /** The class performing a match between a position in the document and the FindAdvOptions.
731  **/
732 class MatchStringAdv {
733 public:
734         MatchStringAdv(lyx::Buffer & buf, FindAndReplaceOptions const & opt);
735
736         /** Tests if text starting at the supplied position matches with the one provided to the MatchStringAdv
737          ** constructor as opt.search, under the opt.* options settings.
738          **
739          ** @param at_begin
740          **     If set, then match is searched only against beginning of text starting at cur.
741          **     If unset, then match is searched anywhere in text starting at cur.
742          **
743          ** @return
744          ** The length of the matching text, or zero if no match was found.
745          **/
746         int operator()(DocIterator const & cur, int len = -1, bool at_begin = true) const;
747
748 public:
749         /// buffer
750         lyx::Buffer * p_buf;
751         /// first buffer on which search was started
752         lyx::Buffer * const p_first_buf;
753         /// options
754         FindAndReplaceOptions const & opt;
755
756 private:
757         /// Auxiliary find method (does not account for opt.matchword)
758         int findAux(DocIterator const & cur, int len = -1, bool at_begin = true) const;
759
760         /** Normalize a stringified or latexified LyX paragraph.
761          **
762          ** Normalize means:
763          ** <ul>
764          **   <li>if search is not casesensitive, then lowercase the string;
765          **   <li>remove any newline at begin or end of the string;
766          **   <li>replace any newline in the middle of the string with a simple space;
767          **   <li>remove stale empty styles and environments, like \emph{} and \textbf{}.
768          ** </ul>
769          **
770          ** @todo Normalization should also expand macros, if the corresponding
771          ** search option was checked.
772          **/
773         string normalize(docstring const & s, bool hack_braces) const;
774         // normalized string to search
775         string par_as_string;
776         // regular expression to use for searching
777         lyx::regex regexp;
778         // same as regexp, but prefixed with a ".*"
779         lyx::regex regexp2;
780         // leading format material as string
781         string lead_as_string;
782         // par_as_string after removal of lead_as_string
783         string par_as_string_nolead;
784         // unmatched open braces in the search string/regexp
785         int open_braces;
786         // number of (.*?) subexpressions added at end of search regexp for closing
787         // environments, math mode, styles, etc...
788         int close_wildcards;
789         // Are we searching with regular expressions ?
790         bool use_regexp;
791 };
792
793
794 static docstring buffer_to_latex(Buffer & buffer)
795 {
796         OutputParams runparams(&buffer.params().encoding());
797         odocstringstream ods;
798         otexstream os(ods);
799         runparams.nice = true;
800         runparams.flavor = OutputParams::LATEX;
801         runparams.linelen = 100000; //lyxrc.plaintext_linelen;
802         // No side effect of file copying and image conversion
803         runparams.dryrun = true;
804         runparams.for_search = true;
805         pit_type const endpit = buffer.paragraphs().size();
806         for (pit_type pit = 0; pit != endpit; ++pit) {
807                 TeXOnePar(buffer, buffer.text(), pit, os, runparams);
808                 LYXERR(Debug::FIND, "searchString up to here: " << ods.str());
809         }
810         return ods.str();
811 }
812
813
814 static docstring stringifySearchBuffer(Buffer & buffer, FindAndReplaceOptions const & opt)
815 {
816         docstring str;
817         if (!opt.ignoreformat) {
818                 str = buffer_to_latex(buffer);
819         } else {
820                 OutputParams runparams(&buffer.params().encoding());
821                 runparams.nice = true;
822                 runparams.flavor = OutputParams::LATEX;
823                 runparams.linelen = 100000; //lyxrc.plaintext_linelen;
824                 runparams.dryrun = true;
825                 runparams.for_search = true;
826                 for (pos_type pit = pos_type(0); pit < (pos_type)buffer.paragraphs().size(); ++pit) {
827                         Paragraph const & par = buffer.paragraphs().at(pit);
828                         LYXERR(Debug::FIND, "Adding to search string: '"
829                                << par.asString(pos_type(0), par.size(),
830                                                AS_STR_INSETS | AS_STR_SKIPDELETE | AS_STR_PLAINTEXT,
831                                                &runparams)
832                                << "'");
833                         str += par.asString(pos_type(0), par.size(),
834                                             AS_STR_INSETS | AS_STR_SKIPDELETE | AS_STR_PLAINTEXT,
835                                             &runparams);
836                 }
837         }
838         return str;
839 }
840
841
842 /// Return separation pos between the leading material and the rest
843 static size_t identifyLeading(string const & s)
844 {
845         string t = s;
846         // @TODO Support \item[text]
847         // Kornel: Added textsl, textsf, textit, texttt and noun
848         // + allow to search for colored text too
849         while (regex_replace(t, t, REGEX_BOS "\\\\(((emph|noun|minisec|text(bf|md|sl|sf|it|tt))|((textcolor|foreignlanguage)\\{[a-z]+\\})|(u|uu)line|(s|x)out|uwave)|((sub)?(((sub)?section)|paragraph)|part|chapter)\\*?)\\{", "")
850                || regex_replace(t, t, REGEX_BOS "\\$", "")
851                || regex_replace(t, t, REGEX_BOS "\\\\\\[ ", "")
852                || regex_replace(t, t, REGEX_BOS " ?\\\\item\\{[a-z]+\\}", "")
853                || regex_replace(t, t, REGEX_BOS "\\\\begin\\{[a-zA-Z_]*\\*?\\} ", ""))
854                ;
855         LYXERR(Debug::FIND, "  after removing leading $, \\[ , \\emph{, \\textbf{, etc.: '" << t << "'");
856         return s.find(t);
857 }
858
859 /*
860  * Given a latexified string, retrieve some handled features
861  * The features of the regex will later be compared with the features
862  * of the searched text. If the regex features are not a
863  * subset of the analized, then, in not format ignoring search
864  * we can early stop the search in the relevant inset.
865  */
866 typedef map<string, bool> Features;
867
868 static Features identifyFeatures(string const & s)
869 {
870         static regex const feature("\\\\(([a-z]+(\\{([a-z]+)\\}|\\*)?))\\{");
871         static regex const valid("^(((emph|noun|text(bf|md|sl|sf|it|tt)|(textcolor|foreignlanguage|item)\\{[a-z]+\\})|(u|uu)line|(s|x)out|uwave)|((sub)?(((sub)?section)|paragraph)|part|chapter)\\*?)$");
872         smatch sub;
873         bool displ = true;
874         Features info;
875
876         for (sregex_iterator it(s.begin(), s.end(), feature), end; it != end; ++it) {
877                 sub = *it;
878                 if (displ) {
879                         if (sub.str(1).compare("regexp") == 0) {
880                                 displ = false;
881                                 continue;
882                         }
883                         string token = sub.str(1);
884                         smatch sub2;
885                         if (regex_match(token, sub2, valid)) {
886                                 info[token] = true;
887                         }
888                         else {
889                                 // ignore
890                         }
891                 }
892                 else {
893                         if (sub.str(1).compare("endregexp") == 0) {
894                                 displ = true;
895                                 continue;
896                         }
897                 }
898         }
899         return(info);
900 }
901
902 /*
903  * defines values features of a key "\\[a-z]+{"
904  */
905 class KeyInfo {
906  public:
907   enum KeyType {
908     isChar,
909     isSectioning,
910     isMain,                             /* for \\foreignlanguage */
911     isRegex,
912     isMath,
913     isStandard,
914     isSize,
915     invalid,
916     doRemove,
917     isList,
918     isIgnored                           /* to be ignored by creating infos */
919   };
920  KeyInfo()
921    : keytype(invalid),
922     head(""),
923     parenthesiscount(1),
924     disabled(false),
925     used(false)
926   {};
927  KeyInfo(KeyType type, int parcount, bool disable)
928    : keytype(type),
929     parenthesiscount(parcount),
930     disabled(disable),
931     used(false) {};
932   KeyType keytype;
933   string head;
934   int _tokensize;
935   int _tokenstart;
936   int _dataStart;
937   int _dataEnd;
938   int parenthesiscount;
939   bool disabled;
940   bool used;                            /* by pattern */
941 };
942
943 class Border {
944  public:
945  Border(int l=0, int u=0) : low(l), upper(u) {};
946   int low;
947   int upper;
948 };
949
950 #define MAXOPENED 30
951 class Intervall {
952   bool isPatternString;
953  public:
954  Intervall(bool isPattern) : isPatternString(isPattern), ignoreidx(-1), actualdeptindex(0) { depts[0] = 0;};
955   string par;
956   int ignoreidx;
957   int depts[MAXOPENED];
958   int closes[MAXOPENED];
959   int actualdeptindex;
960   Border borders[2*MAXOPENED];
961   // int previousNotIgnored(int);
962   int nextNotIgnored(int);
963   void handleOpenP(int i);
964   void handleCloseP(int i, bool closingAllowed);
965   void resetOpenedP(int openPos);
966   void addIntervall(int upper);
967   void addIntervall(int low, int upper); /* if explicit */
968   void setForDefaultLang(int upTo);
969   int findclosing(int start, int end, char up, char down);
970   void handleParentheses(int lastpos, bool closingAllowed);
971   void output(ostringstream &os, int lastpos);
972   // string show(int lastpos);
973 };
974
975 void Intervall::setForDefaultLang(int upTo)
976 {
977   // Enable the use of first token again
978   if (ignoreidx >= 0) {
979     if (borders[0].low < upTo)
980       borders[0].low = upTo;
981     if (borders[0].upper < upTo)
982       borders[0].upper = upTo;
983   }
984 }
985
986 static void checkDepthIndex(int val)
987 {
988   static int maxdepthidx = MAXOPENED-2;
989   if (val > maxdepthidx) {
990     maxdepthidx = val;
991     LYXERR0("maxdepthidx now " << val);
992   }
993 }
994
995 static void checkIgnoreIdx(int val)
996 {
997   static int maxignoreidx = 2*MAXOPENED - 4;
998   if (val > maxignoreidx) {
999     maxignoreidx = val;
1000     LYXERR0("maxignoreidx now " << val);
1001   }
1002 }
1003
1004 /*
1005  * Expand the region of ignored parts of the input latex string
1006  * The region is only relevant in output()
1007  */
1008 void Intervall::addIntervall(int low, int upper)
1009 {
1010   int idx;
1011   if (low == upper) return;
1012   for (idx = ignoreidx+1; idx > 0; --idx) {
1013     if (low > borders[idx-1].upper) {
1014       break;
1015     }
1016   }
1017   Border br(low, upper);
1018   if (idx > ignoreidx) {
1019     borders[idx] = br;
1020     ignoreidx = idx;
1021     checkIgnoreIdx(ignoreidx);
1022     return;
1023   }
1024   else {
1025     // Expand only if one of the new bound is inside the interwall
1026     // We know here that br.low > borders[idx-1].upper
1027     if (br.upper < borders[idx].low) {
1028       // We have to insert at this pos
1029       for (int i = ignoreidx+1; i > idx; --i) {
1030         borders[i] = borders[i-1];
1031       }
1032       borders[idx] = br;
1033       ignoreidx += 1;
1034       checkIgnoreIdx(ignoreidx);
1035       return;
1036     }
1037     // Here we know, that we are overlapping
1038     if (br.low > borders[idx].low)
1039       br.low = borders[idx].low;
1040     // check what has to be concatenated
1041     int count = 0;
1042     for (int i = idx; i <= ignoreidx; i++) {
1043       if (br.upper >= borders[i].low) {
1044         count++;
1045         if (br.upper < borders[i].upper)
1046           br.upper = borders[i].upper;
1047       }
1048       else {
1049         break;
1050       }
1051     }
1052     // count should be >= 1 here
1053     borders[idx] = br;
1054     if (count > 1) {
1055       for (int i = idx + count; i <= ignoreidx; i++) {
1056         borders[i-count+1] = borders[i];
1057       }
1058       ignoreidx -= count - 1;
1059       return;
1060     }
1061   }
1062 }
1063
1064 void Intervall::handleOpenP(int i)
1065 {
1066   actualdeptindex++;
1067   depts[actualdeptindex] = i+1;
1068   closes[actualdeptindex] = -1;
1069   checkDepthIndex(actualdeptindex);
1070 }
1071
1072 void Intervall::handleCloseP(int i, bool closingAllowed)
1073 {
1074   if (actualdeptindex <= 0) {
1075     if (! closingAllowed)
1076       LYXERR(Debug::FIND, "Bad closing parenthesis in latex");  /* should not happen, but the latex input may be wrong */
1077     // if we are at the very end
1078     addIntervall(i, i+1);
1079   }
1080   else {
1081     closes[actualdeptindex] = i+1;
1082     actualdeptindex--;
1083   }
1084 }
1085
1086 void Intervall::resetOpenedP(int openPos)
1087 {
1088   // Used as initializer for foreignlanguage entry
1089   actualdeptindex = 1;
1090   depts[1] = openPos+1;
1091   closes[1] = -1;
1092 }
1093
1094 #if 0
1095 int Intervall::previousNotIgnored(int start)
1096 {
1097     int idx = 0;                          /* int intervalls */
1098     for (idx = ignoreidx; idx >= 0; --idx) {
1099       if (start > borders[idx].upper)
1100         return start;
1101       if (start >= borders[idx].low)
1102         start = borders[idx].low-1;
1103     }
1104     return start;
1105 }
1106 #endif
1107
1108 int Intervall::nextNotIgnored(int start)
1109 {
1110     int idx = 0;                          /* int intervalls */
1111     for (idx = 0; idx <= ignoreidx; idx++) {
1112       if (start < borders[idx].low)
1113         return start;
1114       if (start < borders[idx].upper)
1115         start = borders[idx].upper;
1116     }
1117     return start;
1118 }
1119
1120 typedef map<string, KeyInfo> KeysMap;
1121 typedef vector< KeyInfo> Entries;
1122 static KeysMap keys = map<string, KeyInfo>();
1123
1124 class IgnoreFormats {
1125   static bool ignoreFamily;
1126   static bool ignoreSeries;
1127   static bool ignoreShape;
1128   static bool ignoreUnderline;
1129   static bool ignoreMarkUp;
1130   static bool ignoreStrikeOut;
1131   static bool ignoreSectioning;
1132   static bool ignoreFrontMatter;
1133   static bool ignoreColor;
1134   static bool ignoreLanguage;
1135  public:
1136   bool getFamily() { return ignoreFamily; };
1137   bool getSeries() { return ignoreSeries; };
1138   bool getShape() { return ignoreShape; };
1139   bool getUnderline() { return ignoreUnderline; };
1140   bool getMarkUp() { return ignoreMarkUp; };
1141   bool getStrikeOut() { return ignoreStrikeOut; };
1142   bool getSectioning() { return ignoreSectioning; };
1143   bool getFrontMatter() { return ignoreFrontMatter; };
1144   bool getColor() { return ignoreColor; };
1145   bool getLanguage() { return ignoreLanguage; };
1146
1147   void setIgnoreFormat(string type, bool value);
1148 };
1149
1150 bool IgnoreFormats::ignoreFamily     = false;
1151 bool IgnoreFormats::ignoreSeries     = false;
1152 bool IgnoreFormats::ignoreShape      = false;
1153 bool IgnoreFormats::ignoreUnderline  = false;
1154 bool IgnoreFormats::ignoreMarkUp     = false;
1155 bool IgnoreFormats::ignoreStrikeOut  = false;
1156 bool IgnoreFormats::ignoreSectioning = false;
1157 bool IgnoreFormats::ignoreFrontMatter= true;
1158 bool IgnoreFormats::ignoreColor      = false;
1159 bool IgnoreFormats::ignoreLanguage   = false;
1160
1161 void IgnoreFormats::setIgnoreFormat(string type, bool value)
1162 {
1163   if (type == "color") {
1164     ignoreColor = value;
1165   }
1166   else if (type == "language") {
1167     ignoreLanguage = value;
1168   }
1169   else if (type == "sectioning") {
1170     ignoreSectioning = value;
1171     ignoreFrontMatter = value;
1172   }
1173   else if (type == "font") {
1174     ignoreSeries = value;
1175     ignoreShape = value;
1176     ignoreFamily = value;
1177   }
1178   else if (type == "series") {
1179     ignoreSeries = value;
1180   }
1181   else if (type == "shape") {
1182     ignoreShape = value;
1183   }
1184   else if (type == "family") {
1185     ignoreFamily = value;
1186   }
1187   else if (type == "markup") {
1188     ignoreMarkUp = value;
1189   }
1190   else if (type == "underline") {
1191     ignoreUnderline = value;
1192   }
1193   else if (type == "strike") {
1194     ignoreStrikeOut = value;
1195   }
1196 }
1197 #pragma GCC diagnostic push
1198 #pragma GCC diagnostic ignored "-Wpragmas"
1199 #pragma GCC diagnostic ignored "-Wunused"
1200 #pragma GCC diagnostic ignored "-Wunused-function"
1201
1202 #ifdef __GNUC__
1203 #define SUPPRESS_NOT_USED_WARN __attribute__ ((unused))
1204 #else
1205 #define SUPPRESS_NOT_USED_WARN
1206 #endif
1207
1208 void SUPPRESS_NOT_USED_WARN setIgnoreFormat(string type, bool value)
1209 {
1210   IgnoreFormats().setIgnoreFormat(type, value);
1211 }
1212 #pragma GCC diagnostic pop
1213
1214 class LatexInfo {
1215  private:
1216   int entidx;
1217   Entries entries;
1218   Intervall interval;
1219   void buildKeys(bool);
1220   void buildEntries(bool);
1221   void makeKey(const string &, KeyInfo, bool isPatternString);
1222   void processRegion(int start, int region_end); /*  remove {} parts */
1223   void removeHead(KeyInfo&, int count=0);
1224   IgnoreFormats f;
1225
1226  public:
1227  LatexInfo(string par, bool isPatternString) : interval(isPatternString) {
1228     interval.par = par;
1229     buildKeys(isPatternString);
1230     entries = vector<KeyInfo>();
1231     buildEntries(isPatternString);
1232   };
1233   int getFirstKey() {
1234     entidx = 0;
1235     if (entries.empty()) {
1236       return (-1);
1237     }
1238     return 0;
1239   };
1240   int getNextKey() {
1241     entidx++;
1242     if (int(entries.size()) > entidx) {
1243       return entidx;
1244     }
1245     else {
1246       return (-1);
1247     }
1248   };
1249   bool setNextKey(int idx) {
1250     if ((idx == entidx) && (entidx >= 0)) {
1251       entidx--;
1252       return true;
1253     }
1254     else
1255       return false;
1256   };
1257   int process(ostringstream &os, KeyInfo &actual);
1258   int dispatch(ostringstream &os, int previousStart, KeyInfo &actual);
1259   // string show(int lastpos) { return interval.show(lastpos);};
1260   int nextNotIgnored(int start) { return interval.nextNotIgnored(start);};
1261   KeyInfo &getKeyInfo(int keyinfo) {
1262     static KeyInfo invalidInfo = KeyInfo();
1263     if ((keyinfo < 0) || ( keyinfo >= int(entries.size())))
1264       return invalidInfo;
1265     else
1266       return entries[keyinfo];
1267   };
1268   void setForDefaultLang(int upTo) {interval.setForDefaultLang(upTo);};
1269 };
1270
1271
1272 int Intervall::findclosing(int start, int end, char up = '{', char down = '}')
1273 {
1274   int skip = 0;
1275   int depth = 0;
1276   for (int i = start; i < end; i += 1 + skip) {
1277     char c;
1278     c = par[i];
1279     skip = 0;
1280     if (c == '\\') skip = 1;
1281     else if (c == up) {
1282       depth++;
1283     }
1284     else if (c == down) {
1285       if (depth == 0) return i;
1286       --depth;
1287     }
1288   }
1289   return end;
1290 }
1291
1292 class MathInfo {
1293   class MathEntry {
1294   public:
1295     string wait;
1296     size_t mathEnd;
1297     size_t mathStart;
1298     size_t mathSize;
1299   };
1300   size_t actualIdx;
1301   vector<MathEntry> entries;
1302  public:
1303   MathInfo() {
1304     actualIdx = 0;
1305   }
1306   void insert(string wait, size_t start, size_t end) {
1307     MathEntry m = MathEntry();
1308     m.wait = wait;
1309     m.mathStart = start;
1310     m.mathEnd = end;
1311     m.mathSize = end - start;
1312     entries.push_back(m);
1313   }
1314   bool evaluating(size_t pos) {
1315     while (actualIdx < entries.size()) {
1316       if (pos < entries[actualIdx].mathStart)
1317         return false;
1318       if (pos < entries[actualIdx].mathEnd)
1319         return true;
1320       actualIdx++;
1321     }
1322     return false;
1323   }
1324   bool empty() { return entries.empty(); };
1325   size_t getEndPos() {
1326     if (entries.empty() || (actualIdx >= entries.size())) {
1327       return 0;
1328     }
1329     return entries[actualIdx].mathEnd;
1330   }
1331   size_t getStartPos() {
1332     if (entries.empty() || (actualIdx >= entries.size())) {
1333       return 100000;                    /*  definitely enough? */
1334     }
1335     return entries[actualIdx].mathStart;
1336   }
1337   size_t getFirstPos() {
1338     actualIdx = 0;
1339     return getStartPos();
1340   }
1341   size_t getSize() {
1342     if (entries.empty() || (actualIdx >= entries.size())) {
1343       return size_t(0);
1344     }
1345     return entries[actualIdx].mathSize;
1346   }
1347   void incrEntry() { actualIdx++; };
1348 };
1349
1350 void LatexInfo::buildEntries(bool isPatternString)
1351 {
1352   static regex const rmath("\\$|\\\\\\[|\\\\\\]|\\\\(begin|end)\\{((eqnarray|equation|flalign|gather|multline|align)\\*?)\\}");
1353   static regex const rkeys("\\$|\\\\\\[|\\\\\\]|\\\\((([a-zA-Z]+\\*?)(\\{([a-z]+\\*?)\\}|=[0-9]+[a-z]+)?))");
1354   static bool disableLanguageOverride = false;
1355   smatch sub, submath;
1356   bool evaluatingRegexp = false;
1357   MathInfo mi;
1358   bool evaluatingMath = false;
1359   KeyInfo found;
1360   bool math_end_waiting = false;
1361   size_t math_pos = 10000;
1362   string math_end;
1363
1364   for (sregex_iterator itmath(interval.par.begin(), interval.par.end(), rmath), end; itmath != end; ++itmath) {
1365     submath = *itmath;
1366     if (math_end_waiting) {
1367       size_t pos = submath.position(size_t(0));
1368       if ((math_end == "$") &&
1369           (submath.str(0) == "$") &&
1370           (interval.par[pos-1] != '\\')) {
1371         mi.insert("$", math_pos, pos + 1);
1372         math_end_waiting = false;
1373       }
1374       else if ((math_end == "\\]") &&
1375                (submath.str(0) == "\\]")) {
1376         mi.insert("\\]", math_pos, pos + 2);
1377         math_end_waiting = false;
1378       }
1379       else if ((submath.str(1).compare("end") == 0) &&
1380           (submath.str(2).compare(math_end) == 0)) {
1381         mi.insert(math_end, math_pos, pos + submath.str(0).length());
1382         math_end_waiting = false;
1383       }
1384       else
1385         continue;
1386     }
1387     else {
1388       if (submath.str(1).compare("begin") == 0) {
1389         math_end_waiting = true;
1390         math_end = submath.str(2);
1391         math_pos = submath.position(size_t(0));
1392       }
1393       else if (submath.str(0).compare("\\[") == 0) {
1394         math_end_waiting = true;
1395         math_end = "\\]";
1396         math_pos = submath.position(size_t(0));
1397       }
1398       else if (submath.str(0) == "$") {
1399         size_t pos = submath.position(size_t(0));
1400         if ((pos == 0) || (interval.par[pos-1] != '\\')) {
1401           math_end_waiting = true;
1402           math_end = "$";
1403           math_pos = pos;
1404         }
1405       }
1406     }
1407   }
1408   // Ignore language if there is math somewhere in pattern-string
1409   if (isPatternString) {
1410     if (! mi.empty()) {
1411       // Disable language
1412       keys["foreignlanguage"].disabled = true;
1413       disableLanguageOverride = true;
1414     }
1415     else
1416       disableLanguageOverride = false;
1417   }
1418   else {
1419     if (disableLanguageOverride) {
1420       keys["foreignlanguage"].disabled = true;
1421     }
1422   }
1423   math_pos = mi.getFirstPos();
1424   for (sregex_iterator it(interval.par.begin(), interval.par.end(), rkeys), end; it != end; ++it) {
1425     sub = *it;
1426     string key = sub.str(3);
1427     if (key == "") {
1428       if (sub.str(0)[0] == '\\')
1429         key = sub.str(0)[1];
1430       else
1431         key = sub.str(0);
1432     };
1433     if (evaluatingRegexp) {
1434       if (sub.str(1).compare("endregexp") == 0) {
1435         evaluatingRegexp = false;
1436         // found._tokenstart already set
1437         found._dataEnd = sub.position(size_t(0)) + 13;
1438         found._dataStart = found._dataEnd;
1439         found._tokensize = found._dataEnd - found._tokenstart;
1440         found.parenthesiscount = 0;
1441       }
1442     }
1443     else {
1444       if (evaluatingMath) {
1445         if (size_t(sub.position(size_t(0))) < mi.getEndPos())
1446           continue;
1447         evaluatingMath = false;
1448         mi.incrEntry();
1449         math_pos = mi.getStartPos();
1450       }
1451       if (keys.find(key) == keys.end()) {
1452         LYXERR(Debug::FIND, "Found unknown key " << sub.str(0));
1453         continue;
1454       }
1455       found = keys[key];
1456       if (key.compare("regexp") == 0) {
1457         evaluatingRegexp = true;
1458         found._tokenstart = sub.position(size_t(0));
1459         found._tokensize = 0;
1460         continue;
1461       }
1462     }
1463     // Handle the other params of key
1464     if (found.keytype == KeyInfo::isIgnored)
1465       continue;
1466     else if (found.keytype == KeyInfo::isMath) {
1467       if (size_t(sub.position(size_t(0))) == math_pos) {
1468         found = keys[key];
1469         found._tokenstart = sub.position(size_t(0));
1470         found._tokensize = mi.getSize();
1471         found._dataEnd = found._tokenstart + found._tokensize;
1472         found._dataStart = found._dataEnd;
1473         found.parenthesiscount = 0;
1474         evaluatingMath = true;
1475       }
1476       else {
1477         // begin|end of unknown env, discard
1478         found = keys[key];
1479         // discard spaces before pos(0)
1480         int pos = sub.position(size_t(0));
1481         int count;
1482         for (count = 0; pos - count > 0; count++) {
1483           char c = interval.par[pos-count-1];
1484           if (c != ' ')
1485             break;
1486         }
1487         found.keytype = KeyInfo::doRemove;
1488         found._tokenstart = pos - count;
1489         if (sub.str(1).compare(0, 5, "begin") == 0) {
1490           size_t pos1 = pos + sub.str(0).length();
1491           if (interval.par[pos1] == '[') {
1492             pos1 = interval.findclosing(pos1+1, interval.par.length(), '[', ']')+1;
1493           }
1494           if (interval.par[pos1] == '{') {
1495             found._dataEnd = interval.findclosing(pos1+1, interval.par.length()) + 1;
1496           }
1497           else {
1498             found._dataEnd = pos1;
1499           }
1500           found._dataStart = found._dataEnd;
1501         }
1502         else {
1503           found._dataStart = pos + sub.str(0).length();
1504           found._dataEnd = found._dataStart;
1505         }
1506         found._tokensize = count + found._dataEnd - pos;
1507         found.parenthesiscount = 0;
1508         found.disabled = true;
1509       }
1510     }
1511     else if (found.keytype != KeyInfo::isRegex) {
1512       found._tokenstart = sub.position(size_t(0));
1513       if (found.parenthesiscount == 0) {
1514         // Probably to be discarded
1515         char following = interval.par[sub.position(size_t(0)) + sub.str(3).length() + 1];
1516         if (following == ' ')
1517           found.head = "\\" + sub.str(3) + " ";
1518         else if (following == '=') {
1519           // like \uldepth=1000pt
1520           found.head = sub.str(0);
1521         }
1522         else
1523           found.head = "\\" + key;
1524         found._tokensize = found.head.length();
1525         found._dataEnd = found._tokenstart + found._tokensize;
1526         found._dataStart = found._dataEnd;
1527       }
1528       else {
1529         if (found.parenthesiscount == 1) {
1530           found.head = "\\" + key + "{";
1531         }
1532         else if (found.parenthesiscount == 2) {
1533           found.head = sub.str(0) + "{";
1534         }
1535         found._tokensize = found.head.length();
1536         found._dataStart = found._tokenstart + found.head.length();
1537         size_t endpos = interval.findclosing(found._dataStart, interval.par.length());
1538         if ((endpos == interval.par.length()) &&
1539             (found.keytype == KeyInfo::doRemove)) {
1540           // Missing closing => error in latex-input?
1541           // therefore do not delete remaining data
1542           found._dataStart -= 1;
1543           found._dataEnd = found._dataStart;
1544         }
1545         else
1546           found._dataEnd = endpos;
1547         if (isPatternString) {
1548           keys[key].used = true;
1549         }
1550       }
1551     }
1552     entries.push_back(found);
1553   }
1554 }
1555
1556 void LatexInfo::makeKey(const string &keysstring, KeyInfo keyI, bool isPatternString)
1557 {
1558   stringstream s(keysstring);
1559   string key;
1560   const char delim = '|';
1561   while (getline(s, key, delim)) {
1562     KeyInfo keyII(keyI);
1563     if (isPatternString) {
1564       keyII.used = false;
1565     }
1566     else if ( !keys[key].used)
1567       keyII.disabled = true;
1568     keys[key] = keyII;
1569   }
1570 }
1571
1572 void LatexInfo::buildKeys(bool isPatternString)
1573 {
1574
1575   static bool keysBuilt = false;
1576   if (keysBuilt && !isPatternString) return;
1577
1578   // Know standard keys with 1 parameter.
1579   // Split is done, if not at start of region
1580   makeKey("textsf|textss|texttt", KeyInfo(KeyInfo::isStandard, 1, f.getFamily()), isPatternString);
1581   makeKey("textbf",               KeyInfo(KeyInfo::isStandard, 1, f.getSeries()), isPatternString);
1582   makeKey("textit|textsc|textsl", KeyInfo(KeyInfo::isStandard, 1, f.getShape()), isPatternString);
1583   makeKey("uuline|uline|uwave",   KeyInfo(KeyInfo::isStandard, 1, f.getUnderline()), isPatternString);
1584   makeKey("emph|noun",            KeyInfo(KeyInfo::isStandard, 1, f.getMarkUp()), isPatternString);
1585   makeKey("sout|xout",            KeyInfo(KeyInfo::isStandard, 1, f.getStrikeOut()), isPatternString);
1586
1587   makeKey("section|subsection|subsubsection|paragraph|subparagraph|minisec",
1588           KeyInfo(KeyInfo::isSectioning, 1, f.getSectioning()), isPatternString);
1589   makeKey("section*|subsection*|subsubsection*|paragraph*",
1590           KeyInfo(KeyInfo::isSectioning, 1, f.getSectioning()), isPatternString);
1591   makeKey("part|part*|chapter|chapter*", KeyInfo(KeyInfo::isSectioning, 1, f.getSectioning()), isPatternString);
1592   makeKey("title|subtitle|author|subject|publishers|dedication|uppertitleback|lowertitleback|extratitle|lyxaddress|lyxrightaddress", KeyInfo(KeyInfo::isSectioning, 1, f.getFrontMatter()), isPatternString);
1593   // Regex
1594   makeKey("regexp", KeyInfo(KeyInfo::isRegex, 1, false), isPatternString);
1595
1596   // Split is done, if not at start of region
1597   makeKey("textcolor", KeyInfo(KeyInfo::isStandard, 2, f.getColor()), isPatternString);
1598
1599   // Split is done always.
1600   makeKey("foreignlanguage", KeyInfo(KeyInfo::isMain, 2, f.getLanguage()), isPatternString);
1601
1602   // Know charaters
1603   // No split
1604   makeKey("backslash|textbackslash|textasciicircum|textasciitilde|ldots", KeyInfo(KeyInfo::isChar, 1, false), isPatternString);
1605   // Found in fr/UserGuide.lyx
1606   makeKey("og|fg", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
1607
1608   // Known macros to remove (including their parameter)
1609   // No split
1610   makeKey("inputencoding|shortcut|label|ref", KeyInfo(KeyInfo::doRemove, 1, false), isPatternString);
1611
1612   // Macros to remove, but let the parameter survive
1613   // No split
1614   makeKey("url|href|menuitem|footnote|code|index|textmd", KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
1615
1616   // Same effect as previous, parameter will survive (because there is no one anyway)
1617   // No split
1618   makeKey("noindent", KeyInfo(KeyInfo::isStandard, 0, true), isPatternString);
1619   // Remove table decorations
1620   makeKey("hline|tabularnewline|toprule|bottomrule|midrule", KeyInfo(KeyInfo::doRemove, 0, true), isPatternString);
1621   // Discard shape-header
1622   makeKey("circlepar|diamondpar|heartpar|nutpar",  KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
1623   makeKey("trianglerightpar|hexagonpar|starpar",   KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
1624   makeKey("triangleuppar|triangledownpar|droppar", KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
1625   makeKey("triangleleftpar|shapepar|dropuppar",    KeyInfo(KeyInfo::isStandard, 1, true), isPatternString);
1626   // like ('tiny{}' or '\tiny ' ... }
1627   makeKey("footnotesize|tiny|scriptsize|small|large|Large|LARGE|huge|Huge", KeyInfo(KeyInfo::isSize, 0, true), isPatternString);
1628
1629   // Survives, like known character
1630   makeKey("lyx|latex|tex", KeyInfo(KeyInfo::isIgnored, 0, false), isPatternString);
1631   makeKey("item", KeyInfo(KeyInfo::isList, 1, false), isPatternString);
1632
1633   makeKey("begin|end", KeyInfo(KeyInfo::isMath, 1, false), isPatternString);
1634   makeKey("[|]", KeyInfo(KeyInfo::isMath, 1, false), isPatternString);
1635   makeKey("$", KeyInfo(KeyInfo::isMath, 1, false), isPatternString);
1636
1637   makeKey("par|uldepth|ULdepth|protect", KeyInfo(KeyInfo::doRemove, 0, true), isPatternString);
1638
1639   if (isPatternString) {
1640     // Allow the first searched string to rebuild the keys too
1641     keysBuilt = false;
1642   }
1643   else {
1644     // no need to rebuild again
1645     keysBuilt = true;
1646   }
1647 }
1648
1649 /*
1650  * Keep the list of actual opened parentheses actual
1651  * (e.g. depth == 4 means there are 4 '{' not processed yet)
1652  */
1653 void Intervall::handleParentheses(int lastpos, bool closingAllowed)
1654 {
1655   int skip = 0;
1656   for (int i = depts[actualdeptindex]; i < lastpos; i+= 1 + skip) {
1657     char c;
1658     c = par[i];
1659     skip = 0;
1660     if (c == '\\') skip = 1;
1661     else if (c == '{') {
1662       handleOpenP(i);
1663     }
1664     else if (c == '}') {
1665       handleCloseP(i, closingAllowed);
1666     }
1667   }
1668 }
1669
1670 #if (0)
1671 string Intervall::show(int lastpos)
1672 {
1673   int idx = 0;                          /* int intervalls */
1674   int count = 0;
1675   string s;
1676   int i = 0;
1677   for (idx = 0; idx <= ignoreidx; idx++) {
1678     while (i < lastpos) {
1679       int printsize;
1680       if (i <= borders[idx].low) {
1681         if (borders[idx].low > lastpos)
1682           printsize = lastpos - i;
1683         else
1684           printsize = borders[idx].low - i;
1685         s += par.substr(i, printsize);
1686         i += printsize;
1687         if (i >= borders[idx].low)
1688           i = borders[idx].upper;
1689       }
1690       else {
1691         i = borders[idx].upper;
1692         break;
1693       }
1694     }
1695   }
1696   if (lastpos > i) {
1697     s += par.substr(i, lastpos-i);
1698   }
1699   return (s);
1700 }
1701 #endif
1702
1703 void Intervall::output(ostringstream &os, int lastpos)
1704 {
1705   // get number of chars to output
1706   int idx = 0;                          /* int intervalls */
1707   int i = 0;
1708   for (idx = 0; idx <= ignoreidx; idx++) {
1709     if (i < lastpos) {
1710       int printsize;
1711       if (i <= borders[idx].low) {
1712         if (borders[idx].low > lastpos)
1713           printsize = lastpos - i;
1714         else
1715           printsize = borders[idx].low - i;
1716         os << par.substr(i, printsize);
1717         i += printsize;
1718         handleParentheses(i, false);
1719         if (i >= borders[idx].low)
1720           i = borders[idx].upper;
1721       }
1722       else {
1723         i = borders[idx].upper;
1724       }
1725     }
1726     else
1727       break;
1728   }
1729   if (lastpos > i) {
1730     os << par.substr(i, lastpos-i);
1731   }
1732   handleParentheses(lastpos, false);
1733   for (int i = actualdeptindex; i > 0; --i) {
1734     os << "}";
1735   }
1736   if (! isPatternString)
1737     os << "\n";
1738   handleParentheses(lastpos, true); /* extra closings '}' allowed here */
1739 }
1740
1741 void LatexInfo::processRegion(int start, int region_end)
1742 {
1743   while (start < region_end) {          /* Let {[} and {]} survive */
1744     if ((interval.par[start] == '{') &&
1745         (interval.par[start+1] != ']') &&
1746         (interval.par[start+1] != '[')) {
1747       // Closing is allowed past the region
1748       int closing = interval.findclosing(start+1, interval.par.length());
1749       interval.addIntervall(start, start+1);
1750       interval.addIntervall(closing, closing+1);
1751     }
1752     start = interval.nextNotIgnored(start+1);
1753   }
1754 }
1755
1756 void LatexInfo::removeHead(KeyInfo &actual, int count)
1757 {
1758   if (actual.parenthesiscount == 0) {
1759     // "{\tiny{} ...}" ==> "{{} ...}"
1760     interval.addIntervall(actual._tokenstart-count, actual._tokenstart + actual._tokensize);
1761   }
1762   else {
1763     // Remove header hull, that is "\url{abcd}" ==> "abcd"
1764     interval.addIntervall(actual._tokenstart, actual._dataStart);
1765     interval.addIntervall(actual._dataEnd, actual._dataEnd+1);
1766   }
1767 }
1768
1769 int LatexInfo::dispatch(ostringstream &os, int previousStart, KeyInfo &actual)
1770 {
1771   int nextKeyIdx = 0;
1772   switch (actual.keytype)
1773   {
1774     case KeyInfo::isChar: {
1775       nextKeyIdx = getNextKey();
1776       break;
1777     }
1778     case KeyInfo::isSize: {
1779       if (actual.disabled) {
1780         // Allways disabled
1781         processRegion(actual._dataEnd, actual._dataEnd+1); /* remove possibly following {} */
1782         interval.addIntervall(actual._tokenstart, actual._dataEnd+1);
1783         nextKeyIdx = getNextKey();
1784       } else {
1785         // Split on this key if not at start
1786         int start = interval.nextNotIgnored(previousStart);
1787         if (start < actual._tokenstart) {
1788           interval.output(os, actual._tokenstart);
1789           interval.addIntervall(start, actual._tokenstart);
1790         }
1791         // discard entry if at end of actual
1792         nextKeyIdx = process(os, actual);
1793       }
1794       break;
1795     }
1796     case KeyInfo::isStandard: {
1797       if (actual.disabled) {
1798         removeHead(actual);
1799         processRegion(actual._dataStart, actual._dataStart+1);
1800         nextKeyIdx = getNextKey();
1801       } else {
1802         // Split on this key if not at start
1803         int start = interval.nextNotIgnored(previousStart);
1804         if (start < actual._tokenstart) {
1805           interval.output(os, actual._tokenstart);
1806           interval.addIntervall(start, actual._tokenstart);
1807         }
1808         // discard entry if at end of actual
1809         nextKeyIdx = process(os, actual);
1810       }
1811       break;
1812     }
1813     case KeyInfo::doRemove: {
1814       // Remove the key with all parameters and following spaces
1815       size_t pos;
1816       for (pos = actual._dataEnd+1; pos < interval.par.length(); pos++) {
1817         if (interval.par[pos] != ' ')
1818           break;
1819       }
1820       interval.addIntervall(actual._tokenstart, pos);
1821       nextKeyIdx = getNextKey();
1822       break;
1823     }
1824     case KeyInfo::isList: {
1825       // Discard space before _tokenstart
1826       int count;
1827       for (count = 0; count < actual._tokenstart; count++) {
1828         if (interval.par[actual._tokenstart-count-1] != ' ')
1829           break;
1830       }
1831       if (actual.disabled) {
1832         interval.addIntervall(actual._tokenstart-count, actual._dataEnd+1);
1833       }
1834       else {
1835         interval.addIntervall(actual._tokenstart-count, actual._tokenstart);
1836       }
1837       // Discard extra parentheses '[]'
1838       if (interval.par[actual._dataEnd+1] == '[') {
1839         int posdown = interval.findclosing(actual._dataEnd+2, interval.par.length(), '[', ']');
1840         if ((interval.par[actual._dataEnd+2] == '{') &&
1841             (interval.par[posdown-1] == '}')) {
1842           interval.addIntervall(actual._dataEnd+1,actual._dataEnd+3);
1843           interval.addIntervall(posdown-1, posdown+1);
1844         }
1845         else {
1846           interval.addIntervall(actual._dataEnd+1, actual._dataEnd+2);
1847           interval.addIntervall(posdown, posdown+1);
1848         }
1849         int blk = interval.nextNotIgnored(actual._dataEnd+1);
1850         if (blk > posdown) {
1851           // Discard at most 1 space after empty item
1852           int count;
1853           for (count = 0; count < 1; count++) {
1854             if (interval.par[blk+count] != ' ')
1855               break;
1856           }
1857           if (count > 0)
1858             interval.addIntervall(blk, blk+count);
1859         }
1860       }
1861       nextKeyIdx = getNextKey();
1862       break;
1863     }
1864     case KeyInfo::isSectioning: {
1865       // Discard spaces before _tokenstart
1866       int count;
1867       for (count = 0; count < actual._tokenstart; count++) {
1868         if (interval.par[actual._tokenstart-count-1] != ' ')
1869           break;
1870       }
1871       if (actual.disabled) {
1872         removeHead(actual, count);
1873         nextKeyIdx = getNextKey();
1874       } else {
1875         interval.addIntervall(actual._tokenstart-count, actual._tokenstart);
1876         nextKeyIdx = process(os, actual);
1877       }
1878       break;
1879     }
1880     case KeyInfo::isMath: {
1881       // Same as regex, use the content unchanged
1882       nextKeyIdx = getNextKey();
1883       break;
1884     }
1885     case KeyInfo::isRegex: {
1886       // DO NOT SPLIT ON REGEX
1887       // Do not disable
1888       nextKeyIdx = getNextKey();
1889       break;
1890     }
1891     case KeyInfo::isIgnored: {
1892       // Treat like a character for now
1893       nextKeyIdx = getNextKey();
1894       break;
1895     }
1896     case KeyInfo::isMain: {
1897       if (actual.disabled) {
1898         removeHead(actual);
1899         if ((interval.par.substr(actual._dataStart, 3) == " \\[") ||
1900             (interval.par.substr(actual._dataStart, 8) == " \\begin{")) {
1901           // Discard also the space before math-equation
1902           interval.addIntervall(actual._dataStart, actual._dataStart+1);
1903         }
1904         interval.resetOpenedP(actual._dataStart-1);
1905       }
1906       else {
1907         if (actual._tokenstart == 0) {
1908           // for the first (and maybe dummy) language
1909           interval.setForDefaultLang(actual._tokenstart + actual._tokensize);
1910         }
1911         interval.resetOpenedP(actual._dataStart-1);
1912       }
1913       break;
1914     }
1915     case KeyInfo::invalid:
1916       // This cannot happen, already handled
1917       // fall through
1918     default: {
1919       // LYXERR0("Unhandled keytype");
1920       nextKeyIdx = getNextKey();
1921       break;
1922     }
1923   }
1924   return nextKeyIdx;
1925 }
1926
1927 int LatexInfo::process(ostringstream &os, KeyInfo &actual )
1928 {
1929   int end = interval.nextNotIgnored(actual._dataEnd);
1930   int oldStart = actual._dataStart;
1931   int nextKeyIdx = getNextKey();
1932   while (true) {
1933     if ((nextKeyIdx < 0) ||
1934         (entries[nextKeyIdx]._tokenstart >= actual._dataEnd) ||
1935         (entries[nextKeyIdx].keytype == KeyInfo::invalid)) {
1936       if (oldStart <= end) {
1937         processRegion(oldStart, end);
1938         oldStart = end+1;
1939       }
1940       break;
1941     }
1942     KeyInfo &nextKey = getKeyInfo(nextKeyIdx);
1943
1944     if (nextKey.keytype == KeyInfo::isMain) {
1945       (void) dispatch(os, actual._dataStart, nextKey);
1946       end = nextKey._tokenstart;
1947       break;
1948     }
1949     processRegion(oldStart, nextKey._tokenstart);
1950     nextKeyIdx = dispatch(os, actual._dataStart, nextKey);
1951
1952     oldStart = nextKey._dataEnd+1;
1953   }
1954   // now nextKey is either invalid or is outside of actual._dataEnd
1955   // output the remaining and discard myself
1956   if (oldStart <= end) {
1957     processRegion(oldStart, end);
1958   }
1959   if (interval.par[end] == '}') {
1960     end += 1;
1961     // This is the normal case.
1962     // But if using the firstlanguage, the closing may be missing
1963   }
1964   // get minimum of 'end' and  'actual._dataEnd' in case that the nextKey.keytype was 'KeyInfo::isMain'
1965   int output_end;
1966   if (actual._dataEnd < end)
1967     output_end = interval.nextNotIgnored(actual._dataEnd);
1968   else
1969     output_end = interval.nextNotIgnored(end);
1970   if (interval.nextNotIgnored(actual._dataStart) < output_end)
1971     interval.output(os, output_end);
1972   interval.addIntervall(actual._tokenstart, end);
1973   return nextKeyIdx;
1974 }
1975
1976 string splitOnKnownMacros(string par, bool isPatternString) {
1977   ostringstream os;
1978   LatexInfo li(par, isPatternString);
1979   KeyInfo DummyKey = KeyInfo(KeyInfo::KeyType::isMain, 2, true);
1980   DummyKey.head = "";
1981   DummyKey._tokensize = 0;
1982   DummyKey._tokenstart = 0;
1983   DummyKey._dataStart = 0;
1984   DummyKey._dataEnd = par.length();
1985   DummyKey.disabled = true;
1986   int firstkeyIdx = li.getFirstKey();
1987   string s;
1988   if (firstkeyIdx >= 0) {
1989     KeyInfo firstKey = li.getKeyInfo(firstkeyIdx);
1990     int nextkeyIdx;
1991     if ((firstKey.keytype != KeyInfo::isMain) || firstKey.disabled) {
1992       // Use dummy firstKey
1993       firstKey = DummyKey;
1994       (void) li.setNextKey(firstkeyIdx);
1995     }
1996     nextkeyIdx = li.process(os, firstKey);
1997     while (nextkeyIdx >= 0) {
1998       // Check for a possible gap between the last
1999       // entry and this one
2000       int datastart = li.nextNotIgnored(firstKey._dataStart);
2001       KeyInfo &nextKey = li.getKeyInfo(nextkeyIdx);
2002       if ((nextKey._tokenstart > datastart)) {
2003         // Handle the gap
2004         firstKey._dataStart = datastart;
2005         firstKey._dataEnd = par.length();
2006         (void) li.setNextKey(nextkeyIdx);
2007         if (firstKey._tokensize > 0) {
2008           // Fake the last opened parenthesis
2009           li.setForDefaultLang(firstKey._tokensize);
2010         }
2011         nextkeyIdx = li.process(os, firstKey);
2012       }
2013       else {
2014         if (nextKey.keytype != KeyInfo::isMain) {
2015           firstKey._dataStart = datastart;
2016           firstKey._dataEnd = nextKey._dataEnd+1;
2017           (void) li.setNextKey(nextkeyIdx);
2018           if (firstKey._tokensize > 0)
2019             li.setForDefaultLang(firstKey._tokensize);
2020           nextkeyIdx = li.process(os, firstKey);
2021         }
2022         else {
2023           nextkeyIdx = li.process(os, nextKey);
2024         }
2025       }
2026     }
2027     // Handle the remaining
2028     firstKey._dataStart = li.nextNotIgnored(firstKey._dataStart);
2029     firstKey._dataEnd = par.length();
2030     // Check if ! empty
2031     if ((firstKey._dataStart < firstKey._dataEnd) &&
2032         (par[firstKey._dataStart] != '}')) {
2033       if (firstKey._tokensize > 0)
2034         li.setForDefaultLang(firstKey._tokensize);
2035       (void) li.process(os, firstKey);
2036     }
2037     s = os.str();
2038     if (s.empty()) {
2039       // return string definitelly impossible to match
2040       s = "\\foreignlanguage{ignore}{ }";
2041     }
2042   }
2043   else
2044     s = par;                            /* no known macros found */
2045   return s;
2046 }
2047
2048 /*
2049  * Try to unify the language specs in the latexified text.
2050  * Resulting modified string is set to "", if
2051  * the searched tex does not contain all the features in the search pattern
2052  */
2053 static string correctlanguagesetting(string par, bool isPatternString, bool withformat)
2054 {
2055         static Features regex_f;
2056         static int missed = 0;
2057         static bool regex_with_format = false;
2058
2059         int parlen = par.length();
2060
2061         while ((parlen > 0) && (par[parlen-1] == '\n')) {
2062                 parlen--;
2063         }
2064         string result;
2065         if (withformat) {
2066                 // Split the latex input into pieces which
2067                 // can be digested by our search engine
2068                 LYXERR(Debug::FIND, "input: \"" << par << "\"");
2069                 result = splitOnKnownMacros(par, isPatternString);
2070                 LYXERR(Debug::FIND, "After split: \"" << result << "\"");
2071         }
2072         else
2073                 result = par.substr(0, parlen);
2074         if (isPatternString) {
2075                 missed = 0;
2076                 if (withformat) {
2077                         regex_f = identifyFeatures(result);
2078                         string features = "";
2079                         for (auto it = regex_f.cbegin(); it != regex_f.cend(); ++it) {
2080                                 string a = it->first;
2081                                 regex_with_format = true;
2082                                 features += " " + a;
2083                                 // LYXERR0("Identified regex format:" << a);
2084                         }
2085                         LYXERR(Debug::FIND, "Identified Features" << features);
2086
2087                 }
2088         } else if (regex_with_format) {
2089                 Features info = identifyFeatures(result);
2090                 for (auto it = regex_f.cbegin(); it != regex_f.cend(); ++it) {
2091                         string a = it->first;
2092                         bool b = it->second;
2093                         if (b && ! info[a]) {
2094                                 missed++;
2095                                 LYXERR(Debug::FIND, "Missed(" << missed << " " << a <<", srclen = " << parlen );
2096                                 return("");
2097                         }
2098                 }
2099         }
2100         else {
2101                 // LYXERR0("No regex formats");
2102         }
2103         return(result);
2104 }
2105
2106
2107 // Remove trailing closure of math, macros and environments, so to catch parts of them.
2108 static int identifyClosing(string & t)
2109 {
2110         int open_braces = 0;
2111         do {
2112                 LYXERR(Debug::FIND, "identifyClosing(): t now is '" << t << "'");
2113                 if (regex_replace(t, t, "(.*[^\\\\])\\$" REGEX_EOS, "$1"))
2114                         continue;
2115                 if (regex_replace(t, t, "(.*[^\\\\]) \\\\\\]" REGEX_EOS, "$1"))
2116                         continue;
2117                 if (regex_replace(t, t, "(.*[^\\\\]) \\\\end\\{[a-zA-Z_]*\\*?\\}" REGEX_EOS, "$1"))
2118                         continue;
2119                 if (regex_replace(t, t, "(.*[^\\\\])\\}" REGEX_EOS, "$1")) {
2120                         ++open_braces;
2121                         continue;
2122                 }
2123                 break;
2124         } while (true);
2125         return open_braces;
2126 }
2127
2128
2129 MatchStringAdv::MatchStringAdv(lyx::Buffer & buf, FindAndReplaceOptions const & opt)
2130         : p_buf(&buf), p_first_buf(&buf), opt(opt)
2131 {
2132         Buffer & find_buf = *theBufferList().getBuffer(FileName(to_utf8(opt.find_buf_name)), true);
2133         docstring const & ds = stringifySearchBuffer(find_buf, opt);
2134         use_regexp = lyx::to_utf8(ds).find("\\regexp{") != std::string::npos;
2135         // When using regexp, braces are hacked already by escape_for_regex()
2136         par_as_string = normalize(ds, !use_regexp);
2137         open_braces = 0;
2138         close_wildcards = 0;
2139
2140         size_t lead_size = 0;
2141         // correct the language settings
2142         par_as_string = correctlanguagesetting(par_as_string, true, !opt.ignoreformat);
2143         if (opt.ignoreformat) {
2144                 if (!use_regexp) {
2145                         // if par_as_string_nolead were emty,
2146                         // the following call to findAux will always *find* the string
2147                         // in the checked data, and thus always using the slow
2148                         // examining of the current text part.
2149                         par_as_string_nolead = par_as_string;
2150                 }
2151         } else {
2152                 lead_size = identifyLeading(par_as_string);
2153                 LYXERR(Debug::FIND, "Lead_size: " << lead_size);
2154                 lead_as_string = par_as_string.substr(0, lead_size);
2155                 par_as_string_nolead = par_as_string.substr(lead_size, par_as_string.size() - lead_size);
2156         }
2157
2158         if (!use_regexp) {
2159                 open_braces = identifyClosing(par_as_string);
2160                 identifyClosing(par_as_string_nolead);
2161                 LYXERR(Debug::FIND, "Open braces: " << open_braces);
2162                 LYXERR(Debug::FIND, "Built MatchStringAdv object: par_as_string = '" << par_as_string << "'");
2163         } else {
2164                 string lead_as_regexp;
2165                 if (lead_size > 0) {
2166                         // @todo No need to search for \regexp{} insets in leading material
2167                         lead_as_regexp = escape_for_regex(par_as_string.substr(0, lead_size), !opt.ignoreformat);
2168                         par_as_string = par_as_string_nolead;
2169                         LYXERR(Debug::FIND, "lead_as_regexp is '" << lead_as_regexp << "'");
2170                         LYXERR(Debug::FIND, "par_as_string now is '" << par_as_string << "'");
2171                 }
2172                 par_as_string = escape_for_regex(par_as_string, !opt.ignoreformat);
2173                 // Insert (.*?) before trailing closure of math, macros and environments, so to catch parts of them.
2174                 LYXERR(Debug::FIND, "par_as_string now is '" << par_as_string << "'");
2175                 if (
2176                         // Insert .* before trailing '\$' ('$' has been escaped by escape_for_regex)
2177                         regex_replace(par_as_string, par_as_string, "(.*[^\\\\])(\\\\\\$)\\'", "$1(.*?)$2")
2178                         // Insert .* before trailing '\\\]' ('\]' has been escaped by escape_for_regex)
2179                         || regex_replace(par_as_string, par_as_string, "(.*[^\\\\])( \\\\\\\\\\\\\\])\\'", "$1(.*?)$2")
2180                         // Insert .* before trailing '\\end\{...}' ('\end{...}' has been escaped by escape_for_regex)
2181                         || regex_replace(par_as_string, par_as_string,
2182                                          "(.*[^\\\\])( \\\\\\\\end\\\\\\{[a-zA-Z_]*)(\\\\\\*)?(\\\\\\})\\'", "$1(.*?)$2$3$4")
2183                         // Insert .* before trailing '\}' ('}' has been escaped by escape_for_regex)
2184                         || regex_replace(par_as_string, par_as_string, "(.*[^\\\\])(\\\\\\})\\'", "$1(.*?)$2")
2185                         ) {
2186                         ++close_wildcards;
2187                 }
2188                 if (!opt.ignoreformat) {
2189                         // Remove extra '\}' at end
2190                         while ( regex_replace(par_as_string, par_as_string, "(.*)\\\\}$", "$1")) {
2191                                 open_braces++;
2192                         }
2193                         /*
2194                         // save '\.'
2195                         regex_replace(par_as_string, par_as_string, "\\\\\\.", "_xxbdotxx_");
2196                         // handle '.' -> '[^]', replace later as '[^\}\{\\]'
2197                         regex_replace(par_as_string, par_as_string, "\\.", "[^]");
2198                         // replace '[^...]' with '[^...\}\{\\]'
2199                         regex_replace(par_as_string, par_as_string, "\\[\\^([^\\\\\\]]*)\\]", "_xxbrlxx_$1\\}\\{\\\\_xxbrrxx_");
2200                         regex_replace(par_as_string, par_as_string, "_xxbrlxx_", "[^");
2201                         regex_replace(par_as_string, par_as_string, "_xxbrrxx_", "]");
2202                         // restore '\.'
2203                         regex_replace(par_as_string, par_as_string, "_xxbdotxx_", "\\.");
2204                         */
2205                 }
2206                 LYXERR(Debug::FIND, "par_as_string now is '" << par_as_string << "'");
2207                 LYXERR(Debug::FIND, "Open braces: " << open_braces);
2208                 LYXERR(Debug::FIND, "Close .*?  : " << close_wildcards);
2209                 LYXERR(Debug::FIND, "Replaced text (to be used as regex): " << par_as_string);
2210
2211                 // If entered regexp must match at begin of searched string buffer
2212                 // Kornel: Added parentheses to use $1 for size of the leading string
2213                 string regexp_str;
2214                 string regexp2_str;
2215                 {
2216                         // TODO: Adapt '\[12345678]' in par_as_string to acount for the first '()
2217                         // Unfortunately is '\1', '\2', etc not working for strings with extra format
2218                         // so the convert has no effect in that case
2219                         for (int i = 8; i > 0; --i) {
2220                                 string orig = "\\\\" + std::to_string(i);
2221                                 string dest = "\\" + std::to_string(i+1);
2222                                 while (regex_replace(par_as_string, par_as_string, orig, dest));
2223                         }
2224                         regexp_str = "(" + lead_as_regexp + ")" + par_as_string;
2225                         regexp2_str = "(" + lead_as_regexp + ").*" + par_as_string;
2226                 }
2227                 LYXERR(Debug::FIND, "Setting regexp to : '" << regexp_str << "'");
2228                 regexp = lyx::regex(regexp_str);
2229
2230                 LYXERR(Debug::FIND, "Setting regexp2 to: '" << regexp2_str << "'");
2231                 regexp2 = lyx::regex(regexp2_str);
2232         }
2233 }
2234
2235
2236 int MatchStringAdv::findAux(DocIterator const & cur, int len, bool at_begin) const
2237 {
2238         if (at_begin &&
2239                 (opt.restr == FindAndReplaceOptions::R_ONLY_MATHS && !cur.inMathed()) )
2240                 return 0;
2241
2242         docstring docstr = stringifyFromForSearch(opt, cur, len);
2243         string str = normalize(docstr, true);
2244         if (!opt.ignoreformat) {
2245                 str = correctlanguagesetting(str, false, !opt.ignoreformat);
2246         }
2247         if (str.empty()) return(-1);
2248         LYXERR(Debug::FIND, "Matching against     '" << lyx::to_utf8(docstr) << "'");
2249         LYXERR(Debug::FIND, "After normalization: '" << str << "'");
2250
2251         if (use_regexp) {
2252                 LYXERR(Debug::FIND, "Searching in regexp mode: at_begin=" << at_begin);
2253                 regex const *p_regexp;
2254                 regex_constants::match_flag_type flags;
2255                 if (at_begin) {
2256                         flags = regex_constants::match_continuous;
2257                         p_regexp = &regexp;
2258                 } else {
2259                         flags = regex_constants::match_default;
2260                         p_regexp = &regexp2;
2261                 }
2262                 sregex_iterator re_it(str.begin(), str.end(), *p_regexp, flags);
2263                 if (re_it == sregex_iterator())
2264                         return 0;
2265                 match_results<string::const_iterator> const & m = *re_it;
2266
2267                 if (0) { // Kornel Benko: DO NOT CHECKK
2268                         // Check braces on the segment that matched the entire regexp expression,
2269                         // plus the last subexpression, if a (.*?) was inserted in the constructor.
2270                         if (!braces_match(m[0].first, m[0].second, open_braces))
2271                                 return 0;
2272                 }
2273
2274                 // Check braces on segments that matched all (.*?) subexpressions,
2275                 // except the last "padding" one inserted by lyx.
2276                 for (size_t i = 1; i < m.size() - 1; ++i)
2277                         if (!braces_match(m[i].first, m[i].second, open_braces))
2278                                 return 0;
2279
2280                 // Exclude from the returned match length any length
2281                 // due to close wildcards added at end of regexp
2282                 // and also the length of the leading (e.g. '\emph{')
2283                 //
2284                 // Whole found string, including the leading: m[0].second - m[0].first
2285                 // Size of the leading string: m[1].second - m[1].first
2286                 int leadingsize = 0;
2287                 if (m.size() > 1)
2288                         leadingsize = m[1].second - m[1].first;
2289                 int result;
2290                 for (size_t i = 0; i < m.size(); i++) {
2291                   LYXERR(Debug::FIND, "Match " << i << " is " << m[i].second - m[i].first << " long");
2292                 }
2293                 if (close_wildcards == 0)
2294                         result = m[0].second - m[0].first;
2295
2296                 else
2297                         result =  m[m.size() - close_wildcards].first - m[0].first;
2298
2299                 if (result > leadingsize)
2300                         result -= leadingsize;
2301                 else
2302                         result = 0;
2303                 return(result);
2304         }
2305
2306         // else !use_regexp: but all code paths above return
2307         LYXERR(Debug::FIND, "Searching in normal mode: par_as_string='"
2308                                  << par_as_string << "', str='" << str << "'");
2309         LYXERR(Debug::FIND, "Searching in normal mode: lead_as_string='"
2310                                  << lead_as_string << "', par_as_string_nolead='"
2311                                  << par_as_string_nolead << "'");
2312
2313         if (at_begin) {
2314                 LYXERR(Debug::FIND, "size=" << par_as_string.size()
2315                                          << ", substr='" << str.substr(0, par_as_string.size()) << "'");
2316                 if (str.substr(0, par_as_string.size()) == par_as_string)
2317                         return par_as_string.size();
2318         } else {
2319                 size_t pos = str.find(par_as_string_nolead);
2320                 if (pos != string::npos)
2321                         return par_as_string.size();
2322         }
2323         return 0;
2324 }
2325
2326
2327 int MatchStringAdv::operator()(DocIterator const & cur, int len, bool at_begin) const
2328 {
2329         int res = findAux(cur, len, at_begin);
2330         LYXERR(Debug::FIND,
2331                "res=" << res << ", at_begin=" << at_begin
2332                << ", matchword=" << opt.matchword
2333                << ", inTexted=" << cur.inTexted());
2334         if (res == 0 || !at_begin || !opt.matchword || !cur.inTexted())
2335                 return res;
2336         Paragraph const & par = cur.paragraph();
2337         bool ws_left = (cur.pos() > 0)
2338                 ? par.isWordSeparator(cur.pos() - 1)
2339                 : true;
2340         bool ws_right = (cur.pos() + res < par.size())
2341                 ? par.isWordSeparator(cur.pos() + res)
2342                 : true;
2343         LYXERR(Debug::FIND,
2344                "cur.pos()=" << cur.pos() << ", res=" << res
2345                << ", separ: " << ws_left << ", " << ws_right
2346                << endl);
2347         if (ws_left && ws_right)
2348                 return res;
2349         return 0;
2350 }
2351
2352
2353 string MatchStringAdv::normalize(docstring const & s, bool hack_braces) const
2354 {
2355         string t;
2356         if (! opt.casesensitive)
2357                 t = lyx::to_utf8(lowercase(s));
2358         else
2359                 t = lyx::to_utf8(s);
2360         // Remove \n at begin
2361         while (!t.empty() && t[0] == '\n')
2362                 t = t.substr(1);
2363         // Remove \n at end
2364         while (!t.empty() && t[t.size() - 1] == '\n')
2365                 t = t.substr(0, t.size() - 1);
2366         size_t pos;
2367         // Replace all other \n with spaces
2368         while ((pos = t.find("\n")) != string::npos)
2369                 t.replace(pos, 1, " ");
2370         // Remove stale empty \emph{}, \textbf{} and similar blocks from latexify
2371         // Kornel: Added textsl, textsf, textit, texttt and noun
2372         // + allow to seach for colored text too
2373         LYXERR(Debug::FIND, "Removing stale empty \\emph{}, \\textbf{}, \\*section{} macros from: " << t);
2374         while (regex_replace(t, t, "\\\\(emph|noun|text(bf|sl|sf|it|tt)|(u|uu)line|(s|x)out|uwave)(\\{(\\{\\})?\\})+", ""))
2375                 LYXERR(Debug::FIND, "  further removing stale empty \\emph{}, \\textbf{} macros from: " << t);
2376         while (regex_replace(t, t, "\\\\((sub)?(((sub)?section)|paragraph)|part)\\*?(\\{(\\{\\})?\\})+", ""))
2377                 LYXERR(Debug::FIND, "  further removing stale empty \\emph{}, \\textbf{} macros from: " << t);
2378
2379         while (regex_replace(t, t, "\\\\(foreignlanguage|textcolor|item)\\{[a-z]+\\}(\\{(\\{\\})?\\})+", ""));
2380         // FIXME - check what preceeds the brace
2381         if (hack_braces) {
2382                 if (opt.ignoreformat)
2383                         while (regex_replace(t, t, "\\{", "_x_<")
2384                                || regex_replace(t, t, "\\}", "_x_>"))
2385                                 LYXERR(Debug::FIND, "After {} replacement: '" << t << "'");
2386                 else
2387                         while (regex_replace(t, t, "\\\\\\{", "_x_<")
2388                                || regex_replace(t, t, "\\\\\\}", "_x_>"))
2389                                 LYXERR(Debug::FIND, "After {} replacement: '" << t << "'");
2390         }
2391
2392         return t;
2393 }
2394
2395
2396 docstring stringifyFromCursor(DocIterator const & cur, int len)
2397 {
2398         LYXERR(Debug::FIND, "Stringifying with len=" << len << " from cursor at pos: " << cur);
2399         if (cur.inTexted()) {
2400                 Paragraph const & par = cur.paragraph();
2401                 // TODO what about searching beyond/across paragraph breaks ?
2402                 // TODO Try adding a AS_STR_INSERTS as last arg
2403                 pos_type end = ( len == -1 || cur.pos() + len > int(par.size()) ) ?
2404                         int(par.size()) : cur.pos() + len;
2405                 OutputParams runparams(&cur.buffer()->params().encoding());
2406                 runparams.nice = true;
2407                 runparams.flavor = OutputParams::LATEX;
2408                 runparams.linelen = 100000; //lyxrc.plaintext_linelen;
2409                 // No side effect of file copying and image conversion
2410                 runparams.dryrun = true;
2411                 LYXERR(Debug::FIND, "Stringifying with cur: "
2412                        << cur << ", from pos: " << cur.pos() << ", end: " << end);
2413                 return par.asString(cur.pos(), end,
2414                         AS_STR_INSETS | AS_STR_SKIPDELETE | AS_STR_PLAINTEXT,
2415                         &runparams);
2416         } else if (cur.inMathed()) {
2417                 CursorSlice cs = cur.top();
2418                 MathData md = cs.cell();
2419                 MathData::const_iterator it_end =
2420                         (( len == -1 || cs.pos() + len > int(md.size()))
2421                          ? md.end()
2422                          : md.begin() + cs.pos() + len );
2423                 MathData md2;
2424                 for (MathData::const_iterator it = md.begin() + cs.pos();
2425                      it != it_end; ++it)
2426                         md2.push_back(*it);
2427                 docstring s = asString(md2);
2428                 LYXERR(Debug::FIND, "Stringified math: '" << s << "'");
2429                 return s;
2430         }
2431         LYXERR(Debug::FIND, "Don't know how to stringify from here: " << cur);
2432         return docstring();
2433 }
2434
2435
2436 /** Computes the LaTeX export of buf starting from cur and ending len positions
2437  * after cur, if len is positive, or at the paragraph or innermost inset end
2438  * if len is -1.
2439  */
2440 docstring latexifyFromCursor(DocIterator const & cur, int len)
2441 {
2442         LYXERR(Debug::FIND, "Latexifying with len=" << len << " from cursor at pos: " << cur);
2443         LYXERR(Debug::FIND, "  with cur.lastpost=" << cur.lastpos() << ", cur.lastrow="
2444                << cur.lastrow() << ", cur.lastcol=" << cur.lastcol());
2445         Buffer const & buf = *cur.buffer();
2446
2447         odocstringstream ods;
2448         otexstream os(ods);
2449         OutputParams runparams(&buf.params().encoding());
2450         runparams.nice = false;
2451         runparams.flavor = OutputParams::LATEX;
2452         runparams.linelen = 8000; //lyxrc.plaintext_linelen;
2453         // No side effect of file copying and image conversion
2454         runparams.dryrun = true;
2455         runparams.for_search = true;
2456
2457         if (cur.inTexted()) {
2458                 // @TODO what about searching beyond/across paragraph breaks ?
2459                 pos_type endpos = cur.paragraph().size();
2460                 if (len != -1 && endpos > cur.pos() + len)
2461                         endpos = cur.pos() + len;
2462                 TeXOnePar(buf, *cur.innerText(), cur.pit(), os, runparams,
2463                           string(), cur.pos(), endpos);
2464                 string s = lyx::to_utf8(ods.str());
2465                 LYXERR(Debug::FIND, "Latexified +modified text: '" << s << "'");
2466                 return(lyx::from_utf8(s));
2467         } else if (cur.inMathed()) {
2468                 // Retrieve the math environment type, and add '$' or '$[' or others (\begin{equation}) accordingly
2469                 for (int s = cur.depth() - 1; s >= 0; --s) {
2470                         CursorSlice const & cs = cur[s];
2471                         if (cs.asInsetMath() && cs.asInsetMath()->asHullInset()) {
2472                                 WriteStream ws(os);
2473                                 cs.asInsetMath()->asHullInset()->header_write(ws);
2474                                 break;
2475                         }
2476                 }
2477
2478                 CursorSlice const & cs = cur.top();
2479                 MathData md = cs.cell();
2480                 MathData::const_iterator it_end =
2481                         ((len == -1 || cs.pos() + len > int(md.size()))
2482                          ? md.end()
2483                          : md.begin() + cs.pos() + len);
2484                 MathData md2;
2485                 for (MathData::const_iterator it = md.begin() + cs.pos();
2486                      it != it_end; ++it)
2487                         md2.push_back(*it);
2488
2489                 ods << asString(md2);
2490                 // Retrieve the math environment type, and add '$' or '$]'
2491                 // or others (\end{equation}) accordingly
2492                 for (int s = cur.depth() - 1; s >= 0; --s) {
2493                         CursorSlice const & cs2 = cur[s];
2494                         InsetMath * inset = cs2.asInsetMath();
2495                         if (inset && inset->asHullInset()) {
2496                                 WriteStream ws(os);
2497                                 inset->asHullInset()->footer_write(ws);
2498                                 break;
2499                         }
2500                 }
2501                 LYXERR(Debug::FIND, "Latexified math: '" << lyx::to_utf8(ods.str()) << "'");
2502         } else {
2503                 LYXERR(Debug::FIND, "Don't know how to stringify from here: " << cur);
2504         }
2505         return ods.str();
2506 }
2507
2508
2509 /** Finalize an advanced find operation, advancing the cursor to the innermost
2510  ** position that matches, plus computing the length of the matching text to
2511  ** be selected
2512  **/
2513 int findAdvFinalize(DocIterator & cur, MatchStringAdv const & match)
2514 {
2515         // Search the foremost position that matches (avoids find of entire math
2516         // inset when match at start of it)
2517         size_t d;
2518         DocIterator old_cur(cur.buffer());
2519         do {
2520                 LYXERR(Debug::FIND, "Forwarding one step (searching for innermost match)");
2521                 d = cur.depth();
2522                 old_cur = cur;
2523                 cur.forwardPos();
2524         } while (cur && cur.depth() > d && match(cur) > 0);
2525         cur = old_cur;
2526         if (match(cur) <= 0) return 0;
2527         LYXERR(Debug::FIND, "Ok");
2528
2529         // Compute the match length
2530         int len = 1;
2531         if (cur.pos() + len > cur.lastpos())
2532                 return 0;
2533         LYXERR(Debug::FIND, "verifying unmatch with len = " << len);
2534         while (cur.pos() + len <= cur.lastpos() && match(cur, len) <= 0) {
2535                 ++len;
2536                 LYXERR(Debug::FIND, "verifying unmatch with len = " << len);
2537         }
2538         // Length of matched text (different from len param)
2539         int old_match = match(cur, len);
2540         if (old_match < 0)
2541                 old_match = 0;
2542         int prev_old_match = old_match;
2543         int old_len = len;
2544         int step = 20;
2545         int new_match;
2546         while (step == 20) {
2547                 if (cur.pos() + len + step >= cur.lastpos()) {
2548                         step = 1;
2549                         len = old_len;
2550                         old_match = prev_old_match;
2551                 }
2552                 else {
2553                         new_match = match(cur, len + step);
2554                         if (new_match > old_match) {
2555                                 prev_old_match = old_match;
2556                                 old_match = new_match;
2557                                 old_len = len;
2558                                 len += step;
2559                         }
2560                         else {
2561                                 step = 1;
2562                                 len = old_len;
2563                                 old_match = prev_old_match;
2564                         }
2565                 }
2566         }
2567         // Greedy behaviour while matching regexps
2568         bool examining = true;
2569         while (examining) {
2570                 examining = false;
2571                 // Kornel: The loop is needed, since it looks like
2572                 // incrementing 'cur.pos()' does not always lead to the following
2573                 // char which we could then match.
2574                 for (int count = 1; count < 5; ++count) {
2575                         if (cur.pos() + len + count > cur.lastpos()) {
2576                                 break;
2577                         }
2578                         new_match = match(cur, len + count);
2579                         if (new_match > old_match) {
2580                                 len += count;
2581                                 old_match = new_match;
2582                                 examining = true;
2583                                 break;
2584                         }
2585                 }
2586         }
2587         return len;
2588 }
2589
2590
2591 /// Finds forward
2592 int findForwardAdv(DocIterator & cur, MatchStringAdv & match)
2593 {
2594         if (!cur)
2595                 return 0;
2596         while (!theApp()->longOperationCancelled() && cur) {
2597                 LYXERR(Debug::FIND, "findForwardAdv() cur: " << cur);
2598                 int match_len = match(cur, -1, false);
2599                 LYXERR(Debug::FIND, "match_len: " << match_len);
2600                 if (match_len > 0) {
2601                         int match_len_zero_count = 0;
2602                         for (; !theApp()->longOperationCancelled() && cur; cur.forwardPos()) {
2603                                 LYXERR(Debug::FIND, "Advancing cur: " << cur);
2604                                 int match_len2 = match(cur);
2605                                 LYXERR(Debug::FIND, "match_len2: " << match_len2);
2606                                 if (match_len2 > 0) {
2607                                         // Sometimes in finalize we understand it wasn't a match
2608                                         // and we need to continue the outest loop
2609                                         int len = findAdvFinalize(cur, match);
2610                                         if (len > 0) {
2611                                                 return len;
2612                                         }
2613                                 }
2614                                 if (match_len2 >= 0) {
2615                                         if (match_len2 == 0)
2616                                                 match_len_zero_count++;
2617                                         else
2618                                                 match_len_zero_count = 0;
2619                                 }
2620                                 else {
2621                                         if (++match_len_zero_count > 3) {
2622                                                 LYXERR(Debug::FIND, "match_len2_zero_count: " << match_len_zero_count << ", match_len was " << match_len);
2623                                                 match_len_zero_count = 0;
2624                                         }
2625                                         break;
2626                                 }
2627                         }
2628                         if (!cur)
2629                                 return 0;
2630                 }
2631                 if (match_len >= 0 && cur.pit() < cur.lastpit()) {
2632                         LYXERR(Debug::FIND, "Advancing par: cur=" << cur);
2633                         cur.forwardPar();
2634                 } else {
2635                         // This should exit nested insets, if any, or otherwise undefine the currsor.
2636                         cur.pos() = cur.lastpos();
2637                         LYXERR(Debug::FIND, "Advancing pos: cur=" << cur);
2638                         cur.forwardPos();
2639                 }
2640         }
2641         return 0;
2642 }
2643
2644
2645 /// Find the most backward consecutive match within same paragraph while searching backwards.
2646 int findMostBackwards(DocIterator & cur, MatchStringAdv const & match)
2647 {
2648         DocIterator cur_begin = doc_iterator_begin(cur.buffer());
2649         DocIterator tmp_cur = cur;
2650         int len = findAdvFinalize(tmp_cur, match);
2651         Inset & inset = cur.inset();
2652         for (; cur != cur_begin; cur.backwardPos()) {
2653                 LYXERR(Debug::FIND, "findMostBackwards(): cur=" << cur);
2654                 DocIterator new_cur = cur;
2655                 new_cur.backwardPos();
2656                 if (new_cur == cur || &new_cur.inset() != &inset || !match(new_cur))
2657                         break;
2658                 int new_len = findAdvFinalize(new_cur, match);
2659                 if (new_len == len)
2660                         break;
2661                 len = new_len;
2662         }
2663         LYXERR(Debug::FIND, "findMostBackwards(): exiting with cur=" << cur);
2664         return len;
2665 }
2666
2667
2668 /// Finds backwards
2669 int findBackwardsAdv(DocIterator & cur, MatchStringAdv & match)
2670 {
2671         if (! cur)
2672                 return 0;
2673         // Backup of original position
2674         DocIterator cur_begin = doc_iterator_begin(cur.buffer());
2675         if (cur == cur_begin)
2676                 return 0;
2677         cur.backwardPos();
2678         DocIterator cur_orig(cur);
2679         bool pit_changed = false;
2680         do {
2681                 cur.pos() = 0;
2682                 bool found_match = match(cur, -1, false);
2683
2684                 if (found_match) {
2685                         if (pit_changed)
2686                                 cur.pos() = cur.lastpos();
2687                         else
2688                                 cur.pos() = cur_orig.pos();
2689                         LYXERR(Debug::FIND, "findBackAdv2: cur: " << cur);
2690                         DocIterator cur_prev_iter;
2691                         do {
2692                                 found_match = match(cur);
2693                                 LYXERR(Debug::FIND, "findBackAdv3: found_match="
2694                                        << found_match << ", cur: " << cur);
2695                                 if (found_match)
2696                                         return findMostBackwards(cur, match);
2697
2698                                 // Stop if begin of document reached
2699                                 if (cur == cur_begin)
2700                                         break;
2701                                 cur_prev_iter = cur;
2702                                 cur.backwardPos();
2703                         } while (true);
2704                 }
2705                 if (cur == cur_begin)
2706                         break;
2707                 if (cur.pit() > 0)
2708                         --cur.pit();
2709                 else
2710                         cur.backwardPos();
2711                 pit_changed = true;
2712         } while (!theApp()->longOperationCancelled());
2713         return 0;
2714 }
2715
2716
2717 } // namespace
2718
2719
2720 docstring stringifyFromForSearch(FindAndReplaceOptions const & opt,
2721                                  DocIterator const & cur, int len)
2722 {
2723         if (cur.pos() < 0 || cur.pos() > cur.lastpos())
2724                 return docstring();
2725         if (!opt.ignoreformat)
2726                 return latexifyFromCursor(cur, len);
2727         else
2728                 return stringifyFromCursor(cur, len);
2729 }
2730
2731
2732 FindAndReplaceOptions::FindAndReplaceOptions(
2733         docstring const & find_buf_name, bool casesensitive,
2734         bool matchword, bool forward, bool expandmacros, bool ignoreformat,
2735         docstring const & repl_buf_name, bool keep_case,
2736         SearchScope scope, SearchRestriction restr)
2737         : find_buf_name(find_buf_name), casesensitive(casesensitive), matchword(matchword),
2738           forward(forward), expandmacros(expandmacros), ignoreformat(ignoreformat),
2739           repl_buf_name(repl_buf_name), keep_case(keep_case), scope(scope), restr(restr)
2740 {
2741 }
2742
2743
2744 namespace {
2745
2746
2747 /** Check if 'len' letters following cursor are all non-lowercase */
2748 static bool allNonLowercase(Cursor const & cur, int len)
2749 {
2750         pos_type beg_pos = cur.selectionBegin().pos();
2751         pos_type end_pos = cur.selectionBegin().pos() + len;
2752         if (len > cur.lastpos() + 1 - beg_pos) {
2753                 LYXERR(Debug::FIND, "This should not happen, more debug needed");
2754                 len = cur.lastpos() + 1 - beg_pos;
2755                 end_pos = beg_pos + len;
2756         }
2757         for (pos_type pos = beg_pos; pos != end_pos; ++pos)
2758                 if (isLowerCase(cur.paragraph().getChar(pos)))
2759                         return false;
2760         return true;
2761 }
2762
2763
2764 /** Check if first letter is upper case and second one is lower case */
2765 static bool firstUppercase(Cursor const & cur)
2766 {
2767         char_type ch1, ch2;
2768         pos_type pos = cur.selectionBegin().pos();
2769         if (pos >= cur.lastpos() - 1) {
2770                 LYXERR(Debug::FIND, "No upper-case at cur: " << cur);
2771                 return false;
2772         }
2773         ch1 = cur.paragraph().getChar(pos);
2774         ch2 = cur.paragraph().getChar(pos + 1);
2775         bool result = isUpperCase(ch1) && isLowerCase(ch2);
2776         LYXERR(Debug::FIND, "firstUppercase(): "
2777                << "ch1=" << ch1 << "(" << char(ch1) << "), ch2="
2778                << ch2 << "(" << char(ch2) << ")"
2779                << ", result=" << result << ", cur=" << cur);
2780         return result;
2781 }
2782
2783
2784 /** Make first letter of supplied buffer upper-case, and the rest lower-case.
2785  **
2786  ** \fixme What to do with possible further paragraphs in replace buffer ?
2787  **/
2788 static void changeFirstCase(Buffer & buffer, TextCase first_case, TextCase others_case)
2789 {
2790         ParagraphList::iterator pit = buffer.paragraphs().begin();
2791         LASSERT(pit->size() >= 1, /**/);
2792         pos_type right = pos_type(1);
2793         pit->changeCase(buffer.params(), pos_type(0), right, first_case);
2794         right = pit->size();
2795         pit->changeCase(buffer.params(), pos_type(1), right, others_case);
2796 }
2797
2798 } // namespace
2799
2800 ///
2801 static void findAdvReplace(BufferView * bv, FindAndReplaceOptions const & opt, MatchStringAdv & matchAdv)
2802 {
2803         Cursor & cur = bv->cursor();
2804         if (opt.repl_buf_name == docstring()
2805             || theBufferList().getBuffer(FileName(to_utf8(opt.repl_buf_name)), true) == 0
2806             || theBufferList().getBuffer(FileName(to_utf8(opt.find_buf_name)), true) == 0)
2807                 return;
2808
2809         DocIterator sel_beg = cur.selectionBegin();
2810         DocIterator sel_end = cur.selectionEnd();
2811         if (&sel_beg.inset() != &sel_end.inset()
2812             || sel_beg.pit() != sel_end.pit()
2813             || sel_beg.idx() != sel_end.idx())
2814                 return;
2815         int sel_len = sel_end.pos() - sel_beg.pos();
2816         LYXERR(Debug::FIND, "sel_beg: " << sel_beg << ", sel_end: " << sel_end
2817                << ", sel_len: " << sel_len << endl);
2818         if (sel_len == 0)
2819                 return;
2820         LASSERT(sel_len > 0, return);
2821
2822         if (!matchAdv(sel_beg, sel_len))
2823                 return;
2824
2825         // Build a copy of the replace buffer, adapted to the KeepCase option
2826         Buffer & repl_buffer_orig = *theBufferList().getBuffer(FileName(to_utf8(opt.repl_buf_name)), true);
2827         ostringstream oss;
2828         repl_buffer_orig.write(oss);
2829         string lyx = oss.str();
2830         Buffer repl_buffer("", false);
2831         repl_buffer.setUnnamed(true);
2832         LASSERT(repl_buffer.readString(lyx), return);
2833         if (opt.keep_case && sel_len >= 2) {
2834                 LYXERR(Debug::FIND, "keep_case true: cur.pos()=" << cur.pos() << ", sel_len=" << sel_len);
2835                 if (cur.inTexted()) {
2836                         if (firstUppercase(cur))
2837                                 changeFirstCase(repl_buffer, text_uppercase, text_lowercase);
2838                         else if (allNonLowercase(cur, sel_len))
2839                                 changeFirstCase(repl_buffer, text_uppercase, text_uppercase);
2840                 }
2841         }
2842         cap::cutSelection(cur, false);
2843         if (cur.inTexted()) {
2844                 repl_buffer.changeLanguage(
2845                         repl_buffer.language(),
2846                         cur.getFont().language());
2847                 LYXERR(Debug::FIND, "Replacing by pasteParagraphList()ing repl_buffer");
2848                 LYXERR(Debug::FIND, "Before pasteParagraphList() cur=" << cur << endl);
2849                 cap::pasteParagraphList(cur, repl_buffer.paragraphs(),
2850                                         repl_buffer.params().documentClassPtr(),
2851                                         bv->buffer().errorList("Paste"));
2852                 LYXERR(Debug::FIND, "After pasteParagraphList() cur=" << cur << endl);
2853                 sel_len = repl_buffer.paragraphs().begin()->size();
2854         } else if (cur.inMathed()) {
2855                 odocstringstream ods;
2856                 otexstream os(ods);
2857                 OutputParams runparams(&repl_buffer.params().encoding());
2858                 runparams.nice = false;
2859                 runparams.flavor = OutputParams::LATEX;
2860                 runparams.linelen = 8000; //lyxrc.plaintext_linelen;
2861                 runparams.dryrun = true;
2862                 TeXOnePar(repl_buffer, repl_buffer.text(), 0, os, runparams);
2863                 //repl_buffer.getSourceCode(ods, 0, repl_buffer.paragraphs().size(), false);
2864                 docstring repl_latex = ods.str();
2865                 LYXERR(Debug::FIND, "Latexified replace_buffer: '" << repl_latex << "'");
2866                 string s;
2867                 (void)regex_replace(to_utf8(repl_latex), s, "\\$(.*)\\$", "$1");
2868                 (void)regex_replace(s, s, "\\\\\\[(.*)\\\\\\]", "$1");
2869                 repl_latex = from_utf8(s);
2870                 LYXERR(Debug::FIND, "Replacing by insert()ing latex: '" << repl_latex << "' cur=" << cur << " with depth=" << cur.depth());
2871                 MathData ar(cur.buffer());
2872                 asArray(repl_latex, ar, Parse::NORMAL);
2873                 cur.insert(ar);
2874                 sel_len = ar.size();
2875                 LYXERR(Debug::FIND, "After insert() cur=" << cur << " with depth: " << cur.depth() << " and len: " << sel_len);
2876         }
2877         if (cur.pos() >= sel_len)
2878                 cur.pos() -= sel_len;
2879         else
2880                 cur.pos() = 0;
2881         LYXERR(Debug::FIND, "After pos adj cur=" << cur << " with depth: " << cur.depth() << " and len: " << sel_len);
2882         bv->putSelectionAt(DocIterator(cur), sel_len, !opt.forward);
2883         bv->processUpdateFlags(Update::Force);
2884 }
2885
2886
2887 /// Perform a FindAdv operation.
2888 bool findAdv(BufferView * bv, FindAndReplaceOptions const & opt)
2889 {
2890         DocIterator cur;
2891         int match_len = 0;
2892
2893         // e.g., when invoking word-findadv from mini-buffer wither with
2894         //       wrong options syntax or before ever opening advanced F&R pane
2895         if (theBufferList().getBuffer(FileName(to_utf8(opt.find_buf_name)), true) == 0)
2896                 return false;
2897
2898         try {
2899                 MatchStringAdv matchAdv(bv->buffer(), opt);
2900                 int length = bv->cursor().selectionEnd().pos() - bv->cursor().selectionBegin().pos();
2901                 if (length > 0)
2902                         bv->putSelectionAt(bv->cursor().selectionBegin(), length, !opt.forward);
2903                 findAdvReplace(bv, opt, matchAdv);
2904                 cur = bv->cursor();
2905                 if (opt.forward)
2906                         match_len = findForwardAdv(cur, matchAdv);
2907                 else
2908                         match_len = findBackwardsAdv(cur, matchAdv);
2909         } catch (...) {
2910                 // This may only be raised by lyx::regex()
2911                 bv->message(_("Invalid regular expression!"));
2912                 return false;
2913         }
2914
2915         if (match_len == 0) {
2916                 bv->message(_("Match not found!"));
2917                 return false;
2918         }
2919
2920         bv->message(_("Match found!"));
2921
2922         LYXERR(Debug::FIND, "Putting selection at cur=" << cur << " with len: " << match_len);
2923         bv->putSelectionAt(cur, match_len, !opt.forward);
2924
2925         return true;
2926 }
2927
2928
2929 ostringstream & operator<<(ostringstream & os, FindAndReplaceOptions const & opt)
2930 {
2931         os << to_utf8(opt.find_buf_name) << "\nEOSS\n"
2932            << opt.casesensitive << ' '
2933            << opt.matchword << ' '
2934            << opt.forward << ' '
2935            << opt.expandmacros << ' '
2936            << opt.ignoreformat << ' '
2937            << to_utf8(opt.repl_buf_name) << "\nEOSS\n"
2938            << opt.keep_case << ' '
2939            << int(opt.scope) << ' '
2940            << int(opt.restr);
2941
2942         LYXERR(Debug::FIND, "built: " << os.str());
2943
2944         return os;
2945 }
2946
2947
2948 istringstream & operator>>(istringstream & is, FindAndReplaceOptions & opt)
2949 {
2950         LYXERR(Debug::FIND, "parsing");
2951         string s;
2952         string line;
2953         getline(is, line);
2954         while (line != "EOSS") {
2955                 if (! s.empty())
2956                         s = s + "\n";
2957                 s = s + line;
2958                 if (is.eof())   // Tolerate malformed request
2959                         break;
2960                 getline(is, line);
2961         }
2962         LYXERR(Debug::FIND, "file_buf_name: '" << s << "'");
2963         opt.find_buf_name = from_utf8(s);
2964         is >> opt.casesensitive >> opt.matchword >> opt.forward >> opt.expandmacros >> opt.ignoreformat;
2965         is.get();       // Waste space before replace string
2966         s = "";
2967         getline(is, line);
2968         while (line != "EOSS") {
2969                 if (! s.empty())
2970                         s = s + "\n";
2971                 s = s + line;
2972                 if (is.eof())   // Tolerate malformed request
2973                         break;
2974                 getline(is, line);
2975         }
2976         LYXERR(Debug::FIND, "repl_buf_name: '" << s << "'");
2977         opt.repl_buf_name = from_utf8(s);
2978         is >> opt.keep_case;
2979         int i;
2980         is >> i;
2981         opt.scope = FindAndReplaceOptions::SearchScope(i);
2982         is >> i;
2983         opt.restr = FindAndReplaceOptions::SearchRestriction(i);
2984
2985         LYXERR(Debug::FIND, "parsed: " << opt.casesensitive << ' ' << opt.matchword << ' ' << opt.forward << ' '
2986                << opt.expandmacros << ' ' << opt.ignoreformat << ' ' << opt.keep_case << ' '
2987                << opt.scope << ' ' << opt.restr);
2988         return is;
2989 }
2990
2991 } // namespace lyx