]> git.lyx.org Git - lyx.git/blob - src/changes.C
Remove the now superseeded SConscript files, and some small missing parts to SConstruct
[lyx.git] / src / changes.C
1 /**
2  * \file changes.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  *
8  * Full author contact details are available in file CREDITS.
9  *
10  * Record changes in a paragraph.
11  */
12
13 #include <config.h>
14
15 #include "changes.h"
16 #include "debug.h"
17
18 #include <boost/assert.hpp>
19
20 using lyx::pos_type;
21
22 using std::endl;
23 using std::string;
24
25
26 bool operator==(Change const & l, Change const & r)
27 {
28         return l.type == r.type && l.author == r.author
29                 && l.changetime == r.changetime;
30 }
31
32
33 bool operator!=(Change const & l, Change const & r)
34 {
35         return !(l == r);
36 }
37
38
39 bool operator==(Changes::Range const & r1, Changes::Range const & r2)
40 {
41         return r1.start == r2.start && r1.end == r2.end;
42 }
43
44
45 bool operator!=(Changes::Range const & r1, Changes::Range const & r2)
46 {
47         return !(r1 == r2);
48 }
49
50
51 bool Changes::Range::contains(Range const & r) const
52 {
53         return r.start >= start && r.end <= end;
54 }
55
56
57 bool Changes::Range::contained(Range const & r) const
58 {
59         return r.contains(*this);
60 }
61
62
63 bool Changes::Range::contains(pos_type const pos) const
64 {
65         return pos >= start && pos < end;
66 }
67
68
69 bool Changes::Range::containsOrPrecedes(pos_type const pos) const
70 {
71         return pos >= start && pos <= end;
72 }
73
74
75 bool Changes::Range::intersects(Range const & r) const
76 {
77         return contained(r) || contains(r)
78                 || contains(r.start) || contains(r.end);
79 }
80
81
82 Changes::Changes(Change::Type const type)
83         : empty_type_(type)
84 {
85 }
86
87
88 Changes::~Changes()
89 {
90 }
91
92
93 Changes::Changes(Changes const & c)
94 {
95         table_ = c.table_;
96 }
97
98
99 void Changes::record(Change const change, pos_type const pos)
100 {
101         if (lyxerr.debugging(Debug::CHANGES)) {
102                 lyxerr[Debug::CHANGES] << "record " << change.type
103                         << " at pos " << pos << " with total "
104                         << table_.size() << " changes." << endl;
105         }
106
107         switch (change.type) {
108                 case Change::INSERTED:
109                         add(change, pos);
110                         break;
111                 case Change::DELETED:
112                         del(change, pos);
113                         break;
114                 case Change::UNCHANGED:
115                         set(Change::UNCHANGED, pos);
116                         break;
117         }
118 }
119
120
121 void Changes::set(Change const change, pos_type const pos)
122 {
123         set(change, pos, pos + 1);
124 }
125
126
127 void Changes::set(Change::Type const type, pos_type const pos)
128 {
129         set(type, pos, pos + 1);
130 }
131
132
133 void Changes::set(Change::Type const type,
134                   pos_type const start, pos_type const end)
135 {
136         set(Change(type), start, end);
137 }
138
139
140 void Changes::set(Change const change,
141                   pos_type const start, pos_type const end)
142 {
143         ChangeTable::iterator it = table_.begin();
144
145         if (lyxerr.debugging(Debug::CHANGES)) {
146                 lyxerr[Debug::CHANGES] << "changeset of " << change.type
147                         << " author " << change.author << " time " << change.changetime
148                         << " in range " << start << "," << end << endl;
149         }
150
151         Range const new_range(start, end);
152
153         // remove all sub-ranges
154         for (; it != table_.end();) {
155                 if (new_range != it->range && it->range.contained(new_range)) {
156                         if (lyxerr.debugging(Debug::CHANGES)) {
157                                 lyxerr[Debug::CHANGES] << "Removing subrange "
158                                         << it->range.start << "," << it->range.end << endl;
159                         }
160                         it = table_.erase(it);
161                 } else {
162                         ++it;
163                 }
164         }
165
166         it = table_.begin();
167         ChangeTable::iterator const itend = table_.end();
168
169         // find a super-range
170         for (; it != itend; ++it) {
171                 if (it->range.contains(new_range))
172                         break;
173         }
174
175         if (it == itend) {
176                 lyxerr[Debug::CHANGES] << "Inserting change at end" << endl;
177                 table_.push_back(ChangeRange(start, end, change));
178                 merge();
179                 return;
180         }
181
182         if (change.type == it->change.type) {
183                 lyxerr[Debug::CHANGES] << "Change set already." << endl;
184                 it->change = change;
185                 return;
186         }
187
188         ChangeRange c(*it);
189
190         if (lyxerr.debugging(Debug::CHANGES)) {
191                 lyxerr[Debug::CHANGES] << "Using change of type " << c.change.type
192                         << " over " << c.range.start << "," << c.range.end << endl;
193         }
194
195         // split head
196         if (c.range.start < start) {
197                 it = table_.insert(it, ChangeRange(c.range.start, start, c.change));
198                 if (lyxerr.debugging(Debug::CHANGES)) {
199                         lyxerr[Debug::CHANGES] << "Splitting head of type " << c.change.type
200                                 << " over " << c.range.start << "," << start << endl;
201                 }
202                 ++it;
203         }
204
205         // reset this as new type
206         it->range.start = start;
207         it->range.end = end;
208         it->change = change;
209         lyxerr[Debug::CHANGES] << "Resetting to new change" << endl;
210
211         // split tail
212         if (c.range.end > end) {
213                 ++it;
214                 table_.insert(it, ChangeRange(end, c.range.end, c.change));
215                 if (lyxerr.debugging(Debug::CHANGES)) {
216                         lyxerr[Debug::CHANGES] << "Splitting tail of type " << c.change.type
217                                 << " over " << end << "," << c.range.end << endl;
218                 }
219         }
220
221         check();
222         merge();
223 }
224
225
226 void Changes::erase(pos_type const pos)
227 {
228         ChangeTable::iterator it = table_.begin();
229         ChangeTable::iterator end = table_.end();
230
231         bool found = false;
232
233         for (; it != end; ++it) {
234                 Range & range(it->range);
235
236                 if (lyxerr.debugging(Debug::CHANGES)) {
237                         lyxerr[Debug::CHANGES] << "era:Range of type " << it->change.type << " is "
238                                 << it->range.start << "," << it->range.end << endl;
239                 }
240
241                 if (range.contains(pos)) {
242                         found = true;
243                         --range.end;
244                         continue;
245                 }
246
247                 if (found) {
248                         --range.start;
249                         --range.end;
250                 }
251         }
252         check();
253         merge();
254 }
255
256
257 void Changes::del(Change const change, ChangeTable::size_type const pos)
258 {
259         // this case happens when building from .lyx
260         if (table_.empty()) {
261                 set(change, pos);
262                 return;
263         }
264
265         ChangeTable::iterator it = table_.begin();
266
267         for (; it != table_.end(); ++it) {
268                 Range & range(it->range);
269
270                 if (range.contains(pos)) {
271                         if (it->change.type != Change::INSERTED) {
272                                 set(change, pos);
273                         } else {
274                                 erase(pos);
275                         }
276                         break;
277                 } else if (range.containsOrPrecedes(pos) && it + 1 == table_.end()) {
278                         // this case happens when building from .lyx
279                         set(change, pos);
280                         break;
281                 }
282         }
283 }
284
285
286 void Changes::add(Change const change, ChangeTable::size_type const pos)
287 {
288         ChangeTable::iterator it = table_.begin();
289         ChangeTable::iterator end = table_.end();
290
291         bool found = false;
292
293         for (; it != end; ++it) {
294                 Range & range(it->range);
295
296                 if (!found && range.containsOrPrecedes(pos)) {
297                         found = true;
298                         if (lyxerr.debugging(Debug::CHANGES)) {
299                                 lyxerr[Debug::CHANGES] << "Found range of "
300                                         << range.start << "," << range.end << endl;
301                         }
302                         ++range.end;
303                         continue;
304                 }
305
306                 if (found) {
307                         ++range.start;
308                         ++range.end;
309                 }
310         }
311         set(change, pos);
312 }
313
314
315 Change const Changes::lookup(pos_type const pos) const
316 {
317         if (!table_.size()) {
318                 if (lyxerr.debugging(Debug::CHANGES))
319                         lyxerr[Debug::CHANGES] << "Empty, type is " << empty_type_ << endl;
320                 return Change(empty_type_);
321         }
322
323         ChangeTable::const_iterator it = table_.begin();
324         ChangeTable::const_iterator const end = table_.end();
325
326         for (; it != end; ++it) {
327                 if (it->range.contains(pos))
328                         return it->change;
329         }
330
331         check();
332         BOOST_ASSERT(false && "missing changes for pos");
333         return Change(Change::UNCHANGED);
334 }
335
336
337 bool Changes::isChange(pos_type const start, pos_type const end) const
338 {
339         if (!table_.size()) {
340                 if (lyxerr.debugging(Debug::CHANGES))
341                         lyxerr[Debug::CHANGES] << "Empty, type is " << empty_type_ << endl;
342                 return empty_type_ != Change::UNCHANGED;
343         }
344
345         ChangeTable::const_iterator it = table_.begin();
346         ChangeTable::const_iterator const itend = table_.end();
347
348         for (; it != itend; ++it) {
349                 if (lyxerr.debugging(Debug::CHANGES)) {
350                         lyxerr[Debug::CHANGES] << "Looking for " << start << ","
351                                 << end << " in " << it->range.start << ","
352                                 << it->range.end << "of type " << it->change.type << endl;
353                 }
354
355                 if (it->range.intersects(Range(start, end))
356                         && it->change.type != Change::UNCHANGED) {
357                         if (lyxerr.debugging(Debug::CHANGES)) {
358                                 lyxerr[Debug::CHANGES] << "Found intersection of "
359                                         << start << "," << end << " with "
360                                         << it->range.start << "," << it->range.end
361                                         << " of type " << it->change.type << endl;
362                         }
363                         return true;
364                 }
365         }
366
367         return false;
368 }
369
370
371 bool Changes::isChangeEdited(lyx::pos_type const start,
372                              lyx::pos_type const end) const
373 {
374         if (!table_.size()) {
375                 if (lyxerr.debugging(Debug::CHANGES))
376                         lyxerr[Debug::CHANGES] << "Empty, type is " << empty_type_ << endl;
377                 return empty_type_ != Change::INSERTED;
378         }
379
380         ChangeTable::const_iterator it = table_.begin();
381         ChangeTable::const_iterator const itend = table_.end();
382
383         for (; it != itend; ++it) {
384                 if (it->range.intersects(Range(start, end ? end - 1 : 0))
385                         && it->change.type != Change::INSERTED) {
386                         return true;
387                 }
388         }
389         return false;
390 }
391
392
393 void Changes::merge()
394 {
395         if (lyxerr.debugging(Debug::CHANGES))
396                 lyxerr[Debug::CHANGES] << "Starting merge" << endl;
397
398         ChangeTable::iterator it = table_.begin();
399
400         while (it != table_.end()) {
401                 if (lyxerr.debugging(Debug::CHANGES)) {
402                         lyxerr[Debug::CHANGES] << "Range of type " << it->change.type << " is "
403                                 << it->range.start << "," << it->range.end << endl;
404                 }
405
406                 if (it->range.start == it->range.end) {
407                         if (lyxerr.debugging(Debug::CHANGES)) {
408                                 lyxerr[Debug::CHANGES] << "Removing empty range for pos "
409                                         << it->range.start << endl;
410                         }
411
412                         table_.erase(it);
413                         // start again
414                         it = table_.begin();
415                         continue;
416                 }
417
418                 if (it + 1 == table_.end())
419                         break;
420
421                 if (it->change == (it + 1)->change) {
422                         if (lyxerr.debugging(Debug::CHANGES)) {
423                                 lyxerr[Debug::CHANGES] << "Merging equal ranges "
424                                         << it->range.start << "," << it->range.end
425                                         << " and " << (it + 1)->range.start << ","
426                                         << (it + 1)->range.end << endl;
427                         }
428
429                         (it + 1)->range.start = it->range.start;
430                         table_.erase(it);
431                         // start again
432                         it = table_.begin();
433                         continue;
434                 }
435
436                 ++it;
437         }
438
439         lyxerr[Debug::CHANGES] << "Merge ended" << endl;
440         check();
441 }
442
443
444 void Changes::check() const
445 {
446         ChangeTable::const_iterator it = table_.begin();
447         ChangeTable::const_iterator end = table_.end();
448
449         bool dont_assert = true;
450
451         lyxerr[Debug::CHANGES] << "Changelist:" << endl;
452         for (; it != end; ++it) {
453                 if (lyxerr.debugging(Debug::CHANGES)) {
454                         lyxerr[Debug::CHANGES] << "Range of type " << it->change.type << " is "
455                                 << it->range.start << "," << it->range.end << " author "
456                                 << it->change.author << " time " << it->change.changetime << endl;
457                 }
458
459                 if (it + 1 == end)
460                         break;
461
462                 Range const & range(it->range);
463                 Range const & next((it + 1)->range);
464                 if (range.end != next.start)
465                         dont_assert = false;
466         }
467
468         if (lyxerr.debugging(Debug::CHANGES))
469                 lyxerr[Debug::CHANGES] << "End" << endl;
470
471         BOOST_ASSERT(dont_assert);
472 }
473
474
475 int Changes::latexMarkChange(std::ostream & os,
476                              Change::Type const old, Change::Type const change,
477                              bool const & output)
478 {
479         if (!output || old == change)
480                 return 0;
481
482         string const start("\\changestart{}");
483         string const end("\\changeend{}");
484         string const son("\\overstrikeon{}");
485         string const soff("\\overstrikeoff{}");
486
487         int column = 0;
488
489         if (old == Change::DELETED) {
490                 os << soff;
491                 column += soff.length();
492         }
493
494         switch (change) {
495                 case Change::UNCHANGED:
496                         os << end;
497                         column += end.length();
498                         break;
499
500                 case Change::DELETED:
501                         if (old == Change::UNCHANGED) {
502                                 os << start;
503                                 column += start.length();
504                         }
505                         os << son;
506                         column += son.length();
507                         break;
508
509                 case Change::INSERTED:
510                         if (old == Change::UNCHANGED) {
511                                 os << start;
512                                 column += start.length();
513                         }
514                         break;
515         }
516
517         return column;
518 }
519
520
521 void Changes::lyxMarkChange(std::ostream & os, int & column,
522                             lyx::time_type const curtime,
523                             Change const & old, Change const & change)
524 {
525         if (old == change)
526                 return;
527
528         column = 0;
529
530         switch (change.type) {
531                 case Change::UNCHANGED:
532                         os << "\n\\change_unchanged\n";
533                         break;
534
535                 case Change::DELETED: {
536                         lyx::time_type t = change.changetime;
537                         if (!t)
538                                 t = curtime;
539                         os << "\n\\change_deleted " << change.author
540                                 << " " << t << "\n";
541
542                         break;
543                 }
544
545         case Change::INSERTED: {
546                         lyx::time_type t = change.changetime;
547                         if (!t)
548                                 t = curtime;
549                         os << "\n\\change_inserted " << change.author
550                                 << " " << t << "\n";
551                         break;
552         }
553         }
554 }