068831ccd8
With this change MuranoPackage becomes first-class DSL citizen. Packages have version, runtime_version (that is specified in Format attribute of the manifest file) and a list of classes. Previously engine used to have package loader which had most of "load" functionality and class loader that mostly acted as an adapter from package loader to interface that DSL used to get classes. Now class loader is gone and is replaced with package loader at the DSL level. Package loader is responsible for loading packages by either package or class name (as it was before) plus semantic_version spec (for example ">=1.2,<2.0"). Package loader can now keep track of several versions of the same package. Also packages now have requirements with version specs. All class names that are encountered in application code are looked up within requirements only. As a consequence packages that use other packages without referencing them explicitly will become broken. An exception from this rule is core library which is referenced automatically. Partially implements: blueprint murano-versioning Change-Id: I8789ba45b6210e71bf4977a766f82b66d2a2d270
59 lines
1.9 KiB
Python
59 lines
1.9 KiB
Python
# Copyright (c) 2013 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 json as jsonlib
|
|
|
|
import yaml as yamllib
|
|
|
|
from murano.dsl import dsl
|
|
from murano.dsl import helpers
|
|
|
|
if hasattr(yamllib, 'CSafeLoader'):
|
|
yaml_loader = yamllib.CSafeLoader
|
|
else:
|
|
yaml_loader = yamllib.SafeLoader
|
|
|
|
|
|
def _construct_yaml_str(self, node):
|
|
# Override the default string handling function
|
|
# to always return unicode objects
|
|
return self.construct_scalar(node)
|
|
|
|
yaml_loader.add_constructor(u'tag:yaml.org,2002:str', _construct_yaml_str)
|
|
# Unquoted dates like 2013-05-23 in yaml files get loaded as objects of type
|
|
# datetime.data which causes problems in API layer when being processed by
|
|
# oslo.serialization.jsonutils. Therefore, make unicode string out of
|
|
# timestamps until jsonutils can handle dates.
|
|
yaml_loader.add_constructor(u'tag:yaml.org,2002:timestamp',
|
|
_construct_yaml_str)
|
|
|
|
|
|
@dsl.name('io.murano.system.Resources')
|
|
class ResourceManager(object):
|
|
def __init__(self, context):
|
|
murano_class = helpers.get_type(helpers.get_caller_context(context))
|
|
self._package = murano_class.package
|
|
|
|
def string(self, name):
|
|
path = self._package.get_resource(name)
|
|
with open(path) as file:
|
|
return file.read()
|
|
|
|
def json(self, name):
|
|
return jsonlib.loads(self.string(name))
|
|
|
|
def yaml(self, name):
|
|
return yamllib.load(self.string(name), Loader=yaml_loader)
|