~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/mdiff.py

  • Committer: Martin Pool
  • Date: 2005-08-12 15:41:44 UTC
  • Revision ID: mbp@sourcefrog.net-20050812154144-bc98570a78b8f633
- merge in deferred revfile work

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
import difflib, sys, struct
30
30
from cStringIO import StringIO
31
31
 
 
32
def linesplit(a):
 
33
    """Split into two lists: content and line positions"""
 
34
    al, ap = [], []
 
35
    last = 0
 
36
 
 
37
    n = a.find("\n") + 1
 
38
    while n > 0:
 
39
        ap.append(last)
 
40
        al.append(a[last:n])
 
41
        last = n
 
42
        n = a.find("\n", n) + 1
 
43
 
 
44
    # position at the end
 
45
    ap.append(len(a))
 
46
 
 
47
    return (al, ap)
 
48
 
 
49
 
32
50
def diff(a, b):
33
 
    d = difflib.SequenceMatcher(None, a, b)
 
51
    # TODO: Use different splits, perhaps rsync-like, for binary files?
 
52
    
 
53
    (al, ap) = linesplit(a)
 
54
    (bl, bp) = linesplit(b)
 
55
 
 
56
    d = difflib.SequenceMatcher(None, al, bl)
34
57
    
35
58
    ## sys.stderr.write('  ~ real_quick_ratio: %.4f\n' % d.real_quick_ratio())
36
59
    
38
61
        if o == 'equal': continue
39
62
        # a[m:n] should be replaced by b[s:t]
40
63
        if s == t:
41
 
            yield m, n, ''
 
64
            yield ap[m], ap[n], ''
42
65
        else:
43
 
            yield m, n, b[s:t]
 
66
            yield ap[m], ap[n], ''.join(bl[s:t])
44
67
 
45
68
 
46
69
def tobinary(ops):