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