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