2004-01-26 01:07:54 +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.
|
2014-05-17 02:23:52 +04:00
|
|
|
* Copyright (c) 2004-2013 The University of Tennessee and The University
|
2005-11-05 22:57:48 +03:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2004-11-28 23:09:25 +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.
|
2014-05-17 02:23:52 +04:00
|
|
|
* Copyright (c) 2012-2013 Inria. All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-01-26 01:07:54 +03:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#include "ompi_config.h"
|
2004-01-26 01:07:54 +03:00
|
|
|
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/mpi/c/bindings.h"
|
2009-04-29 05:32:14 +04:00
|
|
|
#include "ompi/runtime/params.h"
|
|
|
|
#include "ompi/communicator/communicator.h"
|
|
|
|
#include "ompi/errhandler/errhandler.h"
|
2005-09-12 13:17:44 +04:00
|
|
|
#include "ompi/info/info.h"
|
2004-02-04 01:34:01 +03:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2004-01-26 01:07:54 +03:00
|
|
|
|
2009-05-07 00:11:28 +04:00
|
|
|
#if OPAL_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
2004-01-26 01:07:54 +03:00
|
|
|
#pragma weak MPI_Info_set = PMPI_Info_set
|
|
|
|
#endif
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#if OMPI_PROFILING_DEFINES
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/mpi/c/profile/defines.h"
|
2004-04-20 22:50:43 +04:00
|
|
|
#endif
|
|
|
|
|
2004-07-30 06:58:53 +04:00
|
|
|
static const char FUNC_NAME[] = "MPI_Info_set";
|
|
|
|
|
|
|
|
|
2004-02-02 01:28:20 +03:00
|
|
|
/**
|
|
|
|
* MPI_Info_set - Set a (key, value) pair in an 'MPI_Info' object
|
|
|
|
*
|
|
|
|
* @param key null-terminated character string of the index key
|
|
|
|
* @param value null-terminated character string of the value
|
|
|
|
* @param info info object (handle)
|
|
|
|
*
|
|
|
|
* @retval MPI_SUCCESS
|
|
|
|
* @retval MPI_ERR_ARG
|
|
|
|
* @retval MPI_ERR_INFO_KEY
|
|
|
|
* @retval MPI_ERR_INFO_VAL
|
|
|
|
* @retval MPI_ERR_INFO_NOKEY
|
2004-08-12 20:56:24 +04:00
|
|
|
* @retval MPI_ERR_NO_MEM
|
2004-02-02 01:28:20 +03:00
|
|
|
*
|
|
|
|
* MPI_Info_set adds the (key,value) pair to info, and overrides
|
2013-07-01 16:40:08 +04:00
|
|
|
* the value if for the same key a previsou value was set. key and
|
|
|
|
* value must be NULL terminated strings in C. In Fortan, leading
|
2004-02-02 01:28:20 +03:00
|
|
|
* and trailing spaces in key and value are stripped. If either
|
|
|
|
* key or value is greater than the allowed maxima, MPI_ERR_INFO_KEY
|
|
|
|
* and MPI_ERR_INFO_VALUE are raised
|
|
|
|
*/
|
2014-03-12 03:50:09 +04:00
|
|
|
int MPI_Info_set(MPI_Info info, const char *key, const char *value)
|
2004-07-30 06:58:53 +04:00
|
|
|
{
|
2004-02-11 18:23:43 +03:00
|
|
|
int err;
|
2004-02-04 01:34:01 +03:00
|
|
|
int key_length;
|
|
|
|
int value_length;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Error conditions are
|
2013-07-01 16:40:08 +04:00
|
|
|
* - info is NULL
|
|
|
|
* - No storage space available for the new value
|
|
|
|
* - Key length exceeded MPI_MAX_KEY_VAL
|
|
|
|
* - value length exceeded MPI_MAX_KEY_VAL
|
2004-02-04 01:34:01 +03:00
|
|
|
*/
|
|
|
|
|
2004-04-21 02:13:39 +04:00
|
|
|
if (MPI_PARAM_CHECK) {
|
2004-07-30 06:58:53 +04:00
|
|
|
OMPI_ERR_INIT_FINALIZE(FUNC_NAME);
|
2004-08-12 20:56:24 +04:00
|
|
|
if (NULL == info || MPI_INFO_NULL == info ||
|
|
|
|
ompi_info_is_freed(info)) {
|
2004-07-30 06:58:53 +04:00
|
|
|
return OMPI_ERRHANDLER_INVOKE (MPI_COMM_WORLD, MPI_ERR_INFO,
|
|
|
|
FUNC_NAME);
|
2004-04-21 02:13:39 +04:00
|
|
|
}
|
2004-02-04 01:34:01 +03:00
|
|
|
|
2006-10-20 07:57:44 +04:00
|
|
|
key_length = (key) ? (int)strlen (key) : 0;
|
2004-07-30 06:58:53 +04:00
|
|
|
if ((NULL == key) || (0 == key_length) ||
|
|
|
|
(MPI_MAX_INFO_KEY <= key_length)) {
|
2004-06-07 19:33:53 +04:00
|
|
|
return OMPI_ERRHANDLER_INVOKE (MPI_COMM_WORLD, MPI_ERR_INFO_KEY,
|
2004-07-30 06:58:53 +04:00
|
|
|
FUNC_NAME);
|
2004-04-21 02:13:39 +04:00
|
|
|
}
|
2004-02-04 01:34:01 +03:00
|
|
|
|
2006-10-20 07:57:44 +04:00
|
|
|
value_length = (value) ? (int)strlen (value) : 0;
|
2004-07-30 06:58:53 +04:00
|
|
|
if ((NULL == value) || (0 == value_length) ||
|
2006-08-01 20:07:56 +04:00
|
|
|
(MPI_MAX_INFO_VAL <= value_length)) {
|
2004-06-07 19:33:53 +04:00
|
|
|
return OMPI_ERRHANDLER_INVOKE (MPI_COMM_WORLD, MPI_ERR_INFO_VALUE,
|
2004-07-30 06:58:53 +04:00
|
|
|
FUNC_NAME);
|
2004-04-21 02:13:39 +04:00
|
|
|
}
|
2004-02-04 01:34:01 +03:00
|
|
|
}
|
|
|
|
|
2008-02-20 01:15:52 +03:00
|
|
|
OPAL_CR_ENTER_LIBRARY();
|
|
|
|
|
2004-02-04 01:34:01 +03:00
|
|
|
/*
|
2004-02-11 18:23:43 +03:00
|
|
|
* If all is right with the arguments, then call the back-end
|
|
|
|
* allocator.
|
2004-02-04 01:34:01 +03:00
|
|
|
*/
|
2004-02-11 18:23:43 +03:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
err = ompi_info_set (info, key, value);
|
2004-07-30 06:58:53 +04:00
|
|
|
OMPI_ERRHANDLER_RETURN(err, MPI_COMM_WORLD, err, FUNC_NAME);
|
2004-01-26 01:07:54 +03:00
|
|
|
}
|