16030aeec8
This commit reworks mechanism how context chain is built at each point. The goal was to make entire chain be dependent on format version number. This would allow for example to use yaql 1.0 legacy mode context for MuranoPL/1.0 and not to use it for 2.0. Not the entire chain is built on demand up to the root instead of attaching to existed parent context as it was before. DSL host (engine) is no more required to have custom MuranoDslExecutor implementation but a new ContextManager interface that is used to control contexts on each layer. Engine uses this interface to register system classes and engine level yaql functions. Also a ContextManager is a foundation for method mocking because now all MuranoPL methods are yaql functions stored in context and with ContextManager it is possible to inject/replace function in each scope ( global, package, class, object) Partially implements: blueprint murano-versioning Change-Id: I0a553e8044061fe780a83bc04d70b8f80580988f
78 lines
2.6 KiB
Python
78 lines
2.6 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 yaml
|
|
import yaml.composer
|
|
import yaml.constructor
|
|
|
|
from murano.dsl import dsl_types
|
|
from murano.dsl import helpers
|
|
from murano.dsl import yaql_expression
|
|
|
|
|
|
@helpers.memoize
|
|
def get_loader(version):
|
|
version = helpers.parse_version(version)
|
|
|
|
class MuranoPlDict(dict):
|
|
pass
|
|
|
|
class YaqlExpression(yaql_expression.YaqlExpression):
|
|
@staticmethod
|
|
def match(expr):
|
|
return yaql_expression.YaqlExpression.is_expression(expr, version)
|
|
|
|
def load(contents, file_id):
|
|
def build_position(node):
|
|
return dsl_types.ExpressionFilePosition(
|
|
file_id,
|
|
node.start_mark.line + 1,
|
|
node.start_mark.column + 1,
|
|
node.end_mark.line + 1,
|
|
node.end_mark.column + 1)
|
|
|
|
class MuranoPlYamlConstructor(yaml.constructor.Constructor):
|
|
def construct_yaml_map(self, node):
|
|
data = MuranoPlDict()
|
|
data.source_file_position = build_position(node)
|
|
yield data
|
|
value = self.construct_mapping(node)
|
|
data.update(value)
|
|
|
|
class YaqlYamlLoader(yaml.Loader, MuranoPlYamlConstructor):
|
|
pass
|
|
|
|
YaqlYamlLoader.add_constructor(
|
|
u'tag:yaml.org,2002:map',
|
|
MuranoPlYamlConstructor.construct_yaml_map)
|
|
|
|
# workaround for PyYAML bug: http://pyyaml.org/ticket/221
|
|
resolvers = {}
|
|
for k, v in yaml.Loader.yaml_implicit_resolvers.items():
|
|
resolvers[k] = v[:]
|
|
YaqlYamlLoader.yaml_implicit_resolvers = resolvers
|
|
|
|
def yaql_constructor(loader, node):
|
|
value = loader.construct_scalar(node)
|
|
result = yaql_expression.YaqlExpression(value, version)
|
|
result.source_file_position = build_position(node)
|
|
return result
|
|
|
|
YaqlYamlLoader.add_constructor(u'!yaql', yaql_constructor)
|
|
YaqlYamlLoader.add_implicit_resolver(u'!yaql', YaqlExpression, None)
|
|
return yaml.load(contents, Loader=YaqlYamlLoader)
|
|
|
|
return load
|