/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/identitymap.py

  • Committer: Vincent Ladeuil
  • Date: 2009-12-15 20:32:34 UTC
  • mto: (4905.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4906.
  • Revision ID: v.ladeuil+lp@free.fr-20091215203234-d8br6xqfq6pec40z
Move the _warn_if_deprecated call from repo.__init__ to
repo.lock_{read,write} so that branch.lock_{read,write} can call it. This
makes it possible to access locations.conf and branch.conf.

* bzrlib/tests/blackbox/test_exceptions.py:
(TestDeprecationWarning): Test that the suppress_warning
configuration variable is taken into account.

* bzrlib/repository.py:
(Repository.__init__): Delete very old and obsolete
comments. Don't warn about deprecations yet.
(Repository.lock_write, Repository.lock_read): The repo is about
to be locked, check deprecation.
(Repository._warn_if_deprecated): Use the branch config if
available or the global one othewrwise and check for the
suppress_warning variable.

* bzrlib/remote.py:
(RemoteRepository._warn_if_deprecated): Nothing to do here. 

* bzrlib/repofmt/pack_repo.py:
(KnitPackRepository._warn_if_deprecated): Delegate to base class
if needed.

* bzrlib/branch.py:
(BzrBranch.lock_write, BzrBranch.lock_read): Check repo
deprecation.

* bzrlib/help_topics/en/configuration.txt:
Fix the variable name and its description.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005 Canonical Ltd
 
2
#   Authors: Robert Collins <robert.collins@canonical.com>
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
17
 
 
18
"""This module provides an IdentityMap."""
 
19
 
 
20
 
 
21
from bzrlib import (
 
22
    errors,
 
23
    osutils,
 
24
    )
 
25
 
 
26
 
 
27
class IdentityMap(object):
 
28
    """An in memory map from object id to instance.
 
29
 
 
30
    An IdentityMap maps from keys to single instances of objects in memory.
 
31
    We have explicit calls on the map for the root of each inheritance tree
 
32
    that is store in the map. Look for find_CLASS and add_CLASS methods.
 
33
    """
 
34
 
 
35
    def add_weave(self, id, weave):
 
36
        """Add weave to the map with a given id."""
 
37
        if self._weave_key(id) in self._map:
 
38
            raise errors.BzrError('weave %s already in the identity map' % id)
 
39
        self._map[self._weave_key(id)] = weave
 
40
        self._reverse_map[weave] = self._weave_key(id)
 
41
 
 
42
    def find_weave(self, id):
 
43
        """Return the weave for 'id', or None if it is not present."""
 
44
        return self._map.get(self._weave_key(id), None)
 
45
 
 
46
    def __init__(self):
 
47
        super(IdentityMap, self).__init__()
 
48
        self._map = {}
 
49
        self._reverse_map = {}
 
50
 
 
51
    def remove_object(self, an_object):
 
52
        """Remove object from map."""
 
53
        if isinstance(an_object, list):
 
54
            raise KeyError('%r not in identity map' % an_object)
 
55
        else:
 
56
            self._map.pop(self._reverse_map[an_object])
 
57
            self._reverse_map.pop(an_object)
 
58
 
 
59
    def _weave_key(self, id):
 
60
        """Return the key for a weaves id."""
 
61
        return "weave-" + id
 
62
 
 
63
 
 
64
class NullIdentityMap(object):
 
65
    """A pretend in memory map from object id to instance.
 
66
 
 
67
    A NullIdentityMap is an Identity map that does not store anything in it.
 
68
    """
 
69
 
 
70
    def add_weave(self, id, weave):
 
71
        """See IdentityMap.add_weave."""
 
72
 
 
73
    def find_weave(self, id):
 
74
        """See IdentityMap.find_weave."""
 
75
        return None