eccodes/tests/extract_offsets.cc

57 lines
1.5 KiB
C++
Raw Normal View History

2020-11-30 21:08:16 +00:00
/*
* (C) Copyright 2005- ECMWF.
*
* 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.
*/
#include "eccodes.h"
#undef NDEBUG
2020-11-30 21:08:16 +00:00
#include <assert.h>
int main(int argc, char* argv[])
{
char *filename = NULL;
char *what = NULL; // offsets or sizes
2020-11-30 21:08:16 +00:00
int err = 0;
int num_messages = 0, i =0;
off_t* offsets = NULL;
size_t* sizes = NULL;
2020-11-30 21:08:16 +00:00
codes_context* c = codes_context_get_default();
const int strict_mode = 1;
/* Usage: prog mode file */
assert(argc == 3);
2020-11-30 21:08:16 +00:00
what = argv[1];
filename = argv[2];
2022-12-26 14:37:01 +00:00
if (strcmp(what, "-o")==0) {
err = codes_extract_offsets_malloc(c, filename, PRODUCT_ANY, &offsets, &num_messages, strict_mode);
if (err) return err;
for (i = 0; i < num_messages; ++i) {
printf("%lu\n", (unsigned long)offsets[i]);
}
free(offsets);
2020-11-30 21:08:16 +00:00
}
if (strcmp(what, "-s")==0) {
// Version getting offsets as well as sizes of messages
err = codes_extract_offsets_sizes_malloc(c, filename, PRODUCT_ANY, &offsets, &sizes, &num_messages, strict_mode);
if (err) return err;
for (i = 0; i < num_messages; ++i) {
printf("%zu\n", sizes[i]);
}
free(offsets);
free(sizes);
}
2020-11-30 21:08:16 +00:00
return 0;
}