~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revisionspec.py

  • Committer: Aaron Bentley
  • Date: 2008-03-11 14:29:08 UTC
  • mto: This revision was merged to the branch mainline in revision 3264.
  • Revision ID: aaron@aaronbentley.com-20080311142908-yyrvcpn2mldt0fnn
Update documentation to reflect conflict-handling difference

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005, 2006, 2007 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
 
 
18
import bisect
 
19
import datetime
 
20
import re
 
21
 
 
22
from bzrlib import (
 
23
    errors,
 
24
    osutils,
 
25
    revision,
 
26
    symbol_versioning,
 
27
    trace,
 
28
    tsort,
 
29
    )
 
30
 
 
31
 
 
32
_marker = []
 
33
 
 
34
 
 
35
class RevisionInfo(object):
 
36
    """The results of applying a revision specification to a branch."""
 
37
 
 
38
    help_txt = """The results of applying a revision specification to a branch.
 
39
 
 
40
    An instance has two useful attributes: revno, and rev_id.
 
41
 
 
42
    They can also be accessed as spec[0] and spec[1] respectively,
 
43
    so that you can write code like:
 
44
    revno, rev_id = RevisionSpec(branch, spec)
 
45
    although this is probably going to be deprecated later.
 
46
 
 
47
    This class exists mostly to be the return value of a RevisionSpec,
 
48
    so that you can access the member you're interested in (number or id)
 
49
    or treat the result as a tuple.
 
50
    """
 
51
 
 
52
    def __init__(self, branch, revno, rev_id=_marker):
 
53
        self.branch = branch
 
54
        self.revno = revno
 
55
        if rev_id is _marker:
 
56
            # allow caller to be lazy
 
57
            if self.revno is None:
 
58
                self.rev_id = None
 
59
            else:
 
60
                self.rev_id = branch.get_rev_id(self.revno)
 
61
        else:
 
62
            self.rev_id = rev_id
 
63
 
 
64
    def __nonzero__(self):
 
65
        # first the easy ones...
 
66
        if self.rev_id is None:
 
67
            return False
 
68
        if self.revno is not None:
 
69
            return True
 
70
        # TODO: otherwise, it should depend on how I was built -
 
71
        # if it's in_history(branch), then check revision_history(),
 
72
        # if it's in_store(branch), do the check below
 
73
        return self.branch.repository.has_revision(self.rev_id)
 
74
 
 
75
    def __len__(self):
 
76
        return 2
 
77
 
 
78
    def __getitem__(self, index):
 
79
        if index == 0: return self.revno
 
80
        if index == 1: return self.rev_id
 
81
        raise IndexError(index)
 
82
 
 
83
    def get(self):
 
84
        return self.branch.repository.get_revision(self.rev_id)
 
85
 
 
86
    def __eq__(self, other):
 
87
        if type(other) not in (tuple, list, type(self)):
 
88
            return False
 
89
        if type(other) is type(self) and self.branch is not other.branch:
 
90
            return False
 
91
        return tuple(self) == tuple(other)
 
92
 
 
93
    def __repr__(self):
 
94
        return '<bzrlib.revisionspec.RevisionInfo object %s, %s for %r>' % (
 
95
            self.revno, self.rev_id, self.branch)
 
96
 
 
97
    @staticmethod
 
98
    def from_revision_id(branch, revision_id, revs):
 
99
        """Construct a RevisionInfo given just the id.
 
100
 
 
101
        Use this if you don't know or care what the revno is.
 
102
        """
 
103
        try:
 
104
            revno = revs.index(revision_id) + 1
 
105
        except ValueError:
 
106
            revno = None
 
107
        return RevisionInfo(branch, revno, revision_id)
 
108
 
 
109
 
 
110
# classes in this list should have a "prefix" attribute, against which
 
111
# string specs are matched
 
112
SPEC_TYPES = []
 
113
_revno_regex = None
 
114
 
 
115
 
 
116
class RevisionSpec(object):
 
117
    """A parsed revision specification."""
 
118
 
 
119
    help_txt = """A parsed revision specification.
 
120
 
 
121
    A revision specification can be an integer, in which case it is
 
122
    assumed to be a revno (though this will translate negative values
 
123
    into positive ones); or it can be a string, in which case it is
 
124
    parsed for something like 'date:' or 'revid:' etc.
 
125
 
 
126
    Revision specs are an UI element, and they have been moved out
 
127
    of the branch class to leave "back-end" classes unaware of such
 
128
    details.  Code that gets a revno or rev_id from other code should
 
129
    not be using revision specs - revnos and revision ids are the
 
130
    accepted ways to refer to revisions internally.
 
131
 
 
132
    (Equivalent to the old Branch method get_revision_info())
 
133
    """
 
134
 
 
135
    prefix = None
 
136
 
 
137
    def __new__(cls, spec, _internal=False):
 
138
        if _internal:
 
139
            return object.__new__(cls, spec, _internal=_internal)
 
140
 
 
141
        symbol_versioning.warn('Creating a RevisionSpec directly has'
 
142
                               ' been deprecated in version 0.11. Use'
 
143
                               ' RevisionSpec.from_string()'
 
144
                               ' instead.',
 
145
                               DeprecationWarning, stacklevel=2)
 
146
        return RevisionSpec.from_string(spec)
 
147
 
 
148
    @staticmethod
 
149
    def from_string(spec):
 
150
        """Parse a revision spec string into a RevisionSpec object.
 
151
 
 
152
        :param spec: A string specified by the user
 
153
        :return: A RevisionSpec object that understands how to parse the
 
154
            supplied notation.
 
155
        """
 
156
        if not isinstance(spec, (type(None), basestring)):
 
157
            raise TypeError('error')
 
158
 
 
159
        if spec is None:
 
160
            return RevisionSpec(None, _internal=True)
 
161
 
 
162
        assert isinstance(spec, basestring), \
 
163
            "You should only supply strings not %s" % (type(spec),)
 
164
 
 
165
        for spectype in SPEC_TYPES:
 
166
            if spec.startswith(spectype.prefix):
 
167
                trace.mutter('Returning RevisionSpec %s for %s',
 
168
                             spectype.__name__, spec)
 
169
                return spectype(spec, _internal=True)
 
170
        else:
 
171
            # RevisionSpec_revno is special cased, because it is the only
 
172
            # one that directly handles plain integers
 
173
            # TODO: This should not be special cased rather it should be
 
174
            # a method invocation on spectype.canparse()
 
175
            global _revno_regex
 
176
            if _revno_regex is None:
 
177
                _revno_regex = re.compile(r'^(?:(\d+(\.\d+)*)|-\d+)(:.*)?$')
 
178
            if _revno_regex.match(spec) is not None:
 
179
                return RevisionSpec_revno(spec, _internal=True)
 
180
 
 
181
            raise errors.NoSuchRevisionSpec(spec)
 
182
 
 
183
    def __init__(self, spec, _internal=False):
 
184
        """Create a RevisionSpec referring to the Null revision.
 
185
 
 
186
        :param spec: The original spec supplied by the user
 
187
        :param _internal: Used to ensure that RevisionSpec is not being
 
188
            called directly. Only from RevisionSpec.from_string()
 
189
        """
 
190
        if not _internal:
 
191
            # XXX: Update this after 0.10 is released
 
192
            symbol_versioning.warn('Creating a RevisionSpec directly has'
 
193
                                   ' been deprecated in version 0.11. Use'
 
194
                                   ' RevisionSpec.from_string()'
 
195
                                   ' instead.',
 
196
                                   DeprecationWarning, stacklevel=2)
 
197
        self.user_spec = spec
 
198
        if self.prefix and spec.startswith(self.prefix):
 
199
            spec = spec[len(self.prefix):]
 
200
        self.spec = spec
 
201
 
 
202
    def _match_on(self, branch, revs):
 
203
        trace.mutter('Returning RevisionSpec._match_on: None')
 
204
        return RevisionInfo(branch, 0, None)
 
205
 
 
206
    def _match_on_and_check(self, branch, revs):
 
207
        info = self._match_on(branch, revs)
 
208
        if info:
 
209
            return info
 
210
        elif info == (0, None):
 
211
            # special case - the empty tree
 
212
            return info
 
213
        elif self.prefix:
 
214
            raise errors.InvalidRevisionSpec(self.user_spec, branch)
 
215
        else:
 
216
            raise errors.InvalidRevisionSpec(self.spec, branch)
 
217
 
 
218
    def in_history(self, branch):
 
219
        if branch:
 
220
            revs = branch.revision_history()
 
221
        else:
 
222
            # this should never trigger.
 
223
            # TODO: make it a deprecated code path. RBC 20060928
 
224
            revs = None
 
225
        return self._match_on_and_check(branch, revs)
 
226
 
 
227
        # FIXME: in_history is somewhat broken,
 
228
        # it will return non-history revisions in many
 
229
        # circumstances. The expected facility is that
 
230
        # in_history only returns revision-history revs,
 
231
        # in_store returns any rev. RBC 20051010
 
232
    # aliases for now, when we fix the core logic, then they
 
233
    # will do what you expect.
 
234
    in_store = in_history
 
235
    in_branch = in_store
 
236
        
 
237
    def __repr__(self):
 
238
        # this is mostly for helping with testing
 
239
        return '<%s %s>' % (self.__class__.__name__,
 
240
                              self.user_spec)
 
241
    
 
242
    def needs_branch(self):
 
243
        """Whether this revision spec needs a branch.
 
244
 
 
245
        Set this to False the branch argument of _match_on is not used.
 
246
        """
 
247
        return True
 
248
 
 
249
    def get_branch(self):
 
250
        """When the revision specifier contains a branch location, return it.
 
251
        
 
252
        Otherwise, return None.
 
253
        """
 
254
        return None
 
255
 
 
256
 
 
257
# private API
 
258
 
 
259
class RevisionSpec_revno(RevisionSpec):
 
260
    """Selects a revision using a number."""
 
261
 
 
262
    help_txt = """Selects a revision using a number.
 
263
 
 
264
    Use an integer to specify a revision in the history of the branch.
 
265
    Optionally a branch can be specified. The 'revno:' prefix is optional.
 
266
    A negative number will count from the end of the branch (-1 is the
 
267
    last revision, -2 the previous one). If the negative number is larger
 
268
    than the branch's history, the first revision is returned.
 
269
    Examples::
 
270
 
 
271
      revno:1                   -> return the first revision
 
272
      revno:3:/path/to/branch   -> return the 3rd revision of
 
273
                                   the branch '/path/to/branch'
 
274
      revno:-1                  -> The last revision in a branch.
 
275
      -2:http://other/branch    -> The second to last revision in the
 
276
                                   remote branch.
 
277
      -1000000                  -> Most likely the first revision, unless
 
278
                                   your history is very long.
 
279
    """
 
280
    prefix = 'revno:'
 
281
 
 
282
    def _match_on(self, branch, revs):
 
283
        """Lookup a revision by revision number"""
 
284
        loc = self.spec.find(':')
 
285
        if loc == -1:
 
286
            revno_spec = self.spec
 
287
            branch_spec = None
 
288
        else:
 
289
            revno_spec = self.spec[:loc]
 
290
            branch_spec = self.spec[loc+1:]
 
291
 
 
292
        if revno_spec == '':
 
293
            if not branch_spec:
 
294
                raise errors.InvalidRevisionSpec(self.user_spec,
 
295
                        branch, 'cannot have an empty revno and no branch')
 
296
            revno = None
 
297
        else:
 
298
            try:
 
299
                revno = int(revno_spec)
 
300
                dotted = False
 
301
            except ValueError:
 
302
                # dotted decimal. This arguably should not be here
 
303
                # but the from_string method is a little primitive 
 
304
                # right now - RBC 20060928
 
305
                try:
 
306
                    match_revno = tuple((int(number) for number in revno_spec.split('.')))
 
307
                except ValueError, e:
 
308
                    raise errors.InvalidRevisionSpec(self.user_spec, branch, e)
 
309
 
 
310
                dotted = True
 
311
 
 
312
        if branch_spec:
 
313
            # the user has override the branch to look in.
 
314
            # we need to refresh the revision_history map and
 
315
            # the branch object.
 
316
            from bzrlib.branch import Branch
 
317
            branch = Branch.open(branch_spec)
 
318
            # Need to use a new revision history
 
319
            # because we are using a specific branch
 
320
            revs = branch.revision_history()
 
321
 
 
322
        if dotted:
 
323
            branch.lock_read()
 
324
            try:
 
325
                revision_id_to_revno = branch.get_revision_id_to_revno_map()
 
326
                revisions = [revision_id for revision_id, revno
 
327
                             in revision_id_to_revno.iteritems()
 
328
                             if revno == match_revno]
 
329
            finally:
 
330
                branch.unlock()
 
331
            if len(revisions) != 1:
 
332
                return RevisionInfo(branch, None, None)
 
333
            else:
 
334
                # there is no traditional 'revno' for dotted-decimal revnos.
 
335
                # so for  API compatability we return None.
 
336
                return RevisionInfo(branch, None, revisions[0])
 
337
        else:
 
338
            if revno < 0:
 
339
                # if get_rev_id supported negative revnos, there would not be a
 
340
                # need for this special case.
 
341
                if (-revno) >= len(revs):
 
342
                    revno = 1
 
343
                else:
 
344
                    revno = len(revs) + revno + 1
 
345
            try:
 
346
                revision_id = branch.get_rev_id(revno, revs)
 
347
            except errors.NoSuchRevision:
 
348
                raise errors.InvalidRevisionSpec(self.user_spec, branch)
 
349
        return RevisionInfo(branch, revno, revision_id)
 
350
        
 
351
    def needs_branch(self):
 
352
        return self.spec.find(':') == -1
 
353
 
 
354
    def get_branch(self):
 
355
        if self.spec.find(':') == -1:
 
356
            return None
 
357
        else:
 
358
            return self.spec[self.spec.find(':')+1:]
 
359
 
 
360
# Old compatibility 
 
361
RevisionSpec_int = RevisionSpec_revno
 
362
 
 
363
SPEC_TYPES.append(RevisionSpec_revno)
 
364
 
 
365
 
 
366
class RevisionSpec_revid(RevisionSpec):
 
367
    """Selects a revision using the revision id."""
 
368
 
 
369
    help_txt = """Selects a revision using the revision id.
 
370
 
 
371
    Supply a specific revision id, that can be used to specify any
 
372
    revision id in the ancestry of the branch. 
 
373
    Including merges, and pending merges.
 
374
    Examples::
 
375
 
 
376
      revid:aaaa@bbbb-123456789 -> Select revision 'aaaa@bbbb-123456789'
 
377
    """    
 
378
    prefix = 'revid:'
 
379
 
 
380
    def _match_on(self, branch, revs):
 
381
        # self.spec comes straight from parsing the command line arguments,
 
382
        # so we expect it to be a Unicode string. Switch it to the internal
 
383
        # representation.
 
384
        revision_id = osutils.safe_revision_id(self.spec, warn=False)
 
385
        return RevisionInfo.from_revision_id(branch, revision_id, revs)
 
386
 
 
387
SPEC_TYPES.append(RevisionSpec_revid)
 
388
 
 
389
 
 
390
class RevisionSpec_last(RevisionSpec):
 
391
    """Selects the nth revision from the end."""
 
392
 
 
393
    help_txt = """Selects the nth revision from the end.
 
394
 
 
395
    Supply a positive number to get the nth revision from the end.
 
396
    This is the same as supplying negative numbers to the 'revno:' spec.
 
397
    Examples::
 
398
 
 
399
      last:1        -> return the last revision
 
400
      last:3        -> return the revision 2 before the end.
 
401
    """    
 
402
 
 
403
    prefix = 'last:'
 
404
 
 
405
    def _match_on(self, branch, revs):
 
406
        if self.spec == '':
 
407
            if not revs:
 
408
                raise errors.NoCommits(branch)
 
409
            return RevisionInfo(branch, len(revs), revs[-1])
 
410
 
 
411
        try:
 
412
            offset = int(self.spec)
 
413
        except ValueError, e:
 
414
            raise errors.InvalidRevisionSpec(self.user_spec, branch, e)
 
415
 
 
416
        if offset <= 0:
 
417
            raise errors.InvalidRevisionSpec(self.user_spec, branch,
 
418
                                             'you must supply a positive value')
 
419
        revno = len(revs) - offset + 1
 
420
        try:
 
421
            revision_id = branch.get_rev_id(revno, revs)
 
422
        except errors.NoSuchRevision:
 
423
            raise errors.InvalidRevisionSpec(self.user_spec, branch)
 
424
        return RevisionInfo(branch, revno, revision_id)
 
425
 
 
426
SPEC_TYPES.append(RevisionSpec_last)
 
427
 
 
428
 
 
429
class RevisionSpec_before(RevisionSpec):
 
430
    """Selects the parent of the revision specified."""
 
431
 
 
432
    help_txt = """Selects the parent of the revision specified.
 
433
 
 
434
    Supply any revision spec to return the parent of that revision.
 
435
    It is an error to request the parent of the null revision (before:0).
 
436
    This is mostly useful when inspecting revisions that are not in the
 
437
    revision history of a branch.
 
438
 
 
439
    Examples::
 
440
 
 
441
      before:1913    -> Return the parent of revno 1913 (revno 1912)
 
442
      before:revid:aaaa@bbbb-1234567890  -> return the parent of revision
 
443
                                            aaaa@bbbb-1234567890
 
444
      bzr diff -r before:revid:aaaa..revid:aaaa
 
445
            -> Find the changes between revision 'aaaa' and its parent.
 
446
               (what changes did 'aaaa' introduce)
 
447
    """
 
448
 
 
449
    prefix = 'before:'
 
450
    
 
451
    def _match_on(self, branch, revs):
 
452
        r = RevisionSpec.from_string(self.spec)._match_on(branch, revs)
 
453
        if r.revno == 0:
 
454
            raise errors.InvalidRevisionSpec(self.user_spec, branch,
 
455
                                         'cannot go before the null: revision')
 
456
        if r.revno is None:
 
457
            # We need to use the repository history here
 
458
            rev = branch.repository.get_revision(r.rev_id)
 
459
            if not rev.parent_ids:
 
460
                revno = 0
 
461
                revision_id = revision.NULL_REVISION
 
462
            else:
 
463
                revision_id = rev.parent_ids[0]
 
464
                try:
 
465
                    revno = revs.index(revision_id) + 1
 
466
                except ValueError:
 
467
                    revno = None
 
468
        else:
 
469
            revno = r.revno - 1
 
470
            try:
 
471
                revision_id = branch.get_rev_id(revno, revs)
 
472
            except errors.NoSuchRevision:
 
473
                raise errors.InvalidRevisionSpec(self.user_spec,
 
474
                                                 branch)
 
475
        return RevisionInfo(branch, revno, revision_id)
 
476
 
 
477
SPEC_TYPES.append(RevisionSpec_before)
 
478
 
 
479
 
 
480
class RevisionSpec_tag(RevisionSpec):
 
481
    """Select a revision identified by tag name"""
 
482
 
 
483
    help_txt = """Selects a revision identified by a tag name.
 
484
 
 
485
    Tags are stored in the branch and created by the 'tag' command.
 
486
    """
 
487
 
 
488
    prefix = 'tag:'
 
489
 
 
490
    def _match_on(self, branch, revs):
 
491
        # Can raise tags not supported, NoSuchTag, etc
 
492
        return RevisionInfo.from_revision_id(branch,
 
493
            branch.tags.lookup_tag(self.spec),
 
494
            revs)
 
495
 
 
496
SPEC_TYPES.append(RevisionSpec_tag)
 
497
 
 
498
 
 
499
class _RevListToTimestamps(object):
 
500
    """This takes a list of revisions, and allows you to bisect by date"""
 
501
 
 
502
    __slots__ = ['revs', 'branch']
 
503
 
 
504
    def __init__(self, revs, branch):
 
505
        self.revs = revs
 
506
        self.branch = branch
 
507
 
 
508
    def __getitem__(self, index):
 
509
        """Get the date of the index'd item"""
 
510
        r = self.branch.repository.get_revision(self.revs[index])
 
511
        # TODO: Handle timezone.
 
512
        return datetime.datetime.fromtimestamp(r.timestamp)
 
513
 
 
514
    def __len__(self):
 
515
        return len(self.revs)
 
516
 
 
517
 
 
518
class RevisionSpec_date(RevisionSpec):
 
519
    """Selects a revision on the basis of a datestamp."""
 
520
 
 
521
    help_txt = """Selects a revision on the basis of a datestamp.
 
522
 
 
523
    Supply a datestamp to select the first revision that matches the date.
 
524
    Date can be 'yesterday', 'today', 'tomorrow' or a YYYY-MM-DD string.
 
525
    Matches the first entry after a given date (either at midnight or
 
526
    at a specified time).
 
527
 
 
528
    One way to display all the changes since yesterday would be::
 
529
 
 
530
        bzr log -r date:yesterday..-1
 
531
 
 
532
    Examples::
 
533
 
 
534
      date:yesterday            -> select the first revision since yesterday
 
535
      date:2006-08-14,17:10:14  -> select the first revision after
 
536
                                   August 14th, 2006 at 5:10pm.
 
537
    """    
 
538
    prefix = 'date:'
 
539
    _date_re = re.compile(
 
540
            r'(?P<date>(?P<year>\d\d\d\d)-(?P<month>\d\d)-(?P<day>\d\d))?'
 
541
            r'(,|T)?\s*'
 
542
            r'(?P<time>(?P<hour>\d\d):(?P<minute>\d\d)(:(?P<second>\d\d))?)?'
 
543
        )
 
544
 
 
545
    def _match_on(self, branch, revs):
 
546
        """Spec for date revisions:
 
547
          date:value
 
548
          value can be 'yesterday', 'today', 'tomorrow' or a YYYY-MM-DD string.
 
549
          matches the first entry after a given date (either at midnight or
 
550
          at a specified time).
 
551
        """
 
552
        #  XXX: This doesn't actually work
 
553
        #  So the proper way of saying 'give me all entries for today' is:
 
554
        #      -r date:yesterday..date:today
 
555
        today = datetime.datetime.fromordinal(datetime.date.today().toordinal())
 
556
        if self.spec.lower() == 'yesterday':
 
557
            dt = today - datetime.timedelta(days=1)
 
558
        elif self.spec.lower() == 'today':
 
559
            dt = today
 
560
        elif self.spec.lower() == 'tomorrow':
 
561
            dt = today + datetime.timedelta(days=1)
 
562
        else:
 
563
            m = self._date_re.match(self.spec)
 
564
            if not m or (not m.group('date') and not m.group('time')):
 
565
                raise errors.InvalidRevisionSpec(self.user_spec,
 
566
                                                 branch, 'invalid date')
 
567
 
 
568
            try:
 
569
                if m.group('date'):
 
570
                    year = int(m.group('year'))
 
571
                    month = int(m.group('month'))
 
572
                    day = int(m.group('day'))
 
573
                else:
 
574
                    year = today.year
 
575
                    month = today.month
 
576
                    day = today.day
 
577
 
 
578
                if m.group('time'):
 
579
                    hour = int(m.group('hour'))
 
580
                    minute = int(m.group('minute'))
 
581
                    if m.group('second'):
 
582
                        second = int(m.group('second'))
 
583
                    else:
 
584
                        second = 0
 
585
                else:
 
586
                    hour, minute, second = 0,0,0
 
587
            except ValueError:
 
588
                raise errors.InvalidRevisionSpec(self.user_spec,
 
589
                                                 branch, 'invalid date')
 
590
 
 
591
            dt = datetime.datetime(year=year, month=month, day=day,
 
592
                    hour=hour, minute=minute, second=second)
 
593
        branch.lock_read()
 
594
        try:
 
595
            rev = bisect.bisect(_RevListToTimestamps(revs, branch), dt)
 
596
        finally:
 
597
            branch.unlock()
 
598
        if rev == len(revs):
 
599
            return RevisionInfo(branch, None)
 
600
        else:
 
601
            return RevisionInfo(branch, rev + 1)
 
602
 
 
603
SPEC_TYPES.append(RevisionSpec_date)
 
604
 
 
605
 
 
606
class RevisionSpec_ancestor(RevisionSpec):
 
607
    """Selects a common ancestor with a second branch."""
 
608
 
 
609
    help_txt = """Selects a common ancestor with a second branch.
 
610
 
 
611
    Supply the path to a branch to select the common ancestor.
 
612
 
 
613
    The common ancestor is the last revision that existed in both
 
614
    branches. Usually this is the branch point, but it could also be
 
615
    a revision that was merged.
 
616
 
 
617
    This is frequently used with 'diff' to return all of the changes
 
618
    that your branch introduces, while excluding the changes that you
 
619
    have not merged from the remote branch.
 
620
 
 
621
    Examples::
 
622
 
 
623
      ancestor:/path/to/branch
 
624
      $ bzr diff -r ancestor:../../mainline/branch
 
625
    """
 
626
    prefix = 'ancestor:'
 
627
 
 
628
    def _match_on(self, branch, revs):
 
629
        trace.mutter('matching ancestor: on: %s, %s', self.spec, branch)
 
630
        return self._find_revision_info(branch, self.spec)
 
631
 
 
632
    @staticmethod
 
633
    def _find_revision_info(branch, other_location):
 
634
        from bzrlib.branch import Branch
 
635
 
 
636
        other_branch = Branch.open(other_location)
 
637
        revision_a = branch.last_revision()
 
638
        revision_b = other_branch.last_revision()
 
639
        for r, b in ((revision_a, branch), (revision_b, other_branch)):
 
640
            if r in (None, revision.NULL_REVISION):
 
641
                raise errors.NoCommits(b)
 
642
        branch.lock_read()
 
643
        other_branch.lock_read()
 
644
        try:
 
645
            revision_source = revision.MultipleRevisionSources(
 
646
                    branch.repository, other_branch.repository)
 
647
            graph = branch.repository.get_graph(other_branch.repository)
 
648
            revision_a = revision.ensure_null(revision_a)
 
649
            revision_b = revision.ensure_null(revision_b)
 
650
            if revision.NULL_REVISION in (revision_a, revision_b):
 
651
                rev_id = revision.NULL_REVISION
 
652
            else:
 
653
                rev_id = graph.find_unique_lca(revision_a, revision_b)
 
654
                if rev_id == revision.NULL_REVISION:
 
655
                    raise errors.NoCommonAncestor(revision_a, revision_b)
 
656
            try:
 
657
                revno = branch.revision_id_to_revno(rev_id)
 
658
            except errors.NoSuchRevision:
 
659
                revno = None
 
660
            return RevisionInfo(branch, revno, rev_id)
 
661
        finally:
 
662
            branch.unlock()
 
663
            other_branch.unlock()
 
664
 
 
665
 
 
666
SPEC_TYPES.append(RevisionSpec_ancestor)
 
667
 
 
668
 
 
669
class RevisionSpec_branch(RevisionSpec):
 
670
    """Selects the last revision of a specified branch."""
 
671
 
 
672
    help_txt = """Selects the last revision of a specified branch.
 
673
 
 
674
    Supply the path to a branch to select its last revision.
 
675
 
 
676
    Examples::
 
677
 
 
678
      branch:/path/to/branch
 
679
    """
 
680
    prefix = 'branch:'
 
681
 
 
682
    def _match_on(self, branch, revs):
 
683
        from bzrlib.branch import Branch
 
684
        other_branch = Branch.open(self.spec)
 
685
        revision_b = other_branch.last_revision()
 
686
        if revision_b in (None, revision.NULL_REVISION):
 
687
            raise errors.NoCommits(other_branch)
 
688
        # pull in the remote revisions so we can diff
 
689
        branch.fetch(other_branch, revision_b)
 
690
        try:
 
691
            revno = branch.revision_id_to_revno(revision_b)
 
692
        except errors.NoSuchRevision:
 
693
            revno = None
 
694
        return RevisionInfo(branch, revno, revision_b)
 
695
        
 
696
SPEC_TYPES.append(RevisionSpec_branch)
 
697
 
 
698
 
 
699
class RevisionSpec_submit(RevisionSpec_ancestor):
 
700
    """Selects a common ancestor with a submit branch."""
 
701
 
 
702
    help_txt = """Selects a common ancestor with the submit branch.
 
703
 
 
704
    Diffing against this shows all the changes that were made in this branch,
 
705
    and is a good predictor of what merge will do.  The submit branch is
 
706
    used by the bundle and merge directive comands.  If no submit branch
 
707
    is specified, the parent branch is used instead.
 
708
 
 
709
    The common ancestor is the last revision that existed in both
 
710
    branches. Usually this is the branch point, but it could also be
 
711
    a revision that was merged.
 
712
 
 
713
    Examples::
 
714
 
 
715
      $ bzr diff -r submit:
 
716
    """
 
717
 
 
718
    prefix = 'submit:'
 
719
 
 
720
    def _match_on(self, branch, revs):
 
721
        trace.mutter('matching ancestor: on: %s, %s', self.spec, branch)
 
722
        submit_location = branch.get_submit_branch()
 
723
        location_type = 'submit branch'
 
724
        if submit_location is None:
 
725
            submit_location = branch.get_parent()
 
726
            location_type = 'parent branch'
 
727
        if submit_location is None:
 
728
            raise errors.NoSubmitBranch(branch)
 
729
        trace.note('Using %s %s', location_type, submit_location)
 
730
        return self._find_revision_info(branch, submit_location)
 
731
 
 
732
 
 
733
SPEC_TYPES.append(RevisionSpec_submit)