]> git.lyx.org Git - lyx.git/blob - src/DocIterator.cpp
Move OS specific code to proper place. Also make sure that no other
[lyx.git] / src / DocIterator.cpp
1 /**
2  * \file DocIterator.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  * \author Alfredo Braunstein
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12
13 #include <config.h>
14
15 #include "DocIterator.h"
16
17 #include "Buffer.h"
18 #include "InsetList.h"
19 #include "Paragraph.h"
20 #include "LyXRC.h"
21 #include "Text.h"
22
23 #include "mathed/MathData.h"
24 #include "mathed/InsetMath.h"
25 #include "mathed/InsetMathHull.h"
26
27 #include "insets/InsetTabular.h"
28
29 #include "support/debug.h"
30 #include "support/lassert.h"
31 #include "support/lstrings.h"
32
33 #include <ostream>
34
35 using namespace std;
36 using namespace lyx::support;
37
38 namespace lyx {
39
40
41 DocIterator::DocIterator()
42         : boundary_(false), inset_(0), buffer_(0)
43 {}
44
45 // We could be able to get rid of this if only every BufferView were
46 // associated to a buffer on construction.
47 DocIterator::DocIterator(Buffer * buf)
48         : boundary_(false), inset_(0), buffer_(buf)
49 {}
50
51
52 DocIterator::DocIterator(Buffer * buf, Inset * inset)
53         : boundary_(false), inset_(inset), buffer_(buf)
54 {}
55
56
57 DocIterator doc_iterator_begin(const Buffer * buf0, const Inset * inset0)
58 {
59         Buffer * buf = const_cast<Buffer *>(buf0);      
60         Inset * inset = const_cast<Inset *>(inset0);
61         DocIterator dit(buf, inset ? inset : &buf->inset());
62         dit.forwardPos();
63         return dit;
64 }
65
66
67 DocIterator doc_iterator_end(const Buffer * buf0, const Inset * inset0)
68 {
69         Buffer * buf = const_cast<Buffer *>(buf0);      
70         Inset * inset = const_cast<Inset *>(inset0);
71         return DocIterator(buf, inset ? inset : &buf->inset());
72 }
73
74
75 bool DocIterator::inRegexped() const
76 {
77         InsetMathHull * i = dynamic_cast<InsetMathHull *>(inset().asInsetMath());
78         return i && i->getType() == hullRegexp;
79 }
80
81
82 LyXErr & operator<<(LyXErr & os, DocIterator const & it)
83 {
84         os.stream() << it;
85         return os;
86 }
87
88
89 Inset * DocIterator::nextInset() const
90 {
91         LASSERT(!empty(), return 0);
92         if (pos() == lastpos())
93                 return 0;
94         if (pos() > lastpos()) {
95                 LYXERR0("Should not happen, but it does. ");
96                 return 0;
97         }
98         if (inMathed())
99                 return nextAtom().nucleus();
100         return paragraph().getInset(pos());
101 }
102
103
104 Inset * DocIterator::prevInset() const
105 {
106         LASSERT(!empty(), return 0);
107         if (pos() == 0)
108                 return 0;
109         if (inMathed()) {
110                 if (cell().empty())
111                         // FIXME: this should not happen but it does.
112                         // See bug 3189
113                         // http://bugzilla.lyx.org/show_bug.cgi?id=3189
114                         return 0;
115                 else
116                         return prevAtom().nucleus();
117         }
118         return paragraph().getInset(pos() - 1);
119 }
120
121
122 Inset * DocIterator::realInset() const
123 {
124         LASSERT(inTexted(), /**/);
125         // if we are in a tabular, we need the cell
126         if (inset().lyxCode() == TABULAR_CODE) {
127                 InsetTabular & tabular = static_cast<InsetTabular&>(inset());
128                 return tabular.cell(idx()).get();
129         }
130         return &inset();
131 }
132
133
134 MathAtom & DocIterator::prevAtom() const
135 {
136         LASSERT(!empty(), /**/);
137         LASSERT(pos() > 0, /**/);
138         return cell()[pos() - 1];
139 }
140
141
142 MathAtom & DocIterator::nextAtom() const
143 {
144         LASSERT(!empty(), /**/);
145         //lyxerr << "lastpos: " << lastpos() << " next atom:\n" << *this << endl;
146         LASSERT(pos() < lastpos(), /**/);
147         return cell()[pos()];
148 }
149
150
151 Text * DocIterator::text() const
152 {
153         LASSERT(!empty(), /**/);
154         return top().text();
155 }
156
157
158 Paragraph & DocIterator::paragraph() const
159 {
160         if (!inTexted())
161                 LYXERR0(*this);
162         LASSERT(inTexted(), /**/);
163         return top().paragraph();
164 }
165
166
167 Paragraph & DocIterator::innerParagraph() const
168 {
169         LASSERT(!empty(), /**/);
170         return innerTextSlice().paragraph();
171 }
172
173
174 CursorSlice const & DocIterator::innerTextSlice() const
175 {
176         LASSERT(!empty(), /**/);
177         // go up until first non-0 text is hit
178         // (innermost text is 0 in mathed)
179         for (int i = depth() - 1; i >= 0; --i)
180                 if (slices_[i].text())
181                         return slices_[i];
182
183         // This case is in principe not possible. We _must_
184         // be inside a Text.
185         LASSERT(false, /**/);
186         static CursorSlice dummy;
187         return dummy;
188 }
189
190
191 pit_type DocIterator::lastpit() const
192 {
193         return inMathed() ? 0 : text()->paragraphs().size() - 1;
194 }
195
196
197 pos_type DocIterator::lastpos() const
198 {
199         return inMathed() ? cell().size() : paragraph().size();
200 }
201
202
203 DocIterator::idx_type DocIterator::lastidx() const
204 {
205         return top().lastidx();
206 }
207
208
209 size_t DocIterator::nargs() const
210 {
211         // assume 1x1 grid for main text
212         return top().nargs();
213 }
214
215
216 size_t DocIterator::ncols() const
217 {
218         // assume 1x1 grid for main text
219         return top().ncols();
220 }
221
222
223 size_t DocIterator::nrows() const
224 {
225         // assume 1x1 grid for main text
226         return top().nrows();
227 }
228
229
230 DocIterator::row_type DocIterator::row() const
231 {
232         return top().row();
233 }
234
235
236 DocIterator::col_type DocIterator::col() const
237 {
238         return top().col();
239 }
240
241
242 MathData & DocIterator::cell() const
243 {
244 //      LASSERT(inMathed(), /**/);
245         return top().cell();
246 }
247
248
249 Text * DocIterator::innerText() const
250 {
251         LASSERT(!empty(), /**/);
252         return innerTextSlice().text();
253 }
254
255
256 Inset * DocIterator::innerInsetOfType(int code) const
257 {
258         for (int i = depth() - 1; i >= 0; --i)
259                 if (slices_[i].inset_->lyxCode() == code)
260                         return slices_[i].inset_;
261         return 0;
262 }
263
264
265 // This duplicates code above, but is in the critical path.
266 // So please think twice before adding stuff
267 void DocIterator::forwardPos()
268 {
269         // this dog bites his tail
270         if (empty()) {
271                 push_back(CursorSlice(*inset_));
272                 return;
273         }
274
275         CursorSlice & tip = top();
276         //lyxerr << "XXX\n" << *this << endl;
277
278         // not at cell/paragraph end?
279         if (tip.pos() != tip.lastpos()) {
280                 // move into an inset to the right if possible
281                 Inset * n = 0;
282                 if (inMathed())
283                         n = (tip.cell().begin() + tip.pos())->nucleus();
284                 else
285                         n = paragraph().getInset(tip.pos());
286                 if (n && n->isActive()) {
287                         //lyxerr << "... descend" << endl;
288                         push_back(CursorSlice(*n));
289                         return;
290                 }
291         }
292
293         // jump to the next cell/paragraph if possible
294         if (!tip.at_end()) {
295                 tip.forwardPos();
296                 return;
297         }
298
299         // otherwise leave inset and jump over inset as a whole
300         pop_back();
301         // 'tip' is invalid now...
302         if (!empty())
303                 ++top().pos();
304 }
305
306
307 void DocIterator::forwardPosIgnoreCollapsed()
308 {
309         Inset * const nextinset = nextInset();
310         // FIXME: the check for asInsetMath() shouldn't be necessary
311         // but math insets do not return a sensible editable() state yet.
312         if (nextinset && !nextinset->asInsetMath()
313             && !nextinset->editable()) {
314                 ++top().pos();
315                 return;
316         }
317         forwardPos();
318 }
319
320
321 void DocIterator::forwardPar()
322 {
323         forwardPos();
324
325         while (!empty() && (!inTexted() || pos() != 0)) {
326                 if (inTexted()) {
327                         pos_type const lastp = lastpos();
328                         Paragraph const & par = paragraph();
329                         pos_type & pos = top().pos();
330                         if (par.insetList().empty())
331                                 pos = lastp;
332                         else
333                                 while (pos < lastp && !par.isInset(pos))
334                                         ++pos;
335                 }
336                 forwardPos();
337         }
338 }
339
340
341 void DocIterator::forwardChar()
342 {
343         forwardPos();
344         while (!empty() && pos() == lastpos())
345                 forwardPos();
346 }
347
348
349 void DocIterator::forwardInset()
350 {
351         forwardPos();
352
353         while (!empty() && !nextInset()) {
354                 if (inTexted()) {
355                         pos_type const lastp = lastpos();
356                         Paragraph const & par = paragraph();
357                         pos_type & pos = top().pos();
358                         while (pos < lastp && !par.isInset(pos))
359                                 ++pos;
360                         if (pos < lastp)
361                                 break;
362                 }
363                 forwardPos();
364         }
365 }
366
367
368 void DocIterator::backwardChar()
369 {
370         backwardPos();
371         while (!empty() && pos() == lastpos())
372                 backwardPos();
373 }
374
375
376 void DocIterator::backwardPos()
377 {
378         //this dog bites his tail
379         if (empty()) {
380                 push_back(CursorSlice(*inset_));
381                 top().idx() = lastidx();
382                 top().pit() = lastpit();
383                 top().pos() = lastpos();
384                 return;
385         }
386
387         // at inset beginning?
388         if (top().at_begin()) {
389                 pop_back();
390                 return;
391         }
392
393         top().backwardPos();
394
395         // entered another cell/paragraph from the right?
396         if (top().pos() == top().lastpos())
397                 return;
398
399         // move into an inset to the left if possible
400         Inset * n = 0;
401         if (inMathed())
402                 n = (top().cell().begin() + top().pos())->nucleus();
403         else
404                 n = paragraph().getInset(top().pos());
405         if (n && n->isActive()) {
406                 push_back(CursorSlice(*n));
407                 top().idx() = lastidx();
408                 top().pit() = lastpit();
409                 top().pos() = lastpos();
410         }
411 }
412
413
414 bool DocIterator::hasPart(DocIterator const & it) const
415 {
416         // it can't be a part if it is larger
417         if (it.depth() > depth())
418                 return false;
419
420         // as inset adresses are the 'last' level
421         return &it.top().inset() == &slices_[it.depth() - 1].inset();
422 }
423
424
425 void DocIterator::updateInsets(Inset * inset)
426 {
427         // this function re-creates the cache of inset pointers.
428         //lyxerr << "converting:\n" << *this << endl;
429         DocIterator dit = *this;
430         size_t const n = slices_.size();
431         slices_.resize(0);
432         for (size_t i = 0 ; i < n; ++i) {
433                 LASSERT(inset, /**/);
434                 push_back(dit[i]);
435                 top().inset_ = inset;
436                 if (i + 1 != n)
437                         inset = nextInset();
438         }
439         //lyxerr << "converted:\n" << *this << endl;
440 }
441
442
443 bool DocIterator::fixIfBroken()
444 {
445         if (empty())
446                 return false;
447
448         // Go through the slice stack from the bottom. 
449         // Check that all coordinates (idx, pit, pos) are correct and
450         // that the inset is the one which is claimed to be there
451         Inset * inset = &slices_[0].inset();
452         size_t i = 0;
453         size_t n = slices_.size();
454         for (; i != n; ++i) {
455                 CursorSlice & cs = slices_[i];
456                 if (&cs.inset() != inset) {
457                         // the whole slice is wrong, chop off this as well
458                         --i;
459                         LYXERR(Debug::DEBUG, "fixIfBroken(): inset changed");
460                         break;
461                 } else if (cs.idx() > cs.lastidx()) {
462                         cs.idx() = cs.lastidx();
463                         cs.pit() = cs.lastpit();
464                         cs.pos() = cs.lastpos();
465                         LYXERR(Debug::DEBUG, "fixIfBroken(): idx fixed");
466                         break;
467                 } else if (cs.pit() > cs.lastpit()) {
468                         cs.pit() = cs.lastpit();
469                         cs.pos() = cs.lastpos();
470                         LYXERR(Debug::DEBUG, "fixIfBroken(): pit fixed");
471                         break;
472                 } else if (cs.pos() > cs.lastpos()) {
473                         cs.pos() = cs.lastpos();
474                         LYXERR(Debug::DEBUG, "fixIfBroken(): pos fixed");
475                         break;
476                 } else if (i != n - 1 && cs.pos() != cs.lastpos()) {
477                         // get inset which is supposed to be in the next slice
478                         if (cs.inset().inMathed())
479                                 inset = (cs.cell().begin() + cs.pos())->nucleus();
480                         else if (Inset * csInset = cs.paragraph().getInset(cs.pos()))
481                                 inset = csInset;
482                         else {
483                                 // there are slices left, so there must be another inset
484                                 break;
485                         }
486                 }
487         }
488
489         // Did we make it through the whole slice stack? Otherwise there
490         // was a problem at slice i, and we have to chop off above
491         if (i < n) {
492                 LYXERR(Debug::DEBUG, "fixIfBroken(): cursor chopped at " << i);
493                 resize(i + 1);
494                 return true;
495         } else
496                 return false;
497 }
498
499
500 int DocIterator::find(MathData const & cell) const
501 {
502         for (size_t l = 0; l != slices_.size(); ++l) {
503                 if (slices_[l].asInsetMath() && &slices_[l].cell() == &cell)
504                         return l;
505         }
506         return -1;
507 }
508
509
510 int DocIterator::find(Inset const * inset) const 
511 {
512         for (size_t l = 0; l != slices_.size(); ++l) {
513                 if (&slices_[l].inset() == inset)
514                         return l;
515         }
516         return -1;
517 }
518
519
520 void DocIterator::cutOff(int above, vector<CursorSlice> & cut)
521 {
522         cut = vector<CursorSlice>(slices_.begin() + above + 1, slices_.end());
523         slices_.resize(above + 1);
524 }
525
526
527 void DocIterator::cutOff(int above)
528 {
529         slices_.resize(above + 1);
530 }
531
532
533 void DocIterator::append(vector<CursorSlice> const & x) 
534 {
535         slices_.insert(slices_.end(), x.begin(), x.end());
536 }
537
538
539 void DocIterator::append(DocIterator::idx_type idx, pos_type pos) 
540 {
541         slices_.push_back(CursorSlice());
542         top().idx() = idx;
543         top().pos() = pos;
544 }
545
546
547 ostream & operator<<(ostream & os, DocIterator const & dit)
548 {
549         for (size_t i = 0, n = dit.depth(); i != n; ++i)
550                 os << " " << dit[i] << "\n";
551         return os;
552 }
553
554
555 ///////////////////////////////////////////////////////
556
557 StableDocIterator::StableDocIterator(DocIterator const & dit)
558 {
559         data_ = dit.internalData();
560         for (size_t i = 0, n = data_.size(); i != n; ++i)
561                 data_[i].inset_ = 0;
562 }
563
564
565 DocIterator StableDocIterator::asDocIterator(Buffer * buf) const
566 {
567         // this function re-creates the cache of inset pointers
568         //lyxerr << "converting:\n" << *this << endl;
569         Inset * inset = &buf->inset();
570         DocIterator dit = DocIterator(buf, inset);
571         for (size_t i = 0, n = data_.size(); i != n; ++i) {
572                 if (inset == 0) {
573                         // FIXME
574                         LYXERR0(" Should not happen, but does e.g. after "
575                                 "C-n C-l C-z S-C-z\n"
576                                 << " or when a Buffer has been concurrently edited by two views"
577                                 << '\n' << "dit: " << dit << '\n'
578                                 << " lastpos: " << dit.lastpos());
579                         dit.fixIfBroken();
580                         break;
581                 }
582                 dit.push_back(data_[i]);
583                 dit.top().inset_ = inset;
584                 if (dit.fixIfBroken())
585                         break;
586                 if (i + 1 != n)
587                         inset = dit.nextInset();
588         }
589         //lyxerr << "convert:\n" << *this << " to:\n" << dit << endl;
590         return dit;
591 }
592
593
594 ostream & operator<<(ostream & os, StableDocIterator const & dit)
595 {
596         for (size_t i = 0, n = dit.data_.size(); i != n; ++i)
597                 os << " " << dit.data_[i] << "\n";
598         return os;
599 }
600
601
602 bool operator==(StableDocIterator const & dit1, StableDocIterator const & dit2)
603 {
604         return dit1.data_ == dit2.data_;
605 }
606
607
608 } // namespace lyx