bb69046db5
The Oslo libraries have moved all of their code out of the 'oslo' namespace package into per-library packages. The namespace package was retained during kilo for backwards compatibility, but will be removed by the liberty-2 milestone. This change removes the use of the namespace package, replacing it with the new package names. The patches in the libraries will be put on hold until application patches have landed, or L2, whichever comes first. At that point, new versions of the libraries without namespace packages will be released as a major version update. Please merge this patch, or an equivalent, before L2 to avoid problems with those library releases. Blueprint: remove-namespace-packages https://blueprints.launchpad.net/oslo-incubator/+spec/remove-namespace-packages Change-Id: I75e6e15d50ef9830d0581efd4cbcceb3e626f7b7
75 lines
2.3 KiB
Python
75 lines
2.3 KiB
Python
# 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.
|
|
|
|
"""
|
|
Client side of the scheduler manager RPC API.
|
|
"""
|
|
|
|
from oslo_config import cfg
|
|
import oslo_messaging as messaging
|
|
from oslo_serialization import jsonutils
|
|
|
|
from manila import rpc
|
|
|
|
CONF = cfg.CONF
|
|
|
|
|
|
class SchedulerAPI(object):
|
|
'''Client side of the scheduler rpc API.
|
|
|
|
API version history:
|
|
|
|
1.0 - Initial version.
|
|
1.1 - Add get_pools method
|
|
'''
|
|
|
|
RPC_API_VERSION = '1.1'
|
|
|
|
def __init__(self):
|
|
super(SchedulerAPI, self).__init__()
|
|
target = messaging.Target(topic=CONF.scheduler_topic,
|
|
version=self.RPC_API_VERSION)
|
|
self.client = rpc.get_client(target, version_cap='1.1')
|
|
|
|
def create_share(self, ctxt, topic, share_id, snapshot_id=None,
|
|
request_spec=None, filter_properties=None):
|
|
request_spec_p = jsonutils.to_primitive(request_spec)
|
|
cctxt = self.client.prepare(version='1.0')
|
|
return cctxt.cast(
|
|
ctxt,
|
|
'create_share',
|
|
topic=topic,
|
|
share_id=share_id,
|
|
snapshot_id=snapshot_id,
|
|
request_spec=request_spec_p,
|
|
filter_properties=filter_properties,
|
|
)
|
|
|
|
def update_service_capabilities(self, ctxt,
|
|
service_name, host,
|
|
capabilities):
|
|
cctxt = self.client.prepare(fanout=True, version='1.0')
|
|
cctxt.cast(
|
|
ctxt,
|
|
'update_service_capabilities',
|
|
service_name=service_name,
|
|
host=host,
|
|
capabilities=capabilities,
|
|
)
|
|
|
|
def get_pools(self, ctxt, filters=None):
|
|
cctxt = self.client.prepare(version='1.1')
|
|
return cctxt.call(ctxt, 'get_pools',
|
|
filters=filters)
|