-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdiff3.go
532 lines (467 loc) · 13.4 KB
/
diff3.go
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
/*
Package diff3 implements a three-way merge algorithm
Original version in Javascript by Bryan Housel @bhousel: https://github.com/bhousel/node-diff3,
which in turn is based on project Synchrotron, created by Tony Garnock-Jones. For more detail please visit:
http://homepages.kcbbs.gen.nz/tonyg/projects/synchrotron.html
https://github.com/tonyg/synchrotron
Ported to go by Javier Peletier @jpeletier
*/
package diff3
import (
"fmt"
"io"
"slices"
"sort"
"strings"
"github.com/epiclabs-io/diff3/linereader"
)
type candidate struct {
file1index int
file2index int
chain *candidate
}
// Text diff algorithm following Hunt and McIlroy 1976.
// J. W. Hunt and M. D. McIlroy, An algorithm for differential file
// comparison, Bell Telephone Laboratories CSTR #41 (1976)
// http://www.cs.dartmouth.edu/~doug/
func lcs(file1, file2 []string) *candidate {
var equivalenceClasses map[string][]int
var file2indices []int
var candidates []*candidate
var line string
var c *candidate
var i, j, jX, r, s int
equivalenceClasses = make(map[string][]int)
for j = 0; j < len(file2); j++ {
line = file2[j]
equivalenceClasses[line] = append(equivalenceClasses[line], j)
}
candidates = append(candidates, &candidate{file1index: -1, file2index: -1, chain: nil})
for i = 0; i < len(file1); i++ {
line = file1[i]
file2indices = equivalenceClasses[line] // || []
r = 0
c = candidates[0]
for jX = 0; jX < len(file2indices); jX++ {
j = file2indices[jX]
for s = r; s < len(candidates); s++ {
if (candidates[s].file2index < j) && ((s == len(candidates)-1) || (candidates[s+1].file2index > j)) {
break
}
}
if s < len(candidates) {
newCandidate := &candidate{file1index: i, file2index: j, chain: candidates[s]}
if r == len(candidates) {
candidates = append(candidates, c)
} else {
candidates[r] = c
}
r = s + 1
c = newCandidate
if r == len(candidates) {
break // no point in examining further (j)s
}
}
}
if r == len(candidates) {
candidates = append(candidates, c)
} else {
if r > len(candidates) {
panic("out of range")
} else {
candidates[r] = c
}
}
}
// At this point, we know the LCS: it's in the reverse of the
// linked-list through .chain of candidates[candidates.length - 1].
return candidates[len(candidates)-1]
}
type resultStruct struct {
common []string
file1 []string
file2 []string
}
// We apply the LCS to build a 'comm'-style picture of the
// differences between file1 and file2.
func diffComm(file1, file2 []string) []*resultStruct {
var result []*resultStruct
var tail1 = len(file1)
var tail2 = len(file2)
var common = new(resultStruct)
processCommon := func() {
if len(common.common) != 0 {
slices.Reverse(common.common)
result = append(result, common)
common = new(resultStruct)
}
}
for candidate := lcs(file1, file2); candidate != nil; candidate = candidate.chain {
different := new(resultStruct)
tail1--
for tail1 > candidate.file1index {
different.file1 = append(different.file1, file1[tail1])
tail1--
}
tail2--
for tail2 > candidate.file2index {
different.file2 = append(different.file2, file2[tail2])
tail2--
}
if len(different.file1) != 0 || len(different.file2) != 0 {
processCommon()
slices.Reverse(different.file1)
slices.Reverse(different.file2)
result = append(result, different)
}
if tail1 >= 0 {
common.common = append(common.common, file1[tail1])
}
}
processCommon()
slices.Reverse(result)
return result
}
type chunkDescription struct {
offset int
length int
chunk []string
}
type patch struct {
file1 *chunkDescription
file2 *chunkDescription
}
// We apply the LCD to build a JSON representation of a
// diff(1)-style patch.
func diffPatch(file1, file2 []string) []*patch {
var result []*patch
var tail1 = len(file1)
var tail2 = len(file2)
cd := func(file []string, offset int, length int) *chunkDescription {
var chunk []string
for i := 0; i < length; i++ {
chunk = append(chunk, file[offset+i])
}
return &chunkDescription{
offset: offset,
length: length,
chunk: chunk,
}
}
for candidate := lcs(file1, file2); candidate != nil; candidate = candidate.chain {
mismatchLength1 := tail1 - candidate.file1index - 1
mismatchLength2 := tail2 - candidate.file2index - 1
tail1 = candidate.file1index
tail2 = candidate.file2index
if mismatchLength1 != 0 || mismatchLength2 != 0 {
result = append(result, &patch{
file1: cd(file1, candidate.file1index+1, mismatchLength1),
file2: cd(file2, candidate.file2index+1, mismatchLength2),
})
}
}
slices.Reverse(result)
return result
}
// Takes the output of diffPatch(), and removes
// information from it. It can still be used by patch(),
// below, but can no longer be inverted.
func stripPatch(p []*patch) []*patch {
var newpatch []*patch
for i := 0; i < len(p); i++ {
chunk := p[i]
newpatch = append(newpatch, &patch{
file1: &chunkDescription{offset: chunk.file1.offset, length: chunk.file1.length},
file2: &chunkDescription{chunk: chunk.file2.chunk},
})
}
return newpatch
}
// Takes the output of diffPatch(), and inverts the
// sense of it, so that it can be applied to file2 to give
// file1 rather than the other way around.
func invertPatch(p []*patch) {
for i := 0; i < len(p); i++ {
chunk := p[i]
tmp := chunk.file1
chunk.file1 = chunk.file2
chunk.file2 = tmp
}
}
// Applies a applyPatch to a file.
//
// Given file1 and file2,
//
// applyPatch(file1, diffPatch(file1, file2))
//
// should give file2.
func applyPatch(file []string, p []*patch) []string {
var result []string
commonOffset := 0
copyCommon := func(targetOffset int) {
for commonOffset < targetOffset {
result = append(result, file[commonOffset])
commonOffset++
}
}
for chunkIndex := 0; chunkIndex < len(p); chunkIndex++ {
chunk := p[chunkIndex]
copyCommon(chunk.file1.offset)
for lineIndex := 0; lineIndex < len(chunk.file2.chunk); lineIndex++ {
result = append(result, chunk.file2.chunk[lineIndex])
}
commonOffset += chunk.file1.length
}
copyCommon(len(file))
return result
}
type diffIndicesResult struct {
file1 []int
file2 []int
}
// We apply the LCS to give a simple representation of the
// offsets and lengths of mismatched chunks in the input
// files. This is used by diff3MergeIndices below.
func diffIndices(file1, file2 []string) []*diffIndicesResult {
var result []*diffIndicesResult
tail1 := len(file1)
tail2 := len(file2)
for candidate := lcs(file1, file2); candidate != nil; candidate = candidate.chain {
mismatchLength1 := tail1 - candidate.file1index - 1
mismatchLength2 := tail2 - candidate.file2index - 1
tail1 = candidate.file1index
tail2 = candidate.file2index
if mismatchLength1 != 0 || mismatchLength2 != 0 {
result = append(result, &diffIndicesResult{
file1: []int{tail1 + 1, mismatchLength1},
file2: []int{tail2 + 1, mismatchLength2},
})
}
}
slices.Reverse(result)
return result
}
type hunk [5]int
type hunkList []*hunk
func (h hunkList) Len() int { return len(h) }
func (h hunkList) Swap(i, j int) { h[i], h[j] = h[j], h[i] }
func (h hunkList) Less(i, j int) bool { return h[i][0] < h[j][0] }
// Given three files, A, O, and B, where both A and B are
// independently derived from O, returns a fairly complicated
// internal representation of merge decisions it's taken. The
// interested reader may wish to consult
//
// Sanjeev Khanna, Keshav Kunal, and Benjamin C. Pierce.
// 'A Formal Investigation of ' In Arvind and Prasad,
// editors, Foundations of Software Technology and Theoretical
// Computer Science (FSTTCS), December 2007.
//
// (http://www.cis.upenn.edu/~bcpierce/papers/diff3-short.pdf)
func diff3MergeIndices(a, o, b []string) [][]int {
m1 := diffIndices(o, a)
m2 := diffIndices(o, b)
var hunks []*hunk
addHunk := func(h *diffIndicesResult, side int) {
hunks = append(hunks, &hunk{h.file1[0], side, h.file1[1], h.file2[0], h.file2[1]})
}
for i := 0; i < len(m1); i++ {
addHunk(m1[i], 0)
}
for i := 0; i < len(m2); i++ {
addHunk(m2[i], 2)
}
sort.Sort(hunkList(hunks))
var result [][]int
var commonOffset = 0
copyCommon := func(targetOffset int) {
if targetOffset > commonOffset {
result = append(result, []int{1, commonOffset, targetOffset - commonOffset})
commonOffset = targetOffset
}
}
for hunkIndex := 0; hunkIndex < len(hunks); hunkIndex++ {
firstHunkIndex := hunkIndex
hunk := hunks[hunkIndex]
regionLhs := hunk[0]
regionRhs := regionLhs + hunk[2]
for hunkIndex < len(hunks)-1 {
maybeOverlapping := hunks[hunkIndex+1]
maybeLhs := maybeOverlapping[0]
if maybeLhs > regionRhs {
break
}
regionRhs = max(regionRhs, maybeLhs+maybeOverlapping[2])
hunkIndex++
}
copyCommon(regionLhs)
if firstHunkIndex == hunkIndex {
// The 'overlap' was only one hunk long, meaning that
// there's no conflict here. Either a and o were the
// same, or b and o were the same.
if hunk[4] > 0 {
result = append(result, []int{hunk[1], hunk[3], hunk[4]})
}
} else {
// A proper conflict. Determine the extents of the
// regions involved from a, o and b. Effectively merge
// all the hunks on the left into one giant hunk, and
// do the same for the right; then, correct for skew
// in the regions of o that each side changed, and
// report appropriate spans for the three sides.
regions := [][]int{{len(a), -1, len(o), -1}, nil, {len(b), -1, len(o), -1}}
for i := firstHunkIndex; i <= hunkIndex; i++ {
hunk = hunks[i]
side := hunk[1]
r := regions[side]
oLhs := hunk[0]
oRhs := oLhs + hunk[2]
abLhs := hunk[3]
abRhs := abLhs + hunk[4]
r[0] = min(abLhs, r[0])
r[1] = max(abRhs, r[1])
r[2] = min(oLhs, r[2])
r[3] = max(oRhs, r[3])
}
aLhs := regions[0][0] + (regionLhs - regions[0][2])
aRhs := regions[0][1] + (regionRhs - regions[0][3])
bLhs := regions[2][0] + (regionLhs - regions[2][2])
bRhs := regions[2][1] + (regionRhs - regions[2][3])
result = append(result, []int{-1,
aLhs, aRhs - aLhs,
regionLhs, regionRhs - regionLhs,
bLhs, bRhs - bLhs})
}
commonOffset = regionRhs
}
copyCommon(len(o))
return result
}
// Conflict describes a merge conflict
type Conflict struct {
a []string
aIndex int
o []string
oIndex int
b []string
bIndex int
}
// Diff3MergeResult describes a merge result
type Diff3MergeResult struct {
ok []string
conflict *Conflict
}
// Diff3Merge applies the output of diff3MergeIndices to actually
// construct the merged file; the returned result alternates
// between 'ok' and 'conflict' blocks.
func Diff3Merge(a, o, b []string, excludeFalseConflicts bool) []*Diff3MergeResult {
var result []*Diff3MergeResult
files := [][]string{a, o, b}
indices := diff3MergeIndices(a, o, b)
var okLines []string
flushOk := func() {
if len(okLines) != 0 {
result = append(result, &Diff3MergeResult{ok: okLines})
}
okLines = nil
}
pushOk := func(xs []string) {
for j := 0; j < len(xs); j++ {
okLines = append(okLines, xs[j])
}
}
isTrueConflict := func(rec []int) bool {
if rec[2] != rec[6] {
return true
}
var aoff = rec[1]
var boff = rec[5]
for j := 0; j < rec[2]; j++ {
if a[j+aoff] != b[j+boff] {
return true
}
}
return false
}
for i := 0; i < len(indices); i++ {
var x = indices[i]
var side = x[0]
if side == -1 {
if excludeFalseConflicts && !isTrueConflict(x) {
pushOk(files[0][x[1] : x[1]+x[2]])
} else {
flushOk()
result = append(result, &Diff3MergeResult{
conflict: &Conflict{
a: a[x[1] : x[1]+x[2]],
aIndex: x[1],
o: o[x[3] : x[3]+x[4]],
oIndex: x[3],
b: b[x[5] : x[5]+x[6]],
bIndex: x[5],
},
})
}
} else {
pushOk(files[side][x[1] : x[1]+x[2]])
}
}
flushOk()
return result
}
// MergeResult describes a merge result
type MergeResult struct {
Conflicts bool //Conflict indicates if there is any merge conflict
Result io.Reader // returns a reader that contains the merge result
}
func addConflictMarkers(lines, conflictA, conflictB []string, labelA, labelB string) []string {
lines = append(lines, fmt.Sprintf("<<<<<<<<< %s", labelA))
lines = append(lines, conflictA...)
lines = append(lines, "=========")
lines = append(lines, conflictB...)
lines = append(lines, fmt.Sprintf(">>>>>>>>> %s", labelB))
return lines
}
// Merge takes three streams and returns the merged result
func Merge(a, o, b io.Reader, detailed bool, labelA string, labelB string) (*MergeResult, error) {
al, err := linereader.GetLines(a)
if err != nil {
return nil, err
}
ol, err := linereader.GetLines(o)
if err != nil {
return nil, err
}
bl, err := linereader.GetLines(b)
if err != nil {
return nil, err
}
var merger = Diff3Merge(al, ol, bl, true)
var conflicts = false
var lines []string
for i := 0; i < len(merger); i++ {
var item = merger[i]
if item.ok != nil {
lines = append(lines, item.ok...)
} else {
if detailed {
var c = diffComm(item.conflict.a, item.conflict.b)
for j := 0; j < len(c); j++ {
var inner = c[j]
if inner.common != nil {
lines = append(lines, inner.common...)
} else {
conflicts = true
lines = addConflictMarkers(lines, inner.file1, inner.file2, labelA, labelB)
}
}
} else {
conflicts = true
lines = addConflictMarkers(lines, item.conflict.a, item.conflict.b, labelA, labelB)
}
}
}
return &MergeResult{
Conflicts: conflicts,
Result: strings.NewReader(strings.Join(lines, "\n")),
}, nil
}