]> git.lyx.org Git - lyx.git/blob - src/lyxfind.C
afc50357e892dec4c9ee811468d2d25c3d59653d
[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                         text->replaceSelectionWithString(replacestr);
202                         text->setSelectionRange(replacestr.length());
203                         ++replace_count;
204                 }
205                 if (!once)
206                         found = find(bv, searchstr, fw, casesens, matchwrd);
207         } while (!once && replaceall && found);
208
209         // FIXME: should be called via an LFUN
210         bv->buffer()->markDirty();
211         bv->fitCursor();
212         bv->update();
213
214         return replace_count;
215 }
216
217
218 bool find(BufferView * bv,
219              string const & searchstr, bool forward,
220              bool casesens, bool matchwrd)
221 {
222         if (!bv->available() || searchstr.empty())
223                 return false;
224
225         if (bv->theLockingInset()) {
226                 bool found = forward ?
227                         bv->theLockingInset()->searchForward(bv, searchstr, casesens, matchwrd) :
228                         bv->theLockingInset()->searchBackward(bv, searchstr, casesens, matchwrd);
229                 // We found the stuff inside the inset so we don't have to
230                 // do anything as the inset did all the update for us!
231                 if (found)
232                         return true;
233                 // We now are in the main text but if we did a forward
234                 // search we have to put the cursor behind the inset.
235                 if (forward) {
236                         bv->text->cursorRight(true);
237                 }
238         }
239         // If we arrive here we are in the main text again so we
240         // just start searching from the root LyXText at the position
241         // we are!
242         LyXText * text = bv->text;
243
244
245         if (text->selection.set())
246                 text->cursor = forward ?
247                         text->selection.end : text->selection.start;
248
249         text->clearSelection();
250
251         SearchResult result = forward ?
252                 searchForward(bv, text, searchstr, casesens, matchwrd) :
253                 searchBackward(bv, text, searchstr, casesens, matchwrd);
254
255         bool found = true;
256         // If we found the cursor inside an inset we will get back
257         // SR_FOUND_NOUPDATE and we don't have to do anything as the
258         // inset did it already.
259         if (result == SR_FOUND) {
260                 bv->unlockInset(bv->theLockingInset());
261                 text->setSelectionRange(searchstr.length());
262         } else if (result == SR_NOT_FOUND) {
263                 bv->unlockInset(bv->theLockingInset());
264                 found = false;
265         }
266         bv->fitCursor();
267         bv->update();
268
269         return found;
270 }
271
272
273 SearchResult find(BufferView * bv, LyXText * text,
274                      string const & searchstr, bool forward,
275                      bool casesens, bool matchwrd)
276 {
277         if (text->selection.set())
278                 text->cursor = forward ?
279                         text->selection.end : text->selection.start;
280
281         text->clearSelection();
282
283         SearchResult result = forward ?
284                 searchForward(bv, text, searchstr, casesens, matchwrd) :
285                 searchBackward(bv, text, searchstr, casesens, matchwrd);
286
287         return result;
288 }
289
290
291
292
293 SearchResult nextChange(BufferView * bv, LyXText * text, pos_type & length)
294 {
295         ParagraphList::iterator pit = text->cursor.par();
296         ParagraphList::iterator pend = text->ownerParagraphs().end();
297         pos_type pos = text->cursor.pos();
298
299         while (pit != pend) {
300                 pos_type parsize = pit->size();
301
302                 if (pos < parsize) {
303                         if ((!parsize || pos != parsize)
304                                 && pit->lookupChange(pos) != Change::UNCHANGED)
305                                 break;
306
307                         if (pit->isInset(pos) && pit->getInset(pos)->isTextInset()) {
308                                 UpdatableInset * inset = (UpdatableInset *)pit->getInset(pos);
309                                 if (inset->nextChange(bv, length))
310                                         return SR_FOUND_NOUPDATE;
311                         }
312                 }
313
314                 ++pos;
315
316                 if (pos >= parsize) {
317                         ++pit;
318                         pos = 0;
319                 }
320         }
321
322         if (pit == pend)
323                 return SR_NOT_FOUND;
324
325         text->setCursor(pit, pos);
326         Change orig_change = pit->lookupChangeFull(pos);
327         pos_type parsize = pit->size();
328         pos_type end = pos;
329
330         for (; end != parsize; ++end) {
331                 Change change = pit->lookupChangeFull(end);
332                 if (change != orig_change) {
333                         // slight UI optimisation: for replacements, we get
334                         // text like : _old_new. Consider that as one change.
335                         if (!(orig_change.type == Change::DELETED &&
336                                 change.type == Change::INSERTED))
337                                 break;
338                 }
339         }
340         length = end - pos;
341         return SR_FOUND;
342 }
343
344
345 SearchResult findNextChange(BufferView * bv, LyXText * text, pos_type & length)
346 {
347         if (text->selection.set())
348                 text->cursor = text->selection.end;
349
350         text->clearSelection();
351
352         return nextChange(bv, text, length);
353 }
354
355
356 bool findNextChange(BufferView * bv)
357 {
358         if (!bv->available())
359                 return false;
360
361         pos_type length;
362
363         if (bv->theLockingInset()) {
364                 bool found = bv->theLockingInset()->nextChange(bv, length);
365
366                 // We found the stuff inside the inset so we don't have to
367                 // do anything as the inset did all the update for us!
368                 if (found)
369                         return true;
370
371                 // We now are in the main text but if we did a forward
372                 // search we have to put the cursor behind the inset.
373                 bv->text->cursorRight(true);
374         }
375         // If we arrive here we are in the main text again so we
376         // just start searching from the root LyXText at the position
377         // we are!
378         LyXText * text = bv->text;
379
380         if (text->selection.set())
381                 text->cursor = text->selection.end;
382
383         text->clearSelection();
384
385         SearchResult result = nextChange(bv, text, length);
386
387         bool found = true;
388
389         // If we found the cursor inside an inset we will get back
390         // SR_FOUND_NOUPDATE and we don't have to do anything as the
391         // inset did it already.
392         if (result == SR_FOUND) {
393                 bv->unlockInset(bv->theLockingInset());
394                 text->setSelectionRange(length);
395         } else if (result == SR_NOT_FOUND) {
396                 bv->unlockInset(bv->theLockingInset());
397                 found = false;
398         }
399
400         bv->fitCursor();
401         bv->update();
402
403         return found;
404 }
405
406 } // find namespace
407 } // lyx namespace