-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdiff_patch.cc
1731 lines (1499 loc) · 53.4 KB
/
diff_patch.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (C) 2008 Stephen Leake <[email protected]>
// Copyright (C) 2002 Graydon Hoare <[email protected]>
//
// This program is made available under the GNU GPL version 2.0 or
// greater. See the accompanying file COPYING for details.
//
// This program is distributed WITHOUT ANY WARRANTY; without even the
// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
// PURPOSE.
#include "base.hh"
#include <algorithm>
#include <iterator>
#include <map>
#include "vector.hh"
#include <boost/shared_ptr.hpp>
#include <boost/scoped_ptr.hpp>
#include "diff_patch.hh"
#include "interner.hh"
#include "lcs.hh"
#include "roster.hh"
#include "safe_map.hh"
#include "sanity.hh"
#include "xdelta.hh"
#include "simplestring_xform.hh"
#include "vocab.hh"
#include "revision.hh"
#include "constants.hh"
#include "file_io.hh"
#include "pcrewrap.hh"
#include "lua_hooks.hh"
#include "database.hh"
#include "transforms.hh"
using std::make_pair;
using std::map;
using std::min;
using std::max;
using std::ostream;
using std::ostream_iterator;
using std::string;
using std::swap;
using std::vector;
using boost::shared_ptr;
//
// a 3-way merge works like this:
//
// /----> right
// ancestor
// \----> left
//
// first you compute the edit list "EDITS(ancestor,left)".
//
// then you make an offset table "leftpos" which describes positions in
// "ancestor" as they map to "left"; that is, for 0 < apos <
// ancestor.size(), we have
//
// left[leftpos[apos]] == ancestor[apos]
//
// you do this by walking through the edit list and either jumping the
// current index ahead an extra position, on an insert, or remaining still,
// on a delete. on an insert *or* a delete, you push the current index back
// onto the leftpos array.
//
// next you compute the edit list "EDITS(ancestor,right)".
//
// you then go through this edit list applying the edits to left, rather
// than ancestor, and using the table leftpos to map the position of each
// edit to an appropriate spot in left. this means you walk a "curr_left"
// index through the edits, and for each edit e:
//
// - if e is a delete (and e.pos is a position in ancestor)
// - increment curr_left without copying anything to "merged"
//
// - if e is an insert (and e.pos is a position in right)
// - copy right[e.pos] to "merged"
// - leave curr_left alone
//
// - when advancing to apos (and apos is a position in ancestor)
// - copy left[curr_left] to merged while curr_left < leftpos[apos]
//
//
// the practical upshot is that you apply the delta from ancestor->right
// to the adjusted contexts in left, producing something vaguely like
// the concatenation of delta(ancestor,left) :: delta(ancestor,right).
//
// NB: this is, as far as I can tell, what diff3 does. I don't think I'm
// infringing on anyone's fancy patents here.
//
typedef enum { preserved = 0, deleted = 1, changed = 2 } edit_t;
static const char etab[3][10] =
{
"preserved",
"deleted",
"changed"
};
struct extent
{
extent(size_t p, size_t l, edit_t t)
: pos(p), len(l), type(t)
{}
size_t pos;
size_t len;
edit_t type;
};
void calculate_extents(vector<long, QA(long)> const & a_b_edits,
vector<long, QA(long)> const & b,
vector<long, QA(long)> & prefix,
vector<extent> & extents,
vector<long, QA(long)> & suffix,
size_t const a_len,
interner<long> & intern)
{
extents.reserve(a_len * 2);
size_t a_pos = 0, b_pos = 0;
for (vector<long, QA(long)>::const_iterator i = a_b_edits.begin();
i != a_b_edits.end(); ++i)
{
// L(FL("edit: %d") % *i);
if (*i < 0)
{
// negative elements code the negation of the one-based index into A
// of the element to be deleted
size_t a_deleted = (-1 - *i);
// fill positions out to the deletion point
while (a_pos < a_deleted)
{
a_pos++;
extents.push_back(extent(b_pos++, 1, preserved));
}
// L(FL(" -- delete at A-pos %d (B-pos = %d)") % a_deleted % b_pos);
// skip the deleted line
a_pos++;
extents.push_back(extent(b_pos, 0, deleted));
}
else
{
// positive elements code the one-based index into B of the element to
// be inserted
size_t b_inserted = (*i - 1);
// fill positions out to the insertion point
while (b_pos < b_inserted)
{
a_pos++;
extents.push_back(extent(b_pos++, 1, preserved));
}
// L(FL(" -- insert at B-pos %d (A-pos = %d) : '%s'")
// % b_inserted % a_pos % intern.lookup(b.at(b_inserted)));
// record that there was an insertion, but a_pos did not move.
if ((b_pos == 0 && extents.empty())
|| (b_pos == prefix.size()))
{
prefix.push_back(b.at(b_pos));
}
else if (a_len == a_pos)
{
suffix.push_back(b.at(b_pos));
}
else
{
// make the insertion
extents.back().type = changed;
extents.back().len++;
}
b_pos++;
}
}
while (extents.size() < a_len)
extents.push_back(extent(b_pos++, 1, preserved));
}
void normalize_extents(vector<extent> & a_b_map,
vector<long, QA(long)> const & a,
vector<long, QA(long)> const & b)
{
for (size_t i = 0; i < a_b_map.size(); ++i)
{
if (i > 0)
{
size_t j = i;
while (j > 0
&& (a_b_map.at(j-1).type == preserved)
&& (a_b_map.at(j).type == changed)
&& (a.at(j) == b.at(a_b_map.at(j).pos + a_b_map.at(j).len - 1)))
{
// This is implied by (a_b_map.at(j-1).type == preserved)
I(a.at(j-1) == b.at(a_b_map.at(j-1).pos));
// Coming into loop we have:
// i
// z --pres--> z 0
// o --pres--> o 1
// a --chng--> a 2 The important thing here is that 'a' in
// t the LHS matches with ...
// u
// v
// a ... the a on the RHS here. Hence we can
// q --pres--> q 3 'shift' the entire 'changed' block
// e --chng--> d 4 upwards, leaving a 'preserved' line
// g --pres--> g 5 'a'->'a'
//
// Want to end up with:
// i
// z --pres--> z 0
// o --chng--> o 1
// a
// t
// u
// v
// a --pres--> a 2
// q --pres--> q 3
// e --chng--> d 4
// g --pres--> g 5
//
// Now all the 'changed' extents are normalised to the
// earliest possible position.
L(FL("exchanging preserved extent [%d+%d] with changed extent [%d+%d]")
% a_b_map.at(j-1).pos
% a_b_map.at(j-1).len
% a_b_map.at(j).pos
% a_b_map.at(j).len);
swap(a_b_map.at(j-1).len, a_b_map.at(j).len);
swap(a_b_map.at(j-1).type, a_b_map.at(j).type);
// Adjust position of the later, preserved extent. It should
// better point to the second 'a' in the above example.
a_b_map.at(j).pos = a_b_map.at(j-1).pos + a_b_map.at(j-1).len;
--j;
}
}
}
for (size_t i = 0; i < a_b_map.size(); ++i)
{
if (i > 0)
{
size_t j = i;
while (j > 0
&& a_b_map.at(j).type == changed
&& a_b_map.at(j-1).type == changed
&& a_b_map.at(j).len > 1
&& a_b_map.at(j-1).pos + a_b_map.at(j-1).len == a_b_map.at(j).pos)
{
// step 1: move a chunk from this insert extent to its
// predecessor
size_t piece = a_b_map.at(j).len - 1;
// L(FL("moving change piece of len %d from pos %d to pos %d")
// % piece
// % a_b_map.at(j).pos
// % a_b_map.at(j-1).pos);
a_b_map.at(j).len = 1;
a_b_map.at(j).pos += piece;
a_b_map.at(j-1).len += piece;
// step 2: if this extent (now of length 1) has become a "changed"
// extent identical to its previous state, switch it to a "preserved"
// extent.
if (b.at(a_b_map.at(j).pos) == a.at(j))
{
// L(FL("changing normalized 'changed' extent at %d to 'preserved'")
// % a_b_map.at(j).pos);
a_b_map.at(j).type = preserved;
}
--j;
}
}
}
}
void merge_extents(vector<extent> const & a_b_map,
vector<extent> const & a_c_map,
vector<long, QA(long)> const & b,
vector<long, QA(long)> const & c,
interner<long> const & in,
vector<long, QA(long)> & merged)
{
I(a_b_map.size() == a_c_map.size());
vector<extent>::const_iterator i = a_b_map.begin();
vector<extent>::const_iterator j = a_c_map.begin();
merged.reserve(a_b_map.size() * 2);
// for (; i != a_b_map.end(); ++i, ++j)
// {
// L(FL("trying to merge: [%s %d %d] vs. [%s %d %d]")
// % etab[i->type] % i->pos % i->len
// % etab[j->type] % j->pos % j->len);
// }
// i = a_b_map.begin();
// j = a_c_map.begin();
for (; i != a_b_map.end(); ++i, ++j)
{
// L(FL("trying to merge: [%s %d %d] vs. [%s %d %d]")
// % etab[i->type] % i->pos % i->len
// % etab[j->type] % j->pos % j->len);
// mutual, identical preserves / inserts / changes
if (((i->type == changed && j->type == changed)
|| (i->type == preserved && j->type == preserved))
&& i->len == j->len)
{
for (size_t k = 0; k < i->len; ++k)
{
if (b.at(i->pos + k) != c.at(j->pos + k))
{
L(FL("conflicting edits: %s %d[%d] '%s' vs. %s %d[%d] '%s'")
% etab[i->type] % i->pos % k % in.lookup(b.at(i->pos + k))
% etab[j->type] % j->pos % k % in.lookup(c.at(j->pos + k)));
throw conflict();
}
merged.push_back(b.at(i->pos + k));
}
}
// mutual or single-edge deletes
else if ((i->type == deleted && j->type == deleted)
|| (i->type == deleted && j->type == preserved)
|| (i->type == preserved && j->type == deleted))
{
// do nothing
}
// single-edge insert / changes
else if (i->type == changed && j->type == preserved)
for (size_t k = 0; k < i->len; ++k)
merged.push_back(b.at(i->pos + k));
else if (i->type == preserved && j->type == changed)
for (size_t k = 0; k < j->len; ++k)
merged.push_back(c.at(j->pos + k));
else
{
L(FL("conflicting edits: [%s %d %d] vs. [%s %d %d]")
% etab[i->type] % i->pos % i->len
% etab[j->type] % j->pos % j->len);
throw conflict();
}
// if (merged.empty())
// L(FL(" --> EMPTY"));
// else
// L(FL(" --> [%d]: %s") % (merged.size() - 1) % in.lookup(merged.back()));
}
}
void merge_via_edit_scripts(vector<string> const & ancestor,
vector<string> const & left,
vector<string> const & right,
vector<string> & merged)
{
vector<long, QA(long)> anc_interned;
vector<long, QA(long)> left_interned, right_interned;
vector<long, QA(long)> left_edits, right_edits;
vector<long, QA(long)> left_prefix, right_prefix;
vector<long, QA(long)> left_suffix, right_suffix;
vector<extent> left_extents, right_extents;
vector<long, QA(long)> merged_interned;
interner<long> in;
// for (int i = 0; i < min(min(left.size(), right.size()), ancestor.size()); ++i)
// {
// cerr << '[' << i << "] " << left[i] << ' ' << ancestor[i] << ' ' << right[i] << '\n';
// }
anc_interned.reserve(ancestor.size());
for (vector<string>::const_iterator i = ancestor.begin();
i != ancestor.end(); ++i)
anc_interned.push_back(in.intern(*i));
left_interned.reserve(left.size());
for (vector<string>::const_iterator i = left.begin();
i != left.end(); ++i)
left_interned.push_back(in.intern(*i));
right_interned.reserve(right.size());
for (vector<string>::const_iterator i = right.begin();
i != right.end(); ++i)
right_interned.push_back(in.intern(*i));
L(FL("calculating left edit script on %d -> %d lines")
% anc_interned.size() % left_interned.size());
edit_script(anc_interned.begin(), anc_interned.end(),
left_interned.begin(), left_interned.end(),
min(ancestor.size(), left.size()),
left_edits);
L(FL("calculating right edit script on %d -> %d lines")
% anc_interned.size() % right_interned.size());
edit_script(anc_interned.begin(), anc_interned.end(),
right_interned.begin(), right_interned.end(),
min(ancestor.size(), right.size()),
right_edits);
L(FL("calculating left extents on %d edits") % left_edits.size());
calculate_extents(left_edits, left_interned,
left_prefix, left_extents, left_suffix,
anc_interned.size(), in);
L(FL("calculating right extents on %d edits") % right_edits.size());
calculate_extents(right_edits, right_interned,
right_prefix, right_extents, right_suffix,
anc_interned.size(), in);
L(FL("normalizing %d right extents") % right_extents.size());
normalize_extents(right_extents, anc_interned, right_interned);
L(FL("normalizing %d left extents") % left_extents.size());
normalize_extents(left_extents, anc_interned, left_interned);
if ((!right_prefix.empty()) && (!left_prefix.empty()))
{
L(FL("conflicting prefixes"));
throw conflict();
}
if ((!right_suffix.empty()) && (!left_suffix.empty()))
{
L(FL("conflicting suffixes"));
throw conflict();
}
L(FL("merging %d left, %d right extents")
% left_extents.size() % right_extents.size());
copy(left_prefix.begin(), left_prefix.end(), back_inserter(merged_interned));
copy(right_prefix.begin(), right_prefix.end(), back_inserter(merged_interned));
merge_extents(left_extents, right_extents,
left_interned, right_interned,
in, merged_interned);
copy(left_suffix.begin(), left_suffix.end(), back_inserter(merged_interned));
copy(right_suffix.begin(), right_suffix.end(), back_inserter(merged_interned));
merged.reserve(merged_interned.size());
for (vector<long, QA(long)>::const_iterator i = merged_interned.begin();
i != merged_interned.end(); ++i)
merged.push_back(in.lookup(*i));
}
bool merge3(vector<string> const & ancestor,
vector<string> const & left,
vector<string> const & right,
vector<string> & merged)
{
try
{
merge_via_edit_scripts(ancestor, left, right, merged);
}
catch(conflict &)
{
L(FL("conflict detected. no merge."));
return false;
}
return true;
}
///////////////////////////////////////////////////////////////////////////
// content_merge_database_adaptor
///////////////////////////////////////////////////////////////////////////
content_merge_database_adaptor::content_merge_database_adaptor(database & db,
revision_id const & left,
revision_id const & right,
marking_map const & left_mm,
marking_map const & right_mm)
: db(db), left_rid (left), right_rid (right), left_mm(left_mm), right_mm(right_mm)
{
// FIXME: possibly refactor to run this lazily, as we don't
// need to find common ancestors if we're never actually
// called on to do content merging.
find_common_ancestor_for_merge(db, left, right, lca);
}
void
content_merge_database_adaptor::record_merge(file_id const & left_ident,
file_id const & right_ident,
file_id const & merged_ident,
file_data const & left_data,
file_data const & right_data,
file_data const & merged_data)
{
L(FL("recording successful merge of %s <-> %s into %s")
% left_ident
% right_ident
% merged_ident);
transaction_guard guard(db);
if (!(left_ident == merged_ident))
{
delta left_delta;
diff(left_data.inner(), merged_data.inner(), left_delta);
db.put_file_version(left_ident, merged_ident, file_delta(left_delta));
}
if (!(right_ident == merged_ident))
{
delta right_delta;
diff(right_data.inner(), merged_data.inner(), right_delta);
db.put_file_version(right_ident, merged_ident, file_delta(right_delta));
}
guard.commit();
}
void
content_merge_database_adaptor::record_file(file_id const & parent_ident,
file_id const & merged_ident,
file_data const & parent_data,
file_data const & merged_data)
{
L(FL("recording file %s -> %s")
% parent_ident
% merged_ident);
transaction_guard guard(db);
if (!(parent_ident == merged_ident))
{
delta parent_delta;
diff(parent_data.inner(), merged_data.inner(), parent_delta);
db.put_file_version(parent_ident, merged_ident, file_delta(parent_delta));
}
guard.commit();
}
void
content_merge_database_adaptor::cache_roster(revision_id const & rid,
boost::shared_ptr<roster_t const> roster)
{
safe_insert(rosters, make_pair(rid, roster));
};
static void
load_and_cache_roster(database & db, revision_id const & rid,
map<revision_id, shared_ptr<roster_t const> > & rmap,
shared_ptr<roster_t const> & rout)
{
map<revision_id, shared_ptr<roster_t const> >::const_iterator i = rmap.find(rid);
if (i != rmap.end())
rout = i->second;
else
{
cached_roster cr;
db.get_roster(rid, cr);
safe_insert(rmap, make_pair(rid, cr.first));
rout = cr.first;
}
}
void
content_merge_database_adaptor::get_ancestral_roster(node_id nid,
revision_id & rid,
shared_ptr<roster_t const> & anc)
{
// Given a file, if the lca is nonzero and its roster contains the file,
// then we use its roster. Otherwise we use the roster at the file's
// birth revision, which is the "per-file worst case" lca.
// Begin by loading any non-empty file lca roster
rid = lca;
if (!lca.inner()().empty())
load_and_cache_roster(db, lca, rosters, anc);
// If there is no LCA, or the LCA's roster doesn't contain the file,
// then use the file's birth roster.
if (!anc || !anc->has_node(nid))
{
marking_map::const_iterator lmm = left_mm.find(nid);
marking_map::const_iterator rmm = right_mm.find(nid);
MM(left_mm);
MM(right_mm);
if (lmm == left_mm.end())
{
I(rmm != right_mm.end());
rid = rmm->second.birth_revision;
}
else if (rmm == right_mm.end())
{
I(lmm != left_mm.end());
rid = lmm->second.birth_revision;
}
else
{
I(lmm->second.birth_revision == rmm->second.birth_revision);
rid = lmm->second.birth_revision;
}
load_and_cache_roster(db, rid, rosters, anc);
}
I(anc);
}
void
content_merge_database_adaptor::get_version(file_id const & ident,
file_data & dat) const
{
db.get_file_version(ident, dat);
}
///////////////////////////////////////////////////////////////////////////
// content_merge_workspace_adaptor
///////////////////////////////////////////////////////////////////////////
void
content_merge_workspace_adaptor::cache_roster(revision_id const & rid,
boost::shared_ptr<roster_t const> roster)
{
rosters.insert(std::make_pair(rid, roster));
}
void
content_merge_workspace_adaptor::record_merge(file_id const & left_id,
file_id const & right_id,
file_id const & merged_id,
file_data const & left_data,
file_data const & right_data,
file_data const & merged_data)
{
L(FL("temporarily recording merge of %s <-> %s into %s")
% left_id
% right_id
% merged_id);
// this is an insert instead of a safe_insert because it is perfectly
// legal (though rare) to have multiple merges resolve to the same file
// contents.
temporary_store.insert(make_pair(merged_id, merged_data));
}
void
content_merge_workspace_adaptor::record_file(file_id const & parent_id,
file_id const & merged_id,
file_data const & parent_data,
file_data const & merged_data)
{
L(FL("temporarily recording file %s -> %s")
% parent_id
% merged_id);
// this is an insert instead of a safe_insert because it is perfectly
// legal (though rare) to have multiple merges resolve to the same file
// contents.
temporary_store.insert(make_pair(merged_id, merged_data));
}
void
content_merge_workspace_adaptor::get_ancestral_roster(node_id nid,
revision_id & rid,
shared_ptr<roster_t const> & anc)
{
// Begin by loading any non-empty file lca roster
if (base->has_node(nid))
{
rid = lca;
anc = base;
}
else
{
marking_map::const_iterator lmm = left_mm.find(nid);
marking_map::const_iterator rmm = right_mm.find(nid);
MM(left_mm);
MM(right_mm);
if (lmm == left_mm.end())
{
I(rmm != right_mm.end());
rid = rmm->second.birth_revision;
}
else if (rmm == right_mm.end())
{
I(lmm != left_mm.end());
rid = lmm->second.birth_revision;
}
else
{
I(lmm->second.birth_revision == rmm->second.birth_revision);
rid = lmm->second.birth_revision;
}
load_and_cache_roster(db, rid, rosters, anc);
}
I(anc);
}
void
content_merge_workspace_adaptor::get_version(file_id const & ident,
file_data & dat) const
{
map<file_id,file_data>::const_iterator i = temporary_store.find(ident);
if (i != temporary_store.end())
dat = i->second;
else if (db.file_version_exists(ident))
db.get_file_version(ident, dat);
else
{
data tmp;
file_id fid;
map<file_id, file_path>::const_iterator i = content_paths.find(ident);
I(i != content_paths.end());
require_path_is_file(i->second,
F("file '%s' does not exist in workspace") % i->second,
F("'%s' in workspace is a directory, not a file") % i->second);
read_data(i->second, tmp);
calculate_ident(file_data(tmp), fid);
E(fid == ident,
F("file %s in workspace has id %s, wanted %s")
% i->second
% fid
% ident);
dat = file_data(tmp);
}
}
///////////////////////////////////////////////////////////////////////////
// content_merge_checkout_adaptor
///////////////////////////////////////////////////////////////////////////
void
content_merge_checkout_adaptor::record_merge(file_id const & left_ident,
file_id const & right_ident,
file_id const & merged_ident,
file_data const & left_data,
file_data const & right_data,
file_data const & merged_data)
{
I(false);
}
void
content_merge_checkout_adaptor::record_file(file_id const & parent_ident,
file_id const & merged_ident,
file_data const & parent_data,
file_data const & merged_data)
{
I(false);
}
void
content_merge_checkout_adaptor::get_ancestral_roster(node_id nid,
revision_id & rid,
shared_ptr<roster_t const> & anc)
{
I(false);
}
void
content_merge_checkout_adaptor::get_version(file_id const & ident,
file_data & dat) const
{
db.get_file_version(ident, dat);
}
///////////////////////////////////////////////////////////////////////////
// content_merger
///////////////////////////////////////////////////////////////////////////
string
content_merger::get_file_encoding(file_path const & path,
roster_t const & ros)
{
attr_value v;
if (ros.get_attr(path, attr_key(constants::encoding_attribute), v))
return v();
return constants::default_encoding;
}
bool
content_merger::attribute_manual_merge(file_path const & path,
roster_t const & ros)
{
attr_value v;
if (ros.get_attr(path, attr_key(constants::manual_merge_attribute), v)
&& v() == "true")
return true;
return false; // default: enable auto merge
}
bool
content_merger::attempt_auto_merge(file_path const & anc_path, // inputs
file_path const & left_path,
file_path const & right_path,
file_id const & ancestor_id,
file_id const & left_id,
file_id const & right_id,
file_data & left_data, // outputs
file_data & right_data,
file_data & merge_data)
{
I(left_id != right_id);
if (attribute_manual_merge(left_path, left_ros) ||
attribute_manual_merge(right_path, right_ros))
{
return false;
}
// both files mergeable by monotone internal algorithm, try to merge
// note: the ancestor is not considered for manual merging. Forcing the
// user to merge manually just because of an ancestor mistakenly marked
// manual seems too harsh
file_data ancestor_data;
adaptor.get_version(left_id, left_data);
adaptor.get_version(ancestor_id, ancestor_data);
adaptor.get_version(right_id, right_data);
data const left_unpacked = left_data.inner();
data const ancestor_unpacked = ancestor_data.inner();
data const right_unpacked = right_data.inner();
string const left_encoding(get_file_encoding(left_path, left_ros));
string const anc_encoding(get_file_encoding(anc_path, anc_ros));
string const right_encoding(get_file_encoding(right_path, right_ros));
vector<string> left_lines, ancestor_lines, right_lines, merged_lines;
split_into_lines(left_unpacked(), left_encoding, left_lines);
split_into_lines(ancestor_unpacked(), anc_encoding, ancestor_lines);
split_into_lines(right_unpacked(), right_encoding, right_lines);
if (merge3(ancestor_lines, left_lines, right_lines, merged_lines))
{
string tmp;
join_lines(merged_lines, tmp);
merge_data = file_data(tmp);
return true;
}
return false;
}
bool
content_merger::try_auto_merge(file_path const & anc_path,
file_path const & left_path,
file_path const & right_path,
file_path const & merged_path,
file_id const & ancestor_id,
file_id const & left_id,
file_id const & right_id,
file_id & merged_id)
{
// This version of try_to_merge_files should only be called when there is a
// real merge3 to perform.
I(!null_id(ancestor_id));
I(!null_id(left_id));
I(!null_id(right_id));
L(FL("trying auto merge '%s' %s <-> %s (ancestor: %s)")
% merged_path
% left_id
% right_id
% ancestor_id);
if (left_id == right_id)
{
L(FL("files are identical"));
merged_id = left_id;
return true;
}
file_data left_data, right_data, merge_data;
if (attempt_auto_merge(anc_path, left_path, right_path,
ancestor_id, left_id, right_id,
left_data, right_data, merge_data))
{
L(FL("internal 3-way merged ok"));
calculate_ident(merge_data, merged_id);
adaptor.record_merge(left_id, right_id, merged_id,
left_data, right_data, merge_data);
return true;
}
return false;
}
bool
content_merger::try_user_merge(file_path const & anc_path,
file_path const & left_path,
file_path const & right_path,
file_path const & merged_path,
file_id const & ancestor_id,
file_id const & left_id,
file_id const & right_id,
file_id & merged_id)
{
// This version of try_to_merge_files should only be called when there is a
// real merge3 to perform.
I(!null_id(ancestor_id));
I(!null_id(left_id));
I(!null_id(right_id));
L(FL("trying user merge '%s' %s <-> %s (ancestor: %s)")
% merged_path
% left_id
% right_id
% ancestor_id);
if (left_id == right_id)
{
L(FL("files are identical"));
merged_id = left_id;
return true;
}
file_data left_data, right_data, ancestor_data;
data left_unpacked, ancestor_unpacked, right_unpacked, merged_unpacked;
adaptor.get_version(left_id, left_data);
adaptor.get_version(ancestor_id, ancestor_data);
adaptor.get_version(right_id, right_data);
left_unpacked = left_data.inner();
ancestor_unpacked = ancestor_data.inner();
right_unpacked = right_data.inner();
P(F("help required for 3-way merge\n"
"[ancestor] %s\n"
"[ left] %s\n"
"[ right] %s\n"
"[ merged] %s")
% anc_path
% left_path
% right_path
% merged_path);
if (lua.hook_merge3(anc_path, left_path, right_path, merged_path,
ancestor_unpacked, left_unpacked,
right_unpacked, merged_unpacked))
{
file_data merge_data(merged_unpacked);
L(FL("lua merge3 hook merged ok"));
calculate_ident(merge_data, merged_id);
adaptor.record_merge(left_id, right_id, merged_id,
left_data, right_data, merge_data);
return true;
}
return false;
}
// the remaining part of this file just handles printing out various
// diff formats for the case where someone wants to *read* a diff
// rather than apply it.
struct hunk_consumer
{
vector<string> const & a;
vector<string> const & b;
size_t ctx;
ostream & ost;
boost::scoped_ptr<pcre::regex const> encloser_re;
size_t a_begin, b_begin, a_len, b_len;
long skew;
vector<string>::const_reverse_iterator encloser_last_match;
vector<string>::const_reverse_iterator encloser_last_search;