9f9f22cd80
Fixed E122, E123 errors. All other ignores are to be removed in the next sequence of patches. Change-Id: I4b3edd9d1b2804ea7de255136da01b19f32abe1c
88 lines
2.8 KiB
Python
88 lines
2.8 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2011, OpenStack LLC.
|
|
# Copyright 2012, Red Hat, 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 socket
|
|
import uuid
|
|
|
|
from glance.common import exception
|
|
from glance.openstack.common import cfg
|
|
from glance.openstack.common import importutils
|
|
import glance.openstack.common.log as logging
|
|
from glance.openstack.common import timeutils
|
|
|
|
notifier_opts = [
|
|
cfg.StrOpt('notifier_strategy', default='default')
|
|
]
|
|
|
|
CONF = cfg.CONF
|
|
CONF.register_opts(notifier_opts)
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
_STRATEGY_ALIASES = {
|
|
"logging": "glance.notifier.notify_log.LoggingStrategy",
|
|
"rabbit": "glance.notifier.notify_kombu.RabbitStrategy",
|
|
"qpid": "glance.notifier.notify_qpid.QpidStrategy",
|
|
"noop": "glance.notifier.notify_noop.NoopStrategy",
|
|
"default": "glance.notifier.notify_noop.NoopStrategy",
|
|
}
|
|
|
|
|
|
class Notifier(object):
|
|
"""Uses a notification strategy to send out messages about events."""
|
|
|
|
def __init__(self, strategy=None):
|
|
_strategy = CONF.notifier_strategy
|
|
try:
|
|
strategy = _STRATEGY_ALIASES[_strategy]
|
|
msg = _('Converted strategy alias %s to %s')
|
|
LOG.debug(msg % (_strategy, strategy))
|
|
except KeyError:
|
|
strategy = _strategy
|
|
LOG.debug(_('No strategy alias found for %s') % strategy)
|
|
|
|
try:
|
|
strategy_class = importutils.import_class(strategy)
|
|
except ImportError:
|
|
raise exception.InvalidNotifierStrategy(strategy=strategy)
|
|
else:
|
|
self.strategy = strategy_class()
|
|
|
|
@staticmethod
|
|
def generate_message(event_type, priority, payload):
|
|
return {
|
|
"message_id": str(uuid.uuid4()),
|
|
"publisher_id": socket.gethostname(),
|
|
"event_type": event_type,
|
|
"priority": priority,
|
|
"payload": payload,
|
|
"timestamp": str(timeutils.utcnow()),
|
|
}
|
|
|
|
def warn(self, event_type, payload):
|
|
msg = self.generate_message(event_type, "WARN", payload)
|
|
self.strategy.warn(msg)
|
|
|
|
def info(self, event_type, payload):
|
|
msg = self.generate_message(event_type, "INFO", payload)
|
|
self.strategy.info(msg)
|
|
|
|
def error(self, event_type, payload):
|
|
msg = self.generate_message(event_type, "ERROR", payload)
|
|
self.strategy.error(msg)
|