##// END OF EJS Templates
diff: use tab to separate date from filename...
mpm@selenic.com -
r272:467cea2b default
parent child Browse files
Show More
@@ -1,91 +1,94 b''
1 1 # mdiff.py - diff and patch routines for mercurial
2 2 #
3 3 # Copyright 2005 Matt Mackall <mpm@selenic.com>
4 4 #
5 5 # This software may be used and distributed according to the terms
6 6 # of the GNU General Public License, incorporated herein by reference.
7 7
8 8 import difflib, struct
9 9 from mercurial.mpatch import *
10 10
11 11 def unidiff(a, ad, b, bd, fn):
12 12 if not a and not b: return ""
13 13
14 14 if a == None:
15 15 b = b.splitlines(1)
16 16 l1 = "--- %s\t%s\n" % ("/dev/null", ad)
17 17 l2 = "+++ %s\t%s\n" % ("b/" + fn, bd)
18 18 l3 = "@@ -0,0 +1,%d @@\n" % len(b)
19 19 l = [l1, l2, l3] + ["+" + e for e in b]
20 20 elif b == None:
21 21 a = a.splitlines(1)
22 22 l1 = "--- %s\t%s\n" % ("a/" + fn, ad)
23 23 l2 = "+++ %s\t%s\n" % ("/dev/null", bd)
24 24 l3 = "@@ -1,%d +0,0 @@\n" % len(a)
25 25 l = [l1, l2, l3] + ["-" + e for e in a]
26 26 else:
27 27 a = a.splitlines(1)
28 28 b = b.splitlines(1)
29 l = list(difflib.unified_diff(a, b, "a/" + fn, "b/" + fn, ad, bd))
29 l = list(difflib.unified_diff(a, b, "a/" + fn, "b/" + fn))
30 # difflib uses a space, rather than a tab
31 l[0] = l[0][:-2] + "\t" + ad + "\n"
32 l[1] = l[1][:-2] + "\t" + bd + "\n"
30 33
31 34 for ln in xrange(len(l)):
32 35 if l[ln][-1] != '\n':
33 36 l[ln] += "\n\ No newline at end of file\n"
34 37
35 38 return "".join(l)
36 39
37 40 def textdiff(a, b):
38 41 return diff(a.splitlines(1), b.splitlines(1))
39 42
40 43 def sortdiff(a, b):
41 44 la = lb = 0
42 45 lena = len(a)
43 46 lenb = len(b)
44 47 while 1:
45 48 am, bm, = la, lb
46 49 while lb < lenb and la < len and a[la] == b[lb] :
47 50 la += 1
48 51 lb += 1
49 52 if la>am: yield (am, bm, la-am)
50 53 while lb < lenb and b[lb] < a[la]: lb += 1
51 54 if lb>=lenb: break
52 55 while la < lena and b[lb] > a[la]: la += 1
53 56 if la>=lena: break
54 57 yield (lena, lenb, 0)
55 58
56 59 def diff(a, b, sorted=0):
57 60 if not a:
58 61 s = "".join(b)
59 62 return s and (struct.pack(">lll", 0, 0, len(s)) + s)
60 63
61 64 bin = []
62 65 p = [0]
63 66 for i in a: p.append(p[-1] + len(i))
64 67
65 68 if sorted:
66 69 d = sortdiff(a, b)
67 70 else:
68 71 d = difflib.SequenceMatcher(None, a, b).get_matching_blocks()
69 72 la = 0
70 73 lb = 0
71 74 for am, bm, size in d:
72 75 s = "".join(b[lb:bm])
73 76 if am > la or s:
74 77 bin.append(struct.pack(">lll", p[la], p[am], len(s)) + s)
75 78 la = am + size
76 79 lb = bm + size
77 80
78 81 return "".join(bin)
79 82
80 83 def patchtext(bin):
81 84 pos = 0
82 85 t = []
83 86 while pos < len(bin):
84 87 p1, p2, l = struct.unpack(">lll", bin[pos:pos + 12])
85 88 pos += 12
86 89 t.append(bin[pos:pos + l])
87 90 pos += l
88 91 return "".join(t)
89 92
90 93 def patch(a, bin):
91 94 return patches(a, [bin])
General Comments 0
You need to be logged in to leave comments. Login now