~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-07-06 03:15:29 UTC
  • mfrom: (1711.2.78 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060706031529-e189d8c3f42076be
(jam) allow plugins to include benchmarks

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
18
18
# perhaps show them in log -v and allow them as options to the commit command.
19
19
 
20
20
 
21
 
from bzrlib import (
22
 
    errors,
23
 
    symbol_versioning
24
 
    )
25
 
from bzrlib.deprecated_graph import (
26
 
    all_descendants,
27
 
    Graph,
28
 
    node_distances,
29
 
    select_farthest,
30
 
    )
 
21
import bzrlib.errors as errors
 
22
from bzrlib.graph import node_distances, select_farthest, all_descendants, Graph
31
23
from bzrlib.osutils import contains_whitespace
32
24
from bzrlib.progress import DummyProgress
33
25
from bzrlib.symbol_versioning import (deprecated_function,
35
27
        )
36
28
 
37
29
NULL_REVISION="null:"
38
 
CURRENT_REVISION="current:"
39
 
 
40
30
 
41
31
class Revision(object):
42
32
    """Single revision on a branch.
85
75
        return not self.__eq__(other)
86
76
 
87
77
    def _check_properties(self):
88
 
        """Verify that all revision properties are OK."""
 
78
        """Verify that all revision properties are OK.
 
79
        """
89
80
        for name, value in self.properties.iteritems():
90
81
            if not isinstance(name, basestring) or contains_whitespace(name):
91
82
                raise ValueError("invalid property name %r" % name)
127
118
    revisions_source is an object supporting a get_revision operation that
128
119
    behaves like Branch's.
129
120
    """
130
 
    if is_null(candidate_id):
131
 
        return True
132
 
    return (candidate_id in branch.repository.get_ancestry(revision_id,
133
 
            topo_sorted=False))
 
121
    return candidate_id in branch.repository.get_ancestry(revision_id)
134
122
 
135
123
 
136
124
def iter_ancestors(revision_id, revision_source, only_present=False):
166
154
    anc_iter = enumerate(iter_ancestors(revision_id, revision_source,
167
155
                         only_present=True))
168
156
    for anc_order, (anc_id, anc_distance) in anc_iter:
169
 
        if anc_id not in found_ancestors:
 
157
        if not found_ancestors.has_key(anc_id):
170
158
            found_ancestors[anc_id] = (anc_order, anc_distance)
171
159
    return found_ancestors
172
160
    
262
250
            pb.update('Picking ancestor', 1, 3)
263
251
            graph = revision_source.get_revision_graph_with_ghosts(
264
252
                [revision_a, revision_b])
265
 
            # Shortcut the case where one of the tips is already included in
266
 
            # the other graphs ancestry.
267
 
            ancestry_a = graph.get_ancestry(revision_a, topo_sorted=False)
268
 
            if revision_b in ancestry_a:
269
 
                return revision_b
270
 
            ancestry_b = graph.get_ancestry(revision_b, topo_sorted=False)
271
 
            if revision_a in ancestry_b:
272
 
                return revision_a
273
253
            # convert to a NULL_REVISION based graph.
274
254
            ancestors = graph.get_ancestors()
275
255
            descendants = graph.get_descendants()
276
 
            common = set(ancestry_a)
277
 
            common.intersection_update(ancestry_b)
 
256
            common = set(graph.get_ancestry(revision_a)).intersection(
 
257
                     set(graph.get_ancestry(revision_b)))
278
258
            descendants[NULL_REVISION] = {}
279
259
            ancestors[NULL_REVISION] = []
280
260
            for root in graph.roots:
473
453
        next = best_ancestor(next)
474
454
    path.reverse()
475
455
    return path
476
 
 
477
 
 
478
 
def is_reserved_id(revision_id):
479
 
    """Determine whether a revision id is reserved
480
 
 
481
 
    :return: True if the revision is is reserved, False otherwise
482
 
    """
483
 
    return isinstance(revision_id, basestring) and revision_id.endswith(':')
484
 
 
485
 
 
486
 
def check_not_reserved_id(revision_id):
487
 
    """Raise ReservedId if the supplied revision_id is reserved"""
488
 
    if is_reserved_id(revision_id):
489
 
        raise errors.ReservedId(revision_id)
490
 
 
491
 
 
492
 
def ensure_null(revision_id):
493
 
    """Ensure only NULL_REVISION is used to represent the null revisionn"""
494
 
    if revision_id is None:
495
 
        return NULL_REVISION
496
 
    else:
497
 
        return revision_id
498
 
 
499
 
 
500
 
def is_null(revision_id):
501
 
    if revision_id is None:
502
 
        symbol_versioning.warn('NULL_REVISION should be used for the null'
503
 
            ' revision instead of None, as of bzr 0.19.',
504
 
            DeprecationWarning, stacklevel=2)
505
 
    return revision_id in (None, NULL_REVISION)