~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/cdvdifflib.py

  • Committer: John Arbash Meinel
  • Date: 2005-11-06 06:46:25 UTC
  • mto: This revision was merged to the branch mainline in revision 1727.
  • Revision ID: john@arbash-meinel.com-20051106064625-bb31d4e6fb25930a
Adding nofrillsprecisemerge's diff algorithm, wrapped in difflib.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005 Canonical Ltd
 
2
 
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
 
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
 
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
# Author: Martin Pool <mbp@canonical.com>
 
18
 
 
19
 
 
20
from nofrillsprecisemerge import recurse_matches
 
21
from bzrlib.errors import BzrError
 
22
import difflib
 
23
 
 
24
class SequenceMatcher(difflib.SequenceMatcher):
 
25
    """This is a class which attempts to look something like difflib's SequenceMatcher"""
 
26
 
 
27
    def find_longest_match(self, alo, ahi, blo, bhi):
 
28
        raise NotImplementedError
 
29
 
 
30
    def get_matching_blocks(self):
 
31
        """Return list of triples describing matching subsequences.
 
32
 
 
33
        Each triple is of the form (i, j, n), and means that
 
34
        a[i:i+n] == b[j:j+n].  The triples are monotonically increasing in
 
35
        i and in j.
 
36
 
 
37
        The last triple is a dummy, (len(a), len(b), 0), and is the only
 
38
        triple with n==0.
 
39
 
 
40
        >>> s = SequenceMatcher(None, "abxcd", "abcd")
 
41
        >>> s.get_matching_blocks()
 
42
        [(0, 0, 2), (3, 2, 2), (5, 4, 0)]
 
43
        """
 
44
 
 
45
        matches = []
 
46
        a, b = self.a, self.b
 
47
        recurse_matches(a, b, len(a), len(b), matches, 10)
 
48
        # Matches now has individual line pairs of
 
49
        # line A matches line B, at the given offsets
 
50
 
 
51
        match_blocks = []
 
52
        start_a = start_b = None
 
53
        length = 0
 
54
        for i_a, i_b in matches:
 
55
            if (start_a is not None
 
56
                and (i_a == start_a + length) 
 
57
                and (i_b == start_b + length)):
 
58
                length += 1
 
59
            else:
 
60
                # New block
 
61
                if start_a is not None:
 
62
                    match_blocks.append((start_a, start_b, length))
 
63
                start_a = i_a
 
64
                start_b = i_b
 
65
                length = 1
 
66
 
 
67
        if length != 0:
 
68
            match_blocks.append((start_a, start_b, length))
 
69
 
 
70
        match_blocks.append((len(a), len(b), 0))
 
71
        return match_blocks
 
72