##// END OF EJS Templates
mdiff: reinstate new algorithm...
mpm@selenic.com -
r325:ad87e198 default
parent child Browse files
Show More
@@ -43,28 +43,41 b' def textdiff(a, b):'
43 43
44 44 def sortdiff(a, b):
45 45 la = lb = 0
46 lena = len(a)
47 lenb = len(b)
46 48
47 49 while 1:
48 if la >= len(a) or lb >= len(b): break
49 if b[lb] < a[la]:
50 si = lb
51 while lb < len(b) and b[lb] < a[la] : lb += 1
52 yield "insert", la, la, si, lb
53 elif a[la] < b[lb]:
54 si = la
55 while la < len(a) and a[la] < b[lb]: la += 1
56 yield "delete", si, la, lb, lb
57 else:
50 am, bm, = la, lb
51
52 # walk over matching lines
53 while lb < lenb and la < lenb and a[la] == b[lb] :
58 54 la += 1
59 55 lb += 1
60 56
61 if lb < len(b):
62 yield "insert", la, la, lb, len(b)
57 if la > am:
58 yield (am, bm, la - am) # return a match
59
60 # skip mismatched lines from b
61 while lb < lenb and b[lb] < a[la]:
62 lb += 1
63 63
64 if la < len(a):
65 yield "delete", la, len(a), lb, lb
64 if lb >= lenb:
65 break
66
67 # skip mismatched lines from a
68 while la < lena and b[lb] > a[la]:
69 la += 1
70
71 if la >= lena:
72 break
73
74 yield (lena, lenb, 0)
66 75
67 76 def diff(a, b, sorted=0):
77 if not a:
78 s = "".join(b)
79 return s and (struct.pack(">lll", 0, 0, len(s)) + s)
80
68 81 bin = []
69 82 p = [0]
70 83 for i in a: p.append(p[-1] + len(i))
@@ -76,12 +89,15 b' def diff(a, b, sorted=0):'
76 89 print a, b
77 90 raise
78 91 else:
79 d = difflib.SequenceMatcher(None, a, b).get_opcodes()
80
81 for o, m, n, s, t in d:
82 if o == 'equal': continue
83 s = "".join(b[s:t])
84 bin.append(struct.pack(">lll", p[m], p[n], len(s)) + s)
92 d = difflib.SequenceMatcher(None, a, b).get_matching_blocks()
93 la = 0
94 lb = 0
95 for am, bm, size in d:
96 s = "".join(b[lb:bm])
97 if am > la or s:
98 bin.append(struct.pack(">lll", p[la], p[am], len(s)) + s)
99 la = am + size
100 lb = bm + size
85 101
86 102 return "".join(bin)
87 103
General Comments 0
You need to be logged in to leave comments. Login now