summaryrefslogtreecommitdiff
path: root/oslo_messaging/opts.py
diff options
context:
space:
mode:
authorDoug Hellmann <doug@doughellmann.com>2015-01-02 14:24:57 -0500
committerDoug Hellmann <doug@doughellmann.com>2015-01-12 12:50:41 -0500
commite55a83e832d888e1a5fb087863590b08e7bd6090 (patch)
tree547db8b3723f468022f7f9d921b454910ec988fd /oslo_messaging/opts.py
parent8102f25dd267f8f21b521d18930af921aef711db (diff)
downloadoslo-messaging-e55a83e832d888e1a5fb087863590b08e7bd6090.tar.gz
Move files out of the namespace package
Move the public API out of oslo.messaging to oslo_messaging. Retain the ability to import from the old namespace package for backwards compatibility for this release cycle. bp/drop-namespace-packages Co-authored-by: Mehdi Abaakouk <mehdi.abaakouk@enovance.com> Change-Id: Ia562010c152a214f1c0fed767c82022c7c2c52e7
Diffstat (limited to 'oslo_messaging/opts.py')
-rw-r--r--oslo_messaging/opts.py75
1 files changed, 75 insertions, 0 deletions
diff --git a/oslo_messaging/opts.py b/oslo_messaging/opts.py
new file mode 100644
index 0000000..4008465
--- /dev/null
+++ b/oslo_messaging/opts.py
@@ -0,0 +1,75 @@
+
+# Copyright 2014 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__ = [
+ 'list_opts'
+]
+
+import copy
+import itertools
+
+from oslo_messaging._drivers import amqp
+from oslo_messaging._drivers import impl_qpid
+from oslo_messaging._drivers import impl_rabbit
+from oslo_messaging._drivers import impl_zmq
+from oslo_messaging._drivers import matchmaker
+from oslo_messaging._drivers import matchmaker_redis
+from oslo_messaging._drivers import matchmaker_ring
+from oslo_messaging._drivers.protocols.amqp import opts as amqp_opts
+from oslo_messaging._executors import base
+from oslo_messaging.notify import notifier
+from oslo_messaging.rpc import client
+from oslo_messaging import transport
+
+_global_opt_lists = [
+ amqp.amqp_opts,
+ impl_qpid.qpid_opts,
+ impl_rabbit.rabbit_opts,
+ impl_zmq.zmq_opts,
+ matchmaker.matchmaker_opts,
+ base._pool_opts,
+ notifier._notifier_opts,
+ client._client_opts,
+ transport._transport_opts,
+]
+
+_opts = [
+ (None, list(itertools.chain(*_global_opt_lists))),
+ ('matchmaker_redis', matchmaker_redis.matchmaker_redis_opts),
+ ('matchmaker_ring', matchmaker_ring.matchmaker_opts),
+ ('oslo_messaging_amqp', amqp_opts.amqp1_opts),
+]
+
+
+def list_opts():
+ """Return a list of oslo.config options available in the library.
+
+ The returned list includes all oslo.config options which may be registered
+ at runtime by the library.
+
+ Each element of the list is a tuple. The first element is the name of the
+ group under which the list of elements in the second element will be
+ registered. A group name of None corresponds to the [DEFAULT] group in
+ config files.
+
+ This function is also discoverable via the 'oslo_messaging' entry point
+ under the 'oslo.config.opts' namespace.
+
+ The purpose of this is to allow tools like the Oslo sample config file
+ generator to discover the options exposed to users by this library.
+
+ :returns: a list of (group_name, opts) tuples
+ """
+ return [(g, copy.deepcopy(o)) for g, o in _opts]