¡@

Home 

OpenStack Study: __init__.py

OpenStack Index

**** CubicPower OpenStack Study ****

def set_defaults(control_exchange):

    cfg.set_defaults(rpc_opts,

                     control_exchange=control_exchange)

**** CubicPower OpenStack Study ****

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)

**** CubicPower OpenStack Study ****

def call(context, topic, msg, timeout=None):

    """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.

    :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.

    """

    return _get_impl().call(CONF, context, topic, msg, timeout)

**** CubicPower OpenStack Study ****

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)

**** CubicPower OpenStack Study ****

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)

**** CubicPower OpenStack Study ****

def multicall(context, topic, msg, timeout=None):

    """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.

    :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.

    """

    return _get_impl().multicall(CONF, context, topic, msg, timeout)

**** CubicPower OpenStack Study ****

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)

**** CubicPower OpenStack Study ****

def cleanup():

    """Clean up resources 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()

**** CubicPower OpenStack Study ****

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)

**** CubicPower OpenStack Study ****

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)

**** CubicPower OpenStack Study ****

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.

    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.' topic are sent to the nova-foo service on

    .

    """

    return '%s.%s' % (topic, host) if host else topic

_RPCIMPL = None

**** CubicPower OpenStack Study ****

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 nova config.

            impl = CONF.rpc_backend.replace('nova.rpc',

                                            'nova.openstack.common.rpc')

            _RPCIMPL = importutils.import_module(impl)

    return _RPCIMPL