]> git.lyx.org Git - lyx.git/blob - src/lyxfind.C
51367a245534b904507706a683d65d3011bf6241
[lyx.git] / src / lyxfind.C
1 #include <config.h>
2
3 #include "lyxtext.h"
4 #include "lyxfind.h"
5 #include "paragraph.h"
6 #include "frontends/LyXView.h"
7 #include "frontends/Alert.h"
8 #include "support/textutils.h"
9 #include "support/lstrings.h"
10 #include "BufferView.h"
11 #include "buffer.h"
12 #include "debug.h"
13 #include "gettext.h"
14 #include "insets/insettext.h"
15 #include "changes.h"
16
17 using namespace lyx::support;
18
19 using lyx::pos_type;
20 using std::endl;
21
22 namespace lyx {
23 namespace find {
24
25 namespace {
26
27 // returns true if the specified string is at the specified position
28 bool isStringInText(Paragraph const & par, pos_type pos,
29                     string const & str, bool const & cs,
30                     bool const & mw)
31 {
32         string::size_type size = str.length();
33         pos_type i = 0;
34         pos_type parsize = par.size();
35         while (((pos + i) < parsize)
36                && (string::size_type(i) < size)
37                && (cs ? (str[i] == par.getChar(pos + i))
38                    : (uppercase(str[i]) == uppercase(par.getChar(pos + i))))) {
39                 ++i;
40         }
41
42         if (size == string::size_type(i)) {
43                 // if necessary, check whether string matches word
44                 if (!mw)
45                         return true;
46                 if ((pos <= 0 || !IsLetterCharOrDigit(par.getChar(pos - 1)))
47                         && (pos + pos_type(size) >= parsize
48                         || !IsLetterCharOrDigit(par.getChar(pos + size)))) {
49                         return true;
50                 }
51         }
52         return false;
53 }
54
55 // forward search:
56 // if the string can be found: return true and set the cursor to
57 // the new position, cs = casesensitive, mw = matchword
58 SearchResult searchForward(BufferView * bv, LyXText * text, string const & str,
59                            bool const & cs, bool const & mw)
60 {
61         ParagraphList::iterator pit = text->cursor.par();
62         ParagraphList::iterator pend = text->ownerParagraphs().end();
63         pos_type pos = text->cursor.pos();
64         UpdatableInset * inset;
65
66         while (pit != pend && !isStringInText(*pit, pos, str, cs, mw)) {
67                 if (pos < pit->size()
68                     && pit->isInset(pos)
69                     && (inset = (UpdatableInset *)pit->getInset(pos))
70                     && inset->isTextInset()
71                     && inset->searchForward(bv, str, cs, mw))
72                         return SR_FOUND_NOUPDATE;
73
74                 if (++pos >= pit->size()) {
75                         ++pit;
76                         pos = 0;
77                 }
78         }
79
80         if (pit != pend) {
81                 text->setCursor(pit, pos);
82                 return SR_FOUND;
83         } else
84                 return SR_NOT_FOUND;
85 }
86
87
88 // backward search:
89 // if the string can be found: return true and set the cursor to
90 // the new position, cs = casesensitive, mw = matchword
91 SearchResult searchBackward(BufferView * bv, LyXText * text,
92                             string const & str,
93                             bool const & cs, bool const & mw)
94 {
95         ParagraphList::iterator pit = text->cursor.par();
96         ParagraphList::iterator pbegin = text->ownerParagraphs().begin();
97         pos_type pos = text->cursor.pos();
98
99         // skip past a match at the current cursor pos
100         if (pos > 0) {
101                 --pos;
102         } else if (pit != pbegin) {
103                 --pit;
104                 pos = pit->size();
105         } else {
106                 return SR_NOT_FOUND;
107         }
108
109         while (true) {
110                 if (pos < pit->size()) {
111                         if (pit->isInset(pos) && pit->getInset(pos)->isTextInset()) {
112                                 UpdatableInset * inset = (UpdatableInset *)pit->getInset(pos);
113                                 if (inset->searchBackward(bv, str, cs, mw))
114                                         return SR_FOUND_NOUPDATE;
115                         }
116
117                         if (isStringInText(*pit, pos, str, cs, mw)) {
118                                 text->setCursor(pit, pos);
119                                 return SR_FOUND;
120                         }
121                 }
122
123                 if (pos == 0 && pit == pbegin)
124                         break;
125
126                 if (pos > 0) {
127                         --pos;
128                 } else if (pit != pbegin) {
129                         --pit;
130                         pos = pit->size();
131                 }
132         }
133
134         return SR_NOT_FOUND;
135 }
136
137 } // anon namespace
138
139
140 int replace(BufferView * bv,
141                string const & searchstr, string const & replacestr,
142                bool forward, bool casesens, bool matchwrd, bool replaceall,
143                bool once)
144 {
145         if (!bv->available() || bv->buffer()->isReadonly())
146                 return 0;
147
148         // CutSelection cannot cut a single space, so we have to stop
149         // in order to avoid endless loop :-(
150         if (searchstr.length() == 0
151                 || (searchstr.length() == 1 && searchstr[0] == ' ')) {
152 #ifdef WITH_WARNINGS
153 #warning BLECH. If we have an LFUN for replace, we can sort of fix this bogosity
154 #endif
155                 Alert::error(_("Cannot replace"),
156                         _("You cannot replace a single space or "
157                           "an empty character."));
158                 return 0;
159         }
160
161         // now we can start searching for the first
162         // start at top if replaceall
163         LyXText * text = bv->getLyXText();
164         bool fw = forward;
165         if (replaceall) {
166                 text->clearSelection();
167                 bv->unlockInset(bv->theLockingInset());
168                 text = bv->text;
169                 text->cursorTop();
170                 // override search direction because we search top to bottom
171                 fw = true;
172         }
173
174         // if nothing selected or selection does not equal search string
175         // search and select next occurance and return if no replaceall
176         string str1;
177         string str2;
178         if (casesens) {
179                 str1 = searchstr;
180                 str2 = text->selectionAsString(bv->buffer(), false);
181         } else {
182                 str1 = lowercase(searchstr);
183                 str2 = lowercase(text->selectionAsString(bv->buffer(), false));
184         }
185         if (str1 != str2) {
186                 if (!find(bv, searchstr, fw, casesens, matchwrd) ||
187                         !replaceall) {
188                         return 0;
189                 }
190         }
191
192         bool found = false;
193         int replace_count = 0;
194         do {
195                 text = bv->getLyXText();
196                 // We have to do this check only because mathed insets don't
197                 // return their own LyXText but the LyXText of it's parent!
198                 if (!bv->theLockingInset() ||
199                         ((text != bv->text) &&
200                          (text->inset_owner == text->inset_owner->getLockingInset()))) {
201                         bv->toggleSelection(false);
202                         text->replaceSelectionWithString(replacestr);
203                         text->setSelectionRange(replacestr.length());
204                         ++replace_count;
205                 }
206                 if (!once)
207                         found = find(bv, searchstr, fw, casesens, matchwrd);
208         } while (!once && replaceall && found);
209
210         // FIXME: should be called via an LFUN
211         bv->buffer()->markDirty();
212         bv->fitCursor();
213         bv->update();
214
215         return replace_count;
216 }
217
218
219 bool find(BufferView * bv,
220              string const & searchstr, bool forward,
221              bool casesens, bool matchwrd)
222 {
223         if (!bv->available() || searchstr.empty())
224                 return false;
225
226         if (bv->theLockingInset()) {
227                 bool found = forward ?
228                         bv->theLockingInset()->searchForward(bv, searchstr, casesens, matchwrd) :
229                         bv->theLockingInset()->searchBackward(bv, searchstr, casesens, matchwrd);
230                 // We found the stuff inside the inset so we don't have to
231                 // do anything as the inset did all the update for us!
232                 if (found)
233                         return true;
234                 // We now are in the main text but if we did a forward
235                 // search we have to put the cursor behind the inset.
236                 if (forward) {
237                         bv->text->cursorRight(true);
238                 }
239         }
240         // If we arrive here we are in the main text again so we
241         // just start searching from the root LyXText at the position
242         // we are!
243         LyXText * text = bv->text;
244
245
246         if (text->selection.set())
247                 text->cursor = forward ?
248                         text->selection.end : text->selection.start;
249
250         bv->toggleSelection();
251         text->clearSelection();
252
253         SearchResult result = forward ?
254                 searchForward(bv, text, searchstr, casesens, matchwrd) :
255                 searchBackward(bv, text, searchstr, casesens, matchwrd);
256
257         bool found = true;
258         // If we found the cursor inside an inset we will get back
259         // SR_FOUND_NOUPDATE and we don't have to do anything as the
260         // inset did it already.
261         if (result == SR_FOUND) {
262                 bv->unlockInset(bv->theLockingInset());
263                 text->setSelectionRange(searchstr.length());
264                 bv->toggleSelection(false);
265         } else if (result == SR_NOT_FOUND) {
266                 bv->unlockInset(bv->theLockingInset());
267                 found = false;
268         }
269         bv->fitCursor();
270         bv->update();
271
272         return found;
273 }
274
275
276 SearchResult find(BufferView * bv, LyXText * text,
277                      string const & searchstr, bool forward,
278                      bool casesens, bool matchwrd)
279 {
280         if (text->selection.set())
281                 text->cursor = forward ?
282                         text->selection.end : text->selection.start;
283
284         bv->toggleSelection();
285         text->clearSelection();
286
287         SearchResult result = forward ?
288                 searchForward(bv, text, searchstr, casesens, matchwrd) :
289                 searchBackward(bv, text, searchstr, casesens, matchwrd);
290
291         return result;
292 }
293
294
295
296
297 SearchResult nextChange(BufferView * bv, LyXText * text, pos_type & length)
298 {
299         ParagraphList::iterator pit = text->cursor.par();
300         ParagraphList::iterator pend = text->ownerParagraphs().end();
301         pos_type pos = text->cursor.pos();
302
303         while (pit != pend) {
304                 pos_type parsize = pit->size();
305
306                 if (pos < parsize) {
307                         if ((!parsize || pos != parsize)
308                                 && pit->lookupChange(pos) != Change::UNCHANGED)
309                                 break;
310
311                         if (pit->isInset(pos) && pit->getInset(pos)->isTextInset()) {
312                                 UpdatableInset * inset = (UpdatableInset *)pit->getInset(pos);
313                                 if (inset->nextChange(bv, length))
314                                         return SR_FOUND_NOUPDATE;
315                         }
316                 }
317
318                 ++pos;
319
320                 if (pos >= parsize) {
321                         ++pit;
322                         pos = 0;
323                 }
324         }
325
326         if (pit == pend)
327                 return SR_NOT_FOUND;
328
329         text->setCursor(pit, pos);
330         Change orig_change = pit->lookupChangeFull(pos);
331         pos_type parsize = pit->size();
332         pos_type end = pos;
333
334         for (; end != parsize; ++end) {
335                 Change change = pit->lookupChangeFull(end);
336                 if (change != orig_change) {
337                         // slight UI optimisation: for replacements, we get
338                         // text like : _old_new. Consider that as one change.
339                         if (!(orig_change.type == Change::DELETED &&
340                                 change.type == Change::INSERTED))
341                                 break;
342                 }
343         }
344         length = end - pos;
345         return SR_FOUND;
346 }
347
348
349 SearchResult findNextChange(BufferView * bv, LyXText * text, pos_type & length)
350 {
351         if (text->selection.set())
352                 text->cursor = text->selection.end;
353
354         bv->toggleSelection();
355         text->clearSelection();
356
357         return nextChange(bv, text, length);
358 }
359
360
361 bool findNextChange(BufferView * bv)
362 {
363         if (!bv->available())
364                 return false;
365
366         pos_type length;
367
368         if (bv->theLockingInset()) {
369                 bool found = bv->theLockingInset()->nextChange(bv, length);
370
371                 // We found the stuff inside the inset so we don't have to
372                 // do anything as the inset did all the update for us!
373                 if (found)
374                         return true;
375
376                 // We now are in the main text but if we did a forward
377                 // search we have to put the cursor behind the inset.
378                 bv->text->cursorRight(true);
379         }
380         // If we arrive here we are in the main text again so we
381         // just start searching from the root LyXText at the position
382         // we are!
383         LyXText * text = bv->text;
384
385         if (text->selection.set())
386                 text->cursor = text->selection.end;
387
388         bv->toggleSelection();
389         text->clearSelection();
390
391         SearchResult result = nextChange(bv, text, length);
392
393         bool found = true;
394
395         // If we found the cursor inside an inset we will get back
396         // SR_FOUND_NOUPDATE and we don't have to do anything as the
397         // inset did it already.
398         if (result == SR_FOUND) {
399                 bv->unlockInset(bv->theLockingInset());
400                 text->setSelectionRange(length);
401                 bv->toggleSelection(false);
402         } else if (result == SR_NOT_FOUND) {
403                 bv->unlockInset(bv->theLockingInset());
404                 found = false;
405         }
406
407         bv->fitCursor();
408         bv->update();
409
410         return found;
411 }
412
413 } // find namespace
414 } // lyx namespace