~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revision.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-06-26 02:01:54 UTC
  • mfrom: (1756.2.29 log.perf)
  • Revision ID: pqm@pqm.ubuntu.com-20060626020154-5f3661f6a543d34d
Remove basis knit support

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 Canonical Ltd
2
 
#
 
1
# Copyright (C) 2005, 2006 Canonical
 
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
5
5
# the Free Software Foundation; either version 2 of the License, or
6
6
# (at your option) any later version.
7
 
#
 
7
 
8
8
# This program is distributed in the hope that it will be useful,
9
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
11
# GNU General Public License for more details.
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
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
19
 
20
20
 
21
21
import bzrlib.errors as errors
22
 
from bzrlib.deprecated_graph import (
23
 
    all_descendants,
24
 
    Graph,
25
 
    node_distances,
26
 
    select_farthest,
27
 
    )
 
22
from bzrlib.graph import node_distances, select_farthest, all_descendants, Graph
28
23
from bzrlib.osutils import contains_whitespace
29
24
from bzrlib.progress import DummyProgress
30
25
from bzrlib.symbol_versioning import (deprecated_function,
32
27
        )
33
28
 
34
29
NULL_REVISION="null:"
35
 
CURRENT_REVISION="current:"
36
 
 
37
30
 
38
31
class Revision(object):
39
32
    """Single revision on a branch.
82
75
        return not self.__eq__(other)
83
76
 
84
77
    def _check_properties(self):
85
 
        """Verify that all revision properties are OK."""
 
78
        """Verify that all revision properties are OK.
 
79
        """
86
80
        for name, value in self.properties.iteritems():
87
81
            if not isinstance(name, basestring) or contains_whitespace(name):
88
82
                raise ValueError("invalid property name %r" % name)
124
118
    revisions_source is an object supporting a get_revision operation that
125
119
    behaves like Branch's.
126
120
    """
127
 
    return (candidate_id in branch.repository.get_ancestry(revision_id,
128
 
            topo_sorted=False))
 
121
    return candidate_id in branch.repository.get_ancestry(revision_id)
129
122
 
130
123
 
131
124
def iter_ancestors(revision_id, revision_source, only_present=False):
161
154
    anc_iter = enumerate(iter_ancestors(revision_id, revision_source,
162
155
                         only_present=True))
163
156
    for anc_order, (anc_id, anc_distance) in anc_iter:
164
 
        if anc_id not in found_ancestors:
 
157
        if not found_ancestors.has_key(anc_id):
165
158
            found_ancestors[anc_id] = (anc_order, anc_distance)
166
159
    return found_ancestors
167
160
    
247
240
                    pb=DummyProgress()):
248
241
    if None in (revision_a, revision_b):
249
242
        return None
250
 
    if NULL_REVISION in (revision_a, revision_b):
251
 
        return NULL_REVISION
252
243
    # trivial optimisation
253
244
    if revision_a == revision_b:
254
245
        return revision_a
257
248
            pb.update('Picking ancestor', 1, 3)
258
249
            graph = revision_source.get_revision_graph_with_ghosts(
259
250
                [revision_a, revision_b])
260
 
            # Shortcut the case where one of the tips is already included in
261
 
            # the other graphs ancestry.
262
 
            ancestry_a = graph.get_ancestry(revision_a, topo_sorted=False)
263
 
            if revision_b in ancestry_a:
264
 
                return revision_b
265
 
            ancestry_b = graph.get_ancestry(revision_b, topo_sorted=False)
266
 
            if revision_a in ancestry_b:
267
 
                return revision_a
268
251
            # convert to a NULL_REVISION based graph.
269
252
            ancestors = graph.get_ancestors()
270
253
            descendants = graph.get_descendants()
271
 
            common = set(ancestry_a)
272
 
            common.intersection_update(ancestry_b)
 
254
            common = set(graph.get_ancestry(revision_a)).intersection(
 
255
                     set(graph.get_ancestry(revision_b)))
273
256
            descendants[NULL_REVISION] = {}
274
257
            ancestors[NULL_REVISION] = []
275
258
            for root in graph.roots:
468
451
        next = best_ancestor(next)
469
452
    path.reverse()
470
453
    return path
471
 
 
472
 
 
473
 
def is_reserved_id(revision_id):
474
 
    """Determine whether a revision id is reserved
475
 
 
476
 
    :return: True if the revision is is reserved, False otherwise
477
 
    """
478
 
    return isinstance(revision_id, basestring) and revision_id.endswith(':')
479
 
 
480
 
 
481
 
def check_not_reserved_id(revision_id):
482
 
    """Raise ReservedId if the supplied revision_id is reserved"""
483
 
    if is_reserved_id(revision_id):
484
 
        raise errors.ReservedId(revision_id)
485
 
 
486
 
def ensure_null(revision_id):
487
 
    """Ensure only NULL_REVISION is used to represent the null revisionn"""
488
 
    if revision_id is None:
489
 
        return NULL_REVISION
490
 
    else:
491
 
        return revision_id