~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revision.py

  • Committer: Robert Collins
  • Date: 2006-08-08 23:19:29 UTC
  • mfrom: (1884 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1912.
  • Revision ID: robertc@robertcollins.net-20060808231929-4e3e298190214b3a
current status

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# (C) 2005 Canonical
 
1
# Copyright (C) 2005, 2006 Canonical
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
18
18
# perhaps show them in log -v and allow them as options to the commit command.
19
19
 
20
20
 
21
 
import bzrlib.errors
22
21
import bzrlib.errors as errors
23
22
from bzrlib.graph import node_distances, select_farthest, all_descendants, Graph
24
23
from bzrlib.osutils import contains_whitespace
25
24
from bzrlib.progress import DummyProgress
26
 
from bzrlib.symbol_versioning import *
 
25
from bzrlib.symbol_versioning import (deprecated_function,
 
26
        zero_eight,
 
27
        )
27
28
 
28
29
NULL_REVISION="null:"
29
30
 
51
52
        self._check_properties()
52
53
        self.parent_ids = []
53
54
        self.parent_sha1s = []
 
55
        """Not used anymore - legacy from for 4."""
54
56
        self.__dict__.update(args)
55
57
 
56
58
    def __repr__(self):
73
75
        return not self.__eq__(other)
74
76
 
75
77
    def _check_properties(self):
76
 
        """Verify that all revision properties are OK.
77
 
        """
 
78
        """Verify that all revision properties are OK."""
78
79
        for name, value in self.properties.iteritems():
79
80
            if not isinstance(name, basestring) or contains_whitespace(name):
80
81
                raise ValueError("invalid property name %r" % name)
129
130
                yield ancestor, distance
130
131
            try:
131
132
                revision = revision_source.get_revision(ancestor)
132
 
            except bzrlib.errors.NoSuchRevision, e:
 
133
            except errors.NoSuchRevision, e:
133
134
                if e.revision == revision_id:
134
135
                    raise 
135
136
                else:
219
220
    root_b, ancestors_b, descendants_b = revision_graph(
220
221
        revision_b, revision_source)
221
222
    if root != root_b:
222
 
        raise bzrlib.errors.NoCommonRoot(revision_a, revision_b)
 
223
        raise errors.NoCommonRoot(revision_a, revision_b)
223
224
    common = set()
224
225
    for node, node_anc in ancestors_b.iteritems():
225
226
        if node in ancestors:
238
239
                    pb=DummyProgress()):
239
240
    if None in (revision_a, revision_b):
240
241
        return None
 
242
    if NULL_REVISION in (revision_a, revision_b):
 
243
        return NULL_REVISION
241
244
    # trivial optimisation
242
245
    if revision_a == revision_b:
243
246
        return revision_a
272
275
                
273
276
            root = NULL_REVISION
274
277
            common.add(NULL_REVISION)
275
 
        except bzrlib.errors.NoCommonRoot:
276
 
            raise bzrlib.errors.NoCommonAncestor(revision_a, revision_b)
 
278
        except errors.NoCommonRoot:
 
279
            raise errors.NoCommonAncestor(revision_a, revision_b)
277
280
            
278
281
        pb.update('Picking ancestor', 2, 3)
279
282
        distances = node_distances (descendants, ancestors, root)
280
283
        pb.update('Picking ancestor', 3, 2)
281
284
        farthest = select_farthest(distances, common)
282
285
        if farthest is None or farthest == NULL_REVISION:
283
 
            raise bzrlib.errors.NoCommonAncestor(revision_a, revision_b)
 
286
            raise errors.NoCommonAncestor(revision_a, revision_b)
284
287
    finally:
285
288
        pb.clear()
286
289
    return farthest
305
308
        for source in self._revision_sources:
306
309
            try:
307
310
                return source.get_revision(revision_id)
308
 
            except bzrlib.errors.NoSuchRevision, e:
 
311
            except errors.NoSuchRevision, e:
309
312
                pass
310
313
        raise e
311
314
 
418
421
    """
419
422
    root, ancestors, descendants = revision_graph(rev_id, rev_source)
420
423
    if len(descendants) == 0:
421
 
        raise NoSuchRevision(rev_source, rev_id)
 
424
        raise errors.NoSuchRevision(rev_source, rev_id)
422
425
    if ancestor_id not in descendants:
423
426
        rev_source.get_revision(ancestor_id)
424
 
        raise bzrlib.errors.NotAncestor(rev_id, ancestor_id)
 
427
        raise errors.NotAncestor(rev_id, ancestor_id)
425
428
    root_descendants = all_descendants(descendants, ancestor_id)
426
429
    root_descendants.add(ancestor_id)
427
430
    if rev_id not in root_descendants:
428
 
        raise bzrlib.errors.NotAncestor(rev_id, ancestor_id)
 
431
        raise errors.NotAncestor(rev_id, ancestor_id)
429
432
    distances = node_distances(descendants, ancestors, ancestor_id,
430
433
                               root_descendants=root_descendants)
431
434