]> git.lyx.org Git - lyx.git/blob - src/DocIterator.cpp
SCons: msvc does not need this /TP option any more after we rename .C => .cpp. Also...
[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 "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() < tip.nargs());
379         ++tip.idx();
380         tip.pit() = 0;
381         tip.pos() = 0;
382 }
383
384
385 void DocIterator::forwardChar()
386 {
387         forwardPos();
388         while (!empty() && pos() == lastpos())
389                 forwardPos();
390 }
391
392
393 void DocIterator::forwardInset()
394 {
395         forwardPos();
396
397         while (!empty() && !nextInset()) {
398                 if (inTexted()) {
399                         pos_type const lastp = lastpos();
400                         Paragraph const & par = paragraph();
401                         pos_type & pos = top().pos();
402                         while (pos < lastp && !par.isInset(pos))
403                                 ++pos;
404                         if (pos < lastp)
405                                 break;
406                 }
407                 forwardPos();
408         }
409 }
410
411
412 void DocIterator::backwardChar()
413 {
414         backwardPos();
415         while (!empty() && pos() == lastpos())
416                 backwardPos();
417 }
418
419
420 void DocIterator::backwardPos()
421 {
422         //this dog bites his tail
423         if (empty()) {
424                 push_back(CursorSlice(*inset_));
425                 top().idx() = lastidx();
426                 top().pit() = lastpit();
427                 top().pos() = lastpos();
428                 return;
429         }
430
431         if (top().at_begin()) {
432                 pop_back();
433                 return;
434         }
435
436         top().backwardPos();
437
438         // move into an inset to the left if possible
439         Inset * n = 0;
440
441         if (inMathed()) {
442                 n = (top().cell().begin() + top().pos())->nucleus();
443         } else {
444                 if (paragraph().isInset(top().pos()))
445                         n = paragraph().getInset(top().pos());
446         }
447
448         if (n && n->isActive()) {
449                 push_back(CursorSlice(*n));
450                 top().idx() = lastidx();
451                 top().pit() = lastpit();
452                 top().pos() = lastpos();
453         }
454 }
455
456
457 bool DocIterator::hasPart(DocIterator const & it) const
458 {
459         // it can't be a part if it is larger
460         if (it.depth() > depth())
461                 return false;
462
463         // as inset adresses are the 'last' level
464         return &it.top().inset() == &slices_[it.depth() - 1].inset();
465 }
466
467
468 void DocIterator::updateInsets(Inset * inset)
469 {
470         // this function re-creates the cache of inset pointers.
471         // code taken in part from StableDocIterator::asDocIterator.
472         //lyxerr << "converting:\n" << *this << endl;
473         DocIterator dit = DocIterator(*inset);
474         size_t const n = slices_.size();
475         for (size_t i = 0 ; i < n; ++i) {
476                 BOOST_ASSERT(inset);
477                 dit.push_back(slices_[i]);
478                 dit.top().inset_ = inset;
479                 if (i + 1 != n)
480                         inset = dit.nextInset();
481         }
482         //lyxerr << "converted:\n" << *this << endl;
483         operator=(dit);
484 }
485
486
487 bool DocIterator::fixIfBroken()
488 {
489         // Go through the slice stack from the bottom. 
490         // Check that all coordinates (idx, pit, pos) are correct and
491         // that the inset is the one which is claimed to be there
492         Inset * inset = &slices_[0].inset();
493         size_t i = 0;
494         size_t n = slices_.size();
495         for (; i != n; ++i) {
496                 CursorSlice & cs = slices_[i];
497                 if (&cs.inset() != inset) {
498                         // the whole slice is wrong, chop off this as well
499                         --i;
500                         LYXERR(Debug::DEBUG) << "fixIfBroken(): inset changed" << endl;
501                         break;
502                 } else if (cs.idx() > cs.lastidx()) {
503                         cs.idx() = cs.lastidx();
504                         cs.pit() = cs.lastpit();
505                         cs.pos() = cs.lastpos();
506                         LYXERR(Debug::DEBUG) << "fixIfBroken(): idx fixed" << endl;
507                         break;
508                 } else if (cs.pit() > cs.lastpit()) {
509                         cs.pit() = cs.lastpit();
510                         cs.pos() = cs.lastpos();
511                         LYXERR(Debug::DEBUG) << "fixIfBroken(): pit fixed" << endl;
512                         break;
513                 } else if (cs.pos() > cs.lastpos()) {
514                         cs.pos() = cs.lastpos();
515                         LYXERR(Debug::DEBUG) << "fixIfBroken(): pos fixed" << endl;
516                         break;
517                 } else if (i != n - 1 && cs.pos() != cs.lastpos()) {
518                         // get inset which is supposed to be in the next slice
519                         if (cs.inset().inMathed())
520                                 inset = (cs.cell().begin() + cs.pos())->nucleus();
521                         else if (cs.paragraph().isInset(cs.pos()))
522                                 inset = cs.paragraph().getInset(cs.pos());
523                         else {
524                                 // there are slices left, so there must be another inset
525                                 break;
526                         }
527                 }
528         }
529
530         // Did we make it through the whole slice stack? Otherwise there
531         // was a problem at slice i, and we have to chop off above
532         if (i < n) {
533                 LYXERR(Debug::DEBUG) << "fixIfBroken(): cursor chopped at " << i << endl;
534                 resize(i + 1);
535                 return true;
536         } else
537                 return false;
538 }
539
540
541 std::ostream & operator<<(std::ostream & os, DocIterator const & dit)
542 {
543         for (size_t i = 0, n = dit.depth(); i != n; ++i)
544                 os << " " << dit[i] << "\n";
545         return os;
546 }
547
548
549 bool operator<(DocIterator const & p, DocIterator const & q)
550 {
551         size_t depth = std::min(p.depth(), q.depth());
552         for (size_t i = 0 ; i < depth ; ++i) {
553                 if (p[i] != q[i])
554                         return p[i] < q[i];
555         }
556         return p.depth() < q.depth();
557 }
558
559
560 bool operator>(DocIterator const & p, DocIterator const & q)
561 {
562         return q < p;
563 }
564
565
566 bool operator<=(DocIterator const & p, DocIterator const & q)
567 {
568         return !(q < p);
569 }
570
571
572 ///////////////////////////////////////////////////////
573
574 StableDocIterator::StableDocIterator(DocIterator const & dit)
575 {
576         data_ = dit.internalData();
577         for (size_t i = 0, n = data_.size(); i != n; ++i)
578                 data_[i].inset_ = 0;
579 }
580
581
582 DocIterator StableDocIterator::asDocIterator(Inset * inset) const
583 {
584         // this function re-creates the cache of inset pointers
585         //lyxerr << "converting:\n" << *this << endl;
586         DocIterator dit = DocIterator(*inset);
587         for (size_t i = 0, n = data_.size(); i != n; ++i) {
588                 if (inset == 0) {
589                         // FIXME
590                         lyxerr << BOOST_CURRENT_FUNCTION
591                                << " Should not happen, but does e.g. after C-n C-l C-z S-C-z\n"
592                                    << " or when a Buffer has been concurently edited by two views"
593                                 << '\n' << "dit: " << dit << '\n'
594                                 << " lastpos: " << dit.lastpos() << endl;
595                         dit.fixIfBroken();
596                         break;
597                 }
598                 dit.push_back(data_[i]);
599                 dit.top().inset_ = inset;
600                 if (dit.fixIfBroken())
601                         break;
602                 if (i + 1 != n)
603                         inset = dit.nextInset();
604         }
605         //lyxerr << "convert:\n" << *this << " to:\n" << dit << endl;
606         return dit;
607 }
608
609
610 std::ostream & operator<<(std::ostream & os, StableDocIterator const & dit)
611 {
612         for (size_t i = 0, n = dit.data_.size(); i != n; ++i)
613                 os << " " << dit.data_[i] << "\n";
614         return os;
615 }
616
617
618 bool operator==(StableDocIterator const & dit1, StableDocIterator const & dit2)
619 {
620         return dit1.data_ == dit2.data_;
621 }
622
623
624 } // namespace lyx