~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/mdiff.py

  • Committer: aaron.bentley at utoronto
  • Date: 2005-08-18 02:24:28 UTC
  • mto: (1092.1.41) (1185.3.4) (974.1.47)
  • mto: This revision was merged to the branch mainline in revision 1110.
  • Revision ID: aaron.bentley@utoronto.ca-20050818022428-4c0bf84005f4dba8
mergedĀ mbp@sourcefrog.net-20050817233101-0939da1cf91f2472

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
# TODO: maybe work on files not strings?
27
27
 
 
28
# FIXME: doesn't work properly on files without trailing newlines
28
29
 
 
30
import unittest
29
31
import difflib, sys, struct
30
32
from cStringIO import StringIO
31
33
 
 
34
def linesplit(a):
 
35
    """Split into two lists: content and line positions.
 
36
 
 
37
    This returns (al, ap).
 
38
 
 
39
    al[i] is the string content of line i of the file, including its
 
40
    newline (if any).
 
41
 
 
42
    ap[i] is the byte position in the file where that line starts.
 
43
 
 
44
    ap[-1] is the byte position of the end of the file (i.e. the
 
45
    length of the file.)
 
46
 
 
47
    This transformation allows us to do a line-based diff and then map
 
48
    back to byte positions.
 
49
    """
 
50
 
 
51
    al, ap = [], []
 
52
    last = 0
 
53
 
 
54
    n = a.find("\n") + 1
 
55
    while n > 0:
 
56
        ap.append(last)
 
57
        al.append(a[last:n])
 
58
        last = n
 
59
        n = a.find("\n", n) + 1
 
60
 
 
61
    if last < len(a):
 
62
        al.append(a[last:])
 
63
        ap.append(last)
 
64
 
 
65
    # position at the end
 
66
    ap.append(len(a))
 
67
 
 
68
    return (al, ap)
 
69
 
 
70
 
32
71
def diff(a, b):
33
 
    d = difflib.SequenceMatcher(None, a, b)
 
72
    # TODO: Use different splits, perhaps rsync-like, for binary files?
 
73
    
 
74
    (al, ap) = linesplit(a)
 
75
    (bl, bp) = linesplit(b)
 
76
 
 
77
    d = difflib.SequenceMatcher(None, al, bl)
34
78
    
35
79
    ## sys.stderr.write('  ~ real_quick_ratio: %.4f\n' % d.real_quick_ratio())
36
80
    
38
82
        if o == 'equal': continue
39
83
        # a[m:n] should be replaced by b[s:t]
40
84
        if s == t:
41
 
            yield m, n, ''
 
85
            yield ap[m], ap[n], ''
42
86
        else:
43
 
            yield m, n, b[s:t]
 
87
            yield ap[m], ap[n], ''.join(bl[s:t])
44
88
 
45
89
 
46
90
def tobinary(ops):
94
138
 
95
139
 
96
140
 
 
141
class TestDiffPatch(unittest.TestCase):
 
142
    def doDiffPatch(self, old, new):
 
143
        diff = bdiff(old, new)
 
144
        result = bpatch(old, diff)
 
145
        self.assertEquals(new, result)
 
146
 
 
147
 
 
148
    def testSimpleDiff(self):
 
149
        """Simply add a line at the end"""
 
150
        self.doDiffPatch('a\nb\n', 'a\nb\nc\n')
 
151
        
 
152
 
 
153
        
 
154
    def testTrailingLine(self):
 
155
        """Test diff that adds an unterminated line.
 
156
 
 
157
        (Old versions didn't do this properly.)"""
 
158
        self.doDiffPatch('a\nb\nc\n',
 
159
                         'a\nb\nc\nd')
 
160
 
 
161
 
 
162
if __name__ == '__main__':
 
163
    unittest.main()