mdiff.py
71 lines
| 1.7 KiB
| text/x-python
|
PythonLexer
/ mercurial / mdiff.py
mpm@selenic.com
|
r0 | #!/usr/bin/python | ||
mpm@selenic.com
|
r127 | import difflib, struct, mmap | ||
from mercurial.mpatch import * | ||||
mpm@selenic.com
|
r0 | |||
mpm@selenic.com
|
r64 | def unidiff(a, ad, b, bd, fn): | ||
mpm@selenic.com
|
r35 | if not a and not b: return "" | ||
mpm@selenic.com
|
r0 | a = a.splitlines(1) | ||
b = b.splitlines(1) | ||||
mpm@selenic.com
|
r64 | l = list(difflib.unified_diff(a, b, "a/" + fn, "b/" + fn, ad, bd)) | ||
mpm@selenic.com
|
r170 | |||
for ln in xrange(len(l)): | ||||
if l[ln][-1] != '\n': | ||||
l[ln] += "\n\ No newline at end of file\n" | ||||
mpm@selenic.com
|
r0 | return "".join(l) | ||
def textdiff(a, b): | ||||
return diff(a.splitlines(1), b.splitlines(1)) | ||||
def sortdiff(a, b): | ||||
la = lb = 0 | ||||
mpm@selenic.com
|
r184 | lena = len(a) | ||
lenb = len(b) | ||||
mpm@selenic.com
|
r0 | while 1: | ||
mpm@selenic.com
|
r184 | am, bm, = la, lb | ||
while lb < lenb and la < len and a[la] == b[lb] : | ||||
mpm@selenic.com
|
r0 | la += 1 | ||
lb += 1 | ||||
mpm@selenic.com
|
r184 | if la>am: yield (am, bm, la-am) | ||
while lb < lenb and b[lb] < a[la]: lb += 1 | ||||
if lb>=lenb: break | ||||
while la < lena and b[lb] > a[la]: la += 1 | ||||
if la>=lena: break | ||||
yield (lena, lenb, 0) | ||||
mpm@selenic.com
|
r0 | |||
def diff(a, b, sorted=0): | ||||
mpm@selenic.com
|
r184 | if not a: | ||
s = "".join(b) | ||||
return s and (struct.pack(">lll", 0, 0, len(s)) + s) | ||||
mpm@selenic.com
|
r0 | bin = [] | ||
p = [0] | ||||
for i in a: p.append(p[-1] + len(i)) | ||||
if sorted: | ||||
d = sortdiff(a, b) | ||||
else: | ||||
mpm@selenic.com
|
r184 | d = difflib.SequenceMatcher(None, a, b).get_matching_blocks() | ||
la = 0 | ||||
lb = 0 | ||||
for am, bm, size in d: | ||||
s = "".join(b[lb:bm]) | ||||
if am > la or s: | ||||
bin.append(struct.pack(">lll", p[la], p[am], len(s)) + s) | ||||
la = am + size | ||||
lb = bm + size | ||||
mpm@selenic.com
|
r0 | return "".join(bin) | ||
mpm@selenic.com
|
r120 | def patchtext(bin): | ||
pos = 0 | ||||
t = [] | ||||
while pos < len(bin): | ||||
p1, p2, l = struct.unpack(">lll", bin[pos:pos + 12]) | ||||
pos += 12 | ||||
t.append(bin[pos:pos + l]) | ||||
pos += l | ||||
return "".join(t) | ||||
mpm@selenic.com
|
r0 | def patch(a, bin): | ||
mpm@selenic.com
|
r72 | return patches(a, [bin]) | ||