2007-03-17 02:11:45 +03:00
|
|
|
/*
|
2008-05-06 22:08:45 +04:00
|
|
|
* Copyright (c) 2004-2008 The Trustees of Indiana University.
|
2007-03-17 02:11:45 +03:00
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* 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"
|
2009-03-13 05:10:32 +03:00
|
|
|
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
#include "orte/constants.h"
|
2007-03-17 02:11:45 +03:00
|
|
|
|
|
|
|
#include "opal/mca/mca.h"
|
2009-02-14 05:26:12 +03:00
|
|
|
#include "opal/util/output.h"
|
2007-03-17 02:11:45 +03:00
|
|
|
#include "opal/mca/base/base.h"
|
|
|
|
|
|
|
|
#include "opal/mca/base/mca_base_param.h"
|
|
|
|
|
|
|
|
#include "orte/mca/snapc/snapc.h"
|
|
|
|
#include "orte/mca/snapc/base/base.h"
|
|
|
|
|
|
|
|
|
|
|
|
static orte_snapc_base_component_t none_component = {
|
|
|
|
/* Handle the general mca_component_t struct containing
|
|
|
|
* meta information about the component itself
|
|
|
|
*/
|
|
|
|
{
|
2008-07-29 02:40:57 +04:00
|
|
|
ORTE_SNAPC_BASE_VERSION_2_0_0,
|
2007-03-17 02:11:45 +03:00
|
|
|
/* Component name and version */
|
|
|
|
"none",
|
|
|
|
OMPI_MAJOR_VERSION,
|
|
|
|
OMPI_MINOR_VERSION,
|
|
|
|
OMPI_RELEASE_VERSION,
|
|
|
|
|
|
|
|
/* Component open and close functions */
|
|
|
|
orte_snapc_base_none_open,
|
2008-05-06 22:08:45 +04:00
|
|
|
orte_snapc_base_none_close,
|
|
|
|
orte_snapc_base_none_query
|
2007-03-17 02:11:45 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
/* The component is checkpoint ready */
|
|
|
|
MCA_BASE_METADATA_PARAM_CHECKPOINT
|
|
|
|
},
|
2008-05-06 22:08:45 +04:00
|
|
|
|
2007-03-17 02:11:45 +03:00
|
|
|
/* Verbosity level */
|
|
|
|
0,
|
2008-06-09 18:53:58 +04:00
|
|
|
/* opal_output handler */
|
2007-03-17 02:11:45 +03:00
|
|
|
-1,
|
|
|
|
/* Default priority */
|
2008-02-28 04:57:57 +03:00
|
|
|
1
|
2007-03-17 02:11:45 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
static orte_snapc_base_module_t none_module = {
|
|
|
|
/** Initialization Function */
|
|
|
|
orte_snapc_base_module_init,
|
|
|
|
/** Finalization Function */
|
|
|
|
orte_snapc_base_module_finalize,
|
|
|
|
orte_snapc_base_none_setup_job,
|
2008-04-23 04:17:12 +04:00
|
|
|
orte_snapc_base_none_release_job,
|
|
|
|
orte_snapc_base_none_ft_event
|
2007-03-17 02:11:45 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
int orte_snapc_base_select(bool seed, bool app)
|
|
|
|
{
|
2008-06-06 18:38:41 +04:00
|
|
|
int exit_status = OPAL_SUCCESS;
|
2008-05-06 22:08:45 +04:00
|
|
|
orte_snapc_base_component_t *best_component = NULL;
|
|
|
|
orte_snapc_base_module_t *best_module = NULL;
|
|
|
|
char *include_list = NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Register the framework MCA param and look up include list
|
|
|
|
*/
|
2007-03-17 02:11:45 +03:00
|
|
|
mca_base_param_reg_string_name("snapc", NULL,
|
|
|
|
"Which SNAPC component to use (empty = auto-select)",
|
|
|
|
false, false,
|
2008-05-06 22:08:45 +04:00
|
|
|
strdup("none"), &include_list);
|
|
|
|
if(NULL != include_list && 0 == strncmp(include_list, "none", strlen("none")) ){
|
2008-06-09 18:53:58 +04:00
|
|
|
opal_output_verbose(10, orte_snapc_base_output,
|
2008-05-06 22:08:45 +04:00
|
|
|
"snapc:select: Using %s component",
|
|
|
|
include_list);
|
|
|
|
best_component = &none_component;
|
|
|
|
best_module = &none_module;
|
|
|
|
/* Close all components since none will be used */
|
|
|
|
mca_base_components_close(0, /* Pass 0 to keep this from closing the output handle */
|
|
|
|
&orte_snapc_base_components_available,
|
|
|
|
NULL);
|
|
|
|
/* JJH: Todo: Check if none is in the list */
|
|
|
|
goto skip_select;
|
2007-03-17 02:11:45 +03:00
|
|
|
}
|
2008-05-06 22:08:45 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Select the best component
|
2007-03-17 02:11:45 +03:00
|
|
|
*/
|
2008-06-06 18:38:41 +04:00
|
|
|
if( OPAL_SUCCESS != mca_base_select("snapc", orte_snapc_base_output,
|
|
|
|
&orte_snapc_base_components_available,
|
|
|
|
(mca_base_module_t **) &best_module,
|
|
|
|
(mca_base_component_t **) &best_component) ) {
|
2008-05-06 22:08:45 +04:00
|
|
|
/* This will only happen if no component was selected */
|
|
|
|
exit_status = ORTE_ERROR;
|
|
|
|
goto cleanup;
|
2007-03-17 02:11:45 +03:00
|
|
|
}
|
|
|
|
|
2008-05-06 22:08:45 +04:00
|
|
|
skip_select:
|
2007-03-17 02:11:45 +03:00
|
|
|
/* Save the winner */
|
|
|
|
orte_snapc_base_selected_component = *best_component;
|
|
|
|
orte_snapc = *best_module;
|
|
|
|
|
|
|
|
/* Initialize the winner */
|
|
|
|
if (NULL != best_module) {
|
2008-05-06 22:08:45 +04:00
|
|
|
if (OPAL_SUCCESS != orte_snapc.snapc_init(seed, app)) {
|
|
|
|
exit_status = OPAL_ERROR;
|
|
|
|
goto cleanup;
|
2007-03-17 02:11:45 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-06 22:08:45 +04:00
|
|
|
cleanup:
|
|
|
|
if( NULL != include_list ) {
|
|
|
|
free(include_list);
|
|
|
|
include_list = NULL;
|
2007-03-17 02:11:45 +03:00
|
|
|
}
|
|
|
|
|
2008-05-06 22:08:45 +04:00
|
|
|
return exit_status;
|
2007-03-17 02:11:45 +03:00
|
|
|
}
|