Blame src/mpi_t/cat_get_info.c

Packit Service c5cf8c
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
Packit Service c5cf8c
/*
Packit Service c5cf8c
 *  (C) 2011 by Argonne National Laboratory.
Packit Service c5cf8c
 *      See COPYRIGHT in top-level directory.
Packit Service c5cf8c
 */
Packit Service c5cf8c
Packit Service c5cf8c
#include "mpiimpl.h"
Packit Service c5cf8c
Packit Service c5cf8c
/* -- Begin Profiling Symbol Block for routine MPI_T_category_get_info */
Packit Service c5cf8c
#if defined(HAVE_PRAGMA_WEAK)
Packit Service c5cf8c
#pragma weak MPI_T_category_get_info = PMPI_T_category_get_info
Packit Service c5cf8c
#elif defined(HAVE_PRAGMA_HP_SEC_DEF)
Packit Service c5cf8c
#pragma _HP_SECONDARY_DEF PMPI_T_category_get_info  MPI_T_category_get_info
Packit Service c5cf8c
#elif defined(HAVE_PRAGMA_CRI_DUP)
Packit Service c5cf8c
#pragma _CRI duplicate MPI_T_category_get_info as PMPI_T_category_get_info
Packit Service c5cf8c
#elif defined(HAVE_WEAK_ATTRIBUTE)
Packit Service c5cf8c
int MPI_T_category_get_info(int cat_index, char *name, int *name_len, char *desc, int *desc_len,
Packit Service c5cf8c
                            int *num_cvars, int *num_pvars, int *num_categories)
Packit Service c5cf8c
    __attribute__ ((weak, alias("PMPI_T_category_get_info")));
Packit Service c5cf8c
#endif
Packit Service c5cf8c
/* -- End Profiling Symbol Block */
Packit Service c5cf8c
Packit Service c5cf8c
/* Define MPICH_MPI_FROM_PMPI if weak symbols are not supported to build
Packit Service c5cf8c
   the MPI routines */
Packit Service c5cf8c
#ifndef MPICH_MPI_FROM_PMPI
Packit Service c5cf8c
#undef MPI_T_category_get_info
Packit Service c5cf8c
#define MPI_T_category_get_info PMPI_T_category_get_info
Packit Service c5cf8c
#endif /* MPICH_MPI_FROM_PMPI */
Packit Service c5cf8c
Packit Service c5cf8c
#undef FUNCNAME
Packit Service c5cf8c
#define FUNCNAME MPI_T_category_get_info
Packit Service c5cf8c
#undef FCNAME
Packit Service c5cf8c
#define FCNAME MPL_QUOTE(FUNCNAME)
Packit Service c5cf8c
/*@
Packit Service c5cf8c
MPI_T_category_get_info - Get the information about a category
Packit Service c5cf8c
Packit Service c5cf8c
Input/Output Parameters:
Packit Service c5cf8c
+ name_len - length of the string and/or buffer for name (integer)
Packit Service c5cf8c
- desc_len - length of the string and/or buffer for desc (integer)
Packit Service c5cf8c
Packit Service c5cf8c
Input Parameters:
Packit Service c5cf8c
. cat_index - index of the category to be queried (integer)
Packit Service c5cf8c
Packit Service c5cf8c
Output Parameters:
Packit Service c5cf8c
+ name - buffer to return the string containing the name of the category (string)
Packit Service c5cf8c
. desc - buffer to return the string containing the description of the category (string)
Packit Service c5cf8c
. num_cvars - number of control variables contained in the category (integer)
Packit Service c5cf8c
. num_pvars - number of performance variables contained in the category (integer)
Packit Service c5cf8c
- num_categories - number of categories contained in the category (integer)
Packit Service c5cf8c
Packit Service c5cf8c
.N ThreadSafe
Packit Service c5cf8c
Packit Service c5cf8c
.N Errors
Packit Service c5cf8c
.N MPI_SUCCESS
Packit Service c5cf8c
.N MPI_T_ERR_NOT_INITIALIZED
Packit Service c5cf8c
.N MPI_T_ERR_INVALID_INDEX
Packit Service c5cf8c
@*/
Packit Service c5cf8c
int MPI_T_category_get_info(int cat_index, char *name, int *name_len, char *desc,
Packit Service c5cf8c
                            int *desc_len, int *num_cvars, int *num_pvars, int *num_categories)
Packit Service c5cf8c
{
Packit Service c5cf8c
    int mpi_errno = MPI_SUCCESS;
Packit Service c5cf8c
    cat_table_entry_t *cat;
Packit Service c5cf8c
Packit Service c5cf8c
    MPIR_FUNC_TERSE_STATE_DECL(MPID_STATE_MPI_T_CATEGORY_GET_INFO);
Packit Service c5cf8c
    MPIR_ERRTEST_MPIT_INITIALIZED(mpi_errno);
Packit Service c5cf8c
    MPIR_T_THREAD_CS_ENTER();
Packit Service c5cf8c
    MPIR_FUNC_TERSE_ENTER(MPID_STATE_MPI_T_CATEGORY_GET_INFO);
Packit Service c5cf8c
Packit Service c5cf8c
    /* Validate parameters */
Packit Service c5cf8c
#ifdef HAVE_ERROR_CHECKING
Packit Service c5cf8c
    {
Packit Service c5cf8c
        MPID_BEGIN_ERROR_CHECKS;
Packit Service c5cf8c
        {
Packit Service c5cf8c
            MPIR_ERRTEST_CAT_INDEX(cat_index, mpi_errno);
Packit Service c5cf8c
            /* Do not do _TEST_ARGNULL for other arguments, since this is
Packit Service c5cf8c
             * allowed or will be allowed by MPI_T standard.
Packit Service c5cf8c
             */
Packit Service c5cf8c
        }
Packit Service c5cf8c
        MPID_END_ERROR_CHECKS;
Packit Service c5cf8c
    }
Packit Service c5cf8c
#endif /* HAVE_ERROR_CHECKING */
Packit Service c5cf8c
Packit Service c5cf8c
    /* ... body of routine ...  */
Packit Service c5cf8c
Packit Service c5cf8c
    cat = (cat_table_entry_t *) utarray_eltptr(cat_table, cat_index);
Packit Service c5cf8c
    MPIR_T_strncpy(name, cat->name, name_len);
Packit Service c5cf8c
    MPIR_T_strncpy(desc, cat->desc, desc_len);
Packit Service c5cf8c
Packit Service c5cf8c
    if (num_cvars != NULL)
Packit Service c5cf8c
        *num_cvars = utarray_len(cat->cvar_indices);
Packit Service c5cf8c
Packit Service c5cf8c
    if (num_pvars != NULL)
Packit Service c5cf8c
        *num_pvars = utarray_len(cat->pvar_indices);
Packit Service c5cf8c
Packit Service c5cf8c
    if (num_categories != NULL)
Packit Service c5cf8c
        *num_categories = utarray_len(cat->subcat_indices);
Packit Service c5cf8c
    /* ... end of body of routine ... */
Packit Service c5cf8c
Packit Service c5cf8c
#ifdef HAVE_ERROR_CHECKING
Packit Service c5cf8c
  fn_exit:
Packit Service c5cf8c
#endif
Packit Service c5cf8c
    MPIR_FUNC_TERSE_EXIT(MPID_STATE_MPI_T_CATEGORY_GET_INFO);
Packit Service c5cf8c
    MPIR_T_THREAD_CS_EXIT();
Packit Service c5cf8c
    return mpi_errno;
Packit Service c5cf8c
Packit Service c5cf8c
#ifdef HAVE_ERROR_CHECKING
Packit Service c5cf8c
  fn_fail:
Packit Service c5cf8c
    /* --BEGIN ERROR HANDLING-- */
Packit Service c5cf8c
    {
Packit Service c5cf8c
        mpi_errno =
Packit Service c5cf8c
            MPIR_Err_create_code(mpi_errno, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OTHER,
Packit Service c5cf8c
                                 "**mpi_t_category_get_info",
Packit Service c5cf8c
                                 "**mpi_t_category_get_info %d %p %p %p %p %p %p %p", cat_index,
Packit Service c5cf8c
                                 name, name_len, desc, desc_len, num_cvars, num_pvars,
Packit Service c5cf8c
                                 num_categories);
Packit Service c5cf8c
    }
Packit Service c5cf8c
    mpi_errno = MPIR_Err_return_comm(NULL, FCNAME, mpi_errno);
Packit Service c5cf8c
    goto fn_exit;
Packit Service c5cf8c
    /* --END ERROR HANDLING-- */
Packit Service c5cf8c
#endif
Packit Service c5cf8c
}