mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-12 15:04:59 +08:00
2090a527c1
* Moves get_option from the tools library to the C library * Adds H5 prefix to get_option call and variables * Renames the H5_get_option long options struct and enum
295 lines
9.2 KiB
C
295 lines
9.2 KiB
C
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* Copyright by The HDF Group. *
|
|
* All rights reserved. *
|
|
* *
|
|
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
* terms governing use, modification, and redistribution, is contained in *
|
|
* the COPYING file, which can be found at the root of the source code *
|
|
* distribution tree, or in https://www.hdfgroup.org/licenses. *
|
|
* If you do not have access to either file, you may request a copy from *
|
|
* help@hdfgroup.org. *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
/* This file contains the definition of functions required to build h5perf in
|
|
* STANDALONE mode.
|
|
* Created: Christian Chilan, 2005/5/18.
|
|
*/
|
|
|
|
#include "pio_perf.h"
|
|
|
|
#ifdef STANDALONE
|
|
MPI_Info h5_io_info_g = MPI_INFO_NULL; /* MPI INFO object for IO */
|
|
#endif
|
|
|
|
/** From h5tools_utils.c **/
|
|
|
|
/* global variables */
|
|
int nCols = 80;
|
|
|
|
/* ``get_option'' variables */
|
|
int H5_opterr = 1; /*get_option prints errors if this is on */
|
|
int H5_optind = 1; /*token pointer */
|
|
const char *H5_optarg; /*flag argument (or value) */
|
|
|
|
int
|
|
get_option(int argc, const char **argv, const char *opts, const struct h5_long_options *l_opts)
|
|
{
|
|
static int sp = 1; /* character index in current token */
|
|
int opt_opt = '?'; /* option character passed back to user */
|
|
|
|
if (sp == 1) {
|
|
/* check for more flag-like tokens */
|
|
if (H5_optind >= argc || argv[H5_optind][0] != '-' || argv[H5_optind][1] == '\0') {
|
|
return EOF;
|
|
}
|
|
else if (HDstrcmp(argv[H5_optind], "--") == 0) {
|
|
H5_optind++;
|
|
return EOF;
|
|
}
|
|
}
|
|
|
|
if (sp == 1 && argv[H5_optind][0] == '-' && argv[H5_optind][1] == '-') {
|
|
/* long command line option */
|
|
const char *arg = &argv[H5_optind][2];
|
|
int i;
|
|
|
|
for (i = 0; l_opts && l_opts[i].name; i++) {
|
|
size_t len = HDstrlen(l_opts[i].name);
|
|
|
|
if (HDstrncmp(arg, l_opts[i].name, len) == 0) {
|
|
/* we've found a matching long command line flag */
|
|
opt_opt = l_opts[i].shortval;
|
|
|
|
if (l_opts[i].has_arg != no_arg) {
|
|
if (arg[len] == '=') {
|
|
H5_optarg = &arg[len + 1];
|
|
}
|
|
else if (H5_optind < (argc - 1) && argv[H5_optind + 1][0] != '-') {
|
|
H5_optarg = argv[++H5_optind];
|
|
}
|
|
else if (l_opts[i].has_arg == require_arg) {
|
|
if (H5_opterr)
|
|
HDfprintf(stderr, "%s: option required for \"--%s\" flag\n", argv[0], arg);
|
|
|
|
opt_opt = '?';
|
|
}
|
|
}
|
|
else {
|
|
if (arg[len] == '=') {
|
|
if (H5_opterr)
|
|
HDfprintf(stderr, "%s: no option required for \"%s\" flag\n", argv[0], arg);
|
|
|
|
opt_opt = '?';
|
|
}
|
|
|
|
H5_optarg = NULL;
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (l_opts[i].name == NULL) {
|
|
/* exhausted all of the l_opts we have and still didn't match */
|
|
if (H5_opterr)
|
|
HDfprintf(stderr, "%s: unknown option \"%s\"\n", argv[0], arg);
|
|
|
|
opt_opt = '?';
|
|
}
|
|
|
|
H5_optind++;
|
|
sp = 1;
|
|
}
|
|
else {
|
|
register char *cp; /* pointer into current token */
|
|
|
|
/* short command line option */
|
|
opt_opt = argv[H5_optind][sp];
|
|
|
|
if (opt_opt == ':' || (cp = strchr(opts, opt_opt)) == 0) {
|
|
|
|
if (H5_opterr)
|
|
HDfprintf(stderr, "%s: unknown option \"%c\"\n", argv[0], opt_opt);
|
|
|
|
/* if no chars left in this token, move to next token */
|
|
if (argv[H5_optind][++sp] == '\0') {
|
|
H5_optind++;
|
|
sp = 1;
|
|
}
|
|
|
|
return '?';
|
|
}
|
|
|
|
if (*++cp == ':') {
|
|
/* if a value is expected, get it */
|
|
if (argv[H5_optind][sp + 1] != '\0') {
|
|
/* flag value is rest of current token */
|
|
H5_optarg = &argv[H5_optind++][sp + 1];
|
|
}
|
|
else if (++H5_optind >= argc) {
|
|
if (H5_opterr)
|
|
HDfprintf(stderr, "%s: value expected for option \"%c\"\n", argv[0], opt_opt);
|
|
|
|
opt_opt = '?';
|
|
}
|
|
else {
|
|
/* flag value is next token */
|
|
H5_optarg = argv[H5_optind++];
|
|
}
|
|
|
|
sp = 1;
|
|
}
|
|
else {
|
|
/* set up to look at next char in token, next time */
|
|
if (argv[H5_optind][++sp] == '\0') {
|
|
/* no more in current token, so setup next token */
|
|
H5_optind++;
|
|
sp = 1;
|
|
}
|
|
|
|
H5_optarg = NULL;
|
|
}
|
|
}
|
|
|
|
/* return the current flag character found */
|
|
return opt_opt;
|
|
}
|
|
|
|
void
|
|
print_version(const char *progname)
|
|
{
|
|
printf("%s: Version %u.%u.%u%s%s\n", progname, H5_VERS_MAJOR, H5_VERS_MINOR, H5_VERS_RELEASE,
|
|
H5_VERS_SUBRELEASE[0] ? "-" : "", H5_VERS_SUBRELEASE);
|
|
}
|
|
|
|
#ifdef STANDALONE
|
|
/*
|
|
* Function: h5_set_info_object
|
|
* Purpose: Process environment variables setting to set up MPI Info
|
|
* object.
|
|
* Return: 0 if all is fine; otherwise non-zero.
|
|
* Programmer: Albert Cheng, 2002/05/21.
|
|
* Modifications:
|
|
* Bill Wendling, 2002/05/31
|
|
* Modified so that the HDF5_MPI_INFO environment variable can
|
|
* be a semicolon separated list of "key=value" pairings. Most
|
|
* of the code is to remove any whitespaces which might be
|
|
* surrounding the "key=value" pairs.
|
|
*/
|
|
int
|
|
h5_set_info_object(void)
|
|
{
|
|
char *envp; /* environment pointer */
|
|
int ret_value = 0;
|
|
|
|
/* handle any MPI INFO hints via $HDF5_MPI_INFO */
|
|
if ((envp = HDgetenv("HDF5_MPI_INFO")) != NULL) {
|
|
char *next, *valp;
|
|
|
|
valp = envp = next = HDstrdup(envp);
|
|
|
|
if (!valp)
|
|
return 0;
|
|
|
|
/* create an INFO object if not created yet */
|
|
if (h5_io_info_g == MPI_INFO_NULL)
|
|
MPI_Info_create(&h5_io_info_g);
|
|
|
|
do {
|
|
size_t len;
|
|
char * key_val, *endp, *namep;
|
|
|
|
if (*valp == ';')
|
|
valp++;
|
|
|
|
/* copy key/value pair into temporary buffer */
|
|
len = strcspn(valp, ";");
|
|
next = &valp[len];
|
|
key_val = (char *)HDcalloc(1, len + 1);
|
|
|
|
/* increment the next pointer past the terminating semicolon */
|
|
if (*next == ';')
|
|
++next;
|
|
|
|
namep = HDstrncpy(key_val, valp, len);
|
|
|
|
/* pass up any beginning whitespaces */
|
|
while (*namep && (*namep == ' ' || *namep == '\t'))
|
|
namep++;
|
|
|
|
if (!*namep)
|
|
continue; /* was all white space, so move to next k/v pair */
|
|
|
|
/* eat up any ending white spaces */
|
|
endp = &namep[HDstrlen(namep) - 1];
|
|
|
|
while (endp && (*endp == ' ' || *endp == '\t'))
|
|
*endp-- = '\0';
|
|
|
|
/* find the '=' */
|
|
valp = HDstrchr(namep, '=');
|
|
|
|
if (valp != NULL) { /* it's a valid key/value pairing */
|
|
char *tmp_val = valp + 1;
|
|
|
|
/* change '=' to \0, move valp down one */
|
|
*valp-- = '\0';
|
|
|
|
/* eat up ending whitespace on the "key" part */
|
|
while (*valp == ' ' || *valp == '\t')
|
|
*valp-- = '\0';
|
|
|
|
valp = tmp_val;
|
|
|
|
/* eat up beginning whitespace on the "value" part */
|
|
while (*valp == ' ' || *valp == '\t')
|
|
*valp++ = '\0';
|
|
|
|
/* actually set the darned thing */
|
|
if (MPI_SUCCESS != MPI_Info_set(h5_io_info_g, namep, valp)) {
|
|
HDprintf("MPI_Info_set failed\n");
|
|
ret_value = -1;
|
|
}
|
|
}
|
|
|
|
valp = next;
|
|
HDfree(key_val);
|
|
} while (next && *next);
|
|
|
|
HDfree(envp);
|
|
}
|
|
|
|
return ret_value;
|
|
}
|
|
|
|
/*
|
|
* Function: h5_dump_info_object
|
|
* Purpose: Display content of an MPI Info object
|
|
* Return: void
|
|
* Programmer: Albert Cheng 2002/05/21
|
|
* Modifications:
|
|
*/
|
|
void
|
|
h5_dump_info_object(MPI_Info info)
|
|
{
|
|
char key[MPI_MAX_INFO_KEY + 1];
|
|
char value[MPI_MAX_INFO_VAL + 1];
|
|
int flag;
|
|
int i, nkeys;
|
|
|
|
HDprintf("Dumping MPI Info Object (up to %d bytes per item):\n", MPI_MAX_INFO_VAL);
|
|
if (info == MPI_INFO_NULL) {
|
|
HDprintf("object is MPI_INFO_NULL\n");
|
|
}
|
|
else {
|
|
MPI_Info_get_nkeys(info, &nkeys);
|
|
HDprintf("object has %d items\n", nkeys);
|
|
for (i = 0; i < nkeys; i++) {
|
|
MPI_Info_get_nthkey(info, i, key);
|
|
MPI_Info_get(info, key, MPI_MAX_INFO_VAL, value, &flag);
|
|
HDprintf("%s=%s\n", key, value);
|
|
}
|
|
}
|
|
}
|
|
#endif /* STANDALONE */
|