782808db60
The Unicode type is 'unicode' in Python 2 and 'str' on Python 3. This patch replaces unicode with six.text_type to make Murano more compatible with Python 3. Also it replaces the tuple '(str, unicode)' with six.string_types for instance comparision. Blueprint murano-python-3-support Change-Id: I4db27afdb556ec30dd36d7d4e170055274edfa8b
97 lines
3.4 KiB
Python
97 lines
3.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 six
|
|
import sys
|
|
import weakref
|
|
|
|
from murano.dsl import exceptions
|
|
from murano.dsl import type_scheme
|
|
|
|
|
|
class PropertyUsages(object):
|
|
In = 'In'
|
|
Out = 'Out'
|
|
InOut = 'InOut'
|
|
Runtime = 'Runtime'
|
|
Const = 'Const'
|
|
Config = 'Config'
|
|
All = set([In, Out, InOut, Runtime, Const, Config])
|
|
Writable = set([Out, InOut, Runtime])
|
|
|
|
|
|
class Spec(object):
|
|
def __init__(self, declaration, container_class):
|
|
self._container_class = weakref.ref(container_class)
|
|
self._contract = type_scheme.TypeScheme(declaration['Contract'])
|
|
self._usage = declaration.get('Usage') or 'In'
|
|
self._default = declaration.get('Default')
|
|
self._has_default = 'Default' in declaration
|
|
if self._usage not in PropertyUsages.All:
|
|
raise exceptions.DslSyntaxError(
|
|
'Unknown type {0}. Must be one of ({1})'.format(
|
|
self._usage, ', '.join(PropertyUsages.All)))
|
|
|
|
def validate(self, value, this, owner, default=None):
|
|
if default is None:
|
|
default = self.default
|
|
return self._contract(
|
|
value, this.object_store.executor.create_object_context(
|
|
this.cast(self._container_class())),
|
|
this, owner, default)
|
|
|
|
@property
|
|
def default(self):
|
|
return self._default
|
|
|
|
@property
|
|
def has_default(self):
|
|
return self._has_default
|
|
|
|
@property
|
|
def usage(self):
|
|
return self._usage
|
|
|
|
|
|
class PropertySpec(Spec):
|
|
def __init__(self, property_name, declaration, container_class):
|
|
super(PropertySpec, self).__init__(declaration, container_class)
|
|
self.property_name = property_name
|
|
self.class_name = container_class.name
|
|
|
|
def validate(self, *args, **kwargs):
|
|
try:
|
|
return super(PropertySpec, self).validate(*args, **kwargs)
|
|
except exceptions.ContractViolationException as e:
|
|
msg = u'[{0}.{1}{2}] {3}'.format(
|
|
self.class_name, self.property_name, e.path, six.text_type(e))
|
|
raise exceptions.ContractViolationException, msg, sys.exc_info()[2]
|
|
|
|
|
|
class ArgumentSpec(Spec):
|
|
def __init__(self, method_name, arg_name, declaration, container_class):
|
|
super(ArgumentSpec, self).__init__(declaration, container_class)
|
|
self.method_name = method_name
|
|
self.arg_name = arg_name
|
|
self.class_name = container_class.name
|
|
|
|
def validate(self, *args, **kwargs):
|
|
try:
|
|
return super(ArgumentSpec, self).validate(*args, **kwargs)
|
|
except exceptions.ContractViolationException as e:
|
|
msg = u'[{0}::{1}({2}{3})] {4}'.format(
|
|
self.class_name, self.method_name, self.arg_name,
|
|
e.path, six.text_type(e))
|
|
raise exceptions.ContractViolationException, msg, sys.exc_info()[2]
|