Skip to content

Commit

Permalink
Merge "Make it easier to add namespaced rpc APIs."
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins authored and openstack-gerrit committed May 22, 2013
2 parents 9d30c2a + 869c4eb commit 986fa04
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 2 deletions.
8 changes: 6 additions & 2 deletions nova/manager.py
Expand Up @@ -86,14 +86,18 @@ def load_plugins(self):
pluginmgr = pluginmanager.PluginManager('nova', self.__class__)
pluginmgr.load_plugins()

def create_rpc_dispatcher(self, backdoor_port=None):
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)
return rpc_dispatcher.RpcDispatcher([self, base_rpc])
apis.extend([self, base_rpc])
return rpc_dispatcher.RpcDispatcher(apis)

def periodic_tasks(self, context, raise_on_error=False):
"""Tasks to be run at a periodic interval."""
Expand Down
35 changes: 35 additions & 0 deletions nova/tests/test_manager.py
@@ -0,0 +1,35 @@
# vim: tabstop=4 shiftwidth=4 softtabstop=4

# Copyright (C) 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.

"""
Unit Tests for nova.manager
"""

from nova import manager
from nova import test


class ManagerTestCase(test.TestCase):
def test_additional_apis_for_dispatcher(self):
class MyAPI(object):
pass

m = manager.Manager()
api = MyAPI()
dispatch = m.create_rpc_dispatcher(additional_apis=[api])

self.assertEqual(len(dispatch.callbacks), 3)
self.assertTrue(api in dispatch.callbacks)

0 comments on commit 986fa04

Please sign in to comment.