
This commit adds support for project_framework_component_* parameter matching. This is the first step in allowing the same framework name in multiple projects. This change also bumps the MCA component version to 2.1.0. All master frameworks have been updated to use the new component versioning macro. An mca.h has been added to each project to add a project specific versioning macro of the form PROJECT_MCA_VERSION_2_1_0. Signed-off-by: Nathan Hjelm <hjelmn@me.com>
117 строки
4.4 KiB
C
117 строки
4.4 KiB
C
/*
|
|
* Copyright (c) 2004-2008 The Trustees of Indiana University and Indiana
|
|
* University Research and Technology
|
|
* Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2011 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 (c) 2011 Cisco Systems, Inc. All rights reserved.
|
|
* Copyright (c) 2012 Oak Ridge National Labs. All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
|
|
#include "orte_config.h"
|
|
#include "orte/constants.h"
|
|
|
|
#include "orte/mca/mca.h"
|
|
#include "opal/util/output.h"
|
|
#include "opal/mca/base/base.h"
|
|
|
|
#include "orte/mca/ess/base/base.h"
|
|
|
|
/*
|
|
* The following file was created by configure. It contains extern
|
|
* statements and the definition of an array of pointers to each
|
|
* module's public mca_base_module_t struct.
|
|
*/
|
|
|
|
#include "orte/mca/ess/base/static-components.h"
|
|
|
|
orte_ess_base_module_t orte_ess = {
|
|
NULL, /* init */
|
|
NULL, /* finalize */
|
|
NULL, /* abort */
|
|
NULL /* ft_event */
|
|
};
|
|
int orte_ess_base_std_buffering = -1;
|
|
int orte_ess_base_num_procs = -1;
|
|
char *orte_ess_base_jobid = NULL;
|
|
char *orte_ess_base_vpid = NULL;
|
|
|
|
static mca_base_var_enum_value_t stream_buffering_values[] = {
|
|
{-1, "default"},
|
|
{0, "unbuffered"},
|
|
{1, "line_buffered"},
|
|
{2, "fully_buffered"},
|
|
{0, NULL}
|
|
};
|
|
|
|
static int orte_ess_base_register(mca_base_register_flag_t flags)
|
|
{
|
|
mca_base_var_enum_t *new_enum;
|
|
int ret;
|
|
|
|
orte_ess_base_std_buffering = -1;
|
|
(void) mca_base_var_enum_create("ess_base_stream_buffering", stream_buffering_values, &new_enum);
|
|
(void) mca_base_var_register("orte", "ess", "base", "stream_buffering",
|
|
"Adjust buffering for stdout/stderr "
|
|
"[-1 system default] [0 unbuffered] [1 line buffered] [2 fully buffered] "
|
|
"(Default: -1)",
|
|
MCA_BASE_VAR_TYPE_INT, new_enum, 0, 0,
|
|
OPAL_INFO_LVL_9,
|
|
MCA_BASE_VAR_SCOPE_READONLY, &orte_ess_base_std_buffering);
|
|
OBJ_RELEASE(new_enum);
|
|
|
|
orte_ess_base_jobid = NULL;
|
|
ret = mca_base_var_register("orte", "ess", "base", "jobid", "Process jobid",
|
|
MCA_BASE_VAR_TYPE_STRING, NULL, 0,
|
|
MCA_BASE_VAR_FLAG_INTERNAL,
|
|
OPAL_INFO_LVL_9,
|
|
MCA_BASE_VAR_SCOPE_READONLY, &orte_ess_base_jobid);
|
|
mca_base_var_register_synonym(ret, "orte", "orte", "ess", "jobid", 0);
|
|
|
|
orte_ess_base_vpid = NULL;
|
|
ret = mca_base_var_register("orte", "ess", "base", "vpid", "Process vpid",
|
|
MCA_BASE_VAR_TYPE_STRING, NULL, 0,
|
|
MCA_BASE_VAR_FLAG_INTERNAL,
|
|
OPAL_INFO_LVL_9,
|
|
MCA_BASE_VAR_SCOPE_READONLY, &orte_ess_base_vpid);
|
|
mca_base_var_register_synonym(ret, "orte", "orte", "ess", "vpid", 0);
|
|
|
|
orte_ess_base_num_procs = -1;
|
|
ret = mca_base_var_register("orte", "ess", "base", "num_procs",
|
|
"Used to discover the number of procs in the job",
|
|
MCA_BASE_VAR_TYPE_INT, NULL, 0,
|
|
MCA_BASE_VAR_FLAG_INTERNAL,
|
|
OPAL_INFO_LVL_9,
|
|
MCA_BASE_VAR_SCOPE_READONLY, &orte_ess_base_num_procs);
|
|
mca_base_var_register_synonym(ret, "orte", "orte", "ess", "num_procs", 0);
|
|
|
|
return ORTE_SUCCESS;
|
|
}
|
|
|
|
static int orte_ess_base_close(void)
|
|
{
|
|
return mca_base_framework_components_close(&orte_ess_base_framework, NULL);
|
|
}
|
|
|
|
static int orte_ess_base_open(mca_base_open_flag_t flags)
|
|
{
|
|
return mca_base_framework_components_open(&orte_ess_base_framework, flags);
|
|
}
|
|
|
|
MCA_BASE_FRAMEWORK_DECLARE(orte, ess, "ORTE Environmenal System Setup",
|
|
orte_ess_base_register, orte_ess_base_open, orte_ess_base_close,
|
|
mca_ess_base_static_components, 0);
|
|
|
|
|