1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2004-2008 The Trustees of Indiana University.
* 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 (c) 2015 Los Alamos National Security, LLC. All rights
* reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "ompi_config.h"
#include "opal/util/output.h"
#include "ompi/mca/crcp/crcp.h"
#include "ompi/mca/crcp/base/base.h"
#include "crcp_bkmrk.h"
/*
* Public string for version number
*/
const char *ompi_crcp_bkmrk_component_version_string =
"OMPI CRCP bkmrk MCA component version " OMPI_VERSION;
bool timing_enabled;
/*
* Local functionality
*/
static int crcp_bkmrk_register(void);
static int crcp_bkmrk_open(void);
static int crcp_bkmrk_close(void);
/*
* Instantiate the public struct with all of our public information
* and pointer to our public functions in it
*/
ompi_crcp_bkmrk_component_t mca_crcp_bkmrk_component = {
/* First do the base component stuff */
{
/* Handle the general mca_component_t struct containing
* meta information about the component
*/
.base_version = {
OMPI_CRCP_BASE_VERSION_2_0_0,
/* Component name and version */
.mca_component_name = "bkmrk",
MCA_BASE_MAKE_VERSION(component, OMPI_MAJOR_VERSION, OMPI_MINOR_VERSION,
OMPI_RELEASE_VERSION),
/* Component open and close functions */
.mca_open_component = crcp_bkmrk_open,
.mca_close_component = crcp_bkmrk_close,
.mca_query_component = ompi_crcp_bkmrk_component_query,
.mca_register_component_params = crcp_bkmrk_register,
},
.base_data = {
/* The component is checkpoint ready */
MCA_BASE_METADATA_PARAM_CHECKPOINT
},
.verbose = 0,
.output_handle = -1,
.priority = 20,
}
};
static int crcp_bkmrk_register(void)
{
/*
* This should be the last componet to ever get used since
* it doesn't do anything.
*/
mca_crcp_bkmrk_component.super.priority = 20;
(void) mca_base_component_var_register(&mca_crcp_bkmrk_component.super.base_version,
"priority",
"Priority of the CRCP bkmrk component",
MCA_BASE_VAR_TYPE_INT, NULL, 0, 0,
OPAL_INFO_LVL_9,
MCA_BASE_VAR_SCOPE_READONLY,
&mca_crcp_bkmrk_component.super.priority);
mca_crcp_bkmrk_component.super.verbose = 0;
(void) mca_base_component_var_register(&mca_crcp_bkmrk_component.super.base_version,
"verbose",
"Verbose level for the CRCP bkmrk component",
MCA_BASE_VAR_TYPE_INT, NULL, 0, 0,
OPAL_INFO_LVL_9,
MCA_BASE_VAR_SCOPE_READONLY,
&mca_crcp_bkmrk_component.super.verbose);
timing_enabled = false;
(void) mca_base_component_var_register(&mca_crcp_bkmrk_component.super.base_version,
"timing", "Enable Performance timing",
MCA_BASE_VAR_TYPE_BOOL, NULL, 0, 0,
OPAL_INFO_LVL_9,
MCA_BASE_VAR_SCOPE_READONLY,
&timing_enabled);
return OMPI_SUCCESS;
}
static int crcp_bkmrk_open(void)
{
/* If there is a custom verbose level for this component than use it
* otherwise take our parents level and output channel
*/
if ( 0 != mca_crcp_bkmrk_component.super.verbose) {
mca_crcp_bkmrk_component.super.output_handle = opal_output_open(NULL);
opal_output_set_verbosity(mca_crcp_bkmrk_component.super.output_handle,
mca_crcp_bkmrk_component.super.verbose);
} else {
mca_crcp_bkmrk_component.super.output_handle = ompi_crcp_base_framework.framework_output;
}
/*
* Debug Output
*/
opal_output_verbose(10, mca_crcp_bkmrk_component.super.output_handle,
"crcp:bkmrk: open()");
opal_output_verbose(20, mca_crcp_bkmrk_component.super.output_handle,
"crcp:bkmrk: open: priority = %d",
mca_crcp_bkmrk_component.super.priority);
opal_output_verbose(20, mca_crcp_bkmrk_component.super.output_handle,
"crcp:bkmrk: open: verbosity = %d",
mca_crcp_bkmrk_component.super.verbose);
return OMPI_SUCCESS;
}
static int crcp_bkmrk_close(void)
{
opal_output_verbose(10, mca_crcp_bkmrk_component.super.output_handle,
"crcp:bkmrk: close()");
return OMPI_SUCCESS;
}
|