~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revision.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-09 14:43:27 UTC
  • mto: This revision was merged to the branch mainline in revision 1912.
  • Revision ID: john@arbash-meinel.com-20060809144327-d604af2edf646794
Clean up and write tests for permissions. Now we use fstat which should be cheap, and lets us check the permissions and the file size

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# (C) 2005 Canonical
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
 
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
 
74
75
        return not self.__eq__(other)
75
76
 
76
77
    def _check_properties(self):
77
 
        """Verify that all revision properties are OK.
78
 
        """
 
78
        """Verify that all revision properties are OK."""
79
79
        for name, value in self.properties.iteritems():
80
80
            if not isinstance(name, basestring) or contains_whitespace(name):
81
81
                raise ValueError("invalid property name %r" % name)
130
130
                yield ancestor, distance
131
131
            try:
132
132
                revision = revision_source.get_revision(ancestor)
133
 
            except bzrlib.errors.NoSuchRevision, e:
 
133
            except errors.NoSuchRevision, e:
134
134
                if e.revision == revision_id:
135
135
                    raise 
136
136
                else:
220
220
    root_b, ancestors_b, descendants_b = revision_graph(
221
221
        revision_b, revision_source)
222
222
    if root != root_b:
223
 
        raise bzrlib.errors.NoCommonRoot(revision_a, revision_b)
 
223
        raise errors.NoCommonRoot(revision_a, revision_b)
224
224
    common = set()
225
225
    for node, node_anc in ancestors_b.iteritems():
226
226
        if node in ancestors:
239
239
                    pb=DummyProgress()):
240
240
    if None in (revision_a, revision_b):
241
241
        return None
 
242
    if NULL_REVISION in (revision_a, revision_b):
 
243
        return NULL_REVISION
242
244
    # trivial optimisation
243
245
    if revision_a == revision_b:
244
246
        return revision_a
273
275
                
274
276
            root = NULL_REVISION
275
277
            common.add(NULL_REVISION)
276
 
        except bzrlib.errors.NoCommonRoot:
277
 
            raise bzrlib.errors.NoCommonAncestor(revision_a, revision_b)
 
278
        except errors.NoCommonRoot:
 
279
            raise errors.NoCommonAncestor(revision_a, revision_b)
278
280
            
279
281
        pb.update('Picking ancestor', 2, 3)
280
282
        distances = node_distances (descendants, ancestors, root)
281
283
        pb.update('Picking ancestor', 3, 2)
282
284
        farthest = select_farthest(distances, common)
283
285
        if farthest is None or farthest == NULL_REVISION:
284
 
            raise bzrlib.errors.NoCommonAncestor(revision_a, revision_b)
 
286
            raise errors.NoCommonAncestor(revision_a, revision_b)
285
287
    finally:
286
288
        pb.clear()
287
289
    return farthest
306
308
        for source in self._revision_sources:
307
309
            try:
308
310
                return source.get_revision(revision_id)
309
 
            except bzrlib.errors.NoSuchRevision, e:
 
311
            except errors.NoSuchRevision, e:
310
312
                pass
311
313
        raise e
312
314
 
419
421
    """
420
422
    root, ancestors, descendants = revision_graph(rev_id, rev_source)
421
423
    if len(descendants) == 0:
422
 
        raise NoSuchRevision(rev_source, rev_id)
 
424
        raise errors.NoSuchRevision(rev_source, rev_id)
423
425
    if ancestor_id not in descendants:
424
426
        rev_source.get_revision(ancestor_id)
425
 
        raise bzrlib.errors.NotAncestor(rev_id, ancestor_id)
 
427
        raise errors.NotAncestor(rev_id, ancestor_id)
426
428
    root_descendants = all_descendants(descendants, ancestor_id)
427
429
    root_descendants.add(ancestor_id)
428
430
    if rev_id not in root_descendants:
429
 
        raise bzrlib.errors.NotAncestor(rev_id, ancestor_id)
 
431
        raise errors.NotAncestor(rev_id, ancestor_id)
430
432
    distances = node_distances(descendants, ancestors, ancestor_id,
431
433
                               root_descendants=root_descendants)
432
434