~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/mdiff.py

  • Committer: Martin Pool
  • Date: 2005-07-07 10:22:02 UTC
  • Revision ID: mbp@sourcefrog.net-20050707102201-2d2a13a25098b101
- rearrange and clear up merged weave

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
29
28
 
30
 
import unittest
31
29
import difflib, sys, struct
32
30
from cStringIO import StringIO
33
31
 
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
 
 
71
32
def diff(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)
 
33
    d = difflib.SequenceMatcher(None, a, b)
78
34
    
79
35
    ## sys.stderr.write('  ~ real_quick_ratio: %.4f\n' % d.real_quick_ratio())
80
36
    
82
38
        if o == 'equal': continue
83
39
        # a[m:n] should be replaced by b[s:t]
84
40
        if s == t:
85
 
            yield ap[m], ap[n], ''
 
41
            yield m, n, ''
86
42
        else:
87
 
            yield ap[m], ap[n], ''.join(bl[s:t])
 
43
            yield m, n, b[s:t]
88
44
 
89
45
 
90
46
def tobinary(ops):
138
94
 
139
95
 
140
96
 
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()