eccodes/tests/grib_multi_from_message.cc

77 lines
2.0 KiB
C++
Raw Normal View History

2013-03-25 12:04:10 +00:00
/*
2020-01-28 14:32:34 +00:00
* (C) Copyright 2005- 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.
*/
2024-03-04 18:52:22 +00:00
/* Test: reading GRIB2 multi fields messages from memory */
2013-03-25 12:04:10 +00:00
#include "grib_api_internal.h"
int main(int argc, char* argv[])
2019-12-16 12:47:29 +00:00
{
struct stat finfo;
2024-03-04 18:52:22 +00:00
char shortName[20] = {0,};
2019-12-16 12:47:29 +00:00
size_t len;
grib_handle* h = NULL;
size_t fsize;
unsigned char* data = NULL;
unsigned char* p = NULL;
void* pdata = NULL;
int error = 0;
int count = 0;
char* filename = NULL;
FILE* f = NULL;
long level = 0;
grib_context* c = grib_context_get_default();
int multi_support = 0;
2013-03-25 12:04:10 +00:00
if (argc == 3 && !strcmp(argv[1], "-m")) {
grib_multi_support_on(c);
multi_support = 1;
filename = argv[2];
}
else if (argc == 2)
filename = argv[1];
else
2024-03-04 18:52:22 +00:00
return 1;
2013-03-25 12:04:10 +00:00
2024-12-20 12:58:07 +00:00
ECCODES_ASSERT(filename);
f = fopen(filename, "rb");
2024-12-20 12:58:07 +00:00
ECCODES_ASSERT(f);
2013-03-25 12:04:10 +00:00
2019-12-16 12:47:29 +00:00
stat(filename, &finfo);
fsize = finfo.st_size;
2013-03-25 12:04:10 +00:00
data = (unsigned char*)malloc(fsize);
p = data;
2024-12-20 12:58:07 +00:00
ECCODES_ASSERT(data);
2013-03-25 12:04:10 +00:00
if (fread(data, 1, fsize, f) != fsize) {
perror(filename);
exit(1);
}
fclose(f);
pdata = &data;
2013-03-25 12:04:10 +00:00
while ((h = grib_handle_new_from_multi_message(c, (void**)pdata, &fsize, &error)) != NULL) {
count++;
len = 20;
GRIB_CHECK(grib_get_string(h, "shortName", shortName, &len), "shortName");
GRIB_CHECK(grib_get_long(h, "level", &level), "level");
printf("%d %s %ld\n", count, shortName, level);
if (!multi_support) {
grib_context_free(c, h->buffer->data); /* See grib_handle_delete and grib_buffer_delete */
}
grib_handle_delete(h);
}
2013-03-25 12:04:10 +00:00
free(p);
2013-03-25 12:04:10 +00:00
return 0;
2013-03-25 12:04:10 +00:00
}