~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revision.py

  • Committer: Robert Collins
  • Date: 2007-03-08 04:06:06 UTC
  • mfrom: (2323.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 2442.
  • Revision ID: robertc@robertcollins.net-20070308040606-84gsniv56huiyjt4
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# (C) 2005 Canonical
2
 
 
 
1
# Copyright (C) 2005, 2006 Canonical Ltd
 
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
 
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:"
 
30
CURRENT_REVISION="current:"
 
31
 
29
32
 
30
33
class Revision(object):
31
34
    """Single revision on a branch.
51
54
        self._check_properties()
52
55
        self.parent_ids = []
53
56
        self.parent_sha1s = []
 
57
        """Not used anymore - legacy from for 4."""
54
58
        self.__dict__.update(args)
55
59
 
56
60
    def __repr__(self):
73
77
        return not self.__eq__(other)
74
78
 
75
79
    def _check_properties(self):
76
 
        """Verify that all revision properties are OK.
77
 
        """
 
80
        """Verify that all revision properties are OK."""
78
81
        for name, value in self.properties.iteritems():
79
82
            if not isinstance(name, basestring) or contains_whitespace(name):
80
83
                raise ValueError("invalid property name %r" % name)
101
104
        reversed_result.reverse()
102
105
        return reversed_result
103
106
 
 
107
    def get_summary(self):
 
108
        """Get the first line of the log message for this revision.
 
109
        """
 
110
        return self.message.split('\n', 1)[0]
 
111
 
104
112
 
105
113
def is_ancestor(revision_id, candidate_id, branch):
106
114
    """Return true if candidate_id is an ancestor of revision_id.
111
119
    revisions_source is an object supporting a get_revision operation that
112
120
    behaves like Branch's.
113
121
    """
114
 
    return candidate_id in branch.repository.get_ancestry(revision_id)
 
122
    return (candidate_id in branch.repository.get_ancestry(revision_id))
115
123
 
116
124
 
117
125
def iter_ancestors(revision_id, revision_source, only_present=False):
124
132
                yield ancestor, distance
125
133
            try:
126
134
                revision = revision_source.get_revision(ancestor)
127
 
            except bzrlib.errors.NoSuchRevision, e:
 
135
            except errors.NoSuchRevision, e:
128
136
                if e.revision == revision_id:
129
137
                    raise 
130
138
                else:
147
155
    anc_iter = enumerate(iter_ancestors(revision_id, revision_source,
148
156
                         only_present=True))
149
157
    for anc_order, (anc_id, anc_distance) in anc_iter:
150
 
        if not found_ancestors.has_key(anc_id):
 
158
        if anc_id not in found_ancestors:
151
159
            found_ancestors[anc_id] = (anc_order, anc_distance)
152
160
    return found_ancestors
153
161
    
214
222
    root_b, ancestors_b, descendants_b = revision_graph(
215
223
        revision_b, revision_source)
216
224
    if root != root_b:
217
 
        raise bzrlib.errors.NoCommonRoot(revision_a, revision_b)
 
225
        raise errors.NoCommonRoot(revision_a, revision_b)
218
226
    common = set()
219
227
    for node, node_anc in ancestors_b.iteritems():
220
228
        if node in ancestors:
233
241
                    pb=DummyProgress()):
234
242
    if None in (revision_a, revision_b):
235
243
        return None
 
244
    if NULL_REVISION in (revision_a, revision_b):
 
245
        return NULL_REVISION
236
246
    # trivial optimisation
237
247
    if revision_a == revision_b:
238
248
        return revision_a
267
277
                
268
278
            root = NULL_REVISION
269
279
            common.add(NULL_REVISION)
270
 
        except bzrlib.errors.NoCommonRoot:
271
 
            raise bzrlib.errors.NoCommonAncestor(revision_a, revision_b)
 
280
        except errors.NoCommonRoot:
 
281
            raise errors.NoCommonAncestor(revision_a, revision_b)
272
282
            
273
283
        pb.update('Picking ancestor', 2, 3)
274
284
        distances = node_distances (descendants, ancestors, root)
275
285
        pb.update('Picking ancestor', 3, 2)
276
286
        farthest = select_farthest(distances, common)
277
287
        if farthest is None or farthest == NULL_REVISION:
278
 
            raise bzrlib.errors.NoCommonAncestor(revision_a, revision_b)
 
288
            raise errors.NoCommonAncestor(revision_a, revision_b)
279
289
    finally:
280
290
        pb.clear()
281
291
    return farthest
300
310
        for source in self._revision_sources:
301
311
            try:
302
312
                return source.get_revision(revision_id)
303
 
            except bzrlib.errors.NoSuchRevision, e:
 
313
            except errors.NoSuchRevision, e:
304
314
                pass
305
315
        raise e
306
316
 
399
409
    def unlock(self):
400
410
        for source in self._revision_sources:
401
411
            source.unlock()
 
412
 
 
413
 
 
414
@deprecated_function(zero_eight)
 
415
def get_intervening_revisions(ancestor_id, rev_id, rev_source,
 
416
                              revision_history=None):
 
417
    """Find the longest line of descent from maybe_ancestor to revision.
 
418
    Revision history is followed where possible.
 
419
 
 
420
    If ancestor_id == rev_id, list will be empty.
 
421
    Otherwise, rev_id will be the last entry.  ancestor_id will never appear.
 
422
    If ancestor_id is not an ancestor, NotAncestor will be thrown
 
423
    """
 
424
    root, ancestors, descendants = revision_graph(rev_id, rev_source)
 
425
    if len(descendants) == 0:
 
426
        raise errors.NoSuchRevision(rev_source, rev_id)
 
427
    if ancestor_id not in descendants:
 
428
        rev_source.get_revision(ancestor_id)
 
429
        raise errors.NotAncestor(rev_id, ancestor_id)
 
430
    root_descendants = all_descendants(descendants, ancestor_id)
 
431
    root_descendants.add(ancestor_id)
 
432
    if rev_id not in root_descendants:
 
433
        raise errors.NotAncestor(rev_id, ancestor_id)
 
434
    distances = node_distances(descendants, ancestors, ancestor_id,
 
435
                               root_descendants=root_descendants)
 
436
 
 
437
    def best_ancestor(rev_id):
 
438
        best = None
 
439
        for anc_id in ancestors[rev_id]:
 
440
            try:
 
441
                distance = distances[anc_id]
 
442
            except KeyError:
 
443
                continue
 
444
            if revision_history is not None and anc_id in revision_history:
 
445
                return anc_id
 
446
            elif best is None or distance > best[1]:
 
447
                best = (anc_id, distance)
 
448
        return best[0]
 
449
 
 
450
    next = rev_id
 
451
    path = []
 
452
    while next != ancestor_id:
 
453
        path.append(next)
 
454
        next = best_ancestor(next)
 
455
    path.reverse()
 
456
    return path
 
457
 
 
458
 
 
459
def is_reserved_id(revision_id):
 
460
    """Determine whether a revision id is reserved
 
461
 
 
462
    :return: True if the revision is is reserved, False otherwise
 
463
    """
 
464
    return isinstance(revision_id, basestring) and revision_id.endswith(':')
 
465
 
 
466
 
 
467
def check_not_reserved_id(revision_id):
 
468
    """Raise ReservedId if the supplied revision_id is reserved"""
 
469
    if is_reserved_id(revision_id):
 
470
        raise errors.ReservedId(revision_id)