2005-03-14 23:57:21 +03:00
/*
2005-11-05 22:57:48 +03:00
* 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 .
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 .
2006-07-05 00:12:35 +04:00
* Copyright ( c ) 2006 Cisco Systems , Inc . All rights reserved .
2005-03-14 23:57:21 +03:00
* $ COPYRIGHT $
*
* Additional copyrights may follow
*
* $ HEADER $
*
* These symbols are in a file by themselves to provide nice linker
* semantics . Since linkers generally pull in symbols by object
* files , keeping these symbols as the only symbols in this file
* prevents utility programs such as " ompi_info " from having to import
* entire components just to query their version and parameters .
*/
2006-02-12 04:33:29 +03:00
# include "orte_config.h"
2005-03-14 23:57:21 +03:00
2005-08-25 02:20:51 +04:00
# include "opal/mca/base/mca_base_param.h"
2005-09-10 14:39:15 +04:00
# include "opal/util/output.h"
2005-10-04 23:38:51 +04:00
# include "opal/util/argv.h"
2006-02-12 04:33:29 +03:00
# include "orte/orte_constants.h"
2006-09-15 01:29:51 +04:00
# include "orte/util/proc_info.h"
# include "orte/mca/errmgr/errmgr.h"
2005-08-25 02:20:51 +04:00
# include "orte/mca/pls/pls.h"
# include "orte/mca/pls/base/base.h"
2006-09-15 01:29:51 +04:00
# include "orte/mca/pls/base/pls_private.h"
2005-03-14 23:57:21 +03:00
# include "pls_tm.h"
/*
* Public string showing the pls ompi_tm component version number
*/
const char * mca_pls_tm_component_version_string =
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
" Open MPI tm pls MCA component version " ORTE_VERSION ;
2005-03-14 23:57:21 +03:00
/*
* Local function
*/
static int pls_tm_open ( void ) ;
2005-10-04 23:38:51 +04:00
static int pls_tm_close ( void ) ;
2006-09-15 01:29:51 +04:00
static orte_pls_base_module_t * pls_tm_init ( int * priority ) ;
2005-03-14 23:57:21 +03:00
/*
* Instantiate the public struct with all of our public information
* and pointers to our public functions in it
*/
2005-08-19 20:49:59 +04:00
orte_pls_tm_component_t mca_pls_tm_component = {
2005-03-14 23:57:21 +03:00
{
2005-08-19 20:49:59 +04:00
/* First, the mca_component_t struct containing meta information
about the component itself */
{
2006-09-15 01:29:51 +04:00
/* Indicate that we are a pls v1.3.0 component (which also
2005-08-19 20:49:59 +04:00
implies a specific MCA version ) */
2006-09-15 01:29:51 +04:00
ORTE_PLS_BASE_VERSION_1_3_0 ,
2005-08-19 20:49:59 +04:00
/* Component name and version */
" tm " ,
ORTE_MAJOR_VERSION ,
ORTE_MINOR_VERSION ,
ORTE_RELEASE_VERSION ,
/* Component open and close functions */
pls_tm_open ,
2005-10-04 23:38:51 +04:00
pls_tm_close ,
2005-08-19 20:49:59 +04:00
} ,
/* Next the MCA v1.0.0 component meta data */
{
/* Whether the component is checkpointable or not */
true
} ,
/* Initialization / querying functions */
pls_tm_init
}
2005-03-14 23:57:21 +03:00
} ;
static int pls_tm_open ( void )
{
2005-10-04 23:38:51 +04:00
int tmp ;
2005-08-19 20:49:59 +04:00
mca_base_component_t * comp = & mca_pls_tm_component . super . pls_version ;
2006-07-05 00:12:35 +04:00
mca_base_param_reg_int ( comp , " debug " , " Enable debugging of the TM pls " ,
2005-08-19 20:49:59 +04:00
false , false , 0 , & mca_pls_tm_component . debug ) ;
2006-07-05 00:12:35 +04:00
mca_base_param_reg_int ( comp , " verbose " , " Enable verbose output of the TM pls " ,
false , false , 0 , & mca_pls_tm_component . verbose ) ;
2005-08-19 20:49:59 +04:00
mca_base_param_reg_int ( comp , " priority " , " Default selection priority " ,
false , false , 75 , & mca_pls_tm_component . priority ) ;
2005-10-04 23:38:51 +04:00
mca_base_param_reg_string ( comp , " orted " ,
" Command to use to start proxy orted " ,
false , false , " orted " ,
& mca_pls_tm_component . orted ) ;
mca_base_param_reg_int ( comp , " want_path_check " ,
" Whether the launching process should check for the pls_tm_orted executable in the PATH before launching (the TM API does not give an idication of failure; this is a somewhat-lame workaround; non-zero values enable this check) " ,
false , false , ( int ) true , & tmp ) ;
mca_pls_tm_component . want_path_check = ( bool ) tmp ;
mca_pls_tm_component . checked_paths = NULL ;
return ORTE_SUCCESS ;
}
static int pls_tm_close ( void )
{
if ( NULL ! = mca_pls_tm_component . checked_paths ) {
opal_argv_free ( mca_pls_tm_component . checked_paths ) ;
}
2005-03-14 23:57:21 +03:00
return ORTE_SUCCESS ;
}
2006-09-15 01:29:51 +04:00
static orte_pls_base_module_t * pls_tm_init ( int * priority )
2005-03-14 23:57:21 +03:00
{
2006-09-15 01:29:51 +04:00
int rc ;
/* 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
/* Are we running under a TM job? */
if ( NULL ! = getenv ( " PBS_ENVIRONMENT " ) & &
NULL ! = getenv ( " PBS_JOBID " ) ) {
2006-09-15 01:29:51 +04:00
/* ensure the receive gets posted */
if ( ORTE_SUCCESS ! = ( rc = orte_pls_base_comm_start ( ) ) ) {
ORTE_ERROR_LOG ( rc ) ;
}
2005-08-19 20:49:59 +04:00
* priority = mca_pls_tm_component . priority ;
2005-03-14 23:57:21 +03:00
return & orte_pls_tm_module ;
}
/* Sadly, no */
2006-10-02 02:37:30 +04:00
opal_output_verbose ( 10 , orte_pls_base . pls_output ,
" pls:tm: NOT available for selection " ) ;
2005-03-14 23:57:21 +03:00
return NULL ;
}