f963039bd7
The builtin basestring abstract type was removed in python3, use str instead, we need to use six.string_types to replace the basestring for py3 compatibility. This patch was generated by the following tool using 'basestring' option. https://github.com/haypo/sixer Command: python sixer.py -w basestring murano/ This also adds a check to murano/hacking/checks.py that should catch this error in the future. Blueprint murano-python-3-support Change-Id: I26c236ce6dd2fffd6a4ca50e55ad62deb01bd9dd
63 lines
2.0 KiB
Python
63 lines
2.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.
|
|
|
|
|
|
from oslo_config import cfg
|
|
import oslo_messaging as messaging
|
|
import six
|
|
|
|
from murano.common import uuidutils
|
|
from murano.dsl import dsl
|
|
|
|
CONF = cfg.CONF
|
|
|
|
|
|
@dsl.name('io.murano.system.StatusReporter')
|
|
class StatusReporter(object):
|
|
transport = None
|
|
|
|
def __init__(self, environment):
|
|
if StatusReporter.transport is None:
|
|
StatusReporter.transport = messaging.get_transport(CONF)
|
|
self._notifier = messaging.Notifier(
|
|
StatusReporter.transport,
|
|
publisher_id=uuidutils.generate_uuid(),
|
|
topic='murano')
|
|
if isinstance(environment, six.string_types):
|
|
self._environment_id = environment
|
|
else:
|
|
self._environment_id = environment.id
|
|
|
|
def _report(self, instance, msg, details=None, level='info'):
|
|
body = {
|
|
'id': (self._environment_id if instance is None
|
|
else instance.id),
|
|
'text': msg,
|
|
'details': details,
|
|
'level': level,
|
|
'environment_id': self._environment_id
|
|
}
|
|
self._notifier.info({}, 'murano.report_notification', body)
|
|
|
|
def report(self, instance, msg):
|
|
self._report(instance, msg)
|
|
|
|
def report_error_(self, instance, msg):
|
|
self._report(instance, msg, None, 'error')
|
|
|
|
@dsl.name('report_error')
|
|
def report_error(self, instance, msg):
|
|
self._report(instance, msg, None, 'error')
|