2005-03-14 23:57:21 +03:00
|
|
|
/*
|
2007-03-17 02:11:45 +03:00
|
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
2005-11-05 22:57:48 +03:00
|
|
|
* 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.
|
2005-03-14 23:57:21 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2005-03-14 23:57:21 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "orte_config.h"
|
2006-09-15 01:29:51 +04:00
|
|
|
#include "orte/orte_constants.h"
|
2006-03-12 07:35:01 +03:00
|
|
|
|
2007-04-21 04:15:05 +04:00
|
|
|
#include "opal/mca/installdirs/installdirs.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "opal/mca/base/base.h"
|
|
|
|
#include "opal/mca/base/mca_base_param.h"
|
2005-07-04 03:31:27 +04:00
|
|
|
#include "opal/util/output.h"
|
2005-07-04 05:59:52 +04:00
|
|
|
#include "opal/util/os_path.h"
|
2006-09-15 01:29:51 +04:00
|
|
|
|
|
|
|
#include "orte/util/proc_info.h"
|
|
|
|
#include "orte/mca/errmgr/errmgr.h"
|
|
|
|
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "orte/mca/rds/hostfile/rds_hostfile.h"
|
2006-09-15 01:29:51 +04:00
|
|
|
#include "orte/mca/rds/base/rds_private.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Local functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int orte_rds_hostfile_open(void);
|
|
|
|
static int orte_rds_hostfile_close(void);
|
|
|
|
static orte_rds_base_module_t* orte_rds_hostfile_init(void);
|
2006-09-15 01:29:51 +04:00
|
|
|
static int orte_rds_hostfile_finalize(void);
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
orte_rds_hostfile_component_t mca_rds_hostfile_component = {
|
|
|
|
{
|
|
|
|
/* First, the mca_base_component_t struct containing meta
|
|
|
|
information about the component itself */
|
|
|
|
|
|
|
|
{
|
2006-09-15 01:29:51 +04:00
|
|
|
/* Indicate that we are a rds v1.3.0 component (which also
|
2005-03-14 23:57:21 +03:00
|
|
|
implies a specific MCA version) */
|
|
|
|
|
2006-09-15 01:29:51 +04:00
|
|
|
ORTE_RDS_BASE_VERSION_1_3_0,
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
"hostfile", /* MCA component name */
|
Major simplifications to component versioning:
- After long discussions and ruminations on how we run components in
LAM/MPI, made the decision that, by default, all components included
in Open MPI will use the version number of their parent project
(i.e., OMPI or ORTE). They are certaint free to use a different
number, but this simplification makes the common cases easy:
- components are only released when the parent project is released
- it is easy (trivial?) to distinguish which version component goes
with with version of the parent project
- removed all autogen/configure code for templating the version .h
file in components
- made all ORTE components use ORTE_*_VERSION for version numbers
- made all OMPI components use OMPI_*_VERSION for version numbers
- removed all VERSION files from components
- configure now displays OPAL, ORTE, and OMPI version numbers
- ditto for ompi_info
- right now, faking it -- OPAL and ORTE and OMPI will always have the
same version number (i.e., they all come from the same top-level
VERSION file). But this paves the way for the Great Configure
Reorganization, where, among other things, each project will have
its own version number.
So all in all, we went from a boatload of version numbers to
[effectively] three. That's pretty good. :-)
This commit was SVN r6344.
2005-07-05 00:12:36 +04:00
|
|
|
ORTE_MAJOR_VERSION, /* MCA component major version */
|
|
|
|
ORTE_MINOR_VERSION, /* MCA component minor version */
|
|
|
|
ORTE_RELEASE_VERSION, /* MCA component release version */
|
2005-03-14 23:57:21 +03:00
|
|
|
orte_rds_hostfile_open, /* component open */
|
|
|
|
orte_rds_hostfile_close /* component close */
|
|
|
|
},
|
|
|
|
|
|
|
|
/* Next the MCA v1.0.0 component meta data */
|
|
|
|
{
|
2007-03-17 02:11:45 +03:00
|
|
|
/* The component is checkpoint ready */
|
|
|
|
MCA_BASE_METADATA_PARAM_CHECKPOINT
|
2005-03-14 23:57:21 +03:00
|
|
|
},
|
|
|
|
|
2006-09-15 01:29:51 +04:00
|
|
|
orte_rds_hostfile_init,
|
|
|
|
orte_rds_hostfile_finalize
|
2005-03-14 23:57:21 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* component open/close/init function
|
|
|
|
*/
|
|
|
|
static int orte_rds_hostfile_open(void)
|
|
|
|
{
|
2007-04-21 04:15:05 +04:00
|
|
|
char *path = opal_os_path(false, opal_install_dirs.sysconfdir, "openmpi-default-hostfile", NULL);
|
2005-07-04 02:45:48 +04:00
|
|
|
OBJ_CONSTRUCT(&mca_rds_hostfile_component.lock, opal_mutex_t);
|
2005-08-11 23:51:50 +04:00
|
|
|
|
|
|
|
mca_base_param_reg_int(&mca_rds_hostfile_component.super.rds_version, "debug",
|
|
|
|
"Toggle debug output for hostfile RDS component",
|
|
|
|
false, false, (int)false,
|
|
|
|
&mca_rds_hostfile_component.debug);
|
|
|
|
mca_base_param_reg_string(&mca_rds_hostfile_component.super.rds_version, "path",
|
|
|
|
"ORTE Host filename",
|
|
|
|
false, false, path,
|
|
|
|
&mca_rds_hostfile_component.path);
|
|
|
|
|
2005-03-18 06:43:59 +03:00
|
|
|
mca_rds_hostfile_component.default_hostfile = (strcmp(mca_rds_hostfile_component.path,path) == 0);
|
2005-03-19 02:58:36 +03:00
|
|
|
free(path);
|
2005-08-11 23:51:50 +04:00
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
return ORTE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static orte_rds_base_module_t *orte_rds_hostfile_init(void)
|
|
|
|
{
|
2006-09-15 01:29:51 +04:00
|
|
|
/* if we are NOT an HNP, then don't select us */
|
|
|
|
if (!orte_process_info.seed) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
return &orte_rds_hostfile_module;
|
|
|
|
}
|
|
|
|
|
2006-09-15 01:29:51 +04:00
|
|
|
static int orte_rds_hostfile_finalize(void)
|
|
|
|
{
|
|
|
|
return ORTE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
/**
|
|
|
|
* Close all subsystems.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int orte_rds_hostfile_close(void)
|
|
|
|
{
|
2005-08-30 01:35:01 +04:00
|
|
|
OBJ_DESTRUCT(&mca_rds_hostfile_component.lock);
|
|
|
|
if (NULL != mca_rds_hostfile_component.path) {
|
|
|
|
free(mca_rds_hostfile_component.path);
|
|
|
|
}
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
return ORTE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|