eccodes/tools/grib_index_build.c

157 lines
4.0 KiB
C
Raw Normal View History

2013-03-25 12:04:10 +00:00
/*
2019-04-15 13:44:45 +00:00
* Copyright 2005-2019 ECMWF.
2013-03-25 12:04:10 +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: grib_index_build
2013-03-25 12:04:10 +00:00
*
*/
#include "grib_tools.h"
2018-08-07 12:50:41 +00:00
const char* grib_tool_description="Build an index file for a set of input GRIB files.";
const char* grib_tool_name="grib_index_build";
const char* grib_tool_usage="[options] grib_file grib_file ... ";
static grib_index* idx=NULL;
static char* keys;
static char* default_keys = "mars";
2013-03-25 12:04:10 +00:00
grib_option grib_options[]={
/* {id, args, help}, on, command_line, value */
{"f",0,0,0,1,0},
2014-10-15 18:02:50 +00:00
{"o:","output_index_file",
"\n\t\tOutput is written to output_index_file."
"\n\t\tIf an output index file is required and -o is not used, the"
2018-08-07 13:25:26 +00:00
" output index is written to 'gribidx'\n",
2014-10-15 18:02:50 +00:00
1,1,"gribidx"},
{"k:",0,0,0,1,0},
{"V",0,0,0,1,0},
{"T:",0,0,0,1,0},
{"M",0,0,0,1,0},
{"N",0,"Do not compress index."
2018-08-07 13:25:26 +00:00
"\n\t\tBy default the index is compressed to remove keys with only one value.\n",0,1,0
}
2013-03-25 12:04:10 +00:00
};
static int compress_index;
2013-03-25 12:04:10 +00:00
int grib_options_count=sizeof(grib_options)/sizeof(grib_option);
int main(int argc, char *argv[])
{
int ret=grib_tool(argc,argv);
return ret;
2013-03-25 12:04:10 +00:00
}
int grib_tool_before_getopt(grib_runtime_options* options)
{
return 0;
2013-03-25 12:04:10 +00:00
}
int grib_tool_init(grib_runtime_options* options)
{
int ret=0;
grib_context* c=grib_context_get_default();
2013-03-25 12:04:10 +00:00
if (grib_options_on("N")) compress_index=0;
else compress_index=1;
2013-03-25 12:04:10 +00:00
if (grib_options_on("k:"))
keys=grib_options_get_option("k:");
else
keys=default_keys;
2013-03-25 12:04:10 +00:00
options->onlyfiles=1;
2013-03-25 12:04:10 +00:00
idx=grib_index_new(c,keys,&ret);
2013-03-25 12:04:10 +00:00
if (!idx || ret)
grib_context_log(c,GRIB_LOG_FATAL,
"Unable to create index %s",grib_get_error_message(ret));
2013-03-25 12:04:10 +00:00
return 0;
2013-03-25 12:04:10 +00:00
}
int grib_tool_new_filename_action(grib_runtime_options* options,const char* file)
{
int ret=0;
printf("--- %s: processing %s\n",grib_tool_name,file);
ret=grib_index_add_file(idx,file);
if (ret) {printf("error: %s\n",grib_get_error_message(ret)); exit(ret);}
return 0;
2013-03-25 12:04:10 +00:00
}
int grib_tool_new_file_action(grib_runtime_options* options,grib_tools_file* file)
{
return 0;
2013-03-25 12:04:10 +00:00
}
int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h)
{
return 0;
2013-03-25 12:04:10 +00:00
}
int grib_tool_skip_handle(grib_runtime_options* options, grib_handle* h)
{
return 0;
2013-03-25 12:04:10 +00:00
}
void grib_tool_print_key_values(grib_runtime_options* options,grib_handle* h)
{
2013-03-25 12:04:10 +00:00
}
int grib_tool_finalise_action(grib_runtime_options* options)
{
2016-04-13 18:32:18 +00:00
grib_index_key* the_keys;
grib_string_list* values;
int first;
if (compress_index) {
grib_index_compress(idx);
}
printf("--- %s: keys included in the index file %s:\n",
grib_tool_name,options->outfile->name);
printf("--- ");
first=1;
2016-04-13 18:32:18 +00:00
the_keys=idx->keys;
while (the_keys) {
if (!first) printf(", ");
2016-04-13 18:32:18 +00:00
printf("%s",the_keys->name);
the_keys=the_keys->next;
first=0;
}
printf("\n");
2016-04-13 18:32:18 +00:00
the_keys=idx->keys;
while (the_keys) {
printf("--- %s = { ",the_keys->name);
values=the_keys->values;
first=1;
while (values) {
if (!first) printf(", ");
printf("%s",values->value);
first=0;
values=values->next;
}
printf(" }\n");
2016-04-13 18:32:18 +00:00
the_keys=the_keys->next;
}
printf("--- %d messages indexed\n",idx->count);
if (idx->count)
grib_index_write(idx,options->outfile->name);
grib_index_delete(idx);
return 0;
2013-03-25 12:04:10 +00:00
}
int grib_no_handle_action(grib_runtime_options* options, int err)
2016-04-13 18:32:18 +00:00
{
fprintf(dump_file,"\t\t\"ERROR: unreadable message\"\n");
return 0;
}