~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/mdiff.py

  • Committer: mbp at sourcefrog
  • Date: 2005-04-09 02:49:04 UTC
  • Revision ID: mbp@sourcefrog.net-20050409024904-a73e87ce87a0077d9986b40e
- experimental compressed Revfile support
  not integrated yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# (C) 2005 Matt Mackall
2
 
# (C) 2005 Canonical Ltd
3
 
 
4
 
# based on code by Matt Mackall, hacked by Martin Pool
5
 
 
6
 
# mm's code works line-by-line; this just works on byte strings.
7
 
# Possibly slower; possibly gives better results for code not
8
 
# regularly separated by newlines and anyhow a bit simpler.
9
 
 
10
2
 
11
3
# This program is free software; you can redistribute it and/or modify
12
4
# it under the terms of the GNU General Public License as published by
22
14
# along with this program; if not, write to the Free Software
23
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24
16
 
25
 
 
26
 
# TODO: maybe work on files not strings?
27
 
 
28
 
 
29
17
import difflib, sys, struct
30
 
from cStringIO import StringIO
 
18
 
 
19
def linesplit(a):
 
20
    al, ap = [], []
 
21
    last = 0
 
22
 
 
23
    n = a.find("\n") + 1
 
24
    while n > 0:
 
25
        ap.append(last)
 
26
        al.append(a[last:n])
 
27
        last = n
 
28
        n = a.find("\n", n) + 1
 
29
 
 
30
    return (al, ap)
31
31
 
32
32
def diff(a, b):
33
 
    d = difflib.SequenceMatcher(None, a, b)
34
 
    
35
 
    ## sys.stderr.write('  ~ real_quick_ratio: %.4f\n' % d.real_quick_ratio())
36
 
    
 
33
    (al, ap) = linesplit(a)
 
34
    (bl, bp) = linesplit(b)
 
35
 
 
36
    d = difflib.SequenceMatcher(None, al, bl)
 
37
    ops = []
37
38
    for o, m, n, s, t in d.get_opcodes():
38
39
        if o == 'equal': continue
39
 
        # a[m:n] should be replaced by b[s:t]
40
 
        if s == t:
41
 
            yield m, n, ''
42
 
        else:
43
 
            yield m, n, b[s:t]
 
40
        ops.append((ap[m], ap[n], "".join(bl[s:t])))
44
41
 
 
42
    return ops
45
43
 
46
44
def tobinary(ops):
47
 
    b = StringIO()
 
45
    b = ""
48
46
    for f in ops:
49
 
        b.write(struct.pack(">III", f[0], f[1], len(f[2])))
50
 
        b.write(f[2])
51
 
    return b.getvalue()
52
 
 
 
47
        b += struct.pack(">lll", f[0], f[1], len(f[2])) + f[2]
 
48
    return b
53
49
 
54
50
def bdiff(a, b):
55
51
    return tobinary(diff(a, b))
56
52
 
57
 
 
58
53
def patch(t, ops):
59
54
    last = 0
60
 
    b = StringIO()
61
 
 
62
 
    for m, n, r in ops:
63
 
        b.write(t[last:m])
64
 
        if r:
65
 
            b.write(r)
66
 
        last = n
67
 
        
68
 
    b.write(t[last:])
69
 
    return b.getvalue()
70
 
 
 
55
    r = []
 
56
 
 
57
    for p1, p2, sub in ops:
 
58
        r.append(t[last:p1])
 
59
        r.append(sub)
 
60
        last = p2
 
61
 
 
62
    r.append(t[last:])
 
63
    return "".join(r)
71
64
 
72
65
def frombinary(b):
73
 
    bin = StringIO(b)
74
 
    while True:
75
 
        p = bin.read(12)
76
 
        if not p:
77
 
            break
78
 
 
79
 
        m, n, l = struct.unpack(">III", p)
80
 
        
81
 
        if l == 0:
82
 
            r = ''
83
 
        else:
84
 
            r = bin.read(l)
85
 
            if len(r) != l:
86
 
                raise Exception("truncated patch data")
87
 
            
88
 
        yield m, n, r
89
 
 
 
66
    ops = []
 
67
    while b:
 
68
        p = b[:12]
 
69
        m, n, l = struct.unpack(">lll", p)
 
70
        ops.append((m, n, b[12:12 + l]))
 
71
        b = b[12 + l:]
 
72
 
 
73
    return ops
90
74
 
91
75
def bpatch(t, b):
92
76
    return patch(t, frombinary(b))