
ObjectStore is a container for all of the objects that are either loaded from object model or created at runtime. Thus ObjectStore instance is required in order to either use new() function or use class() contract with object model snippet. In current implementation each object had a object_store property that was pointing to the ObjectStore instance used to create it (the one that has the object). In order to create new object an ObjectStore of the $this object was used for that purpose. This approach caused several issues: * There is no $this object in static methods and thus no way to obtain current ObjectStore * Objects are bind to their stores so temporary ObjectStore instances cannot be used to load object graphs This refactoring moves ObjectStore instances to the thread-local attribute. Thus there is always a "current" ObjectStore. Also because ObjectStore has a reference to the MuranoDslExecutor instance it becomes possible to get current executor and everything else that it contains (current execution session, attribute store, package loader) from the local thread storage without passing it in the hidden context variables. Change-Id: I19a08b391486c1ae1b98ca559c8d3fafaca6e1ef
84 lines
3.0 KiB
Python
84 lines
3.0 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 sys
|
|
import weakref
|
|
|
|
import six
|
|
|
|
from murano.dsl import dsl_types
|
|
from murano.dsl import exceptions
|
|
from murano.dsl import helpers
|
|
from murano.dsl import meta
|
|
from murano.dsl import typespec
|
|
|
|
|
|
class MuranoProperty(dsl_types.MuranoProperty, typespec.Spec,
|
|
meta.MetaProvider):
|
|
def __init__(self, declaring_type, property_name, declaration):
|
|
super(MuranoProperty, self).__init__(declaration, declaring_type)
|
|
self._property_name = property_name
|
|
self._declaring_type = weakref.ref(declaring_type)
|
|
self._usage = declaration.get('Usage') or dsl_types.PropertyUsages.In
|
|
if self._usage not in dsl_types.PropertyUsages.All:
|
|
raise exceptions.DslSyntaxError(
|
|
'Unknown usage {0}. Must be one of ({1})'.format(
|
|
self._usage, ', '.join(dsl_types.PropertyUsages.All)))
|
|
self._meta = meta.MetaData(
|
|
declaration.get('Meta'),
|
|
dsl_types.MetaTargets.Property, declaring_type)
|
|
self._meta_values = None
|
|
|
|
def transform(self, *args, **kwargs):
|
|
try:
|
|
return super(MuranoProperty, self).transform(*args, **kwargs)
|
|
except exceptions.ContractViolationException as e:
|
|
msg = u'[{0}.{1}{2}] {3}'.format(
|
|
self.declaring_type.name, self.name, e.path, six.text_type(e))
|
|
six.reraise(exceptions.ContractViolationException,
|
|
exceptions.ContractViolationException(msg),
|
|
sys.exc_info()[2])
|
|
|
|
@property
|
|
def declaring_type(self):
|
|
return self._declaring_type()
|
|
|
|
@property
|
|
def name(self):
|
|
return self._property_name
|
|
|
|
@property
|
|
def usage(self):
|
|
return self._usage
|
|
|
|
def get_meta(self, context):
|
|
def meta_producer(cls):
|
|
prop = cls.properties.get(self.name)
|
|
if prop is None:
|
|
return None
|
|
return prop._meta
|
|
|
|
if self._meta_values is None:
|
|
executor = helpers.get_executor()
|
|
context = executor.create_type_context(
|
|
self.declaring_type, caller_context=context)
|
|
|
|
self._meta_values = meta.merge_providers(
|
|
self.declaring_type, meta_producer, context)
|
|
return self._meta_values
|
|
|
|
def __repr__(self):
|
|
return 'MuranoProperty({type}::{name})'.format(
|
|
type=self.declaring_type.name, name=self.name)
|