eccodes/src/grib_accessor_class_diction...

363 lines
11 KiB
C++
Raw Normal View History

2014-06-20 16:25:20 +00:00
/*
2020-01-28 14:32:34 +00:00
* (C) Copyright 2005- ECMWF.
2014-06-20 16:25:20 +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.
*/
#include "grib_api_internal.h"
2014-06-20 16:25:20 +00:00
/*
This is used by make_class.pl
START_CLASS_DEF
CLASS = accessor
SUPER = grib_accessor_class_gen
IMPLEMENTS = init;dump;unpack_string;unpack_long;unpack_double
IMPLEMENTS = value_count; get_native_type;
MEMBERS = const char* dictionary
MEMBERS = const char* key
MEMBERS = long column
2014-09-01 12:20:22 +00:00
MEMBERS = const char* masterDir
MEMBERS = const char* localDir
2014-06-20 16:25:20 +00:00
END_CLASS_DEF
*/
/* START_CLASS_IMP */
/*
Don't edit anything between START_CLASS_IMP and END_CLASS_IMP
Instead edit values between START_CLASS_DEF and END_CLASS_DEF
or edit "accessor.class" and rerun ./make_class.pl
*/
2020-01-22 13:10:59 +00:00
static int get_native_type(grib_accessor*);
static int unpack_double(grib_accessor*, double* val, size_t* len);
static int unpack_long(grib_accessor*, long* val, size_t* len);
static int unpack_string(grib_accessor*, char*, size_t* len);
static int value_count(grib_accessor*, long*);
2014-06-20 16:25:20 +00:00
static void dump(grib_accessor*, grib_dumper*);
2020-01-22 13:10:59 +00:00
static void init(grib_accessor*, const long, grib_arguments*);
2014-06-20 16:25:20 +00:00
2020-01-22 13:10:59 +00:00
typedef struct grib_accessor_dictionary
{
grib_accessor att;
/* Members defined in gen */
/* Members defined in dictionary */
const char* dictionary;
const char* key;
long column;
const char* masterDir;
const char* localDir;
2014-06-20 16:25:20 +00:00
} grib_accessor_dictionary;
extern grib_accessor_class* grib_accessor_class_gen;
static grib_accessor_class _grib_accessor_class_dictionary = {
&grib_accessor_class_gen, /* super */
"dictionary", /* name */
sizeof(grib_accessor_dictionary), /* size */
0, /* inited */
0, /* init_class */
&init, /* init */
0, /* post_init */
2023-04-23 17:14:02 +00:00
0, /* destroy */
&dump, /* dump */
0, /* next_offset */
0, /* get length of string */
&value_count, /* get number of values */
0, /* get number of bytes */
0, /* get offset to bytes */
&get_native_type, /* get native type */
0, /* get sub_section */
2023-04-23 17:14:02 +00:00
0, /* pack_missing */
0, /* is_missing */
0, /* pack_long */
&unpack_long, /* unpack_long */
0, /* pack_double */
0, /* pack_float */
&unpack_double, /* unpack_double */
0, /* unpack_float */
0, /* pack_string */
&unpack_string, /* unpack_string */
0, /* pack_string_array */
0, /* unpack_string_array */
0, /* pack_bytes */
0, /* unpack_bytes */
0, /* pack_expression */
0, /* notify_change */
0, /* update_size */
0, /* preferred_size */
0, /* resize */
0, /* nearest_smaller_value */
0, /* next accessor */
0, /* compare vs. another accessor */
2023-04-23 17:14:02 +00:00
0, /* unpack only ith value (double) */
0, /* unpack only ith value (float) */
0, /* unpack a given set of elements (double) */
0, /* unpack a given set of elements (float) */
0, /* unpack a subarray */
0, /* clear */
0, /* clone accessor */
2014-06-20 16:25:20 +00:00
};
grib_accessor_class* grib_accessor_class_dictionary = &_grib_accessor_class_dictionary;
/* END_CLASS_IMP */
2015-12-31 13:28:24 +00:00
static void init(grib_accessor* a, const long len, grib_arguments* params)
{
2020-01-22 13:10:59 +00:00
int n = 0;
grib_accessor_dictionary* self = (grib_accessor_dictionary*)a;
2014-06-20 16:25:20 +00:00
2020-01-22 13:10:59 +00:00
self->dictionary = grib_arguments_get_string(grib_handle_of_accessor(a), params, n++);
self->key = grib_arguments_get_name(grib_handle_of_accessor(a), params, n++);
self->column = grib_arguments_get_long(grib_handle_of_accessor(a), params, n++);
self->masterDir = grib_arguments_get_name(grib_handle_of_accessor(a), params, n++);
self->localDir = grib_arguments_get_name(grib_handle_of_accessor(a), params, n++);
2014-06-20 16:25:20 +00:00
2015-12-31 13:28:24 +00:00
a->length = 0;
a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY;
2014-06-20 16:25:20 +00:00
}
2023-06-28 09:06:07 +00:00
static grib_trie* load_dictionary(grib_accessor* a, int* err)
2015-12-31 13:28:24 +00:00
{
grib_accessor_dictionary* self = (grib_accessor_dictionary*)a;
2020-01-22 13:10:59 +00:00
char* filename = NULL;
2020-01-22 14:48:06 +00:00
char line[1024] = {0,};
char key[1024] = {0,};
char masterDir[1024] = {0,};
char localDir[1024] = {0,};
char dictName[1024] = {0,};
2020-01-22 13:10:59 +00:00
char* localFilename = 0;
char* list = 0;
size_t len = 1024;
grib_trie* dictionary = NULL;
FILE* f = NULL;
int i = 0;
grib_handle* h = grib_handle_of_accessor(a);
2023-06-28 09:06:07 +00:00
grib_context* c = a->context;
2020-01-22 13:10:59 +00:00
*err = GRIB_SUCCESS;
len = 1024;
if (self->masterDir != NULL)
grib_get_string(h, self->masterDir, masterDir, &len);
len = 1024;
if (self->localDir != NULL)
grib_get_string(h, self->localDir, localDir, &len);
if (*masterDir != 0) {
2020-01-22 14:48:06 +00:00
char name[2048] = {0,};
char recomposed[2048] = {0,};
snprintf(name, sizeof(name), "%s/%s", masterDir, self->dictionary);
2020-01-22 13:10:59 +00:00
grib_recompose_name(h, NULL, name, recomposed, 0);
filename = grib_context_full_defs_path(c, recomposed);
}
else {
filename = grib_context_full_defs_path(c, self->dictionary);
}
2014-09-01 12:20:22 +00:00
2020-01-22 13:10:59 +00:00
if (*localDir != 0) {
2020-01-22 14:48:06 +00:00
char localName[2048] = {0,};
char localRecomposed[1024] = {0,};
snprintf(localName, sizeof(localName), "%s/%s", localDir, self->dictionary);
2020-01-22 13:10:59 +00:00
grib_recompose_name(h, NULL, localName, localRecomposed, 0);
localFilename = grib_context_full_defs_path(c, localRecomposed);
snprintf(dictName, sizeof(dictName), "%s:%s", localFilename, filename);
2020-01-22 13:10:59 +00:00
}
else {
snprintf(dictName, sizeof(dictName), "%s", filename);
}
2014-09-01 12:20:22 +00:00
if (!filename) {
2023-11-27 12:01:52 +00:00
grib_context_log(c, GRIB_LOG_ERROR, "Unable to find def file %s", self->dictionary);
2020-01-22 13:10:59 +00:00
*err = GRIB_FILE_NOT_FOUND;
return NULL;
}
2020-01-22 13:10:59 +00:00
else {
2021-10-06 10:29:57 +00:00
grib_context_log(c, GRIB_LOG_DEBUG, "dictionary: found def file %s", filename);
2020-01-22 13:10:59 +00:00
}
dictionary = (grib_trie*)grib_trie_get(c->lists, dictName);
if (dictionary) {
2020-01-22 13:10:59 +00:00
grib_context_log(c, GRIB_LOG_DEBUG, "using dictionary %s from cache", self->dictionary);
2014-06-20 16:25:20 +00:00
return dictionary;
2020-01-22 13:10:59 +00:00
}
else {
grib_context_log(c, GRIB_LOG_DEBUG, "using dictionary %s from file %s", self->dictionary, filename);
}
2014-06-20 16:25:20 +00:00
2020-01-22 13:10:59 +00:00
f = codes_fopen(filename, "r");
if (!f) {
*err = GRIB_IO_PROBLEM;
return NULL;
}
2014-09-01 12:20:22 +00:00
2020-01-22 13:10:59 +00:00
dictionary = grib_trie_new(c);
2020-01-22 13:10:59 +00:00
while (fgets(line, sizeof(line) - 1, f)) {
i = 0;
while (line[i] != '|' && line[i] != 0) {
key[i] = line[i];
i++;
2014-09-01 12:20:22 +00:00
}
2020-01-22 13:10:59 +00:00
key[i] = 0;
list = (char*)grib_context_malloc_clear(c, strlen(line) + 1);
memcpy(list, line, strlen(line));
grib_trie_insert(dictionary, key, list);
2014-09-01 12:20:22 +00:00
}
fclose(f);
2014-06-20 16:25:20 +00:00
2020-01-22 13:10:59 +00:00
if (localFilename != 0) {
f = codes_fopen(localFilename, "r");
if (!f) {
*err = GRIB_IO_PROBLEM;
return NULL;
}
2020-01-22 13:10:59 +00:00
while (fgets(line, sizeof(line) - 1, f)) {
i = 0;
while (line[i] != '|' && line[i] != 0) {
key[i] = line[i];
i++;
}
2020-01-22 13:10:59 +00:00
key[i] = 0;
list = (char*)grib_context_malloc_clear(c, strlen(line) + 1);
memcpy(list, line, strlen(line));
grib_trie_insert(dictionary, key, list);
}
fclose(f);
}
2020-01-22 13:10:59 +00:00
grib_trie_insert(c->lists, filename, dictionary);
return dictionary;
2014-06-20 16:25:20 +00:00
}
static void dump(grib_accessor* a, grib_dumper* dumper)
{
2015-12-31 13:28:24 +00:00
switch (get_native_type(a)) {
2020-01-22 13:10:59 +00:00
case GRIB_TYPE_STRING:
grib_dump_string(dumper, a, NULL);
break;
case GRIB_TYPE_LONG:
grib_dump_long(dumper, a, NULL);
break;
case GRIB_TYPE_DOUBLE:
grib_dump_double(dumper, a, NULL);
break;
2015-12-31 13:28:24 +00:00
}
2014-06-20 16:25:20 +00:00
}
2020-01-22 13:10:59 +00:00
static int unpack_string(grib_accessor* a, char* buffer, size_t* len)
2014-06-20 16:25:20 +00:00
{
grib_accessor_dictionary* self = (grib_accessor_dictionary*)a;
2020-01-22 13:10:59 +00:00
int err = GRIB_SUCCESS;
2020-01-22 14:48:06 +00:00
char key[1024] = {0,};
2020-01-22 13:10:59 +00:00
size_t size = 1024;
char* list = NULL;
char* start = NULL;
char* end = NULL;
size_t rsize = 0;
int i = 0;
2023-06-28 09:06:07 +00:00
grib_trie* dictionary = load_dictionary(a, &err);
2020-01-22 13:10:59 +00:00
if (err)
return err;
if ((err = grib_get_string_internal(grib_handle_of_accessor(a), self->key, key, &size)) != GRIB_SUCCESS) {
2015-04-10 11:14:23 +00:00
/* grib_trie_delete(dictionary); */
return err;
}
2014-06-20 16:25:20 +00:00
2020-01-22 13:10:59 +00:00
list = (char*)grib_trie_get(dictionary, key);
if (!list) {
2015-04-10 11:14:23 +00:00
/* grib_trie_delete(dictionary); */
return GRIB_NOT_FOUND;
}
2014-06-20 16:25:20 +00:00
2020-01-22 13:10:59 +00:00
end = list;
for (i = 0; i <= self->column; i++) {
start = end;
while (*end != '|' && *end != 0)
end++;
if (!*end) {
break;
}
end++;
}
end--;
2020-01-22 13:10:59 +00:00
rsize = end - start;
if (*len < rsize) {
2015-04-10 11:14:23 +00:00
/* grib_trie_delete(dictionary); */
return GRIB_ARRAY_TOO_SMALL;
}
2020-01-22 13:10:59 +00:00
*len = rsize;
2020-02-11 18:00:30 +00:00
if (buffer && start)
2020-02-11 14:39:09 +00:00
memcpy(buffer, start, rsize);
2020-02-11 18:00:30 +00:00
if (buffer)
2020-02-11 14:39:09 +00:00
buffer[rsize] = 0;
2015-04-10 11:14:23 +00:00
/* grib_trie_delete(dictionary); */
return err;
2014-06-20 16:25:20 +00:00
}
2020-01-22 13:10:59 +00:00
static int value_count(grib_accessor* a, long* count)
2014-06-20 16:25:20 +00:00
{
2020-01-22 13:10:59 +00:00
*count = 1;
2014-06-20 16:25:20 +00:00
return 0;
}
2015-12-31 13:28:24 +00:00
static int get_native_type(grib_accessor* a)
{
2020-01-22 13:10:59 +00:00
int type = GRIB_TYPE_DOUBLE;
2015-12-31 13:28:24 +00:00
if (a->flags & GRIB_ACCESSOR_FLAG_LONG_TYPE)
2020-01-22 13:10:59 +00:00
type = GRIB_TYPE_LONG;
2015-12-31 13:28:24 +00:00
if (a->flags & GRIB_ACCESSOR_FLAG_STRING_TYPE)
2020-01-22 13:10:59 +00:00
type = GRIB_TYPE_STRING;
2015-12-31 13:28:24 +00:00
return type;
2014-06-20 16:25:20 +00:00
}
2020-01-22 13:10:59 +00:00
static int unpack_long(grib_accessor* a, long* val, size_t* len)
2014-06-20 16:25:20 +00:00
{
2020-01-22 13:10:59 +00:00
int err = 0;
2020-01-22 14:48:06 +00:00
char buffer[1024] = {0,};
2020-01-22 13:10:59 +00:00
size_t size = 1024;
err = unpack_string(a, buffer, &size);
if (err)
return err;
2014-06-20 16:25:20 +00:00
2020-01-22 13:10:59 +00:00
*val = atol(buffer);
*len = 1;
2014-06-20 16:25:20 +00:00
return GRIB_SUCCESS;
2014-06-20 16:25:20 +00:00
}
2020-01-22 13:10:59 +00:00
static int unpack_double(grib_accessor* a, double* val, size_t* len)
2014-06-20 16:25:20 +00:00
{
2020-01-22 13:10:59 +00:00
int err = 0;
2020-01-22 14:48:06 +00:00
char buffer[1024] = {0,};
2020-01-22 13:10:59 +00:00
size_t size = 1024;
err = unpack_string(a, buffer, &size);
if (err)
return err;
2014-06-20 16:25:20 +00:00
2020-01-22 13:10:59 +00:00
*val = atof(buffer);
*len = 1;
2014-06-20 16:25:20 +00:00
return GRIB_SUCCESS;
2014-06-20 16:25:20 +00:00
}