eccodes/tools/codes_info.c

117 lines
3.3 KiB
C
Raw Normal View History

2015-01-16 16:35:11 +00:00
/*
* Copyright 2005-2016 ECMWF.
2015-01-16 16:35:11 +00:00
*
* This software is licensed under the terms of the Apache Licence Version 2.0
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
*
* In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
* virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
*/
/*
* C Implementation: codes_info
*
* Description:
*
*/
#include "grib_tools.h"
void usage( char*);
#define INFO_PRINT_ALL 0
#define INFO_PRINT_VERSION (1<<0)
#define INFO_PRINT_DEFINITION_PATH (1<<1)
2015-01-16 16:35:11 +00:00
#define INFO_PRINT_SAMPLES_PATH (1<<2)
int main( int argc,char* argv[])
{
char* path=NULL;
int c=0;
int nfiles=0;
unsigned long print_flags=0;
int major=ECCODES_MAJOR_VERSION;
int minor=ECCODES_MINOR_VERSION;
int revision=ECCODES_REVISION_VERSION;
2015-01-16 16:35:11 +00:00
while (1) {
c = getopt (argc, argv, "vds");
2015-01-16 16:35:11 +00:00
if (c == -1)
break;
switch (c) {
case 'v':
print_flags|=INFO_PRINT_VERSION;
break;
case 'd':
print_flags|=INFO_PRINT_DEFINITION_PATH;
break;
case 's':
2015-01-16 16:35:11 +00:00
print_flags|=INFO_PRINT_SAMPLES_PATH;
break;
default:
usage(argv[0]);
}
}
nfiles=argc-optind;
if (nfiles != 0) usage(argv[0]);
if (print_flags == INFO_PRINT_ALL) {
printf("\n");
printf("eccodes Version %d.%d.%d",
major,minor,revision);
2015-03-10 18:20:46 +00:00
/* if (ECCODES_MAJOR_VERSION < 1) printf(" PRE-RELEASE"); */
2015-01-16 16:35:11 +00:00
printf("\n");
printf("\n");
2015-01-29 15:49:23 +00:00
#if GRIB_PTHREADS
grib_context_log(grib_context_get_default(), GRIB_LOG_DEBUG, "PTHREADS enabled");
#endif
if ((path=codes_getenv("ECCODES_DEFINITION_PATH")) != NULL) {
2015-01-16 16:35:11 +00:00
printf("Definition files path from environment variable");
printf(" ECCODES_DEFINITION_PATH=%s\n",path);
2015-01-16 16:35:11 +00:00
} else {
printf("Default definition files path is used: %s\n",ECCODES_DEFINITION_PATH);
printf("Definition files path can be changed setting ECCODES_DEFINITION_PATH environment variable\n");
2015-01-16 16:35:11 +00:00
}
printf("\n");
if ((path=codes_getenv("ECCODES_SAMPLES_PATH")) != NULL) {
2015-01-16 16:35:11 +00:00
printf("SAMPLES path from environment variable");
printf(" ECCODES_SAMPLES_PATH=%s\n",path);
2015-01-16 16:35:11 +00:00
} else {
printf("Default SAMPLES path is used: %s\n",ECCODES_SAMPLES_PATH);
printf("SAMPLES path can be changed setting ECCODES_SAMPLES_PATH environment variable\n");
2015-01-16 16:35:11 +00:00
}
printf("\n");
return 0;
}
if (print_flags & INFO_PRINT_VERSION)
printf("%d.%d.%d ",major,minor,revision);
if (print_flags & INFO_PRINT_DEFINITION_PATH) {
if ((path=codes_getenv("ECCODES_DEFINITION_PATH")) != NULL) {
2015-01-16 16:35:11 +00:00
printf("%s",path);
} else {
printf("%s",ECCODES_DEFINITION_PATH);
2015-01-16 16:35:11 +00:00
}
}
if (print_flags & INFO_PRINT_SAMPLES_PATH) {
if ((path=codes_getenv("ECCODES_SAMPLES_PATH")) != NULL) {
2015-01-16 16:35:11 +00:00
printf("%s",path);
} else {
printf("%s",ECCODES_SAMPLES_PATH);
2015-01-16 16:35:11 +00:00
}
}
return 0;
}
void usage(char* progname) {
printf("\nUsage: %s [-v] [-d] [-s]\n",progname);
2015-01-16 16:35:11 +00:00
exit(1);
}