~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/merge3.py

  • Committer: Martin Pool
  • Date: 2005-08-18 05:44:39 UTC
  • Revision ID: mbp@sourcefrog.net-20050818054439-ba0873b87a8c1671
- add code to run weave utility under profiler

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
# s: "i hate that."
20
20
 
21
21
 
22
 
from bzrlib.errors import CantReprocessAndShowBase
23
 
from bzrlib.patiencediff import SequenceMatcher
24
 
from bzrlib.textfile import check_text_lines
25
22
 
26
23
def intersect(ra, rb):
27
24
    """Given two ranges return the range where they intersect or None.
67
64
    incorporating the changes from both BASE->OTHER and BASE->THIS.
68
65
    All three will typically be sequences of lines."""
69
66
    def __init__(self, base, a, b):
70
 
        check_text_lines(base)
71
 
        check_text_lines(a)
72
 
        check_text_lines(b)
73
67
        self.base = base
74
68
        self.a = a
75
69
        self.b = b
 
70
        from difflib import SequenceMatcher
 
71
        self.a_ops = SequenceMatcher(None, base, a).get_opcodes()
 
72
        self.b_ops = SequenceMatcher(None, base, b).get_opcodes()
76
73
 
77
74
 
78
75
 
79
76
    def merge_lines(self,
80
77
                    name_a=None,
81
78
                    name_b=None,
82
 
                    name_base=None,
83
 
                    start_marker='<<<<<<<',
84
 
                    mid_marker='=======',
85
 
                    end_marker='>>>>>>>',
86
 
                    base_marker=None,
87
 
                    reprocess=False):
 
79
                    start_marker='<<<<<<<<',
 
80
                    mid_marker='========',
 
81
                    end_marker='>>>>>>>>',
 
82
                    show_base=False):
88
83
        """Return merge in cvs-like form.
89
84
        """
90
 
        if base_marker and reprocess:
91
 
            raise CantReprocessAndShowBase()
92
85
        if name_a:
93
86
            start_marker = start_marker + ' ' + name_a
94
87
        if name_b:
95
88
            end_marker = end_marker + ' ' + name_b
96
 
        if name_base and base_marker:
97
 
            base_marker = base_marker + ' ' + name_base
98
 
        merge_regions = self.merge_regions()
99
 
        if reprocess is True:
100
 
            merge_regions = self.reprocess_merge_regions(merge_regions)
101
 
        for t in merge_regions:
 
89
            
 
90
        for t in self.merge_regions():
102
91
            what = t[0]
103
92
            if what == 'unchanged':
104
93
                for i in range(t[1], t[2]):
113
102
                yield start_marker + '\n'
114
103
                for i in range(t[3], t[4]):
115
104
                    yield self.a[i]
116
 
                if base_marker is not None:
117
 
                    yield base_marker + '\n'
118
 
                    for i in range(t[1], t[2]):
119
 
                        yield self.base[i]
120
105
                yield mid_marker + '\n'
121
106
                for i in range(t[5], t[6]):
122
107
                    yield self.b[i]
278
263
                iz = zend
279
264
                ia = aend
280
265
                ib = bend
281
 
    
282
 
 
283
 
    def reprocess_merge_regions(self, merge_regions):
284
 
        """Where there are conflict regions, remove the agreed lines.
285
 
 
286
 
        Lines where both A and B have made the same changes are 
287
 
        eliminated.
288
 
        """
289
 
        for region in merge_regions:
290
 
            if region[0] != "conflict":
291
 
                yield region
292
 
                continue
293
 
            type, iz, zmatch, ia, amatch, ib, bmatch = region
294
 
            a_region = self.a[ia:amatch]
295
 
            b_region = self.b[ib:bmatch]
296
 
            matches = SequenceMatcher(None, a_region, 
297
 
                                      b_region).get_matching_blocks()
298
 
            next_a = ia
299
 
            next_b = ib
300
 
            for region_ia, region_ib, region_len in matches[:-1]:
301
 
                region_ia += ia
302
 
                region_ib += ib
303
 
                reg = self.mismatch_region(next_a, region_ia, next_b,
304
 
                                           region_ib)
305
 
                if reg is not None:
306
 
                    yield reg
307
 
                yield 'same', region_ia, region_len+region_ia
308
 
                next_a = region_ia + region_len
309
 
                next_b = region_ib + region_len
310
 
            reg = self.mismatch_region(next_a, amatch, next_b, bmatch)
311
 
            if reg is not None:
312
 
                yield reg
313
 
 
314
 
 
315
 
    @staticmethod
316
 
    def mismatch_region(next_a, region_ia,  next_b, region_ib):
317
 
        if next_a < region_ia or next_b < region_ib:
318
 
            return 'conflict', None, None, next_a, region_ia, next_b, region_ib
319
 
            
320
 
 
 
266
        
 
267
 
 
268
        
321
269
    def find_sync_regions(self):
322
270
        """Return a list of sync regions, where both descendents match the base.
323
271
 
324
272
        Generates a list of (base1, base2, a1, a2, b1, b2).  There is
325
273
        always a zero-length sync region at the end of all the files.
326
274
        """
 
275
        from difflib import SequenceMatcher
327
276
 
328
277
        ia = ib = 0
329
278
        amatches = SequenceMatcher(None, self.base, self.a).get_matching_blocks()
383
332
 
384
333
    def find_unconflicted(self):
385
334
        """Return a list of ranges in base that are not conflicted."""
386
 
        am = SequenceMatcher(None, self.base, self.a).get_matching_blocks()
387
 
        bm = SequenceMatcher(None, self.base, self.b).get_matching_blocks()
 
335
        from difflib import SequenceMatcher
 
336
 
 
337
        import re
 
338
 
 
339
        # don't sync-up on lines containing only blanks or pounds
 
340
        junk_re = re.compile(r'^[ \t#]*$')
 
341
        
 
342
        am = SequenceMatcher(junk_re.match, self.base, self.a).get_matching_blocks()
 
343
        bm = SequenceMatcher(junk_re.match, self.base, self.b).get_matching_blocks()
388
344
 
389
345
        unc = []
390
346