14
14
# You should have received a copy of the GNU General Public License
15
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
18
"""This module provides an IdentityMap."""
21
import bzrlib.errors as errors
24
27
class IdentityMap(object):
25
28
"""An in memory map from object id to instance.
27
30
An IdentityMap maps from keys to single instances of objects in memory.
28
31
We have explicit calls on the map for the root of each inheritance tree
29
32
that is store in the map. Look for find_CLASS and add_CLASS methods.
32
def add_revision_history(self, revision_history):
33
"""Add a revision_history object to the map.
35
There can only be one!
37
if self._revision_history is not None:
38
raise errors.BzrError("A revision history (%s) is already "
39
"identity map" % self._revision_history)
40
self._revision_history = revision_history
42
35
def add_weave(self, id, weave):
43
36
"""Add weave to the map with a given id."""
44
37
if self._weave_key(id) in self._map:
46
39
self._map[self._weave_key(id)] = weave
47
40
self._reverse_map[weave] = self._weave_key(id)
49
def find_revision_history(self):
50
return self._revision_history
52
42
def find_weave(self, id):
53
43
"""Return the weave for 'id', or None if it is not present."""
54
44
return self._map.get(self._weave_key(id), None)
57
47
super(IdentityMap, self).__init__()
59
49
self._reverse_map = {}
60
self._revision_history = None
62
51
def remove_object(self, an_object):
63
52
"""Remove object from map."""
64
53
if isinstance(an_object, list):
65
if self._revision_history is an_object:
66
self._revision_history = None
68
raise KeyError('%r not in identity map' % an_object)
54
raise KeyError('%r not in identity map' % an_object)
70
56
self._map.pop(self._reverse_map[an_object])
71
57
self._reverse_map.pop(an_object)
74
60
"""Return the key for a weaves id."""
75
61
return "weave-" + id
78
64
class NullIdentityMap(object):
79
65
"""A pretend in memory map from object id to instance.
81
67
A NullIdentityMap is an Identity map that does not store anything in it.
84
70
def add_weave(self, id, weave):
85
71
"""See IdentityMap.add_weave."""
87
def add_revision_history(self, revision_history):
88
"""See IdentityMap.add_revision_history."""
90
73
def find_weave(self, id):
91
74
"""See IdentityMap.find_weave."""
94
def find_revision_history(self):
95
"""See IdentityMap.find_revision_history."""