Example #1
0
def target_cell(context, cell_mapping):
    """Adds database and message queue connection information to the context
    for communicating with the given target cell.

    :param context: The RequestContext to add connection information
    :param cell_mapping: A objects.CellMapping object
    """
    original_db_connection = context.db_connection
    original_mq_connection = context.mq_connection
    # avoid circular imports
    from nova import db
    from nova import rpc

    db_connection_string = cell_mapping.database_connection
    context.db_connection = db.create_context_manager(db_connection_string)
    # NOTE(melwitt): none:// url is a special value meaning do not switch
    if not cell_mapping.transport_url.startswith("none"):
        transport_url = cell_mapping.transport_url
        context.mq_connection = rpc.create_transport(transport_url)

    try:
        yield context
    finally:
        context.db_connection = original_db_connection
        context.mq_connection = original_mq_connection
Example #2
0
 def get_or_set_cached_cell_and_set_connections():
     try:
         cell_db_conn = CELL_CACHE[cell_mapping.uuid]
     except KeyError:
         db_connection_string = cell_mapping.database_connection
         context.db_connection = db.create_context_manager(
             db_connection_string)
         CELL_CACHE[cell_mapping.uuid] = context.db_connection
     else:
         context.db_connection = cell_db_conn
Example #3
0
def set_target_cell(context, cell_mapping):
    """Adds database connection information to the context
    for communicating with the given target_cell.

    This is used for permanently targeting a cell in a context.
    Use this when you want all subsequent code to target a cell.

    :param context: The RequestContext to add connection information
    :param cell_mapping: An objects.CellMapping object
    """
    # avoid circular import
    from nova import db
    db_connection_string = cell_mapping.database_connection
    context.db_connection = db.create_context_manager(db_connection_string)
Example #4
0
 def get_or_set_cached_cell_and_set_connections():
     try:
         cell_tuple = CELL_CACHE[cell_mapping.uuid]
     except KeyError:
         db_connection_string = cell_mapping.database_connection
         context.db_connection = db.create_context_manager(
             db_connection_string)
         if not cell_mapping.transport_url.startswith('none'):
             context.mq_connection = rpc.create_transport(
                 cell_mapping.transport_url)
         CELL_CACHE[cell_mapping.uuid] = (context.db_connection,
                                          context.mq_connection)
     else:
         context.db_connection = cell_tuple[0]
         context.mq_connection = cell_tuple[1]
Example #5
0
 def get_or_set_cached_cell_and_set_connections():
     try:
         cell_tuple = CELL_CACHE[cell_mapping.uuid]
     except KeyError:
         db_connection_string = cell_mapping.database_connection
         context.db_connection = db.create_context_manager(
             db_connection_string)
         if not cell_mapping.transport_url.startswith('none'):
             context.mq_connection = rpc.create_transport(
                 cell_mapping.transport_url)
         CELL_CACHE[cell_mapping.uuid] = (context.db_connection,
                                          context.mq_connection)
     else:
         context.db_connection = cell_tuple[0]
         context.mq_connection = cell_tuple[1]
Example #6
0
def target_cell(context, cell_mapping):
    """Adds database connection information to the context
    for communicating with the given target cell.

    :param context: The RequestContext to add connection information
    :param cell_mapping: A objects.CellMapping object
    """
    original_db_connection = context.db_connection
    # avoid circular import
    from nova import db
    db_connection_string = cell_mapping.database_connection
    context.db_connection = db.create_context_manager(db_connection_string)
    try:
        yield context
    finally:
        context.db_connection = original_db_connection
Example #7
0
def target_cell(context, cell_mapping):
    """Adds database connection information to the context
    for communicating with the given target cell.

    :param context: The RequestContext to add connection information
    :param cell_mapping: A objects.CellMapping object
    """
    original_db_connection = context.db_connection
    # avoid circular import
    from nova import db
    db_connection_string = cell_mapping.database_connection
    context.db_connection = db.create_context_manager(db_connection_string)
    try:
        yield context
    finally:
        context.db_connection = original_db_connection
Example #8
0
def set_target_cell(context, cell_mapping):
    """Adds database connection information to the context
    for communicating with the given target_cell.

    This is used for permanently targeting a cell in a context.
    Use this when you want all subsequent code to target a cell.

    Passing None for cell_mapping will untarget the context.

    :param context: The RequestContext to add connection information
    :param cell_mapping: An objects.CellMapping object or None
    """
    if cell_mapping is not None:
        # avoid circular import
        from nova import db
        from nova import rpc
        db_connection_string = cell_mapping.database_connection
        context.db_connection = db.create_context_manager(db_connection_string)
        if not cell_mapping.transport_url.startswith('none'):
            context.mq_connection = rpc.create_transport(
                cell_mapping.transport_url)
    else:
        context.db_connection = None
        context.mq_connection = None
Example #9
0
def target_cell(context, cell_mapping):
    """Adds database and message queue connection information to the context
    for communicating with the given target cell.

    :param context: The RequestContext to add connection information
    :param cell_mapping: A objects.CellMapping object
    """
    original_db_connection = context.db_connection
    original_mq_connection = context.mq_connection
    # avoid circular imports
    from nova import db
    from nova import rpc
    db_connection_string = cell_mapping.database_connection
    context.db_connection = db.create_context_manager(db_connection_string)
    # NOTE(melwitt): none:// url is a special value meaning do not switch
    if not cell_mapping.transport_url.startswith('none'):
        transport_url = cell_mapping.transport_url
        context.mq_connection = rpc.create_transport(transport_url)

    try:
        yield context
    finally:
        context.db_connection = original_db_connection
        context.mq_connection = original_mq_connection
Example #10
0
def set_target_cell(context, cell_mapping):
    """Adds database connection information to the context
    for communicating with the given target_cell.

    This is used for permanently targeting a cell in a context.
    Use this when you want all subsequent code to target a cell.

    Passing None for cell_mapping will untarget the context.

    :param context: The RequestContext to add connection information
    :param cell_mapping: An objects.CellMapping object or None
    """
    if cell_mapping is not None:
        # avoid circular import
        from nova import db
        from nova import rpc
        db_connection_string = cell_mapping.database_connection
        context.db_connection = db.create_context_manager(db_connection_string)
        if not cell_mapping.transport_url.startswith('none'):
            context.mq_connection = rpc.create_transport(
                cell_mapping.transport_url)
    else:
        context.db_connection = None
        context.mq_connection = None