eccodes/examples/C/bufr_keys_iterator.c

113 lines
2.9 KiB
C
Raw Normal View History

2015-02-06 16:38:23 +00:00
/*
2019-04-15 13:44:45 +00:00
* Copyright 2005-2019 ECMWF.
2015-02-06 16:38:23 +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: bufr_keys_iterator
*
2015-02-09 15:41:15 +00:00
* Description: how to use keys_iterator functions and the
* codes_bufr_keys_iterator structure to get all the available
* keys in a BUFR message.
2015-02-06 16:38:23 +00:00
*
*/
#include "eccodes.h"
#define MAX_VAL_LEN 1024
2017-08-25 16:26:08 +00:00
static void usage(const char* prog) {
2015-02-06 16:38:23 +00:00
printf("usage: %s infile\n",prog);
exit(1);
}
int main(int argc,char* argv[])
{
char* filename = NULL;
FILE* in = NULL;
2015-03-17 13:36:47 +00:00
2015-02-06 16:38:23 +00:00
/* message handle. Required in all the eccodes calls acting on a message.*/
codes_handle* h=NULL;
int err=0, cnt=0;
int keyType = 0;
2015-03-17 13:36:47 +00:00
2015-02-06 16:38:23 +00:00
char value[MAX_VAL_LEN];
size_t vlen=MAX_VAL_LEN;
2015-02-09 15:41:15 +00:00
size_t klen=0;
2015-03-17 13:36:47 +00:00
2015-02-06 16:38:23 +00:00
if (argc!=2) usage(argv[0]);
2015-03-17 13:36:47 +00:00
2015-02-06 16:38:23 +00:00
filename=argv[1];
2019-03-11 12:53:05 +00:00
in=fopen(filename,"rb");
2015-02-06 16:38:23 +00:00
if (!in) {
printf("ERROR: unable to open file %s\n", filename);
return 1;
}
2015-03-17 13:36:47 +00:00
/* loop over the messages in the BUFR file */
2015-02-12 17:34:01 +00:00
while ((h = codes_handle_new_from_file(NULL,in,PRODUCT_BUFR,&err)) != NULL || err != CODES_SUCCESS)
2015-02-06 16:38:23 +00:00
{
codes_bufr_keys_iterator* kiter=NULL;
2015-02-06 16:38:23 +00:00
if (h == NULL) {
printf("Error: unable to create handle for message %d\n",cnt);
cnt++;
continue;
}
2015-03-17 13:36:47 +00:00
2015-02-06 16:38:23 +00:00
printf("message: %d\n",cnt);
2015-02-06 17:48:47 +00:00
/* we need to instruct ecCodes to unpack the data values */
CODES_CHECK(codes_set_long(h,"unpack",1),0);
/* get BUFR key iterator */
kiter=codes_bufr_keys_iterator_new(h,0);
2015-02-06 16:38:23 +00:00
if (!kiter) {
printf("ERROR: Unable to create BUFR keys iterator\n");
2015-02-06 16:38:23 +00:00
exit(1);
}
2015-03-17 13:36:47 +00:00
2015-02-06 16:38:23 +00:00
/* loop over the keys */
while(codes_bufr_keys_iterator_next(kiter))
2015-02-06 16:38:23 +00:00
{
/* get key name */
char* name = codes_bufr_keys_iterator_get_name(kiter);
2015-02-09 16:39:14 +00:00
printf(" %s=",name);
2015-03-17 13:36:47 +00:00
2015-02-09 16:39:14 +00:00
CODES_CHECK(codes_get_native_type(h,name,&keyType),0);
2015-03-17 13:36:47 +00:00
2015-02-09 16:39:14 +00:00
/* get key size to see if it is an array */
CODES_CHECK(codes_get_size(h,name,&klen),0);
2015-03-17 13:36:47 +00:00
if (klen ==1)
{
/* not array */
2015-02-09 16:39:14 +00:00
vlen=MAX_VAL_LEN;
memset(value, 0, vlen);
2015-02-09 16:39:14 +00:00
codes_get_string(h,name,value,&vlen);
printf("%s\n",value);
2015-02-09 16:39:14 +00:00
}
else {
/* for arrays */
2017-09-01 16:35:30 +00:00
printf("(array of %lu)\n",klen);
}
2015-02-06 16:38:23 +00:00
}
2015-03-17 13:36:47 +00:00
2015-02-09 12:30:11 +00:00
/* delete key iterator */
codes_bufr_keys_iterator_delete(kiter);
2015-03-17 13:36:47 +00:00
2015-02-06 16:38:23 +00:00
/* delete handle */
codes_handle_delete(h);
2015-03-17 13:36:47 +00:00
2015-02-06 16:38:23 +00:00
cnt++;
}
2015-03-17 13:36:47 +00:00
2015-02-06 16:38:23 +00:00
fclose(in);
return 0;
}