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