Port to oslo.messaging
The oslo.messaging library takes the existing RPC code from oslo and
wraps it in a sane API with well defined semantics around which we can
make a commitment to retain compatibility in future.
The patch is large, but the changes can be summarized as:
* oslo.messaging>=1.3.0a4 is required; a proper 1.3.0 release will be
pushed before the icehouse release candidates.
* The new rpc module has init() and cleanup() methods which manage the
global oslo.messaging transport state. The TRANSPORT and NOTIFIER
globals are conceptually similar to the current RPCIMPL global,
except we're free to create and use alternate Transport objects
in e.g. the cells code.
* The rpc.get_{client,server,notifier}() methods are just helpers
which wrap the global messaging state, specifiy serializers and
specify the use of the eventlet executor.
* In oslo.messaging, a request context is expected to be a dict so
we add a RequestContextSerializer which can serialize to and from
dicts using RequestContext.{to,from}_dict()
* The allowed_rpc_exception_modules configuration option is replaced
by an allowed_remote_exmods get_transport() parameter. This is not
something that users ever need to configure, but it is something
each project using oslo.messaging needs to be able to customize.
* The nova.rpcclient module is removed; it was only a helper class
to allow us split a lot of the more tedious changes out of this
patch.
* Finalizing the port from RpcProxy to RPCClient is straightforward.
We put the default topic, version and namespace into a Target and
contstruct the client using that.
* Porting endpoint classes (like ComputeManager) just involves setting
a target attribute on the class.
* The @client_exceptions() decorator has been renamed to
@expected_exceptions since it's used on the server side to designate
exceptions we expect the decorated method to raise.
* We maintain a global NOTIFIER object and create specializations of
it with specific publisher IDs in order to avoid notification driver
loading overhead.
* rpc.py contains transport aliases for backwards compatibility
purposes. setup.cfg also contains notification driver aliases for
backwards compat.
* The messaging options are moved about in nova.conf.sample because
the options are advertised via a oslo.config.opts entry point and
picked up by the generator.
* We use messaging.ConfFixture in tests to override oslo.messaging
config options, rather than making assumptions about the options
registered by the library.
The porting of cells code is particularly tricky:
* messaging.TransportURL parse() and str() replaces the
[un]parse_transport_url() methods. Note the complication that an
oslo.messaging transport URL can actually have multiple hosts in
order to support message broker clustering. Also the complication
of transport aliases in rpc.get_transport_url().
* proxy_rpc_to_manager() is fairly nasty. Right now, we're proxying
the on-the-wire message format over this call, but you can't supply
such messages to oslo.messaging's cast()/call() methods. Rather than
change the inter-cell RPC API to suit oslo.messaging, we instead
just unpack the topic, server, method and args from the message on
the remote side.
cells_api.RPCClientCellsProxy is a mock RPCClient implementation
which allows us to wrap up a RPC in the message format currently
used for inter-cell RPCs.
* Similarly, proxy_rpc_to_manager uses the on-the-wire format for
exception serialization, but this format is an implementation detail
of oslo.messaging's transport drivers. So, we need to duplicate the
exception serialization code in cells.messaging. We may find a way
to reconcile this in future - for example a ExceptionSerializer
class might work, but with the current format it might be difficult
for the deserializer to generically detect a serialized exception.
* CellsRPCDriver.start_servers() and InterCellRPCAPI._get_client()
need close review, but they're pretty straightforward ports of code
to listen on some specialized topics and connect to a remote cell
using its transport URL.
blueprint: oslo-messaging
Change-Id: Ib613e6300f2c215be90f924afbd223a3da053a69
This commit is contained in:
+196
-243
@@ -1,5 +1,192 @@
|
||||
[DEFAULT]
|
||||
|
||||
#
|
||||
# Options defined in oslo.messaging
|
||||
#
|
||||
|
||||
# Use durable queues in amqp. (boolean value)
|
||||
# Deprecated group/name - [DEFAULT]/rabbit_durable_queues
|
||||
#amqp_durable_queues=false
|
||||
|
||||
# Auto-delete queues in amqp. (boolean value)
|
||||
#amqp_auto_delete=false
|
||||
|
||||
# Size of RPC connection pool (integer value)
|
||||
#rpc_conn_pool_size=30
|
||||
|
||||
# Modules of exceptions that are permitted to be recreatedupon
|
||||
# receiving exception data from an rpc call. (list value)
|
||||
#allowed_rpc_exception_modules=oslo.messaging.exceptions,nova.exception,cinder.exception,exceptions
|
||||
|
||||
# Qpid broker hostname (string value)
|
||||
#qpid_hostname=localhost
|
||||
|
||||
# Qpid broker port (integer value)
|
||||
#qpid_port=5672
|
||||
|
||||
# Qpid HA cluster host:port pairs (list value)
|
||||
#qpid_hosts=$qpid_hostname:$qpid_port
|
||||
|
||||
# Username for Qpid connection (string value)
|
||||
#qpid_username=
|
||||
|
||||
# Password for Qpid connection (string value)
|
||||
#qpid_password=
|
||||
|
||||
# Space separated list of SASL mechanisms to use for auth
|
||||
# (string value)
|
||||
#qpid_sasl_mechanisms=
|
||||
|
||||
# Seconds between connection keepalive heartbeats (integer
|
||||
# value)
|
||||
#qpid_heartbeat=60
|
||||
|
||||
# Transport to use, either 'tcp' or 'ssl' (string value)
|
||||
#qpid_protocol=tcp
|
||||
|
||||
# Disable Nagle algorithm (boolean value)
|
||||
#qpid_tcp_nodelay=true
|
||||
|
||||
# The qpid topology version to use. Version 1 is what was
|
||||
# originally used by impl_qpid. Version 2 includes some
|
||||
# backwards-incompatible changes that allow broker federation
|
||||
# to work. Users should update to version 2 when they are
|
||||
# able to take everything down, as it requires a clean break.
|
||||
# (integer value)
|
||||
#qpid_topology_version=1
|
||||
|
||||
# SSL version to use (valid only if SSL enabled). valid values
|
||||
# are TLSv1, SSLv23 and SSLv3. SSLv2 may be available on some
|
||||
# distributions (string value)
|
||||
#kombu_ssl_version=
|
||||
|
||||
# SSL key file (valid only if SSL enabled) (string value)
|
||||
#kombu_ssl_keyfile=
|
||||
|
||||
# SSL cert file (valid only if SSL enabled) (string value)
|
||||
#kombu_ssl_certfile=
|
||||
|
||||
# SSL certification authority file (valid only if SSL enabled)
|
||||
# (string value)
|
||||
#kombu_ssl_ca_certs=
|
||||
|
||||
# The RabbitMQ broker address where a single node is used
|
||||
# (string value)
|
||||
#rabbit_host=localhost
|
||||
|
||||
# The RabbitMQ broker port where a single node is used
|
||||
# (integer value)
|
||||
#rabbit_port=5672
|
||||
|
||||
# RabbitMQ HA cluster host:port pairs (list value)
|
||||
#rabbit_hosts=$rabbit_host:$rabbit_port
|
||||
|
||||
# Connect over SSL for RabbitMQ (boolean value)
|
||||
#rabbit_use_ssl=false
|
||||
|
||||
# The RabbitMQ userid (string value)
|
||||
#rabbit_userid=guest
|
||||
|
||||
# The RabbitMQ password (string value)
|
||||
#rabbit_password=guest
|
||||
|
||||
# The RabbitMQ virtual host (string value)
|
||||
#rabbit_virtual_host=/
|
||||
|
||||
# How frequently to retry connecting with RabbitMQ (integer
|
||||
# value)
|
||||
#rabbit_retry_interval=1
|
||||
|
||||
# How long to backoff for between retries when connecting to
|
||||
# RabbitMQ (integer value)
|
||||
#rabbit_retry_backoff=2
|
||||
|
||||
# Maximum number of RabbitMQ connection retries. Default is 0
|
||||
# (infinite retry count) (integer value)
|
||||
#rabbit_max_retries=0
|
||||
|
||||
# Use HA queues in RabbitMQ (x-ha-policy: all). If you change
|
||||
# this option, you must wipe the RabbitMQ database. (boolean
|
||||
# value)
|
||||
#rabbit_ha_queues=false
|
||||
|
||||
# If passed, use a fake RabbitMQ provider (boolean value)
|
||||
#fake_rabbit=false
|
||||
|
||||
# ZeroMQ bind address. Should be a wildcard (*), an ethernet
|
||||
# interface, or IP. The "host" option should point or resolve
|
||||
# to this address. (string value)
|
||||
#rpc_zmq_bind_address=*
|
||||
|
||||
# MatchMaker driver (string value)
|
||||
#rpc_zmq_matchmaker=oslo.messaging._drivers.matchmaker.MatchMakerLocalhost
|
||||
|
||||
# ZeroMQ receiver listening port (integer value)
|
||||
#rpc_zmq_port=9501
|
||||
|
||||
# Number of ZeroMQ contexts, defaults to 1 (integer value)
|
||||
#rpc_zmq_contexts=1
|
||||
|
||||
# Maximum number of ingress messages to locally buffer per
|
||||
# topic. Default is unlimited. (integer value)
|
||||
#rpc_zmq_topic_backlog=<None>
|
||||
|
||||
# Directory for holding IPC sockets (string value)
|
||||
#rpc_zmq_ipc_dir=/var/run/openstack
|
||||
|
||||
# Name of this node. Must be a valid hostname, FQDN, or IP
|
||||
# address. Must match "host" option, if running Nova. (string
|
||||
# value)
|
||||
#rpc_zmq_host=nova
|
||||
|
||||
# Seconds to wait before a cast expires (TTL). Only supported
|
||||
# by impl_zmq. (integer value)
|
||||
#rpc_cast_timeout=30
|
||||
|
||||
# Heartbeat frequency (integer value)
|
||||
#matchmaker_heartbeat_freq=300
|
||||
|
||||
# Heartbeat time-to-live. (integer value)
|
||||
#matchmaker_heartbeat_ttl=600
|
||||
|
||||
# Host to locate redis (string value)
|
||||
#host=127.0.0.1
|
||||
|
||||
# Use this port to connect to redis host. (integer value)
|
||||
#port=6379
|
||||
|
||||
# Password for Redis server. (optional) (string value)
|
||||
#password=<None>
|
||||
|
||||
# Size of RPC greenthread pool (integer value)
|
||||
#rpc_thread_pool_size=64
|
||||
|
||||
# Driver or drivers to handle sending notifications (multi
|
||||
# valued)
|
||||
#notification_driver=
|
||||
|
||||
# AMQP topic used for OpenStack notifications (list value)
|
||||
# Deprecated group/name - [rpc_notifier2]/topics
|
||||
#notification_topics=notifications
|
||||
|
||||
# Seconds to wait for a response from a call (integer value)
|
||||
#rpc_response_timeout=60
|
||||
|
||||
# A URL representing the messaging driver to use and its full
|
||||
# configuration. If not set, we fall back to the rpc_backend
|
||||
# option and driver specific configuration. (string value)
|
||||
#transport_url=<None>
|
||||
|
||||
# The messaging driver to use, defaults to rabbit. Other
|
||||
# drivers include qpid and zmq. (string value)
|
||||
#rpc_backend=rabbit
|
||||
|
||||
# The default exchange under which topics are scoped. May be
|
||||
# overridden by an exchange name specified in the
|
||||
# transport_url option. (string value)
|
||||
#control_exchange=openstack
|
||||
|
||||
|
||||
#
|
||||
# Options defined in nova.availability_zones
|
||||
#
|
||||
@@ -83,6 +270,14 @@
|
||||
# the API service. (boolean value)
|
||||
#notify_api_faults=false
|
||||
|
||||
# Default notification level for outgoing notifications
|
||||
# (string value)
|
||||
#default_notification_level=INFO
|
||||
|
||||
# Default publisher_id for outgoing notifications (string
|
||||
# value)
|
||||
#default_publisher_id=<None>
|
||||
|
||||
|
||||
#
|
||||
# Options defined in nova.paths
|
||||
@@ -1464,31 +1659,6 @@
|
||||
#memcached_servers=<None>
|
||||
|
||||
|
||||
#
|
||||
# Options defined in nova.openstack.common.notifier.api
|
||||
#
|
||||
|
||||
# Driver or drivers to handle sending notifications (multi
|
||||
# valued)
|
||||
#notification_driver=
|
||||
|
||||
# Default notification level for outgoing notifications
|
||||
# (string value)
|
||||
#default_notification_level=INFO
|
||||
|
||||
# Default publisher_id for outgoing notifications (string
|
||||
# value)
|
||||
#default_publisher_id=<None>
|
||||
|
||||
|
||||
#
|
||||
# Options defined in nova.openstack.common.notifier.rpc_notifier
|
||||
#
|
||||
|
||||
# AMQP topic used for OpenStack notifications (list value)
|
||||
#notification_topics=notifications
|
||||
|
||||
|
||||
#
|
||||
# Options defined in nova.openstack.common.periodic_task
|
||||
#
|
||||
@@ -1498,197 +1668,6 @@
|
||||
#run_external_periodic_tasks=true
|
||||
|
||||
|
||||
#
|
||||
# Options defined in nova.openstack.common.rpc
|
||||
#
|
||||
|
||||
# The messaging module to use, defaults to kombu. (string
|
||||
# value)
|
||||
#rpc_backend=nova.openstack.common.rpc.impl_kombu
|
||||
|
||||
# Size of RPC thread pool (integer value)
|
||||
#rpc_thread_pool_size=64
|
||||
|
||||
# Size of RPC connection pool (integer value)
|
||||
#rpc_conn_pool_size=30
|
||||
|
||||
# Seconds to wait for a response from call or multicall
|
||||
# (integer value)
|
||||
#rpc_response_timeout=60
|
||||
|
||||
# Seconds to wait before a cast expires (TTL). Only supported
|
||||
# by impl_zmq. (integer value)
|
||||
#rpc_cast_timeout=30
|
||||
|
||||
# Modules of exceptions that are permitted to be recreatedupon
|
||||
# receiving exception data from an rpc call. (list value)
|
||||
#allowed_rpc_exception_modules=nova.exception,cinder.exception,exceptions
|
||||
|
||||
# If passed, use a fake RabbitMQ provider (boolean value)
|
||||
#fake_rabbit=false
|
||||
|
||||
# AMQP exchange to connect to if using RabbitMQ or Qpid
|
||||
# (string value)
|
||||
#control_exchange=openstack
|
||||
|
||||
|
||||
#
|
||||
# Options defined in nova.openstack.common.rpc.amqp
|
||||
#
|
||||
|
||||
# Use durable queues in amqp. (boolean value)
|
||||
# Deprecated group/name - [DEFAULT]/rabbit_durable_queues
|
||||
#amqp_durable_queues=false
|
||||
|
||||
# Auto-delete queues in amqp. (boolean value)
|
||||
#amqp_auto_delete=false
|
||||
|
||||
|
||||
#
|
||||
# Options defined in nova.openstack.common.rpc.impl_kombu
|
||||
#
|
||||
|
||||
# SSL version to use (valid only if SSL enabled). valid values
|
||||
# are TLSv1, SSLv23 and SSLv3. SSLv2 may be available on some
|
||||
# distributions (string value)
|
||||
#kombu_ssl_version=
|
||||
|
||||
# SSL key file (valid only if SSL enabled) (string value)
|
||||
#kombu_ssl_keyfile=
|
||||
|
||||
# SSL cert file (valid only if SSL enabled) (string value)
|
||||
#kombu_ssl_certfile=
|
||||
|
||||
# SSL certification authority file (valid only if SSL enabled)
|
||||
# (string value)
|
||||
#kombu_ssl_ca_certs=
|
||||
|
||||
# The RabbitMQ broker address where a single node is used
|
||||
# (string value)
|
||||
#rabbit_host=localhost
|
||||
|
||||
# The RabbitMQ broker port where a single node is used
|
||||
# (integer value)
|
||||
#rabbit_port=5672
|
||||
|
||||
# RabbitMQ HA cluster host:port pairs (list value)
|
||||
#rabbit_hosts=$rabbit_host:$rabbit_port
|
||||
|
||||
# connect over SSL for RabbitMQ (boolean value)
|
||||
#rabbit_use_ssl=false
|
||||
|
||||
# the RabbitMQ userid (string value)
|
||||
#rabbit_userid=guest
|
||||
|
||||
# the RabbitMQ password (string value)
|
||||
#rabbit_password=guest
|
||||
|
||||
# the RabbitMQ virtual host (string value)
|
||||
#rabbit_virtual_host=/
|
||||
|
||||
# how frequently to retry connecting with RabbitMQ (integer
|
||||
# value)
|
||||
#rabbit_retry_interval=1
|
||||
|
||||
# how long to backoff for between retries when connecting to
|
||||
# RabbitMQ (integer value)
|
||||
#rabbit_retry_backoff=2
|
||||
|
||||
# maximum retries with trying to connect to RabbitMQ (the
|
||||
# default of 0 implies an infinite retry count) (integer
|
||||
# value)
|
||||
#rabbit_max_retries=0
|
||||
|
||||
# use H/A queues in RabbitMQ (x-ha-policy: all).You need to
|
||||
# wipe RabbitMQ database when changing this option. (boolean
|
||||
# value)
|
||||
#rabbit_ha_queues=false
|
||||
|
||||
|
||||
#
|
||||
# Options defined in nova.openstack.common.rpc.impl_qpid
|
||||
#
|
||||
|
||||
# Qpid broker hostname (string value)
|
||||
#qpid_hostname=localhost
|
||||
|
||||
# Qpid broker port (integer value)
|
||||
#qpid_port=5672
|
||||
|
||||
# Qpid HA cluster host:port pairs (list value)
|
||||
#qpid_hosts=$qpid_hostname:$qpid_port
|
||||
|
||||
# Username for qpid connection (string value)
|
||||
#qpid_username=
|
||||
|
||||
# Password for qpid connection (string value)
|
||||
#qpid_password=
|
||||
|
||||
# Space separated list of SASL mechanisms to use for auth
|
||||
# (string value)
|
||||
#qpid_sasl_mechanisms=
|
||||
|
||||
# Seconds between connection keepalive heartbeats (integer
|
||||
# value)
|
||||
#qpid_heartbeat=60
|
||||
|
||||
# Transport to use, either 'tcp' or 'ssl' (string value)
|
||||
#qpid_protocol=tcp
|
||||
|
||||
# Disable Nagle algorithm (boolean value)
|
||||
#qpid_tcp_nodelay=true
|
||||
|
||||
# The qpid topology version to use. Version 1 is what was
|
||||
# originally used by impl_qpid. Version 2 includes some
|
||||
# backwards-incompatible changes that allow broker federation
|
||||
# to work. Users should update to version 2 when they are
|
||||
# able to take everything down, as it requires a clean break.
|
||||
# (integer value)
|
||||
#qpid_topology_version=1
|
||||
|
||||
|
||||
#
|
||||
# Options defined in nova.openstack.common.rpc.impl_zmq
|
||||
#
|
||||
|
||||
# ZeroMQ bind address. Should be a wildcard (*), an ethernet
|
||||
# interface, or IP. The "host" option should point or resolve
|
||||
# to this address. (string value)
|
||||
#rpc_zmq_bind_address=*
|
||||
|
||||
# MatchMaker driver (string value)
|
||||
#rpc_zmq_matchmaker=nova.openstack.common.rpc.matchmaker.MatchMakerLocalhost
|
||||
|
||||
# ZeroMQ receiver listening port (integer value)
|
||||
#rpc_zmq_port=9501
|
||||
|
||||
# Number of ZeroMQ contexts, defaults to 1 (integer value)
|
||||
#rpc_zmq_contexts=1
|
||||
|
||||
# Maximum number of ingress messages to locally buffer per
|
||||
# topic. Default is unlimited. (integer value)
|
||||
#rpc_zmq_topic_backlog=<None>
|
||||
|
||||
# Directory for holding IPC sockets (string value)
|
||||
#rpc_zmq_ipc_dir=/var/run/openstack
|
||||
|
||||
# Name of this node. Must be a valid hostname, FQDN, or IP
|
||||
# address. Must match "host" option, if running Nova. (string
|
||||
# value)
|
||||
#rpc_zmq_host=nova
|
||||
|
||||
|
||||
#
|
||||
# Options defined in nova.openstack.common.rpc.matchmaker
|
||||
#
|
||||
|
||||
# Heartbeat frequency (integer value)
|
||||
#matchmaker_heartbeat_freq=300
|
||||
|
||||
# Heartbeat time-to-live. (integer value)
|
||||
#matchmaker_heartbeat_ttl=600
|
||||
|
||||
|
||||
#
|
||||
# Options defined in nova.pci.pci_request
|
||||
#
|
||||
@@ -2995,26 +2974,10 @@
|
||||
#qemu_allowed_storage_drivers=
|
||||
|
||||
|
||||
[matchmaker_redis]
|
||||
|
||||
#
|
||||
# Options defined in nova.openstack.common.rpc.matchmaker_redis
|
||||
#
|
||||
|
||||
# Host to locate redis (string value)
|
||||
#host=127.0.0.1
|
||||
|
||||
# Use this port to connect to redis host. (integer value)
|
||||
#port=6379
|
||||
|
||||
# Password for Redis server. (optional) (string value)
|
||||
#password=<None>
|
||||
|
||||
|
||||
[matchmaker_ring]
|
||||
|
||||
#
|
||||
# Options defined in nova.openstack.common.rpc.matchmaker_ring
|
||||
# Options defined in oslo.messaging
|
||||
#
|
||||
|
||||
# Matchmaker ring file (JSON) (string value)
|
||||
@@ -3080,16 +3043,6 @@
|
||||
#port=<None>
|
||||
|
||||
|
||||
[rpc_notifier2]
|
||||
|
||||
#
|
||||
# Options defined in nova.openstack.common.notifier.rpc_notifier2
|
||||
#
|
||||
|
||||
# AMQP topic(s) used for OpenStack notifications (list value)
|
||||
#topics=notifications
|
||||
|
||||
|
||||
[spice]
|
||||
|
||||
#
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
# Copyright 2011-2012 OpenStack Foundation
|
||||
# All Rights Reserved.
|
||||
# Copyright 2013 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
|
||||
@@ -18,6 +19,7 @@
|
||||
"""The cells extension."""
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
import six
|
||||
from webob import exc
|
||||
|
||||
@@ -25,7 +27,6 @@ from nova.api.openstack import common
|
||||
from nova.api.openstack import extensions
|
||||
from nova.api.openstack import wsgi
|
||||
from nova.api.openstack import xmlutil
|
||||
from nova.cells import rpc_driver
|
||||
from nova.cells import rpcapi as cells_rpcapi
|
||||
from nova.compute import api as compute
|
||||
from nova import exception
|
||||
@@ -33,6 +34,7 @@ from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import strutils
|
||||
from nova.openstack.common import timeutils
|
||||
from nova import rpc
|
||||
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
@@ -153,12 +155,17 @@ def _fixup_cell_info(cell_info, keys):
|
||||
# Disassemble the transport URL
|
||||
transport_url = cell_info.pop('transport_url')
|
||||
try:
|
||||
transport = rpc_driver.parse_transport_url(transport_url)
|
||||
except ValueError:
|
||||
transport_url = rpc.get_transport_url(transport_url)
|
||||
except messaging.InvalidTransportURL:
|
||||
# Just go with None's
|
||||
for key in keys:
|
||||
cell_info.setdefault(key, None)
|
||||
return cell_info
|
||||
return
|
||||
|
||||
if not transport_url.hosts:
|
||||
return
|
||||
|
||||
transport_host = transport_url.hosts[0]
|
||||
|
||||
transport_field_map = {'rpc_host': 'hostname', 'rpc_port': 'port'}
|
||||
for key in keys:
|
||||
@@ -166,7 +173,7 @@ def _fixup_cell_info(cell_info, keys):
|
||||
continue
|
||||
|
||||
transport_field = transport_field_map.get(key, key)
|
||||
cell_info[key] = transport[transport_field]
|
||||
cell_info[key] = getattr(transport_host, transport_field)
|
||||
|
||||
|
||||
def _scrub_cell(cell, detail=False):
|
||||
@@ -308,10 +315,15 @@ class Controller(object):
|
||||
cell['is_parent'] = False
|
||||
|
||||
# Now we disassemble the existing transport URL...
|
||||
transport = {}
|
||||
if existing and 'transport_url' in existing:
|
||||
transport = rpc_driver.parse_transport_url(
|
||||
existing['transport_url'])
|
||||
transport_url = existing.get('transport_url') if existing else None
|
||||
transport_url = rpc.get_transport_url(transport_url)
|
||||
|
||||
if 'rpc_virtual_host' in cell:
|
||||
transport_url.virtual_host = cell.pop('rpc_virtual_host')
|
||||
|
||||
if not transport_url.hosts:
|
||||
transport_url.hosts.append(messaging.TransportHost())
|
||||
transport_host = transport_url.hosts[0]
|
||||
|
||||
# Copy over the input fields
|
||||
transport_field_map = {
|
||||
@@ -319,19 +331,14 @@ class Controller(object):
|
||||
'password': 'password',
|
||||
'hostname': 'rpc_host',
|
||||
'port': 'rpc_port',
|
||||
'virtual_host': 'rpc_virtual_host',
|
||||
}
|
||||
for key, input_field in transport_field_map.items():
|
||||
# Set the default value of the field; using setdefault()
|
||||
# lets us avoid overriding the existing transport URL
|
||||
transport.setdefault(key, None)
|
||||
|
||||
# Only override the value if we're given an override
|
||||
if input_field in cell:
|
||||
transport[key] = cell.pop(input_field)
|
||||
setattr(transport_host, key, cell.pop(input_field))
|
||||
|
||||
# Now set the transport URL
|
||||
cell['transport_url'] = rpc_driver.unparse_transport_url(transport)
|
||||
cell['transport_url'] = str(transport_url)
|
||||
|
||||
@wsgi.serializers(xml=CellTemplate)
|
||||
@wsgi.deserializers(xml=CellDeserializer)
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
# Copyright 2011-2012 OpenStack Foundation
|
||||
# All Rights Reserved.
|
||||
# Copyright 2013 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
|
||||
@@ -18,13 +19,13 @@
|
||||
"""The cells extension."""
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
import six
|
||||
from webob import exc
|
||||
|
||||
from nova.api.openstack import common
|
||||
from nova.api.openstack import extensions
|
||||
from nova.api.openstack import wsgi
|
||||
from nova.cells import rpc_driver
|
||||
from nova.cells import rpcapi as cells_rpcapi
|
||||
from nova.compute import api as compute
|
||||
from nova import exception
|
||||
@@ -32,6 +33,7 @@ from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import strutils
|
||||
from nova.openstack.common import timeutils
|
||||
from nova import rpc
|
||||
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
@@ -64,12 +66,17 @@ def _fixup_cell_info(cell_info, keys):
|
||||
# Disassemble the transport URL
|
||||
transport_url = cell_info.pop('transport_url')
|
||||
try:
|
||||
transport = rpc_driver.parse_transport_url(transport_url)
|
||||
except ValueError:
|
||||
transport_url = rpc.get_transport_url(transport_url)
|
||||
except messaging.InvalidTransportURL:
|
||||
# Just go with None's
|
||||
for key in keys:
|
||||
cell_info.setdefault(key, None)
|
||||
return cell_info
|
||||
return
|
||||
|
||||
if not transport_url.hosts:
|
||||
return
|
||||
|
||||
transport_host = transport_url.hosts[0]
|
||||
|
||||
transport_field_map = {'rpc_host': 'hostname', 'rpc_port': 'port'}
|
||||
for key in keys:
|
||||
@@ -77,7 +84,7 @@ def _fixup_cell_info(cell_info, keys):
|
||||
continue
|
||||
|
||||
transport_field = transport_field_map.get(key, key)
|
||||
cell_info[key] = transport[transport_field]
|
||||
cell_info[key] = getattr(transport_host, transport_field)
|
||||
|
||||
|
||||
def _scrub_cell(cell, detail=False):
|
||||
@@ -216,10 +223,15 @@ class CellsController(object):
|
||||
cell['is_parent'] = False
|
||||
|
||||
# Now we disassemble the existing transport URL...
|
||||
transport = {}
|
||||
if existing and 'transport_url' in existing:
|
||||
transport = rpc_driver.parse_transport_url(
|
||||
existing['transport_url'])
|
||||
transport_url = existing.get('transport_url') if existing else None
|
||||
transport_url = rpc.get_transport_url(transport_url)
|
||||
|
||||
if 'rpc_virtual_host' in cell:
|
||||
transport_url.virtual_host = cell.pop('rpc_virtual_host')
|
||||
|
||||
if not transport_url.hosts:
|
||||
transport_url.hosts.append(messaging.TransportHost())
|
||||
transport_host = transport_url.hosts[0]
|
||||
|
||||
# Copy over the input fields
|
||||
transport_field_map = {
|
||||
@@ -227,19 +239,14 @@ class CellsController(object):
|
||||
'password': 'password',
|
||||
'hostname': 'rpc_host',
|
||||
'port': 'rpc_port',
|
||||
'virtual_host': 'rpc_virtual_host',
|
||||
}
|
||||
for key, input_field in transport_field_map.items():
|
||||
# Set the default value of the field; using setdefault()
|
||||
# lets us avoid overriding the existing transport URL
|
||||
transport.setdefault(key, None)
|
||||
|
||||
# Only override the value if we're given an override
|
||||
if input_field in cell:
|
||||
transport[key] = cell.pop(input_field)
|
||||
setattr(transport_host, key, cell.pop(input_field))
|
||||
|
||||
# Now set the transport URL
|
||||
cell['transport_url'] = rpc_driver.unparse_transport_url(transport)
|
||||
cell['transport_url'] = str(transport_url)
|
||||
|
||||
@extensions.expected_errors((400, 403))
|
||||
@wsgi.response(201)
|
||||
|
||||
@@ -19,6 +19,7 @@ import re
|
||||
import stevedore
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
import six
|
||||
import webob
|
||||
from webob import exc
|
||||
@@ -35,7 +36,6 @@ from nova.objects import block_device as block_device_obj
|
||||
from nova.objects import instance as instance_obj
|
||||
from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
from nova.openstack.common import strutils
|
||||
from nova.openstack.common import timeutils
|
||||
from nova.openstack.common import uuidutils
|
||||
@@ -515,7 +515,7 @@ class ServersController(wsgi.Controller):
|
||||
except exception.ConfigDriveInvalidValue:
|
||||
msg = _("Invalid config_drive provided.")
|
||||
raise exc.HTTPBadRequest(explanation=msg)
|
||||
except rpc_common.RemoteError as err:
|
||||
except messaging.RemoteError as err:
|
||||
msg = "%(err_type)s: %(err_msg)s" % {'err_type': err.exc_type,
|
||||
'err_msg': err.value}
|
||||
raise exc.HTTPBadRequest(explanation=msg)
|
||||
|
||||
@@ -19,6 +19,7 @@ import os
|
||||
import re
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
import six
|
||||
import webob
|
||||
from webob import exc
|
||||
@@ -35,7 +36,6 @@ from nova import exception
|
||||
from nova.objects import block_device as block_device_obj
|
||||
from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
from nova.openstack.common import strutils
|
||||
from nova.openstack.common import timeutils
|
||||
from nova.openstack.common import uuidutils
|
||||
@@ -963,7 +963,7 @@ class Controller(wsgi.Controller):
|
||||
except exception.ConfigDriveInvalidValue:
|
||||
msg = _("Invalid config_drive provided.")
|
||||
raise exc.HTTPBadRequest(explanation=msg)
|
||||
except rpc_common.RemoteError as err:
|
||||
except messaging.RemoteError as err:
|
||||
msg = "%(err_type)s: %(err_msg)s" % {'err_type': err.exc_type,
|
||||
'err_msg': err.value}
|
||||
raise exc.HTTPBadRequest(explanation=msg)
|
||||
|
||||
+9
-19
@@ -19,9 +19,10 @@ Base RPC client and server common to all services.
|
||||
"""
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova import rpcclient
|
||||
from nova import rpc
|
||||
|
||||
|
||||
CONF = cfg.CONF
|
||||
@@ -33,7 +34,7 @@ CONF.register_opt(rpcapi_cap_opt, 'upgrade_levels')
|
||||
_NAMESPACE = 'baseapi'
|
||||
|
||||
|
||||
class BaseAPI(rpcclient.RpcProxy):
|
||||
class BaseAPI(object):
|
||||
"""Client side of the base rpc API.
|
||||
|
||||
API version history:
|
||||
@@ -42,28 +43,18 @@ class BaseAPI(rpcclient.RpcProxy):
|
||||
1.1 - Add get_backdoor_port
|
||||
"""
|
||||
|
||||
#
|
||||
# NOTE(russellb): This is the default minimum version that the server
|
||||
# (manager) side must implement unless otherwise specified using a version
|
||||
# argument to self.call()/cast()/etc. here. It should be left as X.0 where
|
||||
# X is the current major API version (1.0, 2.0, ...). For more information
|
||||
# about rpc API versioning, see the docs in
|
||||
# openstack/common/rpc/dispatcher.py.
|
||||
#
|
||||
BASE_RPC_API_VERSION = '1.0'
|
||||
|
||||
VERSION_ALIASES = {
|
||||
# baseapi was added in havana
|
||||
}
|
||||
|
||||
def __init__(self, topic):
|
||||
super(BaseAPI, self).__init__()
|
||||
target = messaging.Target(topic=topic,
|
||||
namespace=_NAMESPACE,
|
||||
version='1.0')
|
||||
version_cap = self.VERSION_ALIASES.get(CONF.upgrade_levels.baseapi,
|
||||
CONF.upgrade_levels.baseapi)
|
||||
super(BaseAPI, self).__init__(topic=topic,
|
||||
default_version=self.BASE_RPC_API_VERSION,
|
||||
version_cap=version_cap)
|
||||
|
||||
self.client = self.get_client(namespace=_NAMESPACE)
|
||||
self.client = rpc.get_client(target, version_cap=version_cap)
|
||||
|
||||
def ping(self, context, arg, timeout=None):
|
||||
arg_p = jsonutils.to_primitive(arg)
|
||||
@@ -78,8 +69,7 @@ class BaseAPI(rpcclient.RpcProxy):
|
||||
class BaseRPCAPI(object):
|
||||
"""Server side of the base RPC API."""
|
||||
|
||||
RPC_API_NAMESPACE = _NAMESPACE
|
||||
RPC_API_VERSION = '1.1'
|
||||
target = messaging.Target(namespace=_NAMESPACE, version='1.1')
|
||||
|
||||
def __init__(self, service_name, backdoor_port):
|
||||
self.service_name = service_name
|
||||
|
||||
@@ -28,12 +28,12 @@ class BaseCellsDriver(object):
|
||||
One instance is also created by the cells manager for setting up
|
||||
the consumers.
|
||||
"""
|
||||
def start_consumers(self, msg_runner):
|
||||
"""Start any consumers the driver may need."""
|
||||
def start_servers(self, msg_runner):
|
||||
"""Start any messaging servers the driver may need."""
|
||||
raise NotImplementedError()
|
||||
|
||||
def stop_consumers(self):
|
||||
"""Stop consuming messages."""
|
||||
def stop_servers(self):
|
||||
"""Stop accepting messages."""
|
||||
raise NotImplementedError()
|
||||
|
||||
def send_message_to_cell(self, cell_state, message):
|
||||
|
||||
@@ -20,6 +20,7 @@ import datetime
|
||||
import time
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging as oslo_messaging
|
||||
|
||||
from nova.cells import messaging
|
||||
from nova.cells import state as cells_state
|
||||
@@ -56,8 +57,8 @@ class CellsManager(manager.Manager):
|
||||
messages coming from other cells. That communication is
|
||||
driver-specific.
|
||||
|
||||
Communication to other cells happens via the messaging module. The
|
||||
MessageRunner from that module will handle routing the message to
|
||||
Communication to other cells happens via the nova.cells.messaging module.
|
||||
The MessageRunner from that module will handle routing the message to
|
||||
the correct cell via the communications driver. Most methods below
|
||||
create 'targeted' (where we want to route a message to a specific cell)
|
||||
or 'broadcast' (where we want a message to go to multiple cells)
|
||||
@@ -65,7 +66,8 @@ class CellsManager(manager.Manager):
|
||||
|
||||
Scheduling requests get passed to the scheduler class.
|
||||
"""
|
||||
RPC_API_VERSION = '1.25'
|
||||
|
||||
target = oslo_messaging.Target(version='1.25')
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
# Mostly for tests.
|
||||
@@ -82,7 +84,7 @@ class CellsManager(manager.Manager):
|
||||
self.instances_to_heal = iter([])
|
||||
|
||||
def post_start_hook(self):
|
||||
"""Have the driver start its consumers for inter-cell communication.
|
||||
"""Have the driver start its servers for inter-cell communication.
|
||||
Also ask our child cells for their capacities and capabilities so
|
||||
we get them more quickly than just waiting for the next periodic
|
||||
update. Receiving the updates from the children will cause us to
|
||||
@@ -90,8 +92,8 @@ class CellsManager(manager.Manager):
|
||||
our parents immediately.
|
||||
"""
|
||||
# FIXME(comstud): There's currently no hooks when services are
|
||||
# stopping, so we have no way to stop consumers cleanly.
|
||||
self.driver.start_consumers(self.msg_runner)
|
||||
# stopping, so we have no way to stop servers cleanly.
|
||||
self.driver.start_servers(self.msg_runner)
|
||||
ctxt = context.get_admin_context()
|
||||
if self.state_manager.get_child_cells():
|
||||
self.msg_runner.ask_children_for_capabilities(ctxt)
|
||||
|
||||
+110
-10
@@ -1,5 +1,9 @@
|
||||
# Copyright (c) 2012 Rackspace Hosting
|
||||
# All Rights Reserved.
|
||||
# Copyright 2010 United States Government as represented by the
|
||||
# Administrator of the National Aeronautics and Space Administration.
|
||||
# All Rights Reserved.
|
||||
# Copyright 2013 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
|
||||
@@ -23,9 +27,12 @@ reached.
|
||||
The interface into this module is the MessageRunner class.
|
||||
"""
|
||||
import sys
|
||||
import traceback
|
||||
|
||||
from eventlet import queue
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
import six
|
||||
|
||||
from nova.cells import state as cells_state
|
||||
from nova.cells import utils as cells_utils
|
||||
@@ -45,10 +52,9 @@ from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import importutils
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import rpc
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
from nova.openstack.common import timeutils
|
||||
from nova.openstack.common import uuidutils
|
||||
from nova import rpc
|
||||
from nova import utils
|
||||
|
||||
|
||||
@@ -756,10 +762,19 @@ class _TargetedMessageMethods(_BaseMessageMethods):
|
||||
"""Proxy RPC to the given compute topic."""
|
||||
# Check that the host exists.
|
||||
self.db.service_get_by_compute_host(message.ctxt, host_name)
|
||||
|
||||
topic, _sep, server = topic.partition('.')
|
||||
|
||||
cctxt = rpc.get_client(messaging.Target(topic=topic,
|
||||
server=server or None))
|
||||
method = rpc_message['method']
|
||||
kwargs = rpc_message['args']
|
||||
|
||||
if message.need_response:
|
||||
return rpc.call(message.ctxt, topic, rpc_message,
|
||||
timeout=timeout)
|
||||
rpc.cast(message.ctxt, topic, rpc_message)
|
||||
cctxt = cctxt.prepare(timeout=timeout)
|
||||
return cctxt.call(message.ctxt, method, **kwargs)
|
||||
else:
|
||||
cctxt.cast(message.ctxt, method, **kwargs)
|
||||
|
||||
def compute_node_get(self, message, compute_id):
|
||||
"""Get compute node by ID."""
|
||||
@@ -1303,7 +1318,7 @@ class MessageRunner(object):
|
||||
def _create_response_message(self, ctxt, direction, target_cell,
|
||||
response_uuid, response_kwargs, **kwargs):
|
||||
"""Create a ResponseMessage. This is used internally within
|
||||
the messaging module.
|
||||
the nova.cells.messaging module.
|
||||
"""
|
||||
return _ResponseMessage(self, ctxt, 'parse_responses',
|
||||
response_kwargs, direction, target_cell,
|
||||
@@ -1803,8 +1818,8 @@ class Response(object):
|
||||
def to_json(self):
|
||||
resp_value = self.value
|
||||
if self.failure:
|
||||
resp_value = rpc_common.serialize_remote_exception(resp_value,
|
||||
log_failure=False)
|
||||
resp_value = serialize_remote_exception(resp_value,
|
||||
log_failure=False)
|
||||
_dict = {'cell_name': self.cell_name,
|
||||
'value': resp_value,
|
||||
'failure': self.failure}
|
||||
@@ -1814,8 +1829,8 @@ class Response(object):
|
||||
def from_json(cls, json_message):
|
||||
_dict = jsonutils.loads(json_message)
|
||||
if _dict['failure']:
|
||||
resp_value = rpc_common.deserialize_remote_exception(
|
||||
CONF, _dict['value'])
|
||||
resp_value = deserialize_remote_exception(_dict['value'],
|
||||
rpc.get_allowed_exmods())
|
||||
_dict['value'] = resp_value
|
||||
return cls(**_dict)
|
||||
|
||||
@@ -1826,3 +1841,88 @@ class Response(object):
|
||||
else:
|
||||
raise self.value
|
||||
return self.value
|
||||
|
||||
|
||||
_REMOTE_POSTFIX = '_Remote'
|
||||
|
||||
|
||||
def serialize_remote_exception(failure_info, log_failure=True):
|
||||
"""Prepares exception data to be sent over rpc.
|
||||
|
||||
Failure_info should be a sys.exc_info() tuple.
|
||||
|
||||
"""
|
||||
tb = traceback.format_exception(*failure_info)
|
||||
failure = failure_info[1]
|
||||
if log_failure:
|
||||
LOG.error(_("Returning exception %s to caller"),
|
||||
six.text_type(failure))
|
||||
LOG.error(tb)
|
||||
|
||||
kwargs = {}
|
||||
if hasattr(failure, 'kwargs'):
|
||||
kwargs = failure.kwargs
|
||||
|
||||
# NOTE(matiu): With cells, it's possible to re-raise remote, remote
|
||||
# exceptions. Lets turn it back into the original exception type.
|
||||
cls_name = str(failure.__class__.__name__)
|
||||
mod_name = str(failure.__class__.__module__)
|
||||
if (cls_name.endswith(_REMOTE_POSTFIX) and
|
||||
mod_name.endswith(_REMOTE_POSTFIX)):
|
||||
cls_name = cls_name[:-len(_REMOTE_POSTFIX)]
|
||||
mod_name = mod_name[:-len(_REMOTE_POSTFIX)]
|
||||
|
||||
data = {
|
||||
'class': cls_name,
|
||||
'module': mod_name,
|
||||
'message': six.text_type(failure),
|
||||
'tb': tb,
|
||||
'args': failure.args,
|
||||
'kwargs': kwargs
|
||||
}
|
||||
|
||||
json_data = jsonutils.dumps(data)
|
||||
|
||||
return json_data
|
||||
|
||||
|
||||
def deserialize_remote_exception(data, allowed_remote_exmods):
|
||||
failure = jsonutils.loads(str(data))
|
||||
|
||||
trace = failure.get('tb', [])
|
||||
message = failure.get('message', "") + "\n" + "\n".join(trace)
|
||||
name = failure.get('class')
|
||||
module = failure.get('module')
|
||||
|
||||
# NOTE(ameade): We DO NOT want to allow just any module to be imported, in
|
||||
# order to prevent arbitrary code execution.
|
||||
if module != 'exceptions' and module not in allowed_remote_exmods:
|
||||
return messaging.RemoteError(name, failure.get('message'), trace)
|
||||
|
||||
try:
|
||||
mod = importutils.import_module(module)
|
||||
klass = getattr(mod, name)
|
||||
if not issubclass(klass, Exception):
|
||||
raise TypeError("Can only deserialize Exceptions")
|
||||
|
||||
failure = klass(*failure.get('args', []), **failure.get('kwargs', {}))
|
||||
except (AttributeError, TypeError, ImportError):
|
||||
return messaging.RemoteError(name, failure.get('message'), trace)
|
||||
|
||||
ex_type = type(failure)
|
||||
str_override = lambda self: message
|
||||
new_ex_type = type(ex_type.__name__ + _REMOTE_POSTFIX, (ex_type,),
|
||||
{'__str__': str_override, '__unicode__': str_override})
|
||||
new_ex_type.__module__ = '%s%s' % (module, _REMOTE_POSTFIX)
|
||||
try:
|
||||
# NOTE(ameade): Dynamically create a new exception type and swap it in
|
||||
# as the new type for the exception. This only works on user defined
|
||||
# Exceptions and not core python exceptions. This is important because
|
||||
# we cannot necessarily change an exception message so we must override
|
||||
# the __str__ method.
|
||||
failure.__class__ = new_ex_type
|
||||
except TypeError:
|
||||
# NOTE(ameade): If a core exception then just add the traceback to the
|
||||
# first exception argument.
|
||||
failure.args = (message,) + failure.args[1:]
|
||||
return failure
|
||||
|
||||
+39
-192
@@ -1,5 +1,6 @@
|
||||
# Copyright (c) 2012 Rackspace Hosting
|
||||
# All Rights Reserved.
|
||||
# Copyright 2013 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
|
||||
@@ -16,16 +17,11 @@
|
||||
"""
|
||||
Cells RPC Communication Driver
|
||||
"""
|
||||
import urllib
|
||||
import urlparse
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
from nova.cells import driver
|
||||
from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import rpc
|
||||
from nova.openstack.common.rpc import dispatcher as rpc_dispatcher
|
||||
from nova import rpcclient
|
||||
from nova import rpc
|
||||
|
||||
cell_rpc_driver_opts = [
|
||||
cfg.StrOpt('rpc_driver_queue_base',
|
||||
@@ -37,14 +33,11 @@ cell_rpc_driver_opts = [
|
||||
CONF = cfg.CONF
|
||||
CONF.register_opts(cell_rpc_driver_opts, group='cells')
|
||||
CONF.import_opt('call_timeout', 'nova.cells.opts', group='cells')
|
||||
CONF.import_opt('rpc_backend', 'nova.openstack.common.rpc')
|
||||
|
||||
rpcapi_cap_opt = cfg.StrOpt('intercell',
|
||||
help='Set a version cap for messages sent between cells services')
|
||||
CONF.register_opt(rpcapi_cap_opt, 'upgrade_levels')
|
||||
|
||||
_CELL_TO_CELL_RPC_API_VERSION = '1.0'
|
||||
|
||||
|
||||
class CellsRPCDriver(driver.BaseCellsDriver):
|
||||
"""Driver for cell<->cell communication via RPC. This is used to
|
||||
@@ -57,27 +50,16 @@ class CellsRPCDriver(driver.BaseCellsDriver):
|
||||
One instance is also created by the cells manager for setting up
|
||||
the consumers.
|
||||
"""
|
||||
BASE_RPC_API_VERSION = _CELL_TO_CELL_RPC_API_VERSION
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(CellsRPCDriver, self).__init__(*args, **kwargs)
|
||||
self.rpc_connections = []
|
||||
self.intercell_rpcapi = InterCellRPCAPI(
|
||||
self.BASE_RPC_API_VERSION)
|
||||
self.rpc_servers = []
|
||||
self.intercell_rpcapi = InterCellRPCAPI()
|
||||
|
||||
def _start_consumer(self, dispatcher, topic):
|
||||
"""Start an RPC consumer."""
|
||||
conn = rpc.create_connection(new=True)
|
||||
conn.create_consumer(topic, dispatcher, fanout=False)
|
||||
conn.create_consumer(topic, dispatcher, fanout=True)
|
||||
self.rpc_connections.append(conn)
|
||||
conn.consume_in_thread()
|
||||
return conn
|
||||
def start_servers(self, msg_runner):
|
||||
"""Start RPC servers.
|
||||
|
||||
def start_consumers(self, msg_runner):
|
||||
"""Start RPC consumers.
|
||||
|
||||
Start up 2 separate consumers for handling inter-cell
|
||||
Start up 2 separate servers for handling inter-cell
|
||||
communication via RPC. Both handle the same types of
|
||||
messages, but requests/replies are separated to solve
|
||||
potential deadlocks. (If we used the same queue for both,
|
||||
@@ -86,29 +68,31 @@ class CellsRPCDriver(driver.BaseCellsDriver):
|
||||
"""
|
||||
topic_base = CONF.cells.rpc_driver_queue_base
|
||||
proxy_manager = InterCellRPCDispatcher(msg_runner)
|
||||
# NOTE(comstud): We do not need to use the object serializer
|
||||
# on this because object serialization is taken care for us in
|
||||
# the messaging module.
|
||||
dispatcher = rpc_dispatcher.RpcDispatcher([proxy_manager])
|
||||
for msg_type in msg_runner.get_message_types():
|
||||
topic = '%s.%s' % (topic_base, msg_type)
|
||||
self._start_consumer(dispatcher, topic)
|
||||
target = messaging.Target(topic='%s.%s' % (topic_base, msg_type),
|
||||
server=CONF.host)
|
||||
# NOTE(comstud): We do not need to use the object serializer
|
||||
# on this because object serialization is taken care for us in
|
||||
# the nova.cells.messaging module.
|
||||
server = rpc.get_server(target, endpoints=[proxy_manager])
|
||||
server.start()
|
||||
self.rpc_servers.append(server)
|
||||
|
||||
def stop_consumers(self):
|
||||
"""Stop RPC consumers.
|
||||
def stop_servers(self):
|
||||
"""Stop RPC servers.
|
||||
|
||||
NOTE: Currently there's no hooks when stopping services
|
||||
to have managers cleanup, so this is not currently called.
|
||||
"""
|
||||
for conn in self.rpc_connections:
|
||||
conn.close()
|
||||
for server in self.rpc_servers:
|
||||
server.stop()
|
||||
|
||||
def send_message_to_cell(self, cell_state, message):
|
||||
"""Use the IntercellRPCAPI to send a message to a cell."""
|
||||
self.intercell_rpcapi.send_message_to_cell(cell_state, message)
|
||||
|
||||
|
||||
class InterCellRPCAPI(rpcclient.RpcProxy):
|
||||
class InterCellRPCAPI(object):
|
||||
"""Client side of the Cell<->Cell RPC API.
|
||||
|
||||
The CellsRPCDriver uses this to make calls to another cell.
|
||||
@@ -125,25 +109,23 @@ class InterCellRPCAPI(rpcclient.RpcProxy):
|
||||
'grizzly': '1.0',
|
||||
}
|
||||
|
||||
def __init__(self, default_version):
|
||||
version_cap = self.VERSION_ALIASES.get(CONF.upgrade_levels.intercell,
|
||||
CONF.upgrade_levels.intercell)
|
||||
super(InterCellRPCAPI, self).__init__(None, default_version,
|
||||
version_cap=version_cap)
|
||||
def __init__(self):
|
||||
super(InterCellRPCAPI, self).__init__()
|
||||
self.version_cap = (
|
||||
self.VERSION_ALIASES.get(CONF.upgrade_levels.intercell,
|
||||
CONF.upgrade_levels.intercell))
|
||||
|
||||
def _get_client(self, next_hop, topic):
|
||||
server_params = self._get_server_params_for_cell(next_hop)
|
||||
cctxt = self.get_client(server_params=server_params)
|
||||
return cctxt.prepare(topic=topic)
|
||||
|
||||
@staticmethod
|
||||
def _get_server_params_for_cell(next_hop):
|
||||
"""Turn the DB information for a cell into the parameters
|
||||
needed for the RPC call.
|
||||
"""
|
||||
server_params = parse_transport_url(next_hop.db_info['transport_url'])
|
||||
|
||||
return dict((k, v) for k, v in server_params.items() if v)
|
||||
"""Turn the DB information for a cell into a messaging.RPCClient."""
|
||||
transport_url = next_hop.db_info['transport_url']
|
||||
transport = messaging.get_transport(cfg.CONF, transport_url,
|
||||
rpc.TRANSPORT_ALIASES)
|
||||
target = messaging.Target(topic=topic, version='1.0')
|
||||
serializer = rpc.RequestContextSerializer(None)
|
||||
return messaging.RPCClient(transport,
|
||||
target,
|
||||
version_cap=self.version_cap,
|
||||
serializer=serializer)
|
||||
|
||||
def send_message_to_cell(self, cell_state, message):
|
||||
"""Send a message to another cell by JSON-ifying the message and
|
||||
@@ -166,9 +148,10 @@ class InterCellRPCDispatcher(object):
|
||||
All messages received here have come from a sibling cell. Depending
|
||||
on the ultimate target and type of message, we may process the message
|
||||
in this cell, relay the message to another sibling cell, or both. This
|
||||
logic is defined by the message class in the messaging module.
|
||||
logic is defined by the message class in the nova.cells.messaging module.
|
||||
"""
|
||||
BASE_RPC_API_VERSION = _CELL_TO_CELL_RPC_API_VERSION
|
||||
|
||||
target = messaging.Target(version='1.0')
|
||||
|
||||
def __init__(self, msg_runner):
|
||||
"""Init the Intercell RPC Dispatcher."""
|
||||
@@ -181,139 +164,3 @@ class InterCellRPCDispatcher(object):
|
||||
"""
|
||||
message = self.msg_runner.message_from_json(message)
|
||||
message.process()
|
||||
|
||||
|
||||
def parse_transport_url(url):
|
||||
"""
|
||||
Parse a transport URL.
|
||||
|
||||
:param url: The transport URL.
|
||||
|
||||
:returns: A dictionary of 5 elements: the "username", the
|
||||
"password", the "hostname", the "port" (as an integer),
|
||||
and the "virtual_host" for the requested transport.
|
||||
"""
|
||||
|
||||
# TODO(Vek): Use the actual Oslo code, once it lands in
|
||||
# oslo-incubator
|
||||
|
||||
# First step is to parse the URL
|
||||
parsed = urlparse.urlparse(url or '')
|
||||
|
||||
# Make sure we understand the scheme
|
||||
if parsed.scheme not in ('rabbit', 'qpid'):
|
||||
raise ValueError(_("Unable to handle transport URL scheme %s") %
|
||||
parsed.scheme)
|
||||
|
||||
# Make sure there's not a query string; that could identify
|
||||
# requirements we can't comply with (e.g., ssl), so reject it if
|
||||
# it's present
|
||||
if '?' in parsed.path or parsed.query:
|
||||
raise ValueError(_("Cannot comply with query string in transport URL"))
|
||||
|
||||
# Extract the interesting information from the URL; this requires
|
||||
# dequoting values, and ensuring empty values become None
|
||||
username = urllib.unquote(parsed.username) if parsed.username else None
|
||||
password = urllib.unquote(parsed.password) if parsed.password else None
|
||||
virtual_host = urllib.unquote(parsed.path[1:]) or None
|
||||
|
||||
# Now we have to extract the hostname and port; unfortunately,
|
||||
# urlparse in Python 2.6 doesn't understand IPv6 addresses
|
||||
hostname = parsed.hostname
|
||||
if hostname and hostname[0] == '[':
|
||||
# If '@' is present, rfind() finds its position; if it isn't,
|
||||
# rfind() returns -1. Either way, adding 1 gives us the start
|
||||
# location of the host and port...
|
||||
host_start = parsed.netloc.rfind('@')
|
||||
netloc = parsed.netloc[host_start + 1:]
|
||||
|
||||
# Find the closing ']' and extract the hostname
|
||||
host_end = netloc.find(']')
|
||||
if host_end < 0:
|
||||
# NOTE(Vek): Not translated so it's identical to what
|
||||
# Python 2.7's urlparse.urlparse() raises in this case
|
||||
raise ValueError("Invalid IPv6 URL")
|
||||
hostname = netloc[1:host_end]
|
||||
|
||||
# Now we need the port; this is compliant with how urlparse
|
||||
# parses the port data
|
||||
port_text = netloc[host_end:]
|
||||
port = None
|
||||
if ':' in port_text:
|
||||
port = int(port_text.split(':', 1)[1])
|
||||
else:
|
||||
port = parsed.port
|
||||
|
||||
# Now that we have what we need, return the information
|
||||
return {
|
||||
'username': username,
|
||||
'password': password,
|
||||
'hostname': hostname,
|
||||
'port': port,
|
||||
'virtual_host': virtual_host,
|
||||
}
|
||||
|
||||
|
||||
def unparse_transport_url(transport, secure=True):
|
||||
"""
|
||||
Unparse a transport URL; that is, synthesize a transport URL from
|
||||
a dictionary similar to that one returned by
|
||||
parse_transport_url().
|
||||
|
||||
:param transport: The dictionary containing the transport URL
|
||||
components.
|
||||
:param secure: Used to identify whether the transport URL is
|
||||
wanted for a secure or insecure link. If
|
||||
True--indicating a secure link--the password will
|
||||
be included; otherwise, it won't.
|
||||
|
||||
:returns: The transport URL.
|
||||
"""
|
||||
|
||||
# Starting place for the network location
|
||||
netloc = ''
|
||||
|
||||
# Extract all the data we need from the dictionary
|
||||
username = transport.get('username')
|
||||
if secure:
|
||||
password = transport.get('password')
|
||||
else:
|
||||
password = None
|
||||
hostname = transport.get('hostname')
|
||||
port = transport.get('port')
|
||||
virtual_host = transport.get('virtual_host')
|
||||
|
||||
# Build the username and password portion of the transport URL
|
||||
if username or password:
|
||||
if username:
|
||||
netloc += urllib.quote(username, '')
|
||||
if password:
|
||||
netloc += ':%s' % urllib.quote(password, '')
|
||||
netloc += '@'
|
||||
|
||||
# Build the network location portion of the transport URL
|
||||
if hostname:
|
||||
if ':' in hostname:
|
||||
# Encode an IPv6 address properly
|
||||
netloc += "[%s]" % hostname
|
||||
else:
|
||||
netloc += hostname
|
||||
if port is not None:
|
||||
netloc += ":%d" % port
|
||||
|
||||
# Determine the scheme
|
||||
# NOTE(Vek): This isn't really that robust, but should be more
|
||||
# than sufficient to carry us on until the more
|
||||
# complete transition to transport URLs can be
|
||||
# accomplished.
|
||||
if CONF.rpc_backend.endswith('qpid'):
|
||||
scheme = 'qpid'
|
||||
else:
|
||||
scheme = 'rabbit'
|
||||
|
||||
# Assemble the transport URL
|
||||
url = "%s://%s/" % (scheme, netloc)
|
||||
if virtual_host:
|
||||
url += urllib.quote(virtual_host, '')
|
||||
|
||||
return url
|
||||
|
||||
+10
-9
@@ -1,5 +1,6 @@
|
||||
# Copyright (c) 2012 Rackspace Hosting
|
||||
# All Rights Reserved.
|
||||
# Copyright 2013 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
|
||||
@@ -23,14 +24,14 @@ messging module.
|
||||
"""
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
from nova import exception
|
||||
from nova.objects import base as objects_base
|
||||
from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import log as logging
|
||||
from nova import rpcclient
|
||||
|
||||
from nova import rpc
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
CONF = cfg.CONF
|
||||
@@ -42,7 +43,7 @@ rpcapi_cap_opt = cfg.StrOpt('cells',
|
||||
CONF.register_opt(rpcapi_cap_opt, 'upgrade_levels')
|
||||
|
||||
|
||||
class CellsAPI(rpcclient.RpcProxy):
|
||||
class CellsAPI(object):
|
||||
'''Cells client-side RPC API
|
||||
|
||||
API version history:
|
||||
@@ -88,7 +89,6 @@ class CellsAPI(rpcclient.RpcProxy):
|
||||
|
||||
1.25 - Adds rebuild_instance()
|
||||
'''
|
||||
BASE_RPC_API_VERSION = '1.0'
|
||||
|
||||
VERSION_ALIASES = {
|
||||
'grizzly': '1.6',
|
||||
@@ -96,13 +96,14 @@ class CellsAPI(rpcclient.RpcProxy):
|
||||
}
|
||||
|
||||
def __init__(self):
|
||||
super(CellsAPI, self).__init__()
|
||||
target = messaging.Target(topic=CONF.cells.topic, version='1.0')
|
||||
version_cap = self.VERSION_ALIASES.get(CONF.upgrade_levels.cells,
|
||||
CONF.upgrade_levels.cells)
|
||||
super(CellsAPI, self).__init__(topic=CONF.cells.topic,
|
||||
default_version=self.BASE_RPC_API_VERSION,
|
||||
serializer=objects_base.NovaObjectSerializer(),
|
||||
version_cap=version_cap)
|
||||
self.client = self.get_client()
|
||||
serializer = objects_base.NovaObjectSerializer()
|
||||
self.client = rpc.get_client(target,
|
||||
version_cap=version_cap,
|
||||
serializer=serializer)
|
||||
|
||||
def cast_compute_api_method(self, ctxt, cell_name, method,
|
||||
*args, **kwargs):
|
||||
|
||||
+5
-4
@@ -31,6 +31,7 @@ from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import timeutils
|
||||
from nova import rpc
|
||||
from nova import utils
|
||||
|
||||
cell_state_manager_opts = [
|
||||
@@ -98,10 +99,10 @@ class CellState(object):
|
||||
for field in db_fields_to_return:
|
||||
cell_info[field] = self.db_info[field]
|
||||
|
||||
url_info = rpc_driver.parse_transport_url(
|
||||
self.db_info['transport_url'])
|
||||
for field, canonical in url_fields_to_return.items():
|
||||
cell_info[canonical] = url_info[field]
|
||||
url = rpc.get_transport_url(self.db_info['transport_url'])
|
||||
if url.hosts:
|
||||
for field, canonical in url_fields_to_return.items():
|
||||
cell_info[canonical] = getattr(url.hosts[0], field)
|
||||
return cell_info
|
||||
|
||||
def send_message(self, message):
|
||||
|
||||
@@ -26,12 +26,15 @@ Cert manager manages x509 certificates.
|
||||
|
||||
import base64
|
||||
|
||||
from oslo import messaging
|
||||
|
||||
from nova import crypto
|
||||
from nova import manager
|
||||
|
||||
|
||||
class CertManager(manager.Manager):
|
||||
RPC_API_VERSION = '2.0'
|
||||
|
||||
target = messaging.Target(version='2.0')
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(CertManager, self).__init__(service_name='cert',
|
||||
|
||||
+8
-19
@@ -1,6 +1,6 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2012, Red Hat, Inc.
|
||||
# Copyright 2013, 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
|
||||
@@ -19,8 +19,9 @@ Client side of the cert manager RPC API.
|
||||
"""
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
from nova import rpcclient
|
||||
from nova import rpc
|
||||
|
||||
rpcapi_opts = [
|
||||
cfg.StrOpt('cert_topic',
|
||||
@@ -36,7 +37,7 @@ rpcapi_cap_opt = cfg.StrOpt('cert',
|
||||
CONF.register_opt(rpcapi_cap_opt, 'upgrade_levels')
|
||||
|
||||
|
||||
class CertAPI(rpcclient.RpcProxy):
|
||||
class CertAPI(object):
|
||||
'''Client side of the cert rpc API.
|
||||
|
||||
API version history:
|
||||
@@ -51,32 +52,20 @@ class CertAPI(rpcclient.RpcProxy):
|
||||
2.0 - Major API rev for Icehouse
|
||||
'''
|
||||
|
||||
#
|
||||
# NOTE(russellb): This is the default minimum version that the server
|
||||
# (manager) side must implement unless otherwise specified using a version
|
||||
# argument to self.call()/cast()/etc. here. It should be left as X.0 where
|
||||
# X is the current major API version (1.0, 2.0, ...). For more information
|
||||
# about rpc API versioning, see the docs in
|
||||
# openstack/common/rpc/dispatcher.py.
|
||||
#
|
||||
BASE_RPC_API_VERSION = '2.0'
|
||||
|
||||
VERSION_ALIASES = {
|
||||
'grizzly': '1.1',
|
||||
'havana': '1.1',
|
||||
}
|
||||
|
||||
def __init__(self):
|
||||
super(CertAPI, self).__init__()
|
||||
target = messaging.Target(topic=CONF.cert_topic, version='2.0')
|
||||
version_cap = self.VERSION_ALIASES.get(CONF.upgrade_levels.cert,
|
||||
CONF.upgrade_levels.cert)
|
||||
super(CertAPI, self).__init__(
|
||||
topic=CONF.cert_topic,
|
||||
default_version=self.BASE_RPC_API_VERSION,
|
||||
version_cap=version_cap)
|
||||
self.client = self.get_client()
|
||||
self.client = rpc.get_client(target, version_cap=version_cap)
|
||||
|
||||
def _get_compat_version(self, current, havana_compat):
|
||||
if not self.can_send_version(current):
|
||||
if not self.client.can_send_version(current):
|
||||
return havana_compat
|
||||
return current
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import importutils
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import rpc
|
||||
from nova import rpc
|
||||
|
||||
CONF = cfg.CONF
|
||||
CONF.import_opt('host', 'nova.netconf')
|
||||
|
||||
+16
-14
@@ -4,6 +4,7 @@
|
||||
# Copyright 2010 United States Government as represented by the
|
||||
# Administrator of the National Aeronautics and Space Administration.
|
||||
# All Rights Reserved.
|
||||
# Copyright 2013 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
|
||||
@@ -60,11 +61,11 @@ import sys
|
||||
|
||||
import netaddr
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
import six
|
||||
|
||||
from nova.api.ec2 import ec2utils
|
||||
from nova import availability_zones
|
||||
from nova.cells import rpc_driver
|
||||
from nova.compute import flavors
|
||||
from nova import config
|
||||
from nova import context
|
||||
@@ -76,8 +77,8 @@ from nova.openstack.common.db import exception as db_exc
|
||||
from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import importutils
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import rpc
|
||||
from nova import quota
|
||||
from nova import rpc
|
||||
from nova import servicegroup
|
||||
from nova import version
|
||||
|
||||
@@ -1200,19 +1201,19 @@ class CellCommands(object):
|
||||
return(2)
|
||||
|
||||
# Set up the transport URL
|
||||
transport = {
|
||||
'username': username,
|
||||
'password': password,
|
||||
'hostname': hostname,
|
||||
'port': int(port),
|
||||
'virtual_host': virtual_host,
|
||||
}
|
||||
transport_url = rpc_driver.unparse_transport_url(transport)
|
||||
transport_host = messaging.TransportHost(hostname=hostname,
|
||||
port=int(port),
|
||||
username=username,
|
||||
password=password)
|
||||
|
||||
transport_url = rpc.get_transport_url()
|
||||
transport_url.hosts.append(transport_host)
|
||||
transport_url.virtual_host = virtual_host
|
||||
|
||||
is_parent = cell_type == 'parent'
|
||||
values = {'name': name,
|
||||
'is_parent': is_parent,
|
||||
'transport_url': transport_url,
|
||||
'transport_url': str(transport_url),
|
||||
'weight_offset': float(woffset),
|
||||
'weight_scale': float(wscale)}
|
||||
ctxt = context.get_admin_context()
|
||||
@@ -1233,11 +1234,12 @@ class CellCommands(object):
|
||||
print(fmt % ('-' * 3, '-' * 10, '-' * 6, '-' * 10, '-' * 15,
|
||||
'-' * 5, '-' * 10))
|
||||
for cell in cells:
|
||||
transport = rpc_driver.parse_transport_url(cell.transport_url)
|
||||
url = rpc.get_transport_url(cell.transport_url)
|
||||
host = url.hosts[0] if url.hosts else messaging.TransportHost()
|
||||
print(fmt % (cell.id, cell.name,
|
||||
'parent' if cell.is_parent else 'child',
|
||||
transport['username'], transport['hostname'],
|
||||
transport['port'], transport['virtual_host']))
|
||||
host.username, host.hostname,
|
||||
host.port, url.virtual_host))
|
||||
print(fmt % ('-' * 3, '-' * 10, '-' * 6, '-' * 10, '-' * 15,
|
||||
'-' * 5, '-' * 10))
|
||||
|
||||
|
||||
@@ -1,37 +0,0 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2011 OpenStack Foundation
|
||||
#
|
||||
# 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 contextlib
|
||||
import sys
|
||||
|
||||
from oslo.config import cfg
|
||||
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import rpc
|
||||
from nova.openstack.common.rpc import impl_zmq
|
||||
|
||||
CONF = cfg.CONF
|
||||
CONF.register_opts(rpc.rpc_opts)
|
||||
CONF.register_opts(impl_zmq.zmq_opts)
|
||||
|
||||
|
||||
def main():
|
||||
CONF(sys.argv[1:], project='nova')
|
||||
logging.setup("nova")
|
||||
|
||||
with contextlib.closing(impl_zmq.ZmqProxy(CONF)) as reactor:
|
||||
reactor.consume_in_thread()
|
||||
reactor.wait()
|
||||
+11
-7
@@ -51,7 +51,6 @@ from nova.network import model as network_model
|
||||
from nova.network.security_group import openstack_driver
|
||||
from nova.network.security_group import security_group_base
|
||||
from nova import notifications
|
||||
from nova import notifier
|
||||
from nova.objects import aggregate as aggregate_obj
|
||||
from nova.objects import base as obj_base
|
||||
from nova.objects import block_device as block_device_obj
|
||||
@@ -71,13 +70,14 @@ from nova.openstack.common import timeutils
|
||||
from nova.openstack.common import uuidutils
|
||||
import nova.policy
|
||||
from nova import quota
|
||||
from nova import rpc
|
||||
from nova import servicegroup
|
||||
from nova import utils
|
||||
from nova import volume
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
get_notifier = functools.partial(notifier.get_notifier, service='compute')
|
||||
get_notifier = functools.partial(rpc.get_notifier, service='compute')
|
||||
wrap_exception = functools.partial(exception.wrap_exception,
|
||||
get_notifier=get_notifier)
|
||||
|
||||
@@ -253,7 +253,7 @@ class API(base.Base):
|
||||
self.compute_rpcapi = compute_rpcapi.ComputeAPI()
|
||||
self._compute_task_api = None
|
||||
self.servicegroup_api = servicegroup.API()
|
||||
self.notifier = notifier.get_notifier('compute', CONF.host)
|
||||
self.notifier = rpc.get_notifier('compute', CONF.host)
|
||||
|
||||
super(API, self).__init__(**kwargs)
|
||||
|
||||
@@ -3343,13 +3343,17 @@ class AggregateAPI(base.Base):
|
||||
class KeypairAPI(base.Base):
|
||||
"""Subset of the Compute Manager API for managing key pairs."""
|
||||
|
||||
get_notifier = functools.partial(rpc.get_notifier, service='api')
|
||||
wrap_exception = functools.partial(exception.wrap_exception,
|
||||
get_notifier=get_notifier)
|
||||
|
||||
def _notify(self, context, event_suffix, keypair_name):
|
||||
payload = {
|
||||
'tenant_id': context.project_id,
|
||||
'user_id': context.user_id,
|
||||
'key_name': keypair_name,
|
||||
}
|
||||
notify = notifier.get_notifier(service='api')
|
||||
notify = self.get_notifier()
|
||||
notify.info(context, 'keypair.%s' % event_suffix, payload)
|
||||
|
||||
def _validate_new_key_pair(self, context, user_id, key_name):
|
||||
@@ -3370,7 +3374,7 @@ class KeypairAPI(base.Base):
|
||||
except exception.OverQuota:
|
||||
raise exception.KeypairLimitExceeded()
|
||||
|
||||
@exception.wrap_exception(notifier=notifier.get_notifier(service='api'))
|
||||
@wrap_exception()
|
||||
def import_key_pair(self, context, user_id, key_name, public_key):
|
||||
"""Import a key pair using an existing public key."""
|
||||
self._validate_new_key_pair(context, user_id, key_name)
|
||||
@@ -3390,7 +3394,7 @@ class KeypairAPI(base.Base):
|
||||
|
||||
return keypair
|
||||
|
||||
@exception.wrap_exception(notifier=notifier.get_notifier(service='api'))
|
||||
@wrap_exception()
|
||||
def create_key_pair(self, context, user_id, key_name):
|
||||
"""Create a new key pair."""
|
||||
self._validate_new_key_pair(context, user_id, key_name)
|
||||
@@ -3410,7 +3414,7 @@ class KeypairAPI(base.Base):
|
||||
|
||||
return keypair, private_key
|
||||
|
||||
@exception.wrap_exception(notifier=notifier.get_notifier(service='api'))
|
||||
@wrap_exception()
|
||||
def delete_key_pair(self, context, user_id, key_name):
|
||||
"""Delete a keypair by name."""
|
||||
self._notify(context, 'delete.start', key_name)
|
||||
|
||||
+66
-18
@@ -1,5 +1,6 @@
|
||||
# Copyright (c) 2012 Rackspace Hosting
|
||||
# All Rights Reserved.
|
||||
# Copyright 2013 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
|
||||
@@ -15,6 +16,8 @@
|
||||
|
||||
"""Compute API that proxies via Cells Service."""
|
||||
|
||||
from oslo import messaging
|
||||
|
||||
from nova import availability_zones
|
||||
from nova import block_device
|
||||
from nova.cells import rpcapi as cells_rpcapi
|
||||
@@ -25,7 +28,7 @@ from nova import exception
|
||||
from nova.objects import base as obj_base
|
||||
from nova.objects import service as service_obj
|
||||
from nova.openstack.common import excutils
|
||||
from nova import rpcclient
|
||||
from nova import rpc
|
||||
|
||||
|
||||
check_instance_state = compute_api.check_instance_state
|
||||
@@ -92,34 +95,79 @@ class ConductorTaskRPCAPIRedirect(object):
|
||||
return _noop_rpc_wrapper
|
||||
|
||||
|
||||
class RPCClientCellsProxy(rpcclient.RPCClient):
|
||||
class RPCClientCellsProxy(object):
|
||||
|
||||
def __init__(self, target, version_cap):
|
||||
super(RPCClientCellsProxy, self).__init__()
|
||||
|
||||
self.target = target
|
||||
self.version_cap = version_cap
|
||||
self._server = None
|
||||
self._version = None
|
||||
|
||||
def __init__(self, proxy, *args, **kwargs):
|
||||
super(RPCClientCellsProxy, self).__init__(proxy, *args, **kwargs)
|
||||
self.cells_rpcapi = cells_rpcapi.CellsAPI()
|
||||
|
||||
def prepare(self, **kwargs):
|
||||
ret = type(self)(self.target, self.version_cap)
|
||||
ret.cells_rpcapi = self.cells_rpcapi
|
||||
|
||||
server = kwargs.pop('server', None)
|
||||
version = kwargs.pop('version', None)
|
||||
|
||||
if kwargs:
|
||||
raise ValueError("Unsupported kwargs: %s" % kwargs.keys())
|
||||
|
||||
if server:
|
||||
ret._server = server
|
||||
if version:
|
||||
ret._version = version
|
||||
|
||||
return ret
|
||||
|
||||
def _check_version_cap(self, version):
|
||||
client = rpc.get_client(self.target, version_cap=self.version_cap)
|
||||
if not client.can_send_version(version):
|
||||
raise messaging.RPCVersionCapError(version=version,
|
||||
version_cap=self.version_cap)
|
||||
|
||||
def _make_msg(self, method, **kwargs):
|
||||
version = self._version if self._version else self.target.version
|
||||
self._check_version_cap(version)
|
||||
return {
|
||||
'method': method,
|
||||
'namespace': None,
|
||||
'version': version,
|
||||
'args': kwargs
|
||||
}
|
||||
|
||||
def _get_topic(self):
|
||||
if self._server is not None:
|
||||
return '%s.%s' % (self.target.topic, self._server)
|
||||
else:
|
||||
return self.target.topic
|
||||
|
||||
def can_send_version(self, version):
|
||||
client = rpc.get_client(self.target, version_cap=self.version_cap)
|
||||
return client.can_send_version(version)
|
||||
|
||||
def cast(self, ctxt, method, **kwargs):
|
||||
msg = self.proxy.make_msg(method, **kwargs)
|
||||
self.proxy._set_version(msg, self.kwargs.get('version'))
|
||||
topic = self.proxy._get_topic(self.kwargs.get('topic'))
|
||||
msg = self._make_msg(method, **kwargs)
|
||||
topic = self._get_topic()
|
||||
self.cells_rpcapi.proxy_rpc_to_manager(ctxt, msg, topic)
|
||||
|
||||
def call(self, ctxt, method, **kwargs):
|
||||
msg = self.proxy.make_msg(method, **kwargs)
|
||||
self.proxy._set_version(msg, self.kwargs.get('version'))
|
||||
topic = self.proxy._get_topic(self.kwargs.get('topic'))
|
||||
timeout = self.kwargs.get('timeout')
|
||||
return self.cells_rpcapi.proxy_rpc_to_manager(ctxt, msg, topic,
|
||||
call=True,
|
||||
timeout=timeout)
|
||||
msg = self._make_msg(method, **kwargs)
|
||||
topic = self._get_topic()
|
||||
return self.cells_rpcapi.proxy_rpc_to_manager(ctxt, msg,
|
||||
topic, call=True)
|
||||
|
||||
|
||||
class ComputeRPCProxyAPI(compute_rpcapi.ComputeAPI):
|
||||
"""Class used to substitute Compute RPC API that will proxy
|
||||
via the cells manager to a compute manager in a child cell.
|
||||
"""
|
||||
def get_client(self):
|
||||
return RPCClientCellsProxy(self)
|
||||
def get_client(self, target, version_cap, serializer):
|
||||
return RPCClientCellsProxy(target, version_cap)
|
||||
|
||||
|
||||
class ComputeCellsAPI(compute_api.API):
|
||||
@@ -317,7 +365,7 @@ class ComputeCellsAPI(compute_api.API):
|
||||
self.consoleauth_rpcapi.authorize_console(context,
|
||||
connect_info['token'], console_type, connect_info['host'],
|
||||
connect_info['port'], connect_info['internal_access_path'],
|
||||
instance_uuid=instance['uuid'])
|
||||
instance['uuid'])
|
||||
return {'url': connect_info['access_url']}
|
||||
|
||||
@wrap_check_policy
|
||||
@@ -333,7 +381,7 @@ class ComputeCellsAPI(compute_api.API):
|
||||
self.consoleauth_rpcapi.authorize_console(context,
|
||||
connect_info['token'], console_type, connect_info['host'],
|
||||
connect_info['port'], connect_info['internal_access_path'],
|
||||
instance_uuid=instance['uuid'])
|
||||
instance['uuid'])
|
||||
return {'url': connect_info['access_url']}
|
||||
|
||||
@check_instance_cell
|
||||
|
||||
+19
-19
@@ -38,6 +38,7 @@ import uuid
|
||||
|
||||
from eventlet import greenthread
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
from nova import block_device
|
||||
from nova.cells import rpcapi as cells_rpcapi
|
||||
@@ -60,7 +61,6 @@ from nova import manager
|
||||
from nova import network
|
||||
from nova.network import model as network_model
|
||||
from nova.network.security_group import openstack_driver
|
||||
from nova import notifier
|
||||
from nova.objects import aggregate as aggregate_obj
|
||||
from nova.objects import base as obj_base
|
||||
from nova.objects import instance as instance_obj
|
||||
@@ -71,11 +71,10 @@ from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import periodic_task
|
||||
from nova.openstack.common import rpc
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
from nova.openstack.common import strutils
|
||||
from nova.openstack.common import timeutils
|
||||
from nova import paths
|
||||
from nova import rpc
|
||||
from nova import safe_utils
|
||||
from nova.scheduler import rpcapi as scheduler_rpcapi
|
||||
from nova import utils
|
||||
@@ -213,7 +212,7 @@ CONF.import_opt('image_cache_manager_interval', 'nova.virt.imagecache')
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
get_notifier = functools.partial(notifier.get_notifier, service='compute')
|
||||
get_notifier = functools.partial(rpc.get_notifier, service='compute')
|
||||
wrap_exception = functools.partial(exception.wrap_exception,
|
||||
get_notifier=get_notifier)
|
||||
|
||||
@@ -409,7 +408,7 @@ class ComputeVirtAPI(virtapi.VirtAPI):
|
||||
class ComputeManager(manager.Manager):
|
||||
"""Manages the running instances from creation to destruction."""
|
||||
|
||||
RPC_API_VERSION = '3.6'
|
||||
target = messaging.Target(version='3.6')
|
||||
|
||||
def __init__(self, compute_driver=None, *args, **kwargs):
|
||||
"""Load configuration options and connect to the hypervisor."""
|
||||
@@ -839,9 +838,7 @@ class ComputeManager(manager.Manager):
|
||||
|
||||
"""
|
||||
#TODO(mdragon): perhaps make this variable by console_type?
|
||||
return rpc.queue_get_for(context,
|
||||
CONF.console_topic,
|
||||
CONF.console_host)
|
||||
return '%s.%s' % (CONF.console_topic, CONF.console_host)
|
||||
|
||||
def get_console_pool_info(self, context, console_type):
|
||||
return self.driver.get_console_pool_info(console_type)
|
||||
@@ -2171,7 +2168,7 @@ class ComputeManager(manager.Manager):
|
||||
admin_password, network_info=network_info,
|
||||
block_device_info=new_block_device_info)
|
||||
|
||||
@rpc_common.client_exceptions(exception.PreserveEphemeralNotSupported)
|
||||
@messaging.expected_exceptions(exception.PreserveEphemeralNotSupported)
|
||||
@object_compat
|
||||
@wrap_exception()
|
||||
@reverts_task_state
|
||||
@@ -2532,14 +2529,14 @@ class ComputeManager(manager.Manager):
|
||||
LOG.warn(msg, instance=instance)
|
||||
|
||||
@object_compat
|
||||
@rpc_common.client_exceptions(NotImplementedError)
|
||||
@messaging.expected_exceptions(NotImplementedError)
|
||||
def volume_snapshot_create(self, context, instance, volume_id,
|
||||
create_info):
|
||||
self.driver.volume_snapshot_create(context, instance, volume_id,
|
||||
create_info)
|
||||
|
||||
@object_compat
|
||||
@rpc_common.client_exceptions(NotImplementedError)
|
||||
@messaging.expected_exceptions(NotImplementedError)
|
||||
def volume_snapshot_delete(self, context, instance, volume_id,
|
||||
snapshot_id, delete_info):
|
||||
self.driver.volume_snapshot_delete(context, instance, volume_id,
|
||||
@@ -3656,7 +3653,7 @@ class ComputeManager(manager.Manager):
|
||||
"""Inject network info, but don't return the info."""
|
||||
self._inject_network_info(context, instance)
|
||||
|
||||
@rpc_common.client_exceptions(NotImplementedError)
|
||||
@messaging.expected_exceptions(NotImplementedError)
|
||||
@wrap_exception()
|
||||
@wrap_instance_fault
|
||||
def get_console_output(self, context, instance, tail_length):
|
||||
@@ -3684,9 +3681,10 @@ class ComputeManager(manager.Manager):
|
||||
else:
|
||||
return '\n'.join(log.split('\n')[-int(length):])
|
||||
|
||||
@rpc_common.client_exceptions(exception.ConsoleTypeInvalid,
|
||||
exception.InstanceNotReady, exception.InstanceNotFound,
|
||||
NotImplementedError)
|
||||
@messaging.expected_exceptions(exception.ConsoleTypeInvalid,
|
||||
exception.InstanceNotReady,
|
||||
exception.InstanceNotFound,
|
||||
NotImplementedError)
|
||||
@wrap_exception()
|
||||
@wrap_instance_fault
|
||||
@object_compat
|
||||
@@ -3721,8 +3719,9 @@ class ComputeManager(manager.Manager):
|
||||
|
||||
return connect_info
|
||||
|
||||
@rpc_common.client_exceptions(exception.ConsoleTypeInvalid,
|
||||
exception.InstanceNotReady, exception.InstanceNotFound)
|
||||
@messaging.expected_exceptions(exception.ConsoleTypeInvalid,
|
||||
exception.InstanceNotReady,
|
||||
exception.InstanceNotFound)
|
||||
@wrap_exception()
|
||||
@wrap_instance_fault
|
||||
@object_compat
|
||||
@@ -3756,8 +3755,9 @@ class ComputeManager(manager.Manager):
|
||||
|
||||
return connect_info
|
||||
|
||||
@rpc_common.client_exceptions(exception.ConsoleTypeInvalid,
|
||||
exception.InstanceNotReady, exception.InstanceNotFound)
|
||||
@messaging.expected_exceptions(exception.ConsoleTypeInvalid,
|
||||
exception.InstanceNotReady,
|
||||
exception.InstanceNotFound)
|
||||
@wrap_exception()
|
||||
@wrap_instance_fault
|
||||
@object_compat
|
||||
|
||||
@@ -36,8 +36,8 @@ from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import importutils
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common.notifier import api as notifier
|
||||
from nova.pci import pci_manager
|
||||
from nova import rpc
|
||||
from nova import utils
|
||||
|
||||
resource_tracker_opts = [
|
||||
@@ -76,6 +76,7 @@ class ResourceTracker(object):
|
||||
self.conductor_api = conductor.API()
|
||||
monitor_handler = monitors.ResourceMonitorHandler()
|
||||
self.monitors = monitor_handler.choose_monitors(self)
|
||||
self.notifier = rpc.get_notifier()
|
||||
|
||||
@utils.synchronized(COMPUTE_RESOURCE_SEMAPHORE)
|
||||
def instance_claim(self, context, instance_ref, limits=None):
|
||||
@@ -282,9 +283,8 @@ class ResourceTracker(object):
|
||||
metrics_info['metrics'] = metrics
|
||||
metrics_info['host'] = self.host
|
||||
metrics_info['host_ip'] = CONF.my_ip
|
||||
notifier.notify(context, 'compute.%s' % nodename,
|
||||
'compute.metrics.update', notifier.INFO,
|
||||
metrics_info)
|
||||
notifier = rpc.get_notifier(service='compute', host=nodename)
|
||||
notifier.info(context, 'compute.metrics.update', metrics_info)
|
||||
return metrics
|
||||
|
||||
@utils.synchronized(COMPUTE_RESOURCE_SEMAPHORE)
|
||||
|
||||
+29
-46
@@ -1,6 +1,6 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2012, Red Hat, Inc.
|
||||
# Copyright 2013 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
|
||||
@@ -19,12 +19,13 @@ Client side of the compute RPC API.
|
||||
"""
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
from nova import exception
|
||||
from nova.objects import base as objects_base
|
||||
from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova import rpcclient
|
||||
from nova import rpc
|
||||
|
||||
rpcapi_opts = [
|
||||
cfg.StrOpt('compute_topic',
|
||||
@@ -62,7 +63,7 @@ def _compute_host(host, instance):
|
||||
return instance['host']
|
||||
|
||||
|
||||
class ComputeAPI(rpcclient.RpcProxy):
|
||||
class ComputeAPI(object):
|
||||
'''Client side of the compute rpc API.
|
||||
|
||||
API version history:
|
||||
@@ -223,16 +224,6 @@ class ComputeAPI(rpcclient.RpcProxy):
|
||||
3.6 - Make volume_snapshot_{create,delete} use new-world objects
|
||||
'''
|
||||
|
||||
#
|
||||
# NOTE(russellb): This is the default minimum version that the server
|
||||
# (manager) side must implement unless otherwise specified using a version
|
||||
# argument to self.call()/cast()/etc. here. It should be left as X.0 where
|
||||
# X is the current major API version (1.0, 2.0, ...). For more information
|
||||
# about rpc API versioning, see the docs in
|
||||
# openstack/common/rpc/dispatcher.py.
|
||||
#
|
||||
BASE_RPC_API_VERSION = '3.0'
|
||||
|
||||
VERSION_ALIASES = {
|
||||
'grizzly': '2.27',
|
||||
'havana': '2.47',
|
||||
@@ -243,17 +234,21 @@ class ComputeAPI(rpcclient.RpcProxy):
|
||||
}
|
||||
|
||||
def __init__(self):
|
||||
super(ComputeAPI, self).__init__()
|
||||
target = messaging.Target(topic=CONF.compute_topic, version='3.0')
|
||||
version_cap = self.VERSION_ALIASES.get(CONF.upgrade_levels.compute,
|
||||
CONF.upgrade_levels.compute)
|
||||
super(ComputeAPI, self).__init__(
|
||||
topic=CONF.compute_topic,
|
||||
default_version=self.BASE_RPC_API_VERSION,
|
||||
serializer=objects_base.NovaObjectSerializer(),
|
||||
version_cap=version_cap)
|
||||
self.client = self.get_client()
|
||||
serializer = objects_base.NovaObjectSerializer()
|
||||
self.client = self.get_client(target, version_cap, serializer)
|
||||
|
||||
# Cells overrides this
|
||||
def get_client(self, target, version_cap, serializer):
|
||||
return rpc.get_client(target,
|
||||
version_cap=version_cap,
|
||||
serializer=serializer)
|
||||
|
||||
def _get_compat_version(self, current, havana_compat):
|
||||
if not self.can_send_version(current):
|
||||
if not self.client.can_send_version(current):
|
||||
return havana_compat
|
||||
return current
|
||||
|
||||
@@ -267,9 +262,9 @@ class ComputeAPI(rpcclient.RpcProxy):
|
||||
parameter for the remote method.
|
||||
:param host: This is the host to send the message to.
|
||||
'''
|
||||
if self.can_send_version('3.0'):
|
||||
if self.client.can_send_version('3.0'):
|
||||
version = '3.0'
|
||||
elif self.can_send_version('2.48'):
|
||||
elif self.client.can_send_version('2.48'):
|
||||
version = '2.48'
|
||||
else:
|
||||
# NOTE(russellb) Havana compat
|
||||
@@ -428,7 +423,7 @@ class ComputeAPI(rpcclient.RpcProxy):
|
||||
instance=instance_p)
|
||||
|
||||
def get_vnc_console(self, ctxt, instance, console_type):
|
||||
if self.can_send_version('3.2'):
|
||||
if self.client.can_send_version('3.2'):
|
||||
version = '3.2'
|
||||
else:
|
||||
# NOTE(russellb) Havana compat
|
||||
@@ -440,7 +435,7 @@ class ComputeAPI(rpcclient.RpcProxy):
|
||||
instance=instance, console_type=console_type)
|
||||
|
||||
def get_spice_console(self, ctxt, instance, console_type):
|
||||
if self.can_send_version('3.1'):
|
||||
if self.client.can_send_version('3.1'):
|
||||
version = '3.1'
|
||||
else:
|
||||
# NOTE(russellb) Havana compat
|
||||
@@ -452,7 +447,7 @@ class ComputeAPI(rpcclient.RpcProxy):
|
||||
instance=instance, console_type=console_type)
|
||||
|
||||
def validate_console_port(self, ctxt, instance, port, console_type):
|
||||
if self.can_send_version('3.3'):
|
||||
if self.client.can_send_version('3.3'):
|
||||
version = '3.3'
|
||||
else:
|
||||
# NOTE(russellb) Havana compat
|
||||
@@ -573,10 +568,10 @@ class ComputeAPI(rpcclient.RpcProxy):
|
||||
# NOTE(danms): kwargs is only here for cells compatibility, don't
|
||||
# actually send it to compute
|
||||
extra = {}
|
||||
if self.can_send_version('3.5'):
|
||||
if self.client.can_send_version('3.5'):
|
||||
version = '3.5'
|
||||
extra['preserve_ephemeral'] = preserve_ephemeral
|
||||
elif self.can_send_version('3.4'):
|
||||
elif self.client.can_send_version('3.4'):
|
||||
version = '3.4'
|
||||
else:
|
||||
# NOTE(russellb) Havana compat
|
||||
@@ -610,9 +605,9 @@ class ComputeAPI(rpcclient.RpcProxy):
|
||||
parameter for the remote method.
|
||||
:param host: This is the host to send the message to.
|
||||
'''
|
||||
if self.can_send_version('3.0'):
|
||||
if self.client.can_send_version('3.0'):
|
||||
version = '3.0'
|
||||
elif self.can_send_version('2.48'):
|
||||
elif self.client.can_send_version('2.48'):
|
||||
version = '2.48'
|
||||
else:
|
||||
# NOTE(russellb) Havana compat
|
||||
@@ -887,7 +882,7 @@ class ComputeAPI(rpcclient.RpcProxy):
|
||||
delete_info=delete_info)
|
||||
|
||||
|
||||
class SecurityGroupAPI(rpcclient.RpcProxy):
|
||||
class SecurityGroupAPI(object):
|
||||
'''Client side of the security group rpc API.
|
||||
|
||||
API version history:
|
||||
@@ -901,27 +896,15 @@ class SecurityGroupAPI(rpcclient.RpcProxy):
|
||||
compute API since it's all together on the server side.
|
||||
'''
|
||||
|
||||
#
|
||||
# NOTE(russellb): This is the default minimum version that the server
|
||||
# (manager) side must implement unless otherwise specified using a version
|
||||
# argument to self.call()/cast()/etc. here. It should be left as X.0 where
|
||||
# X is the current major API version (1.0, 2.0, ...). For more information
|
||||
# about rpc API versioning, see the docs in
|
||||
# openstack/common/rpc/dispatcher.py.
|
||||
#
|
||||
BASE_RPC_API_VERSION = '3.0'
|
||||
|
||||
def __init__(self):
|
||||
super(SecurityGroupAPI, self).__init__()
|
||||
target = messaging.Target(topic=CONF.compute_topic, version='3.0')
|
||||
version_cap = ComputeAPI.VERSION_ALIASES.get(
|
||||
CONF.upgrade_levels.compute, CONF.upgrade_levels.compute)
|
||||
super(SecurityGroupAPI, self).__init__(
|
||||
topic=CONF.compute_topic,
|
||||
default_version=self.BASE_RPC_API_VERSION,
|
||||
version_cap=version_cap)
|
||||
self.client = self.get_client()
|
||||
self.client = rpc.get_client(target, version_cap)
|
||||
|
||||
def _get_compat_version(self, current, havana_compat):
|
||||
if not self.can_send_version(current):
|
||||
if not self.client.can_send_version(current):
|
||||
return havana_compat
|
||||
return current
|
||||
|
||||
|
||||
@@ -28,11 +28,11 @@ from nova.compute import flavors
|
||||
from nova import exception
|
||||
from nova.network import model as network_model
|
||||
from nova import notifications
|
||||
from nova import notifier as notify
|
||||
from nova.objects import instance as instance_obj
|
||||
from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import log
|
||||
from nova.openstack.common import timeutils
|
||||
from nova import rpc
|
||||
from nova import utils
|
||||
from nova.virt import driver
|
||||
|
||||
@@ -337,8 +337,8 @@ def notify_about_aggregate_update(context, event_suffix, aggregate_payload):
|
||||
"notification and it will be ignored"))
|
||||
return
|
||||
|
||||
notifier = notify.get_notifier(service='aggregate',
|
||||
host=aggregate_identifier)
|
||||
notifier = rpc.get_notifier(service='aggregate',
|
||||
host=aggregate_identifier)
|
||||
|
||||
notifier.info(context, 'aggregate.%s' % event_suffix, aggregate_payload)
|
||||
|
||||
@@ -358,8 +358,7 @@ def notify_about_host_update(context, event_suffix, host_payload):
|
||||
"HostAPI.%s and it will be ignored"), event_suffix)
|
||||
return
|
||||
|
||||
notifier = notify.get_notifier(service='api',
|
||||
host=host_identifier)
|
||||
notifier = rpc.get_notifier(service='api', host=host_identifier)
|
||||
|
||||
notifier.info(context, 'HostAPI.%s' % event_suffix, host_payload)
|
||||
|
||||
|
||||
@@ -15,13 +15,13 @@
|
||||
"""Handles all requests to the conductor service."""
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
from nova import baserpc
|
||||
from nova.conductor import manager
|
||||
from nova.conductor import rpcapi
|
||||
from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
from nova import utils
|
||||
|
||||
conductor_opts = [
|
||||
@@ -382,7 +382,7 @@ class API(LocalAPI):
|
||||
self.base_rpcapi.ping(context, '1.21 GigaWatts',
|
||||
timeout=timeout)
|
||||
break
|
||||
except rpc_common.Timeout:
|
||||
except messaging.MessagingTimeout:
|
||||
LOG.warning(_('Timed out waiting for nova-conductor. '
|
||||
'Is it running? Or did this service start '
|
||||
'before nova-conductor?'))
|
||||
|
||||
+30
-35
@@ -14,6 +14,7 @@
|
||||
|
||||
"""Handles database requests from other nova services."""
|
||||
|
||||
from oslo import messaging
|
||||
import six
|
||||
|
||||
from nova.api.ec2 import ec2utils
|
||||
@@ -39,7 +40,6 @@ from nova.openstack.common import excutils
|
||||
from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
from nova.openstack.common import timeutils
|
||||
from nova import quota
|
||||
from nova.scheduler import rpcapi as scheduler_rpcapi
|
||||
@@ -76,7 +76,7 @@ class ConductorManager(manager.Manager):
|
||||
namespace. See the ComputeTaskManager class for details.
|
||||
"""
|
||||
|
||||
RPC_API_VERSION = '1.62'
|
||||
target = messaging.Target(version='1.62')
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(ConductorManager, self).__init__(service_name='conductor',
|
||||
@@ -88,11 +88,7 @@ class ConductorManager(manager.Manager):
|
||||
self.compute_task_mgr = ComputeTaskManager()
|
||||
self.quotas = quota.QUOTAS
|
||||
self.cells_rpcapi = cells_rpcapi.CellsAPI()
|
||||
|
||||
def create_rpc_dispatcher(self, *args, **kwargs):
|
||||
kwargs['additional_apis'] = [self.compute_task_mgr]
|
||||
return super(ConductorManager, self).create_rpc_dispatcher(*args,
|
||||
**kwargs)
|
||||
self.additional_endpoints.append(self.compute_task_mgr)
|
||||
|
||||
@property
|
||||
def network_api(self):
|
||||
@@ -114,10 +110,10 @@ class ConductorManager(manager.Manager):
|
||||
# now a part of the base rpc API.
|
||||
return jsonutils.to_primitive({'service': 'conductor', 'arg': arg})
|
||||
|
||||
@rpc_common.client_exceptions(KeyError, ValueError,
|
||||
exception.InvalidUUID,
|
||||
exception.InstanceNotFound,
|
||||
exception.UnexpectedTaskStateError)
|
||||
@messaging.expected_exceptions(KeyError, ValueError,
|
||||
exception.InvalidUUID,
|
||||
exception.InstanceNotFound,
|
||||
exception.UnexpectedTaskStateError)
|
||||
def instance_update(self, context, instance_uuid,
|
||||
updates, service=None):
|
||||
for key, value in updates.iteritems():
|
||||
@@ -134,12 +130,12 @@ class ConductorManager(manager.Manager):
|
||||
notifications.send_update(context, old_ref, instance_ref, service)
|
||||
return jsonutils.to_primitive(instance_ref)
|
||||
|
||||
@rpc_common.client_exceptions(exception.InstanceNotFound)
|
||||
@messaging.expected_exceptions(exception.InstanceNotFound)
|
||||
def instance_get(self, context, instance_id):
|
||||
return jsonutils.to_primitive(
|
||||
self.db.instance_get(context, instance_id))
|
||||
|
||||
@rpc_common.client_exceptions(exception.InstanceNotFound)
|
||||
@messaging.expected_exceptions(exception.InstanceNotFound)
|
||||
def instance_get_by_uuid(self, context, instance_uuid,
|
||||
columns_to_join=None):
|
||||
return jsonutils.to_primitive(
|
||||
@@ -162,7 +158,7 @@ class ConductorManager(manager.Manager):
|
||||
|
||||
# NOTE(comstud): This method is now deprecated and can be removed in
|
||||
# version v2.0 of the RPC API
|
||||
@rpc_common.client_exceptions(exception.MigrationNotFound)
|
||||
@messaging.expected_exceptions(exception.MigrationNotFound)
|
||||
def migration_get(self, context, migration_id):
|
||||
migration_ref = self.db.migration_get(context.elevated(),
|
||||
migration_id)
|
||||
@@ -191,26 +187,26 @@ class ConductorManager(manager.Manager):
|
||||
migration_ref = self.db.migration_create(context.elevated(), values)
|
||||
return jsonutils.to_primitive(migration_ref)
|
||||
|
||||
@rpc_common.client_exceptions(exception.MigrationNotFound)
|
||||
@messaging.expected_exceptions(exception.MigrationNotFound)
|
||||
def migration_update(self, context, migration, status):
|
||||
migration_ref = self.db.migration_update(context.elevated(),
|
||||
migration['id'],
|
||||
{'status': status})
|
||||
return jsonutils.to_primitive(migration_ref)
|
||||
|
||||
@rpc_common.client_exceptions(exception.AggregateHostExists)
|
||||
@messaging.expected_exceptions(exception.AggregateHostExists)
|
||||
def aggregate_host_add(self, context, aggregate, host):
|
||||
host_ref = self.db.aggregate_host_add(context.elevated(),
|
||||
aggregate['id'], host)
|
||||
|
||||
return jsonutils.to_primitive(host_ref)
|
||||
|
||||
@rpc_common.client_exceptions(exception.AggregateHostNotFound)
|
||||
@messaging.expected_exceptions(exception.AggregateHostNotFound)
|
||||
def aggregate_host_delete(self, context, aggregate, host):
|
||||
self.db.aggregate_host_delete(context.elevated(),
|
||||
aggregate['id'], host)
|
||||
|
||||
@rpc_common.client_exceptions(exception.AggregateNotFound)
|
||||
@messaging.expected_exceptions(exception.AggregateNotFound)
|
||||
def aggregate_get(self, context, aggregate_id):
|
||||
aggregate = self.db.aggregate_get(context.elevated(), aggregate_id)
|
||||
return jsonutils.to_primitive(aggregate)
|
||||
@@ -231,7 +227,7 @@ class ConductorManager(manager.Manager):
|
||||
|
||||
# NOTE(danms): This method is now deprecated and can be removed in
|
||||
# version 2.0 of the RPC API
|
||||
@rpc_common.client_exceptions(exception.AggregateMetadataNotFound)
|
||||
@messaging.expected_exceptions(exception.AggregateMetadataNotFound)
|
||||
def aggregate_metadata_delete(self, context, aggregate, key):
|
||||
self.db.aggregate_metadata_delete(context.elevated(),
|
||||
aggregate['id'], key)
|
||||
@@ -414,8 +410,8 @@ class ConductorManager(manager.Manager):
|
||||
self.notifier.info(context, 'volume.usage',
|
||||
compute_utils.usage_volume_info(vol_usage))
|
||||
|
||||
@rpc_common.client_exceptions(exception.ComputeHostNotFound,
|
||||
exception.HostBinaryNotFound)
|
||||
@messaging.expected_exceptions(exception.ComputeHostNotFound,
|
||||
exception.HostBinaryNotFound)
|
||||
def service_get_all_by(self, context, topic=None, host=None, binary=None):
|
||||
if not any((topic, host, binary)):
|
||||
result = self.db.service_get_all(context)
|
||||
@@ -448,7 +444,7 @@ class ConductorManager(manager.Manager):
|
||||
svc = self.db.service_create(context, values)
|
||||
return jsonutils.to_primitive(svc)
|
||||
|
||||
@rpc_common.client_exceptions(exception.ServiceNotFound)
|
||||
@messaging.expected_exceptions(exception.ServiceNotFound)
|
||||
def service_destroy(self, context, service_id):
|
||||
self.db.service_destroy(context, service_id)
|
||||
|
||||
@@ -465,7 +461,7 @@ class ConductorManager(manager.Manager):
|
||||
result = self.db.compute_node_delete(context, node['id'])
|
||||
return jsonutils.to_primitive(result)
|
||||
|
||||
@rpc_common.client_exceptions(exception.ServiceNotFound)
|
||||
@messaging.expected_exceptions(exception.ServiceNotFound)
|
||||
def service_update(self, context, service, values):
|
||||
svc = self.db.service_update(context, service['id'], values)
|
||||
return jsonutils.to_primitive(svc)
|
||||
@@ -567,7 +563,7 @@ class ConductorManager(manager.Manager):
|
||||
"""Dispatch a call to an object method.
|
||||
|
||||
This ensures that object methods get called and any exception
|
||||
that is raised gets wrapped in a ClientException for forwarding
|
||||
that is raised gets wrapped in an ExpectedException for forwarding
|
||||
back to the caller (without spamming the conductor logs).
|
||||
"""
|
||||
try:
|
||||
@@ -575,7 +571,7 @@ class ConductorManager(manager.Manager):
|
||||
# a missing method is really a client problem
|
||||
return getattr(target, method)(context, *args, **kwargs)
|
||||
except Exception:
|
||||
raise rpc_common.ClientException()
|
||||
raise messaging.ExpectedException()
|
||||
|
||||
def object_class_action(self, context, objname, objmethod,
|
||||
objver, args, kwargs):
|
||||
@@ -629,8 +625,7 @@ class ComputeTaskManager(base.Base):
|
||||
may involve coordinating activities on multiple compute nodes.
|
||||
"""
|
||||
|
||||
RPC_API_NAMESPACE = 'compute_task'
|
||||
RPC_API_VERSION = '1.6'
|
||||
target = messaging.Target(namespace='compute_task', version='1.6')
|
||||
|
||||
def __init__(self):
|
||||
super(ComputeTaskManager, self).__init__()
|
||||
@@ -639,14 +634,14 @@ class ComputeTaskManager(base.Base):
|
||||
self.image_service = glance.get_default_image_service()
|
||||
self.quotas = quota.QUOTAS
|
||||
|
||||
@rpc_common.client_exceptions(exception.NoValidHost,
|
||||
exception.ComputeServiceUnavailable,
|
||||
exception.InvalidHypervisorType,
|
||||
exception.UnableToMigrateToSelf,
|
||||
exception.DestinationHypervisorTooOld,
|
||||
exception.InvalidLocalStorage,
|
||||
exception.InvalidSharedStorage,
|
||||
exception.MigrationPreCheckError)
|
||||
@messaging.expected_exceptions(exception.NoValidHost,
|
||||
exception.ComputeServiceUnavailable,
|
||||
exception.InvalidHypervisorType,
|
||||
exception.UnableToMigrateToSelf,
|
||||
exception.DestinationHypervisorTooOld,
|
||||
exception.InvalidLocalStorage,
|
||||
exception.InvalidSharedStorage,
|
||||
exception.MigrationPreCheckError)
|
||||
def migrate_server(self, context, instance, scheduler_hint, live, rebuild,
|
||||
flavor, block_migration, disk_over_commit, reservations=None):
|
||||
if instance and not isinstance(instance, instance_obj.Instance):
|
||||
|
||||
+19
-21
@@ -1,4 +1,5 @@
|
||||
# Copyright 2013 IBM Corp.
|
||||
# Copyright 2013 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
|
||||
@@ -15,11 +16,11 @@
|
||||
"""Client side of the conductor RPC API."""
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
from nova.objects import base as objects_base
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
from nova import rpcclient
|
||||
from nova import rpc
|
||||
|
||||
CONF = cfg.CONF
|
||||
|
||||
@@ -28,7 +29,7 @@ rpcapi_cap_opt = cfg.StrOpt('conductor',
|
||||
CONF.register_opt(rpcapi_cap_opt, 'upgrade_levels')
|
||||
|
||||
|
||||
class ConductorAPI(rpcclient.RpcProxy):
|
||||
class ConductorAPI(object):
|
||||
"""Client side of the conductor RPC API
|
||||
|
||||
API version history:
|
||||
@@ -123,22 +124,20 @@ class ConductorAPI(rpcclient.RpcProxy):
|
||||
1.62 - Added object_backport()
|
||||
"""
|
||||
|
||||
BASE_RPC_API_VERSION = '1.0'
|
||||
|
||||
VERSION_ALIASES = {
|
||||
'grizzly': '1.48',
|
||||
'havana': '1.58',
|
||||
}
|
||||
|
||||
def __init__(self):
|
||||
super(ConductorAPI, self).__init__()
|
||||
target = messaging.Target(topic=CONF.conductor.topic, version='1.0')
|
||||
version_cap = self.VERSION_ALIASES.get(CONF.upgrade_levels.conductor,
|
||||
CONF.upgrade_levels.conductor)
|
||||
super(ConductorAPI, self).__init__(
|
||||
topic=CONF.conductor.topic,
|
||||
default_version=self.BASE_RPC_API_VERSION,
|
||||
serializer=objects_base.NovaObjectSerializer(),
|
||||
version_cap=version_cap)
|
||||
self.client = self.get_client()
|
||||
serializer = objects_base.NovaObjectSerializer()
|
||||
self.client = rpc.get_client(target,
|
||||
version_cap=version_cap,
|
||||
serializer=serializer)
|
||||
|
||||
def instance_update(self, context, instance_uuid, updates,
|
||||
service=None):
|
||||
@@ -255,7 +254,8 @@ class ConductorAPI(rpcclient.RpcProxy):
|
||||
else:
|
||||
# If we require new style data, but can't ask for it, then we must
|
||||
# fail here.
|
||||
raise rpc_common.RpcVersionCapError(version_cap=self.version_cap)
|
||||
raise messaging.RPCVersionCapError(
|
||||
vesion='1.51', version_cap=self.client.version_cap)
|
||||
|
||||
cctxt = self.client.prepare(version=version)
|
||||
return cctxt.call(context, 'block_device_mapping_get_all_by_instance',
|
||||
@@ -480,7 +480,7 @@ class ConductorAPI(rpcclient.RpcProxy):
|
||||
target_version=target_version)
|
||||
|
||||
|
||||
class ComputeTaskAPI(rpcclient.RpcProxy):
|
||||
class ComputeTaskAPI(object):
|
||||
"""Client side of the conductor 'compute' namespaced RPC API
|
||||
|
||||
API version history:
|
||||
@@ -494,15 +494,13 @@ class ComputeTaskAPI(rpcclient.RpcProxy):
|
||||
1.6 - Made migrate_server use instance objects
|
||||
"""
|
||||
|
||||
BASE_RPC_API_VERSION = '1.0'
|
||||
RPC_API_NAMESPACE = 'compute_task'
|
||||
|
||||
def __init__(self):
|
||||
super(ComputeTaskAPI, self).__init__(
|
||||
topic=CONF.conductor.topic,
|
||||
default_version=self.BASE_RPC_API_VERSION,
|
||||
serializer=objects_base.NovaObjectSerializer())
|
||||
self.client = self.get_client(namespace=self.RPC_API_NAMESPACE)
|
||||
super(ComputeTaskAPI, self).__init__()
|
||||
target = messaging.Target(topic=CONF.conductor.topic,
|
||||
namespace='compute_task',
|
||||
version='1.0')
|
||||
serializer = objects_base.NovaObjectSerializer()
|
||||
self.client = rpc.get_client(target, serializer=serializer)
|
||||
|
||||
def migrate_server(self, context, instance, scheduler_hint, live, rebuild,
|
||||
flavor, block_migration, disk_over_commit,
|
||||
|
||||
+2
-1
@@ -20,8 +20,8 @@
|
||||
from oslo.config import cfg
|
||||
|
||||
from nova.openstack.common.db.sqlalchemy import session as db_session
|
||||
from nova.openstack.common import rpc
|
||||
from nova import paths
|
||||
from nova import rpc
|
||||
from nova import version
|
||||
|
||||
_DEFAULT_SQL_CONNECTION = 'sqlite:///' + paths.state_path_def('$sqlite_db')
|
||||
@@ -35,3 +35,4 @@ def parse_args(argv, default_config_files=None):
|
||||
project='nova',
|
||||
version=version.version_string(),
|
||||
default_config_files=default_config_files)
|
||||
rpc.init(cfg.CONF)
|
||||
|
||||
+6
-5
@@ -22,7 +22,6 @@ from oslo.config import cfg
|
||||
from nova.compute import rpcapi as compute_rpcapi
|
||||
from nova.console import rpcapi as console_rpcapi
|
||||
from nova.db import base
|
||||
from nova.openstack.common import rpc
|
||||
from nova.openstack.common import uuidutils
|
||||
|
||||
CONF = cfg.CONF
|
||||
@@ -44,9 +43,8 @@ class API(base.Base):
|
||||
|
||||
def delete_console(self, context, instance_uuid, console_uuid):
|
||||
console = self.db.console_get(context, console_uuid, instance_uuid)
|
||||
topic = rpc.queue_get_for(context, CONF.console_topic,
|
||||
console['pool']['host'])
|
||||
rpcapi = console_rpcapi.ConsoleAPI(topic=topic)
|
||||
rpcapi = console_rpcapi.ConsoleAPI(topic=CONF.console_topic,
|
||||
server=console['pool']['host'])
|
||||
rpcapi.remove_console(context, console['id'])
|
||||
|
||||
def create_console(self, context, instance_uuid):
|
||||
@@ -57,7 +55,10 @@ class API(base.Base):
|
||||
# here.
|
||||
instance = self._get_instance(context, instance_uuid)
|
||||
topic = self._get_console_topic(context, instance['host'])
|
||||
rpcapi = console_rpcapi.ConsoleAPI(topic=topic)
|
||||
server = None
|
||||
if '.' in topic:
|
||||
topic, server = topic.split('.', 1)
|
||||
rpcapi = console_rpcapi.ConsoleAPI(topic=topic, server=server)
|
||||
rpcapi.add_console(context, instance['id'])
|
||||
|
||||
def _get_console_topic(self, context, instance_host):
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
import socket
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
from nova.compute import rpcapi as compute_rpcapi
|
||||
from nova import exception
|
||||
@@ -54,7 +55,7 @@ class ConsoleProxyManager(manager.Manager):
|
||||
|
||||
"""
|
||||
|
||||
RPC_API_VERSION = '2.0'
|
||||
target = messaging.Target(version='2.0')
|
||||
|
||||
def __init__(self, console_driver=None, *args, **kwargs):
|
||||
if not console_driver:
|
||||
|
||||
+9
-20
@@ -1,6 +1,6 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2012, Red Hat, Inc.
|
||||
# Copyright 2013 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
|
||||
@@ -19,8 +19,9 @@ Client side of the console RPC API.
|
||||
"""
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
from nova import rpcclient
|
||||
from nova import rpc
|
||||
|
||||
rpcapi_opts = [
|
||||
cfg.StrOpt('console_topic',
|
||||
@@ -36,7 +37,7 @@ rpcapi_cap_opt = cfg.StrOpt('console',
|
||||
CONF.register_opt(rpcapi_cap_opt, 'upgrade_levels')
|
||||
|
||||
|
||||
class ConsoleAPI(rpcclient.RpcProxy):
|
||||
class ConsoleAPI(object):
|
||||
'''Client side of the console rpc API.
|
||||
|
||||
API version history:
|
||||
@@ -51,33 +52,21 @@ class ConsoleAPI(rpcclient.RpcProxy):
|
||||
2.0 - Major API rev for Icehouse
|
||||
'''
|
||||
|
||||
#
|
||||
# NOTE(russellb): This is the default minimum version that the server
|
||||
# (manager) side must implement unless otherwise specified using a version
|
||||
# argument to self.call()/cast()/etc. here. It should be left as X.0 where
|
||||
# X is the current major API version (1.0, 2.0, ...). For more information
|
||||
# about rpc API versioning, see the docs in
|
||||
# openstack/common/rpc/dispatcher.py.
|
||||
#
|
||||
BASE_RPC_API_VERSION = '2.0'
|
||||
|
||||
VERSION_ALIASES = {
|
||||
'grizzly': '1.1',
|
||||
'havana': '1.1',
|
||||
}
|
||||
|
||||
def __init__(self, topic=None):
|
||||
def __init__(self, topic=None, server=None):
|
||||
super(ConsoleAPI, self).__init__()
|
||||
topic = topic if topic else CONF.console_topic
|
||||
target = messaging.Target(topic=topic, server=server, version='2.0')
|
||||
version_cap = self.VERSION_ALIASES.get(CONF.upgrade_levels.console,
|
||||
CONF.upgrade_levels.console)
|
||||
super(ConsoleAPI, self).__init__(
|
||||
topic=topic,
|
||||
default_version=self.BASE_RPC_API_VERSION,
|
||||
version_cap=version_cap)
|
||||
self.client = self.get_client()
|
||||
self.client = rpc.get_client(target, version_cap=version_cap)
|
||||
|
||||
def _get_compat_version(self, current, havana_compat):
|
||||
if not self.can_send_version(current):
|
||||
if not self.client.can_send_version(current):
|
||||
return havana_compat
|
||||
return current
|
||||
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
import time
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
from nova.cells import rpcapi as cells_rpcapi
|
||||
from nova.compute import rpcapi as compute_rpcapi
|
||||
@@ -50,7 +51,7 @@ CONF.import_opt('enable', 'nova.cells.opts', group='cells')
|
||||
class ConsoleAuthManager(manager.Manager):
|
||||
"""Manages token based authentication."""
|
||||
|
||||
RPC_API_VERSION = '2.0'
|
||||
target = messaging.Target(version='2.0')
|
||||
|
||||
def __init__(self, scheduler_driver=None, *args, **kwargs):
|
||||
super(ConsoleAuthManager, self).__init__(service_name='consoleauth',
|
||||
|
||||
+10
-21
@@ -1,6 +1,6 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2012, Red Hat, Inc.
|
||||
# Copyright 2013 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
|
||||
@@ -19,8 +19,9 @@ Client side of the consoleauth RPC API.
|
||||
"""
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
from nova import rpcclient
|
||||
from nova import rpc
|
||||
|
||||
CONF = cfg.CONF
|
||||
|
||||
@@ -29,7 +30,7 @@ rpcapi_cap_opt = cfg.StrOpt('consoleauth',
|
||||
CONF.register_opt(rpcapi_cap_opt, 'upgrade_levels')
|
||||
|
||||
|
||||
class ConsoleAuthAPI(rpcclient.RpcProxy):
|
||||
class ConsoleAuthAPI(object):
|
||||
'''Client side of the consoleauth rpc API.
|
||||
|
||||
API version history:
|
||||
@@ -46,36 +47,24 @@ class ConsoleAuthAPI(rpcclient.RpcProxy):
|
||||
2.0 - Major API rev for Icehouse
|
||||
'''
|
||||
|
||||
#
|
||||
# NOTE(russellb): This is the default minimum version that the server
|
||||
# (manager) side must implement unless otherwise specified using a version
|
||||
# argument to self.call()/cast()/etc. here. It should be left as X.0 where
|
||||
# X is the current major API version (1.0, 2.0, ...). For more information
|
||||
# about rpc API versioning, see the docs in
|
||||
# openstack/common/rpc/dispatcher.py.
|
||||
#
|
||||
BASE_RPC_API_VERSION = '2.0'
|
||||
|
||||
VERSION_ALIASES = {
|
||||
'grizzly': '1.2',
|
||||
'havana': '1.2',
|
||||
}
|
||||
|
||||
def __init__(self):
|
||||
super(ConsoleAuthAPI, self).__init__()
|
||||
target = messaging.Target(topic=CONF.consoleauth_topic, version='2.0')
|
||||
version_cap = self.VERSION_ALIASES.get(CONF.upgrade_levels.consoleauth,
|
||||
CONF.upgrade_levels.consoleauth)
|
||||
super(ConsoleAuthAPI, self).__init__(
|
||||
topic=CONF.consoleauth_topic,
|
||||
default_version=self.BASE_RPC_API_VERSION,
|
||||
version_cap=version_cap)
|
||||
self.client = self.get_client()
|
||||
self.client = rpc.get_client(target, version_cap=version_cap)
|
||||
|
||||
def authorize_console(self, ctxt, token, console_type, host, port,
|
||||
internal_access_path, instance_uuid):
|
||||
# The remote side doesn't return anything, but we want to block
|
||||
# until it completes.'
|
||||
version = '2.0'
|
||||
if not self.can_send_version('2.0'):
|
||||
if not self.client.can_send_version('2.0'):
|
||||
# NOTE(russellb) Havana compat
|
||||
version = '1.2'
|
||||
cctxt = self.client.prepare(version=version)
|
||||
@@ -88,7 +77,7 @@ class ConsoleAuthAPI(rpcclient.RpcProxy):
|
||||
|
||||
def check_token(self, ctxt, token):
|
||||
version = '2.0'
|
||||
if not self.can_send_version('2.0'):
|
||||
if not self.client.can_send_version('2.0'):
|
||||
# NOTE(russellb) Havana compat
|
||||
version = '1.0'
|
||||
cctxt = self.client.prepare(version=version)
|
||||
@@ -96,7 +85,7 @@ class ConsoleAuthAPI(rpcclient.RpcProxy):
|
||||
|
||||
def delete_tokens_for_instance(self, ctxt, instance_uuid):
|
||||
version = '2.0'
|
||||
if not self.can_send_version('2.0'):
|
||||
if not self.client.can_send_version('2.0'):
|
||||
# NOTE(russellb) Havana compat
|
||||
version = '1.2'
|
||||
cctxt = self.client.prepare(version=version)
|
||||
|
||||
+3
-21
@@ -55,13 +55,10 @@ This module provides Manager, a base class for managers.
|
||||
|
||||
from oslo.config import cfg
|
||||
|
||||
from nova import baserpc
|
||||
from nova.db import base
|
||||
from nova import notifier
|
||||
from nova.objects import base as objects_base
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import periodic_task
|
||||
from nova.openstack.common.rpc import dispatcher as rpc_dispatcher
|
||||
from nova import rpc
|
||||
|
||||
|
||||
CONF = cfg.CONF
|
||||
@@ -70,8 +67,6 @@ LOG = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class Manager(base.Base, periodic_task.PeriodicTasks):
|
||||
# Set RPC API version to 1.0 by default.
|
||||
RPC_API_VERSION = '1.0'
|
||||
|
||||
def __init__(self, host=None, db_driver=None, service_name='undefined'):
|
||||
if not host:
|
||||
@@ -79,23 +74,10 @@ class Manager(base.Base, periodic_task.PeriodicTasks):
|
||||
self.host = host
|
||||
self.backdoor_port = None
|
||||
self.service_name = service_name
|
||||
self.notifier = notifier.get_notifier(self.service_name, self.host)
|
||||
self.notifier = rpc.get_notifier(self.service_name, self.host)
|
||||
self.additional_endpoints = []
|
||||
super(Manager, self).__init__(db_driver)
|
||||
|
||||
def create_rpc_dispatcher(self, backdoor_port=None, additional_apis=None):
|
||||
'''Get the rpc dispatcher for this manager.
|
||||
|
||||
If a manager would like to set an rpc API version, or support more than
|
||||
one class as the target of rpc messages, override this method.
|
||||
'''
|
||||
apis = []
|
||||
if additional_apis:
|
||||
apis.extend(additional_apis)
|
||||
base_rpc = baserpc.BaseRPCAPI(self.service_name, backdoor_port)
|
||||
apis.extend([self, base_rpc])
|
||||
serializer = objects_base.NovaObjectSerializer()
|
||||
return rpc_dispatcher.RpcDispatcher(apis, serializer)
|
||||
|
||||
def periodic_tasks(self, context, raise_on_error=False):
|
||||
"""Tasks to be run at a periodic interval."""
|
||||
return self.run_periodic_tasks(context, raise_on_error=raise_on_error)
|
||||
|
||||
@@ -18,21 +18,21 @@
|
||||
# under the License.
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
from nova import context
|
||||
from nova.db import base
|
||||
from nova import exception
|
||||
from nova.network import rpcapi as network_rpcapi
|
||||
from nova import notifier
|
||||
from nova.objects import dns_domain as dns_domain_obj
|
||||
from nova.openstack.common import excutils
|
||||
from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import importutils
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import processutils
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
from nova.openstack.common import uuidutils
|
||||
from nova import quota
|
||||
from nova import rpc
|
||||
from nova import servicegroup
|
||||
from nova import utils
|
||||
|
||||
@@ -240,7 +240,7 @@ class FloatingIP(object):
|
||||
|
||||
return floating_ip
|
||||
|
||||
@rpc_common.client_exceptions(exception.FloatingIpNotFoundForAddress)
|
||||
@messaging.expected_exceptions(exception.FloatingIpNotFoundForAddress)
|
||||
def deallocate_floating_ip(self, context, address,
|
||||
affect_auto_assigned=False):
|
||||
"""Returns a floating ip to the pool."""
|
||||
@@ -286,7 +286,7 @@ class FloatingIP(object):
|
||||
if reservations:
|
||||
QUOTAS.commit(context, reservations, project_id=project_id)
|
||||
|
||||
@rpc_common.client_exceptions(exception.FloatingIpNotFoundForAddress)
|
||||
@messaging.expected_exceptions(exception.FloatingIpNotFoundForAddress)
|
||||
def associate_floating_ip(self, context, floating_address, fixed_address,
|
||||
affect_auto_assigned=False):
|
||||
"""Associates a floating ip with a fixed ip.
|
||||
@@ -390,7 +390,7 @@ class FloatingIP(object):
|
||||
'network.floating_ip.associate', payload)
|
||||
do_associate()
|
||||
|
||||
@rpc_common.client_exceptions(exception.FloatingIpNotFoundForAddress)
|
||||
@messaging.expected_exceptions(exception.FloatingIpNotFoundForAddress)
|
||||
def disassociate_floating_ip(self, context, address,
|
||||
affect_auto_assigned=False):
|
||||
"""Disassociates a floating ip from its fixed ip.
|
||||
@@ -474,7 +474,7 @@ class FloatingIP(object):
|
||||
'network.floating_ip.disassociate', payload)
|
||||
do_disassociate()
|
||||
|
||||
@rpc_common.client_exceptions(exception.FloatingIpNotFound)
|
||||
@messaging.expected_exceptions(exception.FloatingIpNotFound)
|
||||
def get_floating_ip(self, context, id):
|
||||
"""Returns a floating IP as a dict."""
|
||||
# NOTE(vish): This is no longer used but can't be removed until
|
||||
@@ -700,4 +700,4 @@ class LocalManager(base.Base, FloatingIP):
|
||||
CONF.floating_ip_dns_manager)
|
||||
self.instance_dns_manager = importutils.import_object(
|
||||
CONF.instance_dns_manager)
|
||||
self.notifier = notifier.get_notifier('network', CONF.host)
|
||||
self.notifier = rpc.get_notifier('network', CONF.host)
|
||||
|
||||
@@ -52,6 +52,7 @@ import uuid
|
||||
import eventlet
|
||||
import netaddr
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
from nova import context
|
||||
from nova import exception
|
||||
@@ -76,7 +77,6 @@ from nova.openstack.common import importutils
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import periodic_task
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
from nova.openstack.common import strutils
|
||||
from nova.openstack.common import timeutils
|
||||
from nova.openstack.common import uuidutils
|
||||
@@ -270,7 +270,7 @@ class NetworkManager(manager.Manager):
|
||||
The one at a time part is to flatten the layout to help scale
|
||||
"""
|
||||
|
||||
RPC_API_VERSION = '1.10'
|
||||
target = messaging.Target(version='1.10')
|
||||
|
||||
# If True, this manager requires VIF to create a bridge.
|
||||
SHOULD_CREATE_BRIDGE = False
|
||||
@@ -558,7 +558,7 @@ class NetworkManager(manager.Manager):
|
||||
vif_obj.VirtualInterface.delete_by_instance_uuid(read_deleted_context,
|
||||
instance_uuid)
|
||||
|
||||
@rpc_common.client_exceptions(exception.InstanceNotFound)
|
||||
@messaging.expected_exceptions(exception.InstanceNotFound)
|
||||
def get_instance_nw_info(self, context, instance_id, rxtx_factor,
|
||||
host, instance_uuid=None, **kwargs):
|
||||
"""Creates network info list for instance.
|
||||
|
||||
+9
-20
@@ -1,6 +1,6 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2012, Red Hat, Inc.
|
||||
# Copyright 2013, 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
|
||||
@@ -19,10 +19,11 @@ Client side of the network RPC API.
|
||||
"""
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
from nova.objects import base as objects_base
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova import rpcclient
|
||||
from nova import rpc
|
||||
|
||||
rpcapi_opts = [
|
||||
cfg.StrOpt('network_topic',
|
||||
@@ -42,7 +43,7 @@ rpcapi_cap_opt = cfg.StrOpt('network',
|
||||
CONF.register_opt(rpcapi_cap_opt, 'upgrade_levels')
|
||||
|
||||
|
||||
class NetworkAPI(rpcclient.RpcProxy):
|
||||
class NetworkAPI(object):
|
||||
'''Client side of the network rpc API.
|
||||
|
||||
API version history:
|
||||
@@ -75,31 +76,19 @@ class NetworkAPI(rpcclient.RpcProxy):
|
||||
NOTE: remove unused method get_all_networks()
|
||||
'''
|
||||
|
||||
#
|
||||
# NOTE(russellb): This is the default minimum version that the server
|
||||
# (manager) side must implement unless otherwise specified using a version
|
||||
# argument to self.call()/cast()/etc. here. It should be left as X.0 where
|
||||
# X is the current major API version (1.0, 2.0, ...). For more information
|
||||
# about rpc API versioning, see the docs in
|
||||
# openstack/common/rpc/dispatcher.py.
|
||||
#
|
||||
BASE_RPC_API_VERSION = '1.0'
|
||||
|
||||
VERSION_ALIASES = {
|
||||
'grizzly': '1.9',
|
||||
'havana': '1.10',
|
||||
}
|
||||
|
||||
def __init__(self, topic=None):
|
||||
topic = topic if topic else CONF.network_topic
|
||||
super(NetworkAPI, self).__init__()
|
||||
topic = topic or CONF.network_topic
|
||||
target = messaging.Target(topic=topic, version='1.0')
|
||||
version_cap = self.VERSION_ALIASES.get(CONF.upgrade_levels.network,
|
||||
CONF.upgrade_levels.network)
|
||||
super(NetworkAPI, self).__init__(
|
||||
topic=topic,
|
||||
default_version=self.BASE_RPC_API_VERSION,
|
||||
serializer=objects_base.NovaObjectSerializer(),
|
||||
version_cap=version_cap)
|
||||
self.client = self.get_client()
|
||||
serializer = objects_base.NovaObjectSerializer()
|
||||
self.client = rpc.get_client(target, version_cap, serializer)
|
||||
|
||||
# TODO(russellb): Convert this to named arguments. It's a pretty large
|
||||
# list, so unwinding it all is probably best done in its own patch so it's
|
||||
|
||||
+11
-10
@@ -30,12 +30,12 @@ from nova import db
|
||||
from nova.image import glance
|
||||
from nova import network
|
||||
from nova.network import model as network_model
|
||||
from nova import notifier as notify
|
||||
from nova.openstack.common import context as common_context
|
||||
from nova.openstack.common import excutils
|
||||
from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import log
|
||||
from nova.openstack.common import timeutils
|
||||
from nova import rpc
|
||||
from nova import utils
|
||||
|
||||
LOG = log.getLogger(__name__)
|
||||
@@ -50,15 +50,16 @@ notify_opts = [
|
||||
cfg.BoolOpt('notify_api_faults', default=False,
|
||||
help='If set, send api.fault notifications on caught exceptions '
|
||||
'in the API service.'),
|
||||
cfg.StrOpt('default_notification_level',
|
||||
default='INFO',
|
||||
help='Default notification level for outgoing notifications'),
|
||||
cfg.StrOpt('default_publisher_id',
|
||||
help='Default publisher_id for outgoing notifications'),
|
||||
]
|
||||
|
||||
|
||||
CONF = cfg.CONF
|
||||
CONF.register_opts(notify_opts)
|
||||
CONF.import_opt('default_notification_level',
|
||||
'nova.openstack.common.notifier.api')
|
||||
CONF.import_opt('default_publisher_id',
|
||||
'nova.openstack.common.notifier.api')
|
||||
|
||||
|
||||
def notify_decorator(name, fn):
|
||||
@@ -81,8 +82,8 @@ def notify_decorator(name, fn):
|
||||
ctxt = common_context.get_context_from_function_and_args(
|
||||
fn, args, kwarg)
|
||||
|
||||
notifier = notify.get_notifier(publisher_id=(CONF.default_publisher_id
|
||||
or CONF.host))
|
||||
notifier = rpc.get_notifier(publisher_id=(CONF.default_publisher_id
|
||||
or CONF.host))
|
||||
method = notifier.getattr(CONF.default_notification_level.lower(),
|
||||
'info')
|
||||
method(ctxt, name, body)
|
||||
@@ -99,7 +100,7 @@ def send_api_fault(url, status, exception):
|
||||
|
||||
payload = {'url': url, 'exception': str(exception), 'status': status}
|
||||
|
||||
notify.get_notifier('api').error(None, 'api.fault', payload)
|
||||
rpc.get_notifier('api').error(None, 'api.fault', payload)
|
||||
|
||||
|
||||
def send_update(context, old_instance, new_instance, service=None, host=None):
|
||||
@@ -225,8 +226,8 @@ def _send_instance_update_notification(context, instance, old_vm_state=None,
|
||||
if old_display_name:
|
||||
payload["old_display_name"] = old_display_name
|
||||
|
||||
notify.get_notifier(service, host).info(context,
|
||||
'compute.instance.update', payload)
|
||||
rpc.get_notifier(service, host).info(context,
|
||||
'compute.instance.update', payload)
|
||||
|
||||
|
||||
def audit_period_bounds(current_period=False):
|
||||
|
||||
@@ -1,73 +0,0 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2013 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.
|
||||
|
||||
"""
|
||||
A temporary helper which emulates oslo.messaging.Notifier.
|
||||
|
||||
This helper method allows us to do the tedious porting to the new Notifier API
|
||||
as a standalone commit so that the commit which switches us to oslo.messaging
|
||||
is smaller and easier to review. This file will be removed as part of that
|
||||
commit.
|
||||
"""
|
||||
|
||||
from oslo.config import cfg
|
||||
|
||||
from nova.openstack.common.notifier import api as notifier_api
|
||||
|
||||
CONF = cfg.CONF
|
||||
|
||||
|
||||
class Notifier(object):
|
||||
|
||||
def __init__(self, publisher_id):
|
||||
super(Notifier, self).__init__()
|
||||
self.publisher_id = publisher_id
|
||||
|
||||
_marker = object()
|
||||
|
||||
def prepare(self, publisher_id=_marker):
|
||||
ret = self.__class__(self.publisher_id)
|
||||
if publisher_id is not self._marker:
|
||||
ret.publisher_id = publisher_id
|
||||
return ret
|
||||
|
||||
def _notify(self, ctxt, event_type, payload, priority):
|
||||
notifier_api.notify(ctxt,
|
||||
self.publisher_id,
|
||||
event_type,
|
||||
priority,
|
||||
payload)
|
||||
|
||||
def debug(self, ctxt, event_type, payload):
|
||||
self._notify(ctxt, event_type, payload, 'DEBUG')
|
||||
|
||||
def info(self, ctxt, event_type, payload):
|
||||
self._notify(ctxt, event_type, payload, 'INFO')
|
||||
|
||||
def warn(self, ctxt, event_type, payload):
|
||||
self._notify(ctxt, event_type, payload, 'WARN')
|
||||
|
||||
def error(self, ctxt, event_type, payload):
|
||||
self._notify(ctxt, event_type, payload, 'ERROR')
|
||||
|
||||
def critical(self, ctxt, event_type, payload):
|
||||
self._notify(ctxt, event_type, payload, 'CRITICAL')
|
||||
|
||||
|
||||
def get_notifier(service=None, host=None, publisher_id=None):
|
||||
if not publisher_id:
|
||||
publisher_id = "%s.%s" % (service, host or CONF.host)
|
||||
return Notifier(publisher_id)
|
||||
@@ -19,6 +19,7 @@ import copy
|
||||
import functools
|
||||
|
||||
import netaddr
|
||||
from oslo import messaging
|
||||
import six
|
||||
|
||||
from nova import context
|
||||
@@ -26,8 +27,6 @@ from nova import exception
|
||||
from nova.objects import fields
|
||||
from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
import nova.openstack.common.rpc.serializer
|
||||
from nova.openstack.common import versionutils
|
||||
|
||||
|
||||
@@ -128,8 +127,7 @@ def remotable(fn):
|
||||
def wrapper(self, *args, **kwargs):
|
||||
ctxt = self._context
|
||||
try:
|
||||
if isinstance(args[0], (context.RequestContext,
|
||||
rpc_common.CommonRpcContext)):
|
||||
if isinstance(args[0], (context.RequestContext)):
|
||||
ctxt = args[0]
|
||||
args = args[1:]
|
||||
except IndexError:
|
||||
@@ -506,13 +504,13 @@ class ObjectListBase(object):
|
||||
primitives[index]['nova_object.version'] = child_target_version
|
||||
|
||||
|
||||
class NovaObjectSerializer(nova.openstack.common.rpc.serializer.Serializer):
|
||||
class NovaObjectSerializer(messaging.NoOpSerializer):
|
||||
"""A NovaObject-aware Serializer.
|
||||
|
||||
This implements the Oslo Serializer interface and provides the
|
||||
ability to serialize and deserialize NovaObject entities. Any service
|
||||
that needs to accept or return NovaObjects as arguments or result values
|
||||
should pass this to its RpcProxy and RpcDispatcher objects.
|
||||
should pass this to its RPCClient and RPCServer objects.
|
||||
"""
|
||||
|
||||
@property
|
||||
|
||||
@@ -1,173 +0,0 @@
|
||||
# Copyright 2011 OpenStack Foundation.
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# 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 oslo.config import cfg
|
||||
|
||||
from nova.openstack.common import context
|
||||
from nova.openstack.common.gettextutils import _ # noqa
|
||||
from nova.openstack.common import importutils
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import timeutils
|
||||
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
notifier_opts = [
|
||||
cfg.MultiStrOpt('notification_driver',
|
||||
default=[],
|
||||
help='Driver or drivers to handle sending notifications'),
|
||||
cfg.StrOpt('default_notification_level',
|
||||
default='INFO',
|
||||
help='Default notification level for outgoing notifications'),
|
||||
cfg.StrOpt('default_publisher_id',
|
||||
default=None,
|
||||
help='Default publisher_id for outgoing notifications'),
|
||||
]
|
||||
|
||||
CONF = cfg.CONF
|
||||
CONF.register_opts(notifier_opts)
|
||||
|
||||
WARN = 'WARN'
|
||||
INFO = 'INFO'
|
||||
ERROR = 'ERROR'
|
||||
CRITICAL = 'CRITICAL'
|
||||
DEBUG = 'DEBUG'
|
||||
|
||||
log_levels = (DEBUG, WARN, INFO, ERROR, CRITICAL)
|
||||
|
||||
|
||||
class BadPriorityException(Exception):
|
||||
pass
|
||||
|
||||
|
||||
def notify_decorator(name, fn):
|
||||
"""Decorator for notify which is used from utils.monkey_patch().
|
||||
|
||||
:param name: name of the function
|
||||
:param function: - object of the function
|
||||
:returns: function -- decorated function
|
||||
|
||||
"""
|
||||
def wrapped_func(*args, **kwarg):
|
||||
body = {}
|
||||
body['args'] = []
|
||||
body['kwarg'] = {}
|
||||
for arg in args:
|
||||
body['args'].append(arg)
|
||||
for key in kwarg:
|
||||
body['kwarg'][key] = kwarg[key]
|
||||
|
||||
ctxt = context.get_context_from_function_and_args(fn, args, kwarg)
|
||||
notify(ctxt,
|
||||
CONF.default_publisher_id or socket.gethostname(),
|
||||
name,
|
||||
CONF.default_notification_level,
|
||||
body)
|
||||
return fn(*args, **kwarg)
|
||||
return wrapped_func
|
||||
|
||||
|
||||
def publisher_id(service, host=None):
|
||||
if not host:
|
||||
try:
|
||||
host = CONF.host
|
||||
except AttributeError:
|
||||
host = CONF.default_publisher_id or socket.gethostname()
|
||||
return "%s.%s" % (service, host)
|
||||
|
||||
|
||||
def notify(context, publisher_id, event_type, priority, payload):
|
||||
"""Sends a notification using the specified driver
|
||||
|
||||
:param publisher_id: the source worker_type.host of the message
|
||||
:param event_type: the literal type of event (ex. Instance Creation)
|
||||
:param priority: patterned after the enumeration of Python logging
|
||||
levels in the set (DEBUG, WARN, INFO, ERROR, CRITICAL)
|
||||
:param payload: A python dictionary of attributes
|
||||
|
||||
Outgoing message format includes the above parameters, and appends the
|
||||
following:
|
||||
|
||||
message_id
|
||||
a UUID representing the id for this notification
|
||||
|
||||
timestamp
|
||||
the GMT timestamp the notification was sent at
|
||||
|
||||
The composite message will be constructed as a dictionary of the above
|
||||
attributes, which will then be sent via the transport mechanism defined
|
||||
by the driver.
|
||||
|
||||
Message example::
|
||||
|
||||
{'message_id': str(uuid.uuid4()),
|
||||
'publisher_id': 'compute.host1',
|
||||
'timestamp': timeutils.utcnow(),
|
||||
'priority': 'WARN',
|
||||
'event_type': 'compute.create_instance',
|
||||
'payload': {'instance_id': 12, ... }}
|
||||
|
||||
"""
|
||||
if priority not in log_levels:
|
||||
raise BadPriorityException(
|
||||
_('%s not in valid priorities') % priority)
|
||||
|
||||
# Ensure everything is JSON serializable.
|
||||
payload = jsonutils.to_primitive(payload, convert_instances=True)
|
||||
|
||||
msg = dict(message_id=str(uuid.uuid4()),
|
||||
publisher_id=publisher_id,
|
||||
event_type=event_type,
|
||||
priority=priority,
|
||||
payload=payload,
|
||||
timestamp=str(timeutils.utcnow()))
|
||||
|
||||
for driver in _get_drivers():
|
||||
try:
|
||||
driver.notify(context, msg)
|
||||
except Exception as e:
|
||||
LOG.exception(_("Problem '%(e)s' attempting to "
|
||||
"send to notification system. "
|
||||
"Payload=%(payload)s")
|
||||
% dict(e=e, payload=payload))
|
||||
|
||||
|
||||
_drivers = None
|
||||
|
||||
|
||||
def _get_drivers():
|
||||
"""Instantiate, cache, and return drivers based on the CONF."""
|
||||
global _drivers
|
||||
if _drivers is None:
|
||||
_drivers = {}
|
||||
for notification_driver in CONF.notification_driver:
|
||||
try:
|
||||
driver = importutils.import_module(notification_driver)
|
||||
_drivers[notification_driver] = driver
|
||||
except ImportError:
|
||||
LOG.exception(_("Failed to load notifier %s. "
|
||||
"These notifications will not be sent.") %
|
||||
notification_driver)
|
||||
return _drivers.values()
|
||||
|
||||
|
||||
def _reset_drivers():
|
||||
"""Used by unit tests to reset the drivers."""
|
||||
global _drivers
|
||||
_drivers = None
|
||||
@@ -1,37 +0,0 @@
|
||||
# Copyright 2011 OpenStack Foundation.
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# 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
|
||||
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import log as logging
|
||||
|
||||
|
||||
CONF = cfg.CONF
|
||||
|
||||
|
||||
def notify(_context, message):
|
||||
"""Notifies the recipient of the desired event given the model.
|
||||
|
||||
Log notifications using OpenStack's default logging system.
|
||||
"""
|
||||
|
||||
priority = message.get('priority',
|
||||
CONF.default_notification_level)
|
||||
priority = priority.lower()
|
||||
logger = logging.getLogger(
|
||||
'nova.openstack.common.notification.%s' %
|
||||
message['event_type'])
|
||||
getattr(logger, priority)(jsonutils.dumps(message))
|
||||
@@ -1,19 +0,0 @@
|
||||
# Copyright 2011 OpenStack Foundation.
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# 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.
|
||||
|
||||
|
||||
def notify(_context, message):
|
||||
"""Notifies the recipient of the desired event given the model."""
|
||||
pass
|
||||
@@ -1,29 +0,0 @@
|
||||
# Copyright 2012 Red Hat, Inc.
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# 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 nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common.notifier import rpc_notifier
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
|
||||
def notify(context, message):
|
||||
"""Deprecated in Grizzly. Please use rpc_notifier instead."""
|
||||
|
||||
LOG.deprecated(_("The rabbit_notifier is now deprecated."
|
||||
" Please use rpc_notifier instead."))
|
||||
rpc_notifier.notify(context, message)
|
||||
@@ -1,46 +0,0 @@
|
||||
# Copyright 2011 OpenStack Foundation.
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# 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
|
||||
|
||||
from nova.openstack.common import context as req_context
|
||||
from nova.openstack.common.gettextutils import _ # noqa
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import rpc
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
notification_topic_opt = cfg.ListOpt(
|
||||
'notification_topics', default=['notifications', ],
|
||||
help='AMQP topic used for OpenStack notifications')
|
||||
|
||||
CONF = cfg.CONF
|
||||
CONF.register_opt(notification_topic_opt)
|
||||
|
||||
|
||||
def notify(context, message):
|
||||
"""Sends a notification via RPC."""
|
||||
if not context:
|
||||
context = req_context.get_admin_context()
|
||||
priority = message.get('priority',
|
||||
CONF.default_notification_level)
|
||||
priority = priority.lower()
|
||||
for topic in CONF.notification_topics:
|
||||
topic = '%s.%s' % (topic, priority)
|
||||
try:
|
||||
rpc.notify(context, topic, message)
|
||||
except Exception:
|
||||
LOG.exception(_("Could not send notification to %(topic)s. "
|
||||
"Payload=%(message)s"), locals())
|
||||
@@ -1,52 +0,0 @@
|
||||
# Copyright 2011 OpenStack Foundation.
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# 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.
|
||||
|
||||
'''messaging based notification driver, with message envelopes'''
|
||||
|
||||
from oslo.config import cfg
|
||||
|
||||
from nova.openstack.common import context as req_context
|
||||
from nova.openstack.common.gettextutils import _ # noqa
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import rpc
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
notification_topic_opt = cfg.ListOpt(
|
||||
'topics', default=['notifications', ],
|
||||
help='AMQP topic(s) used for OpenStack notifications')
|
||||
|
||||
opt_group = cfg.OptGroup(name='rpc_notifier2',
|
||||
title='Options for rpc_notifier2')
|
||||
|
||||
CONF = cfg.CONF
|
||||
CONF.register_group(opt_group)
|
||||
CONF.register_opt(notification_topic_opt, opt_group)
|
||||
|
||||
|
||||
def notify(context, message):
|
||||
"""Sends a notification via RPC."""
|
||||
if not context:
|
||||
context = req_context.get_admin_context()
|
||||
priority = message.get('priority',
|
||||
CONF.default_notification_level)
|
||||
priority = priority.lower()
|
||||
for topic in CONF.rpc_notifier2.topics:
|
||||
topic = '%s.%s' % (topic, priority)
|
||||
try:
|
||||
rpc.notify(context, topic, message, envelope=True)
|
||||
except Exception:
|
||||
LOG.exception(_("Could not send notification to %(topic)s. "
|
||||
"Payload=%(message)s"), locals())
|
||||
@@ -1,22 +0,0 @@
|
||||
# Copyright 2011 OpenStack Foundation.
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# 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.
|
||||
|
||||
|
||||
NOTIFICATIONS = []
|
||||
|
||||
|
||||
def notify(_context, message):
|
||||
"""Test notifier, stores notifications in memory for unittests."""
|
||||
NOTIFICATIONS.append(message)
|
||||
@@ -1,306 +0,0 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2010 United States Government as represented by the
|
||||
# Administrator of the National Aeronautics and Space Administration.
|
||||
# All Rights Reserved.
|
||||
# Copyright 2011 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.
|
||||
|
||||
"""
|
||||
A remote procedure call (rpc) abstraction.
|
||||
|
||||
For some wrappers that add message versioning to rpc, see:
|
||||
rpc.dispatcher
|
||||
rpc.proxy
|
||||
"""
|
||||
|
||||
import inspect
|
||||
|
||||
from oslo.config import cfg
|
||||
|
||||
from nova.openstack.common.gettextutils import _ # noqa
|
||||
from nova.openstack.common import importutils
|
||||
from nova.openstack.common import local
|
||||
from nova.openstack.common import log as logging
|
||||
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
|
||||
rpc_opts = [
|
||||
cfg.StrOpt('rpc_backend',
|
||||
default='%s.impl_kombu' % __package__,
|
||||
help="The messaging module to use, defaults to kombu."),
|
||||
cfg.IntOpt('rpc_thread_pool_size',
|
||||
default=64,
|
||||
help='Size of RPC thread pool'),
|
||||
cfg.IntOpt('rpc_conn_pool_size',
|
||||
default=30,
|
||||
help='Size of RPC connection pool'),
|
||||
cfg.IntOpt('rpc_response_timeout',
|
||||
default=60,
|
||||
help='Seconds to wait for a response from call or multicall'),
|
||||
cfg.IntOpt('rpc_cast_timeout',
|
||||
default=30,
|
||||
help='Seconds to wait before a cast expires (TTL). '
|
||||
'Only supported by impl_zmq.'),
|
||||
cfg.ListOpt('allowed_rpc_exception_modules',
|
||||
default=['nova.exception',
|
||||
'cinder.exception',
|
||||
'exceptions',
|
||||
],
|
||||
help='Modules of exceptions that are permitted to be recreated'
|
||||
'upon receiving exception data from an rpc call.'),
|
||||
cfg.BoolOpt('fake_rabbit',
|
||||
default=False,
|
||||
help='If passed, use a fake RabbitMQ provider'),
|
||||
cfg.StrOpt('control_exchange',
|
||||
default='openstack',
|
||||
help='AMQP exchange to connect to if using RabbitMQ or Qpid'),
|
||||
]
|
||||
|
||||
CONF = cfg.CONF
|
||||
CONF.register_opts(rpc_opts)
|
||||
|
||||
|
||||
def set_defaults(control_exchange):
|
||||
cfg.set_defaults(rpc_opts,
|
||||
control_exchange=control_exchange)
|
||||
|
||||
|
||||
def create_connection(new=True):
|
||||
"""Create a connection to the message bus used for rpc.
|
||||
|
||||
For some example usage of creating a connection and some consumers on that
|
||||
connection, see nova.service.
|
||||
|
||||
:param new: Whether or not to create a new connection. A new connection
|
||||
will be created by default. If new is False, the
|
||||
implementation is free to return an existing connection from a
|
||||
pool.
|
||||
|
||||
:returns: An instance of openstack.common.rpc.common.Connection
|
||||
"""
|
||||
return _get_impl().create_connection(CONF, new=new)
|
||||
|
||||
|
||||
def _check_for_lock():
|
||||
if not CONF.debug:
|
||||
return None
|
||||
|
||||
if ((hasattr(local.strong_store, 'locks_held')
|
||||
and local.strong_store.locks_held)):
|
||||
stack = ' :: '.join([frame[3] for frame in inspect.stack()])
|
||||
LOG.warn(_('A RPC is being made while holding a lock. The locks '
|
||||
'currently held are %(locks)s. This is probably a bug. '
|
||||
'Please report it. Include the following: [%(stack)s].'),
|
||||
{'locks': local.strong_store.locks_held,
|
||||
'stack': stack})
|
||||
return True
|
||||
|
||||
return False
|
||||
|
||||
|
||||
def call(context, topic, msg, timeout=None, check_for_lock=False):
|
||||
"""Invoke a remote method that returns something.
|
||||
|
||||
:param context: Information that identifies the user that has made this
|
||||
request.
|
||||
:param topic: The topic to send the rpc message to. This correlates to the
|
||||
topic argument of
|
||||
openstack.common.rpc.common.Connection.create_consumer()
|
||||
and only applies when the consumer was created with
|
||||
fanout=False.
|
||||
:param msg: This is a dict in the form { "method" : "method_to_invoke",
|
||||
"args" : dict_of_kwargs }
|
||||
:param timeout: int, number of seconds to use for a response timeout.
|
||||
If set, this overrides the rpc_response_timeout option.
|
||||
:param check_for_lock: if True, a warning is emitted if a RPC call is made
|
||||
with a lock held.
|
||||
|
||||
:returns: A dict from the remote method.
|
||||
|
||||
:raises: openstack.common.rpc.common.Timeout if a complete response
|
||||
is not received before the timeout is reached.
|
||||
"""
|
||||
if check_for_lock:
|
||||
_check_for_lock()
|
||||
return _get_impl().call(CONF, context, topic, msg, timeout)
|
||||
|
||||
|
||||
def cast(context, topic, msg):
|
||||
"""Invoke a remote method that does not return anything.
|
||||
|
||||
:param context: Information that identifies the user that has made this
|
||||
request.
|
||||
:param topic: The topic to send the rpc message to. This correlates to the
|
||||
topic argument of
|
||||
openstack.common.rpc.common.Connection.create_consumer()
|
||||
and only applies when the consumer was created with
|
||||
fanout=False.
|
||||
:param msg: This is a dict in the form { "method" : "method_to_invoke",
|
||||
"args" : dict_of_kwargs }
|
||||
|
||||
:returns: None
|
||||
"""
|
||||
return _get_impl().cast(CONF, context, topic, msg)
|
||||
|
||||
|
||||
def fanout_cast(context, topic, msg):
|
||||
"""Broadcast a remote method invocation with no return.
|
||||
|
||||
This method will get invoked on all consumers that were set up with this
|
||||
topic name and fanout=True.
|
||||
|
||||
:param context: Information that identifies the user that has made this
|
||||
request.
|
||||
:param topic: The topic to send the rpc message to. This correlates to the
|
||||
topic argument of
|
||||
openstack.common.rpc.common.Connection.create_consumer()
|
||||
and only applies when the consumer was created with
|
||||
fanout=True.
|
||||
:param msg: This is a dict in the form { "method" : "method_to_invoke",
|
||||
"args" : dict_of_kwargs }
|
||||
|
||||
:returns: None
|
||||
"""
|
||||
return _get_impl().fanout_cast(CONF, context, topic, msg)
|
||||
|
||||
|
||||
def multicall(context, topic, msg, timeout=None, check_for_lock=False):
|
||||
"""Invoke a remote method and get back an iterator.
|
||||
|
||||
In this case, the remote method will be returning multiple values in
|
||||
separate messages, so the return values can be processed as the come in via
|
||||
an iterator.
|
||||
|
||||
:param context: Information that identifies the user that has made this
|
||||
request.
|
||||
:param topic: The topic to send the rpc message to. This correlates to the
|
||||
topic argument of
|
||||
openstack.common.rpc.common.Connection.create_consumer()
|
||||
and only applies when the consumer was created with
|
||||
fanout=False.
|
||||
:param msg: This is a dict in the form { "method" : "method_to_invoke",
|
||||
"args" : dict_of_kwargs }
|
||||
:param timeout: int, number of seconds to use for a response timeout.
|
||||
If set, this overrides the rpc_response_timeout option.
|
||||
:param check_for_lock: if True, a warning is emitted if a RPC call is made
|
||||
with a lock held.
|
||||
|
||||
:returns: An iterator. The iterator will yield a tuple (N, X) where N is
|
||||
an index that starts at 0 and increases by one for each value
|
||||
returned and X is the Nth value that was returned by the remote
|
||||
method.
|
||||
|
||||
:raises: openstack.common.rpc.common.Timeout if a complete response
|
||||
is not received before the timeout is reached.
|
||||
"""
|
||||
if check_for_lock:
|
||||
_check_for_lock()
|
||||
return _get_impl().multicall(CONF, context, topic, msg, timeout)
|
||||
|
||||
|
||||
def notify(context, topic, msg, envelope=False):
|
||||
"""Send notification event.
|
||||
|
||||
:param context: Information that identifies the user that has made this
|
||||
request.
|
||||
:param topic: The topic to send the notification to.
|
||||
:param msg: This is a dict of content of event.
|
||||
:param envelope: Set to True to enable message envelope for notifications.
|
||||
|
||||
:returns: None
|
||||
"""
|
||||
return _get_impl().notify(cfg.CONF, context, topic, msg, envelope)
|
||||
|
||||
|
||||
def cleanup():
|
||||
"""Clean up resoruces in use by implementation.
|
||||
|
||||
Clean up any resources that have been allocated by the RPC implementation.
|
||||
This is typically open connections to a messaging service. This function
|
||||
would get called before an application using this API exits to allow
|
||||
connections to get torn down cleanly.
|
||||
|
||||
:returns: None
|
||||
"""
|
||||
return _get_impl().cleanup()
|
||||
|
||||
|
||||
def cast_to_server(context, server_params, topic, msg):
|
||||
"""Invoke a remote method that does not return anything.
|
||||
|
||||
:param context: Information that identifies the user that has made this
|
||||
request.
|
||||
:param server_params: Connection information
|
||||
:param topic: The topic to send the notification to.
|
||||
:param msg: This is a dict in the form { "method" : "method_to_invoke",
|
||||
"args" : dict_of_kwargs }
|
||||
|
||||
:returns: None
|
||||
"""
|
||||
return _get_impl().cast_to_server(CONF, context, server_params, topic,
|
||||
msg)
|
||||
|
||||
|
||||
def fanout_cast_to_server(context, server_params, topic, msg):
|
||||
"""Broadcast to a remote method invocation with no return.
|
||||
|
||||
:param context: Information that identifies the user that has made this
|
||||
request.
|
||||
:param server_params: Connection information
|
||||
:param topic: The topic to send the notification to.
|
||||
:param msg: This is a dict in the form { "method" : "method_to_invoke",
|
||||
"args" : dict_of_kwargs }
|
||||
|
||||
:returns: None
|
||||
"""
|
||||
return _get_impl().fanout_cast_to_server(CONF, context, server_params,
|
||||
topic, msg)
|
||||
|
||||
|
||||
def queue_get_for(context, topic, host):
|
||||
"""Get a queue name for a given topic + host.
|
||||
|
||||
This function only works if this naming convention is followed on the
|
||||
consumer side, as well. For example, in nova, every instance of the
|
||||
nova-foo service calls create_consumer() for two topics:
|
||||
|
||||
foo
|
||||
foo.<host>
|
||||
|
||||
Messages sent to the 'foo' topic are distributed to exactly one instance of
|
||||
the nova-foo service. The services are chosen in a round-robin fashion.
|
||||
Messages sent to the 'foo.<host>' topic are sent to the nova-foo service on
|
||||
<host>.
|
||||
"""
|
||||
return '%s.%s' % (topic, host) if host else topic
|
||||
|
||||
|
||||
_RPCIMPL = None
|
||||
|
||||
|
||||
def _get_impl():
|
||||
"""Delay import of rpc_backend until configuration is loaded."""
|
||||
global _RPCIMPL
|
||||
if _RPCIMPL is None:
|
||||
try:
|
||||
_RPCIMPL = importutils.import_module(CONF.rpc_backend)
|
||||
except ImportError:
|
||||
# For backwards compatibility with older oslo.config.
|
||||
impl = CONF.rpc_backend.replace('nova.rpc',
|
||||
'nova.openstack.common.rpc')
|
||||
_RPCIMPL = importutils.import_module(impl)
|
||||
return _RPCIMPL
|
||||
@@ -1,636 +0,0 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2010 United States Government as represented by the
|
||||
# Administrator of the National Aeronautics and Space Administration.
|
||||
# All Rights Reserved.
|
||||
# Copyright 2011 - 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.
|
||||
|
||||
"""
|
||||
Shared code between AMQP based openstack.common.rpc implementations.
|
||||
|
||||
The code in this module is shared between the rpc implemenations based on AMQP.
|
||||
Specifically, this includes impl_kombu and impl_qpid. impl_carrot also uses
|
||||
AMQP, but is deprecated and predates this code.
|
||||
"""
|
||||
|
||||
import collections
|
||||
import inspect
|
||||
import sys
|
||||
import uuid
|
||||
|
||||
from eventlet import greenpool
|
||||
from eventlet import pools
|
||||
from eventlet import queue
|
||||
from eventlet import semaphore
|
||||
from oslo.config import cfg
|
||||
|
||||
from nova.openstack.common import excutils
|
||||
from nova.openstack.common.gettextutils import _ # noqa
|
||||
from nova.openstack.common import local
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
|
||||
|
||||
amqp_opts = [
|
||||
cfg.BoolOpt('amqp_durable_queues',
|
||||
default=False,
|
||||
deprecated_name='rabbit_durable_queues',
|
||||
deprecated_group='DEFAULT',
|
||||
help='Use durable queues in amqp.'),
|
||||
cfg.BoolOpt('amqp_auto_delete',
|
||||
default=False,
|
||||
help='Auto-delete queues in amqp.'),
|
||||
]
|
||||
|
||||
cfg.CONF.register_opts(amqp_opts)
|
||||
|
||||
UNIQUE_ID = '_unique_id'
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class Pool(pools.Pool):
|
||||
"""Class that implements a Pool of Connections."""
|
||||
def __init__(self, conf, connection_cls, *args, **kwargs):
|
||||
self.connection_cls = connection_cls
|
||||
self.conf = conf
|
||||
kwargs.setdefault("max_size", self.conf.rpc_conn_pool_size)
|
||||
kwargs.setdefault("order_as_stack", True)
|
||||
super(Pool, self).__init__(*args, **kwargs)
|
||||
self.reply_proxy = None
|
||||
|
||||
# TODO(comstud): Timeout connections not used in a while
|
||||
def create(self):
|
||||
LOG.debug(_('Pool creating new connection'))
|
||||
return self.connection_cls(self.conf)
|
||||
|
||||
def empty(self):
|
||||
while self.free_items:
|
||||
self.get().close()
|
||||
# Force a new connection pool to be created.
|
||||
# Note that this was added due to failing unit test cases. The issue
|
||||
# is the above "while loop" gets all the cached connections from the
|
||||
# pool and closes them, but never returns them to the pool, a pool
|
||||
# leak. The unit tests hang waiting for an item to be returned to the
|
||||
# pool. The unit tests get here via the tearDown() method. In the run
|
||||
# time code, it gets here via cleanup() and only appears in service.py
|
||||
# just before doing a sys.exit(), so cleanup() only happens once and
|
||||
# the leakage is not a problem.
|
||||
self.connection_cls.pool = None
|
||||
|
||||
|
||||
_pool_create_sem = semaphore.Semaphore()
|
||||
|
||||
|
||||
def get_connection_pool(conf, connection_cls):
|
||||
with _pool_create_sem:
|
||||
# Make sure only one thread tries to create the connection pool.
|
||||
if not connection_cls.pool:
|
||||
connection_cls.pool = Pool(conf, connection_cls)
|
||||
return connection_cls.pool
|
||||
|
||||
|
||||
class ConnectionContext(rpc_common.Connection):
|
||||
"""The class that is actually returned to the create_connection() caller.
|
||||
|
||||
This is essentially a wrapper around Connection that supports 'with'.
|
||||
It can also return a new Connection, or one from a pool.
|
||||
|
||||
The function will also catch when an instance of this class is to be
|
||||
deleted. With that we can return Connections to the pool on exceptions
|
||||
and so forth without making the caller be responsible for catching them.
|
||||
If possible the function makes sure to return a connection to the pool.
|
||||
"""
|
||||
|
||||
def __init__(self, conf, connection_pool, pooled=True, server_params=None):
|
||||
"""Create a new connection, or get one from the pool."""
|
||||
self.connection = None
|
||||
self.conf = conf
|
||||
self.connection_pool = connection_pool
|
||||
if pooled:
|
||||
self.connection = connection_pool.get()
|
||||
else:
|
||||
self.connection = connection_pool.connection_cls(
|
||||
conf,
|
||||
server_params=server_params)
|
||||
self.pooled = pooled
|
||||
|
||||
def __enter__(self):
|
||||
"""When with ConnectionContext() is used, return self."""
|
||||
return self
|
||||
|
||||
def _done(self):
|
||||
"""If the connection came from a pool, clean it up and put it back.
|
||||
If it did not come from a pool, close it.
|
||||
"""
|
||||
if self.connection:
|
||||
if self.pooled:
|
||||
# Reset the connection so it's ready for the next caller
|
||||
# to grab from the pool
|
||||
self.connection.reset()
|
||||
self.connection_pool.put(self.connection)
|
||||
else:
|
||||
try:
|
||||
self.connection.close()
|
||||
except Exception:
|
||||
pass
|
||||
self.connection = None
|
||||
|
||||
def __exit__(self, exc_type, exc_value, tb):
|
||||
"""End of 'with' statement. We're done here."""
|
||||
self._done()
|
||||
|
||||
def __del__(self):
|
||||
"""Caller is done with this connection. Make sure we cleaned up."""
|
||||
self._done()
|
||||
|
||||
def close(self):
|
||||
"""Caller is done with this connection."""
|
||||
self._done()
|
||||
|
||||
def create_consumer(self, topic, proxy, fanout=False):
|
||||
self.connection.create_consumer(topic, proxy, fanout)
|
||||
|
||||
def create_worker(self, topic, proxy, pool_name):
|
||||
self.connection.create_worker(topic, proxy, pool_name)
|
||||
|
||||
def join_consumer_pool(self, callback, pool_name, topic, exchange_name,
|
||||
ack_on_error=True):
|
||||
self.connection.join_consumer_pool(callback,
|
||||
pool_name,
|
||||
topic,
|
||||
exchange_name,
|
||||
ack_on_error)
|
||||
|
||||
def consume_in_thread(self):
|
||||
self.connection.consume_in_thread()
|
||||
|
||||
def __getattr__(self, key):
|
||||
"""Proxy all other calls to the Connection instance."""
|
||||
if self.connection:
|
||||
return getattr(self.connection, key)
|
||||
else:
|
||||
raise rpc_common.InvalidRPCConnectionReuse()
|
||||
|
||||
|
||||
class ReplyProxy(ConnectionContext):
|
||||
"""Connection class for RPC replies / callbacks."""
|
||||
def __init__(self, conf, connection_pool):
|
||||
self._call_waiters = {}
|
||||
self._num_call_waiters = 0
|
||||
self._num_call_waiters_wrn_threshhold = 10
|
||||
self._reply_q = 'reply_' + uuid.uuid4().hex
|
||||
super(ReplyProxy, self).__init__(conf, connection_pool, pooled=False)
|
||||
self.declare_direct_consumer(self._reply_q, self._process_data)
|
||||
self.consume_in_thread()
|
||||
|
||||
def _process_data(self, message_data):
|
||||
msg_id = message_data.pop('_msg_id', None)
|
||||
waiter = self._call_waiters.get(msg_id)
|
||||
if not waiter:
|
||||
LOG.warn(_('No calling threads waiting for msg_id : %(msg_id)s'
|
||||
', message : %(data)s'), {'msg_id': msg_id,
|
||||
'data': message_data})
|
||||
LOG.warn(_('_call_waiters: %s') % str(self._call_waiters))
|
||||
else:
|
||||
waiter.put(message_data)
|
||||
|
||||
def add_call_waiter(self, waiter, msg_id):
|
||||
self._num_call_waiters += 1
|
||||
if self._num_call_waiters > self._num_call_waiters_wrn_threshhold:
|
||||
LOG.warn(_('Number of call waiters is greater than warning '
|
||||
'threshhold: %d. There could be a MulticallProxyWaiter '
|
||||
'leak.') % self._num_call_waiters_wrn_threshhold)
|
||||
self._num_call_waiters_wrn_threshhold *= 2
|
||||
self._call_waiters[msg_id] = waiter
|
||||
|
||||
def del_call_waiter(self, msg_id):
|
||||
self._num_call_waiters -= 1
|
||||
del self._call_waiters[msg_id]
|
||||
|
||||
def get_reply_q(self):
|
||||
return self._reply_q
|
||||
|
||||
|
||||
def msg_reply(conf, msg_id, reply_q, connection_pool, reply=None,
|
||||
failure=None, ending=False, log_failure=True):
|
||||
"""Sends a reply or an error on the channel signified by msg_id.
|
||||
|
||||
Failure should be a sys.exc_info() tuple.
|
||||
|
||||
"""
|
||||
with ConnectionContext(conf, connection_pool) as conn:
|
||||
if failure:
|
||||
failure = rpc_common.serialize_remote_exception(failure,
|
||||
log_failure)
|
||||
|
||||
msg = {'result': reply, 'failure': failure}
|
||||
if ending:
|
||||
msg['ending'] = True
|
||||
_add_unique_id(msg)
|
||||
# If a reply_q exists, add the msg_id to the reply and pass the
|
||||
# reply_q to direct_send() to use it as the response queue.
|
||||
# Otherwise use the msg_id for backward compatibilty.
|
||||
if reply_q:
|
||||
msg['_msg_id'] = msg_id
|
||||
conn.direct_send(reply_q, rpc_common.serialize_msg(msg))
|
||||
else:
|
||||
conn.direct_send(msg_id, rpc_common.serialize_msg(msg))
|
||||
|
||||
|
||||
class RpcContext(rpc_common.CommonRpcContext):
|
||||
"""Context that supports replying to a rpc.call."""
|
||||
def __init__(self, **kwargs):
|
||||
self.msg_id = kwargs.pop('msg_id', None)
|
||||
self.reply_q = kwargs.pop('reply_q', None)
|
||||
self.conf = kwargs.pop('conf')
|
||||
super(RpcContext, self).__init__(**kwargs)
|
||||
|
||||
def deepcopy(self):
|
||||
values = self.to_dict()
|
||||
values['conf'] = self.conf
|
||||
values['msg_id'] = self.msg_id
|
||||
values['reply_q'] = self.reply_q
|
||||
return self.__class__(**values)
|
||||
|
||||
def reply(self, reply=None, failure=None, ending=False,
|
||||
connection_pool=None, log_failure=True):
|
||||
if self.msg_id:
|
||||
msg_reply(self.conf, self.msg_id, self.reply_q, connection_pool,
|
||||
reply, failure, ending, log_failure)
|
||||
if ending:
|
||||
self.msg_id = None
|
||||
|
||||
|
||||
def unpack_context(conf, msg):
|
||||
"""Unpack context from msg."""
|
||||
context_dict = {}
|
||||
for key in list(msg.keys()):
|
||||
# NOTE(vish): Some versions of python don't like unicode keys
|
||||
# in kwargs.
|
||||
key = str(key)
|
||||
if key.startswith('_context_'):
|
||||
value = msg.pop(key)
|
||||
context_dict[key[9:]] = value
|
||||
context_dict['msg_id'] = msg.pop('_msg_id', None)
|
||||
context_dict['reply_q'] = msg.pop('_reply_q', None)
|
||||
context_dict['conf'] = conf
|
||||
ctx = RpcContext.from_dict(context_dict)
|
||||
rpc_common._safe_log(LOG.debug, _('unpacked context: %s'), ctx.to_dict())
|
||||
return ctx
|
||||
|
||||
|
||||
def pack_context(msg, context):
|
||||
"""Pack context into msg.
|
||||
|
||||
Values for message keys need to be less than 255 chars, so we pull
|
||||
context out into a bunch of separate keys. If we want to support
|
||||
more arguments in rabbit messages, we may want to do the same
|
||||
for args at some point.
|
||||
|
||||
"""
|
||||
if isinstance(context, dict):
|
||||
context_d = dict([('_context_%s' % key, value)
|
||||
for (key, value) in context.iteritems()])
|
||||
else:
|
||||
context_d = dict([('_context_%s' % key, value)
|
||||
for (key, value) in context.to_dict().iteritems()])
|
||||
|
||||
msg.update(context_d)
|
||||
|
||||
|
||||
class _MsgIdCache(object):
|
||||
"""This class checks any duplicate messages."""
|
||||
|
||||
# NOTE: This value is considered can be a configuration item, but
|
||||
# it is not necessary to change its value in most cases,
|
||||
# so let this value as static for now.
|
||||
DUP_MSG_CHECK_SIZE = 16
|
||||
|
||||
def __init__(self, **kwargs):
|
||||
self.prev_msgids = collections.deque([],
|
||||
maxlen=self.DUP_MSG_CHECK_SIZE)
|
||||
|
||||
def check_duplicate_message(self, message_data):
|
||||
"""AMQP consumers may read same message twice when exceptions occur
|
||||
before ack is returned. This method prevents doing it.
|
||||
"""
|
||||
if UNIQUE_ID in message_data:
|
||||
msg_id = message_data[UNIQUE_ID]
|
||||
if msg_id not in self.prev_msgids:
|
||||
self.prev_msgids.append(msg_id)
|
||||
else:
|
||||
raise rpc_common.DuplicateMessageError(msg_id=msg_id)
|
||||
|
||||
|
||||
def _add_unique_id(msg):
|
||||
"""Add unique_id for checking duplicate messages."""
|
||||
unique_id = uuid.uuid4().hex
|
||||
msg.update({UNIQUE_ID: unique_id})
|
||||
LOG.debug(_('UNIQUE_ID is %s.') % (unique_id))
|
||||
|
||||
|
||||
class _ThreadPoolWithWait(object):
|
||||
"""Base class for a delayed invocation manager.
|
||||
|
||||
Used by the Connection class to start up green threads
|
||||
to handle incoming messages.
|
||||
"""
|
||||
|
||||
def __init__(self, conf, connection_pool):
|
||||
self.pool = greenpool.GreenPool(conf.rpc_thread_pool_size)
|
||||
self.connection_pool = connection_pool
|
||||
self.conf = conf
|
||||
|
||||
def wait(self):
|
||||
"""Wait for all callback threads to exit."""
|
||||
self.pool.waitall()
|
||||
|
||||
|
||||
class CallbackWrapper(_ThreadPoolWithWait):
|
||||
"""Wraps a straight callback.
|
||||
|
||||
Allows it to be invoked in a green thread.
|
||||
"""
|
||||
|
||||
def __init__(self, conf, callback, connection_pool,
|
||||
wait_for_consumers=False):
|
||||
"""Initiates CallbackWrapper object.
|
||||
|
||||
:param conf: cfg.CONF instance
|
||||
:param callback: a callable (probably a function)
|
||||
:param connection_pool: connection pool as returned by
|
||||
get_connection_pool()
|
||||
:param wait_for_consumers: wait for all green threads to
|
||||
complete and raise the last
|
||||
caught exception, if any.
|
||||
|
||||
"""
|
||||
super(CallbackWrapper, self).__init__(
|
||||
conf=conf,
|
||||
connection_pool=connection_pool,
|
||||
)
|
||||
self.callback = callback
|
||||
self.wait_for_consumers = wait_for_consumers
|
||||
self.exc_info = None
|
||||
|
||||
def _wrap(self, message_data, **kwargs):
|
||||
"""Wrap the callback invocation to catch exceptions.
|
||||
"""
|
||||
try:
|
||||
self.callback(message_data, **kwargs)
|
||||
except Exception:
|
||||
self.exc_info = sys.exc_info()
|
||||
|
||||
def __call__(self, message_data):
|
||||
self.exc_info = None
|
||||
self.pool.spawn_n(self._wrap, message_data)
|
||||
|
||||
if self.wait_for_consumers:
|
||||
self.pool.waitall()
|
||||
if self.exc_info:
|
||||
raise self.exc_info[1], None, self.exc_info[2]
|
||||
|
||||
|
||||
class ProxyCallback(_ThreadPoolWithWait):
|
||||
"""Calls methods on a proxy object based on method and args."""
|
||||
|
||||
def __init__(self, conf, proxy, connection_pool):
|
||||
super(ProxyCallback, self).__init__(
|
||||
conf=conf,
|
||||
connection_pool=connection_pool,
|
||||
)
|
||||
self.proxy = proxy
|
||||
self.msg_id_cache = _MsgIdCache()
|
||||
|
||||
def __call__(self, message_data):
|
||||
"""Consumer callback to call a method on a proxy object.
|
||||
|
||||
Parses the message for validity and fires off a thread to call the
|
||||
proxy object method.
|
||||
|
||||
Message data should be a dictionary with two keys:
|
||||
method: string representing the method to call
|
||||
args: dictionary of arg: value
|
||||
|
||||
Example: {'method': 'echo', 'args': {'value': 42}}
|
||||
|
||||
"""
|
||||
# It is important to clear the context here, because at this point
|
||||
# the previous context is stored in local.store.context
|
||||
if hasattr(local.store, 'context'):
|
||||
del local.store.context
|
||||
rpc_common._safe_log(LOG.debug, _('received %s'), message_data)
|
||||
self.msg_id_cache.check_duplicate_message(message_data)
|
||||
ctxt = unpack_context(self.conf, message_data)
|
||||
method = message_data.get('method')
|
||||
args = message_data.get('args', {})
|
||||
version = message_data.get('version')
|
||||
namespace = message_data.get('namespace')
|
||||
if not method:
|
||||
LOG.warn(_('no method for message: %s') % message_data)
|
||||
ctxt.reply(_('No method for message: %s') % message_data,
|
||||
connection_pool=self.connection_pool)
|
||||
return
|
||||
self.pool.spawn_n(self._process_data, ctxt, version, method,
|
||||
namespace, args)
|
||||
|
||||
def _process_data(self, ctxt, version, method, namespace, args):
|
||||
"""Process a message in a new thread.
|
||||
|
||||
If the proxy object we have has a dispatch method
|
||||
(see rpc.dispatcher.RpcDispatcher), pass it the version,
|
||||
method, and args and let it dispatch as appropriate. If not, use
|
||||
the old behavior of magically calling the specified method on the
|
||||
proxy we have here.
|
||||
"""
|
||||
ctxt.update_store()
|
||||
try:
|
||||
rval = self.proxy.dispatch(ctxt, version, method, namespace,
|
||||
**args)
|
||||
# Check if the result was a generator
|
||||
if inspect.isgenerator(rval):
|
||||
for x in rval:
|
||||
ctxt.reply(x, None, connection_pool=self.connection_pool)
|
||||
else:
|
||||
ctxt.reply(rval, None, connection_pool=self.connection_pool)
|
||||
# This final None tells multicall that it is done.
|
||||
ctxt.reply(ending=True, connection_pool=self.connection_pool)
|
||||
except rpc_common.ClientException as e:
|
||||
LOG.debug(_('Expected exception during message handling (%s)') %
|
||||
e._exc_info[1])
|
||||
ctxt.reply(None, e._exc_info,
|
||||
connection_pool=self.connection_pool,
|
||||
log_failure=False)
|
||||
except Exception:
|
||||
# sys.exc_info() is deleted by LOG.exception().
|
||||
exc_info = sys.exc_info()
|
||||
LOG.error(_('Exception during message handling'),
|
||||
exc_info=exc_info)
|
||||
ctxt.reply(None, exc_info, connection_pool=self.connection_pool)
|
||||
|
||||
|
||||
class MulticallProxyWaiter(object):
|
||||
def __init__(self, conf, msg_id, timeout, connection_pool):
|
||||
self._msg_id = msg_id
|
||||
self._timeout = timeout or conf.rpc_response_timeout
|
||||
self._reply_proxy = connection_pool.reply_proxy
|
||||
self._done = False
|
||||
self._got_ending = False
|
||||
self._conf = conf
|
||||
self._dataqueue = queue.LightQueue()
|
||||
# Add this caller to the reply proxy's call_waiters
|
||||
self._reply_proxy.add_call_waiter(self, self._msg_id)
|
||||
self.msg_id_cache = _MsgIdCache()
|
||||
|
||||
def put(self, data):
|
||||
self._dataqueue.put(data)
|
||||
|
||||
def done(self):
|
||||
if self._done:
|
||||
return
|
||||
self._done = True
|
||||
# Remove this caller from reply proxy's call_waiters
|
||||
self._reply_proxy.del_call_waiter(self._msg_id)
|
||||
|
||||
def _process_data(self, data):
|
||||
result = None
|
||||
self.msg_id_cache.check_duplicate_message(data)
|
||||
if data['failure']:
|
||||
failure = data['failure']
|
||||
result = rpc_common.deserialize_remote_exception(self._conf,
|
||||
failure)
|
||||
elif data.get('ending', False):
|
||||
self._got_ending = True
|
||||
else:
|
||||
result = data['result']
|
||||
return result
|
||||
|
||||
def __iter__(self):
|
||||
"""Return a result until we get a reply with an 'ending' flag."""
|
||||
if self._done:
|
||||
raise StopIteration
|
||||
while True:
|
||||
try:
|
||||
data = self._dataqueue.get(timeout=self._timeout)
|
||||
result = self._process_data(data)
|
||||
except queue.Empty:
|
||||
self.done()
|
||||
raise rpc_common.Timeout()
|
||||
except Exception:
|
||||
with excutils.save_and_reraise_exception():
|
||||
self.done()
|
||||
if self._got_ending:
|
||||
self.done()
|
||||
raise StopIteration
|
||||
if isinstance(result, Exception):
|
||||
self.done()
|
||||
raise result
|
||||
yield result
|
||||
|
||||
|
||||
def create_connection(conf, new, connection_pool):
|
||||
"""Create a connection."""
|
||||
return ConnectionContext(conf, connection_pool, pooled=not new)
|
||||
|
||||
|
||||
_reply_proxy_create_sem = semaphore.Semaphore()
|
||||
|
||||
|
||||
def multicall(conf, context, topic, msg, timeout, connection_pool):
|
||||
"""Make a call that returns multiple times."""
|
||||
LOG.debug(_('Making synchronous call on %s ...'), topic)
|
||||
msg_id = uuid.uuid4().hex
|
||||
msg.update({'_msg_id': msg_id})
|
||||
LOG.debug(_('MSG_ID is %s') % (msg_id))
|
||||
_add_unique_id(msg)
|
||||
pack_context(msg, context)
|
||||
|
||||
with _reply_proxy_create_sem:
|
||||
if not connection_pool.reply_proxy:
|
||||
connection_pool.reply_proxy = ReplyProxy(conf, connection_pool)
|
||||
msg.update({'_reply_q': connection_pool.reply_proxy.get_reply_q()})
|
||||
wait_msg = MulticallProxyWaiter(conf, msg_id, timeout, connection_pool)
|
||||
with ConnectionContext(conf, connection_pool) as conn:
|
||||
conn.topic_send(topic, rpc_common.serialize_msg(msg), timeout)
|
||||
return wait_msg
|
||||
|
||||
|
||||
def call(conf, context, topic, msg, timeout, connection_pool):
|
||||
"""Sends a message on a topic and wait for a response."""
|
||||
rv = multicall(conf, context, topic, msg, timeout, connection_pool)
|
||||
# NOTE(vish): return the last result from the multicall
|
||||
rv = list(rv)
|
||||
if not rv:
|
||||
return
|
||||
return rv[-1]
|
||||
|
||||
|
||||
def cast(conf, context, topic, msg, connection_pool):
|
||||
"""Sends a message on a topic without waiting for a response."""
|
||||
LOG.debug(_('Making asynchronous cast on %s...'), topic)
|
||||
_add_unique_id(msg)
|
||||
pack_context(msg, context)
|
||||
with ConnectionContext(conf, connection_pool) as conn:
|
||||
conn.topic_send(topic, rpc_common.serialize_msg(msg))
|
||||
|
||||
|
||||
def fanout_cast(conf, context, topic, msg, connection_pool):
|
||||
"""Sends a message on a fanout exchange without waiting for a response."""
|
||||
LOG.debug(_('Making asynchronous fanout cast...'))
|
||||
_add_unique_id(msg)
|
||||
pack_context(msg, context)
|
||||
with ConnectionContext(conf, connection_pool) as conn:
|
||||
conn.fanout_send(topic, rpc_common.serialize_msg(msg))
|
||||
|
||||
|
||||
def cast_to_server(conf, context, server_params, topic, msg, connection_pool):
|
||||
"""Sends a message on a topic to a specific server."""
|
||||
_add_unique_id(msg)
|
||||
pack_context(msg, context)
|
||||
with ConnectionContext(conf, connection_pool, pooled=False,
|
||||
server_params=server_params) as conn:
|
||||
conn.topic_send(topic, rpc_common.serialize_msg(msg))
|
||||
|
||||
|
||||
def fanout_cast_to_server(conf, context, server_params, topic, msg,
|
||||
connection_pool):
|
||||
"""Sends a message on a fanout exchange to a specific server."""
|
||||
_add_unique_id(msg)
|
||||
pack_context(msg, context)
|
||||
with ConnectionContext(conf, connection_pool, pooled=False,
|
||||
server_params=server_params) as conn:
|
||||
conn.fanout_send(topic, rpc_common.serialize_msg(msg))
|
||||
|
||||
|
||||
def notify(conf, context, topic, msg, connection_pool, envelope):
|
||||
"""Sends a notification event on a topic."""
|
||||
LOG.debug(_('Sending %(event_type)s on %(topic)s'),
|
||||
dict(event_type=msg.get('event_type'),
|
||||
topic=topic))
|
||||
_add_unique_id(msg)
|
||||
pack_context(msg, context)
|
||||
with ConnectionContext(conf, connection_pool) as conn:
|
||||
if envelope:
|
||||
msg = rpc_common.serialize_msg(msg)
|
||||
conn.notify_send(topic, msg)
|
||||
|
||||
|
||||
def cleanup(connection_pool):
|
||||
if connection_pool:
|
||||
connection_pool.empty()
|
||||
|
||||
|
||||
def get_control_exchange(conf):
|
||||
return conf.control_exchange
|
||||
@@ -1,521 +0,0 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2010 United States Government as represented by the
|
||||
# Administrator of the National Aeronautics and Space Administration.
|
||||
# All Rights Reserved.
|
||||
# Copyright 2011 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 copy
|
||||
import sys
|
||||
import traceback
|
||||
|
||||
from oslo.config import cfg
|
||||
import six
|
||||
|
||||
from nova.openstack.common.gettextutils import _ # noqa
|
||||
from nova.openstack.common import importutils
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import local
|
||||
from nova.openstack.common import log as logging
|
||||
|
||||
|
||||
CONF = cfg.CONF
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
|
||||
'''RPC Envelope Version.
|
||||
|
||||
This version number applies to the top level structure of messages sent out.
|
||||
It does *not* apply to the message payload, which must be versioned
|
||||
independently. For example, when using rpc APIs, a version number is applied
|
||||
for changes to the API being exposed over rpc. This version number is handled
|
||||
in the rpc proxy and dispatcher modules.
|
||||
|
||||
This version number applies to the message envelope that is used in the
|
||||
serialization done inside the rpc layer. See serialize_msg() and
|
||||
deserialize_msg().
|
||||
|
||||
The current message format (version 2.0) is very simple. It is:
|
||||
|
||||
{
|
||||
'oslo.version': <RPC Envelope Version as a String>,
|
||||
'oslo.message': <Application Message Payload, JSON encoded>
|
||||
}
|
||||
|
||||
Message format version '1.0' is just considered to be the messages we sent
|
||||
without a message envelope.
|
||||
|
||||
So, the current message envelope just includes the envelope version. It may
|
||||
eventually contain additional information, such as a signature for the message
|
||||
payload.
|
||||
|
||||
We will JSON encode the application message payload. The message envelope,
|
||||
which includes the JSON encoded application message body, will be passed down
|
||||
to the messaging libraries as a dict.
|
||||
'''
|
||||
_RPC_ENVELOPE_VERSION = '2.0'
|
||||
|
||||
_VERSION_KEY = 'oslo.version'
|
||||
_MESSAGE_KEY = 'oslo.message'
|
||||
|
||||
_REMOTE_POSTFIX = '_Remote'
|
||||
|
||||
|
||||
class RPCException(Exception):
|
||||
msg_fmt = _("An unknown RPC related exception occurred.")
|
||||
|
||||
def __init__(self, message=None, **kwargs):
|
||||
self.kwargs = kwargs
|
||||
|
||||
if not message:
|
||||
try:
|
||||
message = self.msg_fmt % kwargs
|
||||
|
||||
except Exception:
|
||||
# kwargs doesn't match a variable in the message
|
||||
# log the issue and the kwargs
|
||||
LOG.exception(_('Exception in string format operation'))
|
||||
for name, value in kwargs.iteritems():
|
||||
LOG.error("%s: %s" % (name, value))
|
||||
# at least get the core message out if something happened
|
||||
message = self.msg_fmt
|
||||
|
||||
super(RPCException, self).__init__(message)
|
||||
|
||||
|
||||
class RemoteError(RPCException):
|
||||
"""Signifies that a remote class has raised an exception.
|
||||
|
||||
Contains a string representation of the type of the original exception,
|
||||
the value of the original exception, and the traceback. These are
|
||||
sent to the parent as a joined string so printing the exception
|
||||
contains all of the relevant info.
|
||||
|
||||
"""
|
||||
msg_fmt = _("Remote error: %(exc_type)s %(value)s\n%(traceback)s.")
|
||||
|
||||
def __init__(self, exc_type=None, value=None, traceback=None):
|
||||
self.exc_type = exc_type
|
||||
self.value = value
|
||||
self.traceback = traceback
|
||||
super(RemoteError, self).__init__(exc_type=exc_type,
|
||||
value=value,
|
||||
traceback=traceback)
|
||||
|
||||
|
||||
class Timeout(RPCException):
|
||||
"""Signifies that a timeout has occurred.
|
||||
|
||||
This exception is raised if the rpc_response_timeout is reached while
|
||||
waiting for a response from the remote side.
|
||||
"""
|
||||
msg_fmt = _('Timeout while waiting on RPC response - '
|
||||
'topic: "%(topic)s", RPC method: "%(method)s" '
|
||||
'info: "%(info)s"')
|
||||
|
||||
def __init__(self, info=None, topic=None, method=None):
|
||||
"""Initiates Timeout object.
|
||||
|
||||
:param info: Extra info to convey to the user
|
||||
:param topic: The topic that the rpc call was sent to
|
||||
:param rpc_method_name: The name of the rpc method being
|
||||
called
|
||||
"""
|
||||
self.info = info
|
||||
self.topic = topic
|
||||
self.method = method
|
||||
super(Timeout, self).__init__(
|
||||
None,
|
||||
info=info or _('<unknown>'),
|
||||
topic=topic or _('<unknown>'),
|
||||
method=method or _('<unknown>'))
|
||||
|
||||
|
||||
class DuplicateMessageError(RPCException):
|
||||
msg_fmt = _("Found duplicate message(%(msg_id)s). Skipping it.")
|
||||
|
||||
|
||||
class InvalidRPCConnectionReuse(RPCException):
|
||||
msg_fmt = _("Invalid reuse of an RPC connection.")
|
||||
|
||||
|
||||
class UnsupportedRpcVersion(RPCException):
|
||||
msg_fmt = _("Specified RPC version, %(version)s, not supported by "
|
||||
"this endpoint.")
|
||||
|
||||
|
||||
class UnsupportedRpcEnvelopeVersion(RPCException):
|
||||
msg_fmt = _("Specified RPC envelope version, %(version)s, "
|
||||
"not supported by this endpoint.")
|
||||
|
||||
|
||||
class RpcVersionCapError(RPCException):
|
||||
msg_fmt = _("Specified RPC version cap, %(version_cap)s, is too low")
|
||||
|
||||
|
||||
class Connection(object):
|
||||
"""A connection, returned by rpc.create_connection().
|
||||
|
||||
This class represents a connection to the message bus used for rpc.
|
||||
An instance of this class should never be created by users of the rpc API.
|
||||
Use rpc.create_connection() instead.
|
||||
"""
|
||||
def close(self):
|
||||
"""Close the connection.
|
||||
|
||||
This method must be called when the connection will no longer be used.
|
||||
It will ensure that any resources associated with the connection, such
|
||||
as a network connection, and cleaned up.
|
||||
"""
|
||||
raise NotImplementedError()
|
||||
|
||||
def create_consumer(self, topic, proxy, fanout=False):
|
||||
"""Create a consumer on this connection.
|
||||
|
||||
A consumer is associated with a message queue on the backend message
|
||||
bus. The consumer will read messages from the queue, unpack them, and
|
||||
dispatch them to the proxy object. The contents of the message pulled
|
||||
off of the queue will determine which method gets called on the proxy
|
||||
object.
|
||||
|
||||
:param topic: This is a name associated with what to consume from.
|
||||
Multiple instances of a service may consume from the same
|
||||
topic. For example, all instances of nova-compute consume
|
||||
from a queue called "compute". In that case, the
|
||||
messages will get distributed amongst the consumers in a
|
||||
round-robin fashion if fanout=False. If fanout=True,
|
||||
every consumer associated with this topic will get a
|
||||
copy of every message.
|
||||
:param proxy: The object that will handle all incoming messages.
|
||||
:param fanout: Whether or not this is a fanout topic. See the
|
||||
documentation for the topic parameter for some
|
||||
additional comments on this.
|
||||
"""
|
||||
raise NotImplementedError()
|
||||
|
||||
def create_worker(self, topic, proxy, pool_name):
|
||||
"""Create a worker on this connection.
|
||||
|
||||
A worker is like a regular consumer of messages directed to a
|
||||
topic, except that it is part of a set of such consumers (the
|
||||
"pool") which may run in parallel. Every pool of workers will
|
||||
receive a given message, but only one worker in the pool will
|
||||
be asked to process it. Load is distributed across the members
|
||||
of the pool in round-robin fashion.
|
||||
|
||||
:param topic: This is a name associated with what to consume from.
|
||||
Multiple instances of a service may consume from the same
|
||||
topic.
|
||||
:param proxy: The object that will handle all incoming messages.
|
||||
:param pool_name: String containing the name of the pool of workers
|
||||
"""
|
||||
raise NotImplementedError()
|
||||
|
||||
def join_consumer_pool(self, callback, pool_name, topic, exchange_name):
|
||||
"""Register as a member of a group of consumers.
|
||||
|
||||
Uses given topic from the specified exchange.
|
||||
Exactly one member of a given pool will receive each message.
|
||||
|
||||
A message will be delivered to multiple pools, if more than
|
||||
one is created.
|
||||
|
||||
:param callback: Callable to be invoked for each message.
|
||||
:type callback: callable accepting one argument
|
||||
:param pool_name: The name of the consumer pool.
|
||||
:type pool_name: str
|
||||
:param topic: The routing topic for desired messages.
|
||||
:type topic: str
|
||||
:param exchange_name: The name of the message exchange where
|
||||
the client should attach. Defaults to
|
||||
the configured exchange.
|
||||
:type exchange_name: str
|
||||
"""
|
||||
raise NotImplementedError()
|
||||
|
||||
def consume_in_thread(self):
|
||||
"""Spawn a thread to handle incoming messages.
|
||||
|
||||
Spawn a thread that will be responsible for handling all incoming
|
||||
messages for consumers that were set up on this connection.
|
||||
|
||||
Message dispatching inside of this is expected to be implemented in a
|
||||
non-blocking manner. An example implementation would be having this
|
||||
thread pull messages in for all of the consumers, but utilize a thread
|
||||
pool for dispatching the messages to the proxy objects.
|
||||
"""
|
||||
raise NotImplementedError()
|
||||
|
||||
|
||||
def _safe_log(log_func, msg, msg_data):
|
||||
"""Sanitizes the msg_data field before logging."""
|
||||
SANITIZE = ['_context_auth_token', 'auth_token', 'new_pass']
|
||||
|
||||
def _fix_passwords(d):
|
||||
"""Sanitizes the password fields in the dictionary."""
|
||||
for k in d.iterkeys():
|
||||
if k.lower().find('password') != -1:
|
||||
d[k] = '<SANITIZED>'
|
||||
elif k.lower() in SANITIZE:
|
||||
d[k] = '<SANITIZED>'
|
||||
elif isinstance(d[k], dict):
|
||||
_fix_passwords(d[k])
|
||||
return d
|
||||
|
||||
return log_func(msg, _fix_passwords(copy.deepcopy(msg_data)))
|
||||
|
||||
|
||||
def serialize_remote_exception(failure_info, log_failure=True):
|
||||
"""Prepares exception data to be sent over rpc.
|
||||
|
||||
Failure_info should be a sys.exc_info() tuple.
|
||||
|
||||
"""
|
||||
tb = traceback.format_exception(*failure_info)
|
||||
failure = failure_info[1]
|
||||
if log_failure:
|
||||
LOG.error(_("Returning exception %s to caller"),
|
||||
six.text_type(failure))
|
||||
LOG.error(tb)
|
||||
|
||||
kwargs = {}
|
||||
if hasattr(failure, 'kwargs'):
|
||||
kwargs = failure.kwargs
|
||||
|
||||
# NOTE(matiu): With cells, it's possible to re-raise remote, remote
|
||||
# exceptions. Lets turn it back into the original exception type.
|
||||
cls_name = str(failure.__class__.__name__)
|
||||
mod_name = str(failure.__class__.__module__)
|
||||
if (cls_name.endswith(_REMOTE_POSTFIX) and
|
||||
mod_name.endswith(_REMOTE_POSTFIX)):
|
||||
cls_name = cls_name[:-len(_REMOTE_POSTFIX)]
|
||||
mod_name = mod_name[:-len(_REMOTE_POSTFIX)]
|
||||
|
||||
data = {
|
||||
'class': cls_name,
|
||||
'module': mod_name,
|
||||
'message': six.text_type(failure),
|
||||
'tb': tb,
|
||||
'args': failure.args,
|
||||
'kwargs': kwargs
|
||||
}
|
||||
|
||||
json_data = jsonutils.dumps(data)
|
||||
|
||||
return json_data
|
||||
|
||||
|
||||
def deserialize_remote_exception(conf, data):
|
||||
failure = jsonutils.loads(str(data))
|
||||
|
||||
trace = failure.get('tb', [])
|
||||
message = failure.get('message', "") + "\n" + "\n".join(trace)
|
||||
name = failure.get('class')
|
||||
module = failure.get('module')
|
||||
|
||||
# NOTE(ameade): We DO NOT want to allow just any module to be imported, in
|
||||
# order to prevent arbitrary code execution.
|
||||
if module not in conf.allowed_rpc_exception_modules:
|
||||
return RemoteError(name, failure.get('message'), trace)
|
||||
|
||||
try:
|
||||
mod = importutils.import_module(module)
|
||||
klass = getattr(mod, name)
|
||||
if not issubclass(klass, Exception):
|
||||
raise TypeError("Can only deserialize Exceptions")
|
||||
|
||||
failure = klass(*failure.get('args', []), **failure.get('kwargs', {}))
|
||||
except (AttributeError, TypeError, ImportError):
|
||||
return RemoteError(name, failure.get('message'), trace)
|
||||
|
||||
ex_type = type(failure)
|
||||
str_override = lambda self: message
|
||||
new_ex_type = type(ex_type.__name__ + _REMOTE_POSTFIX, (ex_type,),
|
||||
{'__str__': str_override, '__unicode__': str_override})
|
||||
new_ex_type.__module__ = '%s%s' % (module, _REMOTE_POSTFIX)
|
||||
try:
|
||||
# NOTE(ameade): Dynamically create a new exception type and swap it in
|
||||
# as the new type for the exception. This only works on user defined
|
||||
# Exceptions and not core python exceptions. This is important because
|
||||
# we cannot necessarily change an exception message so we must override
|
||||
# the __str__ method.
|
||||
failure.__class__ = new_ex_type
|
||||
except TypeError:
|
||||
# NOTE(ameade): If a core exception then just add the traceback to the
|
||||
# first exception argument.
|
||||
failure.args = (message,) + failure.args[1:]
|
||||
return failure
|
||||
|
||||
|
||||
class CommonRpcContext(object):
|
||||
def __init__(self, **kwargs):
|
||||
self.values = kwargs
|
||||
|
||||
def __getattr__(self, key):
|
||||
try:
|
||||
return self.values[key]
|
||||
except KeyError:
|
||||
raise AttributeError(key)
|
||||
|
||||
def to_dict(self):
|
||||
return copy.deepcopy(self.values)
|
||||
|
||||
@classmethod
|
||||
def from_dict(cls, values):
|
||||
return cls(**values)
|
||||
|
||||
def deepcopy(self):
|
||||
return self.from_dict(self.to_dict())
|
||||
|
||||
def update_store(self):
|
||||
local.store.context = self
|
||||
|
||||
def elevated(self, read_deleted=None, overwrite=False):
|
||||
"""Return a version of this context with admin flag set."""
|
||||
# TODO(russellb) This method is a bit of a nova-ism. It makes
|
||||
# some assumptions about the data in the request context sent
|
||||
# across rpc, while the rest of this class does not. We could get
|
||||
# rid of this if we changed the nova code that uses this to
|
||||
# convert the RpcContext back to its native RequestContext doing
|
||||
# something like nova.context.RequestContext.from_dict(ctxt.to_dict())
|
||||
|
||||
context = self.deepcopy()
|
||||
context.values['is_admin'] = True
|
||||
|
||||
context.values.setdefault('roles', [])
|
||||
|
||||
if 'admin' not in context.values['roles']:
|
||||
context.values['roles'].append('admin')
|
||||
|
||||
if read_deleted is not None:
|
||||
context.values['read_deleted'] = read_deleted
|
||||
|
||||
return context
|
||||
|
||||
|
||||
class ClientException(Exception):
|
||||
"""Encapsulates actual exception expected to be hit by a RPC proxy object.
|
||||
|
||||
Merely instantiating it records the current exception information, which
|
||||
will be passed back to the RPC client without exceptional logging.
|
||||
"""
|
||||
def __init__(self):
|
||||
self._exc_info = sys.exc_info()
|
||||
|
||||
|
||||
def catch_client_exception(exceptions, func, *args, **kwargs):
|
||||
try:
|
||||
return func(*args, **kwargs)
|
||||
except Exception as e:
|
||||
if type(e) in exceptions:
|
||||
raise ClientException()
|
||||
else:
|
||||
raise
|
||||
|
||||
|
||||
def client_exceptions(*exceptions):
|
||||
"""Decorator for manager methods that raise expected exceptions.
|
||||
|
||||
Marking a Manager method with this decorator allows the declaration
|
||||
of expected exceptions that the RPC layer should not consider fatal,
|
||||
and not log as if they were generated in a real error scenario. Note
|
||||
that this will cause listed exceptions to be wrapped in a
|
||||
ClientException, which is used internally by the RPC layer.
|
||||
"""
|
||||
def outer(func):
|
||||
def inner(*args, **kwargs):
|
||||
return catch_client_exception(exceptions, func, *args, **kwargs)
|
||||
return inner
|
||||
return outer
|
||||
|
||||
|
||||
def version_is_compatible(imp_version, version):
|
||||
"""Determine whether versions are compatible.
|
||||
|
||||
:param imp_version: The version implemented
|
||||
:param version: The version requested by an incoming message.
|
||||
"""
|
||||
version_parts = version.split('.')
|
||||
imp_version_parts = imp_version.split('.')
|
||||
try:
|
||||
rev = version_parts[2]
|
||||
except IndexError:
|
||||
rev = 0
|
||||
try:
|
||||
imp_rev = imp_version_parts[2]
|
||||
except IndexError:
|
||||
imp_rev = 0
|
||||
|
||||
if int(version_parts[0]) != int(imp_version_parts[0]): # Major
|
||||
return False
|
||||
if int(version_parts[1]) > int(imp_version_parts[1]): # Minor
|
||||
return False
|
||||
if (int(version_parts[1]) == int(imp_version_parts[1]) and
|
||||
int(rev) > int(imp_rev)): # Revision
|
||||
return False
|
||||
return True
|
||||
|
||||
|
||||
def serialize_msg(raw_msg):
|
||||
# NOTE(russellb) See the docstring for _RPC_ENVELOPE_VERSION for more
|
||||
# information about this format.
|
||||
msg = {_VERSION_KEY: _RPC_ENVELOPE_VERSION,
|
||||
_MESSAGE_KEY: jsonutils.dumps(raw_msg)}
|
||||
|
||||
return msg
|
||||
|
||||
|
||||
def deserialize_msg(msg):
|
||||
# NOTE(russellb): Hang on to your hats, this road is about to
|
||||
# get a little bumpy.
|
||||
#
|
||||
# Robustness Principle:
|
||||
# "Be strict in what you send, liberal in what you accept."
|
||||
#
|
||||
# At this point we have to do a bit of guessing about what it
|
||||
# is we just received. Here is the set of possibilities:
|
||||
#
|
||||
# 1) We received a dict. This could be 2 things:
|
||||
#
|
||||
# a) Inspect it to see if it looks like a standard message envelope.
|
||||
# If so, great!
|
||||
#
|
||||
# b) If it doesn't look like a standard message envelope, it could either
|
||||
# be a notification, or a message from before we added a message
|
||||
# envelope (referred to as version 1.0).
|
||||
# Just return the message as-is.
|
||||
#
|
||||
# 2) It's any other non-dict type. Just return it and hope for the best.
|
||||
# This case covers return values from rpc.call() from before message
|
||||
# envelopes were used. (messages to call a method were always a dict)
|
||||
|
||||
if not isinstance(msg, dict):
|
||||
# See #2 above.
|
||||
return msg
|
||||
|
||||
base_envelope_keys = (_VERSION_KEY, _MESSAGE_KEY)
|
||||
if not all(map(lambda key: key in msg, base_envelope_keys)):
|
||||
# See #1.b above.
|
||||
return msg
|
||||
|
||||
# At this point we think we have the message envelope
|
||||
# format we were expecting. (#1.a above)
|
||||
|
||||
if not version_is_compatible(_RPC_ENVELOPE_VERSION, msg[_VERSION_KEY]):
|
||||
raise UnsupportedRpcEnvelopeVersion(version=msg[_VERSION_KEY])
|
||||
|
||||
raw_msg = jsonutils.loads(msg[_MESSAGE_KEY])
|
||||
|
||||
return raw_msg
|
||||
@@ -1,178 +0,0 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# 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.
|
||||
|
||||
"""
|
||||
Code for rpc message dispatching.
|
||||
|
||||
Messages that come in have a version number associated with them. RPC API
|
||||
version numbers are in the form:
|
||||
|
||||
Major.Minor
|
||||
|
||||
For a given message with version X.Y, the receiver must be marked as able to
|
||||
handle messages of version A.B, where:
|
||||
|
||||
A = X
|
||||
|
||||
B >= Y
|
||||
|
||||
The Major version number would be incremented for an almost completely new API.
|
||||
The Minor version number would be incremented for backwards compatible changes
|
||||
to an existing API. A backwards compatible change could be something like
|
||||
adding a new method, adding an argument to an existing method (but not
|
||||
requiring it), or changing the type for an existing argument (but still
|
||||
handling the old type as well).
|
||||
|
||||
The conversion over to a versioned API must be done on both the client side and
|
||||
server side of the API at the same time. However, as the code stands today,
|
||||
there can be both versioned and unversioned APIs implemented in the same code
|
||||
base.
|
||||
|
||||
EXAMPLES
|
||||
========
|
||||
|
||||
Nova was the first project to use versioned rpc APIs. Consider the compute rpc
|
||||
API as an example. The client side is in nova/compute/rpcapi.py and the server
|
||||
side is in nova/compute/manager.py.
|
||||
|
||||
|
||||
Example 1) Adding a new method.
|
||||
-------------------------------
|
||||
|
||||
Adding a new method is a backwards compatible change. It should be added to
|
||||
nova/compute/manager.py, and RPC_API_VERSION should be bumped from X.Y to
|
||||
X.Y+1. On the client side, the new method in nova/compute/rpcapi.py should
|
||||
have a specific version specified to indicate the minimum API version that must
|
||||
be implemented for the method to be supported. For example::
|
||||
|
||||
def get_host_uptime(self, ctxt, host):
|
||||
topic = _compute_topic(self.topic, ctxt, host, None)
|
||||
return self.call(ctxt, self.make_msg('get_host_uptime'), topic,
|
||||
version='1.1')
|
||||
|
||||
In this case, version '1.1' is the first version that supported the
|
||||
get_host_uptime() method.
|
||||
|
||||
|
||||
Example 2) Adding a new parameter.
|
||||
----------------------------------
|
||||
|
||||
Adding a new parameter to an rpc method can be made backwards compatible. The
|
||||
RPC_API_VERSION on the server side (nova/compute/manager.py) should be bumped.
|
||||
The implementation of the method must not expect the parameter to be present.::
|
||||
|
||||
def some_remote_method(self, arg1, arg2, newarg=None):
|
||||
# The code needs to deal with newarg=None for cases
|
||||
# where an older client sends a message without it.
|
||||
pass
|
||||
|
||||
On the client side, the same changes should be made as in example 1. The
|
||||
minimum version that supports the new parameter should be specified.
|
||||
"""
|
||||
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
from nova.openstack.common.rpc import serializer as rpc_serializer
|
||||
|
||||
|
||||
class RpcDispatcher(object):
|
||||
"""Dispatch rpc messages according to the requested API version.
|
||||
|
||||
This class can be used as the top level 'manager' for a service. It
|
||||
contains a list of underlying managers that have an API_VERSION attribute.
|
||||
"""
|
||||
|
||||
def __init__(self, callbacks, serializer=None):
|
||||
"""Initialize the rpc dispatcher.
|
||||
|
||||
:param callbacks: List of proxy objects that are an instance
|
||||
of a class with rpc methods exposed. Each proxy
|
||||
object should have an RPC_API_VERSION attribute.
|
||||
:param serializer: The Serializer object that will be used to
|
||||
deserialize arguments before the method call and
|
||||
to serialize the result after it returns.
|
||||
"""
|
||||
self.callbacks = callbacks
|
||||
if serializer is None:
|
||||
serializer = rpc_serializer.NoOpSerializer()
|
||||
self.serializer = serializer
|
||||
super(RpcDispatcher, self).__init__()
|
||||
|
||||
def _deserialize_args(self, context, kwargs):
|
||||
"""Helper method called to deserialize args before dispatch.
|
||||
|
||||
This calls our serializer on each argument, returning a new set of
|
||||
args that have been deserialized.
|
||||
|
||||
:param context: The request context
|
||||
:param kwargs: The arguments to be deserialized
|
||||
:returns: A new set of deserialized args
|
||||
"""
|
||||
new_kwargs = dict()
|
||||
for argname, arg in kwargs.iteritems():
|
||||
new_kwargs[argname] = self.serializer.deserialize_entity(context,
|
||||
arg)
|
||||
return new_kwargs
|
||||
|
||||
def dispatch(self, ctxt, version, method, namespace, **kwargs):
|
||||
"""Dispatch a message based on a requested version.
|
||||
|
||||
:param ctxt: The request context
|
||||
:param version: The requested API version from the incoming message
|
||||
:param method: The method requested to be called by the incoming
|
||||
message.
|
||||
:param namespace: The namespace for the requested method. If None,
|
||||
the dispatcher will look for a method on a callback
|
||||
object with no namespace set.
|
||||
:param kwargs: A dict of keyword arguments to be passed to the method.
|
||||
|
||||
:returns: Whatever is returned by the underlying method that gets
|
||||
called.
|
||||
"""
|
||||
if not version:
|
||||
version = '1.0'
|
||||
|
||||
had_compatible = False
|
||||
for proxyobj in self.callbacks:
|
||||
# Check for namespace compatibility
|
||||
try:
|
||||
cb_namespace = proxyobj.RPC_API_NAMESPACE
|
||||
except AttributeError:
|
||||
cb_namespace = None
|
||||
|
||||
if namespace != cb_namespace:
|
||||
continue
|
||||
|
||||
# Check for version compatibility
|
||||
try:
|
||||
rpc_api_version = proxyobj.RPC_API_VERSION
|
||||
except AttributeError:
|
||||
rpc_api_version = '1.0'
|
||||
|
||||
is_compatible = rpc_common.version_is_compatible(rpc_api_version,
|
||||
version)
|
||||
had_compatible = had_compatible or is_compatible
|
||||
|
||||
if not hasattr(proxyobj, method):
|
||||
continue
|
||||
if is_compatible:
|
||||
kwargs = self._deserialize_args(ctxt, kwargs)
|
||||
result = getattr(proxyobj, method)(ctxt, **kwargs)
|
||||
return self.serializer.serialize_entity(ctxt, result)
|
||||
|
||||
if had_compatible:
|
||||
raise AttributeError("No such RPC function '%s'" % method)
|
||||
else:
|
||||
raise rpc_common.UnsupportedRpcVersion(version=version)
|
||||
@@ -1,195 +0,0 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2011 OpenStack Foundation
|
||||
#
|
||||
# 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.
|
||||
"""Fake RPC implementation which calls proxy methods directly with no
|
||||
queues. Casts will block, but this is very useful for tests.
|
||||
"""
|
||||
|
||||
import inspect
|
||||
# NOTE(russellb): We specifically want to use json, not our own jsonutils.
|
||||
# jsonutils has some extra logic to automatically convert objects to primitive
|
||||
# types so that they can be serialized. We want to catch all cases where
|
||||
# non-primitive types make it into this code and treat it as an error.
|
||||
import json
|
||||
import time
|
||||
|
||||
import eventlet
|
||||
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
|
||||
CONSUMERS = {}
|
||||
|
||||
|
||||
class RpcContext(rpc_common.CommonRpcContext):
|
||||
def __init__(self, **kwargs):
|
||||
super(RpcContext, self).__init__(**kwargs)
|
||||
self._response = []
|
||||
self._done = False
|
||||
|
||||
def deepcopy(self):
|
||||
values = self.to_dict()
|
||||
new_inst = self.__class__(**values)
|
||||
new_inst._response = self._response
|
||||
new_inst._done = self._done
|
||||
return new_inst
|
||||
|
||||
def reply(self, reply=None, failure=None, ending=False):
|
||||
if ending:
|
||||
self._done = True
|
||||
if not self._done:
|
||||
self._response.append((reply, failure))
|
||||
|
||||
|
||||
class Consumer(object):
|
||||
def __init__(self, topic, proxy):
|
||||
self.topic = topic
|
||||
self.proxy = proxy
|
||||
|
||||
def call(self, context, version, method, namespace, args, timeout):
|
||||
done = eventlet.event.Event()
|
||||
|
||||
def _inner():
|
||||
ctxt = RpcContext.from_dict(context.to_dict())
|
||||
try:
|
||||
rval = self.proxy.dispatch(context, version, method,
|
||||
namespace, **args)
|
||||
res = []
|
||||
# Caller might have called ctxt.reply() manually
|
||||
for (reply, failure) in ctxt._response:
|
||||
if failure:
|
||||
raise failure[0], failure[1], failure[2]
|
||||
res.append(reply)
|
||||
# if ending not 'sent'...we might have more data to
|
||||
# return from the function itself
|
||||
if not ctxt._done:
|
||||
if inspect.isgenerator(rval):
|
||||
for val in rval:
|
||||
res.append(val)
|
||||
else:
|
||||
res.append(rval)
|
||||
done.send(res)
|
||||
except rpc_common.ClientException as e:
|
||||
done.send_exception(e._exc_info[1])
|
||||
except Exception as e:
|
||||
done.send_exception(e)
|
||||
|
||||
thread = eventlet.greenthread.spawn(_inner)
|
||||
|
||||
if timeout:
|
||||
start_time = time.time()
|
||||
while not done.ready():
|
||||
eventlet.greenthread.sleep(1)
|
||||
cur_time = time.time()
|
||||
if (cur_time - start_time) > timeout:
|
||||
thread.kill()
|
||||
raise rpc_common.Timeout()
|
||||
|
||||
return done.wait()
|
||||
|
||||
|
||||
class Connection(object):
|
||||
"""Connection object."""
|
||||
|
||||
def __init__(self):
|
||||
self.consumers = []
|
||||
|
||||
def create_consumer(self, topic, proxy, fanout=False):
|
||||
consumer = Consumer(topic, proxy)
|
||||
self.consumers.append(consumer)
|
||||
if topic not in CONSUMERS:
|
||||
CONSUMERS[topic] = []
|
||||
CONSUMERS[topic].append(consumer)
|
||||
|
||||
def close(self):
|
||||
for consumer in self.consumers:
|
||||
CONSUMERS[consumer.topic].remove(consumer)
|
||||
self.consumers = []
|
||||
|
||||
def consume_in_thread(self):
|
||||
pass
|
||||
|
||||
|
||||
def create_connection(conf, new=True):
|
||||
"""Create a connection."""
|
||||
return Connection()
|
||||
|
||||
|
||||
def check_serialize(msg):
|
||||
"""Make sure a message intended for rpc can be serialized."""
|
||||
json.dumps(msg)
|
||||
|
||||
|
||||
def multicall(conf, context, topic, msg, timeout=None):
|
||||
"""Make a call that returns multiple times."""
|
||||
|
||||
check_serialize(msg)
|
||||
|
||||
method = msg.get('method')
|
||||
if not method:
|
||||
return
|
||||
args = msg.get('args', {})
|
||||
version = msg.get('version', None)
|
||||
namespace = msg.get('namespace', None)
|
||||
|
||||
try:
|
||||
consumer = CONSUMERS[topic][0]
|
||||
except (KeyError, IndexError):
|
||||
raise rpc_common.Timeout("No consumers available")
|
||||
else:
|
||||
return consumer.call(context, version, method, namespace, args,
|
||||
timeout)
|
||||
|
||||
|
||||
def call(conf, context, topic, msg, timeout=None):
|
||||
"""Sends a message on a topic and wait for a response."""
|
||||
rv = multicall(conf, context, topic, msg, timeout)
|
||||
# NOTE(vish): return the last result from the multicall
|
||||
rv = list(rv)
|
||||
if not rv:
|
||||
return
|
||||
return rv[-1]
|
||||
|
||||
|
||||
def cast(conf, context, topic, msg):
|
||||
check_serialize(msg)
|
||||
try:
|
||||
call(conf, context, topic, msg)
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
|
||||
def notify(conf, context, topic, msg, envelope):
|
||||
check_serialize(msg)
|
||||
|
||||
|
||||
def cleanup():
|
||||
pass
|
||||
|
||||
|
||||
def fanout_cast(conf, context, topic, msg):
|
||||
"""Cast to all consumers of a topic."""
|
||||
check_serialize(msg)
|
||||
method = msg.get('method')
|
||||
if not method:
|
||||
return
|
||||
args = msg.get('args', {})
|
||||
version = msg.get('version', None)
|
||||
namespace = msg.get('namespace', None)
|
||||
|
||||
for consumer in CONSUMERS.get(topic, []):
|
||||
try:
|
||||
consumer.call(context, version, method, namespace, args, None)
|
||||
except Exception:
|
||||
pass
|
||||
@@ -1,856 +0,0 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2011 OpenStack Foundation
|
||||
#
|
||||
# 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 functools
|
||||
import itertools
|
||||
import socket
|
||||
import ssl
|
||||
import time
|
||||
import uuid
|
||||
|
||||
import eventlet
|
||||
import greenlet
|
||||
import kombu
|
||||
import kombu.connection
|
||||
import kombu.entity
|
||||
import kombu.messaging
|
||||
from oslo.config import cfg
|
||||
|
||||
from nova.openstack.common import excutils
|
||||
from nova.openstack.common.gettextutils import _ # noqa
|
||||
from nova.openstack.common import network_utils
|
||||
from nova.openstack.common.rpc import amqp as rpc_amqp
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
from nova.openstack.common import sslutils
|
||||
|
||||
kombu_opts = [
|
||||
cfg.StrOpt('kombu_ssl_version',
|
||||
default='',
|
||||
help='SSL version to use (valid only if SSL enabled). '
|
||||
'valid values are TLSv1, SSLv23 and SSLv3. SSLv2 may '
|
||||
'be available on some distributions'
|
||||
),
|
||||
cfg.StrOpt('kombu_ssl_keyfile',
|
||||
default='',
|
||||
help='SSL key file (valid only if SSL enabled)'),
|
||||
cfg.StrOpt('kombu_ssl_certfile',
|
||||
default='',
|
||||
help='SSL cert file (valid only if SSL enabled)'),
|
||||
cfg.StrOpt('kombu_ssl_ca_certs',
|
||||
default='',
|
||||
help=('SSL certification authority file '
|
||||
'(valid only if SSL enabled)')),
|
||||
cfg.StrOpt('rabbit_host',
|
||||
default='localhost',
|
||||
help='The RabbitMQ broker address where a single node is used'),
|
||||
cfg.IntOpt('rabbit_port',
|
||||
default=5672,
|
||||
help='The RabbitMQ broker port where a single node is used'),
|
||||
cfg.ListOpt('rabbit_hosts',
|
||||
default=['$rabbit_host:$rabbit_port'],
|
||||
help='RabbitMQ HA cluster host:port pairs'),
|
||||
cfg.BoolOpt('rabbit_use_ssl',
|
||||
default=False,
|
||||
help='connect over SSL for RabbitMQ'),
|
||||
cfg.StrOpt('rabbit_userid',
|
||||
default='guest',
|
||||
help='the RabbitMQ userid'),
|
||||
cfg.StrOpt('rabbit_password',
|
||||
default='guest',
|
||||
help='the RabbitMQ password',
|
||||
secret=True),
|
||||
cfg.StrOpt('rabbit_virtual_host',
|
||||
default='/',
|
||||
help='the RabbitMQ virtual host'),
|
||||
cfg.IntOpt('rabbit_retry_interval',
|
||||
default=1,
|
||||
help='how frequently to retry connecting with RabbitMQ'),
|
||||
cfg.IntOpt('rabbit_retry_backoff',
|
||||
default=2,
|
||||
help='how long to backoff for between retries when connecting '
|
||||
'to RabbitMQ'),
|
||||
cfg.IntOpt('rabbit_max_retries',
|
||||
default=0,
|
||||
help='maximum retries with trying to connect to RabbitMQ '
|
||||
'(the default of 0 implies an infinite retry count)'),
|
||||
cfg.BoolOpt('rabbit_ha_queues',
|
||||
default=False,
|
||||
help='use H/A queues in RabbitMQ (x-ha-policy: all).'
|
||||
'You need to wipe RabbitMQ database when '
|
||||
'changing this option.'),
|
||||
|
||||
]
|
||||
|
||||
cfg.CONF.register_opts(kombu_opts)
|
||||
|
||||
LOG = rpc_common.LOG
|
||||
|
||||
|
||||
def _get_queue_arguments(conf):
|
||||
"""Construct the arguments for declaring a queue.
|
||||
|
||||
If the rabbit_ha_queues option is set, we declare a mirrored queue
|
||||
as described here:
|
||||
|
||||
http://www.rabbitmq.com/ha.html
|
||||
|
||||
Setting x-ha-policy to all means that the queue will be mirrored
|
||||
to all nodes in the cluster.
|
||||
"""
|
||||
return {'x-ha-policy': 'all'} if conf.rabbit_ha_queues else {}
|
||||
|
||||
|
||||
class ConsumerBase(object):
|
||||
"""Consumer base class."""
|
||||
|
||||
def __init__(self, channel, callback, tag, **kwargs):
|
||||
"""Declare a queue on an amqp channel.
|
||||
|
||||
'channel' is the amqp channel to use
|
||||
'callback' is the callback to call when messages are received
|
||||
'tag' is a unique ID for the consumer on the channel
|
||||
|
||||
queue name, exchange name, and other kombu options are
|
||||
passed in here as a dictionary.
|
||||
"""
|
||||
self.callback = callback
|
||||
self.tag = str(tag)
|
||||
self.kwargs = kwargs
|
||||
self.queue = None
|
||||
self.ack_on_error = kwargs.get('ack_on_error', True)
|
||||
self.reconnect(channel)
|
||||
|
||||
def reconnect(self, channel):
|
||||
"""Re-declare the queue after a rabbit reconnect."""
|
||||
self.channel = channel
|
||||
self.kwargs['channel'] = channel
|
||||
self.queue = kombu.entity.Queue(**self.kwargs)
|
||||
self.queue.declare()
|
||||
|
||||
def _callback_handler(self, message, callback):
|
||||
"""Call callback with deserialized message.
|
||||
|
||||
Messages that are processed without exception are ack'ed.
|
||||
|
||||
If the message processing generates an exception, it will be
|
||||
ack'ed if ack_on_error=True. Otherwise it will be .requeue()'ed.
|
||||
"""
|
||||
|
||||
try:
|
||||
msg = rpc_common.deserialize_msg(message.payload)
|
||||
callback(msg)
|
||||
except Exception:
|
||||
if self.ack_on_error:
|
||||
LOG.exception(_("Failed to process message"
|
||||
" ... skipping it."))
|
||||
message.ack()
|
||||
else:
|
||||
LOG.exception(_("Failed to process message"
|
||||
" ... will requeue."))
|
||||
message.requeue()
|
||||
else:
|
||||
message.ack()
|
||||
|
||||
def consume(self, *args, **kwargs):
|
||||
"""Actually declare the consumer on the amqp channel. This will
|
||||
start the flow of messages from the queue. Using the
|
||||
Connection.iterconsume() iterator will process the messages,
|
||||
calling the appropriate callback.
|
||||
|
||||
If a callback is specified in kwargs, use that. Otherwise,
|
||||
use the callback passed during __init__()
|
||||
|
||||
If kwargs['nowait'] is True, then this call will block until
|
||||
a message is read.
|
||||
|
||||
"""
|
||||
|
||||
options = {'consumer_tag': self.tag}
|
||||
options['nowait'] = kwargs.get('nowait', False)
|
||||
callback = kwargs.get('callback', self.callback)
|
||||
if not callback:
|
||||
raise ValueError("No callback defined")
|
||||
|
||||
def _callback(raw_message):
|
||||
message = self.channel.message_to_python(raw_message)
|
||||
self._callback_handler(message, callback)
|
||||
|
||||
self.queue.consume(*args, callback=_callback, **options)
|
||||
|
||||
def cancel(self):
|
||||
"""Cancel the consuming from the queue, if it has started."""
|
||||
try:
|
||||
self.queue.cancel(self.tag)
|
||||
except KeyError as e:
|
||||
# NOTE(comstud): Kludge to get around a amqplib bug
|
||||
if str(e) != "u'%s'" % self.tag:
|
||||
raise
|
||||
self.queue = None
|
||||
|
||||
|
||||
class DirectConsumer(ConsumerBase):
|
||||
"""Queue/consumer class for 'direct'."""
|
||||
|
||||
def __init__(self, conf, channel, msg_id, callback, tag, **kwargs):
|
||||
"""Init a 'direct' queue.
|
||||
|
||||
'channel' is the amqp channel to use
|
||||
'msg_id' is the msg_id to listen on
|
||||
'callback' is the callback to call when messages are received
|
||||
'tag' is a unique ID for the consumer on the channel
|
||||
|
||||
Other kombu options may be passed
|
||||
"""
|
||||
# Default options
|
||||
options = {'durable': False,
|
||||
'queue_arguments': _get_queue_arguments(conf),
|
||||
'auto_delete': True,
|
||||
'exclusive': False}
|
||||
options.update(kwargs)
|
||||
exchange = kombu.entity.Exchange(name=msg_id,
|
||||
type='direct',
|
||||
durable=options['durable'],
|
||||
auto_delete=options['auto_delete'])
|
||||
super(DirectConsumer, self).__init__(channel,
|
||||
callback,
|
||||
tag,
|
||||
name=msg_id,
|
||||
exchange=exchange,
|
||||
routing_key=msg_id,
|
||||
**options)
|
||||
|
||||
|
||||
class TopicConsumer(ConsumerBase):
|
||||
"""Consumer class for 'topic'."""
|
||||
|
||||
def __init__(self, conf, channel, topic, callback, tag, name=None,
|
||||
exchange_name=None, **kwargs):
|
||||
"""Init a 'topic' queue.
|
||||
|
||||
:param channel: the amqp channel to use
|
||||
:param topic: the topic to listen on
|
||||
:paramtype topic: str
|
||||
:param callback: the callback to call when messages are received
|
||||
:param tag: a unique ID for the consumer on the channel
|
||||
:param name: optional queue name, defaults to topic
|
||||
:paramtype name: str
|
||||
|
||||
Other kombu options may be passed as keyword arguments
|
||||
"""
|
||||
# Default options
|
||||
options = {'durable': conf.amqp_durable_queues,
|
||||
'queue_arguments': _get_queue_arguments(conf),
|
||||
'auto_delete': conf.amqp_auto_delete,
|
||||
'exclusive': False}
|
||||
options.update(kwargs)
|
||||
exchange_name = exchange_name or rpc_amqp.get_control_exchange(conf)
|
||||
exchange = kombu.entity.Exchange(name=exchange_name,
|
||||
type='topic',
|
||||
durable=options['durable'],
|
||||
auto_delete=options['auto_delete'])
|
||||
super(TopicConsumer, self).__init__(channel,
|
||||
callback,
|
||||
tag,
|
||||
name=name or topic,
|
||||
exchange=exchange,
|
||||
routing_key=topic,
|
||||
**options)
|
||||
|
||||
|
||||
class FanoutConsumer(ConsumerBase):
|
||||
"""Consumer class for 'fanout'."""
|
||||
|
||||
def __init__(self, conf, channel, topic, callback, tag, **kwargs):
|
||||
"""Init a 'fanout' queue.
|
||||
|
||||
'channel' is the amqp channel to use
|
||||
'topic' is the topic to listen on
|
||||
'callback' is the callback to call when messages are received
|
||||
'tag' is a unique ID for the consumer on the channel
|
||||
|
||||
Other kombu options may be passed
|
||||
"""
|
||||
unique = uuid.uuid4().hex
|
||||
exchange_name = '%s_fanout' % topic
|
||||
queue_name = '%s_fanout_%s' % (topic, unique)
|
||||
|
||||
# Default options
|
||||
options = {'durable': False,
|
||||
'queue_arguments': _get_queue_arguments(conf),
|
||||
'auto_delete': True,
|
||||
'exclusive': False}
|
||||
options.update(kwargs)
|
||||
exchange = kombu.entity.Exchange(name=exchange_name, type='fanout',
|
||||
durable=options['durable'],
|
||||
auto_delete=options['auto_delete'])
|
||||
super(FanoutConsumer, self).__init__(channel, callback, tag,
|
||||
name=queue_name,
|
||||
exchange=exchange,
|
||||
routing_key=topic,
|
||||
**options)
|
||||
|
||||
|
||||
class Publisher(object):
|
||||
"""Base Publisher class."""
|
||||
|
||||
def __init__(self, channel, exchange_name, routing_key, **kwargs):
|
||||
"""Init the Publisher class with the exchange_name, routing_key,
|
||||
and other options
|
||||
"""
|
||||
self.exchange_name = exchange_name
|
||||
self.routing_key = routing_key
|
||||
self.kwargs = kwargs
|
||||
self.reconnect(channel)
|
||||
|
||||
def reconnect(self, channel):
|
||||
"""Re-establish the Producer after a rabbit reconnection."""
|
||||
self.exchange = kombu.entity.Exchange(name=self.exchange_name,
|
||||
**self.kwargs)
|
||||
self.producer = kombu.messaging.Producer(exchange=self.exchange,
|
||||
channel=channel,
|
||||
routing_key=self.routing_key)
|
||||
|
||||
def send(self, msg, timeout=None):
|
||||
"""Send a message."""
|
||||
if timeout:
|
||||
#
|
||||
# AMQP TTL is in milliseconds when set in the header.
|
||||
#
|
||||
self.producer.publish(msg, headers={'ttl': (timeout * 1000)})
|
||||
else:
|
||||
self.producer.publish(msg)
|
||||
|
||||
|
||||
class DirectPublisher(Publisher):
|
||||
"""Publisher class for 'direct'."""
|
||||
def __init__(self, conf, channel, msg_id, **kwargs):
|
||||
"""init a 'direct' publisher.
|
||||
|
||||
Kombu options may be passed as keyword args to override defaults
|
||||
"""
|
||||
|
||||
options = {'durable': False,
|
||||
'auto_delete': True,
|
||||
'exclusive': False}
|
||||
options.update(kwargs)
|
||||
super(DirectPublisher, self).__init__(channel, msg_id, msg_id,
|
||||
type='direct', **options)
|
||||
|
||||
|
||||
class TopicPublisher(Publisher):
|
||||
"""Publisher class for 'topic'."""
|
||||
def __init__(self, conf, channel, topic, **kwargs):
|
||||
"""init a 'topic' publisher.
|
||||
|
||||
Kombu options may be passed as keyword args to override defaults
|
||||
"""
|
||||
options = {'durable': conf.amqp_durable_queues,
|
||||
'auto_delete': conf.amqp_auto_delete,
|
||||
'exclusive': False}
|
||||
options.update(kwargs)
|
||||
exchange_name = rpc_amqp.get_control_exchange(conf)
|
||||
super(TopicPublisher, self).__init__(channel,
|
||||
exchange_name,
|
||||
topic,
|
||||
type='topic',
|
||||
**options)
|
||||
|
||||
|
||||
class FanoutPublisher(Publisher):
|
||||
"""Publisher class for 'fanout'."""
|
||||
def __init__(self, conf, channel, topic, **kwargs):
|
||||
"""init a 'fanout' publisher.
|
||||
|
||||
Kombu options may be passed as keyword args to override defaults
|
||||
"""
|
||||
options = {'durable': False,
|
||||
'auto_delete': True,
|
||||
'exclusive': False}
|
||||
options.update(kwargs)
|
||||
super(FanoutPublisher, self).__init__(channel, '%s_fanout' % topic,
|
||||
None, type='fanout', **options)
|
||||
|
||||
|
||||
class NotifyPublisher(TopicPublisher):
|
||||
"""Publisher class for 'notify'."""
|
||||
|
||||
def __init__(self, conf, channel, topic, **kwargs):
|
||||
self.durable = kwargs.pop('durable', conf.amqp_durable_queues)
|
||||
self.queue_arguments = _get_queue_arguments(conf)
|
||||
super(NotifyPublisher, self).__init__(conf, channel, topic, **kwargs)
|
||||
|
||||
def reconnect(self, channel):
|
||||
super(NotifyPublisher, self).reconnect(channel)
|
||||
|
||||
# NOTE(jerdfelt): Normally the consumer would create the queue, but
|
||||
# we do this to ensure that messages don't get dropped if the
|
||||
# consumer is started after we do
|
||||
queue = kombu.entity.Queue(channel=channel,
|
||||
exchange=self.exchange,
|
||||
durable=self.durable,
|
||||
name=self.routing_key,
|
||||
routing_key=self.routing_key,
|
||||
queue_arguments=self.queue_arguments)
|
||||
queue.declare()
|
||||
|
||||
|
||||
class Connection(object):
|
||||
"""Connection object."""
|
||||
|
||||
pool = None
|
||||
|
||||
def __init__(self, conf, server_params=None):
|
||||
self.consumers = []
|
||||
self.consumer_thread = None
|
||||
self.proxy_callbacks = []
|
||||
self.conf = conf
|
||||
self.max_retries = self.conf.rabbit_max_retries
|
||||
# Try forever?
|
||||
if self.max_retries <= 0:
|
||||
self.max_retries = None
|
||||
self.interval_start = self.conf.rabbit_retry_interval
|
||||
self.interval_stepping = self.conf.rabbit_retry_backoff
|
||||
# max retry-interval = 30 seconds
|
||||
self.interval_max = 30
|
||||
self.memory_transport = False
|
||||
|
||||
if server_params is None:
|
||||
server_params = {}
|
||||
# Keys to translate from server_params to kombu params
|
||||
server_params_to_kombu_params = {'username': 'userid'}
|
||||
|
||||
ssl_params = self._fetch_ssl_params()
|
||||
params_list = []
|
||||
for adr in self.conf.rabbit_hosts:
|
||||
hostname, port = network_utils.parse_host_port(
|
||||
adr, default_port=self.conf.rabbit_port)
|
||||
|
||||
params = {
|
||||
'hostname': hostname,
|
||||
'port': port,
|
||||
'userid': self.conf.rabbit_userid,
|
||||
'password': self.conf.rabbit_password,
|
||||
'virtual_host': self.conf.rabbit_virtual_host,
|
||||
}
|
||||
|
||||
for sp_key, value in server_params.iteritems():
|
||||
p_key = server_params_to_kombu_params.get(sp_key, sp_key)
|
||||
params[p_key] = value
|
||||
|
||||
if self.conf.fake_rabbit:
|
||||
params['transport'] = 'memory'
|
||||
if self.conf.rabbit_use_ssl:
|
||||
params['ssl'] = ssl_params
|
||||
|
||||
params_list.append(params)
|
||||
|
||||
self.params_list = params_list
|
||||
|
||||
self.memory_transport = self.conf.fake_rabbit
|
||||
|
||||
self.connection = None
|
||||
self.reconnect()
|
||||
|
||||
def _fetch_ssl_params(self):
|
||||
"""Handles fetching what ssl params should be used for the connection
|
||||
(if any).
|
||||
"""
|
||||
ssl_params = dict()
|
||||
|
||||
# http://docs.python.org/library/ssl.html - ssl.wrap_socket
|
||||
if self.conf.kombu_ssl_version:
|
||||
ssl_params['ssl_version'] = sslutils.validate_ssl_version(
|
||||
self.conf.kombu_ssl_version)
|
||||
if self.conf.kombu_ssl_keyfile:
|
||||
ssl_params['keyfile'] = self.conf.kombu_ssl_keyfile
|
||||
if self.conf.kombu_ssl_certfile:
|
||||
ssl_params['certfile'] = self.conf.kombu_ssl_certfile
|
||||
if self.conf.kombu_ssl_ca_certs:
|
||||
ssl_params['ca_certs'] = self.conf.kombu_ssl_ca_certs
|
||||
# We might want to allow variations in the
|
||||
# future with this?
|
||||
ssl_params['cert_reqs'] = ssl.CERT_REQUIRED
|
||||
|
||||
# Return the extended behavior or just have the default behavior
|
||||
return ssl_params or True
|
||||
|
||||
def _connect(self, params):
|
||||
"""Connect to rabbit. Re-establish any queues that may have
|
||||
been declared before if we are reconnecting. Exceptions should
|
||||
be handled by the caller.
|
||||
"""
|
||||
if self.connection:
|
||||
LOG.info(_("Reconnecting to AMQP server on "
|
||||
"%(hostname)s:%(port)d") % params)
|
||||
try:
|
||||
self.connection.release()
|
||||
except self.connection_errors:
|
||||
pass
|
||||
# Setting this in case the next statement fails, though
|
||||
# it shouldn't be doing any network operations, yet.
|
||||
self.connection = None
|
||||
self.connection = kombu.connection.BrokerConnection(**params)
|
||||
self.connection_errors = self.connection.connection_errors
|
||||
if self.memory_transport:
|
||||
# Kludge to speed up tests.
|
||||
self.connection.transport.polling_interval = 0.0
|
||||
self.consumer_num = itertools.count(1)
|
||||
self.connection.connect()
|
||||
self.channel = self.connection.channel()
|
||||
# work around 'memory' transport bug in 1.1.3
|
||||
if self.memory_transport:
|
||||
self.channel._new_queue('ae.undeliver')
|
||||
for consumer in self.consumers:
|
||||
consumer.reconnect(self.channel)
|
||||
LOG.info(_('Connected to AMQP server on %(hostname)s:%(port)d') %
|
||||
params)
|
||||
|
||||
def reconnect(self):
|
||||
"""Handles reconnecting and re-establishing queues.
|
||||
Will retry up to self.max_retries number of times.
|
||||
self.max_retries = 0 means to retry forever.
|
||||
Sleep between tries, starting at self.interval_start
|
||||
seconds, backing off self.interval_stepping number of seconds
|
||||
each attempt.
|
||||
"""
|
||||
|
||||
attempt = 0
|
||||
while True:
|
||||
params = self.params_list[attempt % len(self.params_list)]
|
||||
attempt += 1
|
||||
try:
|
||||
self._connect(params)
|
||||
return
|
||||
except (IOError, self.connection_errors) as e:
|
||||
pass
|
||||
except Exception as e:
|
||||
# NOTE(comstud): Unfortunately it's possible for amqplib
|
||||
# to return an error not covered by its transport
|
||||
# connection_errors in the case of a timeout waiting for
|
||||
# a protocol response. (See paste link in LP888621)
|
||||
# So, we check all exceptions for 'timeout' in them
|
||||
# and try to reconnect in this case.
|
||||
if 'timeout' not in str(e):
|
||||
raise
|
||||
|
||||
log_info = {}
|
||||
log_info['err_str'] = str(e)
|
||||
log_info['max_retries'] = self.max_retries
|
||||
log_info.update(params)
|
||||
|
||||
if self.max_retries and attempt == self.max_retries:
|
||||
msg = _('Unable to connect to AMQP server on '
|
||||
'%(hostname)s:%(port)d after %(max_retries)d '
|
||||
'tries: %(err_str)s') % log_info
|
||||
LOG.error(msg)
|
||||
raise rpc_common.RPCException(msg)
|
||||
|
||||
if attempt == 1:
|
||||
sleep_time = self.interval_start or 1
|
||||
elif attempt > 1:
|
||||
sleep_time += self.interval_stepping
|
||||
if self.interval_max:
|
||||
sleep_time = min(sleep_time, self.interval_max)
|
||||
|
||||
log_info['sleep_time'] = sleep_time
|
||||
LOG.error(_('AMQP server on %(hostname)s:%(port)d is '
|
||||
'unreachable: %(err_str)s. Trying again in '
|
||||
'%(sleep_time)d seconds.') % log_info)
|
||||
time.sleep(sleep_time)
|
||||
|
||||
def ensure(self, error_callback, method, *args, **kwargs):
|
||||
while True:
|
||||
try:
|
||||
return method(*args, **kwargs)
|
||||
except (self.connection_errors, socket.timeout, IOError) as e:
|
||||
if error_callback:
|
||||
error_callback(e)
|
||||
except Exception as e:
|
||||
# NOTE(comstud): Unfortunately it's possible for amqplib
|
||||
# to return an error not covered by its transport
|
||||
# connection_errors in the case of a timeout waiting for
|
||||
# a protocol response. (See paste link in LP888621)
|
||||
# So, we check all exceptions for 'timeout' in them
|
||||
# and try to reconnect in this case.
|
||||
if 'timeout' not in str(e):
|
||||
raise
|
||||
if error_callback:
|
||||
error_callback(e)
|
||||
self.reconnect()
|
||||
|
||||
def get_channel(self):
|
||||
"""Convenience call for bin/clear_rabbit_queues."""
|
||||
return self.channel
|
||||
|
||||
def close(self):
|
||||
"""Close/release this connection."""
|
||||
self.cancel_consumer_thread()
|
||||
self.wait_on_proxy_callbacks()
|
||||
self.connection.release()
|
||||
self.connection = None
|
||||
|
||||
def reset(self):
|
||||
"""Reset a connection so it can be used again."""
|
||||
self.cancel_consumer_thread()
|
||||
self.wait_on_proxy_callbacks()
|
||||
self.channel.close()
|
||||
self.channel = self.connection.channel()
|
||||
# work around 'memory' transport bug in 1.1.3
|
||||
if self.memory_transport:
|
||||
self.channel._new_queue('ae.undeliver')
|
||||
self.consumers = []
|
||||
|
||||
def declare_consumer(self, consumer_cls, topic, callback):
|
||||
"""Create a Consumer using the class that was passed in and
|
||||
add it to our list of consumers
|
||||
"""
|
||||
|
||||
def _connect_error(exc):
|
||||
log_info = {'topic': topic, 'err_str': str(exc)}
|
||||
LOG.error(_("Failed to declare consumer for topic '%(topic)s': "
|
||||
"%(err_str)s") % log_info)
|
||||
|
||||
def _declare_consumer():
|
||||
consumer = consumer_cls(self.conf, self.channel, topic, callback,
|
||||
self.consumer_num.next())
|
||||
self.consumers.append(consumer)
|
||||
return consumer
|
||||
|
||||
return self.ensure(_connect_error, _declare_consumer)
|
||||
|
||||
def iterconsume(self, limit=None, timeout=None):
|
||||
"""Return an iterator that will consume from all queues/consumers."""
|
||||
|
||||
info = {'do_consume': True}
|
||||
|
||||
def _error_callback(exc):
|
||||
if isinstance(exc, socket.timeout):
|
||||
LOG.debug(_('Timed out waiting for RPC response: %s') %
|
||||
str(exc))
|
||||
raise rpc_common.Timeout()
|
||||
else:
|
||||
LOG.exception(_('Failed to consume message from queue: %s') %
|
||||
str(exc))
|
||||
info['do_consume'] = True
|
||||
|
||||
def _consume():
|
||||
if info['do_consume']:
|
||||
queues_head = self.consumers[:-1] # not fanout.
|
||||
queues_tail = self.consumers[-1] # fanout
|
||||
for queue in queues_head:
|
||||
queue.consume(nowait=True)
|
||||
queues_tail.consume(nowait=False)
|
||||
info['do_consume'] = False
|
||||
return self.connection.drain_events(timeout=timeout)
|
||||
|
||||
for iteration in itertools.count(0):
|
||||
if limit and iteration >= limit:
|
||||
raise StopIteration
|
||||
yield self.ensure(_error_callback, _consume)
|
||||
|
||||
def cancel_consumer_thread(self):
|
||||
"""Cancel a consumer thread."""
|
||||
if self.consumer_thread is not None:
|
||||
self.consumer_thread.kill()
|
||||
try:
|
||||
self.consumer_thread.wait()
|
||||
except greenlet.GreenletExit:
|
||||
pass
|
||||
self.consumer_thread = None
|
||||
|
||||
def wait_on_proxy_callbacks(self):
|
||||
"""Wait for all proxy callback threads to exit."""
|
||||
for proxy_cb in self.proxy_callbacks:
|
||||
proxy_cb.wait()
|
||||
|
||||
def publisher_send(self, cls, topic, msg, timeout=None, **kwargs):
|
||||
"""Send to a publisher based on the publisher class."""
|
||||
|
||||
def _error_callback(exc):
|
||||
log_info = {'topic': topic, 'err_str': str(exc)}
|
||||
LOG.exception(_("Failed to publish message to topic "
|
||||
"'%(topic)s': %(err_str)s") % log_info)
|
||||
|
||||
def _publish():
|
||||
publisher = cls(self.conf, self.channel, topic, **kwargs)
|
||||
publisher.send(msg, timeout)
|
||||
|
||||
self.ensure(_error_callback, _publish)
|
||||
|
||||
def declare_direct_consumer(self, topic, callback):
|
||||
"""Create a 'direct' queue.
|
||||
In nova's use, this is generally a msg_id queue used for
|
||||
responses for call/multicall
|
||||
"""
|
||||
self.declare_consumer(DirectConsumer, topic, callback)
|
||||
|
||||
def declare_topic_consumer(self, topic, callback=None, queue_name=None,
|
||||
exchange_name=None, ack_on_error=True):
|
||||
"""Create a 'topic' consumer."""
|
||||
self.declare_consumer(functools.partial(TopicConsumer,
|
||||
name=queue_name,
|
||||
exchange_name=exchange_name,
|
||||
ack_on_error=ack_on_error,
|
||||
),
|
||||
topic, callback)
|
||||
|
||||
def declare_fanout_consumer(self, topic, callback):
|
||||
"""Create a 'fanout' consumer."""
|
||||
self.declare_consumer(FanoutConsumer, topic, callback)
|
||||
|
||||
def direct_send(self, msg_id, msg):
|
||||
"""Send a 'direct' message."""
|
||||
self.publisher_send(DirectPublisher, msg_id, msg)
|
||||
|
||||
def topic_send(self, topic, msg, timeout=None):
|
||||
"""Send a 'topic' message."""
|
||||
self.publisher_send(TopicPublisher, topic, msg, timeout)
|
||||
|
||||
def fanout_send(self, topic, msg):
|
||||
"""Send a 'fanout' message."""
|
||||
self.publisher_send(FanoutPublisher, topic, msg)
|
||||
|
||||
def notify_send(self, topic, msg, **kwargs):
|
||||
"""Send a notify message on a topic."""
|
||||
self.publisher_send(NotifyPublisher, topic, msg, None, **kwargs)
|
||||
|
||||
def consume(self, limit=None):
|
||||
"""Consume from all queues/consumers."""
|
||||
it = self.iterconsume(limit=limit)
|
||||
while True:
|
||||
try:
|
||||
it.next()
|
||||
except StopIteration:
|
||||
return
|
||||
|
||||
def consume_in_thread(self):
|
||||
"""Consumer from all queues/consumers in a greenthread."""
|
||||
@excutils.forever_retry_uncaught_exceptions
|
||||
def _consumer_thread():
|
||||
try:
|
||||
self.consume()
|
||||
except greenlet.GreenletExit:
|
||||
return
|
||||
if self.consumer_thread is None:
|
||||
self.consumer_thread = eventlet.spawn(_consumer_thread)
|
||||
return self.consumer_thread
|
||||
|
||||
def create_consumer(self, topic, proxy, fanout=False):
|
||||
"""Create a consumer that calls a method in a proxy object."""
|
||||
proxy_cb = rpc_amqp.ProxyCallback(
|
||||
self.conf, proxy,
|
||||
rpc_amqp.get_connection_pool(self.conf, Connection))
|
||||
self.proxy_callbacks.append(proxy_cb)
|
||||
|
||||
if fanout:
|
||||
self.declare_fanout_consumer(topic, proxy_cb)
|
||||
else:
|
||||
self.declare_topic_consumer(topic, proxy_cb)
|
||||
|
||||
def create_worker(self, topic, proxy, pool_name):
|
||||
"""Create a worker that calls a method in a proxy object."""
|
||||
proxy_cb = rpc_amqp.ProxyCallback(
|
||||
self.conf, proxy,
|
||||
rpc_amqp.get_connection_pool(self.conf, Connection))
|
||||
self.proxy_callbacks.append(proxy_cb)
|
||||
self.declare_topic_consumer(topic, proxy_cb, pool_name)
|
||||
|
||||
def join_consumer_pool(self, callback, pool_name, topic,
|
||||
exchange_name=None, ack_on_error=True):
|
||||
"""Register as a member of a group of consumers for a given topic from
|
||||
the specified exchange.
|
||||
|
||||
Exactly one member of a given pool will receive each message.
|
||||
|
||||
A message will be delivered to multiple pools, if more than
|
||||
one is created.
|
||||
"""
|
||||
callback_wrapper = rpc_amqp.CallbackWrapper(
|
||||
conf=self.conf,
|
||||
callback=callback,
|
||||
connection_pool=rpc_amqp.get_connection_pool(self.conf,
|
||||
Connection),
|
||||
wait_for_consumers=not ack_on_error
|
||||
)
|
||||
self.proxy_callbacks.append(callback_wrapper)
|
||||
self.declare_topic_consumer(
|
||||
queue_name=pool_name,
|
||||
topic=topic,
|
||||
exchange_name=exchange_name,
|
||||
callback=callback_wrapper,
|
||||
ack_on_error=ack_on_error,
|
||||
)
|
||||
|
||||
|
||||
def create_connection(conf, new=True):
|
||||
"""Create a connection."""
|
||||
return rpc_amqp.create_connection(
|
||||
conf, new,
|
||||
rpc_amqp.get_connection_pool(conf, Connection))
|
||||
|
||||
|
||||
def multicall(conf, context, topic, msg, timeout=None):
|
||||
"""Make a call that returns multiple times."""
|
||||
return rpc_amqp.multicall(
|
||||
conf, context, topic, msg, timeout,
|
||||
rpc_amqp.get_connection_pool(conf, Connection))
|
||||
|
||||
|
||||
def call(conf, context, topic, msg, timeout=None):
|
||||
"""Sends a message on a topic and wait for a response."""
|
||||
return rpc_amqp.call(
|
||||
conf, context, topic, msg, timeout,
|
||||
rpc_amqp.get_connection_pool(conf, Connection))
|
||||
|
||||
|
||||
def cast(conf, context, topic, msg):
|
||||
"""Sends a message on a topic without waiting for a response."""
|
||||
return rpc_amqp.cast(
|
||||
conf, context, topic, msg,
|
||||
rpc_amqp.get_connection_pool(conf, Connection))
|
||||
|
||||
|
||||
def fanout_cast(conf, context, topic, msg):
|
||||
"""Sends a message on a fanout exchange without waiting for a response."""
|
||||
return rpc_amqp.fanout_cast(
|
||||
conf, context, topic, msg,
|
||||
rpc_amqp.get_connection_pool(conf, Connection))
|
||||
|
||||
|
||||
def cast_to_server(conf, context, server_params, topic, msg):
|
||||
"""Sends a message on a topic to a specific server."""
|
||||
return rpc_amqp.cast_to_server(
|
||||
conf, context, server_params, topic, msg,
|
||||
rpc_amqp.get_connection_pool(conf, Connection))
|
||||
|
||||
|
||||
def fanout_cast_to_server(conf, context, server_params, topic, msg):
|
||||
"""Sends a message on a fanout exchange to a specific server."""
|
||||
return rpc_amqp.fanout_cast_to_server(
|
||||
conf, context, server_params, topic, msg,
|
||||
rpc_amqp.get_connection_pool(conf, Connection))
|
||||
|
||||
|
||||
def notify(conf, context, topic, msg, envelope):
|
||||
"""Sends a notification event on a topic."""
|
||||
return rpc_amqp.notify(
|
||||
conf, context, topic, msg,
|
||||
rpc_amqp.get_connection_pool(conf, Connection),
|
||||
envelope)
|
||||
|
||||
|
||||
def cleanup():
|
||||
return rpc_amqp.cleanup(Connection.pool)
|
||||
@@ -1,822 +0,0 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2011 OpenStack Foundation
|
||||
# Copyright 2011 - 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 functools
|
||||
import itertools
|
||||
import time
|
||||
|
||||
import eventlet
|
||||
import greenlet
|
||||
from oslo.config import cfg
|
||||
|
||||
from nova.openstack.common import excutils
|
||||
from nova.openstack.common.gettextutils import _ # noqa
|
||||
from nova.openstack.common import importutils
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common.rpc import amqp as rpc_amqp
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
|
||||
qpid_codec = importutils.try_import("qpid.codec010")
|
||||
qpid_messaging = importutils.try_import("qpid.messaging")
|
||||
qpid_exceptions = importutils.try_import("qpid.messaging.exceptions")
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
qpid_opts = [
|
||||
cfg.StrOpt('qpid_hostname',
|
||||
default='localhost',
|
||||
help='Qpid broker hostname'),
|
||||
cfg.IntOpt('qpid_port',
|
||||
default=5672,
|
||||
help='Qpid broker port'),
|
||||
cfg.ListOpt('qpid_hosts',
|
||||
default=['$qpid_hostname:$qpid_port'],
|
||||
help='Qpid HA cluster host:port pairs'),
|
||||
cfg.StrOpt('qpid_username',
|
||||
default='',
|
||||
help='Username for qpid connection'),
|
||||
cfg.StrOpt('qpid_password',
|
||||
default='',
|
||||
help='Password for qpid connection',
|
||||
secret=True),
|
||||
cfg.StrOpt('qpid_sasl_mechanisms',
|
||||
default='',
|
||||
help='Space separated list of SASL mechanisms to use for auth'),
|
||||
cfg.IntOpt('qpid_heartbeat',
|
||||
default=60,
|
||||
help='Seconds between connection keepalive heartbeats'),
|
||||
cfg.StrOpt('qpid_protocol',
|
||||
default='tcp',
|
||||
help="Transport to use, either 'tcp' or 'ssl'"),
|
||||
cfg.BoolOpt('qpid_tcp_nodelay',
|
||||
default=True,
|
||||
help='Disable Nagle algorithm'),
|
||||
# NOTE(russellb) If any additional versions are added (beyond 1 and 2),
|
||||
# this file could probably use some additional refactoring so that the
|
||||
# differences between each version are split into different classes.
|
||||
cfg.IntOpt('qpid_topology_version',
|
||||
default=1,
|
||||
help="The qpid topology version to use. Version 1 is what "
|
||||
"was originally used by impl_qpid. Version 2 includes "
|
||||
"some backwards-incompatible changes that allow broker "
|
||||
"federation to work. Users should update to version 2 "
|
||||
"when they are able to take everything down, as it "
|
||||
"requires a clean break."),
|
||||
]
|
||||
|
||||
cfg.CONF.register_opts(qpid_opts)
|
||||
|
||||
JSON_CONTENT_TYPE = 'application/json; charset=utf8'
|
||||
|
||||
|
||||
def raise_invalid_topology_version(conf):
|
||||
msg = (_("Invalid value for qpid_topology_version: %d") %
|
||||
conf.qpid_topology_version)
|
||||
LOG.error(msg)
|
||||
raise Exception(msg)
|
||||
|
||||
|
||||
class ConsumerBase(object):
|
||||
"""Consumer base class."""
|
||||
|
||||
def __init__(self, conf, session, callback, node_name, node_opts,
|
||||
link_name, link_opts):
|
||||
"""Declare a queue on an amqp session.
|
||||
|
||||
'session' is the amqp session to use
|
||||
'callback' is the callback to call when messages are received
|
||||
'node_name' is the first part of the Qpid address string, before ';'
|
||||
'node_opts' will be applied to the "x-declare" section of "node"
|
||||
in the address string.
|
||||
'link_name' goes into the "name" field of the "link" in the address
|
||||
string
|
||||
'link_opts' will be applied to the "x-declare" section of "link"
|
||||
in the address string.
|
||||
"""
|
||||
self.callback = callback
|
||||
self.receiver = None
|
||||
self.session = None
|
||||
|
||||
if conf.qpid_topology_version == 1:
|
||||
addr_opts = {
|
||||
"create": "always",
|
||||
"node": {
|
||||
"type": "topic",
|
||||
"x-declare": {
|
||||
"durable": True,
|
||||
"auto-delete": True,
|
||||
},
|
||||
},
|
||||
"link": {
|
||||
"durable": True,
|
||||
"x-declare": {
|
||||
"durable": False,
|
||||
"auto-delete": True,
|
||||
"exclusive": False,
|
||||
},
|
||||
},
|
||||
}
|
||||
addr_opts["node"]["x-declare"].update(node_opts)
|
||||
elif conf.qpid_topology_version == 2:
|
||||
addr_opts = {
|
||||
"link": {
|
||||
"x-declare": {
|
||||
"auto-delete": True,
|
||||
"exclusive": False,
|
||||
},
|
||||
},
|
||||
}
|
||||
else:
|
||||
raise_invalid_topology_version()
|
||||
|
||||
addr_opts["link"]["x-declare"].update(link_opts)
|
||||
if link_name:
|
||||
addr_opts["link"]["name"] = link_name
|
||||
|
||||
self.address = "%s ; %s" % (node_name, jsonutils.dumps(addr_opts))
|
||||
|
||||
self.connect(session)
|
||||
|
||||
def connect(self, session):
|
||||
"""Declare the reciever on connect."""
|
||||
self._declare_receiver(session)
|
||||
|
||||
def reconnect(self, session):
|
||||
"""Re-declare the receiver after a qpid reconnect."""
|
||||
self._declare_receiver(session)
|
||||
|
||||
def _declare_receiver(self, session):
|
||||
self.session = session
|
||||
self.receiver = session.receiver(self.address)
|
||||
self.receiver.capacity = 1
|
||||
|
||||
def _unpack_json_msg(self, msg):
|
||||
"""Load the JSON data in msg if msg.content_type indicates that it
|
||||
is necessary. Put the loaded data back into msg.content and
|
||||
update msg.content_type appropriately.
|
||||
|
||||
A Qpid Message containing a dict will have a content_type of
|
||||
'amqp/map', whereas one containing a string that needs to be converted
|
||||
back from JSON will have a content_type of JSON_CONTENT_TYPE.
|
||||
|
||||
:param msg: a Qpid Message object
|
||||
:returns: None
|
||||
"""
|
||||
if msg.content_type == JSON_CONTENT_TYPE:
|
||||
msg.content = jsonutils.loads(msg.content)
|
||||
msg.content_type = 'amqp/map'
|
||||
|
||||
def consume(self):
|
||||
"""Fetch the message and pass it to the callback object."""
|
||||
message = self.receiver.fetch()
|
||||
try:
|
||||
self._unpack_json_msg(message)
|
||||
msg = rpc_common.deserialize_msg(message.content)
|
||||
self.callback(msg)
|
||||
except Exception:
|
||||
LOG.exception(_("Failed to process message... skipping it."))
|
||||
finally:
|
||||
# TODO(sandy): Need support for optional ack_on_error.
|
||||
self.session.acknowledge(message)
|
||||
|
||||
def get_receiver(self):
|
||||
return self.receiver
|
||||
|
||||
def get_node_name(self):
|
||||
return self.address.split(';')[0]
|
||||
|
||||
|
||||
class DirectConsumer(ConsumerBase):
|
||||
"""Queue/consumer class for 'direct'."""
|
||||
|
||||
def __init__(self, conf, session, msg_id, callback):
|
||||
"""Init a 'direct' queue.
|
||||
|
||||
'session' is the amqp session to use
|
||||
'msg_id' is the msg_id to listen on
|
||||
'callback' is the callback to call when messages are received
|
||||
"""
|
||||
|
||||
link_opts = {
|
||||
"auto-delete": conf.amqp_auto_delete,
|
||||
"exclusive": True,
|
||||
"durable": conf.amqp_durable_queues,
|
||||
}
|
||||
|
||||
if conf.qpid_topology_version == 1:
|
||||
node_name = "%s/%s" % (msg_id, msg_id)
|
||||
node_opts = {"type": "direct"}
|
||||
link_name = msg_id
|
||||
elif conf.qpid_topology_version == 2:
|
||||
node_name = "amq.direct/%s" % msg_id
|
||||
node_opts = {}
|
||||
link_name = None
|
||||
else:
|
||||
raise_invalid_topology_version()
|
||||
|
||||
super(DirectConsumer, self).__init__(conf, session, callback,
|
||||
node_name, node_opts, link_name,
|
||||
link_opts)
|
||||
|
||||
|
||||
class TopicConsumer(ConsumerBase):
|
||||
"""Consumer class for 'topic'."""
|
||||
|
||||
def __init__(self, conf, session, topic, callback, name=None,
|
||||
exchange_name=None):
|
||||
"""Init a 'topic' queue.
|
||||
|
||||
:param session: the amqp session to use
|
||||
:param topic: is the topic to listen on
|
||||
:paramtype topic: str
|
||||
:param callback: the callback to call when messages are received
|
||||
:param name: optional queue name, defaults to topic
|
||||
"""
|
||||
|
||||
exchange_name = exchange_name or rpc_amqp.get_control_exchange(conf)
|
||||
link_opts = {
|
||||
"auto-delete": conf.amqp_auto_delete,
|
||||
"durable": conf.amqp_durable_queues,
|
||||
}
|
||||
|
||||
if conf.qpid_topology_version == 1:
|
||||
node_name = "%s/%s" % (exchange_name, topic)
|
||||
elif conf.qpid_topology_version == 2:
|
||||
node_name = "amq.topic/topic/%s/%s" % (exchange_name, topic)
|
||||
else:
|
||||
raise_invalid_topology_version()
|
||||
|
||||
super(TopicConsumer, self).__init__(conf, session, callback, node_name,
|
||||
{}, name or topic, link_opts)
|
||||
|
||||
|
||||
class FanoutConsumer(ConsumerBase):
|
||||
"""Consumer class for 'fanout'."""
|
||||
|
||||
def __init__(self, conf, session, topic, callback):
|
||||
"""Init a 'fanout' queue.
|
||||
|
||||
'session' is the amqp session to use
|
||||
'topic' is the topic to listen on
|
||||
'callback' is the callback to call when messages are received
|
||||
"""
|
||||
self.conf = conf
|
||||
|
||||
link_opts = {"exclusive": True}
|
||||
|
||||
if conf.qpid_topology_version == 1:
|
||||
node_name = "%s_fanout" % topic
|
||||
node_opts = {"durable": False, "type": "fanout"}
|
||||
elif conf.qpid_topology_version == 2:
|
||||
node_name = "amq.topic/fanout/%s" % topic
|
||||
node_opts = {}
|
||||
else:
|
||||
raise_invalid_topology_version()
|
||||
|
||||
super(FanoutConsumer, self).__init__(conf, session, callback,
|
||||
node_name, node_opts, None,
|
||||
link_opts)
|
||||
|
||||
|
||||
class Publisher(object):
|
||||
"""Base Publisher class."""
|
||||
|
||||
def __init__(self, conf, session, node_name, node_opts=None):
|
||||
"""Init the Publisher class with the exchange_name, routing_key,
|
||||
and other options
|
||||
"""
|
||||
self.sender = None
|
||||
self.session = session
|
||||
|
||||
if conf.qpid_topology_version == 1:
|
||||
addr_opts = {
|
||||
"create": "always",
|
||||
"node": {
|
||||
"type": "topic",
|
||||
"x-declare": {
|
||||
"durable": False,
|
||||
# auto-delete isn't implemented for exchanges in qpid,
|
||||
# but put in here anyway
|
||||
"auto-delete": True,
|
||||
},
|
||||
},
|
||||
}
|
||||
if node_opts:
|
||||
addr_opts["node"]["x-declare"].update(node_opts)
|
||||
|
||||
self.address = "%s ; %s" % (node_name, jsonutils.dumps(addr_opts))
|
||||
elif conf.qpid_topology_version == 2:
|
||||
self.address = node_name
|
||||
else:
|
||||
raise_invalid_topology_version()
|
||||
|
||||
self.reconnect(session)
|
||||
|
||||
def reconnect(self, session):
|
||||
"""Re-establish the Sender after a reconnection."""
|
||||
self.sender = session.sender(self.address)
|
||||
|
||||
def _pack_json_msg(self, msg):
|
||||
"""Qpid cannot serialize dicts containing strings longer than 65535
|
||||
characters. This function dumps the message content to a JSON
|
||||
string, which Qpid is able to handle.
|
||||
|
||||
:param msg: May be either a Qpid Message object or a bare dict.
|
||||
:returns: A Qpid Message with its content field JSON encoded.
|
||||
"""
|
||||
try:
|
||||
msg.content = jsonutils.dumps(msg.content)
|
||||
except AttributeError:
|
||||
# Need to have a Qpid message so we can set the content_type.
|
||||
msg = qpid_messaging.Message(jsonutils.dumps(msg))
|
||||
msg.content_type = JSON_CONTENT_TYPE
|
||||
return msg
|
||||
|
||||
def send(self, msg):
|
||||
"""Send a message."""
|
||||
try:
|
||||
# Check if Qpid can encode the message
|
||||
check_msg = msg
|
||||
if not hasattr(check_msg, 'content_type'):
|
||||
check_msg = qpid_messaging.Message(msg)
|
||||
content_type = check_msg.content_type
|
||||
enc, dec = qpid_messaging.message.get_codec(content_type)
|
||||
enc(check_msg.content)
|
||||
except qpid_codec.CodecException:
|
||||
# This means the message couldn't be serialized as a dict.
|
||||
msg = self._pack_json_msg(msg)
|
||||
self.sender.send(msg)
|
||||
|
||||
|
||||
class DirectPublisher(Publisher):
|
||||
"""Publisher class for 'direct'."""
|
||||
def __init__(self, conf, session, msg_id):
|
||||
"""Init a 'direct' publisher."""
|
||||
|
||||
if conf.qpid_topology_version == 1:
|
||||
node_name = msg_id
|
||||
node_opts = {"type": "direct"}
|
||||
elif conf.qpid_topology_version == 2:
|
||||
node_name = "amq.direct/%s" % msg_id
|
||||
node_opts = {}
|
||||
else:
|
||||
raise_invalid_topology_version()
|
||||
|
||||
super(DirectPublisher, self).__init__(conf, session, node_name,
|
||||
node_opts)
|
||||
|
||||
|
||||
class TopicPublisher(Publisher):
|
||||
"""Publisher class for 'topic'."""
|
||||
def __init__(self, conf, session, topic):
|
||||
"""init a 'topic' publisher.
|
||||
"""
|
||||
exchange_name = rpc_amqp.get_control_exchange(conf)
|
||||
|
||||
if conf.qpid_topology_version == 1:
|
||||
node_name = "%s/%s" % (exchange_name, topic)
|
||||
elif conf.qpid_topology_version == 2:
|
||||
node_name = "amq.topic/topic/%s/%s" % (exchange_name, topic)
|
||||
else:
|
||||
raise_invalid_topology_version()
|
||||
|
||||
super(TopicPublisher, self).__init__(conf, session, node_name)
|
||||
|
||||
|
||||
class FanoutPublisher(Publisher):
|
||||
"""Publisher class for 'fanout'."""
|
||||
def __init__(self, conf, session, topic):
|
||||
"""init a 'fanout' publisher.
|
||||
"""
|
||||
|
||||
if conf.qpid_topology_version == 1:
|
||||
node_name = "%s_fanout" % topic
|
||||
node_opts = {"type": "fanout"}
|
||||
elif conf.qpid_topology_version == 2:
|
||||
node_name = "amq.topic/fanout/%s" % topic
|
||||
node_opts = {}
|
||||
else:
|
||||
raise_invalid_topology_version()
|
||||
|
||||
super(FanoutPublisher, self).__init__(conf, session, node_name,
|
||||
node_opts)
|
||||
|
||||
|
||||
class NotifyPublisher(Publisher):
|
||||
"""Publisher class for notifications."""
|
||||
def __init__(self, conf, session, topic):
|
||||
"""init a 'topic' publisher.
|
||||
"""
|
||||
exchange_name = rpc_amqp.get_control_exchange(conf)
|
||||
node_opts = {"durable": True}
|
||||
|
||||
if conf.qpid_topology_version == 1:
|
||||
node_name = "%s/%s" % (exchange_name, topic)
|
||||
elif conf.qpid_topology_version == 2:
|
||||
node_name = "amq.topic/topic/%s/%s" % (exchange_name, topic)
|
||||
else:
|
||||
raise_invalid_topology_version()
|
||||
|
||||
super(NotifyPublisher, self).__init__(conf, session, node_name,
|
||||
node_opts)
|
||||
|
||||
|
||||
class Connection(object):
|
||||
"""Connection object."""
|
||||
|
||||
pool = None
|
||||
|
||||
def __init__(self, conf, server_params=None):
|
||||
if not qpid_messaging:
|
||||
raise ImportError("Failed to import qpid.messaging")
|
||||
|
||||
self.session = None
|
||||
self.consumers = {}
|
||||
self.consumer_thread = None
|
||||
self.proxy_callbacks = []
|
||||
self.conf = conf
|
||||
|
||||
if server_params and 'hostname' in server_params:
|
||||
# NOTE(russellb) This enables support for cast_to_server.
|
||||
server_params['qpid_hosts'] = [
|
||||
'%s:%d' % (server_params['hostname'],
|
||||
server_params.get('port', 5672))
|
||||
]
|
||||
|
||||
params = {
|
||||
'qpid_hosts': self.conf.qpid_hosts,
|
||||
'username': self.conf.qpid_username,
|
||||
'password': self.conf.qpid_password,
|
||||
}
|
||||
params.update(server_params or {})
|
||||
|
||||
self.brokers = params['qpid_hosts']
|
||||
self.username = params['username']
|
||||
self.password = params['password']
|
||||
self.connection_create(self.brokers[0])
|
||||
self.reconnect()
|
||||
|
||||
def connection_create(self, broker):
|
||||
# Create the connection - this does not open the connection
|
||||
self.connection = qpid_messaging.Connection(broker)
|
||||
|
||||
# Check if flags are set and if so set them for the connection
|
||||
# before we call open
|
||||
self.connection.username = self.username
|
||||
self.connection.password = self.password
|
||||
|
||||
self.connection.sasl_mechanisms = self.conf.qpid_sasl_mechanisms
|
||||
# Reconnection is done by self.reconnect()
|
||||
self.connection.reconnect = False
|
||||
self.connection.heartbeat = self.conf.qpid_heartbeat
|
||||
self.connection.transport = self.conf.qpid_protocol
|
||||
self.connection.tcp_nodelay = self.conf.qpid_tcp_nodelay
|
||||
|
||||
def _register_consumer(self, consumer):
|
||||
self.consumers[str(consumer.get_receiver())] = consumer
|
||||
|
||||
def _lookup_consumer(self, receiver):
|
||||
return self.consumers[str(receiver)]
|
||||
|
||||
def reconnect(self):
|
||||
"""Handles reconnecting and re-establishing sessions and queues."""
|
||||
attempt = 0
|
||||
delay = 1
|
||||
while True:
|
||||
# Close the session if necessary
|
||||
if self.connection.opened():
|
||||
try:
|
||||
self.connection.close()
|
||||
except qpid_exceptions.ConnectionError:
|
||||
pass
|
||||
|
||||
broker = self.brokers[attempt % len(self.brokers)]
|
||||
attempt += 1
|
||||
|
||||
try:
|
||||
self.connection_create(broker)
|
||||
self.connection.open()
|
||||
except qpid_exceptions.ConnectionError as e:
|
||||
msg_dict = dict(e=e, delay=delay)
|
||||
msg = _("Unable to connect to AMQP server: %(e)s. "
|
||||
"Sleeping %(delay)s seconds") % msg_dict
|
||||
LOG.error(msg)
|
||||
time.sleep(delay)
|
||||
delay = min(2 * delay, 60)
|
||||
else:
|
||||
LOG.info(_('Connected to AMQP server on %s'), broker)
|
||||
break
|
||||
|
||||
self.session = self.connection.session()
|
||||
|
||||
if self.consumers:
|
||||
consumers = self.consumers
|
||||
self.consumers = {}
|
||||
|
||||
for consumer in consumers.itervalues():
|
||||
consumer.reconnect(self.session)
|
||||
self._register_consumer(consumer)
|
||||
|
||||
LOG.debug(_("Re-established AMQP queues"))
|
||||
|
||||
def ensure(self, error_callback, method, *args, **kwargs):
|
||||
while True:
|
||||
try:
|
||||
return method(*args, **kwargs)
|
||||
except (qpid_exceptions.Empty,
|
||||
qpid_exceptions.ConnectionError) as e:
|
||||
if error_callback:
|
||||
error_callback(e)
|
||||
self.reconnect()
|
||||
|
||||
def close(self):
|
||||
"""Close/release this connection."""
|
||||
self.cancel_consumer_thread()
|
||||
self.wait_on_proxy_callbacks()
|
||||
try:
|
||||
self.connection.close()
|
||||
except Exception:
|
||||
# NOTE(dripton) Logging exceptions that happen during cleanup just
|
||||
# causes confusion; there's really nothing useful we can do with
|
||||
# them.
|
||||
pass
|
||||
self.connection = None
|
||||
|
||||
def reset(self):
|
||||
"""Reset a connection so it can be used again."""
|
||||
self.cancel_consumer_thread()
|
||||
self.wait_on_proxy_callbacks()
|
||||
self.session.close()
|
||||
self.session = self.connection.session()
|
||||
self.consumers = {}
|
||||
|
||||
def declare_consumer(self, consumer_cls, topic, callback):
|
||||
"""Create a Consumer using the class that was passed in and
|
||||
add it to our list of consumers
|
||||
"""
|
||||
def _connect_error(exc):
|
||||
log_info = {'topic': topic, 'err_str': str(exc)}
|
||||
LOG.error(_("Failed to declare consumer for topic '%(topic)s': "
|
||||
"%(err_str)s") % log_info)
|
||||
|
||||
def _declare_consumer():
|
||||
consumer = consumer_cls(self.conf, self.session, topic, callback)
|
||||
self._register_consumer(consumer)
|
||||
return consumer
|
||||
|
||||
return self.ensure(_connect_error, _declare_consumer)
|
||||
|
||||
def iterconsume(self, limit=None, timeout=None):
|
||||
"""Return an iterator that will consume from all queues/consumers."""
|
||||
|
||||
def _error_callback(exc):
|
||||
if isinstance(exc, qpid_exceptions.Empty):
|
||||
LOG.debug(_('Timed out waiting for RPC response: %s') %
|
||||
str(exc))
|
||||
raise rpc_common.Timeout()
|
||||
else:
|
||||
LOG.exception(_('Failed to consume message from queue: %s') %
|
||||
str(exc))
|
||||
|
||||
def _consume():
|
||||
nxt_receiver = self.session.next_receiver(timeout=timeout)
|
||||
try:
|
||||
self._lookup_consumer(nxt_receiver).consume()
|
||||
except Exception:
|
||||
LOG.exception(_("Error processing message. Skipping it."))
|
||||
|
||||
for iteration in itertools.count(0):
|
||||
if limit and iteration >= limit:
|
||||
raise StopIteration
|
||||
yield self.ensure(_error_callback, _consume)
|
||||
|
||||
def cancel_consumer_thread(self):
|
||||
"""Cancel a consumer thread."""
|
||||
if self.consumer_thread is not None:
|
||||
self.consumer_thread.kill()
|
||||
try:
|
||||
self.consumer_thread.wait()
|
||||
except greenlet.GreenletExit:
|
||||
pass
|
||||
self.consumer_thread = None
|
||||
|
||||
def wait_on_proxy_callbacks(self):
|
||||
"""Wait for all proxy callback threads to exit."""
|
||||
for proxy_cb in self.proxy_callbacks:
|
||||
proxy_cb.wait()
|
||||
|
||||
def publisher_send(self, cls, topic, msg):
|
||||
"""Send to a publisher based on the publisher class."""
|
||||
|
||||
def _connect_error(exc):
|
||||
log_info = {'topic': topic, 'err_str': str(exc)}
|
||||
LOG.exception(_("Failed to publish message to topic "
|
||||
"'%(topic)s': %(err_str)s") % log_info)
|
||||
|
||||
def _publisher_send():
|
||||
publisher = cls(self.conf, self.session, topic)
|
||||
publisher.send(msg)
|
||||
|
||||
return self.ensure(_connect_error, _publisher_send)
|
||||
|
||||
def declare_direct_consumer(self, topic, callback):
|
||||
"""Create a 'direct' queue.
|
||||
In nova's use, this is generally a msg_id queue used for
|
||||
responses for call/multicall
|
||||
"""
|
||||
self.declare_consumer(DirectConsumer, topic, callback)
|
||||
|
||||
def declare_topic_consumer(self, topic, callback=None, queue_name=None,
|
||||
exchange_name=None):
|
||||
"""Create a 'topic' consumer."""
|
||||
self.declare_consumer(functools.partial(TopicConsumer,
|
||||
name=queue_name,
|
||||
exchange_name=exchange_name,
|
||||
),
|
||||
topic, callback)
|
||||
|
||||
def declare_fanout_consumer(self, topic, callback):
|
||||
"""Create a 'fanout' consumer."""
|
||||
self.declare_consumer(FanoutConsumer, topic, callback)
|
||||
|
||||
def direct_send(self, msg_id, msg):
|
||||
"""Send a 'direct' message."""
|
||||
self.publisher_send(DirectPublisher, msg_id, msg)
|
||||
|
||||
def topic_send(self, topic, msg, timeout=None):
|
||||
"""Send a 'topic' message."""
|
||||
#
|
||||
# We want to create a message with attributes, e.g. a TTL. We
|
||||
# don't really need to keep 'msg' in its JSON format any longer
|
||||
# so let's create an actual qpid message here and get some
|
||||
# value-add on the go.
|
||||
#
|
||||
# WARNING: Request timeout happens to be in the same units as
|
||||
# qpid's TTL (seconds). If this changes in the future, then this
|
||||
# will need to be altered accordingly.
|
||||
#
|
||||
qpid_message = qpid_messaging.Message(content=msg, ttl=timeout)
|
||||
self.publisher_send(TopicPublisher, topic, qpid_message)
|
||||
|
||||
def fanout_send(self, topic, msg):
|
||||
"""Send a 'fanout' message."""
|
||||
self.publisher_send(FanoutPublisher, topic, msg)
|
||||
|
||||
def notify_send(self, topic, msg, **kwargs):
|
||||
"""Send a notify message on a topic."""
|
||||
self.publisher_send(NotifyPublisher, topic, msg)
|
||||
|
||||
def consume(self, limit=None):
|
||||
"""Consume from all queues/consumers."""
|
||||
it = self.iterconsume(limit=limit)
|
||||
while True:
|
||||
try:
|
||||
it.next()
|
||||
except StopIteration:
|
||||
return
|
||||
|
||||
def consume_in_thread(self):
|
||||
"""Consumer from all queues/consumers in a greenthread."""
|
||||
@excutils.forever_retry_uncaught_exceptions
|
||||
def _consumer_thread():
|
||||
try:
|
||||
self.consume()
|
||||
except greenlet.GreenletExit:
|
||||
return
|
||||
if self.consumer_thread is None:
|
||||
self.consumer_thread = eventlet.spawn(_consumer_thread)
|
||||
return self.consumer_thread
|
||||
|
||||
def create_consumer(self, topic, proxy, fanout=False):
|
||||
"""Create a consumer that calls a method in a proxy object."""
|
||||
proxy_cb = rpc_amqp.ProxyCallback(
|
||||
self.conf, proxy,
|
||||
rpc_amqp.get_connection_pool(self.conf, Connection))
|
||||
self.proxy_callbacks.append(proxy_cb)
|
||||
|
||||
if fanout:
|
||||
consumer = FanoutConsumer(self.conf, self.session, topic, proxy_cb)
|
||||
else:
|
||||
consumer = TopicConsumer(self.conf, self.session, topic, proxy_cb)
|
||||
|
||||
self._register_consumer(consumer)
|
||||
|
||||
return consumer
|
||||
|
||||
def create_worker(self, topic, proxy, pool_name):
|
||||
"""Create a worker that calls a method in a proxy object."""
|
||||
proxy_cb = rpc_amqp.ProxyCallback(
|
||||
self.conf, proxy,
|
||||
rpc_amqp.get_connection_pool(self.conf, Connection))
|
||||
self.proxy_callbacks.append(proxy_cb)
|
||||
|
||||
consumer = TopicConsumer(self.conf, self.session, topic, proxy_cb,
|
||||
name=pool_name)
|
||||
|
||||
self._register_consumer(consumer)
|
||||
|
||||
return consumer
|
||||
|
||||
def join_consumer_pool(self, callback, pool_name, topic,
|
||||
exchange_name=None, ack_on_error=True):
|
||||
"""Register as a member of a group of consumers for a given topic from
|
||||
the specified exchange.
|
||||
|
||||
Exactly one member of a given pool will receive each message.
|
||||
|
||||
A message will be delivered to multiple pools, if more than
|
||||
one is created.
|
||||
"""
|
||||
callback_wrapper = rpc_amqp.CallbackWrapper(
|
||||
conf=self.conf,
|
||||
callback=callback,
|
||||
connection_pool=rpc_amqp.get_connection_pool(self.conf,
|
||||
Connection),
|
||||
wait_for_consumers=not ack_on_error
|
||||
)
|
||||
self.proxy_callbacks.append(callback_wrapper)
|
||||
|
||||
consumer = TopicConsumer(conf=self.conf,
|
||||
session=self.session,
|
||||
topic=topic,
|
||||
callback=callback_wrapper,
|
||||
name=pool_name,
|
||||
exchange_name=exchange_name)
|
||||
|
||||
self._register_consumer(consumer)
|
||||
return consumer
|
||||
|
||||
|
||||
def create_connection(conf, new=True):
|
||||
"""Create a connection."""
|
||||
return rpc_amqp.create_connection(
|
||||
conf, new,
|
||||
rpc_amqp.get_connection_pool(conf, Connection))
|
||||
|
||||
|
||||
def multicall(conf, context, topic, msg, timeout=None):
|
||||
"""Make a call that returns multiple times."""
|
||||
return rpc_amqp.multicall(
|
||||
conf, context, topic, msg, timeout,
|
||||
rpc_amqp.get_connection_pool(conf, Connection))
|
||||
|
||||
|
||||
def call(conf, context, topic, msg, timeout=None):
|
||||
"""Sends a message on a topic and wait for a response."""
|
||||
return rpc_amqp.call(
|
||||
conf, context, topic, msg, timeout,
|
||||
rpc_amqp.get_connection_pool(conf, Connection))
|
||||
|
||||
|
||||
def cast(conf, context, topic, msg):
|
||||
"""Sends a message on a topic without waiting for a response."""
|
||||
return rpc_amqp.cast(
|
||||
conf, context, topic, msg,
|
||||
rpc_amqp.get_connection_pool(conf, Connection))
|
||||
|
||||
|
||||
def fanout_cast(conf, context, topic, msg):
|
||||
"""Sends a message on a fanout exchange without waiting for a response."""
|
||||
return rpc_amqp.fanout_cast(
|
||||
conf, context, topic, msg,
|
||||
rpc_amqp.get_connection_pool(conf, Connection))
|
||||
|
||||
|
||||
def cast_to_server(conf, context, server_params, topic, msg):
|
||||
"""Sends a message on a topic to a specific server."""
|
||||
return rpc_amqp.cast_to_server(
|
||||
conf, context, server_params, topic, msg,
|
||||
rpc_amqp.get_connection_pool(conf, Connection))
|
||||
|
||||
|
||||
def fanout_cast_to_server(conf, context, server_params, topic, msg):
|
||||
"""Sends a message on a fanout exchange to a specific server."""
|
||||
return rpc_amqp.fanout_cast_to_server(
|
||||
conf, context, server_params, topic, msg,
|
||||
rpc_amqp.get_connection_pool(conf, Connection))
|
||||
|
||||
|
||||
def notify(conf, context, topic, msg, envelope):
|
||||
"""Sends a notification event on a topic."""
|
||||
return rpc_amqp.notify(conf, context, topic, msg,
|
||||
rpc_amqp.get_connection_pool(conf, Connection),
|
||||
envelope)
|
||||
|
||||
|
||||
def cleanup():
|
||||
return rpc_amqp.cleanup(Connection.pool)
|
||||
@@ -1,818 +0,0 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2011 Cloudscaling Group, 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 os
|
||||
import pprint
|
||||
import re
|
||||
import socket
|
||||
import sys
|
||||
import types
|
||||
import uuid
|
||||
|
||||
import eventlet
|
||||
import greenlet
|
||||
from oslo.config import cfg
|
||||
|
||||
from nova.openstack.common import excutils
|
||||
from nova.openstack.common.gettextutils import _ # noqa
|
||||
from nova.openstack.common import importutils
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
|
||||
zmq = importutils.try_import('eventlet.green.zmq')
|
||||
|
||||
# for convenience, are not modified.
|
||||
pformat = pprint.pformat
|
||||
Timeout = eventlet.timeout.Timeout
|
||||
LOG = rpc_common.LOG
|
||||
RemoteError = rpc_common.RemoteError
|
||||
RPCException = rpc_common.RPCException
|
||||
|
||||
zmq_opts = [
|
||||
cfg.StrOpt('rpc_zmq_bind_address', default='*',
|
||||
help='ZeroMQ bind address. Should be a wildcard (*), '
|
||||
'an ethernet interface, or IP. '
|
||||
'The "host" option should point or resolve to this '
|
||||
'address.'),
|
||||
|
||||
# The module.Class to use for matchmaking.
|
||||
cfg.StrOpt(
|
||||
'rpc_zmq_matchmaker',
|
||||
default=('nova.openstack.common.rpc.'
|
||||
'matchmaker.MatchMakerLocalhost'),
|
||||
help='MatchMaker driver',
|
||||
),
|
||||
|
||||
# The following port is unassigned by IANA as of 2012-05-21
|
||||
cfg.IntOpt('rpc_zmq_port', default=9501,
|
||||
help='ZeroMQ receiver listening port'),
|
||||
|
||||
cfg.IntOpt('rpc_zmq_contexts', default=1,
|
||||
help='Number of ZeroMQ contexts, defaults to 1'),
|
||||
|
||||
cfg.IntOpt('rpc_zmq_topic_backlog', default=None,
|
||||
help='Maximum number of ingress messages to locally buffer '
|
||||
'per topic. Default is unlimited.'),
|
||||
|
||||
cfg.StrOpt('rpc_zmq_ipc_dir', default='/var/run/openstack',
|
||||
help='Directory for holding IPC sockets'),
|
||||
|
||||
cfg.StrOpt('rpc_zmq_host', default=socket.gethostname(),
|
||||
help='Name of this node. Must be a valid hostname, FQDN, or '
|
||||
'IP address. Must match "host" option, if running Nova.')
|
||||
]
|
||||
|
||||
|
||||
CONF = cfg.CONF
|
||||
CONF.register_opts(zmq_opts)
|
||||
|
||||
ZMQ_CTX = None # ZeroMQ Context, must be global.
|
||||
matchmaker = None # memoized matchmaker object
|
||||
|
||||
|
||||
def _serialize(data):
|
||||
"""Serialization wrapper.
|
||||
|
||||
We prefer using JSON, but it cannot encode all types.
|
||||
Error if a developer passes us bad data.
|
||||
"""
|
||||
try:
|
||||
return jsonutils.dumps(data, ensure_ascii=True)
|
||||
except TypeError:
|
||||
with excutils.save_and_reraise_exception():
|
||||
LOG.error(_("JSON serialization failed."))
|
||||
|
||||
|
||||
def _deserialize(data):
|
||||
"""Deserialization wrapper."""
|
||||
LOG.debug(_("Deserializing: %s"), data)
|
||||
return jsonutils.loads(data)
|
||||
|
||||
|
||||
class ZmqSocket(object):
|
||||
"""A tiny wrapper around ZeroMQ.
|
||||
|
||||
Simplifies the send/recv protocol and connection management.
|
||||
Can be used as a Context (supports the 'with' statement).
|
||||
"""
|
||||
|
||||
def __init__(self, addr, zmq_type, bind=True, subscribe=None):
|
||||
self.sock = _get_ctxt().socket(zmq_type)
|
||||
self.addr = addr
|
||||
self.type = zmq_type
|
||||
self.subscriptions = []
|
||||
|
||||
# Support failures on sending/receiving on wrong socket type.
|
||||
self.can_recv = zmq_type in (zmq.PULL, zmq.SUB)
|
||||
self.can_send = zmq_type in (zmq.PUSH, zmq.PUB)
|
||||
self.can_sub = zmq_type in (zmq.SUB, )
|
||||
|
||||
# Support list, str, & None for subscribe arg (cast to list)
|
||||
do_sub = {
|
||||
list: subscribe,
|
||||
str: [subscribe],
|
||||
type(None): []
|
||||
}[type(subscribe)]
|
||||
|
||||
for f in do_sub:
|
||||
self.subscribe(f)
|
||||
|
||||
str_data = {'addr': addr, 'type': self.socket_s(),
|
||||
'subscribe': subscribe, 'bind': bind}
|
||||
|
||||
LOG.debug(_("Connecting to %(addr)s with %(type)s"), str_data)
|
||||
LOG.debug(_("-> Subscribed to %(subscribe)s"), str_data)
|
||||
LOG.debug(_("-> bind: %(bind)s"), str_data)
|
||||
|
||||
try:
|
||||
if bind:
|
||||
self.sock.bind(addr)
|
||||
else:
|
||||
self.sock.connect(addr)
|
||||
except Exception:
|
||||
raise RPCException(_("Could not open socket."))
|
||||
|
||||
def socket_s(self):
|
||||
"""Get socket type as string."""
|
||||
t_enum = ('PUSH', 'PULL', 'PUB', 'SUB', 'REP', 'REQ', 'ROUTER',
|
||||
'DEALER')
|
||||
return dict(map(lambda t: (getattr(zmq, t), t), t_enum))[self.type]
|
||||
|
||||
def subscribe(self, msg_filter):
|
||||
"""Subscribe."""
|
||||
if not self.can_sub:
|
||||
raise RPCException("Cannot subscribe on this socket.")
|
||||
LOG.debug(_("Subscribing to %s"), msg_filter)
|
||||
|
||||
try:
|
||||
self.sock.setsockopt(zmq.SUBSCRIBE, msg_filter)
|
||||
except Exception:
|
||||
return
|
||||
|
||||
self.subscriptions.append(msg_filter)
|
||||
|
||||
def unsubscribe(self, msg_filter):
|
||||
"""Unsubscribe."""
|
||||
if msg_filter not in self.subscriptions:
|
||||
return
|
||||
self.sock.setsockopt(zmq.UNSUBSCRIBE, msg_filter)
|
||||
self.subscriptions.remove(msg_filter)
|
||||
|
||||
def close(self):
|
||||
if self.sock is None or self.sock.closed:
|
||||
return
|
||||
|
||||
# We must unsubscribe, or we'll leak descriptors.
|
||||
if self.subscriptions:
|
||||
for f in self.subscriptions:
|
||||
try:
|
||||
self.sock.setsockopt(zmq.UNSUBSCRIBE, f)
|
||||
except Exception:
|
||||
pass
|
||||
self.subscriptions = []
|
||||
|
||||
try:
|
||||
# Default is to linger
|
||||
self.sock.close()
|
||||
except Exception:
|
||||
# While this is a bad thing to happen,
|
||||
# it would be much worse if some of the code calling this
|
||||
# were to fail. For now, lets log, and later evaluate
|
||||
# if we can safely raise here.
|
||||
LOG.error("ZeroMQ socket could not be closed.")
|
||||
self.sock = None
|
||||
|
||||
def recv(self, **kwargs):
|
||||
if not self.can_recv:
|
||||
raise RPCException(_("You cannot recv on this socket."))
|
||||
return self.sock.recv_multipart(**kwargs)
|
||||
|
||||
def send(self, data, **kwargs):
|
||||
if not self.can_send:
|
||||
raise RPCException(_("You cannot send on this socket."))
|
||||
self.sock.send_multipart(data, **kwargs)
|
||||
|
||||
|
||||
class ZmqClient(object):
|
||||
"""Client for ZMQ sockets."""
|
||||
|
||||
def __init__(self, addr):
|
||||
self.outq = ZmqSocket(addr, zmq.PUSH, bind=False)
|
||||
|
||||
def cast(self, msg_id, topic, data, envelope):
|
||||
msg_id = msg_id or 0
|
||||
|
||||
if not envelope:
|
||||
self.outq.send(map(bytes,
|
||||
(msg_id, topic, 'cast', _serialize(data))))
|
||||
return
|
||||
|
||||
rpc_envelope = rpc_common.serialize_msg(data[1], envelope)
|
||||
zmq_msg = reduce(lambda x, y: x + y, rpc_envelope.items())
|
||||
self.outq.send(map(bytes,
|
||||
(msg_id, topic, 'impl_zmq_v2', data[0]) + zmq_msg))
|
||||
|
||||
def close(self):
|
||||
self.outq.close()
|
||||
|
||||
|
||||
class RpcContext(rpc_common.CommonRpcContext):
|
||||
"""Context that supports replying to a rpc.call."""
|
||||
def __init__(self, **kwargs):
|
||||
self.replies = []
|
||||
super(RpcContext, self).__init__(**kwargs)
|
||||
|
||||
def deepcopy(self):
|
||||
values = self.to_dict()
|
||||
values['replies'] = self.replies
|
||||
return self.__class__(**values)
|
||||
|
||||
def reply(self, reply=None, failure=None, ending=False):
|
||||
if ending:
|
||||
return
|
||||
self.replies.append(reply)
|
||||
|
||||
@classmethod
|
||||
def marshal(self, ctx):
|
||||
ctx_data = ctx.to_dict()
|
||||
return _serialize(ctx_data)
|
||||
|
||||
@classmethod
|
||||
def unmarshal(self, data):
|
||||
return RpcContext.from_dict(_deserialize(data))
|
||||
|
||||
|
||||
class InternalContext(object):
|
||||
"""Used by ConsumerBase as a private context for - methods."""
|
||||
|
||||
def __init__(self, proxy):
|
||||
self.proxy = proxy
|
||||
self.msg_waiter = None
|
||||
|
||||
def _get_response(self, ctx, proxy, topic, data):
|
||||
"""Process a curried message and cast the result to topic."""
|
||||
LOG.debug(_("Running func with context: %s"), ctx.to_dict())
|
||||
data.setdefault('version', None)
|
||||
data.setdefault('args', {})
|
||||
|
||||
try:
|
||||
result = proxy.dispatch(
|
||||
ctx, data['version'], data['method'],
|
||||
data.get('namespace'), **data['args'])
|
||||
return ConsumerBase.normalize_reply(result, ctx.replies)
|
||||
except greenlet.GreenletExit:
|
||||
# ignore these since they are just from shutdowns
|
||||
pass
|
||||
except rpc_common.ClientException as e:
|
||||
LOG.debug(_("Expected exception during message handling (%s)") %
|
||||
e._exc_info[1])
|
||||
return {'exc':
|
||||
rpc_common.serialize_remote_exception(e._exc_info,
|
||||
log_failure=False)}
|
||||
except Exception:
|
||||
LOG.error(_("Exception during message handling"))
|
||||
return {'exc':
|
||||
rpc_common.serialize_remote_exception(sys.exc_info())}
|
||||
|
||||
def reply(self, ctx, proxy,
|
||||
msg_id=None, context=None, topic=None, msg=None):
|
||||
"""Reply to a casted call."""
|
||||
# NOTE(ewindisch): context kwarg exists for Grizzly compat.
|
||||
# this may be able to be removed earlier than
|
||||
# 'I' if ConsumerBase.process were refactored.
|
||||
if type(msg) is list:
|
||||
payload = msg[-1]
|
||||
else:
|
||||
payload = msg
|
||||
|
||||
response = ConsumerBase.normalize_reply(
|
||||
self._get_response(ctx, proxy, topic, payload),
|
||||
ctx.replies)
|
||||
|
||||
LOG.debug(_("Sending reply"))
|
||||
_multi_send(_cast, ctx, topic, {
|
||||
'method': '-process_reply',
|
||||
'args': {
|
||||
'msg_id': msg_id, # Include for Folsom compat.
|
||||
'response': response
|
||||
}
|
||||
}, _msg_id=msg_id)
|
||||
|
||||
|
||||
class ConsumerBase(object):
|
||||
"""Base Consumer."""
|
||||
|
||||
def __init__(self):
|
||||
self.private_ctx = InternalContext(None)
|
||||
|
||||
@classmethod
|
||||
def normalize_reply(self, result, replies):
|
||||
#TODO(ewindisch): re-evaluate and document this method.
|
||||
if isinstance(result, types.GeneratorType):
|
||||
return list(result)
|
||||
elif replies:
|
||||
return replies
|
||||
else:
|
||||
return [result]
|
||||
|
||||
def process(self, proxy, ctx, data):
|
||||
data.setdefault('version', None)
|
||||
data.setdefault('args', {})
|
||||
|
||||
# Method starting with - are
|
||||
# processed internally. (non-valid method name)
|
||||
method = data.get('method')
|
||||
if not method:
|
||||
LOG.error(_("RPC message did not include method."))
|
||||
return
|
||||
|
||||
# Internal method
|
||||
# uses internal context for safety.
|
||||
if method == '-reply':
|
||||
self.private_ctx.reply(ctx, proxy, **data['args'])
|
||||
return
|
||||
|
||||
proxy.dispatch(ctx, data['version'],
|
||||
data['method'], data.get('namespace'), **data['args'])
|
||||
|
||||
|
||||
class ZmqBaseReactor(ConsumerBase):
|
||||
"""A consumer class implementing a centralized casting broker (PULL-PUSH).
|
||||
|
||||
Used for RoundRobin requests.
|
||||
"""
|
||||
|
||||
def __init__(self, conf):
|
||||
super(ZmqBaseReactor, self).__init__()
|
||||
|
||||
self.proxies = {}
|
||||
self.threads = []
|
||||
self.sockets = []
|
||||
self.subscribe = {}
|
||||
|
||||
self.pool = eventlet.greenpool.GreenPool(conf.rpc_thread_pool_size)
|
||||
|
||||
def register(self, proxy, in_addr, zmq_type_in,
|
||||
in_bind=True, subscribe=None):
|
||||
|
||||
LOG.info(_("Registering reactor"))
|
||||
|
||||
if zmq_type_in not in (zmq.PULL, zmq.SUB):
|
||||
raise RPCException("Bad input socktype")
|
||||
|
||||
# Items push in.
|
||||
inq = ZmqSocket(in_addr, zmq_type_in, bind=in_bind,
|
||||
subscribe=subscribe)
|
||||
|
||||
self.proxies[inq] = proxy
|
||||
self.sockets.append(inq)
|
||||
|
||||
LOG.info(_("In reactor registered"))
|
||||
|
||||
def consume_in_thread(self):
|
||||
@excutils.forever_retry_uncaught_exceptions
|
||||
def _consume(sock):
|
||||
LOG.info(_("Consuming socket"))
|
||||
while True:
|
||||
self.consume(sock)
|
||||
|
||||
for k in self.proxies.keys():
|
||||
self.threads.append(
|
||||
self.pool.spawn(_consume, k)
|
||||
)
|
||||
|
||||
def wait(self):
|
||||
for t in self.threads:
|
||||
t.wait()
|
||||
|
||||
def close(self):
|
||||
for s in self.sockets:
|
||||
s.close()
|
||||
|
||||
for t in self.threads:
|
||||
t.kill()
|
||||
|
||||
|
||||
class ZmqProxy(ZmqBaseReactor):
|
||||
"""A consumer class implementing a topic-based proxy.
|
||||
|
||||
Forwards to IPC sockets.
|
||||
"""
|
||||
|
||||
def __init__(self, conf):
|
||||
super(ZmqProxy, self).__init__(conf)
|
||||
pathsep = set((os.path.sep or '', os.path.altsep or '', '/', '\\'))
|
||||
self.badchars = re.compile(r'[%s]' % re.escape(''.join(pathsep)))
|
||||
|
||||
self.topic_proxy = {}
|
||||
|
||||
def consume(self, sock):
|
||||
ipc_dir = CONF.rpc_zmq_ipc_dir
|
||||
|
||||
data = sock.recv(copy=False)
|
||||
topic = data[1].bytes
|
||||
|
||||
if topic.startswith('fanout~'):
|
||||
sock_type = zmq.PUB
|
||||
topic = topic.split('.', 1)[0]
|
||||
elif topic.startswith('zmq_replies'):
|
||||
sock_type = zmq.PUB
|
||||
else:
|
||||
sock_type = zmq.PUSH
|
||||
|
||||
if topic not in self.topic_proxy:
|
||||
def publisher(waiter):
|
||||
LOG.info(_("Creating proxy for topic: %s"), topic)
|
||||
|
||||
try:
|
||||
# The topic is received over the network,
|
||||
# don't trust this input.
|
||||
if self.badchars.search(topic) is not None:
|
||||
emsg = _("Topic contained dangerous characters.")
|
||||
LOG.warn(emsg)
|
||||
raise RPCException(emsg)
|
||||
|
||||
out_sock = ZmqSocket("ipc://%s/zmq_topic_%s" %
|
||||
(ipc_dir, topic),
|
||||
sock_type, bind=True)
|
||||
except RPCException:
|
||||
waiter.send_exception(*sys.exc_info())
|
||||
return
|
||||
|
||||
self.topic_proxy[topic] = eventlet.queue.LightQueue(
|
||||
CONF.rpc_zmq_topic_backlog)
|
||||
self.sockets.append(out_sock)
|
||||
|
||||
# It takes some time for a pub socket to open,
|
||||
# before we can have any faith in doing a send() to it.
|
||||
if sock_type == zmq.PUB:
|
||||
eventlet.sleep(.5)
|
||||
|
||||
waiter.send(True)
|
||||
|
||||
while(True):
|
||||
data = self.topic_proxy[topic].get()
|
||||
out_sock.send(data, copy=False)
|
||||
|
||||
wait_sock_creation = eventlet.event.Event()
|
||||
eventlet.spawn(publisher, wait_sock_creation)
|
||||
|
||||
try:
|
||||
wait_sock_creation.wait()
|
||||
except RPCException:
|
||||
LOG.error(_("Topic socket file creation failed."))
|
||||
return
|
||||
|
||||
try:
|
||||
self.topic_proxy[topic].put_nowait(data)
|
||||
except eventlet.queue.Full:
|
||||
LOG.error(_("Local per-topic backlog buffer full for topic "
|
||||
"%(topic)s. Dropping message.") % {'topic': topic})
|
||||
|
||||
def consume_in_thread(self):
|
||||
"""Runs the ZmqProxy service."""
|
||||
ipc_dir = CONF.rpc_zmq_ipc_dir
|
||||
consume_in = "tcp://%s:%s" % \
|
||||
(CONF.rpc_zmq_bind_address,
|
||||
CONF.rpc_zmq_port)
|
||||
consumption_proxy = InternalContext(None)
|
||||
|
||||
try:
|
||||
os.makedirs(ipc_dir)
|
||||
except os.error:
|
||||
if not os.path.isdir(ipc_dir):
|
||||
with excutils.save_and_reraise_exception():
|
||||
LOG.error(_("Required IPC directory does not exist at"
|
||||
" %s") % (ipc_dir, ))
|
||||
try:
|
||||
self.register(consumption_proxy,
|
||||
consume_in,
|
||||
zmq.PULL)
|
||||
except zmq.ZMQError:
|
||||
if os.access(ipc_dir, os.X_OK):
|
||||
with excutils.save_and_reraise_exception():
|
||||
LOG.error(_("Permission denied to IPC directory at"
|
||||
" %s") % (ipc_dir, ))
|
||||
with excutils.save_and_reraise_exception():
|
||||
LOG.error(_("Could not create ZeroMQ receiver daemon. "
|
||||
"Socket may already be in use."))
|
||||
|
||||
super(ZmqProxy, self).consume_in_thread()
|
||||
|
||||
|
||||
def unflatten_envelope(packenv):
|
||||
"""Unflattens the RPC envelope.
|
||||
|
||||
Takes a list and returns a dictionary.
|
||||
i.e. [1,2,3,4] => {1: 2, 3: 4}
|
||||
"""
|
||||
i = iter(packenv)
|
||||
h = {}
|
||||
try:
|
||||
while True:
|
||||
k = i.next()
|
||||
h[k] = i.next()
|
||||
except StopIteration:
|
||||
return h
|
||||
|
||||
|
||||
class ZmqReactor(ZmqBaseReactor):
|
||||
"""A consumer class implementing a consumer for messages.
|
||||
|
||||
Can also be used as a 1:1 proxy
|
||||
"""
|
||||
|
||||
def __init__(self, conf):
|
||||
super(ZmqReactor, self).__init__(conf)
|
||||
|
||||
def consume(self, sock):
|
||||
#TODO(ewindisch): use zero-copy (i.e. references, not copying)
|
||||
data = sock.recv()
|
||||
LOG.debug(_("CONSUMER RECEIVED DATA: %s"), data)
|
||||
|
||||
proxy = self.proxies[sock]
|
||||
|
||||
if data[2] == 'cast': # Legacy protocol
|
||||
packenv = data[3]
|
||||
|
||||
ctx, msg = _deserialize(packenv)
|
||||
request = rpc_common.deserialize_msg(msg)
|
||||
ctx = RpcContext.unmarshal(ctx)
|
||||
elif data[2] == 'impl_zmq_v2':
|
||||
packenv = data[4:]
|
||||
|
||||
msg = unflatten_envelope(packenv)
|
||||
request = rpc_common.deserialize_msg(msg)
|
||||
|
||||
# Unmarshal only after verifying the message.
|
||||
ctx = RpcContext.unmarshal(data[3])
|
||||
else:
|
||||
LOG.error(_("ZMQ Envelope version unsupported or unknown."))
|
||||
return
|
||||
|
||||
self.pool.spawn_n(self.process, proxy, ctx, request)
|
||||
|
||||
|
||||
class Connection(rpc_common.Connection):
|
||||
"""Manages connections and threads."""
|
||||
|
||||
def __init__(self, conf):
|
||||
self.topics = []
|
||||
self.reactor = ZmqReactor(conf)
|
||||
|
||||
def create_consumer(self, topic, proxy, fanout=False):
|
||||
# Register with matchmaker.
|
||||
_get_matchmaker().register(topic, CONF.rpc_zmq_host)
|
||||
|
||||
# Subscription scenarios
|
||||
if fanout:
|
||||
sock_type = zmq.SUB
|
||||
subscribe = ('', fanout)[type(fanout) == str]
|
||||
topic = 'fanout~' + topic.split('.', 1)[0]
|
||||
else:
|
||||
sock_type = zmq.PULL
|
||||
subscribe = None
|
||||
topic = '.'.join((topic.split('.', 1)[0], CONF.rpc_zmq_host))
|
||||
|
||||
if topic in self.topics:
|
||||
LOG.info(_("Skipping topic registration. Already registered."))
|
||||
return
|
||||
|
||||
# Receive messages from (local) proxy
|
||||
inaddr = "ipc://%s/zmq_topic_%s" % \
|
||||
(CONF.rpc_zmq_ipc_dir, topic)
|
||||
|
||||
LOG.debug(_("Consumer is a zmq.%s"),
|
||||
['PULL', 'SUB'][sock_type == zmq.SUB])
|
||||
|
||||
self.reactor.register(proxy, inaddr, sock_type,
|
||||
subscribe=subscribe, in_bind=False)
|
||||
self.topics.append(topic)
|
||||
|
||||
def close(self):
|
||||
_get_matchmaker().stop_heartbeat()
|
||||
for topic in self.topics:
|
||||
_get_matchmaker().unregister(topic, CONF.rpc_zmq_host)
|
||||
|
||||
self.reactor.close()
|
||||
self.topics = []
|
||||
|
||||
def wait(self):
|
||||
self.reactor.wait()
|
||||
|
||||
def consume_in_thread(self):
|
||||
_get_matchmaker().start_heartbeat()
|
||||
self.reactor.consume_in_thread()
|
||||
|
||||
|
||||
def _cast(addr, context, topic, msg, timeout=None, envelope=False,
|
||||
_msg_id=None):
|
||||
timeout_cast = timeout or CONF.rpc_cast_timeout
|
||||
payload = [RpcContext.marshal(context), msg]
|
||||
|
||||
with Timeout(timeout_cast, exception=rpc_common.Timeout):
|
||||
try:
|
||||
conn = ZmqClient(addr)
|
||||
|
||||
# assumes cast can't return an exception
|
||||
conn.cast(_msg_id, topic, payload, envelope)
|
||||
except zmq.ZMQError:
|
||||
raise RPCException("Cast failed. ZMQ Socket Exception")
|
||||
finally:
|
||||
if 'conn' in vars():
|
||||
conn.close()
|
||||
|
||||
|
||||
def _call(addr, context, topic, msg, timeout=None,
|
||||
envelope=False):
|
||||
# timeout_response is how long we wait for a response
|
||||
timeout = timeout or CONF.rpc_response_timeout
|
||||
|
||||
# The msg_id is used to track replies.
|
||||
msg_id = uuid.uuid4().hex
|
||||
|
||||
# Replies always come into the reply service.
|
||||
reply_topic = "zmq_replies.%s" % CONF.rpc_zmq_host
|
||||
|
||||
LOG.debug(_("Creating payload"))
|
||||
# Curry the original request into a reply method.
|
||||
mcontext = RpcContext.marshal(context)
|
||||
payload = {
|
||||
'method': '-reply',
|
||||
'args': {
|
||||
'msg_id': msg_id,
|
||||
'topic': reply_topic,
|
||||
# TODO(ewindisch): safe to remove mcontext in I.
|
||||
'msg': [mcontext, msg]
|
||||
}
|
||||
}
|
||||
|
||||
LOG.debug(_("Creating queue socket for reply waiter"))
|
||||
|
||||
# Messages arriving async.
|
||||
# TODO(ewindisch): have reply consumer with dynamic subscription mgmt
|
||||
with Timeout(timeout, exception=rpc_common.Timeout):
|
||||
try:
|
||||
msg_waiter = ZmqSocket(
|
||||
"ipc://%s/zmq_topic_zmq_replies.%s" %
|
||||
(CONF.rpc_zmq_ipc_dir,
|
||||
CONF.rpc_zmq_host),
|
||||
zmq.SUB, subscribe=msg_id, bind=False
|
||||
)
|
||||
|
||||
LOG.debug(_("Sending cast"))
|
||||
_cast(addr, context, topic, payload, envelope)
|
||||
|
||||
LOG.debug(_("Cast sent; Waiting reply"))
|
||||
# Blocks until receives reply
|
||||
msg = msg_waiter.recv()
|
||||
LOG.debug(_("Received message: %s"), msg)
|
||||
LOG.debug(_("Unpacking response"))
|
||||
|
||||
if msg[2] == 'cast': # Legacy version
|
||||
raw_msg = _deserialize(msg[-1])[-1]
|
||||
elif msg[2] == 'impl_zmq_v2':
|
||||
rpc_envelope = unflatten_envelope(msg[4:])
|
||||
raw_msg = rpc_common.deserialize_msg(rpc_envelope)
|
||||
else:
|
||||
raise rpc_common.UnsupportedRpcEnvelopeVersion(
|
||||
_("Unsupported or unknown ZMQ envelope returned."))
|
||||
|
||||
responses = raw_msg['args']['response']
|
||||
# ZMQError trumps the Timeout error.
|
||||
except zmq.ZMQError:
|
||||
raise RPCException("ZMQ Socket Error")
|
||||
except (IndexError, KeyError):
|
||||
raise RPCException(_("RPC Message Invalid."))
|
||||
finally:
|
||||
if 'msg_waiter' in vars():
|
||||
msg_waiter.close()
|
||||
|
||||
# It seems we don't need to do all of the following,
|
||||
# but perhaps it would be useful for multicall?
|
||||
# One effect of this is that we're checking all
|
||||
# responses for Exceptions.
|
||||
for resp in responses:
|
||||
if isinstance(resp, types.DictType) and 'exc' in resp:
|
||||
raise rpc_common.deserialize_remote_exception(CONF, resp['exc'])
|
||||
|
||||
return responses[-1]
|
||||
|
||||
|
||||
def _multi_send(method, context, topic, msg, timeout=None,
|
||||
envelope=False, _msg_id=None):
|
||||
"""Wraps the sending of messages.
|
||||
|
||||
Dispatches to the matchmaker and sends message to all relevant hosts.
|
||||
"""
|
||||
conf = CONF
|
||||
LOG.debug(_("%(msg)s") % {'msg': ' '.join(map(pformat, (topic, msg)))})
|
||||
|
||||
queues = _get_matchmaker().queues(topic)
|
||||
LOG.debug(_("Sending message(s) to: %s"), queues)
|
||||
|
||||
# Don't stack if we have no matchmaker results
|
||||
if not queues:
|
||||
LOG.warn(_("No matchmaker results. Not casting."))
|
||||
# While not strictly a timeout, callers know how to handle
|
||||
# this exception and a timeout isn't too big a lie.
|
||||
raise rpc_common.Timeout(_("No match from matchmaker."))
|
||||
|
||||
# This supports brokerless fanout (addresses > 1)
|
||||
for queue in queues:
|
||||
(_topic, ip_addr) = queue
|
||||
_addr = "tcp://%s:%s" % (ip_addr, conf.rpc_zmq_port)
|
||||
|
||||
if method.__name__ == '_cast':
|
||||
eventlet.spawn_n(method, _addr, context,
|
||||
_topic, msg, timeout, envelope,
|
||||
_msg_id)
|
||||
return
|
||||
return method(_addr, context, _topic, msg, timeout,
|
||||
envelope)
|
||||
|
||||
|
||||
def create_connection(conf, new=True):
|
||||
return Connection(conf)
|
||||
|
||||
|
||||
def multicall(conf, *args, **kwargs):
|
||||
"""Multiple calls."""
|
||||
return _multi_send(_call, *args, **kwargs)
|
||||
|
||||
|
||||
def call(conf, *args, **kwargs):
|
||||
"""Send a message, expect a response."""
|
||||
data = _multi_send(_call, *args, **kwargs)
|
||||
return data[-1]
|
||||
|
||||
|
||||
def cast(conf, *args, **kwargs):
|
||||
"""Send a message expecting no reply."""
|
||||
_multi_send(_cast, *args, **kwargs)
|
||||
|
||||
|
||||
def fanout_cast(conf, context, topic, msg, **kwargs):
|
||||
"""Send a message to all listening and expect no reply."""
|
||||
# NOTE(ewindisch): fanout~ is used because it avoid splitting on .
|
||||
# and acts as a non-subtle hint to the matchmaker and ZmqProxy.
|
||||
_multi_send(_cast, context, 'fanout~' + str(topic), msg, **kwargs)
|
||||
|
||||
|
||||
def notify(conf, context, topic, msg, envelope):
|
||||
"""Send notification event.
|
||||
|
||||
Notifications are sent to topic-priority.
|
||||
This differs from the AMQP drivers which send to topic.priority.
|
||||
"""
|
||||
# NOTE(ewindisch): dot-priority in rpc notifier does not
|
||||
# work with our assumptions.
|
||||
topic = topic.replace('.', '-')
|
||||
cast(conf, context, topic, msg, envelope=envelope)
|
||||
|
||||
|
||||
def cleanup():
|
||||
"""Clean up resources in use by implementation."""
|
||||
global ZMQ_CTX
|
||||
if ZMQ_CTX:
|
||||
ZMQ_CTX.term()
|
||||
ZMQ_CTX = None
|
||||
|
||||
global matchmaker
|
||||
matchmaker = None
|
||||
|
||||
|
||||
def _get_ctxt():
|
||||
if not zmq:
|
||||
raise ImportError("Failed to import eventlet.green.zmq")
|
||||
|
||||
global ZMQ_CTX
|
||||
if not ZMQ_CTX:
|
||||
ZMQ_CTX = zmq.Context(CONF.rpc_zmq_contexts)
|
||||
return ZMQ_CTX
|
||||
|
||||
|
||||
def _get_matchmaker(*args, **kwargs):
|
||||
global matchmaker
|
||||
if not matchmaker:
|
||||
mm = CONF.rpc_zmq_matchmaker
|
||||
if mm.endswith('matchmaker.MatchMakerRing'):
|
||||
mm.replace('matchmaker', 'matchmaker_ring')
|
||||
LOG.warn(_('rpc_zmq_matchmaker = %(orig)s is deprecated; use'
|
||||
' %(new)s instead') % dict(
|
||||
orig=CONF.rpc_zmq_matchmaker, new=mm))
|
||||
matchmaker = importutils.import_object(mm, *args, **kwargs)
|
||||
return matchmaker
|
||||
@@ -1,324 +0,0 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2011 Cloudscaling Group, 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.
|
||||
"""
|
||||
The MatchMaker classes should except a Topic or Fanout exchange key and
|
||||
return keys for direct exchanges, per (approximate) AMQP parlance.
|
||||
"""
|
||||
|
||||
import contextlib
|
||||
|
||||
import eventlet
|
||||
from oslo.config import cfg
|
||||
|
||||
from nova.openstack.common.gettextutils import _ # noqa
|
||||
from nova.openstack.common import log as logging
|
||||
|
||||
|
||||
matchmaker_opts = [
|
||||
cfg.IntOpt('matchmaker_heartbeat_freq',
|
||||
default=300,
|
||||
help='Heartbeat frequency'),
|
||||
cfg.IntOpt('matchmaker_heartbeat_ttl',
|
||||
default=600,
|
||||
help='Heartbeat time-to-live.'),
|
||||
]
|
||||
|
||||
CONF = cfg.CONF
|
||||
CONF.register_opts(matchmaker_opts)
|
||||
LOG = logging.getLogger(__name__)
|
||||
contextmanager = contextlib.contextmanager
|
||||
|
||||
|
||||
class MatchMakerException(Exception):
|
||||
"""Signified a match could not be found."""
|
||||
message = _("Match not found by MatchMaker.")
|
||||
|
||||
|
||||
class Exchange(object):
|
||||
"""Implements lookups.
|
||||
|
||||
Subclass this to support hashtables, dns, etc.
|
||||
"""
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
def run(self, key):
|
||||
raise NotImplementedError()
|
||||
|
||||
|
||||
class Binding(object):
|
||||
"""A binding on which to perform a lookup."""
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
def test(self, key):
|
||||
raise NotImplementedError()
|
||||
|
||||
|
||||
class MatchMakerBase(object):
|
||||
"""Match Maker Base Class.
|
||||
|
||||
Build off HeartbeatMatchMakerBase if building a heartbeat-capable
|
||||
MatchMaker.
|
||||
"""
|
||||
def __init__(self):
|
||||
# Array of tuples. Index [2] toggles negation, [3] is last-if-true
|
||||
self.bindings = []
|
||||
|
||||
self.no_heartbeat_msg = _('Matchmaker does not implement '
|
||||
'registration or heartbeat.')
|
||||
|
||||
def register(self, key, host):
|
||||
"""Register a host on a backend.
|
||||
|
||||
Heartbeats, if applicable, may keepalive registration.
|
||||
"""
|
||||
pass
|
||||
|
||||
def ack_alive(self, key, host):
|
||||
"""Acknowledge that a key.host is alive.
|
||||
|
||||
Used internally for updating heartbeats, but may also be used
|
||||
publically to acknowledge a system is alive (i.e. rpc message
|
||||
successfully sent to host)
|
||||
"""
|
||||
pass
|
||||
|
||||
def is_alive(self, topic, host):
|
||||
"""Checks if a host is alive."""
|
||||
pass
|
||||
|
||||
def expire(self, topic, host):
|
||||
"""Explicitly expire a host's registration."""
|
||||
pass
|
||||
|
||||
def send_heartbeats(self):
|
||||
"""Send all heartbeats.
|
||||
|
||||
Use start_heartbeat to spawn a heartbeat greenthread,
|
||||
which loops this method.
|
||||
"""
|
||||
pass
|
||||
|
||||
def unregister(self, key, host):
|
||||
"""Unregister a topic."""
|
||||
pass
|
||||
|
||||
def start_heartbeat(self):
|
||||
"""Spawn heartbeat greenthread."""
|
||||
pass
|
||||
|
||||
def stop_heartbeat(self):
|
||||
"""Destroys the heartbeat greenthread."""
|
||||
pass
|
||||
|
||||
def add_binding(self, binding, rule, last=True):
|
||||
self.bindings.append((binding, rule, False, last))
|
||||
|
||||
#NOTE(ewindisch): kept the following method in case we implement the
|
||||
# underlying support.
|
||||
#def add_negate_binding(self, binding, rule, last=True):
|
||||
# self.bindings.append((binding, rule, True, last))
|
||||
|
||||
def queues(self, key):
|
||||
workers = []
|
||||
|
||||
# bit is for negate bindings - if we choose to implement it.
|
||||
# last stops processing rules if this matches.
|
||||
for (binding, exchange, bit, last) in self.bindings:
|
||||
if binding.test(key):
|
||||
workers.extend(exchange.run(key))
|
||||
|
||||
# Support last.
|
||||
if last:
|
||||
return workers
|
||||
return workers
|
||||
|
||||
|
||||
class HeartbeatMatchMakerBase(MatchMakerBase):
|
||||
"""Base for a heart-beat capable MatchMaker.
|
||||
|
||||
Provides common methods for registering, unregistering, and maintaining
|
||||
heartbeats.
|
||||
"""
|
||||
def __init__(self):
|
||||
self.hosts = set()
|
||||
self._heart = None
|
||||
self.host_topic = {}
|
||||
|
||||
super(HeartbeatMatchMakerBase, self).__init__()
|
||||
|
||||
def send_heartbeats(self):
|
||||
"""Send all heartbeats.
|
||||
|
||||
Use start_heartbeat to spawn a heartbeat greenthread,
|
||||
which loops this method.
|
||||
"""
|
||||
for key, host in self.host_topic:
|
||||
self.ack_alive(key, host)
|
||||
|
||||
def ack_alive(self, key, host):
|
||||
"""Acknowledge that a host.topic is alive.
|
||||
|
||||
Used internally for updating heartbeats, but may also be used
|
||||
publically to acknowledge a system is alive (i.e. rpc message
|
||||
successfully sent to host)
|
||||
"""
|
||||
raise NotImplementedError("Must implement ack_alive")
|
||||
|
||||
def backend_register(self, key, host):
|
||||
"""Implements registration logic.
|
||||
|
||||
Called by register(self,key,host)
|
||||
"""
|
||||
raise NotImplementedError("Must implement backend_register")
|
||||
|
||||
def backend_unregister(self, key, key_host):
|
||||
"""Implements de-registration logic.
|
||||
|
||||
Called by unregister(self,key,host)
|
||||
"""
|
||||
raise NotImplementedError("Must implement backend_unregister")
|
||||
|
||||
def register(self, key, host):
|
||||
"""Register a host on a backend.
|
||||
|
||||
Heartbeats, if applicable, may keepalive registration.
|
||||
"""
|
||||
self.hosts.add(host)
|
||||
self.host_topic[(key, host)] = host
|
||||
key_host = '.'.join((key, host))
|
||||
|
||||
self.backend_register(key, key_host)
|
||||
|
||||
self.ack_alive(key, host)
|
||||
|
||||
def unregister(self, key, host):
|
||||
"""Unregister a topic."""
|
||||
if (key, host) in self.host_topic:
|
||||
del self.host_topic[(key, host)]
|
||||
|
||||
self.hosts.discard(host)
|
||||
self.backend_unregister(key, '.'.join((key, host)))
|
||||
|
||||
LOG.info(_("Matchmaker unregistered: %(key)s, %(host)s"),
|
||||
{'key': key, 'host': host})
|
||||
|
||||
def start_heartbeat(self):
|
||||
"""Implementation of MatchMakerBase.start_heartbeat.
|
||||
|
||||
Launches greenthread looping send_heartbeats(),
|
||||
yielding for CONF.matchmaker_heartbeat_freq seconds
|
||||
between iterations.
|
||||
"""
|
||||
if not self.hosts:
|
||||
raise MatchMakerException(
|
||||
_("Register before starting heartbeat."))
|
||||
|
||||
def do_heartbeat():
|
||||
while True:
|
||||
self.send_heartbeats()
|
||||
eventlet.sleep(CONF.matchmaker_heartbeat_freq)
|
||||
|
||||
self._heart = eventlet.spawn(do_heartbeat)
|
||||
|
||||
def stop_heartbeat(self):
|
||||
"""Destroys the heartbeat greenthread."""
|
||||
if self._heart:
|
||||
self._heart.kill()
|
||||
|
||||
|
||||
class DirectBinding(Binding):
|
||||
"""Specifies a host in the key via a '.' character.
|
||||
|
||||
Although dots are used in the key, the behavior here is
|
||||
that it maps directly to a host, thus direct.
|
||||
"""
|
||||
def test(self, key):
|
||||
return '.' in key
|
||||
|
||||
|
||||
class TopicBinding(Binding):
|
||||
"""Where a 'bare' key without dots.
|
||||
|
||||
AMQP generally considers topic exchanges to be those *with* dots,
|
||||
but we deviate here in terminology as the behavior here matches
|
||||
that of a topic exchange (whereas where there are dots, behavior
|
||||
matches that of a direct exchange.
|
||||
"""
|
||||
def test(self, key):
|
||||
return '.' not in key
|
||||
|
||||
|
||||
class FanoutBinding(Binding):
|
||||
"""Match on fanout keys, where key starts with 'fanout.' string."""
|
||||
def test(self, key):
|
||||
return key.startswith('fanout~')
|
||||
|
||||
|
||||
class StubExchange(Exchange):
|
||||
"""Exchange that does nothing."""
|
||||
def run(self, key):
|
||||
return [(key, None)]
|
||||
|
||||
|
||||
class LocalhostExchange(Exchange):
|
||||
"""Exchange where all direct topics are local."""
|
||||
def __init__(self, host='localhost'):
|
||||
self.host = host
|
||||
super(Exchange, self).__init__()
|
||||
|
||||
def run(self, key):
|
||||
return [('.'.join((key.split('.')[0], self.host)), self.host)]
|
||||
|
||||
|
||||
class DirectExchange(Exchange):
|
||||
"""Exchange where all topic keys are split, sending to second half.
|
||||
|
||||
i.e. "compute.host" sends a message to "compute.host" running on "host"
|
||||
"""
|
||||
def __init__(self):
|
||||
super(Exchange, self).__init__()
|
||||
|
||||
def run(self, key):
|
||||
e = key.split('.', 1)[1]
|
||||
return [(key, e)]
|
||||
|
||||
|
||||
class MatchMakerLocalhost(MatchMakerBase):
|
||||
"""Match Maker where all bare topics resolve to localhost.
|
||||
|
||||
Useful for testing.
|
||||
"""
|
||||
def __init__(self, host='localhost'):
|
||||
super(MatchMakerLocalhost, self).__init__()
|
||||
self.add_binding(FanoutBinding(), LocalhostExchange(host))
|
||||
self.add_binding(DirectBinding(), DirectExchange())
|
||||
self.add_binding(TopicBinding(), LocalhostExchange(host))
|
||||
|
||||
|
||||
class MatchMakerStub(MatchMakerBase):
|
||||
"""Match Maker where topics are untouched.
|
||||
|
||||
Useful for testing, or for AMQP/brokered queues.
|
||||
Will not work where knowledge of hosts is known (i.e. zeromq)
|
||||
"""
|
||||
def __init__(self):
|
||||
super(MatchMakerStub, self).__init__()
|
||||
|
||||
self.add_binding(FanoutBinding(), StubExchange())
|
||||
self.add_binding(DirectBinding(), StubExchange())
|
||||
self.add_binding(TopicBinding(), StubExchange())
|
||||
@@ -1,145 +0,0 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2013 Cloudscaling Group, 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.
|
||||
"""
|
||||
The MatchMaker classes should accept a Topic or Fanout exchange key and
|
||||
return keys for direct exchanges, per (approximate) AMQP parlance.
|
||||
"""
|
||||
|
||||
from oslo.config import cfg
|
||||
|
||||
from nova.openstack.common import importutils
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common.rpc import matchmaker as mm_common
|
||||
|
||||
redis = importutils.try_import('redis')
|
||||
|
||||
|
||||
matchmaker_redis_opts = [
|
||||
cfg.StrOpt('host',
|
||||
default='127.0.0.1',
|
||||
help='Host to locate redis'),
|
||||
cfg.IntOpt('port',
|
||||
default=6379,
|
||||
help='Use this port to connect to redis host.'),
|
||||
cfg.StrOpt('password',
|
||||
default=None,
|
||||
help='Password for Redis server. (optional)'),
|
||||
]
|
||||
|
||||
CONF = cfg.CONF
|
||||
opt_group = cfg.OptGroup(name='matchmaker_redis',
|
||||
title='Options for Redis-based MatchMaker')
|
||||
CONF.register_group(opt_group)
|
||||
CONF.register_opts(matchmaker_redis_opts, opt_group)
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class RedisExchange(mm_common.Exchange):
|
||||
def __init__(self, matchmaker):
|
||||
self.matchmaker = matchmaker
|
||||
self.redis = matchmaker.redis
|
||||
super(RedisExchange, self).__init__()
|
||||
|
||||
|
||||
class RedisTopicExchange(RedisExchange):
|
||||
"""Exchange where all topic keys are split, sending to second half.
|
||||
|
||||
i.e. "compute.host" sends a message to "compute" running on "host"
|
||||
"""
|
||||
def run(self, topic):
|
||||
while True:
|
||||
member_name = self.redis.srandmember(topic)
|
||||
|
||||
if not member_name:
|
||||
# If this happens, there are no
|
||||
# longer any members.
|
||||
break
|
||||
|
||||
if not self.matchmaker.is_alive(topic, member_name):
|
||||
continue
|
||||
|
||||
host = member_name.split('.', 1)[1]
|
||||
return [(member_name, host)]
|
||||
return []
|
||||
|
||||
|
||||
class RedisFanoutExchange(RedisExchange):
|
||||
"""Return a list of all hosts."""
|
||||
def run(self, topic):
|
||||
topic = topic.split('~', 1)[1]
|
||||
hosts = self.redis.smembers(topic)
|
||||
good_hosts = filter(
|
||||
lambda host: self.matchmaker.is_alive(topic, host), hosts)
|
||||
|
||||
return [(x, x.split('.', 1)[1]) for x in good_hosts]
|
||||
|
||||
|
||||
class MatchMakerRedis(mm_common.HeartbeatMatchMakerBase):
|
||||
"""MatchMaker registering and looking-up hosts with a Redis server."""
|
||||
def __init__(self):
|
||||
super(MatchMakerRedis, self).__init__()
|
||||
|
||||
if not redis:
|
||||
raise ImportError("Failed to import module redis.")
|
||||
|
||||
self.redis = redis.StrictRedis(
|
||||
host=CONF.matchmaker_redis.host,
|
||||
port=CONF.matchmaker_redis.port,
|
||||
password=CONF.matchmaker_redis.password)
|
||||
|
||||
self.add_binding(mm_common.FanoutBinding(), RedisFanoutExchange(self))
|
||||
self.add_binding(mm_common.DirectBinding(), mm_common.DirectExchange())
|
||||
self.add_binding(mm_common.TopicBinding(), RedisTopicExchange(self))
|
||||
|
||||
def ack_alive(self, key, host):
|
||||
topic = "%s.%s" % (key, host)
|
||||
if not self.redis.expire(topic, CONF.matchmaker_heartbeat_ttl):
|
||||
# If we could not update the expiration, the key
|
||||
# might have been pruned. Re-register, creating a new
|
||||
# key in Redis.
|
||||
self.register(self.topic_host[host], host)
|
||||
|
||||
def is_alive(self, topic, host):
|
||||
if self.redis.ttl(host) == -1:
|
||||
self.expire(topic, host)
|
||||
return False
|
||||
return True
|
||||
|
||||
def expire(self, topic, host):
|
||||
with self.redis.pipeline() as pipe:
|
||||
pipe.multi()
|
||||
pipe.delete(host)
|
||||
pipe.srem(topic, host)
|
||||
pipe.execute()
|
||||
|
||||
def backend_register(self, key, key_host):
|
||||
with self.redis.pipeline() as pipe:
|
||||
pipe.multi()
|
||||
pipe.sadd(key, key_host)
|
||||
|
||||
# No value is needed, we just
|
||||
# care if it exists. Sets aren't viable
|
||||
# because only keys can expire.
|
||||
pipe.set(key_host, '')
|
||||
|
||||
pipe.execute()
|
||||
|
||||
def backend_unregister(self, key, key_host):
|
||||
with self.redis.pipeline() as pipe:
|
||||
pipe.multi()
|
||||
pipe.srem(key, key_host)
|
||||
pipe.delete(key_host)
|
||||
pipe.execute()
|
||||
@@ -1,108 +0,0 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2011-2013 Cloudscaling Group, 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.
|
||||
"""
|
||||
The MatchMaker classes should except a Topic or Fanout exchange key and
|
||||
return keys for direct exchanges, per (approximate) AMQP parlance.
|
||||
"""
|
||||
|
||||
import itertools
|
||||
import json
|
||||
|
||||
from oslo.config import cfg
|
||||
|
||||
from nova.openstack.common.gettextutils import _ # noqa
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common.rpc import matchmaker as mm
|
||||
|
||||
|
||||
matchmaker_opts = [
|
||||
# Matchmaker ring file
|
||||
cfg.StrOpt('ringfile',
|
||||
deprecated_name='matchmaker_ringfile',
|
||||
deprecated_group='DEFAULT',
|
||||
default='/etc/oslo/matchmaker_ring.json',
|
||||
help='Matchmaker ring file (JSON)'),
|
||||
]
|
||||
|
||||
CONF = cfg.CONF
|
||||
CONF.register_opts(matchmaker_opts, 'matchmaker_ring')
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class RingExchange(mm.Exchange):
|
||||
"""Match Maker where hosts are loaded from a static JSON formatted file.
|
||||
|
||||
__init__ takes optional ring dictionary argument, otherwise
|
||||
loads the ringfile from CONF.mathcmaker_ringfile.
|
||||
"""
|
||||
def __init__(self, ring=None):
|
||||
super(RingExchange, self).__init__()
|
||||
|
||||
if ring:
|
||||
self.ring = ring
|
||||
else:
|
||||
fh = open(CONF.matchmaker_ring.ringfile, 'r')
|
||||
self.ring = json.load(fh)
|
||||
fh.close()
|
||||
|
||||
self.ring0 = {}
|
||||
for k in self.ring.keys():
|
||||
self.ring0[k] = itertools.cycle(self.ring[k])
|
||||
|
||||
def _ring_has(self, key):
|
||||
return key in self.ring0
|
||||
|
||||
|
||||
class RoundRobinRingExchange(RingExchange):
|
||||
"""A Topic Exchange based on a hashmap."""
|
||||
def __init__(self, ring=None):
|
||||
super(RoundRobinRingExchange, self).__init__(ring)
|
||||
|
||||
def run(self, key):
|
||||
if not self._ring_has(key):
|
||||
LOG.warn(
|
||||
_("No key defining hosts for topic '%s', "
|
||||
"see ringfile") % (key, )
|
||||
)
|
||||
return []
|
||||
host = next(self.ring0[key])
|
||||
return [(key + '.' + host, host)]
|
||||
|
||||
|
||||
class FanoutRingExchange(RingExchange):
|
||||
"""Fanout Exchange based on a hashmap."""
|
||||
def __init__(self, ring=None):
|
||||
super(FanoutRingExchange, self).__init__(ring)
|
||||
|
||||
def run(self, key):
|
||||
# Assume starts with "fanout~", strip it for lookup.
|
||||
nkey = key.split('fanout~')[1:][0]
|
||||
if not self._ring_has(nkey):
|
||||
LOG.warn(
|
||||
_("No key defining hosts for topic '%s', "
|
||||
"see ringfile") % (nkey, )
|
||||
)
|
||||
return []
|
||||
return map(lambda x: (key + '.' + x, x), self.ring[nkey])
|
||||
|
||||
|
||||
class MatchMakerRing(mm.MatchMakerBase):
|
||||
"""Match Maker where hosts are loaded from a static hashmap."""
|
||||
def __init__(self, ring=None):
|
||||
super(MatchMakerRing, self).__init__()
|
||||
self.add_binding(mm.FanoutBinding(), FanoutRingExchange(ring))
|
||||
self.add_binding(mm.DirectBinding(), mm.DirectExchange())
|
||||
self.add_binding(mm.TopicBinding(), RoundRobinRingExchange(ring))
|
||||
@@ -1,226 +0,0 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2012-2013 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.
|
||||
|
||||
"""
|
||||
A helper class for proxy objects to remote APIs.
|
||||
|
||||
For more information about rpc API version numbers, see:
|
||||
rpc/dispatcher.py
|
||||
"""
|
||||
|
||||
|
||||
from nova.openstack.common import rpc
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
from nova.openstack.common.rpc import serializer as rpc_serializer
|
||||
|
||||
|
||||
class RpcProxy(object):
|
||||
"""A helper class for rpc clients.
|
||||
|
||||
This class is a wrapper around the RPC client API. It allows you to
|
||||
specify the topic and API version in a single place. This is intended to
|
||||
be used as a base class for a class that implements the client side of an
|
||||
rpc API.
|
||||
"""
|
||||
|
||||
# The default namespace, which can be overriden in a subclass.
|
||||
RPC_API_NAMESPACE = None
|
||||
|
||||
def __init__(self, topic, default_version, version_cap=None,
|
||||
serializer=None):
|
||||
"""Initialize an RpcProxy.
|
||||
|
||||
:param topic: The topic to use for all messages.
|
||||
:param default_version: The default API version to request in all
|
||||
outgoing messages. This can be overridden on a per-message
|
||||
basis.
|
||||
:param version_cap: Optionally cap the maximum version used for sent
|
||||
messages.
|
||||
:param serializer: Optionaly (de-)serialize entities with a
|
||||
provided helper.
|
||||
"""
|
||||
self.topic = topic
|
||||
self.default_version = default_version
|
||||
self.version_cap = version_cap
|
||||
if serializer is None:
|
||||
serializer = rpc_serializer.NoOpSerializer()
|
||||
self.serializer = serializer
|
||||
super(RpcProxy, self).__init__()
|
||||
|
||||
def _set_version(self, msg, vers):
|
||||
"""Helper method to set the version in a message.
|
||||
|
||||
:param msg: The message having a version added to it.
|
||||
:param vers: The version number to add to the message.
|
||||
"""
|
||||
v = vers if vers else self.default_version
|
||||
if (self.version_cap and not
|
||||
rpc_common.version_is_compatible(self.version_cap, v)):
|
||||
raise rpc_common.RpcVersionCapError(version_cap=self.version_cap)
|
||||
msg['version'] = v
|
||||
|
||||
def _get_topic(self, topic):
|
||||
"""Return the topic to use for a message."""
|
||||
return topic if topic else self.topic
|
||||
|
||||
def can_send_version(self, version):
|
||||
"""Check to see if a version is compatible with the version cap."""
|
||||
return (not self.version_cap or
|
||||
rpc_common.version_is_compatible(self.version_cap, version))
|
||||
|
||||
@staticmethod
|
||||
def make_namespaced_msg(method, namespace, **kwargs):
|
||||
return {'method': method, 'namespace': namespace, 'args': kwargs}
|
||||
|
||||
def make_msg(self, method, **kwargs):
|
||||
return self.make_namespaced_msg(method, self.RPC_API_NAMESPACE,
|
||||
**kwargs)
|
||||
|
||||
def _serialize_msg_args(self, context, kwargs):
|
||||
"""Helper method called to serialize message arguments.
|
||||
|
||||
This calls our serializer on each argument, returning a new
|
||||
set of args that have been serialized.
|
||||
|
||||
:param context: The request context
|
||||
:param kwargs: The arguments to serialize
|
||||
:returns: A new set of serialized arguments
|
||||
"""
|
||||
new_kwargs = dict()
|
||||
for argname, arg in kwargs.iteritems():
|
||||
new_kwargs[argname] = self.serializer.serialize_entity(context,
|
||||
arg)
|
||||
return new_kwargs
|
||||
|
||||
def call(self, context, msg, topic=None, version=None, timeout=None):
|
||||
"""rpc.call() a remote method.
|
||||
|
||||
:param context: The request context
|
||||
:param msg: The message to send, including the method and args.
|
||||
:param topic: Override the topic for this message.
|
||||
:param version: (Optional) Override the requested API version in this
|
||||
message.
|
||||
:param timeout: (Optional) A timeout to use when waiting for the
|
||||
response. If no timeout is specified, a default timeout will be
|
||||
used that is usually sufficient.
|
||||
|
||||
:returns: The return value from the remote method.
|
||||
"""
|
||||
self._set_version(msg, version)
|
||||
msg['args'] = self._serialize_msg_args(context, msg['args'])
|
||||
real_topic = self._get_topic(topic)
|
||||
try:
|
||||
result = rpc.call(context, real_topic, msg, timeout)
|
||||
return self.serializer.deserialize_entity(context, result)
|
||||
except rpc.common.Timeout as exc:
|
||||
raise rpc.common.Timeout(
|
||||
exc.info, real_topic, msg.get('method'))
|
||||
|
||||
def multicall(self, context, msg, topic=None, version=None, timeout=None):
|
||||
"""rpc.multicall() a remote method.
|
||||
|
||||
:param context: The request context
|
||||
:param msg: The message to send, including the method and args.
|
||||
:param topic: Override the topic for this message.
|
||||
:param version: (Optional) Override the requested API version in this
|
||||
message.
|
||||
:param timeout: (Optional) A timeout to use when waiting for the
|
||||
response. If no timeout is specified, a default timeout will be
|
||||
used that is usually sufficient.
|
||||
|
||||
:returns: An iterator that lets you process each of the returned values
|
||||
from the remote method as they arrive.
|
||||
"""
|
||||
self._set_version(msg, version)
|
||||
msg['args'] = self._serialize_msg_args(context, msg['args'])
|
||||
real_topic = self._get_topic(topic)
|
||||
try:
|
||||
result = rpc.multicall(context, real_topic, msg, timeout)
|
||||
return self.serializer.deserialize_entity(context, result)
|
||||
except rpc.common.Timeout as exc:
|
||||
raise rpc.common.Timeout(
|
||||
exc.info, real_topic, msg.get('method'))
|
||||
|
||||
def cast(self, context, msg, topic=None, version=None):
|
||||
"""rpc.cast() a remote method.
|
||||
|
||||
:param context: The request context
|
||||
:param msg: The message to send, including the method and args.
|
||||
:param topic: Override the topic for this message.
|
||||
:param version: (Optional) Override the requested API version in this
|
||||
message.
|
||||
|
||||
:returns: None. rpc.cast() does not wait on any return value from the
|
||||
remote method.
|
||||
"""
|
||||
self._set_version(msg, version)
|
||||
msg['args'] = self._serialize_msg_args(context, msg['args'])
|
||||
rpc.cast(context, self._get_topic(topic), msg)
|
||||
|
||||
def fanout_cast(self, context, msg, topic=None, version=None):
|
||||
"""rpc.fanout_cast() a remote method.
|
||||
|
||||
:param context: The request context
|
||||
:param msg: The message to send, including the method and args.
|
||||
:param topic: Override the topic for this message.
|
||||
:param version: (Optional) Override the requested API version in this
|
||||
message.
|
||||
|
||||
:returns: None. rpc.fanout_cast() does not wait on any return value
|
||||
from the remote method.
|
||||
"""
|
||||
self._set_version(msg, version)
|
||||
msg['args'] = self._serialize_msg_args(context, msg['args'])
|
||||
rpc.fanout_cast(context, self._get_topic(topic), msg)
|
||||
|
||||
def cast_to_server(self, context, server_params, msg, topic=None,
|
||||
version=None):
|
||||
"""rpc.cast_to_server() a remote method.
|
||||
|
||||
:param context: The request context
|
||||
:param server_params: Server parameters. See rpc.cast_to_server() for
|
||||
details.
|
||||
:param msg: The message to send, including the method and args.
|
||||
:param topic: Override the topic for this message.
|
||||
:param version: (Optional) Override the requested API version in this
|
||||
message.
|
||||
|
||||
:returns: None. rpc.cast_to_server() does not wait on any
|
||||
return values.
|
||||
"""
|
||||
self._set_version(msg, version)
|
||||
msg['args'] = self._serialize_msg_args(context, msg['args'])
|
||||
rpc.cast_to_server(context, server_params, self._get_topic(topic), msg)
|
||||
|
||||
def fanout_cast_to_server(self, context, server_params, msg, topic=None,
|
||||
version=None):
|
||||
"""rpc.fanout_cast_to_server() a remote method.
|
||||
|
||||
:param context: The request context
|
||||
:param server_params: Server parameters. See rpc.cast_to_server() for
|
||||
details.
|
||||
:param msg: The message to send, including the method and args.
|
||||
:param topic: Override the topic for this message.
|
||||
:param version: (Optional) Override the requested API version in this
|
||||
message.
|
||||
|
||||
:returns: None. rpc.fanout_cast_to_server() does not wait on any
|
||||
return values.
|
||||
"""
|
||||
self._set_version(msg, version)
|
||||
msg['args'] = self._serialize_msg_args(context, msg['args'])
|
||||
rpc.fanout_cast_to_server(context, server_params,
|
||||
self._get_topic(topic), msg)
|
||||
@@ -1,52 +0,0 @@
|
||||
# Copyright 2013 IBM Corp.
|
||||
#
|
||||
# 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.
|
||||
|
||||
"""Provides the definition of an RPC serialization handler"""
|
||||
|
||||
import abc
|
||||
|
||||
|
||||
class Serializer(object):
|
||||
"""Generic (de-)serialization definition base class."""
|
||||
__metaclass__ = abc.ABCMeta
|
||||
|
||||
@abc.abstractmethod
|
||||
def serialize_entity(self, context, entity):
|
||||
"""Serialize something to primitive form.
|
||||
|
||||
:param context: Security context
|
||||
:param entity: Entity to be serialized
|
||||
:returns: Serialized form of entity
|
||||
"""
|
||||
pass
|
||||
|
||||
@abc.abstractmethod
|
||||
def deserialize_entity(self, context, entity):
|
||||
"""Deserialize something from primitive form.
|
||||
|
||||
:param context: Security context
|
||||
:param entity: Primitive to be deserialized
|
||||
:returns: Deserialized form of entity
|
||||
"""
|
||||
pass
|
||||
|
||||
|
||||
class NoOpSerializer(Serializer):
|
||||
"""A serializer that does nothing."""
|
||||
|
||||
def serialize_entity(self, context, entity):
|
||||
return entity
|
||||
|
||||
def deserialize_entity(self, context, entity):
|
||||
return entity
|
||||
@@ -1,78 +0,0 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2010 United States Government as represented by the
|
||||
# Administrator of the National Aeronautics and Space Administration.
|
||||
# All Rights Reserved.
|
||||
# Copyright 2011 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.
|
||||
|
||||
from nova.openstack.common.gettextutils import _ # noqa
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import rpc
|
||||
from nova.openstack.common.rpc import dispatcher as rpc_dispatcher
|
||||
from nova.openstack.common import service
|
||||
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class Service(service.Service):
|
||||
"""Service object for binaries running on hosts.
|
||||
|
||||
A service enables rpc by listening to queues based on topic and host.
|
||||
"""
|
||||
def __init__(self, host, topic, manager=None, serializer=None):
|
||||
super(Service, self).__init__()
|
||||
self.host = host
|
||||
self.topic = topic
|
||||
self.serializer = serializer
|
||||
if manager is None:
|
||||
self.manager = self
|
||||
else:
|
||||
self.manager = manager
|
||||
|
||||
def start(self):
|
||||
super(Service, self).start()
|
||||
|
||||
self.conn = rpc.create_connection(new=True)
|
||||
LOG.debug(_("Creating Consumer connection for Service %s") %
|
||||
self.topic)
|
||||
|
||||
dispatcher = rpc_dispatcher.RpcDispatcher([self.manager],
|
||||
self.serializer)
|
||||
|
||||
# Share this same connection for these Consumers
|
||||
self.conn.create_consumer(self.topic, dispatcher, fanout=False)
|
||||
|
||||
node_topic = '%s.%s' % (self.topic, self.host)
|
||||
self.conn.create_consumer(node_topic, dispatcher, fanout=False)
|
||||
|
||||
self.conn.create_consumer(self.topic, dispatcher, fanout=True)
|
||||
|
||||
# Hook to allow the manager to do other initializations after
|
||||
# the rpc connection is created.
|
||||
if callable(getattr(self.manager, 'initialize_service_hook', None)):
|
||||
self.manager.initialize_service_hook(self)
|
||||
|
||||
# Consume from all consumers in a thread
|
||||
self.conn.consume_in_thread()
|
||||
|
||||
def stop(self):
|
||||
# Try to shut the connection down, but if we get any sort of
|
||||
# errors, go ahead and ignore them.. as we're shutting down anyway
|
||||
try:
|
||||
self.conn.close()
|
||||
except Exception:
|
||||
pass
|
||||
super(Service, self).stop()
|
||||
@@ -1,40 +0,0 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2011 OpenStack Foundation
|
||||
#
|
||||
# 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 eventlet
|
||||
eventlet.monkey_patch()
|
||||
|
||||
import contextlib
|
||||
import sys
|
||||
|
||||
from oslo.config import cfg
|
||||
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import rpc
|
||||
from nova.openstack.common.rpc import impl_zmq
|
||||
|
||||
CONF = cfg.CONF
|
||||
CONF.register_opts(rpc.rpc_opts)
|
||||
CONF.register_opts(impl_zmq.zmq_opts)
|
||||
|
||||
|
||||
def main():
|
||||
CONF(sys.argv[1:], project='oslo')
|
||||
logging.setup("oslo")
|
||||
|
||||
with contextlib.closing(impl_zmq.ZmqProxy(CONF)) as reactor:
|
||||
reactor.consume_in_thread()
|
||||
reactor.wait()
|
||||
+141
@@ -0,0 +1,141 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2013 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.
|
||||
|
||||
__all__ = [
|
||||
'init',
|
||||
'cleanup',
|
||||
'set_defaults',
|
||||
'add_extra_exmods',
|
||||
'clear_extra_exmods',
|
||||
'get_allowed_exmods',
|
||||
'RequestContextSerializer',
|
||||
'get_client',
|
||||
'get_server',
|
||||
'get_notifier',
|
||||
'TRANSPORT_ALIASES',
|
||||
]
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
import nova.context
|
||||
import nova.exception
|
||||
|
||||
CONF = cfg.CONF
|
||||
TRANSPORT = None
|
||||
NOTIFIER = None
|
||||
|
||||
ALLOWED_EXMODS = [
|
||||
nova.exception.__name__,
|
||||
]
|
||||
EXTRA_EXMODS = []
|
||||
|
||||
# NOTE(markmc): The nova.openstack.common.rpc entries are for backwards compat
|
||||
# with Havana rpc_backend configuration values. The nova.rpc entries are for
|
||||
# compat with Essex values.
|
||||
TRANSPORT_ALIASES = {
|
||||
'nova.openstack.common.rpc.impl_kombu': 'rabbit',
|
||||
'nova.openstack.common.rpc.impl_qpid': 'qpid',
|
||||
'nova.openstack.common.rpc.impl_zmq': 'zmq',
|
||||
'nova.rpc.impl_kombu': 'rabbit',
|
||||
'nova.rpc.impl_qpid': 'qpid',
|
||||
'nova.rpc.impl_zmq': 'zmq',
|
||||
}
|
||||
|
||||
|
||||
def init(conf):
|
||||
global TRANSPORT, NOTIFIER
|
||||
exmods = get_allowed_exmods()
|
||||
TRANSPORT = messaging.get_transport(conf,
|
||||
allowed_remote_exmods=exmods,
|
||||
aliases=TRANSPORT_ALIASES)
|
||||
NOTIFIER = messaging.Notifier(TRANSPORT)
|
||||
|
||||
|
||||
def cleanup():
|
||||
global TRANSPORT, NOTIFIER
|
||||
assert TRANSPORT is not None
|
||||
assert NOTIFIER is not None
|
||||
TRANSPORT.cleanup()
|
||||
TRANSPORT = NOTIFIER = None
|
||||
|
||||
|
||||
def set_defaults(control_exchange):
|
||||
messaging.set_transport_defaults(control_exchange)
|
||||
|
||||
|
||||
def add_extra_exmods(*args):
|
||||
EXTRA_EXMODS.extend(args)
|
||||
|
||||
|
||||
def clear_extra_exmods():
|
||||
del EXTRA_EXMODS[:]
|
||||
|
||||
|
||||
def get_allowed_exmods():
|
||||
return ALLOWED_EXMODS + EXTRA_EXMODS
|
||||
|
||||
|
||||
class RequestContextSerializer(messaging.Serializer):
|
||||
|
||||
def __init__(self, base):
|
||||
self._base = base
|
||||
|
||||
def serialize_entity(self, context, entity):
|
||||
if not self._base:
|
||||
return entity
|
||||
return self._base.serialize_entity(context, entity)
|
||||
|
||||
def deserialize_entity(self, context, entity):
|
||||
if not self._base:
|
||||
return entity
|
||||
return self._base.deserialize_entity(context, entity)
|
||||
|
||||
def serialize_context(self, context):
|
||||
return context.to_dict()
|
||||
|
||||
def deserialize_context(self, context):
|
||||
return nova.context.RequestContext.from_dict(context)
|
||||
|
||||
|
||||
def get_transport_url(url_str=None):
|
||||
return messaging.TransportURL.parse(CONF, url_str, TRANSPORT_ALIASES)
|
||||
|
||||
|
||||
def get_client(target, version_cap=None, serializer=None):
|
||||
assert TRANSPORT is not None
|
||||
serializer = RequestContextSerializer(serializer)
|
||||
return messaging.RPCClient(TRANSPORT,
|
||||
target,
|
||||
version_cap=version_cap,
|
||||
serializer=serializer)
|
||||
|
||||
|
||||
def get_server(target, endpoints, serializer=None):
|
||||
assert TRANSPORT is not None
|
||||
serializer = RequestContextSerializer(serializer)
|
||||
return messaging.get_rpc_server(TRANSPORT,
|
||||
target,
|
||||
endpoints,
|
||||
executor='eventlet',
|
||||
serializer=serializer)
|
||||
|
||||
|
||||
def get_notifier(service=None, host=None, publisher_id=None):
|
||||
assert NOTIFIER is not None
|
||||
if not publisher_id:
|
||||
publisher_id = "%s.%s" % (service, host or CONF.host)
|
||||
return NOTIFIER.prepare(publisher_id=publisher_id)
|
||||
@@ -1,96 +0,0 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2013 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.
|
||||
|
||||
"""
|
||||
A temporary helper which emulates oslo.messaging.rpc.RPCClient.
|
||||
|
||||
The most tedious part of porting to oslo.messaging is porting the code which
|
||||
sub-classes RpcProxy to use RPCClient instead.
|
||||
|
||||
This helper method allows us to do that tedious porting as a standalone commit
|
||||
so that the commit which switches us to oslo.messaging is smaller and easier
|
||||
to review. This file will be removed as part of that commit.
|
||||
"""
|
||||
|
||||
from nova.openstack.common.rpc import proxy
|
||||
|
||||
|
||||
class RPCClient(object):
|
||||
|
||||
def __init__(self, proxy, namespace=None, server_params=None):
|
||||
super(RPCClient, self).__init__()
|
||||
self.proxy = proxy
|
||||
self.namespace = namespace
|
||||
self.server_params = server_params
|
||||
self.kwargs = {}
|
||||
self.fanout = None
|
||||
|
||||
def prepare(self, **kwargs):
|
||||
# Clone ourselves
|
||||
ret = self.__class__(self.proxy, self.namespace, self.server_params)
|
||||
ret.kwargs.update(self.kwargs)
|
||||
ret.fanout = self.fanout
|
||||
|
||||
# Update according to supplied kwargs
|
||||
ret.kwargs.update(kwargs)
|
||||
server = ret.kwargs.pop('server', None)
|
||||
if server:
|
||||
ret.kwargs['topic'] = '%s.%s' % (self.proxy.topic, server)
|
||||
fanout = ret.kwargs.pop('fanout', None)
|
||||
if fanout:
|
||||
ret.fanout = True
|
||||
|
||||
return ret
|
||||
|
||||
def _invoke(self, cast_or_call, ctxt, method, **kwargs):
|
||||
try:
|
||||
msg = self.proxy.make_namespaced_msg(method,
|
||||
self.namespace,
|
||||
**kwargs)
|
||||
return cast_or_call(ctxt, msg, **self.kwargs)
|
||||
finally:
|
||||
self.kwargs = {}
|
||||
self.fanout = None
|
||||
|
||||
def cast(self, ctxt, method, **kwargs):
|
||||
if self.server_params:
|
||||
def cast_to_server(ctxt, msg, **kwargs):
|
||||
if self.fanout:
|
||||
return self.proxy.fanout_cast_to_server(
|
||||
ctxt, self.server_params, msg, **kwargs)
|
||||
else:
|
||||
return self.proxy.cast_to_server(
|
||||
ctxt, self.server_params, msg, **kwargs)
|
||||
|
||||
caster = cast_to_server
|
||||
else:
|
||||
caster = self.proxy.fanout_cast if self.fanout else self.proxy.cast
|
||||
|
||||
self._invoke(caster, ctxt, method, **kwargs)
|
||||
|
||||
def call(self, ctxt, method, **kwargs):
|
||||
return self._invoke(self.proxy.call, ctxt, method, **kwargs)
|
||||
|
||||
def can_send_version(self, version):
|
||||
return self.proxy.can_send_version(version)
|
||||
|
||||
|
||||
class RpcProxy(proxy.RpcProxy):
|
||||
|
||||
def get_client(self, namespace=None, server_params=None):
|
||||
return RPCClient(self,
|
||||
namespace=namespace,
|
||||
server_params=server_params)
|
||||
@@ -31,11 +31,11 @@ from nova.conductor import api as conductor_api
|
||||
from nova import db
|
||||
from nova import exception
|
||||
from nova import notifications
|
||||
from nova import notifier
|
||||
from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import importutils
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import timeutils
|
||||
from nova import rpc
|
||||
from nova import servicegroup
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
@@ -81,8 +81,8 @@ def handle_schedule_error(context, ex, instance_uuid, request_spec):
|
||||
method='run_instance',
|
||||
reason=ex)
|
||||
|
||||
notifier.get_notifier('scheduler').error(context,
|
||||
'scheduler.run_instance', payload)
|
||||
rpc.get_notifier('scheduler').error(context,
|
||||
'scheduler.run_instance', payload)
|
||||
|
||||
|
||||
def instance_update_db(context, instance_uuid, extra_values=None):
|
||||
|
||||
@@ -25,10 +25,10 @@ from oslo.config import cfg
|
||||
|
||||
from nova.compute import rpcapi as compute_rpcapi
|
||||
from nova import exception
|
||||
from nova import notifier
|
||||
from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.pci import pci_request
|
||||
from nova import rpc
|
||||
from nova.scheduler import driver
|
||||
from nova.scheduler import scheduler_options
|
||||
from nova.scheduler import utils as scheduler_utils
|
||||
@@ -59,7 +59,7 @@ class FilterScheduler(driver.Scheduler):
|
||||
super(FilterScheduler, self).__init__(*args, **kwargs)
|
||||
self.options = scheduler_options.SchedulerOptions()
|
||||
self.compute_rpcapi = compute_rpcapi.ComputeAPI()
|
||||
self.notifier = notifier.get_notifier('scheduler')
|
||||
self.notifier = rpc.get_notifier('scheduler')
|
||||
|
||||
def schedule_run_instance(self, context, request_spec,
|
||||
admin_password, injected_files,
|
||||
|
||||
+12
-12
@@ -22,6 +22,7 @@ Scheduler Service
|
||||
"""
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
from nova.compute import rpcapi as compute_rpcapi
|
||||
from nova.compute import task_states
|
||||
@@ -37,7 +38,6 @@ from nova.openstack.common import importutils
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import periodic_task
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
from nova import quota
|
||||
from nova.scheduler import utils as scheduler_utils
|
||||
|
||||
@@ -57,7 +57,7 @@ QUOTAS = quota.QUOTAS
|
||||
class SchedulerManager(manager.Manager):
|
||||
"""Chooses a host to run instances on."""
|
||||
|
||||
RPC_API_VERSION = '2.9'
|
||||
target = messaging.Target(version='2.9')
|
||||
|
||||
def __init__(self, scheduler_driver=None, *args, **kwargs):
|
||||
if not scheduler_driver:
|
||||
@@ -72,14 +72,14 @@ class SchedulerManager(manager.Manager):
|
||||
#function removed in RPC API 2.3
|
||||
pass
|
||||
|
||||
@rpc_common.client_exceptions(exception.NoValidHost,
|
||||
exception.ComputeServiceUnavailable,
|
||||
exception.InvalidHypervisorType,
|
||||
exception.UnableToMigrateToSelf,
|
||||
exception.DestinationHypervisorTooOld,
|
||||
exception.InvalidLocalStorage,
|
||||
exception.InvalidSharedStorage,
|
||||
exception.MigrationPreCheckError)
|
||||
@messaging.expected_exceptions(exception.NoValidHost,
|
||||
exception.ComputeServiceUnavailable,
|
||||
exception.InvalidHypervisorType,
|
||||
exception.UnableToMigrateToSelf,
|
||||
exception.DestinationHypervisorTooOld,
|
||||
exception.InvalidLocalStorage,
|
||||
exception.InvalidSharedStorage,
|
||||
exception.MigrationPreCheckError)
|
||||
def live_migration(self, context, instance, dest,
|
||||
block_migration, disk_over_commit):
|
||||
try:
|
||||
@@ -264,7 +264,7 @@ class SchedulerManager(manager.Manager):
|
||||
return self.backdoor_port
|
||||
|
||||
# NOTE(hanlind): This method can be removed in v4.0 of the RPC API.
|
||||
@rpc_common.client_exceptions(exception.NoValidHost)
|
||||
@messaging.expected_exceptions(exception.NoValidHost)
|
||||
def select_hosts(self, context, request_spec, filter_properties):
|
||||
"""Returns host(s) best suited for this request_spec
|
||||
and filter_properties.
|
||||
@@ -274,7 +274,7 @@ class SchedulerManager(manager.Manager):
|
||||
hosts = [dest['host'] for dest in dests]
|
||||
return jsonutils.to_primitive(hosts)
|
||||
|
||||
@rpc_common.client_exceptions(exception.NoValidHost)
|
||||
@messaging.expected_exceptions(exception.NoValidHost)
|
||||
def select_destinations(self, context, request_spec, filter_properties):
|
||||
"""Returns destinations(s) best suited for this request_spec and
|
||||
filter_properties.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||||
|
||||
# Copyright 2012, Red Hat, Inc.
|
||||
# Copyright 2013, 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
|
||||
@@ -19,10 +19,11 @@ Client side of the scheduler manager RPC API.
|
||||
"""
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
from nova.objects import base as objects_base
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova import rpcclient
|
||||
from nova import rpc
|
||||
|
||||
rpcapi_opts = [
|
||||
cfg.StrOpt('scheduler_topic',
|
||||
@@ -38,7 +39,7 @@ rpcapi_cap_opt = cfg.StrOpt('scheduler',
|
||||
CONF.register_opt(rpcapi_cap_opt, 'upgrade_levels')
|
||||
|
||||
|
||||
class SchedulerAPI(rpcclient.RpcProxy):
|
||||
class SchedulerAPI(object):
|
||||
'''Client side of the scheduler rpc API.
|
||||
|
||||
API version history:
|
||||
@@ -81,29 +82,19 @@ class SchedulerAPI(rpcclient.RpcProxy):
|
||||
... - Deprecated select_hosts()
|
||||
'''
|
||||
|
||||
#
|
||||
# NOTE(russellb): This is the default minimum version that the server
|
||||
# (manager) side must implement unless otherwise specified using a version
|
||||
# argument to self.call()/cast()/etc. here. It should be left as X.0 where
|
||||
# X is the current major API version (1.0, 2.0, ...). For more information
|
||||
# about rpc API versioning, see the docs in
|
||||
# openstack/common/rpc/dispatcher.py.
|
||||
#
|
||||
BASE_RPC_API_VERSION = '2.0'
|
||||
|
||||
VERSION_ALIASES = {
|
||||
'grizzly': '2.6',
|
||||
'havana': '2.9',
|
||||
}
|
||||
|
||||
def __init__(self):
|
||||
super(SchedulerAPI, self).__init__()
|
||||
target = messaging.Target(topic=CONF.scheduler_topic, version='2.0')
|
||||
version_cap = self.VERSION_ALIASES.get(CONF.upgrade_levels.scheduler,
|
||||
CONF.upgrade_levels.scheduler)
|
||||
super(SchedulerAPI, self).__init__(topic=CONF.scheduler_topic,
|
||||
default_version=self.BASE_RPC_API_VERSION,
|
||||
serializer=objects_base.NovaObjectSerializer(),
|
||||
version_cap=version_cap)
|
||||
self.client = self.get_client()
|
||||
serializer = objects_base.NovaObjectSerializer()
|
||||
self.client = rpc.get_client(target, version_cap=version_cap,
|
||||
serializer=serializer)
|
||||
|
||||
def select_destinations(self, ctxt, request_spec, filter_properties):
|
||||
cctxt = self.client.prepare(version='2.7')
|
||||
|
||||
@@ -20,12 +20,12 @@ from nova.compute import flavors
|
||||
from nova.compute import utils as compute_utils
|
||||
from nova import db
|
||||
from nova import notifications
|
||||
from nova import notifier as notify
|
||||
from nova.objects import base as obj_base
|
||||
from nova.objects import instance as instance_obj
|
||||
from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import log as logging
|
||||
from nova import rpc
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
@@ -74,7 +74,7 @@ def set_vm_state_and_notify(context, service, method, updates, ex,
|
||||
uuids = [properties.get('uuid')]
|
||||
from nova.conductor import api as conductor_api
|
||||
conductor = conductor_api.LocalAPI()
|
||||
notifier = notify.get_notifier(service)
|
||||
notifier = rpc.get_notifier(service)
|
||||
for instance_uuid in request_spec.get('instance_uuids') or uuids:
|
||||
if instance_uuid:
|
||||
state = vm_state.upper()
|
||||
|
||||
+16
-14
@@ -24,15 +24,18 @@ import random
|
||||
import sys
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
from nova import baserpc
|
||||
from nova import conductor
|
||||
from nova import context
|
||||
from nova import exception
|
||||
from nova.objects import base as objects_base
|
||||
from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import importutils
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import rpc
|
||||
from nova.openstack.common import service
|
||||
from nova import rpc
|
||||
from nova import servicegroup
|
||||
from nova import utils
|
||||
from nova import version
|
||||
@@ -158,6 +161,7 @@ class Service(service.Service):
|
||||
self.servicegroup_api = servicegroup.API(db_allowed=db_allowed)
|
||||
manager_class = importutils.import_class(self.manager_class_name)
|
||||
self.manager = manager_class(host=self.host, *args, **kwargs)
|
||||
self.rpcserver = None
|
||||
self.report_interval = report_interval
|
||||
self.periodic_enable = periodic_enable
|
||||
self.periodic_fuzzy_delay = periodic_fuzzy_delay
|
||||
@@ -193,22 +197,20 @@ class Service(service.Service):
|
||||
if self.backdoor_port is not None:
|
||||
self.manager.backdoor_port = self.backdoor_port
|
||||
|
||||
self.conn = rpc.create_connection(new=True)
|
||||
LOG.debug(_("Creating Consumer connection for Service %s") %
|
||||
self.topic)
|
||||
LOG.debug(_("Creating RPC server for service %s") % self.topic)
|
||||
|
||||
rpc_dispatcher = self.manager.create_rpc_dispatcher(self.backdoor_port)
|
||||
target = messaging.Target(topic=self.topic, server=self.host)
|
||||
|
||||
# Share this same connection for these Consumers
|
||||
self.conn.create_consumer(self.topic, rpc_dispatcher, fanout=False)
|
||||
endpoints = [
|
||||
self.manager,
|
||||
baserpc.BaseRPCAPI(self.manager.service_name, self.backdoor_port)
|
||||
]
|
||||
endpoints.extend(self.manager.additional_endpoints)
|
||||
|
||||
node_topic = '%s.%s' % (self.topic, self.host)
|
||||
self.conn.create_consumer(node_topic, rpc_dispatcher, fanout=False)
|
||||
serializer = objects_base.NovaObjectSerializer()
|
||||
|
||||
self.conn.create_consumer(self.topic, rpc_dispatcher, fanout=True)
|
||||
|
||||
# Consume from all consumers in a thread
|
||||
self.conn.consume_in_thread()
|
||||
self.rpcserver = rpc.get_server(target, endpoints, serializer)
|
||||
self.rpcserver.start()
|
||||
|
||||
self.manager.post_start_hook()
|
||||
|
||||
@@ -311,7 +313,7 @@ class Service(service.Service):
|
||||
|
||||
def stop(self):
|
||||
try:
|
||||
self.conn.close()
|
||||
self.rpcserver.stop()
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
|
||||
@@ -35,6 +35,7 @@ import uuid
|
||||
|
||||
import fixtures
|
||||
from oslo.config import cfg
|
||||
from oslo.messaging import conffixture as messaging_conffixture
|
||||
import testtools
|
||||
|
||||
from nova import context
|
||||
@@ -47,6 +48,7 @@ from nova.openstack.common.fixture import moxstubout
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import timeutils
|
||||
from nova import paths
|
||||
from nova import rpc
|
||||
from nova import service
|
||||
from nova.tests import conf_fixture
|
||||
from nova.tests import policy_fixture
|
||||
@@ -232,10 +234,21 @@ class TestCase(testtools.TestCase):
|
||||
stderr = self.useFixture(fixtures.StringStream('stderr')).stream
|
||||
self.useFixture(fixtures.MonkeyPatch('sys.stderr', stderr))
|
||||
|
||||
rpc.add_extra_exmods('nova.test')
|
||||
self.addCleanup(rpc.clear_extra_exmods)
|
||||
self.addCleanup(rpc.cleanup)
|
||||
|
||||
fs = '%(levelname)s [%(name)s] %(message)s'
|
||||
self.log_fixture = self.useFixture(fixtures.FakeLogger(format=fs))
|
||||
self.useFixture(conf_fixture.ConfFixture(CONF))
|
||||
|
||||
self.messaging_conf = messaging_conffixture.ConfFixture(CONF)
|
||||
self.messaging_conf.transport_driver = 'fake'
|
||||
self.messaging_conf.response_timeout = 15
|
||||
self.useFixture(self.messaging_conf)
|
||||
|
||||
rpc.init(CONF)
|
||||
|
||||
if self.USES_DB:
|
||||
global _DB_CACHE
|
||||
if not _DB_CACHE:
|
||||
|
||||
@@ -2856,6 +2856,7 @@ class CloudTestCase(test.TestCase):
|
||||
|
||||
class CloudTestCaseNeutronProxy(test.TestCase):
|
||||
def setUp(self):
|
||||
super(CloudTestCaseNeutronProxy, self).setUp()
|
||||
cfg.CONF.set_override('security_group_api', 'neutron')
|
||||
self.cloud = cloud.CloudController()
|
||||
self.original_client = neutronv2.get_client
|
||||
@@ -2865,7 +2866,6 @@ class CloudTestCaseNeutronProxy(test.TestCase):
|
||||
self.context = context.RequestContext(self.user_id,
|
||||
self.project_id,
|
||||
is_admin=True)
|
||||
super(CloudTestCaseNeutronProxy, self).setUp()
|
||||
|
||||
def tearDown(self):
|
||||
neutronv2.get_client = self.original_client
|
||||
|
||||
@@ -21,11 +21,11 @@ from webob import exc
|
||||
from nova.api.openstack.compute.contrib import cells as cells_ext
|
||||
from nova.api.openstack import extensions
|
||||
from nova.api.openstack import xmlutil
|
||||
from nova.cells import rpc_driver
|
||||
from nova.cells import rpcapi as cells_rpcapi
|
||||
from nova import context
|
||||
from nova import exception
|
||||
from nova.openstack.common import timeutils
|
||||
from nova import rpc
|
||||
from nova import test
|
||||
from nova.tests.api.openstack import fakes
|
||||
from nova.tests import utils
|
||||
@@ -75,8 +75,9 @@ class BaseCellsTest(test.NoDBTestCase):
|
||||
|
||||
def _get_all_cell_info(self, *args):
|
||||
def insecure_transport_url(url):
|
||||
transport = rpc_driver.parse_transport_url(url)
|
||||
return rpc_driver.unparse_transport_url(transport, False)
|
||||
transport_url = rpc.get_transport_url(url)
|
||||
transport_url.hosts[0].password = None
|
||||
return str(transport_url)
|
||||
|
||||
cells = copy.deepcopy(self.fake_cells)
|
||||
cells[0]['transport_url'] = insecure_transport_url(
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
# Copyright (c) 2012 OpenStack Foundation
|
||||
# All Rights Reserved.
|
||||
# Copyright 2013 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
|
||||
@@ -14,22 +15,14 @@
|
||||
# under the License.
|
||||
|
||||
from lxml import etree
|
||||
import mox
|
||||
|
||||
from nova.api.openstack.compute.contrib import certificates
|
||||
from nova import context
|
||||
from nova.openstack.common import rpc
|
||||
from nova import test
|
||||
from nova.tests.api.openstack import fakes
|
||||
|
||||
|
||||
def fake_get_root_cert(context, *args, **kwargs):
|
||||
return 'fakeroot'
|
||||
|
||||
|
||||
def fake_create_cert(context, *args, **kwargs):
|
||||
return 'fakepk', 'fakecert'
|
||||
|
||||
|
||||
class CertificatesTest(test.NoDBTestCase):
|
||||
def setUp(self):
|
||||
super(CertificatesTest, self).setUp()
|
||||
@@ -37,27 +30,43 @@ class CertificatesTest(test.NoDBTestCase):
|
||||
self.controller = certificates.CertificatesController()
|
||||
|
||||
def test_translate_certificate_view(self):
|
||||
pk, cert = fake_create_cert(self.context)
|
||||
pk, cert = 'fakepk', 'fakecert'
|
||||
view = certificates._translate_certificate_view(cert, pk)
|
||||
self.assertEqual(view['data'], cert)
|
||||
self.assertEqual(view['private_key'], pk)
|
||||
|
||||
def test_certificates_show_root(self):
|
||||
self.stubs.Set(rpc, 'call', fake_get_root_cert)
|
||||
self.mox.StubOutWithMock(self.controller.cert_rpcapi, 'fetch_ca')
|
||||
|
||||
self.controller.cert_rpcapi.fetch_ca(
|
||||
mox.IgnoreArg(), project_id='fake').AndReturn('fakeroot')
|
||||
|
||||
self.mox.ReplayAll()
|
||||
|
||||
req = fakes.HTTPRequest.blank('/v2/fake/os-certificates/root')
|
||||
res_dict = self.controller.show(req, 'root')
|
||||
|
||||
cert = fake_get_root_cert(self.context)
|
||||
response = {'certificate': {'data': cert, 'private_key': None}}
|
||||
response = {'certificate': {'data': 'fakeroot', 'private_key': None}}
|
||||
self.assertEqual(res_dict, response)
|
||||
|
||||
def test_certificates_create_certificate(self):
|
||||
self.stubs.Set(rpc, 'call', fake_create_cert)
|
||||
self.mox.StubOutWithMock(self.controller.cert_rpcapi,
|
||||
'generate_x509_cert')
|
||||
|
||||
self.controller.cert_rpcapi.generate_x509_cert(
|
||||
mox.IgnoreArg(),
|
||||
user_id='fake_user',
|
||||
project_id='fake').AndReturn(('fakepk', 'fakecert'))
|
||||
|
||||
self.mox.ReplayAll()
|
||||
|
||||
req = fakes.HTTPRequest.blank('/v2/fake/os-certificates/')
|
||||
res_dict = self.controller.create(req)
|
||||
|
||||
pk, cert = fake_create_cert(self.context)
|
||||
response = {'certificate': {'data': cert, 'private_key': pk}}
|
||||
response = {
|
||||
'certificate': {'data': 'fakecert',
|
||||
'private_key': 'fakepk'}
|
||||
}
|
||||
self.assertEqual(res_dict, response)
|
||||
|
||||
|
||||
|
||||
@@ -20,7 +20,6 @@ import datetime
|
||||
from nova.api.openstack import compute
|
||||
from nova import db
|
||||
from nova.openstack.common import jsonutils
|
||||
import nova.openstack.common.rpc
|
||||
from nova import test
|
||||
from nova.tests.api.openstack import fakes
|
||||
from nova.tests import fake_instance
|
||||
|
||||
@@ -16,8 +16,8 @@
|
||||
# under the License.
|
||||
|
||||
from nova.api.openstack import compute
|
||||
import nova.compute.api
|
||||
from nova.openstack.common import jsonutils
|
||||
import nova.openstack.common.rpc
|
||||
from nova import test
|
||||
from nova.tests.api.openstack import fakes
|
||||
|
||||
|
||||
@@ -27,7 +27,6 @@ from nova import context
|
||||
from nova import db
|
||||
from nova.network import manager
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import rpc
|
||||
from nova import servicegroup
|
||||
from nova import test
|
||||
from nova.tests.api.openstack import fakes
|
||||
@@ -334,10 +333,8 @@ class ServersControllerCreateTest(test.TestCase):
|
||||
fake_method)
|
||||
self.stubs.Set(db, 'instance_get', instance_get)
|
||||
self.stubs.Set(db, 'instance_update', instance_update)
|
||||
self.stubs.Set(rpc, 'cast', fake_method)
|
||||
self.stubs.Set(db, 'instance_update_and_get_original',
|
||||
server_update)
|
||||
self.stubs.Set(rpc, 'queue_get_for', queue_get_for)
|
||||
self.stubs.Set(manager.VlanManager, 'allocate_fixed_ip',
|
||||
fake_method)
|
||||
|
||||
|
||||
@@ -18,11 +18,11 @@ import copy
|
||||
from webob import exc
|
||||
|
||||
from nova.api.openstack.compute.plugins.v3 import cells as cells_ext
|
||||
from nova.cells import rpc_driver
|
||||
from nova.cells import rpcapi as cells_rpcapi
|
||||
from nova import context
|
||||
from nova import exception
|
||||
from nova.openstack.common import timeutils
|
||||
from nova import rpc
|
||||
from nova import test
|
||||
from nova.tests.api.openstack import fakes
|
||||
|
||||
@@ -71,8 +71,9 @@ class BaseCellsTest(test.NoDBTestCase):
|
||||
|
||||
def _get_all_cell_info(self, *args):
|
||||
def insecure_transport_url(url):
|
||||
transport = rpc_driver.parse_transport_url(url)
|
||||
return rpc_driver.unparse_transport_url(transport, False)
|
||||
transport_url = rpc.get_transport_url(url)
|
||||
transport_url.hosts[0].password = None
|
||||
return str(transport_url)
|
||||
|
||||
cells = copy.deepcopy(self.fake_cells)
|
||||
cells[0]['transport_url'] = insecure_transport_url(
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
# Copyright (c) 2012 OpenStack Foundation
|
||||
# All Rights Reserved.
|
||||
# Copyright 2013 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
|
||||
@@ -13,28 +14,14 @@
|
||||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
from webob import exc
|
||||
import mox
|
||||
|
||||
from nova.api.openstack.compute.plugins.v3 import certificates
|
||||
from nova import context
|
||||
from nova import exception
|
||||
from nova.openstack.common import rpc
|
||||
from nova import test
|
||||
from nova.tests.api.openstack import fakes
|
||||
|
||||
|
||||
def fake_get_root_cert_not_found(context, *args, **kwargs):
|
||||
raise exception.CryptoCAFileNotFound(project='')
|
||||
|
||||
|
||||
def fake_get_root_cert(context, *args, **kwargs):
|
||||
return 'fakeroot'
|
||||
|
||||
|
||||
def fake_create_cert(context, *args, **kwargs):
|
||||
return 'fakepk', 'fakecert'
|
||||
|
||||
|
||||
class CertificatesTest(test.NoDBTestCase):
|
||||
def setUp(self):
|
||||
super(CertificatesTest, self).setUp()
|
||||
@@ -42,31 +29,42 @@ class CertificatesTest(test.NoDBTestCase):
|
||||
self.controller = certificates.CertificatesController()
|
||||
|
||||
def test_translate_certificate_view(self):
|
||||
pk, cert = fake_create_cert(self.context)
|
||||
pk, cert = 'fakepk', 'fakecert'
|
||||
view = certificates._translate_certificate_view(cert, pk)
|
||||
self.assertEqual(view['data'], cert)
|
||||
self.assertEqual(view['private_key'], pk)
|
||||
|
||||
def test_certificates_show_root(self):
|
||||
self.stubs.Set(rpc, 'call', fake_get_root_cert)
|
||||
req = fakes.HTTPRequestV3.blank('/os-certificates/root')
|
||||
self.mox.StubOutWithMock(self.controller.cert_rpcapi, 'fetch_ca')
|
||||
|
||||
self.controller.cert_rpcapi.fetch_ca(
|
||||
mox.IgnoreArg(), project_id='fake').AndReturn('fakeroot')
|
||||
|
||||
self.mox.ReplayAll()
|
||||
|
||||
req = fakes.HTTPRequest.blank('/v2/fake/os-certificates/root')
|
||||
res_dict = self.controller.show(req, 'root')
|
||||
|
||||
cert = fake_get_root_cert(self.context)
|
||||
response = {'certificate': {'data': cert, 'private_key': None}}
|
||||
response = {'certificate': {'data': 'fakeroot', 'private_key': None}}
|
||||
self.assertEqual(res_dict, response)
|
||||
|
||||
def test_certificates_show_not_found(self):
|
||||
self.stubs.Set(rpc, 'call', fake_get_root_cert_not_found)
|
||||
req = fakes.HTTPRequestV3.blank('/os-certificates/root')
|
||||
self.assertRaises(exc.HTTPNotFound, self.controller.show, req, 'root')
|
||||
|
||||
def test_certificates_create_certificate(self):
|
||||
self.stubs.Set(rpc, 'call', fake_create_cert)
|
||||
req = fakes.HTTPRequestV3.blank('/os-certificates/')
|
||||
self.mox.StubOutWithMock(self.controller.cert_rpcapi,
|
||||
'generate_x509_cert')
|
||||
|
||||
self.controller.cert_rpcapi.generate_x509_cert(
|
||||
mox.IgnoreArg(),
|
||||
user_id='fake_user',
|
||||
project_id='fake').AndReturn(('fakepk', 'fakecert'))
|
||||
|
||||
self.mox.ReplayAll()
|
||||
|
||||
req = fakes.HTTPRequest.blank('/v2/fake/os-certificates/')
|
||||
res_dict = self.controller.create(req)
|
||||
|
||||
pk, cert = fake_create_cert(self.context)
|
||||
response = {'certificate': {'data': cert, 'private_key': pk}}
|
||||
response = {
|
||||
'certificate': {'data': 'fakecert',
|
||||
'private_key': 'fakepk'}
|
||||
}
|
||||
self.assertEqual(res_dict, response)
|
||||
self.assertEqual(self.controller.create.wsgi_code, 201)
|
||||
|
||||
@@ -27,7 +27,6 @@ from nova.compute import flavors
|
||||
from nova import db
|
||||
from nova.network import manager
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import rpc
|
||||
from nova import test
|
||||
from nova.tests.api.openstack import fakes
|
||||
from nova.tests import fake_instance
|
||||
@@ -169,10 +168,8 @@ class ServersControllerCreateTest(test.TestCase):
|
||||
fake_method)
|
||||
self.stubs.Set(db, 'instance_get', instance_get)
|
||||
self.stubs.Set(db, 'instance_update', instance_update)
|
||||
self.stubs.Set(rpc, 'cast', fake_method)
|
||||
self.stubs.Set(db, 'instance_update_and_get_original',
|
||||
server_update)
|
||||
self.stubs.Set(rpc, 'queue_get_for', queue_get_for)
|
||||
self.stubs.Set(manager.VlanManager, 'allocate_fixed_ip',
|
||||
fake_method)
|
||||
|
||||
|
||||
@@ -29,7 +29,6 @@ from nova.compute import flavors
|
||||
from nova import db
|
||||
from nova.network import manager
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import rpc
|
||||
from nova import test
|
||||
from nova.tests.api.openstack import fakes
|
||||
from nova.tests import fake_instance
|
||||
@@ -135,10 +134,8 @@ class ServersControllerCreateTest(test.TestCase):
|
||||
fake_method)
|
||||
self.stubs.Set(db, 'instance_get', instance_get)
|
||||
self.stubs.Set(db, 'instance_update', instance_update)
|
||||
self.stubs.Set(rpc, 'cast', fake_method)
|
||||
self.stubs.Set(db, 'instance_update_and_get_original',
|
||||
server_update)
|
||||
self.stubs.Set(rpc, 'queue_get_for', queue_get_for)
|
||||
self.stubs.Set(manager.VlanManager, 'allocate_fixed_ip',
|
||||
fake_method)
|
||||
|
||||
|
||||
@@ -29,7 +29,6 @@ from nova import db
|
||||
import nova.db.api
|
||||
from nova.network import manager
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import rpc
|
||||
from nova import test
|
||||
from nova.tests.api.openstack import fakes
|
||||
from nova.tests import fake_instance
|
||||
@@ -207,10 +206,8 @@ class ServersControllerCreateTest(test.TestCase):
|
||||
fake_method)
|
||||
self.stubs.Set(db, 'instance_get', instance_get)
|
||||
self.stubs.Set(db, 'instance_update', instance_update)
|
||||
self.stubs.Set(rpc, 'cast', fake_method)
|
||||
self.stubs.Set(db, 'instance_update_and_get_original',
|
||||
server_update)
|
||||
self.stubs.Set(rpc, 'queue_get_for', queue_get_for)
|
||||
self.stubs.Set(manager.VlanManager, 'allocate_fixed_ip',
|
||||
fake_method)
|
||||
|
||||
|
||||
@@ -31,7 +31,6 @@ from nova import exception
|
||||
from nova.network import manager
|
||||
from nova.objects import instance as instance_obj
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import rpc
|
||||
from nova import test
|
||||
from nova.tests.api.openstack import fakes
|
||||
from nova.tests import fake_instance
|
||||
@@ -270,10 +269,8 @@ class ServersControllerCreateTest(test.TestCase):
|
||||
fake_method)
|
||||
self.stubs.Set(db, 'instance_get', instance_get)
|
||||
self.stubs.Set(db, 'instance_update', instance_update)
|
||||
self.stubs.Set(rpc, 'cast', fake_method)
|
||||
self.stubs.Set(db, 'instance_update_and_get_original',
|
||||
server_update)
|
||||
self.stubs.Set(rpc, 'queue_get_for', queue_get_for)
|
||||
self.stubs.Set(manager.VlanManager, 'allocate_fixed_ip',
|
||||
fake_method)
|
||||
|
||||
|
||||
@@ -29,7 +29,6 @@ from nova.compute import flavors
|
||||
from nova import db
|
||||
from nova.network import manager
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import rpc
|
||||
from nova import test
|
||||
from nova.tests.api.openstack import fakes
|
||||
from nova.tests import fake_instance
|
||||
@@ -136,10 +135,8 @@ class ServersControllerCreateTest(test.TestCase):
|
||||
fake_method)
|
||||
self.stubs.Set(db, 'instance_get', instance_get)
|
||||
self.stubs.Set(db, 'instance_update', instance_update)
|
||||
self.stubs.Set(rpc, 'cast', fake_method)
|
||||
self.stubs.Set(db, 'instance_update_and_get_original',
|
||||
server_update)
|
||||
self.stubs.Set(rpc, 'queue_get_for', queue_get_for)
|
||||
self.stubs.Set(manager.VlanManager, 'allocate_fixed_ip',
|
||||
fake_method)
|
||||
|
||||
|
||||
@@ -15,8 +15,7 @@
|
||||
# under the License.
|
||||
|
||||
import fixtures
|
||||
|
||||
from nova.openstack.common import rpc
|
||||
from oslo import messaging
|
||||
|
||||
|
||||
class CastAsCall(fixtures.Fixture):
|
||||
@@ -35,6 +34,18 @@ class CastAsCall(fixtures.Fixture):
|
||||
super(CastAsCall, self).__init__()
|
||||
self.stubs = stubs
|
||||
|
||||
@staticmethod
|
||||
def _stub_out(stubs, obj):
|
||||
orig_prepare = obj.prepare
|
||||
|
||||
def prepare(self, *args, **kwargs):
|
||||
cctxt = orig_prepare(self, *args, **kwargs)
|
||||
CastAsCall._stub_out(stubs, cctxt) # woo, recurse!
|
||||
return cctxt
|
||||
|
||||
stubs.Set(obj, 'prepare', prepare)
|
||||
stubs.Set(obj, 'cast', obj.call)
|
||||
|
||||
def setUp(self):
|
||||
super(CastAsCall, self).setUp()
|
||||
self.stubs.Set(rpc, 'cast', rpc.call)
|
||||
self._stub_out(self.stubs, messaging.RPCClient)
|
||||
|
||||
@@ -23,7 +23,6 @@ from oslo.config import cfg
|
||||
from nova.cells import messaging
|
||||
from nova.cells import utils as cells_utils
|
||||
from nova import context
|
||||
from nova.openstack.common import rpc
|
||||
from nova.openstack.common import timeutils
|
||||
from nova import test
|
||||
from nova.tests.cells import fakes
|
||||
@@ -73,11 +72,11 @@ class CellsManagerClassTestCase(test.NoDBTestCase):
|
||||
self.cells_manager.get_cell_info_for_neighbors(self.ctxt)
|
||||
|
||||
def test_post_start_hook_child_cell(self):
|
||||
self.mox.StubOutWithMock(self.driver, 'start_consumers')
|
||||
self.mox.StubOutWithMock(self.driver, 'start_servers')
|
||||
self.mox.StubOutWithMock(context, 'get_admin_context')
|
||||
self.mox.StubOutWithMock(self.cells_manager, '_update_our_parents')
|
||||
|
||||
self.driver.start_consumers(self.msg_runner)
|
||||
self.driver.start_servers(self.msg_runner)
|
||||
context.get_admin_context().AndReturn(self.ctxt)
|
||||
self.cells_manager._update_our_parents(self.ctxt)
|
||||
self.mox.ReplayAll()
|
||||
@@ -88,14 +87,14 @@ class CellsManagerClassTestCase(test.NoDBTestCase):
|
||||
msg_runner = cells_manager.msg_runner
|
||||
driver = cells_manager.driver
|
||||
|
||||
self.mox.StubOutWithMock(driver, 'start_consumers')
|
||||
self.mox.StubOutWithMock(driver, 'start_servers')
|
||||
self.mox.StubOutWithMock(context, 'get_admin_context')
|
||||
self.mox.StubOutWithMock(msg_runner,
|
||||
'ask_children_for_capabilities')
|
||||
self.mox.StubOutWithMock(msg_runner,
|
||||
'ask_children_for_capacities')
|
||||
|
||||
driver.start_consumers(msg_runner)
|
||||
driver.start_servers(msg_runner)
|
||||
context.get_admin_context().AndReturn(self.ctxt)
|
||||
msg_runner.ask_children_for_capabilities(self.ctxt)
|
||||
msg_runner.ask_children_for_capacities(self.ctxt)
|
||||
@@ -347,8 +346,7 @@ class CellsManagerClassTestCase(test.NoDBTestCase):
|
||||
'proxy_rpc_to_manager')
|
||||
fake_response = self._get_fake_response()
|
||||
cell_and_host = cells_utils.cell_with_item('fake-cell', 'fake-host')
|
||||
topic = rpc.queue_get_for(self.ctxt, CONF.compute_topic,
|
||||
cell_and_host)
|
||||
topic = "%s.%s" % (CONF.compute_topic, cell_and_host)
|
||||
self.msg_runner.proxy_rpc_to_manager(self.ctxt, 'fake-cell',
|
||||
'fake-host', topic, 'fake-rpc-msg',
|
||||
True, -1).AndReturn(fake_response)
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
# Copyright (c) 2012 Rackspace Hosting # All Rights Reserved.
|
||||
# Copyright (c) 2012 Rackspace Hosting
|
||||
# All Rights Reserved.
|
||||
# Copyright 2013 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
|
||||
@@ -15,7 +17,9 @@
|
||||
Tests For Cells Messaging module
|
||||
"""
|
||||
|
||||
import mox
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging as oslo_messaging
|
||||
|
||||
from nova.cells import messaging
|
||||
from nova.cells import utils as cells_utils
|
||||
@@ -29,17 +33,15 @@ from nova.objects import base as objects_base
|
||||
from nova.objects import fields as objects_fields
|
||||
from nova.objects import instance as instance_obj
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import rpc
|
||||
from nova.openstack.common import timeutils
|
||||
from nova.openstack.common import uuidutils
|
||||
from nova import rpc
|
||||
from nova import test
|
||||
from nova.tests.cells import fakes
|
||||
from nova.tests import fake_instance_actions
|
||||
|
||||
CONF = cfg.CONF
|
||||
CONF.import_opt('name', 'nova.cells.opts', group='cells')
|
||||
CONF.import_opt('allowed_rpc_exception_modules',
|
||||
'nova.openstack.common.rpc')
|
||||
|
||||
|
||||
class CellsMessageClassesTestCase(test.TestCase):
|
||||
@@ -48,10 +50,6 @@ class CellsMessageClassesTestCase(test.TestCase):
|
||||
super(CellsMessageClassesTestCase, self).setUp()
|
||||
fakes.init(self)
|
||||
self.ctxt = context.RequestContext('fake', 'fake')
|
||||
# Need to be able to deserialize test.TestingException.
|
||||
allowed_modules = CONF.allowed_rpc_exception_modules
|
||||
allowed_modules.append('nova.test')
|
||||
self.flags(allowed_rpc_exception_modules=allowed_modules)
|
||||
self.our_name = 'api-cell'
|
||||
self.msg_runner = fakes.get_message_runner(self.our_name)
|
||||
self.state_manager = self.msg_runner.state_manager
|
||||
@@ -902,17 +900,22 @@ class CellsTargetedMethodsTestCase(test.TestCase):
|
||||
|
||||
def test_proxy_rpc_to_manager_call(self):
|
||||
fake_topic = 'fake-topic'
|
||||
fake_rpc_message = 'fake-rpc-message'
|
||||
fake_rpc_message = {'method': 'fake_rpc_method', 'args': {}}
|
||||
fake_host_name = 'fake-host-name'
|
||||
|
||||
self.mox.StubOutWithMock(self.tgt_db_inst,
|
||||
'service_get_by_compute_host')
|
||||
self.mox.StubOutWithMock(rpc, 'call')
|
||||
|
||||
self.tgt_db_inst.service_get_by_compute_host(self.ctxt,
|
||||
fake_host_name)
|
||||
rpc.call(self.ctxt, fake_topic,
|
||||
fake_rpc_message, timeout=5).AndReturn('fake_result')
|
||||
|
||||
target = oslo_messaging.Target(topic='fake-topic')
|
||||
rpcclient = self.mox.CreateMockAnything()
|
||||
|
||||
self.mox.StubOutWithMock(rpc, 'get_client')
|
||||
rpc.get_client(target).AndReturn(rpcclient)
|
||||
rpcclient.prepare(timeout=5).AndReturn(rpcclient)
|
||||
rpcclient.call(mox.IgnoreArg(),
|
||||
'fake_rpc_method').AndReturn('fake_result')
|
||||
|
||||
self.mox.ReplayAll()
|
||||
|
||||
@@ -927,16 +930,20 @@ class CellsTargetedMethodsTestCase(test.TestCase):
|
||||
|
||||
def test_proxy_rpc_to_manager_cast(self):
|
||||
fake_topic = 'fake-topic'
|
||||
fake_rpc_message = 'fake-rpc-message'
|
||||
fake_rpc_message = {'method': 'fake_rpc_method', 'args': {}}
|
||||
fake_host_name = 'fake-host-name'
|
||||
|
||||
self.mox.StubOutWithMock(self.tgt_db_inst,
|
||||
'service_get_by_compute_host')
|
||||
self.mox.StubOutWithMock(rpc, 'cast')
|
||||
|
||||
self.tgt_db_inst.service_get_by_compute_host(self.ctxt,
|
||||
fake_host_name)
|
||||
rpc.cast(self.ctxt, fake_topic, fake_rpc_message)
|
||||
|
||||
target = oslo_messaging.Target(topic='fake-topic')
|
||||
rpcclient = self.mox.CreateMockAnything()
|
||||
|
||||
self.mox.StubOutWithMock(rpc, 'get_client')
|
||||
rpc.get_client(target).AndReturn(rpcclient)
|
||||
rpcclient.cast(mox.IgnoreArg(), 'fake_rpc_method')
|
||||
|
||||
self.mox.ReplayAll()
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
# Copyright (c) 2012 Rackspace Hosting
|
||||
# All Rights Reserved.
|
||||
# Copyright 2013 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
|
||||
@@ -16,15 +17,14 @@
|
||||
Tests For Cells RPC Communication Driver
|
||||
"""
|
||||
|
||||
import urlparse
|
||||
|
||||
import mox
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging as oslo_messaging
|
||||
|
||||
from nova.cells import messaging
|
||||
from nova.cells import rpc_driver
|
||||
from nova import context
|
||||
from nova.openstack.common import rpc
|
||||
from nova.openstack.common.rpc import dispatcher as rpc_dispatcher
|
||||
from nova import rpc
|
||||
from nova import test
|
||||
from nova.tests.cells import fakes
|
||||
|
||||
@@ -42,62 +42,42 @@ class CellsRPCDriverTestCase(test.NoDBTestCase):
|
||||
self.ctxt = context.RequestContext('fake', 'fake')
|
||||
self.driver = rpc_driver.CellsRPCDriver()
|
||||
|
||||
def test_start_consumers(self):
|
||||
def test_start_servers(self):
|
||||
self.flags(rpc_driver_queue_base='cells.intercell42', group='cells')
|
||||
rpc_consumers = []
|
||||
rpc_conns = []
|
||||
fake_msg_runner = fakes.get_message_runner('api-cell')
|
||||
call_info = {}
|
||||
|
||||
class FakeInterCellRPCDispatcher(object):
|
||||
def __init__(_self, msg_runner):
|
||||
self.assertEqual(fake_msg_runner, msg_runner)
|
||||
call_info['intercell_dispatcher'] = _self
|
||||
|
||||
class FakeRPCDispatcher(object):
|
||||
def __init__(_self, proxy_objs):
|
||||
self.assertEqual([call_info['intercell_dispatcher']],
|
||||
proxy_objs)
|
||||
call_info['rpc_dispatcher'] = _self
|
||||
|
||||
class FakeRPCConn(object):
|
||||
def create_consumer(_self, topic, proxy_obj, **kwargs):
|
||||
self.assertEqual(call_info['rpc_dispatcher'], proxy_obj)
|
||||
rpc_consumers.append((topic, kwargs))
|
||||
|
||||
def consume_in_thread(_self):
|
||||
pass
|
||||
|
||||
def _fake_create_connection(new):
|
||||
self.assertTrue(new)
|
||||
fake_conn = FakeRPCConn()
|
||||
rpc_conns.append(fake_conn)
|
||||
return fake_conn
|
||||
|
||||
self.stubs.Set(rpc, 'create_connection', _fake_create_connection)
|
||||
self.stubs.Set(rpc_driver, 'InterCellRPCDispatcher',
|
||||
FakeInterCellRPCDispatcher)
|
||||
self.stubs.Set(rpc_dispatcher, 'RpcDispatcher', FakeRPCDispatcher)
|
||||
self.mox.StubOutWithMock(rpc, 'get_server')
|
||||
|
||||
self.driver.start_consumers(fake_msg_runner)
|
||||
|
||||
for message_type in ['broadcast', 'response', 'targeted']:
|
||||
for message_type in messaging.MessageRunner.get_message_types():
|
||||
topic = 'cells.intercell42.' + message_type
|
||||
self.assertIn((topic, {'fanout': True}), rpc_consumers)
|
||||
self.assertIn((topic, {'fanout': False}), rpc_consumers)
|
||||
self.assertEqual(rpc_conns, self.driver.rpc_connections)
|
||||
target = oslo_messaging.Target(topic=topic, server=CONF.host)
|
||||
endpoints = [mox.IsA(FakeInterCellRPCDispatcher)]
|
||||
|
||||
def test_stop_consumers(self):
|
||||
call_info = {'closed': []}
|
||||
rpcserver = self.mox.CreateMockAnything()
|
||||
rpc.get_server(target, endpoints=endpoints).AndReturn(rpcserver)
|
||||
rpcserver.start()
|
||||
|
||||
class FakeRPCConn(object):
|
||||
def close(self):
|
||||
call_info['closed'].append(self)
|
||||
self.mox.ReplayAll()
|
||||
|
||||
fake_conns = [FakeRPCConn() for x in xrange(5)]
|
||||
self.driver.rpc_connections = fake_conns
|
||||
self.driver.stop_consumers()
|
||||
self.assertEqual(fake_conns, call_info['closed'])
|
||||
self.driver.start_servers(fake_msg_runner)
|
||||
|
||||
def test_stop_servers(self):
|
||||
call_info = {'stopped': []}
|
||||
|
||||
class FakeRPCServer(object):
|
||||
def stop(self):
|
||||
call_info['stopped'].append(self)
|
||||
|
||||
fake_servers = [FakeRPCServer() for x in xrange(5)]
|
||||
self.driver.rpc_servers = fake_servers
|
||||
self.driver.stop_servers()
|
||||
self.assertEqual(fake_servers, call_info['stopped'])
|
||||
|
||||
def test_send_message_to_cell_cast(self):
|
||||
msg_runner = fakes.get_message_runner('api-cell')
|
||||
@@ -105,37 +85,32 @@ class CellsRPCDriverTestCase(test.NoDBTestCase):
|
||||
message = messaging._TargetedMessage(msg_runner,
|
||||
self.ctxt, 'fake', {}, 'down', cell_state, fanout=False)
|
||||
|
||||
call_info = {}
|
||||
|
||||
def _fake_make_msg(method, namespace, **kwargs):
|
||||
call_info['rpc_method'] = method
|
||||
call_info['rpc_kwargs'] = kwargs
|
||||
return 'fake-message'
|
||||
|
||||
def _fake_cast_to_server(*args, **kwargs):
|
||||
call_info['cast_args'] = args
|
||||
call_info['cast_kwargs'] = kwargs
|
||||
|
||||
self.stubs.Set(rpc, 'cast_to_server', _fake_cast_to_server)
|
||||
self.stubs.Set(self.driver.intercell_rpcapi, 'make_namespaced_msg',
|
||||
_fake_make_msg)
|
||||
self.stubs.Set(self.driver.intercell_rpcapi, 'cast_to_server',
|
||||
_fake_cast_to_server)
|
||||
|
||||
self.driver.send_message_to_cell(cell_state, message)
|
||||
expected_server_params = {'hostname': 'rpc_host2',
|
||||
'password': 'password2',
|
||||
'port': 3092,
|
||||
'username': 'username2',
|
||||
'virtual_host': 'rpc_vhost2'}
|
||||
expected_cast_args = (self.ctxt, expected_server_params,
|
||||
'fake-message')
|
||||
expected_cast_kwargs = {'topic': 'cells.intercell.targeted'}
|
||||
expected_rpc_kwargs = {'message': message.to_json()}
|
||||
self.assertEqual(expected_cast_args, call_info['cast_args'])
|
||||
self.assertEqual(expected_cast_kwargs, call_info['cast_kwargs'])
|
||||
self.assertEqual('process_message', call_info['rpc_method'])
|
||||
self.assertEqual(expected_rpc_kwargs, call_info['rpc_kwargs'])
|
||||
expected_url = ('rabbit://%(username)s:%(password)s@'
|
||||
'%(hostname)s:%(port)d/%(virtual_host)s' %
|
||||
expected_server_params)
|
||||
|
||||
def check_transport_url(cell_state):
|
||||
return cell_state.db_info['transport_url'] == expected_url
|
||||
|
||||
rpcapi = self.driver.intercell_rpcapi
|
||||
rpcclient = self.mox.CreateMockAnything()
|
||||
|
||||
self.mox.StubOutWithMock(rpcapi, '_get_client')
|
||||
rpcapi._get_client(
|
||||
mox.Func(check_transport_url),
|
||||
'cells.intercell.targeted').AndReturn(rpcclient)
|
||||
|
||||
rpcclient.cast(mox.IgnoreArg(), 'process_message',
|
||||
message=message.to_json())
|
||||
|
||||
self.mox.ReplayAll()
|
||||
|
||||
self.driver.send_message_to_cell(cell_state, message)
|
||||
|
||||
def test_send_message_to_cell_fanout_cast(self):
|
||||
msg_runner = fakes.get_message_runner('api-cell')
|
||||
@@ -143,38 +118,33 @@ class CellsRPCDriverTestCase(test.NoDBTestCase):
|
||||
message = messaging._TargetedMessage(msg_runner,
|
||||
self.ctxt, 'fake', {}, 'down', cell_state, fanout=True)
|
||||
|
||||
call_info = {}
|
||||
|
||||
def _fake_make_msg(method, namespace, **kwargs):
|
||||
call_info['rpc_method'] = method
|
||||
call_info['rpc_kwargs'] = kwargs
|
||||
return 'fake-message'
|
||||
|
||||
def _fake_fanout_cast_to_server(*args, **kwargs):
|
||||
call_info['cast_args'] = args
|
||||
call_info['cast_kwargs'] = kwargs
|
||||
|
||||
self.stubs.Set(rpc, 'fanout_cast_to_server',
|
||||
_fake_fanout_cast_to_server)
|
||||
self.stubs.Set(self.driver.intercell_rpcapi, 'make_namespaced_msg',
|
||||
_fake_make_msg)
|
||||
self.stubs.Set(self.driver.intercell_rpcapi,
|
||||
'fanout_cast_to_server', _fake_fanout_cast_to_server)
|
||||
|
||||
self.driver.send_message_to_cell(cell_state, message)
|
||||
expected_server_params = {'hostname': 'rpc_host2',
|
||||
'password': 'password2',
|
||||
'port': 3092,
|
||||
'username': 'username2',
|
||||
'virtual_host': 'rpc_vhost2'}
|
||||
expected_cast_args = (self.ctxt, expected_server_params,
|
||||
'fake-message')
|
||||
expected_cast_kwargs = {'topic': 'cells.intercell.targeted'}
|
||||
expected_rpc_kwargs = {'message': message.to_json()}
|
||||
self.assertEqual(expected_cast_args, call_info['cast_args'])
|
||||
self.assertEqual(expected_cast_kwargs, call_info['cast_kwargs'])
|
||||
self.assertEqual('process_message', call_info['rpc_method'])
|
||||
self.assertEqual(expected_rpc_kwargs, call_info['rpc_kwargs'])
|
||||
expected_url = ('rabbit://%(username)s:%(password)s@'
|
||||
'%(hostname)s:%(port)d/%(virtual_host)s' %
|
||||
expected_server_params)
|
||||
|
||||
def check_transport_url(cell_state):
|
||||
return cell_state.db_info['transport_url'] == expected_url
|
||||
|
||||
rpcapi = self.driver.intercell_rpcapi
|
||||
rpcclient = self.mox.CreateMockAnything()
|
||||
|
||||
self.mox.StubOutWithMock(rpcapi, '_get_client')
|
||||
rpcapi._get_client(
|
||||
mox.Func(check_transport_url),
|
||||
'cells.intercell.targeted').AndReturn(rpcclient)
|
||||
|
||||
rpcclient.prepare(fanout=True).AndReturn(rpcclient)
|
||||
rpcclient.cast(mox.IgnoreArg(), 'process_message',
|
||||
message=message.to_json())
|
||||
|
||||
self.mox.ReplayAll()
|
||||
|
||||
self.driver.send_message_to_cell(cell_state, message)
|
||||
|
||||
def test_rpc_topic_uses_message_type(self):
|
||||
self.flags(rpc_driver_queue_base='cells.intercell42', group='cells')
|
||||
@@ -184,17 +154,33 @@ class CellsRPCDriverTestCase(test.NoDBTestCase):
|
||||
self.ctxt, 'fake', {}, 'down', fanout=True)
|
||||
message.message_type = 'fake-message-type'
|
||||
|
||||
call_info = {}
|
||||
expected_server_params = {'hostname': 'rpc_host2',
|
||||
'password': 'password2',
|
||||
'port': 3092,
|
||||
'username': 'username2',
|
||||
'virtual_host': 'rpc_vhost2'}
|
||||
expected_url = ('rabbit://%(username)s:%(password)s@'
|
||||
'%(hostname)s:%(port)d/%(virtual_host)s' %
|
||||
expected_server_params)
|
||||
|
||||
def _fake_fanout_cast_to_server(*args, **kwargs):
|
||||
call_info['topic'] = kwargs.get('topic')
|
||||
def check_transport_url(cell_state):
|
||||
return cell_state.db_info['transport_url'] == expected_url
|
||||
|
||||
self.stubs.Set(self.driver.intercell_rpcapi,
|
||||
'fanout_cast_to_server', _fake_fanout_cast_to_server)
|
||||
rpcapi = self.driver.intercell_rpcapi
|
||||
rpcclient = self.mox.CreateMockAnything()
|
||||
|
||||
self.mox.StubOutWithMock(rpcapi, '_get_client')
|
||||
rpcapi._get_client(
|
||||
mox.Func(check_transport_url),
|
||||
'cells.intercell42.fake-message-type').AndReturn(rpcclient)
|
||||
|
||||
rpcclient.prepare(fanout=True).AndReturn(rpcclient)
|
||||
rpcclient.cast(mox.IgnoreArg(), 'process_message',
|
||||
message=message.to_json())
|
||||
|
||||
self.mox.ReplayAll()
|
||||
|
||||
self.driver.send_message_to_cell(cell_state, message)
|
||||
self.assertEqual('cells.intercell42.fake-message-type',
|
||||
call_info['topic'])
|
||||
|
||||
def test_process_message(self):
|
||||
msg_runner = fakes.get_message_runner('api-cell')
|
||||
@@ -219,177 +205,3 @@ class CellsRPCDriverTestCase(test.NoDBTestCase):
|
||||
dispatcher.process_message(self.ctxt, message.to_json())
|
||||
self.assertEqual(message.to_json(), call_info['json_message'])
|
||||
self.assertTrue(call_info['process_called'])
|
||||
|
||||
|
||||
class ParseTransportURLTestCase(test.NoDBTestCase):
|
||||
def test_bad_scheme(self):
|
||||
url = "bad:///"
|
||||
self.assertRaises(ValueError, rpc_driver.parse_transport_url, url)
|
||||
|
||||
def test_query_string(self):
|
||||
url = "rabbit://u:p@h:10/virtual?ssl=1"
|
||||
self.assertRaises(ValueError, rpc_driver.parse_transport_url, url)
|
||||
|
||||
def test_query_string_old_urlparse(self):
|
||||
# Test parse_transport_url with urlparse.urlparse behaving as in python
|
||||
# 2.7.3 or below. See https://bugs.launchpad.net/nova/+bug/1202149
|
||||
url = "rabbit://u:p@h:10/virtual?ssl=1"
|
||||
|
||||
parse_result = urlparse.ParseResult(
|
||||
scheme='rabbit', netloc='u:p@h:10', path='/virtual?ssl=1',
|
||||
params='', query='', fragment=''
|
||||
)
|
||||
|
||||
self.mox.StubOutWithMock(urlparse, 'urlparse')
|
||||
urlparse.urlparse(url).AndReturn(parse_result)
|
||||
self.mox.ReplayAll()
|
||||
|
||||
self.assertRaises(ValueError, rpc_driver.parse_transport_url, url)
|
||||
|
||||
def test_query_string_new_urlparse(self):
|
||||
# Test parse_transport_url with urlparse.urlparse behaving as in python
|
||||
# 2.7.4 or above. See https://bugs.launchpad.net/nova/+bug/1202149
|
||||
url = "rabbit://u:p@h:10/virtual?ssl=1"
|
||||
|
||||
parse_result = urlparse.ParseResult(
|
||||
scheme='rabbit', netloc='u:p@h:10', path='/virtual',
|
||||
params='', query='ssl=1', fragment=''
|
||||
)
|
||||
|
||||
self.mox.StubOutWithMock(urlparse, 'urlparse')
|
||||
urlparse.urlparse(url).AndReturn(parse_result)
|
||||
self.mox.ReplayAll()
|
||||
|
||||
self.assertRaises(ValueError, rpc_driver.parse_transport_url, url)
|
||||
|
||||
def test_empty(self):
|
||||
url = "rabbit:"
|
||||
|
||||
result = rpc_driver.parse_transport_url(url)
|
||||
|
||||
self.assertEqual(result, {
|
||||
'username': None,
|
||||
'password': None,
|
||||
'hostname': None,
|
||||
'port': None,
|
||||
'virtual_host': None,
|
||||
})
|
||||
|
||||
def test_normal_parsing(self):
|
||||
url = "rabbit://us%65r:p%61ss@host.example.com:10/virtual%5fhost"
|
||||
|
||||
result = rpc_driver.parse_transport_url(url)
|
||||
|
||||
self.assertEqual(result, {
|
||||
'username': 'user',
|
||||
'password': 'pass',
|
||||
'hostname': 'host.example.com',
|
||||
'port': 10,
|
||||
'virtual_host': 'virtual_host',
|
||||
})
|
||||
|
||||
def test_normal_ipv6_parsing(self):
|
||||
url = "rabbit://us%65r:p%61ss@[ffff::1]:10/virtual%5fhost"
|
||||
|
||||
result = rpc_driver.parse_transport_url(url)
|
||||
|
||||
self.assertEqual(result, {
|
||||
'username': 'user',
|
||||
'password': 'pass',
|
||||
'hostname': 'ffff::1',
|
||||
'port': 10,
|
||||
'virtual_host': 'virtual_host',
|
||||
})
|
||||
|
||||
def test_normal_parsing_no_port(self):
|
||||
url = "rabbit://us%65r:p%61ss@host.example.com/virtual%5fhost"
|
||||
|
||||
result = rpc_driver.parse_transport_url(url)
|
||||
|
||||
self.assertEqual(result, {
|
||||
'username': 'user',
|
||||
'password': 'pass',
|
||||
'hostname': 'host.example.com',
|
||||
'port': None,
|
||||
'virtual_host': 'virtual_host',
|
||||
})
|
||||
|
||||
def test_normal_ipv6_parsing_no_port(self):
|
||||
url = "rabbit://us%65r:p%61ss@[ffff::1]/virtual%5fhost"
|
||||
|
||||
result = rpc_driver.parse_transport_url(url)
|
||||
|
||||
self.assertEqual(result, {
|
||||
'username': 'user',
|
||||
'password': 'pass',
|
||||
'hostname': 'ffff::1',
|
||||
'port': None,
|
||||
'virtual_host': 'virtual_host',
|
||||
})
|
||||
|
||||
def test_invalid_ipv6_parsing(self):
|
||||
url = "rabbit://user:pass@[ffff::1/virtual_host"
|
||||
self.assertRaises(ValueError, rpc_driver.parse_transport_url, url)
|
||||
|
||||
|
||||
class UnparseTransportURLTestCase(test.NoDBTestCase):
|
||||
def test_empty(self):
|
||||
result = rpc_driver.unparse_transport_url({})
|
||||
|
||||
self.assertEqual(result, "rabbit:///")
|
||||
|
||||
def test_username_only(self):
|
||||
result = rpc_driver.unparse_transport_url({'username': 'user/'})
|
||||
|
||||
self.assertEqual(result, "rabbit://user%2F@/")
|
||||
|
||||
def test_password_only(self):
|
||||
result = rpc_driver.unparse_transport_url({'password': 'pass/'})
|
||||
|
||||
self.assertEqual(result, "rabbit://:pass%2F@/")
|
||||
|
||||
def test_hostname_only(self):
|
||||
result = rpc_driver.unparse_transport_url({'hostname': 'example.com'})
|
||||
|
||||
self.assertEqual(result, "rabbit://example.com/")
|
||||
|
||||
def test_hostname_v6_only(self):
|
||||
result = rpc_driver.unparse_transport_url({'hostname': 'ffff::1'})
|
||||
|
||||
self.assertEqual(result, "rabbit://[ffff::1]/")
|
||||
|
||||
def test_port_only(self):
|
||||
result = rpc_driver.unparse_transport_url({'port': 2345})
|
||||
|
||||
self.assertEqual(result, "rabbit://:2345/")
|
||||
|
||||
def test_virtual_host_only(self):
|
||||
result = rpc_driver.unparse_transport_url({'virtual_host': 'virtual/'})
|
||||
|
||||
self.assertEqual(result, "rabbit:///virtual%2F")
|
||||
|
||||
def test_complete_secure(self):
|
||||
transport = {
|
||||
'username': 'user',
|
||||
'password': 'pass',
|
||||
'hostname': 'example.com',
|
||||
'port': 2345,
|
||||
'virtual_host': 'virtual',
|
||||
}
|
||||
|
||||
result = rpc_driver.unparse_transport_url(transport)
|
||||
|
||||
self.assertEqual(result, "rabbit://user:pass@example.com:2345/virtual")
|
||||
|
||||
def test_complete_insecure(self):
|
||||
transport = {
|
||||
'username': 'user',
|
||||
'password': 'pass',
|
||||
'hostname': 'example.com',
|
||||
'port': 2345,
|
||||
'virtual_host': 'virtual',
|
||||
}
|
||||
|
||||
result = rpc_driver.unparse_transport_url(transport, False)
|
||||
|
||||
self.assertEqual(result, "rabbit://user@example.com:2345/virtual")
|
||||
|
||||
@@ -21,7 +21,6 @@ import six
|
||||
|
||||
from nova.cells import rpcapi as cells_rpcapi
|
||||
from nova import exception
|
||||
from nova.openstack.common import rpc
|
||||
from nova import test
|
||||
|
||||
CONF = cfg.CONF
|
||||
@@ -41,27 +40,36 @@ class CellsAPITestCase(test.NoDBTestCase):
|
||||
def _stub_rpc_method(self, rpc_method, result):
|
||||
call_info = {}
|
||||
|
||||
def fake_rpc_method(ctxt, topic, msg, *args, **kwargs):
|
||||
def fake_rpc_prepare(**kwargs):
|
||||
if 'version' in kwargs:
|
||||
call_info['version'] = kwargs.pop('version')
|
||||
return self.cells_rpcapi.client
|
||||
|
||||
def fake_rpc_method(ctxt, method, **kwargs):
|
||||
call_info['context'] = ctxt
|
||||
call_info['topic'] = topic
|
||||
call_info['msg'] = msg
|
||||
call_info['method'] = method
|
||||
call_info['args'] = kwargs
|
||||
return result
|
||||
|
||||
self.stubs.Set(rpc, rpc_method, fake_rpc_method)
|
||||
self.stubs.Set(self.cells_rpcapi.client, 'prepare', fake_rpc_prepare)
|
||||
self.stubs.Set(self.cells_rpcapi.client, rpc_method, fake_rpc_method)
|
||||
|
||||
return call_info
|
||||
|
||||
def _check_result(self, call_info, method, args, version=None):
|
||||
if version is None:
|
||||
version = self.cells_rpcapi.BASE_RPC_API_VERSION
|
||||
self.assertEqual(self.cells_rpcapi.client.target.topic,
|
||||
self.fake_topic)
|
||||
self.assertEqual(self.fake_context, call_info['context'])
|
||||
self.assertEqual(self.fake_topic, call_info['topic'])
|
||||
self.assertEqual(method, call_info['msg']['method'])
|
||||
msg_version = call_info['msg']['version']
|
||||
self.assertIsInstance(msg_version, six.string_types,
|
||||
msg="Message version %s is not a string" %
|
||||
msg_version)
|
||||
self.assertEqual(version, call_info['msg']['version'])
|
||||
self.assertEqual(args, call_info['msg']['args'])
|
||||
self.assertEqual(method, call_info['method'])
|
||||
self.assertEqual(args, call_info['args'])
|
||||
if version is not None:
|
||||
self.assertIn('version', call_info)
|
||||
self.assertIsInstance(call_info['version'], six.string_types,
|
||||
msg="Message version %s is not a string" %
|
||||
call_info['version'])
|
||||
self.assertEqual(version, call_info['version'])
|
||||
else:
|
||||
self.assertNotIn('version', call_info)
|
||||
|
||||
def test_cast_compute_api_method(self):
|
||||
fake_cell_name = 'fake_cell_name'
|
||||
|
||||
@@ -18,11 +18,13 @@
|
||||
Unit Tests for nova.cert.rpcapi
|
||||
"""
|
||||
|
||||
import contextlib
|
||||
|
||||
import mock
|
||||
from oslo.config import cfg
|
||||
|
||||
from nova.cert import rpcapi as cert_rpcapi
|
||||
from nova import context
|
||||
from nova.openstack.common import rpc
|
||||
from nova import test
|
||||
|
||||
CONF = cfg.CONF
|
||||
@@ -31,33 +33,31 @@ CONF = cfg.CONF
|
||||
class CertRpcAPITestCase(test.NoDBTestCase):
|
||||
def _test_cert_api(self, method, **kwargs):
|
||||
ctxt = context.RequestContext('fake_user', 'fake_project')
|
||||
|
||||
rpcapi = cert_rpcapi.CertAPI()
|
||||
expected_retval = 'foo'
|
||||
expected_version = kwargs.pop('version', rpcapi.BASE_RPC_API_VERSION)
|
||||
expected_msg = rpcapi.make_msg(method, **kwargs)
|
||||
expected_msg['version'] = expected_version
|
||||
self.assertIsNotNone(rpcapi.client)
|
||||
self.assertEqual(rpcapi.client.target.topic, CONF.cert_topic)
|
||||
|
||||
self.call_ctxt = None
|
||||
self.call_topic = None
|
||||
self.call_msg = None
|
||||
self.call_timeout = None
|
||||
orig_prepare = rpcapi.client.prepare
|
||||
expected_version = kwargs.pop('version', rpcapi.client.target.version)
|
||||
|
||||
def _fake_call(_ctxt, _topic, _msg, _timeout):
|
||||
self.call_ctxt = _ctxt
|
||||
self.call_topic = _topic
|
||||
self.call_msg = _msg
|
||||
self.call_timeout = _timeout
|
||||
return expected_retval
|
||||
with contextlib.nested(
|
||||
mock.patch.object(rpcapi.client, 'call'),
|
||||
mock.patch.object(rpcapi.client, 'prepare'),
|
||||
mock.patch.object(rpcapi.client, 'can_send_version'),
|
||||
) as (
|
||||
rpc_mock, prepare_mock, csv_mock
|
||||
):
|
||||
prepare_mock.return_value = rpcapi.client
|
||||
rpc_mock.return_value = 'foo'
|
||||
csv_mock.side_effect = (
|
||||
lambda v: orig_prepare(version=v).can_send_version())
|
||||
|
||||
self.stubs.Set(rpc, 'call', _fake_call)
|
||||
retval = getattr(rpcapi, method)(ctxt, **kwargs)
|
||||
self.assertEqual(retval, rpc_mock.return_value)
|
||||
|
||||
retval = getattr(rpcapi, method)(ctxt, **kwargs)
|
||||
|
||||
self.assertEqual(retval, expected_retval)
|
||||
self.assertEqual(self.call_ctxt, ctxt)
|
||||
self.assertEqual(self.call_topic, CONF.cert_topic)
|
||||
self.assertEqual(self.call_msg, expected_msg)
|
||||
self.assertIsNone(self.call_timeout)
|
||||
prepare_mock.assert_called_once_with(version=expected_version)
|
||||
rpc_mock.assert_called_once_with(ctxt, method, **kwargs)
|
||||
|
||||
def test_revoke_certs_by_user(self):
|
||||
self._test_cert_api('revoke_certs_by_user', user_id='fake_user_id')
|
||||
|
||||
@@ -21,7 +21,6 @@
|
||||
|
||||
import base64
|
||||
import contextlib
|
||||
import copy
|
||||
import datetime
|
||||
import operator
|
||||
import sys
|
||||
@@ -33,6 +32,7 @@ import uuid
|
||||
import mock
|
||||
import mox
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
from testtools import matchers as testtools_matchers
|
||||
|
||||
import nova
|
||||
@@ -64,8 +64,6 @@ from nova.openstack.common.gettextutils import _
|
||||
from nova.openstack.common import importutils
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import log as logging
|
||||
from nova.openstack.common import rpc
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
from nova.openstack.common import timeutils
|
||||
from nova.openstack.common import uuidutils
|
||||
from nova import policy
|
||||
@@ -906,7 +904,7 @@ class ComputeVolumeTestCase(BaseTestCase):
|
||||
instance_type, all_mappings)
|
||||
|
||||
def test_volume_snapshot_create(self):
|
||||
self.assertRaises(rpc_common.ClientException,
|
||||
self.assertRaises(messaging.ExpectedException,
|
||||
self.compute.volume_snapshot_create, self.context,
|
||||
self.instance_object, 'fake_id', {})
|
||||
|
||||
@@ -917,7 +915,7 @@ class ComputeVolumeTestCase(BaseTestCase):
|
||||
self.instance_object, 'fake_id', {})
|
||||
|
||||
def test_volume_snapshot_delete(self):
|
||||
self.assertRaises(rpc_common.ClientException,
|
||||
self.assertRaises(messaging.ExpectedException,
|
||||
self.compute.volume_snapshot_delete, self.context,
|
||||
self.instance_object, 'fake_id', 'fake_id2', {})
|
||||
|
||||
@@ -2688,7 +2686,7 @@ class ComputeTestCase(BaseTestCase):
|
||||
jsonutils.to_primitive(instance), {}, {}, [], None,
|
||||
None, True, None, False)
|
||||
|
||||
self.assertRaises(rpc_common.ClientException,
|
||||
self.assertRaises(messaging.ExpectedException,
|
||||
self.compute.get_console_output, self.context,
|
||||
instance, 0)
|
||||
|
||||
@@ -2787,7 +2785,7 @@ class ComputeTestCase(BaseTestCase):
|
||||
jsonutils.to_primitive(instance), {}, {}, [], None,
|
||||
None, True, None, False)
|
||||
|
||||
self.assertRaises(rpc_common.ClientException,
|
||||
self.assertRaises(messaging.ExpectedException,
|
||||
self.compute.get_vnc_console,
|
||||
self.context, 'invalid', instance=instance)
|
||||
|
||||
@@ -2809,7 +2807,7 @@ class ComputeTestCase(BaseTestCase):
|
||||
jsonutils.to_primitive(instance), {}, {}, [], None,
|
||||
None, True, None, False)
|
||||
|
||||
self.assertRaises(rpc_common.ClientException,
|
||||
self.assertRaises(messaging.ExpectedException,
|
||||
self.compute.get_vnc_console,
|
||||
self.context, None, instance=instance)
|
||||
|
||||
@@ -2830,7 +2828,7 @@ class ComputeTestCase(BaseTestCase):
|
||||
jsonutils.to_primitive(instance), {}, {}, [], None,
|
||||
None, True, None, False)
|
||||
|
||||
self.assertRaises(rpc_common.ClientException,
|
||||
self.assertRaises(messaging.ExpectedException,
|
||||
self.compute.get_vnc_console,
|
||||
self.context, 'novnc', instance=instance)
|
||||
|
||||
@@ -2869,7 +2867,7 @@ class ComputeTestCase(BaseTestCase):
|
||||
jsonutils.to_primitive(instance), {}, {}, [], None,
|
||||
None, True, None, False)
|
||||
|
||||
self.assertRaises(rpc_common.ClientException,
|
||||
self.assertRaises(messaging.ExpectedException,
|
||||
self.compute.get_spice_console,
|
||||
self.context, 'invalid', instance=instance)
|
||||
|
||||
@@ -2891,7 +2889,7 @@ class ComputeTestCase(BaseTestCase):
|
||||
jsonutils.to_primitive(instance), {}, {}, [], None,
|
||||
None, True, None, False)
|
||||
|
||||
self.assertRaises(rpc_common.ClientException,
|
||||
self.assertRaises(messaging.ExpectedException,
|
||||
self.compute.get_spice_console,
|
||||
self.context, None, instance=instance)
|
||||
|
||||
@@ -3213,7 +3211,7 @@ class ComputeTestCase(BaseTestCase):
|
||||
requested_networks=None,
|
||||
vpn=False, macs=None,
|
||||
security_groups=[], dhcp_options=None
|
||||
).AndRaise(rpc_common.RemoteError())
|
||||
).AndRaise(messaging.RemoteError())
|
||||
self.compute.network_api.deallocate_for_instance(
|
||||
mox.IgnoreArg(),
|
||||
mox.IgnoreArg(),
|
||||
@@ -3223,7 +3221,7 @@ class ComputeTestCase(BaseTestCase):
|
||||
|
||||
self.mox.ReplayAll()
|
||||
|
||||
self.assertRaises(rpc_common.RemoteError,
|
||||
self.assertRaises(messaging.RemoteError,
|
||||
self.compute.run_instance,
|
||||
self.context, instance, {}, {}, None, None, None,
|
||||
True, None, False)
|
||||
@@ -3347,11 +3345,11 @@ class ComputeTestCase(BaseTestCase):
|
||||
self.mox.StubOutWithMock(self.compute, "_prep_block_device")
|
||||
self.compute._prep_block_device(
|
||||
mox.IgnoreArg(), mox.IgnoreArg(),
|
||||
mox.IgnoreArg()).AndRaise(rpc.common.RemoteError('', '', ''))
|
||||
mox.IgnoreArg()).AndRaise(messaging.RemoteError('', '', ''))
|
||||
|
||||
self.mox.ReplayAll()
|
||||
|
||||
self.assertRaises(rpc.common.RemoteError,
|
||||
self.assertRaises(messaging.RemoteError,
|
||||
self.compute.run_instance,
|
||||
self.context, instance, {}, {}, None, None, None,
|
||||
True, None, False)
|
||||
@@ -5098,7 +5096,7 @@ class ComputeTestCase(BaseTestCase):
|
||||
exc_info = None
|
||||
|
||||
def fake_db_fault_create(ctxt, values):
|
||||
self.assertTrue('raise rpc_common.RemoteError'
|
||||
self.assertTrue('raise messaging.RemoteError'
|
||||
in values['details'])
|
||||
del values['details']
|
||||
|
||||
@@ -5111,8 +5109,8 @@ class ComputeTestCase(BaseTestCase):
|
||||
self.assertEqual(expected, values)
|
||||
|
||||
try:
|
||||
raise rpc_common.RemoteError('test', 'My Test Message')
|
||||
except rpc_common.RemoteError as exc:
|
||||
raise messaging.RemoteError('test', 'My Test Message')
|
||||
except messaging.RemoteError as exc:
|
||||
exc_info = sys.exc_info()
|
||||
|
||||
self.stubs.Set(nova.db, 'instance_fault_create', fake_db_fault_create)
|
||||
@@ -6836,10 +6834,12 @@ class ComputeAPITestCase(BaseTestCase):
|
||||
self.assertEqual(inst_ref['vm_state'], vm_states.ACTIVE)
|
||||
self.assertIsNone(inst_ref['task_state'])
|
||||
|
||||
def fake_rpc_method(context, topic, msg, do_cast=True):
|
||||
self.assertFalse(do_cast)
|
||||
def fake_set_admin_password(self, context, **kwargs):
|
||||
pass
|
||||
|
||||
self.stubs.Set(rpc, 'call', fake_rpc_method)
|
||||
self.stubs.Set(compute_rpcapi.ComputeAPI,
|
||||
'set_admin_password',
|
||||
fake_set_admin_password)
|
||||
|
||||
self.compute_api.set_admin_password(self.context, inst_ref)
|
||||
|
||||
@@ -7967,26 +7967,20 @@ class ComputeAPITestCase(BaseTestCase):
|
||||
'host': 'fake_console_host',
|
||||
'port': 'fake_console_port',
|
||||
'internal_access_path': 'fake_access_path',
|
||||
'instance_uuid': fake_instance['uuid']}
|
||||
fake_connect_info2 = copy.deepcopy(fake_connect_info)
|
||||
fake_connect_info2['access_url'] = 'fake_console_url'
|
||||
'instance_uuid': fake_instance['uuid'],
|
||||
'access_url': 'fake_console_url'}
|
||||
|
||||
self.mox.StubOutWithMock(rpc, 'call')
|
||||
rpcapi = compute_rpcapi.ComputeAPI
|
||||
self.mox.StubOutWithMock(rpcapi, 'get_vnc_console')
|
||||
rpcapi.get_vnc_console(
|
||||
self.context, instance=fake_instance,
|
||||
console_type=fake_console_type).AndReturn(fake_connect_info)
|
||||
|
||||
rpc_msg1 = {'method': 'get_vnc_console',
|
||||
'namespace': None,
|
||||
'args': {'instance': fake_instance,
|
||||
'console_type': fake_console_type},
|
||||
'version': '3.2'}
|
||||
rpc_msg2 = {'method': 'authorize_console',
|
||||
'namespace': None,
|
||||
'args': fake_connect_info,
|
||||
'version': '2.0'}
|
||||
|
||||
rpc.call(self.context, 'compute.%s' % fake_instance['host'],
|
||||
rpc_msg1, None).AndReturn(fake_connect_info2)
|
||||
rpc.call(self.context, CONF.consoleauth_topic,
|
||||
rpc_msg2, None).AndReturn(None)
|
||||
self.mox.StubOutWithMock(self.compute_api.consoleauth_rpcapi,
|
||||
'authorize_console')
|
||||
self.compute_api.consoleauth_rpcapi.authorize_console(
|
||||
self.context, 'fake_token', fake_console_type, 'fake_console_host',
|
||||
'fake_console_port', 'fake_access_path', 'fake_uuid')
|
||||
|
||||
self.mox.ReplayAll()
|
||||
|
||||
@@ -8014,26 +8008,20 @@ class ComputeAPITestCase(BaseTestCase):
|
||||
'host': 'fake_console_host',
|
||||
'port': 'fake_console_port',
|
||||
'internal_access_path': 'fake_access_path',
|
||||
'instance_uuid': fake_instance['uuid']}
|
||||
fake_connect_info2 = copy.deepcopy(fake_connect_info)
|
||||
fake_connect_info2['access_url'] = 'fake_console_url'
|
||||
'instance_uuid': fake_instance['uuid'],
|
||||
'access_url': 'fake_console_url'}
|
||||
|
||||
self.mox.StubOutWithMock(rpc, 'call')
|
||||
rpcapi = compute_rpcapi.ComputeAPI
|
||||
self.mox.StubOutWithMock(rpcapi, 'get_spice_console')
|
||||
rpcapi.get_spice_console(
|
||||
self.context, instance=fake_instance,
|
||||
console_type=fake_console_type).AndReturn(fake_connect_info)
|
||||
|
||||
rpc_msg1 = {'method': 'get_spice_console',
|
||||
'namespace': None,
|
||||
'args': {'instance': fake_instance,
|
||||
'console_type': fake_console_type},
|
||||
'version': '3.1'}
|
||||
rpc_msg2 = {'method': 'authorize_console',
|
||||
'namespace': None,
|
||||
'args': fake_connect_info,
|
||||
'version': '2.0'}
|
||||
|
||||
rpc.call(self.context, 'compute.%s' % fake_instance['host'],
|
||||
rpc_msg1, None).AndReturn(fake_connect_info2)
|
||||
rpc.call(self.context, CONF.consoleauth_topic,
|
||||
rpc_msg2, None).AndReturn(None)
|
||||
self.mox.StubOutWithMock(self.compute_api.consoleauth_rpcapi,
|
||||
'authorize_console')
|
||||
self.compute_api.consoleauth_rpcapi.authorize_console(
|
||||
self.context, 'fake_token', fake_console_type, 'fake_console_host',
|
||||
'fake_console_port', 'fake_access_path', 'fake_uuid')
|
||||
|
||||
self.mox.ReplayAll()
|
||||
|
||||
@@ -8056,15 +8044,11 @@ class ComputeAPITestCase(BaseTestCase):
|
||||
fake_tail_length = 699
|
||||
fake_console_output = 'fake console output'
|
||||
|
||||
self.mox.StubOutWithMock(rpc, 'call')
|
||||
|
||||
rpc_msg = {'method': 'get_console_output',
|
||||
'namespace': None,
|
||||
'args': {'instance': fake_instance,
|
||||
'tail_length': fake_tail_length},
|
||||
'version': compute_rpcapi.ComputeAPI.BASE_RPC_API_VERSION}
|
||||
rpc.call(self.context, 'compute.%s' % fake_instance['host'],
|
||||
rpc_msg, None).AndReturn(fake_console_output)
|
||||
rpcapi = compute_rpcapi.ComputeAPI
|
||||
self.mox.StubOutWithMock(rpcapi, 'get_console_output')
|
||||
rpcapi.get_console_output(
|
||||
self.context, instance=fake_instance,
|
||||
tail_length=fake_tail_length).AndReturn(fake_console_output)
|
||||
|
||||
self.mox.ReplayAll()
|
||||
|
||||
@@ -8173,13 +8157,27 @@ class ComputeAPITestCase(BaseTestCase):
|
||||
def fake_rpc_attach_volume(self, context, **kwargs):
|
||||
called['fake_rpc_attach_volume'] = True
|
||||
|
||||
def fake_rpc_reserve_block_device_name(self, context, **kwargs):
|
||||
called['fake_rpc_reserve_block_device_name'] = True
|
||||
|
||||
self.stubs.Set(cinder.API, 'get', fake_volume_get)
|
||||
self.stubs.Set(cinder.API, 'check_attach', fake_check_attach)
|
||||
self.stubs.Set(cinder.API, 'reserve_volume',
|
||||
fake_reserve_volume)
|
||||
self.stubs.Set(compute_rpcapi.ComputeAPI,
|
||||
'reserve_block_device_name',
|
||||
fake_rpc_reserve_block_device_name)
|
||||
self.stubs.Set(compute_rpcapi.ComputeAPI, 'attach_volume',
|
||||
fake_rpc_attach_volume)
|
||||
|
||||
instance = self._create_fake_instance()
|
||||
self.compute_api.attach_volume(self.context, instance, 1, device=None)
|
||||
self.assertTrue(called.get('fake_check_attach'))
|
||||
self.assertTrue(called.get('fake_reserve_volume'))
|
||||
self.assertTrue(called.get('fake_reserve_volume'))
|
||||
self.assertTrue(called.get('fake_rpc_reserve_block_device_name'))
|
||||
self.assertTrue(called.get('fake_rpc_attach_volume'))
|
||||
|
||||
def test_detach_volume(self):
|
||||
# Ensure volume can be detached from instance
|
||||
called = {}
|
||||
@@ -8430,15 +8428,11 @@ class ComputeAPITestCase(BaseTestCase):
|
||||
rule_get)
|
||||
self.stubs.Set(self.compute_api.db, 'security_group_get', group_get)
|
||||
|
||||
self.mox.StubOutWithMock(rpc, 'cast')
|
||||
topic = rpc.queue_get_for(self.context, CONF.compute_topic,
|
||||
instance['host'])
|
||||
rpc.cast(self.context, topic,
|
||||
{"method": "refresh_instance_security_rules",
|
||||
"namespace": None,
|
||||
"args": {'instance': jsonutils.to_primitive(instance)},
|
||||
"version":
|
||||
compute_rpcapi.SecurityGroupAPI.BASE_RPC_API_VERSION})
|
||||
rpcapi = self.security_group_api.security_group_rpcapi
|
||||
self.mox.StubOutWithMock(rpcapi, 'refresh_instance_security_rules')
|
||||
rpcapi.refresh_instance_security_rules(self.context,
|
||||
instance['host'],
|
||||
instance)
|
||||
self.mox.ReplayAll()
|
||||
|
||||
self.security_group_api.trigger_members_refresh(self.context, [1])
|
||||
@@ -8460,15 +8454,11 @@ class ComputeAPITestCase(BaseTestCase):
|
||||
rule_get)
|
||||
self.stubs.Set(self.compute_api.db, 'security_group_get', group_get)
|
||||
|
||||
self.mox.StubOutWithMock(rpc, 'cast')
|
||||
topic = rpc.queue_get_for(self.context, CONF.compute_topic,
|
||||
instance['host'])
|
||||
rpc.cast(self.context, topic,
|
||||
{"method": "refresh_instance_security_rules",
|
||||
"namespace": None,
|
||||
"args": {'instance': jsonutils.to_primitive(instance)},
|
||||
"version":
|
||||
compute_rpcapi.SecurityGroupAPI.BASE_RPC_API_VERSION})
|
||||
rpcapi = self.security_group_api.security_group_rpcapi
|
||||
self.mox.StubOutWithMock(rpcapi, 'refresh_instance_security_rules')
|
||||
rpcapi.refresh_instance_security_rules(self.context,
|
||||
instance['host'],
|
||||
instance)
|
||||
self.mox.ReplayAll()
|
||||
|
||||
self.security_group_api.trigger_members_refresh(self.context, [1, 2])
|
||||
@@ -8488,7 +8478,9 @@ class ComputeAPITestCase(BaseTestCase):
|
||||
rule_get)
|
||||
self.stubs.Set(self.compute_api.db, 'security_group_get', group_get)
|
||||
|
||||
self.mox.StubOutWithMock(rpc, 'cast')
|
||||
rpcapi = self.security_group_api.security_group_rpcapi
|
||||
self.mox.StubOutWithMock(rpcapi, 'refresh_instance_security_rules')
|
||||
|
||||
self.mox.ReplayAll()
|
||||
|
||||
self.security_group_api.trigger_members_refresh(self.context, [1])
|
||||
@@ -8502,15 +8494,11 @@ class ComputeAPITestCase(BaseTestCase):
|
||||
|
||||
self.stubs.Set(self.compute_api.db, 'security_group_get', group_get)
|
||||
|
||||
self.mox.StubOutWithMock(rpc, 'cast')
|
||||
topic = rpc.queue_get_for(self.context, CONF.compute_topic,
|
||||
instance['host'])
|
||||
rpc.cast(self.context, topic,
|
||||
{"method": "refresh_instance_security_rules",
|
||||
"namespace": None,
|
||||
"args": {'instance': jsonutils.to_primitive(instance)},
|
||||
"version":
|
||||
compute_rpcapi.SecurityGroupAPI.BASE_RPC_API_VERSION})
|
||||
rpcapi = self.security_group_api.security_group_rpcapi
|
||||
self.mox.StubOutWithMock(rpcapi, 'refresh_instance_security_rules')
|
||||
rpcapi.refresh_instance_security_rules(self.context,
|
||||
instance['host'],
|
||||
instance)
|
||||
self.mox.ReplayAll()
|
||||
|
||||
self.security_group_api.trigger_rules_refresh(self.context, [1])
|
||||
@@ -8524,15 +8512,11 @@ class ComputeAPITestCase(BaseTestCase):
|
||||
|
||||
self.stubs.Set(self.compute_api.db, 'security_group_get', group_get)
|
||||
|
||||
self.mox.StubOutWithMock(rpc, 'cast')
|
||||
topic = rpc.queue_get_for(self.context, CONF.compute_topic,
|
||||
instance['host'])
|
||||
rpc.cast(self.context, topic,
|
||||
{"method": "refresh_instance_security_rules",
|
||||
"namespace": None,
|
||||
"args": {'instance': jsonutils.to_primitive(instance)},
|
||||
"version":
|
||||
compute_rpcapi.SecurityGroupAPI.BASE_RPC_API_VERSION})
|
||||
rpcapi = self.security_group_api.security_group_rpcapi
|
||||
self.mox.StubOutWithMock(rpcapi, 'refresh_instance_security_rules')
|
||||
rpcapi.refresh_instance_security_rules(self.context,
|
||||
instance['host'],
|
||||
instance)
|
||||
self.mox.ReplayAll()
|
||||
|
||||
self.security_group_api.trigger_rules_refresh(self.context, [1, 2])
|
||||
@@ -8544,7 +8528,8 @@ class ComputeAPITestCase(BaseTestCase):
|
||||
|
||||
self.stubs.Set(self.compute_api.db, 'security_group_get', group_get)
|
||||
|
||||
self.mox.StubOutWithMock(rpc, 'cast')
|
||||
rpcapi = self.security_group_api.security_group_rpcapi
|
||||
self.mox.StubOutWithMock(rpcapi, 'refresh_instance_security_rules')
|
||||
self.mox.ReplayAll()
|
||||
|
||||
self.security_group_api.trigger_rules_refresh(self.context, [1, 2])
|
||||
@@ -8726,7 +8711,7 @@ class ComputeAPITestCase(BaseTestCase):
|
||||
self.compute_api.get_instance_bdms({}, instance))
|
||||
|
||||
|
||||
def fake_rpc_method(context, topic, msg, do_cast=True):
|
||||
def fake_rpc_method(context, method, **kwargs):
|
||||
pass
|
||||
|
||||
|
||||
@@ -8752,8 +8737,8 @@ class ComputeAPIAggrTestCase(BaseTestCase):
|
||||
super(ComputeAPIAggrTestCase, self).setUp()
|
||||
self.api = compute_api.AggregateAPI()
|
||||
self.context = context.get_admin_context()
|
||||
self.stubs.Set(rpc, 'call', fake_rpc_method)
|
||||
self.stubs.Set(rpc, 'cast', fake_rpc_method)
|
||||
self.stubs.Set(self.api.compute_rpcapi.client, 'call', fake_rpc_method)
|
||||
self.stubs.Set(self.api.compute_rpcapi.client, 'cast', fake_rpc_method)
|
||||
|
||||
def test_aggregate_no_zone(self):
|
||||
# Ensure we can create an aggregate without an availability zone
|
||||
|
||||
@@ -444,7 +444,7 @@ class _ComputeAPIUnitTestMixIn(object):
|
||||
def _test_downed_host_part(self, inst, updates, delete_time, delete_type):
|
||||
inst.info_cache.delete()
|
||||
compute_utils.notify_about_instance_usage(
|
||||
mox.IgnoreArg(), self.context, inst,
|
||||
self.compute_api.notifier, self.context, inst,
|
||||
'%s.start' % delete_type)
|
||||
self.context.elevated().AndReturn(self.context)
|
||||
self.compute_api.network_api.deallocate_for_instance(
|
||||
@@ -462,7 +462,7 @@ class _ComputeAPIUnitTestMixIn(object):
|
||||
db.instance_destroy(self.context, inst.uuid,
|
||||
constraint=None).AndReturn(fake_inst)
|
||||
compute_utils.notify_about_instance_usage(
|
||||
mox.IgnoreArg(),
|
||||
self.compute_api.notifier,
|
||||
self.context, inst, '%s.end' % delete_type,
|
||||
system_metadata=inst.system_metadata)
|
||||
|
||||
@@ -669,10 +669,9 @@ class _ComputeAPIUnitTestMixIn(object):
|
||||
rpcapi.terminate_instance(self.context, inst, [],
|
||||
reservations=None)
|
||||
else:
|
||||
compute_utils.notify_about_instance_usage(mox.IgnoreArg(),
|
||||
self.context,
|
||||
inst,
|
||||
'delete.start')
|
||||
compute_utils.notify_about_instance_usage(
|
||||
self.compute_api.notifier, self.context,
|
||||
inst, 'delete.start')
|
||||
db.constraint(host=mox.IgnoreArg()).AndReturn('constraint')
|
||||
delete_time = datetime.datetime(1955, 11, 5, 9, 30,
|
||||
tzinfo=iso8601.iso8601.Utc())
|
||||
@@ -682,7 +681,8 @@ class _ComputeAPIUnitTestMixIn(object):
|
||||
db.instance_destroy(self.context, inst.uuid,
|
||||
constraint='constraint').AndReturn(fake_inst)
|
||||
compute_utils.notify_about_instance_usage(
|
||||
mox.IgnoreArg(), self.context, inst, 'delete.end',
|
||||
self.compute_api.notifier, self.context,
|
||||
inst, 'delete.end',
|
||||
system_metadata=inst.system_metadata)
|
||||
|
||||
self.mox.ReplayAll()
|
||||
@@ -715,10 +715,9 @@ class _ComputeAPIUnitTestMixIn(object):
|
||||
self.mox.StubOutWithMock(db, 'block_device_mapping_destroy')
|
||||
|
||||
inst.info_cache.delete()
|
||||
compute_utils.notify_about_instance_usage(mox.IgnoreArg(),
|
||||
self.context,
|
||||
inst,
|
||||
'delete.start')
|
||||
compute_utils.notify_about_instance_usage(
|
||||
self.compute_api.notifier, self.context,
|
||||
inst, 'delete.start')
|
||||
self.context.elevated().MultipleTimes().AndReturn(self.context)
|
||||
if self.cell_type != 'api':
|
||||
self.compute_api.network_api.deallocate_for_instance(
|
||||
@@ -731,9 +730,9 @@ class _ComputeAPIUnitTestMixIn(object):
|
||||
|
||||
inst.destroy()
|
||||
compute_utils.notify_about_instance_usage(
|
||||
mox.IgnoreArg(),
|
||||
self.context, inst, 'delete.end',
|
||||
system_metadata=inst.system_metadata)
|
||||
self.compute_api.notifier, self.context,
|
||||
inst, 'delete.end',
|
||||
system_metadata=inst.system_metadata)
|
||||
|
||||
self.mox.ReplayAll()
|
||||
self.compute_api._local_delete(self.context, inst, bdms,
|
||||
|
||||
@@ -30,10 +30,10 @@ from nova import db
|
||||
from nova import exception
|
||||
from nova.image import glance
|
||||
from nova.network import api as network_api
|
||||
from nova import notifier as notify
|
||||
from nova.objects import instance as instance_obj
|
||||
from nova.openstack.common import importutils
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova import rpc
|
||||
from nova import test
|
||||
from nova.tests import fake_instance
|
||||
from nova.tests import fake_instance_actions
|
||||
@@ -424,7 +424,7 @@ class UsageInfoTestCase(test.TestCase):
|
||||
instance.system_metadata.update(sys_metadata)
|
||||
instance.save()
|
||||
compute_utils.notify_usage_exists(
|
||||
notify.get_notifier('compute'), self.context, instance)
|
||||
rpc.get_notifier('compute'), self.context, instance)
|
||||
self.assertEqual(len(fake_notifier.NOTIFICATIONS), 1)
|
||||
msg = fake_notifier.NOTIFICATIONS[0]
|
||||
self.assertEqual(msg.priority, 'INFO')
|
||||
@@ -466,7 +466,7 @@ class UsageInfoTestCase(test.TestCase):
|
||||
self.context.elevated(read_deleted='yes'), instance_id,
|
||||
expected_attrs=['system_metadata'])
|
||||
compute_utils.notify_usage_exists(
|
||||
notify.get_notifier('compute'), self.context, instance)
|
||||
rpc.get_notifier('compute'), self.context, instance)
|
||||
msg = fake_notifier.NOTIFICATIONS[-1]
|
||||
self.assertEqual(msg.priority, 'INFO')
|
||||
self.assertEqual(msg.event_type, 'compute.instance.exists')
|
||||
@@ -497,7 +497,7 @@ class UsageInfoTestCase(test.TestCase):
|
||||
expected_attrs=['metadata', 'system_metadata', 'info_cache'])
|
||||
self.compute.terminate_instance(self.context, instance, [], [])
|
||||
compute_utils.notify_usage_exists(
|
||||
notify.get_notifier('compute'), self.context, instance)
|
||||
rpc.get_notifier('compute'), self.context, instance)
|
||||
msg = fake_notifier.NOTIFICATIONS[-1]
|
||||
self.assertEqual(msg.priority, 'INFO')
|
||||
self.assertEqual(msg.event_type, 'compute.instance.exists')
|
||||
@@ -532,7 +532,7 @@ class UsageInfoTestCase(test.TestCase):
|
||||
instance.save()
|
||||
extra_usage_info = {'image_name': 'fake_name'}
|
||||
compute_utils.notify_about_instance_usage(
|
||||
notify.get_notifier('compute'),
|
||||
rpc.get_notifier('compute'),
|
||||
self.context, instance, 'create.start',
|
||||
extra_usage_info=extra_usage_info)
|
||||
self.assertEqual(len(fake_notifier.NOTIFICATIONS), 1)
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
# Copyright (c) 2012 OpenStack Foundation
|
||||
# All Rights Reserved.
|
||||
# Copyright 2013 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
|
||||
@@ -15,10 +16,8 @@
|
||||
|
||||
from nova.cells import utils as cells_utils
|
||||
from nova import compute
|
||||
from nova.compute import rpcapi as compute_rpcapi
|
||||
from nova import context
|
||||
from nova import exception
|
||||
from nova.openstack.common import rpc
|
||||
from nova import test
|
||||
from nova.tests import fake_notifier
|
||||
from nova.tests.objects import test_objects
|
||||
@@ -41,12 +40,10 @@ class ComputeHostAPITestCase(test.TestCase):
|
||||
for index, obj in enumerate(obj_list):
|
||||
self._compare_obj(obj, db_obj_list[index])
|
||||
|
||||
def _mock_rpc_call(self, expected_message, result=None):
|
||||
if result is None:
|
||||
result = 'fake-result'
|
||||
self.mox.StubOutWithMock(rpc, 'call')
|
||||
rpc.call(self.ctxt, 'compute.fake_host',
|
||||
expected_message, None).AndReturn(result)
|
||||
def _mock_rpc_call(self, method, **kwargs):
|
||||
self.mox.StubOutWithMock(self.host_api.rpcapi, method)
|
||||
getattr(self.host_api.rpcapi, method)(
|
||||
self.ctxt, **kwargs).AndReturn('fake-result')
|
||||
|
||||
def _mock_assert_host_exists(self):
|
||||
"""Sets it so that the host API always thinks that 'fake_host'
|
||||
@@ -59,12 +56,9 @@ class ComputeHostAPITestCase(test.TestCase):
|
||||
|
||||
def test_set_host_enabled(self):
|
||||
self._mock_assert_host_exists()
|
||||
self._mock_rpc_call(
|
||||
{'method': 'set_host_enabled',
|
||||
'namespace': None,
|
||||
'args': {'enabled': 'fake_enabled'},
|
||||
'version': compute_rpcapi.ComputeAPI.BASE_RPC_API_VERSION})
|
||||
|
||||
self._mock_rpc_call('set_host_enabled',
|
||||
host='fake_host',
|
||||
enabled='fake_enabled')
|
||||
self.mox.ReplayAll()
|
||||
fake_notifier.NOTIFICATIONS = []
|
||||
result = self.host_api.set_host_enabled(self.ctxt, 'fake_host',
|
||||
@@ -86,12 +80,9 @@ class ComputeHostAPITestCase(test.TestCase):
|
||||
|
||||
def test_host_name_from_assert_hosts_exists(self):
|
||||
self._mock_assert_host_exists()
|
||||
self._mock_rpc_call(
|
||||
{'method': 'set_host_enabled',
|
||||
'namespace': None,
|
||||
'args': {'enabled': 'fake_enabled'},
|
||||
'version': compute_rpcapi.ComputeAPI.BASE_RPC_API_VERSION})
|
||||
|
||||
self._mock_rpc_call('set_host_enabled',
|
||||
host='fake_host',
|
||||
enabled='fake_enabled')
|
||||
self.mox.ReplayAll()
|
||||
result = self.host_api.set_host_enabled(self.ctxt, 'fake_hosT',
|
||||
'fake_enabled')
|
||||
@@ -99,11 +90,8 @@ class ComputeHostAPITestCase(test.TestCase):
|
||||
|
||||
def test_get_host_uptime(self):
|
||||
self._mock_assert_host_exists()
|
||||
self._mock_rpc_call(
|
||||
{'method': 'get_host_uptime',
|
||||
'namespace': None,
|
||||
'args': {},
|
||||
'version': compute_rpcapi.ComputeAPI.BASE_RPC_API_VERSION})
|
||||
self._mock_rpc_call('get_host_uptime',
|
||||
host='fake_host')
|
||||
self.mox.ReplayAll()
|
||||
result = self.host_api.get_host_uptime(self.ctxt, 'fake_host')
|
||||
self.assertEqual('fake-result', result)
|
||||
@@ -125,11 +113,9 @@ class ComputeHostAPITestCase(test.TestCase):
|
||||
|
||||
def test_host_power_action(self):
|
||||
self._mock_assert_host_exists()
|
||||
self._mock_rpc_call(
|
||||
{'method': 'host_power_action',
|
||||
'namespace': None,
|
||||
'args': {'action': 'fake_action'},
|
||||
'version': compute_rpcapi.ComputeAPI.BASE_RPC_API_VERSION})
|
||||
self._mock_rpc_call('host_power_action',
|
||||
host='fake_host',
|
||||
action='fake_action')
|
||||
self.mox.ReplayAll()
|
||||
fake_notifier.NOTIFICATIONS = []
|
||||
result = self.host_api.host_power_action(self.ctxt, 'fake_host',
|
||||
@@ -151,11 +137,10 @@ class ComputeHostAPITestCase(test.TestCase):
|
||||
|
||||
def test_set_host_maintenance(self):
|
||||
self._mock_assert_host_exists()
|
||||
self._mock_rpc_call(
|
||||
{'method': 'host_maintenance_mode',
|
||||
'namespace': None,
|
||||
'args': {'host': 'fake_host', 'mode': 'fake_mode'},
|
||||
'version': compute_rpcapi.ComputeAPI.BASE_RPC_API_VERSION})
|
||||
self._mock_rpc_call('host_maintenance_mode',
|
||||
host='fake_host',
|
||||
host_param='fake_host',
|
||||
mode='fake_mode')
|
||||
self.mox.ReplayAll()
|
||||
fake_notifier.NOTIFICATIONS = []
|
||||
result = self.host_api.set_host_maintenance(self.ctxt, 'fake_host',
|
||||
@@ -327,20 +312,23 @@ class ComputeHostAPICellsTestCase(ComputeHostAPITestCase):
|
||||
self.flags(cell_type='api', group='cells')
|
||||
super(ComputeHostAPICellsTestCase, self).setUp()
|
||||
|
||||
def _mock_rpc_call(self, expected_message, result=None):
|
||||
if result is None:
|
||||
result = 'fake-result'
|
||||
# Wrapped with cells call
|
||||
expected_message = {'method': 'proxy_rpc_to_manager',
|
||||
'namespace': None,
|
||||
'args': {'topic': 'compute.fake_host',
|
||||
'rpc_message': expected_message,
|
||||
'call': True,
|
||||
'timeout': None},
|
||||
'version': '1.2'}
|
||||
self.mox.StubOutWithMock(rpc, 'call')
|
||||
rpc.call(self.ctxt, 'cells', expected_message,
|
||||
None).AndReturn(result)
|
||||
def _mock_rpc_call(self, method, **kwargs):
|
||||
if 'host_param' in kwargs:
|
||||
kwargs.pop('host_param')
|
||||
else:
|
||||
kwargs.pop('host')
|
||||
rpc_message = {
|
||||
'method': method,
|
||||
'namespace': None,
|
||||
'args': kwargs,
|
||||
'version': self.host_api.rpcapi.client.target.version,
|
||||
}
|
||||
cells_rpcapi = self.host_api.rpcapi.client.cells_rpcapi
|
||||
self.mox.StubOutWithMock(cells_rpcapi, 'proxy_rpc_to_manager')
|
||||
cells_rpcapi.proxy_rpc_to_manager(self.ctxt,
|
||||
rpc_message,
|
||||
'compute.fake_host',
|
||||
call=True).AndReturn('fake-result')
|
||||
|
||||
def test_service_get_all_no_zones(self):
|
||||
services = [dict(test_service.fake_service,
|
||||
|
||||
@@ -32,8 +32,8 @@ from nova import db
|
||||
from nova.objects import base as obj_base
|
||||
from nova.objects import migration as migration_obj
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common.notifier import api as notifier_api
|
||||
from nova.openstack.common import timeutils
|
||||
from nova import rpc
|
||||
from nova import test
|
||||
from nova.tests.compute.monitors import test_monitors
|
||||
from nova.tests.objects import test_migration
|
||||
@@ -1077,21 +1077,35 @@ class ComputeMonitorTestCase(BaseTestCase):
|
||||
class2 = test_monitors.FakeMonitorClass2(self.tracker)
|
||||
self.tracker.monitors = [class1, class2]
|
||||
|
||||
def fake_notify(context, publisher, event, priority, payload):
|
||||
self.info['publisher'] = publisher
|
||||
self.info['event'] = event
|
||||
self.info['payload'] = payload
|
||||
mock_notifier = mock.Mock()
|
||||
|
||||
with mock.patch.object(notifier_api, 'notify',
|
||||
side_effect=fake_notify):
|
||||
with mock.patch.object(rpc, 'get_notifier',
|
||||
return_value=mock_notifier) as mock_get:
|
||||
metrics = self.tracker._get_host_metrics(self.context,
|
||||
self.node_name)
|
||||
self.assertEqual(metrics, [{'timestamp': 1232,
|
||||
'name': 'key1',
|
||||
'value': 2600,
|
||||
'source': 'libvirt'},
|
||||
{'name': 'key2',
|
||||
'source': 'libvirt',
|
||||
'timestamp': 123,
|
||||
'value': 1600}])
|
||||
self.assertTrue(len(self.info) > 0)
|
||||
mock_get.assert_called_once_with(service='compute',
|
||||
host=self.node_name)
|
||||
|
||||
expected_metrics = [{
|
||||
'timestamp': 1232,
|
||||
'name': 'key1',
|
||||
'value': 2600,
|
||||
'source': 'libvirt'
|
||||
}, {
|
||||
'name': 'key2',
|
||||
'source': 'libvirt',
|
||||
'timestamp': 123,
|
||||
'value': 1600
|
||||
}]
|
||||
|
||||
payload = {
|
||||
'metrics': expected_metrics,
|
||||
'host': self.tracker.host,
|
||||
'host_ip': CONF.my_ip,
|
||||
'nodename': self.node_name
|
||||
}
|
||||
|
||||
mock_notifier.info.assert_called_once_with(
|
||||
self.context, 'compute.metrics.update', payload)
|
||||
|
||||
self.assertEqual(metrics, expected_metrics)
|
||||
|
||||
@@ -18,13 +18,15 @@
|
||||
Unit Tests for nova.compute.rpcapi
|
||||
"""
|
||||
|
||||
import contextlib
|
||||
|
||||
import mock
|
||||
from oslo.config import cfg
|
||||
|
||||
from nova.compute import rpcapi as compute_rpcapi
|
||||
from nova import context
|
||||
from nova import db
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common import rpc
|
||||
from nova import test
|
||||
|
||||
CONF = cfg.CONF
|
||||
@@ -45,25 +47,19 @@ class ComputeRpcAPITestCase(test.TestCase):
|
||||
def _test_compute_api(self, method, rpc_method, **kwargs):
|
||||
ctxt = context.RequestContext('fake_user', 'fake_project')
|
||||
|
||||
if 'rpcapi_class' in kwargs:
|
||||
rpcapi_class = kwargs['rpcapi_class']
|
||||
del kwargs['rpcapi_class']
|
||||
else:
|
||||
rpcapi_class = compute_rpcapi.ComputeAPI
|
||||
rpcapi = rpcapi_class()
|
||||
expected_retval = 'foo' if method == 'call' else None
|
||||
rpcapi = kwargs.pop('rpcapi_class', compute_rpcapi.ComputeAPI)()
|
||||
self.assertIsNotNone(rpcapi.client)
|
||||
self.assertEqual(rpcapi.client.target.topic, CONF.compute_topic)
|
||||
|
||||
expected_version = kwargs.pop('version', rpcapi.BASE_RPC_API_VERSION)
|
||||
expected_msg = rpcapi.make_msg(method, **kwargs)
|
||||
if 'host_param' in expected_msg['args']:
|
||||
host_param = expected_msg['args']['host_param']
|
||||
del expected_msg['args']['host_param']
|
||||
expected_msg['args']['host'] = host_param
|
||||
elif 'host' in expected_msg['args']:
|
||||
del expected_msg['args']['host']
|
||||
if 'destination' in expected_msg['args']:
|
||||
del expected_msg['args']['destination']
|
||||
expected_msg['version'] = expected_version
|
||||
orig_prepare = rpcapi.client.prepare
|
||||
expected_version = kwargs.pop('version', rpcapi.client.target.version)
|
||||
|
||||
expected_kwargs = kwargs.copy()
|
||||
if 'host_param' in expected_kwargs:
|
||||
expected_kwargs['host'] = expected_kwargs.pop('host_param')
|
||||
else:
|
||||
expected_kwargs.pop('host', None)
|
||||
expected_kwargs.pop('destination', None)
|
||||
|
||||
cast_and_call = ['confirm_resize', 'stop_instance']
|
||||
if rpc_method == 'call' and method in cast_and_call:
|
||||
@@ -77,25 +73,25 @@ class ComputeRpcAPITestCase(test.TestCase):
|
||||
host = kwargs['destination']
|
||||
else:
|
||||
host = kwargs['instance']['host']
|
||||
expected_topic = '%s.%s' % (CONF.compute_topic, host)
|
||||
|
||||
self.fake_args = None
|
||||
self.fake_kwargs = None
|
||||
with contextlib.nested(
|
||||
mock.patch.object(rpcapi.client, rpc_method),
|
||||
mock.patch.object(rpcapi.client, 'prepare'),
|
||||
mock.patch.object(rpcapi.client, 'can_send_version'),
|
||||
) as (
|
||||
rpc_mock, prepare_mock, csv_mock
|
||||
):
|
||||
prepare_mock.return_value = rpcapi.client
|
||||
rpc_mock.return_value = 'foo' if rpc_method == 'call' else None
|
||||
csv_mock.side_effect = (
|
||||
lambda v: orig_prepare(version=v).can_send_version())
|
||||
|
||||
def _fake_rpc_method(*args, **kwargs):
|
||||
self.fake_args = args
|
||||
self.fake_kwargs = kwargs
|
||||
if expected_retval:
|
||||
return expected_retval
|
||||
retval = getattr(rpcapi, method)(ctxt, **kwargs)
|
||||
self.assertEqual(retval, rpc_mock.return_value)
|
||||
|
||||
self.stubs.Set(rpc, rpc_method, _fake_rpc_method)
|
||||
|
||||
retval = getattr(rpcapi, method)(ctxt, **kwargs)
|
||||
|
||||
self.assertEqual(retval, expected_retval)
|
||||
expected_args = [ctxt, expected_topic, expected_msg]
|
||||
for arg, expected_arg in zip(self.fake_args, expected_args):
|
||||
self.assertEqual(arg, expected_arg)
|
||||
prepare_mock.assert_called_once_with(version=expected_version,
|
||||
server=host)
|
||||
rpc_mock.assert_called_once_with(ctxt, method, **expected_kwargs)
|
||||
|
||||
def test_add_aggregate_host(self):
|
||||
self._test_compute_api('add_aggregate_host', 'cast',
|
||||
@@ -384,7 +380,7 @@ class ComputeRpcAPITestCase(test.TestCase):
|
||||
|
||||
# NOTE(russellb) Havana compat
|
||||
self.flags(compute='havana', group='upgrade_levels')
|
||||
self._test_compute_api('post_live_migration_at_destination', 'call',
|
||||
self._test_compute_api('post_live_migration_at_destination', 'cast',
|
||||
instance=self.fake_instance, block_migration='block_migration',
|
||||
host='host', version='2.0')
|
||||
|
||||
|
||||
@@ -18,6 +18,7 @@
|
||||
import contextlib
|
||||
import mock
|
||||
import mox
|
||||
from oslo import messaging
|
||||
|
||||
from nova.api.ec2 import ec2utils
|
||||
from nova.compute import flavors
|
||||
@@ -39,11 +40,12 @@ from nova.objects import fields
|
||||
from nova.objects import instance as instance_obj
|
||||
from nova.objects import migration as migration_obj
|
||||
from nova.openstack.common import jsonutils
|
||||
from nova.openstack.common.rpc import common as rpc_common
|
||||
from nova.openstack.common import timeutils
|
||||
from nova import quota
|
||||
from nova import rpc
|
||||
from nova.scheduler import utils as scheduler_utils
|
||||
from nova import test
|
||||
from nova.tests import cast_as_call
|
||||
from nova.tests.compute import test_compute
|
||||
from nova.tests import fake_instance
|
||||
from nova.tests import fake_instance_actions
|
||||
@@ -74,6 +76,14 @@ class _BaseTestCase(object):
|
||||
fake_notifier.stub_notifier(self.stubs)
|
||||
self.addCleanup(fake_notifier.reset)
|
||||
|
||||
def fake_deserialize_context(serializer, ctxt_dict):
|
||||
self.assertEqual(self.context.user_id, ctxt_dict['user_id'])
|
||||
self.assertEqual(self.context.project_id, ctxt_dict['project_id'])
|
||||
return self.context
|
||||
|
||||
self.stubs.Set(rpc.RequestContextSerializer, 'deserialize_context',
|
||||
fake_deserialize_context)
|
||||
|
||||
def _create_fake_instance(self, params=None, type_name='m1.tiny'):
|
||||
if not params:
|
||||
params = {}
|
||||
@@ -702,7 +712,7 @@ class ConductorTestCase(_BaseTestCase, test.TestCase):
|
||||
getattr(db, name)(self.context, *dbargs).AndReturn('fake-result')
|
||||
self.mox.ReplayAll()
|
||||
if db_exception:
|
||||
self.assertRaises(rpc_common.ClientException,
|
||||
self.assertRaises(messaging.ExpectedException,
|
||||
self.conductor.service_get_all_by,
|
||||
self.context, **condargs)
|
||||
|
||||
@@ -818,14 +828,14 @@ class ConductorTestCase(_BaseTestCase, test.TestCase):
|
||||
self._test_object_action(False, False)
|
||||
|
||||
def test_object_action_on_raise(self):
|
||||
self.assertRaises(rpc_common.ClientException,
|
||||
self.assertRaises(messaging.ExpectedException,
|
||||
self._test_object_action, False, True)
|
||||
|
||||
def test_object_class_action(self):
|
||||
self._test_object_action(True, False)
|
||||
|
||||
def test_object_class_action_on_raise(self):
|
||||
self.assertRaises(rpc_common.ClientException,
|
||||
self.assertRaises(messaging.ExpectedException,
|
||||
self._test_object_action, True, True)
|
||||
|
||||
def test_object_action_copies_object(self):
|
||||
@@ -1189,7 +1199,7 @@ class ConductorAPITestCase(_BaseTestCase, test.TestCase):
|
||||
timeouts.append(timeout)
|
||||
calls['count'] += 1
|
||||
if calls['count'] < 15:
|
||||
raise rpc_common.Timeout("fake")
|
||||
raise messaging.MessagingTimeout("fake")
|
||||
|
||||
self.stubs.Set(self.conductor.base_rpcapi, 'ping', fake_ping)
|
||||
|
||||
@@ -1289,6 +1299,14 @@ class _BaseTaskTestCase(object):
|
||||
self.context = FakeContext(self.user_id, self.project_id)
|
||||
fake_instance_actions.stub_out_action_events(self.stubs)
|
||||
|
||||
def fake_deserialize_context(serializer, ctxt_dict):
|
||||
self.assertEqual(self.context.user_id, ctxt_dict['user_id'])
|
||||
self.assertEqual(self.context.project_id, ctxt_dict['project_id'])
|
||||
return self.context
|
||||
|
||||
self.stubs.Set(rpc.RequestContextSerializer, 'deserialize_context',
|
||||
fake_deserialize_context)
|
||||
|
||||
def test_live_migrate(self):
|
||||
inst = fake_instance.fake_db_instance()
|
||||
inst_obj = instance_obj.Instance._from_db_object(
|
||||
@@ -1395,6 +1413,10 @@ class _BaseTaskTestCase(object):
|
||||
requested_networks='requested_networks', is_first_time=True,
|
||||
filter_properties={}, legacy_bdm_in_spec=False)
|
||||
self.mox.ReplayAll()
|
||||
|
||||
# build_instances() is a cast, we need to wait for it to complete
|
||||
self.useFixture(cast_as_call.CastAsCall(self.stubs))
|
||||
|
||||
self.conductor.build_instances(self.context,
|
||||
instances=[{'uuid': 'fakeuuid',
|
||||
'system_metadata': system_metadata},
|
||||
|
||||
@@ -55,10 +55,6 @@ class ConfFixture(config_fixture.Config):
|
||||
'nova.tests.utils.dns_manager')
|
||||
self.conf.set_default('network_size', 8)
|
||||
self.conf.set_default('num_networks', 2)
|
||||
self.conf.set_default('rpc_backend',
|
||||
'nova.openstack.common.rpc.impl_fake')
|
||||
self.conf.set_default('rpc_cast_timeout', 5)
|
||||
self.conf.set_default('rpc_response_timeout', 5)
|
||||
self.conf.set_default('connection', "sqlite://", group='database')
|
||||
self.conf.set_default('sqlite_synchronous', False)
|
||||
self.conf.set_default('use_ipv6', True)
|
||||
|
||||
@@ -181,7 +181,7 @@ class ConsoleAPITestCase(test.TestCase):
|
||||
self.context, 'fake_host').AndReturn('compute.fake_host')
|
||||
self.mox.StubOutClassWithMocks(console_rpcapi, 'ConsoleAPI')
|
||||
console_api_mock = console_rpcapi.ConsoleAPI(
|
||||
topic='compute.fake_host')
|
||||
topic='compute', server='fake_host')
|
||||
console_api_mock.add_console(self.context,
|
||||
self.fake_instance['id'])
|
||||
|
||||
|
||||
@@ -18,11 +18,13 @@
|
||||
Unit Tests for nova.console.rpcapi
|
||||
"""
|
||||
|
||||
import contextlib
|
||||
|
||||
import mock
|
||||
from oslo.config import cfg
|
||||
|
||||
from nova.console import rpcapi as console_rpcapi
|
||||
from nova import context
|
||||
from nova.openstack.common import rpc
|
||||
from nova import test
|
||||
|
||||
CONF = cfg.CONF
|
||||
@@ -31,29 +33,31 @@ CONF = cfg.CONF
|
||||
class ConsoleRpcAPITestCase(test.NoDBTestCase):
|
||||
def _test_console_api(self, method, rpc_method, **kwargs):
|
||||
ctxt = context.RequestContext('fake_user', 'fake_project')
|
||||
|
||||
rpcapi = console_rpcapi.ConsoleAPI()
|
||||
expected_retval = 'foo' if method == 'call' else None
|
||||
expected_version = kwargs.pop('version', rpcapi.BASE_RPC_API_VERSION)
|
||||
expected_msg = rpcapi.make_msg(method, **kwargs)
|
||||
expected_msg['version'] = expected_version
|
||||
self.assertIsNotNone(rpcapi.client)
|
||||
self.assertEqual(rpcapi.client.target.topic, CONF.console_topic)
|
||||
|
||||
self.fake_args = None
|
||||
self.fake_kwargs = None
|
||||
orig_prepare = rpcapi.client.prepare
|
||||
expected_version = kwargs.pop('version', rpcapi.client.target.version)
|
||||
|
||||
def _fake_rpc_method(*args, **kwargs):
|
||||
self.fake_args = args
|
||||
self.fake_kwargs = kwargs
|
||||
if expected_retval:
|
||||
return expected_retval
|
||||
with contextlib.nested(
|
||||
mock.patch.object(rpcapi.client, rpc_method),
|
||||
mock.patch.object(rpcapi.client, 'prepare'),
|
||||
mock.patch.object(rpcapi.client, 'can_send_version'),
|
||||
) as (
|
||||
rpc_mock, prepare_mock, csv_mock
|
||||
):
|
||||
prepare_mock.return_value = rpcapi.client
|
||||
rpc_mock.return_value = 'foo' if rpc_method == 'call' else None
|
||||
csv_mock.side_effect = (
|
||||
lambda v: orig_prepare(version=v).can_send_version())
|
||||
|
||||
self.stubs.Set(rpc, rpc_method, _fake_rpc_method)
|
||||
retval = getattr(rpcapi, method)(ctxt, **kwargs)
|
||||
self.assertEqual(retval, rpc_mock.return_value)
|
||||
|
||||
retval = getattr(rpcapi, method)(ctxt, **kwargs)
|
||||
|
||||
self.assertEqual(retval, expected_retval)
|
||||
expected_args = [ctxt, CONF.console_topic, expected_msg]
|
||||
for arg, expected_arg in zip(self.fake_args, expected_args):
|
||||
self.assertEqual(arg, expected_arg)
|
||||
prepare_mock.assert_called_once_with(version=expected_version)
|
||||
rpc_mock.assert_called_once_with(ctxt, method, **kwargs)
|
||||
|
||||
def test_add_console(self):
|
||||
self._test_console_api('add_console', instance_id='i',
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user