580677eedc
1.As mentioned in [1], we should avoid using six.iteritems to achieve iterators. We can use dict.items instead, as it will return iterators in PY3 as well. And dict.items/keys will more readable. 2.In py2, the performance about list should be negligible, see the link [2]. [1] https://wiki.openstack.org/wiki/Python3 [2] http://lists.openstack.org/pipermail/openstack-dev/2015-June/066391.html Change-Id: I45fa65427318e1c35bb521de46e81ea12ca7b770
67 lines
2.4 KiB
Python
67 lines
2.4 KiB
Python
# Copyright (c) 2014 Mirantis, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import collections
|
|
|
|
|
|
from murano.dsl import dsl_types
|
|
|
|
|
|
class AttributeStore(object):
|
|
def __init__(self):
|
|
self._attributes = collections.defaultdict(lambda: {})
|
|
|
|
@staticmethod
|
|
def _get_attribute_key(tagged_object, owner_type, name):
|
|
if isinstance(owner_type, dsl_types.MuranoTypeReference):
|
|
owner_type = owner_type.type
|
|
if isinstance(tagged_object, dsl_types.MuranoObjectInterface):
|
|
tagged_object = tagged_object.object
|
|
return tagged_object.object_id, (owner_type.name, name)
|
|
|
|
def get(self, tagged_object, owner_type, name):
|
|
key1, key2 = self._get_attribute_key(tagged_object, owner_type, name)
|
|
return self._attributes[key1].get(key2)
|
|
|
|
def set(self, tagged_object, owner_type, name, value):
|
|
if isinstance(value, dsl_types.MuranoObjectInterface):
|
|
value = value.id
|
|
elif isinstance(value, dsl_types.MuranoObject):
|
|
value = value.object_id
|
|
key1, key2 = self._get_attribute_key(tagged_object, owner_type, name)
|
|
if value is None:
|
|
self._attributes[key1].pop(key2, None)
|
|
else:
|
|
self._attributes[key1][key2] = value
|
|
|
|
def serialize(self, known_objects):
|
|
return [
|
|
[key1, key2[0], key2[1], value]
|
|
for key1, inner in self._attributes.items()
|
|
for key2, value in inner.items()
|
|
if key1 in known_objects
|
|
]
|
|
|
|
def load(self, data):
|
|
for item in data:
|
|
if item[3] is not None:
|
|
self._attributes[item[0]][(item[1], item[2])] = item[3]
|
|
|
|
def forget_object(self, obj):
|
|
if isinstance(obj, dsl_types.MuranoObjectInterface):
|
|
obj = obj.id
|
|
elif isinstance(obj, dsl_types.MuranoObject):
|
|
obj = obj.object_id
|
|
self._attributes.pop(obj, None)
|