~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revisionspec.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-02-01 23:48:08 UTC
  • mfrom: (2225.1.6 revert)
  • Revision ID: pqm@pqm.ubuntu.com-20070201234808-3b1302d73474bd8c
Display changes made by revert

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
 
 
18
import bisect
18
19
import datetime
19
20
import re
20
 
import bisect
21
 
from bzrlib.errors import BzrError, NoSuchRevision, NoCommits
 
21
 
 
22
from bzrlib import (
 
23
    errors,
 
24
    revision,
 
25
    symbol_versioning,
 
26
    trace,
 
27
    tsort,
 
28
    )
 
29
 
22
30
 
23
31
_marker = []
24
32
 
 
33
 
25
34
class RevisionInfo(object):
26
 
    """The results of applying a revision specification to a branch.
 
35
    """The results of applying a revision specification to a branch."""
 
36
 
 
37
    help_txt = """The results of applying a revision specification to a branch.
27
38
 
28
39
    An instance has two useful attributes: revno, and rev_id.
29
40
 
82
93
        return '<bzrlib.revisionspec.RevisionInfo object %s, %s for %r>' % (
83
94
            self.revno, self.rev_id, self.branch)
84
95
 
 
96
 
85
97
# classes in this list should have a "prefix" attribute, against which
86
98
# string specs are matched
87
99
SPEC_TYPES = []
 
100
_revno_regex = None
 
101
 
88
102
 
89
103
class RevisionSpec(object):
90
 
    """A parsed revision specification.
 
104
    """A parsed revision specification."""
 
105
 
 
106
    help_txt = """A parsed revision specification.
91
107
 
92
108
    A revision specification can be an integer, in which case it is
93
109
    assumed to be a revno (though this will translate negative values
105
121
 
106
122
    prefix = None
107
123
 
108
 
    def __new__(cls, spec, foo=_marker):
109
 
        """Parse a revision specifier.
 
124
    def __new__(cls, spec, _internal=False):
 
125
        if _internal:
 
126
            return object.__new__(cls, spec, _internal=_internal)
 
127
 
 
128
        symbol_versioning.warn('Creating a RevisionSpec directly has'
 
129
                               ' been deprecated in version 0.11. Use'
 
130
                               ' RevisionSpec.from_string()'
 
131
                               ' instead.',
 
132
                               DeprecationWarning, stacklevel=2)
 
133
        return RevisionSpec.from_string(spec)
 
134
 
 
135
    @staticmethod
 
136
    def from_string(spec):
 
137
        """Parse a revision spec string into a RevisionSpec object.
 
138
 
 
139
        :param spec: A string specified by the user
 
140
        :return: A RevisionSpec object that understands how to parse the
 
141
            supplied notation.
110
142
        """
 
143
        if not isinstance(spec, (type(None), basestring)):
 
144
            raise TypeError('error')
 
145
 
111
146
        if spec is None:
112
 
            return object.__new__(RevisionSpec, spec)
113
 
 
114
 
        try:
115
 
            spec = int(spec)
116
 
        except ValueError:
117
 
            pass
118
 
 
119
 
        if isinstance(spec, int):
120
 
            return object.__new__(RevisionSpec_int, spec)
121
 
        elif isinstance(spec, basestring):
122
 
            for spectype in SPEC_TYPES:
123
 
                if spec.startswith(spectype.prefix):
124
 
                    return object.__new__(spectype, spec)
125
 
            else:
126
 
                raise BzrError('No namespace registered for string: %r' %
127
 
                               spec)
 
147
            return RevisionSpec(None, _internal=True)
 
148
 
 
149
        assert isinstance(spec, basestring), \
 
150
            "You should only supply strings not %s" % (type(spec),)
 
151
 
 
152
        for spectype in SPEC_TYPES:
 
153
            if spec.startswith(spectype.prefix):
 
154
                trace.mutter('Returning RevisionSpec %s for %s',
 
155
                             spectype.__name__, spec)
 
156
                return spectype(spec, _internal=True)
128
157
        else:
129
 
            raise TypeError('Unhandled revision type %s' % spec)
130
 
 
131
 
    def __init__(self, spec):
 
158
            # RevisionSpec_revno is special cased, because it is the only
 
159
            # one that directly handles plain integers
 
160
            # TODO: This should not be special cased rather it should be
 
161
            # a method invocation on spectype.canparse()
 
162
            global _revno_regex
 
163
            if _revno_regex is None:
 
164
                _revno_regex = re.compile(r'^(?:(\d+(\.\d+)*)|-\d+)(:.*)?$')
 
165
            if _revno_regex.match(spec) is not None:
 
166
                return RevisionSpec_revno(spec, _internal=True)
 
167
 
 
168
            raise errors.NoSuchRevisionSpec(spec)
 
169
 
 
170
    def __init__(self, spec, _internal=False):
 
171
        """Create a RevisionSpec referring to the Null revision.
 
172
 
 
173
        :param spec: The original spec supplied by the user
 
174
        :param _internal: Used to ensure that RevisionSpec is not being
 
175
            called directly. Only from RevisionSpec.from_string()
 
176
        """
 
177
        if not _internal:
 
178
            # XXX: Update this after 0.10 is released
 
179
            symbol_versioning.warn('Creating a RevisionSpec directly has'
 
180
                                   ' been deprecated in version 0.11. Use'
 
181
                                   ' RevisionSpec.from_string()'
 
182
                                   ' instead.',
 
183
                                   DeprecationWarning, stacklevel=2)
 
184
        self.user_spec = spec
132
185
        if self.prefix and spec.startswith(self.prefix):
133
186
            spec = spec[len(self.prefix):]
134
187
        self.spec = spec
135
188
 
136
189
    def _match_on(self, branch, revs):
 
190
        trace.mutter('Returning RevisionSpec._match_on: None')
137
191
        return RevisionInfo(branch, 0, None)
138
192
 
139
193
    def _match_on_and_check(self, branch, revs):
144
198
            # special case - the empty tree
145
199
            return info
146
200
        elif self.prefix:
147
 
            raise NoSuchRevision(branch, self.prefix + str(self.spec))
 
201
            raise errors.InvalidRevisionSpec(self.user_spec, branch)
148
202
        else:
149
 
            raise NoSuchRevision(branch, str(self.spec))
 
203
            raise errors.InvalidRevisionSpec(self.spec, branch)
150
204
 
151
205
    def in_history(self, branch):
152
206
        if branch:
153
207
            revs = branch.revision_history()
154
208
        else:
 
209
            # this should never trigger.
 
210
            # TODO: make it a deprecated code path. RBC 20060928
155
211
            revs = None
156
212
        return self._match_on_and_check(branch, revs)
157
213
 
167
223
        
168
224
    def __repr__(self):
169
225
        # this is mostly for helping with testing
170
 
        return '<%s %s%s>' % (self.__class__.__name__,
171
 
                              self.prefix or '',
172
 
                              self.spec)
 
226
        return '<%s %s>' % (self.__class__.__name__,
 
227
                              self.user_spec)
173
228
    
174
229
    def needs_branch(self):
175
230
        """Whether this revision spec needs a branch.
178
233
        """
179
234
        return True
180
235
 
 
236
    def get_branch(self):
 
237
        """When the revision specifier contains a branch location, return it.
 
238
        
 
239
        Otherwise, return None.
 
240
        """
 
241
        return None
 
242
 
 
243
 
181
244
# private API
182
245
 
183
 
class RevisionSpec_int(RevisionSpec):
184
 
    """Spec is a number.  Special case."""
185
 
    def __init__(self, spec):
186
 
        self.spec = int(spec)
187
 
 
188
 
    def _match_on(self, branch, revs):
189
 
        if self.spec < 0:
190
 
            revno = len(revs) + self.spec + 1
191
 
        else:
192
 
            revno = self.spec
193
 
        rev_id = branch.get_rev_id(revno, revs)
194
 
        return RevisionInfo(branch, revno, rev_id)
195
 
 
196
 
 
197
246
class RevisionSpec_revno(RevisionSpec):
 
247
    """Selects a revision using a number."""
 
248
 
 
249
    help_txt = """Selects a revision using a number.
 
250
 
 
251
    Use an integer to specify a revision in the history of the branch.
 
252
    Optionally a branch can be specified. The 'revno:' prefix is optional.
 
253
    A negative number will count from the end of the branch (-1 is the
 
254
    last revision, -2 the previous one). If the negative number is larger
 
255
    than the branch's history, the first revision is returned.
 
256
    examples:
 
257
      revno:1                   -> return the first revision
 
258
      revno:3:/path/to/branch   -> return the 3rd revision of
 
259
                                   the branch '/path/to/branch'
 
260
      revno:-1                  -> The last revision in a branch.
 
261
      -2:http://other/branch    -> The second to last revision in the
 
262
                                   remote branch.
 
263
      -1000000                  -> Most likely the first revision, unless
 
264
                                   your history is very long.
 
265
    """
198
266
    prefix = 'revno:'
199
267
 
200
268
    def _match_on(self, branch, revs):
201
269
        """Lookup a revision by revision number"""
 
270
        loc = self.spec.find(':')
 
271
        if loc == -1:
 
272
            revno_spec = self.spec
 
273
            branch_spec = None
 
274
        else:
 
275
            revno_spec = self.spec[:loc]
 
276
            branch_spec = self.spec[loc+1:]
 
277
 
 
278
        if revno_spec == '':
 
279
            if not branch_spec:
 
280
                raise errors.InvalidRevisionSpec(self.user_spec,
 
281
                        branch, 'cannot have an empty revno and no branch')
 
282
            revno = None
 
283
        else:
 
284
            try:
 
285
                revno = int(revno_spec)
 
286
                dotted = False
 
287
            except ValueError:
 
288
                # dotted decimal. This arguably should not be here
 
289
                # but the from_string method is a little primitive 
 
290
                # right now - RBC 20060928
 
291
                try:
 
292
                    match_revno = tuple((int(number) for number in revno_spec.split('.')))
 
293
                except ValueError, e:
 
294
                    raise errors.InvalidRevisionSpec(self.user_spec, branch, e)
 
295
 
 
296
                dotted = True
 
297
 
 
298
        if branch_spec:
 
299
            # the user has override the branch to look in.
 
300
            # we need to refresh the revision_history map and
 
301
            # the branch object.
 
302
            from bzrlib.branch import Branch
 
303
            branch = Branch.open(branch_spec)
 
304
            # Need to use a new revision history
 
305
            # because we are using a specific branch
 
306
            revs = branch.revision_history()
 
307
 
 
308
        if dotted:
 
309
            branch.lock_read()
 
310
            try:
 
311
                last_rev = branch.last_revision()
 
312
                merge_sorted_revisions = tsort.merge_sort(
 
313
                    branch.repository.get_revision_graph(last_rev),
 
314
                    last_rev,
 
315
                    generate_revno=True)
 
316
                def match(item):
 
317
                    return item[3] == match_revno
 
318
                revisions = filter(match, merge_sorted_revisions)
 
319
            finally:
 
320
                branch.unlock()
 
321
            if len(revisions) != 1:
 
322
                return RevisionInfo(branch, None, None)
 
323
            else:
 
324
                # there is no traditional 'revno' for dotted-decimal revnos.
 
325
                # so for  API compatability we return None.
 
326
                return RevisionInfo(branch, None, revisions[0][1])
 
327
        else:
 
328
            if revno < 0:
 
329
                if (-revno) >= len(revs):
 
330
                    revno = 1
 
331
                else:
 
332
                    revno = len(revs) + revno + 1
 
333
            try:
 
334
                revision_id = branch.get_rev_id(revno, revs)
 
335
            except errors.NoSuchRevision:
 
336
                raise errors.InvalidRevisionSpec(self.user_spec, branch)
 
337
        return RevisionInfo(branch, revno, revision_id)
 
338
        
 
339
    def needs_branch(self):
 
340
        return self.spec.find(':') == -1
 
341
 
 
342
    def get_branch(self):
202
343
        if self.spec.find(':') == -1:
203
 
            try:
204
 
                return RevisionInfo(branch, int(self.spec))
205
 
            except ValueError:
206
 
                return RevisionInfo(branch, None)
 
344
            return None
207
345
        else:
208
 
            from branch import Branch
209
 
            revname = self.spec[self.spec.find(':')+1:]
210
 
            other_branch = Branch.open_containing(revname)[0]
211
 
            try:
212
 
                revno = int(self.spec[:self.spec.find(':')])
213
 
            except ValueError:
214
 
                return RevisionInfo(other_branch, None)
215
 
            revid = other_branch.get_rev_id(revno)
216
 
            return RevisionInfo(other_branch, revno)
217
 
        
218
 
    def needs_branch(self):
219
 
        return self.spec.find(':') == -1
 
346
            return self.spec[self.spec.find(':')+1:]
 
347
 
 
348
# Old compatibility 
 
349
RevisionSpec_int = RevisionSpec_revno
220
350
 
221
351
SPEC_TYPES.append(RevisionSpec_revno)
222
352
 
223
353
 
224
354
class RevisionSpec_revid(RevisionSpec):
 
355
    """Selects a revision using the revision id."""
 
356
 
 
357
    help_txt = """Selects a revision using the revision id.
 
358
 
 
359
    Supply a specific revision id, that can be used to specify any
 
360
    revision id in the ancestry of the branch. 
 
361
    Including merges, and pending merges.
 
362
    examples:
 
363
      revid:aaaa@bbbb-123456789 -> Select revision 'aaaa@bbbb-123456789'
 
364
    """    
225
365
    prefix = 'revid:'
226
366
 
227
367
    def _match_on(self, branch, revs):
228
368
        try:
229
 
            return RevisionInfo(branch, revs.index(self.spec) + 1, self.spec)
 
369
            revno = revs.index(self.spec) + 1
230
370
        except ValueError:
231
 
            return RevisionInfo(branch, None, self.spec)
 
371
            revno = None
 
372
        return RevisionInfo(branch, revno, self.spec)
232
373
 
233
374
SPEC_TYPES.append(RevisionSpec_revid)
234
375
 
235
376
 
236
377
class RevisionSpec_last(RevisionSpec):
 
378
    """Selects the nth revision from the end."""
 
379
 
 
380
    help_txt = """Selects the nth revision from the end.
 
381
 
 
382
    Supply a positive number to get the nth revision from the end.
 
383
    This is the same as supplying negative numbers to the 'revno:' spec.
 
384
    examples:
 
385
      last:1        -> return the last revision
 
386
      last:3        -> return the revision 2 before the end.
 
387
    """    
237
388
 
238
389
    prefix = 'last:'
239
390
 
240
391
    def _match_on(self, branch, revs):
 
392
        if self.spec == '':
 
393
            if not revs:
 
394
                raise errors.NoCommits(branch)
 
395
            return RevisionInfo(branch, len(revs), revs[-1])
 
396
 
241
397
        try:
242
398
            offset = int(self.spec)
243
 
        except ValueError:
244
 
            return RevisionInfo(branch, None)
245
 
        else:
246
 
            if offset <= 0:
247
 
                raise BzrError('You must supply a positive value for --revision last:XXX')
248
 
            return RevisionInfo(branch, len(revs) - offset + 1)
 
399
        except ValueError, e:
 
400
            raise errors.InvalidRevisionSpec(self.user_spec, branch, e)
 
401
 
 
402
        if offset <= 0:
 
403
            raise errors.InvalidRevisionSpec(self.user_spec, branch,
 
404
                                             'you must supply a positive value')
 
405
        revno = len(revs) - offset + 1
 
406
        try:
 
407
            revision_id = branch.get_rev_id(revno, revs)
 
408
        except errors.NoSuchRevision:
 
409
            raise errors.InvalidRevisionSpec(self.user_spec, branch)
 
410
        return RevisionInfo(branch, revno, revision_id)
249
411
 
250
412
SPEC_TYPES.append(RevisionSpec_last)
251
413
 
252
414
 
253
415
class RevisionSpec_before(RevisionSpec):
 
416
    """Selects the parent of the revision specified."""
 
417
 
 
418
    help_txt = """Selects the parent of the revision specified.
 
419
 
 
420
    Supply any revision spec to return the parent of that revision.
 
421
    It is an error to request the parent of the null revision (before:0).
 
422
    This is mostly useful when inspecting revisions that are not in the
 
423
    revision history of a branch.
 
424
 
 
425
    examples:
 
426
      before:1913    -> Return the parent of revno 1913 (revno 1912)
 
427
      before:revid:aaaa@bbbb-1234567890  -> return the parent of revision
 
428
                                            aaaa@bbbb-1234567890
 
429
      bzr diff -r before:revid:aaaa..revid:aaaa
 
430
            -> Find the changes between revision 'aaaa' and its parent.
 
431
               (what changes did 'aaaa' introduce)
 
432
    """
254
433
 
255
434
    prefix = 'before:'
256
435
    
257
436
    def _match_on(self, branch, revs):
258
 
        r = RevisionSpec(self.spec)._match_on(branch, revs)
259
 
        if (r.revno is None) or (r.revno == 0):
260
 
            return r
261
 
        return RevisionInfo(branch, r.revno - 1)
 
437
        r = RevisionSpec.from_string(self.spec)._match_on(branch, revs)
 
438
        if r.revno == 0:
 
439
            raise errors.InvalidRevisionSpec(self.user_spec, branch,
 
440
                                         'cannot go before the null: revision')
 
441
        if r.revno is None:
 
442
            # We need to use the repository history here
 
443
            rev = branch.repository.get_revision(r.rev_id)
 
444
            if not rev.parent_ids:
 
445
                revno = 0
 
446
                revision_id = None
 
447
            else:
 
448
                revision_id = rev.parent_ids[0]
 
449
                try:
 
450
                    revno = revs.index(revision_id) + 1
 
451
                except ValueError:
 
452
                    revno = None
 
453
        else:
 
454
            revno = r.revno - 1
 
455
            try:
 
456
                revision_id = branch.get_rev_id(revno, revs)
 
457
            except errors.NoSuchRevision:
 
458
                raise errors.InvalidRevisionSpec(self.user_spec,
 
459
                                                 branch)
 
460
        return RevisionInfo(branch, revno, revision_id)
262
461
 
263
462
SPEC_TYPES.append(RevisionSpec_before)
264
463
 
265
464
 
266
465
class RevisionSpec_tag(RevisionSpec):
 
466
    """To be implemented."""
 
467
 
 
468
    help_txt = """To be implemented."""
 
469
 
267
470
    prefix = 'tag:'
268
471
 
269
472
    def _match_on(self, branch, revs):
270
 
        raise BzrError('tag: namespace registered, but not implemented.')
 
473
        raise errors.InvalidRevisionSpec(self.user_spec, branch,
 
474
                                         'tag: namespace registered,'
 
475
                                         ' but not implemented')
271
476
 
272
477
SPEC_TYPES.append(RevisionSpec_tag)
273
478
 
274
479
 
275
 
class RevisionSpec_revs:
 
480
class _RevListToTimestamps(object):
 
481
    """This takes a list of revisions, and allows you to bisect by date"""
 
482
 
 
483
    __slots__ = ['revs', 'branch']
 
484
 
276
485
    def __init__(self, revs, branch):
277
486
        self.revs = revs
278
487
        self.branch = branch
 
488
 
279
489
    def __getitem__(self, index):
 
490
        """Get the date of the index'd item"""
280
491
        r = self.branch.repository.get_revision(self.revs[index])
281
492
        # TODO: Handle timezone.
282
493
        return datetime.datetime.fromtimestamp(r.timestamp)
 
494
 
283
495
    def __len__(self):
284
496
        return len(self.revs)
285
497
 
286
498
 
287
499
class RevisionSpec_date(RevisionSpec):
 
500
    """Selects a revision on the basis of a datestamp."""
 
501
 
 
502
    help_txt = """Selects a revision on the basis of a datestamp.
 
503
 
 
504
    Supply a datestamp to select the first revision that matches the date.
 
505
    Date can be 'yesterday', 'today', 'tomorrow' or a YYYY-MM-DD string.
 
506
    Matches the first entry after a given date (either at midnight or
 
507
    at a specified time).
 
508
 
 
509
    One way to display all the changes since yesterday would be:
 
510
        bzr log -r date:yesterday..-1
 
511
 
 
512
    examples:
 
513
      date:yesterday            -> select the first revision since yesterday
 
514
      date:2006-08-14,17:10:14  -> select the first revision after
 
515
                                   August 14th, 2006 at 5:10pm.
 
516
    """    
288
517
    prefix = 'date:'
289
518
    _date_re = re.compile(
290
519
            r'(?P<date>(?P<year>\d\d\d\d)-(?P<month>\d\d)-(?P<day>\d\d))?'
293
522
        )
294
523
 
295
524
    def _match_on(self, branch, revs):
296
 
        """
297
 
        Spec for date revisions:
 
525
        """Spec for date revisions:
298
526
          date:value
299
527
          value can be 'yesterday', 'today', 'tomorrow' or a YYYY-MM-DD string.
300
528
          matches the first entry after a given date (either at midnight or
301
529
          at a specified time).
302
 
 
303
 
          So the proper way of saying 'give me all entries for today' is:
304
 
              -r date:yesterday..date:today
305
530
        """
 
531
        #  XXX: This doesn't actually work
 
532
        #  So the proper way of saying 'give me all entries for today' is:
 
533
        #      -r date:yesterday..date:today
306
534
        today = datetime.datetime.fromordinal(datetime.date.today().toordinal())
307
535
        if self.spec.lower() == 'yesterday':
308
536
            dt = today - datetime.timedelta(days=1)
313
541
        else:
314
542
            m = self._date_re.match(self.spec)
315
543
            if not m or (not m.group('date') and not m.group('time')):
316
 
                raise BzrError('Invalid revision date %r' % self.spec)
317
 
 
318
 
            if m.group('date'):
319
 
                year, month, day = int(m.group('year')), int(m.group('month')), int(m.group('day'))
320
 
            else:
321
 
                year, month, day = today.year, today.month, today.day
322
 
            if m.group('time'):
323
 
                hour = int(m.group('hour'))
324
 
                minute = int(m.group('minute'))
325
 
                if m.group('second'):
326
 
                    second = int(m.group('second'))
327
 
                else:
328
 
                    second = 0
329
 
            else:
330
 
                hour, minute, second = 0,0,0
 
544
                raise errors.InvalidRevisionSpec(self.user_spec,
 
545
                                                 branch, 'invalid date')
 
546
 
 
547
            try:
 
548
                if m.group('date'):
 
549
                    year = int(m.group('year'))
 
550
                    month = int(m.group('month'))
 
551
                    day = int(m.group('day'))
 
552
                else:
 
553
                    year = today.year
 
554
                    month = today.month
 
555
                    day = today.day
 
556
 
 
557
                if m.group('time'):
 
558
                    hour = int(m.group('hour'))
 
559
                    minute = int(m.group('minute'))
 
560
                    if m.group('second'):
 
561
                        second = int(m.group('second'))
 
562
                    else:
 
563
                        second = 0
 
564
                else:
 
565
                    hour, minute, second = 0,0,0
 
566
            except ValueError:
 
567
                raise errors.InvalidRevisionSpec(self.user_spec,
 
568
                                                 branch, 'invalid date')
331
569
 
332
570
            dt = datetime.datetime(year=year, month=month, day=day,
333
571
                    hour=hour, minute=minute, second=second)
334
572
        branch.lock_read()
335
573
        try:
336
 
            rev = bisect.bisect(RevisionSpec_revs(revs, branch), dt)
 
574
            rev = bisect.bisect(_RevListToTimestamps(revs, branch), dt)
337
575
        finally:
338
576
            branch.unlock()
339
577
        if rev == len(revs):
345
583
 
346
584
 
347
585
class RevisionSpec_ancestor(RevisionSpec):
 
586
    """Selects a common ancestor with a second branch."""
 
587
 
 
588
    help_txt = """Selects a common ancestor with a second branch.
 
589
 
 
590
    Supply the path to a branch to select the common ancestor.
 
591
 
 
592
    The common ancestor is the last revision that existed in both
 
593
    branches. Usually this is the branch point, but it could also be
 
594
    a revision that was merged.
 
595
 
 
596
    This is frequently used with 'diff' to return all of the changes
 
597
    that your branch introduces, while excluding the changes that you
 
598
    have not merged from the remote branch.
 
599
 
 
600
    examples:
 
601
      ancestor:/path/to/branch
 
602
      $ bzr diff -r ancestor:../../mainline/branch
 
603
    """
348
604
    prefix = 'ancestor:'
349
605
 
350
606
    def _match_on(self, branch, revs):
351
 
        from branch import Branch
352
 
        from revision import common_ancestor, MultipleRevisionSources
353
 
        other_branch = Branch.open_containing(self.spec)[0]
 
607
        from bzrlib.branch import Branch
 
608
 
 
609
        trace.mutter('matching ancestor: on: %s, %s', self.spec, branch)
 
610
        other_branch = Branch.open(self.spec)
354
611
        revision_a = branch.last_revision()
355
612
        revision_b = other_branch.last_revision()
356
613
        for r, b in ((revision_a, branch), (revision_b, other_branch)):
357
 
            if r is None:
358
 
                raise NoCommits(b)
359
 
        revision_source = MultipleRevisionSources(branch.repository,
360
 
                                                  other_branch.repository)
361
 
        rev_id = common_ancestor(revision_a, revision_b, revision_source)
 
614
            if r in (None, revision.NULL_REVISION):
 
615
                raise errors.NoCommits(b)
 
616
        revision_source = revision.MultipleRevisionSources(
 
617
                branch.repository, other_branch.repository)
 
618
        rev_id = revision.common_ancestor(revision_a, revision_b,
 
619
                                          revision_source)
362
620
        try:
363
621
            revno = branch.revision_id_to_revno(rev_id)
364
 
        except NoSuchRevision:
 
622
        except errors.NoSuchRevision:
365
623
            revno = None
366
624
        return RevisionInfo(branch, revno, rev_id)
367
625
        
368
626
SPEC_TYPES.append(RevisionSpec_ancestor)
369
627
 
 
628
 
370
629
class RevisionSpec_branch(RevisionSpec):
371
 
    """A branch: revision specifier.
372
 
 
373
 
    This takes the path to a branch and returns its tip revision id.
 
630
    """Selects the last revision of a specified branch."""
 
631
 
 
632
    help_txt = """Selects the last revision of a specified branch.
 
633
 
 
634
    Supply the path to a branch to select its last revision.
 
635
 
 
636
    examples:
 
637
      branch:/path/to/branch
374
638
    """
375
639
    prefix = 'branch:'
376
640
 
377
641
    def _match_on(self, branch, revs):
378
 
        from branch import Branch
379
 
        other_branch = Branch.open_containing(self.spec)[0]
 
642
        from bzrlib.branch import Branch
 
643
        other_branch = Branch.open(self.spec)
380
644
        revision_b = other_branch.last_revision()
381
 
        if revision_b is None:
382
 
            raise NoCommits(other_branch)
 
645
        if revision_b in (None, revision.NULL_REVISION):
 
646
            raise errors.NoCommits(other_branch)
383
647
        # pull in the remote revisions so we can diff
384
648
        branch.fetch(other_branch, revision_b)
385
649
        try:
386
650
            revno = branch.revision_id_to_revno(revision_b)
387
 
        except NoSuchRevision:
 
651
        except errors.NoSuchRevision:
388
652
            revno = None
389
653
        return RevisionInfo(branch, revno, revision_b)
390
654