~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: 2008-03-16 16:58:03 UTC
  • mfrom: (3224.3.1 news-typo)
  • Revision ID: pqm@pqm.ubuntu.com-20080316165803-tisoc9mpob9z544o
(Matt Nordhoff) Trivial NEWS typo fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
 
 
17
 
 
18
 
from bzrlib.lazy_import import lazy_import
19
 
lazy_import(globals(), """
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
 
20
18
import bisect
21
19
import datetime
 
20
import re
22
21
 
23
22
from bzrlib import (
24
 
    branch as _mod_branch,
 
23
    errors,
25
24
    osutils,
26
25
    revision,
27
26
    symbol_versioning,
28
 
    workingtree,
29
 
    )
30
 
from bzrlib.i18n import gettext
31
 
""")
32
 
 
33
 
from bzrlib import (
34
 
    errors,
35
 
    lazy_regex,
36
 
    registry,
37
27
    trace,
 
28
    tsort,
38
29
    )
39
30
 
40
31
 
109
100
 
110
101
        Use this if you don't know or care what the revno is.
111
102
        """
112
 
        if revision_id == revision.NULL_REVISION:
113
 
            return RevisionInfo(branch, 0, revision_id)
114
103
        try:
115
104
            revno = revs.index(revision_id) + 1
116
105
        except ValueError:
118
107
        return RevisionInfo(branch, revno, revision_id)
119
108
 
120
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
 
121
116
class RevisionSpec(object):
122
117
    """A parsed revision specification."""
123
118
 
124
119
    help_txt = """A parsed revision specification.
125
120
 
126
 
    A revision specification is a string, which may be unambiguous about
127
 
    what it represents by giving a prefix like 'date:' or 'revid:' etc,
128
 
    or it may have no prefix, in which case it's tried against several
129
 
    specifier types in sequence to determine what the user meant.
 
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.
130
125
 
131
126
    Revision specs are an UI element, and they have been moved out
132
127
    of the branch class to leave "back-end" classes unaware of such
138
133
    """
139
134
 
140
135
    prefix = None
141
 
    wants_revision_history = True
142
 
    dwim_catchable_exceptions = (errors.InvalidRevisionSpec,)
143
 
    """Exceptions that RevisionSpec_dwim._match_on will catch.
144
 
 
145
 
    If the revspec is part of ``dwim_revspecs``, it may be tried with an
146
 
    invalid revspec and raises some exception. The exceptions mentioned here
147
 
    will not be reported to the user but simply ignored without stopping the
148
 
    dwim processing.
149
 
    """
 
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)
150
147
 
151
148
    @staticmethod
152
149
    def from_string(spec):
161
158
 
162
159
        if spec is None:
163
160
            return RevisionSpec(None, _internal=True)
164
 
        match = revspec_registry.get_prefix(spec)
165
 
        if match is not None:
166
 
            spectype, specsuffix = match
167
 
            trace.mutter('Returning RevisionSpec %s for %s',
168
 
                         spectype.__name__, spec)
169
 
            return spectype(spec, _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
170
        else:
171
 
            # Otherwise treat it as a DWIM, build the RevisionSpec object and
172
 
            # wait for _match_on to be called.
173
 
            return RevisionSpec_dwim(spec, _internal=True)
 
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)
174
182
 
175
183
    def __init__(self, spec, _internal=False):
176
184
        """Create a RevisionSpec referring to the Null revision.
180
188
            called directly. Only from RevisionSpec.from_string()
181
189
        """
182
190
        if not _internal:
 
191
            # XXX: Update this after 0.10 is released
183
192
            symbol_versioning.warn('Creating a RevisionSpec directly has'
184
193
                                   ' been deprecated in version 0.11. Use'
185
194
                                   ' RevisionSpec.from_string()'
192
201
 
193
202
    def _match_on(self, branch, revs):
194
203
        trace.mutter('Returning RevisionSpec._match_on: None')
195
 
        return RevisionInfo(branch, None, None)
 
204
        return RevisionInfo(branch, 0, None)
196
205
 
197
206
    def _match_on_and_check(self, branch, revs):
198
207
        info = self._match_on(branch, revs)
199
208
        if info:
200
209
            return info
201
 
        elif info == (None, None):
202
 
            # special case - nothing supplied
 
210
        elif info == (0, None):
 
211
            # special case - the empty tree
203
212
            return info
204
213
        elif self.prefix:
205
214
            raise errors.InvalidRevisionSpec(self.user_spec, branch)
208
217
 
209
218
    def in_history(self, branch):
210
219
        if branch:
211
 
            if self.wants_revision_history:
212
 
                # TODO: avoid looking at all of history
213
 
                branch.lock_read()
214
 
                try:
215
 
                    graph = branch.repository.get_graph()
216
 
                    revs = list(graph.iter_lefthand_ancestry(
217
 
                        branch.last_revision(), [revision.NULL_REVISION]))
218
 
                finally:
219
 
                    branch.unlock()
220
 
                revs.reverse()
221
 
            else:
222
 
                revs = None
 
220
            revs = branch.revision_history()
223
221
        else:
224
222
            # this should never trigger.
225
223
            # TODO: make it a deprecated code path. RBC 20060928
235
233
    # will do what you expect.
236
234
    in_store = in_history
237
235
    in_branch = in_store
238
 
 
239
 
    def as_revision_id(self, context_branch):
240
 
        """Return just the revision_id for this revisions spec.
241
 
 
242
 
        Some revision specs require a context_branch to be able to determine
243
 
        their value. Not all specs will make use of it.
244
 
        """
245
 
        return self._as_revision_id(context_branch)
246
 
 
247
 
    def _as_revision_id(self, context_branch):
248
 
        """Implementation of as_revision_id()
249
 
 
250
 
        Classes should override this function to provide appropriate
251
 
        functionality. The default is to just call '.in_history().rev_id'
252
 
        """
253
 
        return self.in_history(context_branch).rev_id
254
 
 
255
 
    def as_tree(self, context_branch):
256
 
        """Return the tree object for this revisions spec.
257
 
 
258
 
        Some revision specs require a context_branch to be able to determine
259
 
        the revision id and access the repository. Not all specs will make
260
 
        use of it.
261
 
        """
262
 
        return self._as_tree(context_branch)
263
 
 
264
 
    def _as_tree(self, context_branch):
265
 
        """Implementation of as_tree().
266
 
 
267
 
        Classes should override this function to provide appropriate
268
 
        functionality. The default is to just call '.as_revision_id()'
269
 
        and get the revision tree from context_branch's repository.
270
 
        """
271
 
        revision_id = self.as_revision_id(context_branch)
272
 
        return context_branch.repository.revision_tree(revision_id)
273
 
 
 
236
        
274
237
    def __repr__(self):
275
238
        # this is mostly for helping with testing
276
239
        return '<%s %s>' % (self.__class__.__name__,
277
240
                              self.user_spec)
278
 
 
 
241
    
279
242
    def needs_branch(self):
280
243
        """Whether this revision spec needs a branch.
281
244
 
285
248
 
286
249
    def get_branch(self):
287
250
        """When the revision specifier contains a branch location, return it.
288
 
 
 
251
        
289
252
        Otherwise, return None.
290
253
        """
291
254
        return None
293
256
 
294
257
# private API
295
258
 
296
 
class RevisionSpec_dwim(RevisionSpec):
297
 
    """Provides a DWIMish revision specifier lookup.
298
 
 
299
 
    Note that this does not go in the revspec_registry because by definition
300
 
    there is no prefix to identify it.  It's solely called from
301
 
    RevisionSpec.from_string() because the DWIMification happen when _match_on
302
 
    is called so the string describing the revision is kept here until needed.
303
 
    """
304
 
 
305
 
    help_txt = None
306
 
    # We don't need to build the revision history ourself, that's delegated to
307
 
    # each revspec we try.
308
 
    wants_revision_history = False
309
 
 
310
 
    _revno_regex = lazy_regex.lazy_compile(r'^(?:(\d+(\.\d+)*)|-\d+)(:.*)?$')
311
 
 
312
 
    # The revspecs to try
313
 
    _possible_revspecs = []
314
 
 
315
 
    def _try_spectype(self, rstype, branch):
316
 
        rs = rstype(self.spec, _internal=True)
317
 
        # Hit in_history to find out if it exists, or we need to try the
318
 
        # next type.
319
 
        return rs.in_history(branch)
320
 
 
321
 
    def _match_on(self, branch, revs):
322
 
        """Run the lookup and see what we can get."""
323
 
 
324
 
        # First, see if it's a revno
325
 
        if self._revno_regex.match(self.spec) is not None:
326
 
            try:
327
 
                return self._try_spectype(RevisionSpec_revno, branch)
328
 
            except RevisionSpec_revno.dwim_catchable_exceptions:
329
 
                pass
330
 
 
331
 
        # Next see what has been registered
332
 
        for objgetter in self._possible_revspecs:
333
 
            rs_class = objgetter.get_obj()
334
 
            try:
335
 
                return self._try_spectype(rs_class, branch)
336
 
            except rs_class.dwim_catchable_exceptions:
337
 
                pass
338
 
 
339
 
        # Try the old (deprecated) dwim list:
340
 
        for rs_class in dwim_revspecs:
341
 
            try:
342
 
                return self._try_spectype(rs_class, branch)
343
 
            except rs_class.dwim_catchable_exceptions:
344
 
                pass
345
 
 
346
 
        # Well, I dunno what it is. Note that we don't try to keep track of the
347
 
        # first of last exception raised during the DWIM tries as none seems
348
 
        # really relevant.
349
 
        raise errors.InvalidRevisionSpec(self.spec, branch)
350
 
 
351
 
    @classmethod
352
 
    def append_possible_revspec(cls, revspec):
353
 
        """Append a possible DWIM revspec.
354
 
 
355
 
        :param revspec: Revision spec to try.
356
 
        """
357
 
        cls._possible_revspecs.append(registry._ObjectGetter(revspec))
358
 
 
359
 
    @classmethod
360
 
    def append_possible_lazy_revspec(cls, module_name, member_name):
361
 
        """Append a possible lazily loaded DWIM revspec.
362
 
 
363
 
        :param module_name: Name of the module with the revspec
364
 
        :param member_name: Name of the revspec within the module
365
 
        """
366
 
        cls._possible_revspecs.append(
367
 
            registry._LazyObjectGetter(module_name, member_name))
368
 
 
369
 
 
370
259
class RevisionSpec_revno(RevisionSpec):
371
260
    """Selects a revision using a number."""
372
261
 
373
262
    help_txt = """Selects a revision using a number.
374
263
 
375
264
    Use an integer to specify a revision in the history of the branch.
376
 
    Optionally a branch can be specified.  A negative number will count
377
 
    from the end of the branch (-1 is the last revision, -2 the previous
378
 
    one). If the negative number is larger than the branch's history, the
379
 
    first revision is returned.
 
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.
380
269
    Examples::
381
270
 
382
 
      revno:1                   -> return the first revision of this branch
 
271
      revno:1                   -> return the first revision
383
272
      revno:3:/path/to/branch   -> return the 3rd revision of
384
273
                                   the branch '/path/to/branch'
385
274
      revno:-1                  -> The last revision in a branch.
389
278
                                   your history is very long.
390
279
    """
391
280
    prefix = 'revno:'
392
 
    wants_revision_history = False
393
281
 
394
282
    def _match_on(self, branch, revs):
395
283
        """Lookup a revision by revision number"""
396
 
        branch, revno, revision_id = self._lookup(branch, revs)
397
 
        return RevisionInfo(branch, revno, revision_id)
398
 
 
399
 
    def _lookup(self, branch, revs_or_none):
400
284
        loc = self.spec.find(':')
401
285
        if loc == -1:
402
286
            revno_spec = self.spec
416
300
                dotted = False
417
301
            except ValueError:
418
302
                # dotted decimal. This arguably should not be here
419
 
                # but the from_string method is a little primitive
 
303
                # but the from_string method is a little primitive 
420
304
                # right now - RBC 20060928
421
305
                try:
422
306
                    match_revno = tuple((int(number) for number in revno_spec.split('.')))
431
315
            # the branch object.
432
316
            from bzrlib.branch import Branch
433
317
            branch = Branch.open(branch_spec)
434
 
            revs_or_none = None
 
318
            # Need to use a new revision history
 
319
            # because we are using a specific branch
 
320
            revs = branch.revision_history()
435
321
 
436
322
        if dotted:
 
323
            branch.lock_read()
437
324
            try:
438
 
                revision_id = branch.dotted_revno_to_revision_id(match_revno,
439
 
                    _cache_reverse=True)
440
 
            except errors.NoSuchRevision:
441
 
                raise errors.InvalidRevisionSpec(self.user_spec, branch)
 
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)
442
333
            else:
443
334
                # there is no traditional 'revno' for dotted-decimal revnos.
444
335
                # so for  API compatability we return None.
445
 
                return branch, None, revision_id
 
336
                return RevisionInfo(branch, None, revisions[0])
446
337
        else:
447
 
            last_revno, last_revision_id = branch.last_revision_info()
448
338
            if revno < 0:
449
339
                # if get_rev_id supported negative revnos, there would not be a
450
340
                # need for this special case.
451
 
                if (-revno) >= last_revno:
 
341
                if (-revno) >= len(revs):
452
342
                    revno = 1
453
343
                else:
454
 
                    revno = last_revno + revno + 1
 
344
                    revno = len(revs) + revno + 1
455
345
            try:
456
 
                revision_id = branch.get_rev_id(revno, revs_or_none)
 
346
                revision_id = branch.get_rev_id(revno, revs)
457
347
            except errors.NoSuchRevision:
458
348
                raise errors.InvalidRevisionSpec(self.user_spec, branch)
459
 
        return branch, revno, revision_id
460
 
 
461
 
    def _as_revision_id(self, context_branch):
462
 
        # We would have the revno here, but we don't really care
463
 
        branch, revno, revision_id = self._lookup(context_branch, None)
464
 
        return revision_id
465
 
 
 
349
        return RevisionInfo(branch, revno, revision_id)
 
350
        
466
351
    def needs_branch(self):
467
352
        return self.spec.find(':') == -1
468
353
 
472
357
        else:
473
358
            return self.spec[self.spec.find(':')+1:]
474
359
 
475
 
# Old compatibility
 
360
# Old compatibility 
476
361
RevisionSpec_int = RevisionSpec_revno
477
362
 
478
 
 
479
 
 
480
 
class RevisionIDSpec(RevisionSpec):
481
 
 
482
 
    def _match_on(self, branch, revs):
483
 
        revision_id = self.as_revision_id(branch)
484
 
        return RevisionInfo.from_revision_id(branch, revision_id, revs)
485
 
 
486
 
 
487
 
class RevisionSpec_revid(RevisionIDSpec):
 
363
SPEC_TYPES.append(RevisionSpec_revno)
 
364
 
 
365
 
 
366
class RevisionSpec_revid(RevisionSpec):
488
367
    """Selects a revision using the revision id."""
489
368
 
490
369
    help_txt = """Selects a revision using the revision id.
491
370
 
492
371
    Supply a specific revision id, that can be used to specify any
493
 
    revision id in the ancestry of the branch.
 
372
    revision id in the ancestry of the branch. 
494
373
    Including merges, and pending merges.
495
374
    Examples::
496
375
 
497
376
      revid:aaaa@bbbb-123456789 -> Select revision 'aaaa@bbbb-123456789'
498
 
    """
499
 
 
 
377
    """    
500
378
    prefix = 'revid:'
501
379
 
502
 
    def _as_revision_id(self, context_branch):
 
380
    def _match_on(self, branch, revs):
503
381
        # self.spec comes straight from parsing the command line arguments,
504
382
        # so we expect it to be a Unicode string. Switch it to the internal
505
383
        # representation.
506
 
        return osutils.safe_revision_id(self.spec, warn=False)
 
384
        revision_id = osutils.safe_revision_id(self.spec, warn=False)
 
385
        return RevisionInfo.from_revision_id(branch, revision_id, revs)
507
386
 
 
387
SPEC_TYPES.append(RevisionSpec_revid)
508
388
 
509
389
 
510
390
class RevisionSpec_last(RevisionSpec):
518
398
 
519
399
      last:1        -> return the last revision
520
400
      last:3        -> return the revision 2 before the end.
521
 
    """
 
401
    """    
522
402
 
523
403
    prefix = 'last:'
524
404
 
525
405
    def _match_on(self, branch, revs):
526
 
        revno, revision_id = self._revno_and_revision_id(branch, revs)
527
 
        return RevisionInfo(branch, revno, revision_id)
528
 
 
529
 
    def _revno_and_revision_id(self, context_branch, revs_or_none):
530
 
        last_revno, last_revision_id = context_branch.last_revision_info()
531
 
 
532
406
        if self.spec == '':
533
 
            if not last_revno:
534
 
                raise errors.NoCommits(context_branch)
535
 
            return last_revno, last_revision_id
 
407
            if not revs:
 
408
                raise errors.NoCommits(branch)
 
409
            return RevisionInfo(branch, len(revs), revs[-1])
536
410
 
537
411
        try:
538
412
            offset = int(self.spec)
539
413
        except ValueError, e:
540
 
            raise errors.InvalidRevisionSpec(self.user_spec, context_branch, e)
 
414
            raise errors.InvalidRevisionSpec(self.user_spec, branch, e)
541
415
 
542
416
        if offset <= 0:
543
 
            raise errors.InvalidRevisionSpec(self.user_spec, context_branch,
 
417
            raise errors.InvalidRevisionSpec(self.user_spec, branch,
544
418
                                             'you must supply a positive value')
545
 
 
546
 
        revno = last_revno - offset + 1
 
419
        revno = len(revs) - offset + 1
547
420
        try:
548
 
            revision_id = context_branch.get_rev_id(revno, revs_or_none)
 
421
            revision_id = branch.get_rev_id(revno, revs)
549
422
        except errors.NoSuchRevision:
550
 
            raise errors.InvalidRevisionSpec(self.user_spec, context_branch)
551
 
        return revno, revision_id
552
 
 
553
 
    def _as_revision_id(self, context_branch):
554
 
        # We compute the revno as part of the process, but we don't really care
555
 
        # about it.
556
 
        revno, revision_id = self._revno_and_revision_id(context_branch, None)
557
 
        return revision_id
558
 
 
 
423
            raise errors.InvalidRevisionSpec(self.user_spec, branch)
 
424
        return RevisionInfo(branch, revno, revision_id)
 
425
 
 
426
SPEC_TYPES.append(RevisionSpec_last)
559
427
 
560
428
 
561
429
class RevisionSpec_before(RevisionSpec):
563
431
 
564
432
    help_txt = """Selects the parent of the revision specified.
565
433
 
566
 
    Supply any revision spec to return the parent of that revision.  This is
567
 
    mostly useful when inspecting revisions that are not in the revision history
568
 
    of a branch.
569
 
 
 
434
    Supply any revision spec to return the parent of that revision.
570
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.
571
438
 
572
439
    Examples::
573
440
 
574
441
      before:1913    -> Return the parent of revno 1913 (revno 1912)
575
442
      before:revid:aaaa@bbbb-1234567890  -> return the parent of revision
576
443
                                            aaaa@bbbb-1234567890
577
 
      bzr diff -r before:1913..1913
578
 
            -> Find the changes between revision 1913 and its parent (1912).
579
 
               (What changes did revision 1913 introduce).
580
 
               This is equivalent to:  bzr diff -c 1913
 
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)
581
447
    """
582
448
 
583
449
    prefix = 'before:'
584
 
 
 
450
    
585
451
    def _match_on(self, branch, revs):
586
452
        r = RevisionSpec.from_string(self.spec)._match_on(branch, revs)
587
453
        if r.revno == 0:
608
474
                                                 branch)
609
475
        return RevisionInfo(branch, revno, revision_id)
610
476
 
611
 
    def _as_revision_id(self, context_branch):
612
 
        base_revspec = RevisionSpec.from_string(self.spec)
613
 
        base_revision_id = base_revspec.as_revision_id(context_branch)
614
 
        if base_revision_id == revision.NULL_REVISION:
615
 
            raise errors.InvalidRevisionSpec(self.user_spec, context_branch,
616
 
                                         'cannot go before the null: revision')
617
 
        context_repo = context_branch.repository
618
 
        context_repo.lock_read()
619
 
        try:
620
 
            parent_map = context_repo.get_parent_map([base_revision_id])
621
 
        finally:
622
 
            context_repo.unlock()
623
 
        if base_revision_id not in parent_map:
624
 
            # Ghost, or unknown revision id
625
 
            raise errors.InvalidRevisionSpec(self.user_spec, context_branch,
626
 
                'cannot find the matching revision')
627
 
        parents = parent_map[base_revision_id]
628
 
        if len(parents) < 1:
629
 
            raise errors.InvalidRevisionSpec(self.user_spec, context_branch,
630
 
                'No parents for revision.')
631
 
        return parents[0]
632
 
 
 
477
SPEC_TYPES.append(RevisionSpec_before)
633
478
 
634
479
 
635
480
class RevisionSpec_tag(RevisionSpec):
641
486
    """
642
487
 
643
488
    prefix = 'tag:'
644
 
    dwim_catchable_exceptions = (errors.NoSuchTag, errors.TagsNotSupported)
645
489
 
646
490
    def _match_on(self, branch, revs):
647
491
        # Can raise tags not supported, NoSuchTag, etc
649
493
            branch.tags.lookup_tag(self.spec),
650
494
            revs)
651
495
 
652
 
    def _as_revision_id(self, context_branch):
653
 
        return context_branch.tags.lookup_tag(self.spec)
654
 
 
 
496
SPEC_TYPES.append(RevisionSpec_tag)
655
497
 
656
498
 
657
499
class _RevListToTimestamps(object):
685
527
 
686
528
    One way to display all the changes since yesterday would be::
687
529
 
688
 
        bzr log -r date:yesterday..
 
530
        bzr log -r date:yesterday..-1
689
531
 
690
532
    Examples::
691
533
 
692
534
      date:yesterday            -> select the first revision since yesterday
693
535
      date:2006-08-14,17:10:14  -> select the first revision after
694
536
                                   August 14th, 2006 at 5:10pm.
695
 
    """
 
537
    """    
696
538
    prefix = 'date:'
697
 
    _date_regex = lazy_regex.lazy_compile(
 
539
    _date_re = re.compile(
698
540
            r'(?P<date>(?P<year>\d\d\d\d)-(?P<month>\d\d)-(?P<day>\d\d))?'
699
541
            r'(,|T)?\s*'
700
542
            r'(?P<time>(?P<hour>\d\d):(?P<minute>\d\d)(:(?P<second>\d\d))?)?'
718
560
        elif self.spec.lower() == 'tomorrow':
719
561
            dt = today + datetime.timedelta(days=1)
720
562
        else:
721
 
            m = self._date_regex.match(self.spec)
 
563
            m = self._date_re.match(self.spec)
722
564
            if not m or (not m.group('date') and not m.group('time')):
723
565
                raise errors.InvalidRevisionSpec(self.user_spec,
724
566
                                                 branch, 'invalid date')
754
596
        finally:
755
597
            branch.unlock()
756
598
        if rev == len(revs):
757
 
            raise errors.InvalidRevisionSpec(self.user_spec, branch)
 
599
            return RevisionInfo(branch, None)
758
600
        else:
759
601
            return RevisionInfo(branch, rev + 1)
760
602
 
 
603
SPEC_TYPES.append(RevisionSpec_date)
761
604
 
762
605
 
763
606
class RevisionSpec_ancestor(RevisionSpec):
786
629
        trace.mutter('matching ancestor: on: %s, %s', self.spec, branch)
787
630
        return self._find_revision_info(branch, self.spec)
788
631
 
789
 
    def _as_revision_id(self, context_branch):
790
 
        return self._find_revision_id(context_branch, self.spec)
791
 
 
792
632
    @staticmethod
793
633
    def _find_revision_info(branch, other_location):
794
 
        revision_id = RevisionSpec_ancestor._find_revision_id(branch,
795
 
                                                              other_location)
796
 
        try:
797
 
            revno = branch.revision_id_to_revno(revision_id)
798
 
        except errors.NoSuchRevision:
799
 
            revno = None
800
 
        return RevisionInfo(branch, revno, revision_id)
801
 
 
802
 
    @staticmethod
803
 
    def _find_revision_id(branch, other_location):
804
634
        from bzrlib.branch import Branch
805
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)
806
642
        branch.lock_read()
 
643
        other_branch.lock_read()
807
644
        try:
808
 
            revision_a = revision.ensure_null(branch.last_revision())
809
 
            if revision_a == revision.NULL_REVISION:
810
 
                raise errors.NoCommits(branch)
811
 
            if other_location == '':
812
 
                other_location = branch.get_parent()
813
 
            other_branch = Branch.open(other_location)
814
 
            other_branch.lock_read()
815
 
            try:
816
 
                revision_b = revision.ensure_null(other_branch.last_revision())
817
 
                if revision_b == revision.NULL_REVISION:
818
 
                    raise errors.NoCommits(other_branch)
819
 
                graph = branch.repository.get_graph(other_branch.repository)
 
645
            graph = branch.repository.get_graph(other_branch.repository)
 
646
            revision_a = revision.ensure_null(revision_a)
 
647
            revision_b = revision.ensure_null(revision_b)
 
648
            if revision.NULL_REVISION in (revision_a, revision_b):
 
649
                rev_id = revision.NULL_REVISION
 
650
            else:
820
651
                rev_id = graph.find_unique_lca(revision_a, revision_b)
821
 
            finally:
822
 
                other_branch.unlock()
823
 
            if rev_id == revision.NULL_REVISION:
824
 
                raise errors.NoCommonAncestor(revision_a, revision_b)
825
 
            return rev_id
 
652
                if rev_id == revision.NULL_REVISION:
 
653
                    raise errors.NoCommonAncestor(revision_a, revision_b)
 
654
            try:
 
655
                revno = branch.revision_id_to_revno(rev_id)
 
656
            except errors.NoSuchRevision:
 
657
                revno = None
 
658
            return RevisionInfo(branch, revno, rev_id)
826
659
        finally:
827
660
            branch.unlock()
828
 
 
829
 
 
 
661
            other_branch.unlock()
 
662
 
 
663
 
 
664
SPEC_TYPES.append(RevisionSpec_ancestor)
830
665
 
831
666
 
832
667
class RevisionSpec_branch(RevisionSpec):
841
676
      branch:/path/to/branch
842
677
    """
843
678
    prefix = 'branch:'
844
 
    dwim_catchable_exceptions = (errors.NotBranchError,)
845
679
 
846
680
    def _match_on(self, branch, revs):
847
681
        from bzrlib.branch import Branch
849
683
        revision_b = other_branch.last_revision()
850
684
        if revision_b in (None, revision.NULL_REVISION):
851
685
            raise errors.NoCommits(other_branch)
852
 
        if branch is None:
853
 
            branch = other_branch
854
 
        else:
855
 
            try:
856
 
                # pull in the remote revisions so we can diff
857
 
                branch.fetch(other_branch, revision_b)
858
 
            except errors.ReadOnlyError:
859
 
                branch = other_branch
 
686
        # pull in the remote revisions so we can diff
 
687
        branch.fetch(other_branch, revision_b)
860
688
        try:
861
689
            revno = branch.revision_id_to_revno(revision_b)
862
690
        except errors.NoSuchRevision:
863
691
            revno = None
864
692
        return RevisionInfo(branch, revno, revision_b)
865
 
 
866
 
    def _as_revision_id(self, context_branch):
867
 
        from bzrlib.branch import Branch
868
 
        other_branch = Branch.open(self.spec)
869
 
        last_revision = other_branch.last_revision()
870
 
        last_revision = revision.ensure_null(last_revision)
871
 
        context_branch.fetch(other_branch, last_revision)
872
 
        if last_revision == revision.NULL_REVISION:
873
 
            raise errors.NoCommits(other_branch)
874
 
        return last_revision
875
 
 
876
 
    def _as_tree(self, context_branch):
877
 
        from bzrlib.branch import Branch
878
 
        other_branch = Branch.open(self.spec)
879
 
        last_revision = other_branch.last_revision()
880
 
        last_revision = revision.ensure_null(last_revision)
881
 
        if last_revision == revision.NULL_REVISION:
882
 
            raise errors.NoCommits(other_branch)
883
 
        return other_branch.repository.revision_tree(last_revision)
884
 
 
885
 
    def needs_branch(self):
886
 
        return False
887
 
 
888
 
    def get_branch(self):
889
 
        return self.spec
890
 
 
 
693
        
 
694
SPEC_TYPES.append(RevisionSpec_branch)
891
695
 
892
696
 
893
697
class RevisionSpec_submit(RevisionSpec_ancestor):
897
701
 
898
702
    Diffing against this shows all the changes that were made in this branch,
899
703
    and is a good predictor of what merge will do.  The submit branch is
900
 
    used by the bundle and merge directive commands.  If no submit branch
 
704
    used by the bundle and merge directive comands.  If no submit branch
901
705
    is specified, the parent branch is used instead.
902
706
 
903
707
    The common ancestor is the last revision that existed in both
911
715
 
912
716
    prefix = 'submit:'
913
717
 
914
 
    def _get_submit_location(self, branch):
 
718
    def _match_on(self, branch, revs):
 
719
        trace.mutter('matching ancestor: on: %s, %s', self.spec, branch)
915
720
        submit_location = branch.get_submit_branch()
916
721
        location_type = 'submit branch'
917
722
        if submit_location is None:
919
724
            location_type = 'parent branch'
920
725
        if submit_location is None:
921
726
            raise errors.NoSubmitBranch(branch)
922
 
        trace.note(gettext('Using {0} {1}').format(location_type,
923
 
                                                        submit_location))
924
 
        return submit_location
925
 
 
926
 
    def _match_on(self, branch, revs):
927
 
        trace.mutter('matching ancestor: on: %s, %s', self.spec, branch)
928
 
        return self._find_revision_info(branch,
929
 
            self._get_submit_location(branch))
930
 
 
931
 
    def _as_revision_id(self, context_branch):
932
 
        return self._find_revision_id(context_branch,
933
 
            self._get_submit_location(context_branch))
934
 
 
935
 
 
936
 
class RevisionSpec_annotate(RevisionIDSpec):
937
 
 
938
 
    prefix = 'annotate:'
939
 
 
940
 
    help_txt = """Select the revision that last modified the specified line.
941
 
 
942
 
    Select the revision that last modified the specified line.  Line is
943
 
    specified as path:number.  Path is a relative path to the file.  Numbers
944
 
    start at 1, and are relative to the current version, not the last-
945
 
    committed version of the file.
946
 
    """
947
 
 
948
 
    def _raise_invalid(self, numstring, context_branch):
949
 
        raise errors.InvalidRevisionSpec(self.user_spec, context_branch,
950
 
            'No such line: %s' % numstring)
951
 
 
952
 
    def _as_revision_id(self, context_branch):
953
 
        path, numstring = self.spec.rsplit(':', 1)
954
 
        try:
955
 
            index = int(numstring) - 1
956
 
        except ValueError:
957
 
            self._raise_invalid(numstring, context_branch)
958
 
        tree, file_path = workingtree.WorkingTree.open_containing(path)
959
 
        tree.lock_read()
960
 
        try:
961
 
            file_id = tree.path2id(file_path)
962
 
            if file_id is None:
963
 
                raise errors.InvalidRevisionSpec(self.user_spec,
964
 
                    context_branch, "File '%s' is not versioned." %
965
 
                    file_path)
966
 
            revision_ids = [r for (r, l) in tree.annotate_iter(file_id)]
967
 
        finally:
968
 
            tree.unlock()
969
 
        try:
970
 
            revision_id = revision_ids[index]
971
 
        except IndexError:
972
 
            self._raise_invalid(numstring, context_branch)
973
 
        if revision_id == revision.CURRENT_REVISION:
974
 
            raise errors.InvalidRevisionSpec(self.user_spec, context_branch,
975
 
                'Line %s has not been committed.' % numstring)
976
 
        return revision_id
977
 
 
978
 
 
979
 
class RevisionSpec_mainline(RevisionIDSpec):
980
 
 
981
 
    help_txt = """Select mainline revision that merged the specified revision.
982
 
 
983
 
    Select the revision that merged the specified revision into mainline.
984
 
    """
985
 
 
986
 
    prefix = 'mainline:'
987
 
 
988
 
    def _as_revision_id(self, context_branch):
989
 
        revspec = RevisionSpec.from_string(self.spec)
990
 
        if revspec.get_branch() is None:
991
 
            spec_branch = context_branch
992
 
        else:
993
 
            spec_branch = _mod_branch.Branch.open(revspec.get_branch())
994
 
        revision_id = revspec.as_revision_id(spec_branch)
995
 
        graph = context_branch.repository.get_graph()
996
 
        result = graph.find_lefthand_merger(revision_id,
997
 
                                            context_branch.last_revision())
998
 
        if result is None:
999
 
            raise errors.InvalidRevisionSpec(self.user_spec, context_branch)
1000
 
        return result
1001
 
 
1002
 
 
1003
 
# The order in which we want to DWIM a revision spec without any prefix.
1004
 
# revno is always tried first and isn't listed here, this is used by
1005
 
# RevisionSpec_dwim._match_on
1006
 
dwim_revspecs = symbol_versioning.deprecated_list(
1007
 
    symbol_versioning.deprecated_in((2, 4, 0)), "dwim_revspecs", [])
1008
 
 
1009
 
RevisionSpec_dwim.append_possible_revspec(RevisionSpec_tag)
1010
 
RevisionSpec_dwim.append_possible_revspec(RevisionSpec_revid)
1011
 
RevisionSpec_dwim.append_possible_revspec(RevisionSpec_date)
1012
 
RevisionSpec_dwim.append_possible_revspec(RevisionSpec_branch)
1013
 
 
1014
 
revspec_registry = registry.Registry()
1015
 
def _register_revspec(revspec):
1016
 
    revspec_registry.register(revspec.prefix, revspec)
1017
 
 
1018
 
_register_revspec(RevisionSpec_revno)
1019
 
_register_revspec(RevisionSpec_revid)
1020
 
_register_revspec(RevisionSpec_last)
1021
 
_register_revspec(RevisionSpec_before)
1022
 
_register_revspec(RevisionSpec_tag)
1023
 
_register_revspec(RevisionSpec_date)
1024
 
_register_revspec(RevisionSpec_ancestor)
1025
 
_register_revspec(RevisionSpec_branch)
1026
 
_register_revspec(RevisionSpec_submit)
1027
 
_register_revspec(RevisionSpec_annotate)
1028
 
_register_revspec(RevisionSpec_mainline)
 
727
        trace.note('Using %s %s', location_type, submit_location)
 
728
        return self._find_revision_info(branch, submit_location)
 
729
 
 
730
 
 
731
SPEC_TYPES.append(RevisionSpec_submit)