
Garbage collection is triggered by io.murano.system.GC.collect() static method. Garbage collector destroys all object that are not reachable anymore. GC can handle objects with cross-references and isolated object graphs. When portion of object model becomes not reachable it destroyed in predictable order such that child objects get destroyed before their parents and, when possible, before objects that are subscribed to their destruction notifications. Internally, both pre-deployment garbage collection (that was done by comparision of ``Objects`` and ``ObjectsCopy``) and post-deployment orphan object collection are now done through the new GC. MuranoPL GC utilizes Python GC to track and collect objects. The main idea is to make ObjectStore have weak links only and prevent hard links in other dsl places so that only links between objects remain. Then prevent Python GC to automatically delete objects that are not used anymore and use gc.collect() to obtain a list of objects that are both not reachable and cannot be destroyed and then destroy them in the correct order. Targets-blueprint: dependency-driven-resource-deallocation Closes-Bug: #1619635 Closes-Bug: #1597747 Change-Id: I653d8f71f003afa0a1ea588c9d14198571f5ad14
68 lines
2.4 KiB
Python
68 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
|
|
|
|
import six
|
|
|
|
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 six.iteritems(self._attributes)
|
|
for key2, value in six.iteritems(inner)
|
|
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)
|