39a6057fc6
* General TCP cleanup for OPAL / ORTE * Simplifying the OOB by moving much of the logic into the RML * Allowing the OOB RML component to do routing of messages * Adding a component framework for handling routing tables * Moving the xcast functionality from the OOB base to its own framework Includes merge from tmp/bwb-oob-rml-merge revisions: r15506, r15507, r15508, r15510, r15511, r15512, r15513 This commit was SVN r15528. The following SVN revisions from the original message are invalid or inconsistent and therefore were not cross-referenced: r15506 r15507 r15508 r15510 r15511 r15512 r15513
102 строки
2.7 KiB
C
102 строки
2.7 KiB
C
/*
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
* University Research and Technology
|
|
* Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
* of Tennessee Research Foundation. All rights
|
|
* reserved.
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
* University of Stuttgart. All rights reserved.
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
* All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
|
|
#include "orte_config.h"
|
|
|
|
#include "opal/mca/mca.h"
|
|
#include "opal/mca/base/base.h"
|
|
|
|
#include "orte/mca/grpcomm/base/base.h"
|
|
|
|
|
|
/**
|
|
* Function for selecting one component from all those that are
|
|
* available.
|
|
*/
|
|
int orte_grpcomm_base_select(void)
|
|
{
|
|
opal_list_item_t *item;
|
|
mca_base_component_list_item_t *cli;
|
|
orte_grpcomm_base_component_t *component, *best_component = NULL;
|
|
orte_grpcomm_base_module_t *module, *best_module = NULL;
|
|
int priority, best_priority = -1;
|
|
|
|
/* Iterate through all the available components */
|
|
|
|
for (item = opal_list_get_first(&mca_grpcomm_base_components_available);
|
|
item != opal_list_get_end(&mca_grpcomm_base_components_available);
|
|
item = opal_list_get_next(item)) {
|
|
cli = (mca_base_component_list_item_t *) item;
|
|
component = (orte_grpcomm_base_component_t *) cli->cli_component;
|
|
|
|
/* Call the component's init function and see if it wants to be
|
|
selected */
|
|
|
|
module = component->grpcomm_init(&priority);
|
|
|
|
/* If we got a non-NULL module back, then the component wants to
|
|
be selected. So save its multi/hidden values and save the
|
|
module with the highest priority */
|
|
|
|
if (NULL != module) {
|
|
/* If this is the best one, save it */
|
|
|
|
if (priority > best_priority) {
|
|
|
|
/* If there was a previous best one, finalize */
|
|
|
|
if (NULL != best_component) {
|
|
best_component->grpcomm_finalize();
|
|
}
|
|
|
|
/* Save the new best one */
|
|
|
|
best_module = module;
|
|
best_component = component;
|
|
|
|
/* update the best priority */
|
|
best_priority = priority;
|
|
}
|
|
|
|
/* If it's not the best one, finalize it */
|
|
|
|
else {
|
|
component->grpcomm_finalize();
|
|
}
|
|
}
|
|
}
|
|
|
|
/* If we didn't find one to select, barf */
|
|
|
|
if (NULL == best_component) {
|
|
return ORTE_ERROR;
|
|
}
|
|
|
|
/* We have happiness -- save the component and module for later
|
|
usage */
|
|
|
|
orte_grpcomm = *best_module;
|
|
mca_grpcomm_base_selected_component = *best_component;
|
|
mca_grpcomm_base_selected = true;
|
|
|
|
/* all done */
|
|
|
|
return ORTE_SUCCESS;
|
|
}
|