eccodes/examples/C/bufr_keys_iterator.c

128 lines
3.5 KiB
C
Raw Normal View History

2015-02-06 16:38:23 +00:00
/*
2017-01-03 11:03:48 +00:00
* Copyright 2005-2017 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
2015-02-06 16:38:23 +00:00
* codes_keys_iterator structure to get all the available
* keys in a BUFR message.
*
*/
#include "eccodes.h"
#define MAX_VAL_LEN 1024
void usage(char* prog) {
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;
2015-02-09 16:39:14 +00:00
int keyType;
2015-03-17 13:36:47 +00:00
2015-02-09 15:41:15 +00:00
/* To skip certain keys use the combination of these flags:
2015-03-17 13:36:47 +00:00
2015-02-09 15:41:15 +00:00
unsigned long key_iterator_filter_flags=
2016-02-25 17:45:09 +00:00
CODES_KEYS_ITERATOR_SKIP_READ_ONLY |
CODES_KEYS_ITERATOR_SKIP_COMPUTED |
CODES_KEYS_ITERATOR_SKIP_CODED |
CODES_KEYS_ITERATOR_SKIP_EDITION_SPECIFIC |
CODES_KEYS_ITERATOR_SKIP_DUPLICATES |
2015-02-09 15:41:15 +00:00
CODES_KEYS_ITERATOR_SKIP_FUNCTION; */
2015-03-17 13:36:47 +00:00
2015-02-06 16:38:23 +00:00
unsigned long key_iterator_filter_flags=CODES_KEYS_ITERATOR_ALL_KEYS;
2015-03-17 13:36:47 +00:00
2015-02-09 15:41:15 +00:00
/* name_space=NULL to get all the keys. Other namespaces are e.g. "ls" */
2015-02-06 16:38:23 +00:00
char* name_space=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];
in=fopen(filename,"r");
if (!in) {
printf("ERROR: unable to open file %s\n", filename);
return 1;
}
2015-03-17 13:36:47 +00:00
2015-02-06 16:38:23 +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
{
2015-02-06 17:48:47 +00:00
codes_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
/* get key iterator */
2015-02-06 16:38:23 +00:00
kiter=codes_keys_iterator_new(h,key_iterator_filter_flags,name_space);
if (!kiter) {
printf("ERROR: Unable to create keys iterator\n");
exit(1);
}
2015-03-17 13:36:47 +00:00
2015-02-09 16:39:14 +00:00
/* we need to instruct ecCodes to unpack the data values */
2015-02-10 15:43:47 +00:00
CODES_CHECK(codes_set_long(h,"unpack",1),0);
2015-03-17 13:36:47 +00:00
2015-02-06 16:38:23 +00:00
/* loop over the keys */
while(codes_keys_iterator_next(kiter))
{
2015-02-09 15:41:15 +00:00
/* get key name*/
2015-02-06 16:38:23 +00:00
const char* name = codes_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
2015-02-09 16:39:14 +00:00
/* not array */
2015-09-03 14:49:24 +00:00
if(klen ==1)
2015-02-09 16:39:14 +00:00
{
vlen=MAX_VAL_LEN;
bzero(value,vlen);
2015-03-17 13:36:47 +00:00
2015-02-09 16:39:14 +00:00
codes_get_string(h,name,value,&vlen);
printf("%s\n",value);
}
/* for arrays */
else
printf("(array of %ld)\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 */
2015-02-06 16:38:23 +00:00
codes_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;
}