mirror of https://github.com/ecmwf/eccodes.git
363 lines
11 KiB
C++
363 lines
11 KiB
C++
/*
|
|
* (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 "grib_api_internal.h"
|
|
|
|
/*
|
|
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
|
|
MEMBERS = const char* masterDir
|
|
MEMBERS = const char* localDir
|
|
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
|
|
|
|
*/
|
|
|
|
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*);
|
|
static void dump(grib_accessor*, grib_dumper*);
|
|
static void init(grib_accessor*, const long, grib_arguments*);
|
|
|
|
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;
|
|
} 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 */
|
|
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 */
|
|
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 */
|
|
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 */
|
|
};
|
|
|
|
|
|
grib_accessor_class* grib_accessor_class_dictionary = &_grib_accessor_class_dictionary;
|
|
|
|
/* END_CLASS_IMP */
|
|
|
|
static void init(grib_accessor* a, const long len, grib_arguments* params)
|
|
{
|
|
int n = 0;
|
|
grib_accessor_dictionary* self = (grib_accessor_dictionary*)a;
|
|
|
|
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++);
|
|
|
|
a->length = 0;
|
|
a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY;
|
|
}
|
|
|
|
static grib_trie* load_dictionary(grib_accessor* a, int* err)
|
|
{
|
|
grib_accessor_dictionary* self = (grib_accessor_dictionary*)a;
|
|
|
|
char* filename = NULL;
|
|
char line[1024] = {0,};
|
|
char key[1024] = {0,};
|
|
char masterDir[1024] = {0,};
|
|
char localDir[1024] = {0,};
|
|
char dictName[1024] = {0,};
|
|
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);
|
|
grib_context* c = a->context;
|
|
|
|
*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) {
|
|
char name[2048] = {0,};
|
|
char recomposed[2048] = {0,};
|
|
snprintf(name, sizeof(name), "%s/%s", masterDir, self->dictionary);
|
|
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);
|
|
}
|
|
|
|
if (*localDir != 0) {
|
|
char localName[2048] = {0,};
|
|
char localRecomposed[1024] = {0,};
|
|
snprintf(localName, sizeof(localName), "%s/%s", localDir, self->dictionary);
|
|
grib_recompose_name(h, NULL, localName, localRecomposed, 0);
|
|
localFilename = grib_context_full_defs_path(c, localRecomposed);
|
|
snprintf(dictName, sizeof(dictName), "%s:%s", localFilename, filename);
|
|
}
|
|
else {
|
|
snprintf(dictName, sizeof(dictName), "%s", filename);
|
|
}
|
|
|
|
if (!filename) {
|
|
grib_context_log(c, GRIB_LOG_ERROR, "Unable to find def file %s", self->dictionary);
|
|
*err = GRIB_FILE_NOT_FOUND;
|
|
return NULL;
|
|
}
|
|
else {
|
|
grib_context_log(c, GRIB_LOG_DEBUG, "dictionary: found def file %s", filename);
|
|
}
|
|
dictionary = (grib_trie*)grib_trie_get(c->lists, dictName);
|
|
if (dictionary) {
|
|
grib_context_log(c, GRIB_LOG_DEBUG, "using dictionary %s from cache", self->dictionary);
|
|
return dictionary;
|
|
}
|
|
else {
|
|
grib_context_log(c, GRIB_LOG_DEBUG, "using dictionary %s from file %s", self->dictionary, filename);
|
|
}
|
|
|
|
f = codes_fopen(filename, "r");
|
|
if (!f) {
|
|
*err = GRIB_IO_PROBLEM;
|
|
return NULL;
|
|
}
|
|
|
|
dictionary = grib_trie_new(c);
|
|
|
|
while (fgets(line, sizeof(line) - 1, f)) {
|
|
i = 0;
|
|
while (line[i] != '|' && line[i] != 0) {
|
|
key[i] = line[i];
|
|
i++;
|
|
}
|
|
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);
|
|
|
|
if (localFilename != 0) {
|
|
f = codes_fopen(localFilename, "r");
|
|
if (!f) {
|
|
*err = GRIB_IO_PROBLEM;
|
|
return NULL;
|
|
}
|
|
|
|
while (fgets(line, sizeof(line) - 1, f)) {
|
|
i = 0;
|
|
while (line[i] != '|' && line[i] != 0) {
|
|
key[i] = line[i];
|
|
i++;
|
|
}
|
|
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);
|
|
}
|
|
grib_trie_insert(c->lists, filename, dictionary);
|
|
return dictionary;
|
|
}
|
|
|
|
static void dump(grib_accessor* a, grib_dumper* dumper)
|
|
{
|
|
switch (get_native_type(a)) {
|
|
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;
|
|
}
|
|
}
|
|
|
|
static int unpack_string(grib_accessor* a, char* buffer, size_t* len)
|
|
{
|
|
grib_accessor_dictionary* self = (grib_accessor_dictionary*)a;
|
|
int err = GRIB_SUCCESS;
|
|
char key[1024] = {0,};
|
|
size_t size = 1024;
|
|
char* list = NULL;
|
|
char* start = NULL;
|
|
char* end = NULL;
|
|
size_t rsize = 0;
|
|
int i = 0;
|
|
|
|
grib_trie* dictionary = load_dictionary(a, &err);
|
|
if (err)
|
|
return err;
|
|
|
|
if ((err = grib_get_string_internal(grib_handle_of_accessor(a), self->key, key, &size)) != GRIB_SUCCESS) {
|
|
/* grib_trie_delete(dictionary); */
|
|
return err;
|
|
}
|
|
|
|
list = (char*)grib_trie_get(dictionary, key);
|
|
if (!list) {
|
|
/* grib_trie_delete(dictionary); */
|
|
return GRIB_NOT_FOUND;
|
|
}
|
|
|
|
end = list;
|
|
for (i = 0; i <= self->column; i++) {
|
|
start = end;
|
|
while (*end != '|' && *end != 0)
|
|
end++;
|
|
if (!*end) {
|
|
break;
|
|
}
|
|
end++;
|
|
}
|
|
end--;
|
|
rsize = end - start;
|
|
if (*len < rsize) {
|
|
/* grib_trie_delete(dictionary); */
|
|
return GRIB_ARRAY_TOO_SMALL;
|
|
}
|
|
|
|
*len = rsize;
|
|
if (buffer && start)
|
|
memcpy(buffer, start, rsize);
|
|
if (buffer)
|
|
buffer[rsize] = 0;
|
|
|
|
/* grib_trie_delete(dictionary); */
|
|
|
|
return err;
|
|
}
|
|
|
|
static int value_count(grib_accessor* a, long* count)
|
|
{
|
|
*count = 1;
|
|
return 0;
|
|
}
|
|
|
|
static int get_native_type(grib_accessor* a)
|
|
{
|
|
int type = GRIB_TYPE_DOUBLE;
|
|
if (a->flags & GRIB_ACCESSOR_FLAG_LONG_TYPE)
|
|
type = GRIB_TYPE_LONG;
|
|
if (a->flags & GRIB_ACCESSOR_FLAG_STRING_TYPE)
|
|
type = GRIB_TYPE_STRING;
|
|
return type;
|
|
}
|
|
|
|
static int unpack_long(grib_accessor* a, long* val, size_t* len)
|
|
{
|
|
int err = 0;
|
|
char buffer[1024] = {0,};
|
|
size_t size = 1024;
|
|
|
|
err = unpack_string(a, buffer, &size);
|
|
if (err)
|
|
return err;
|
|
|
|
*val = atol(buffer);
|
|
*len = 1;
|
|
|
|
return GRIB_SUCCESS;
|
|
}
|
|
|
|
static int unpack_double(grib_accessor* a, double* val, size_t* len)
|
|
{
|
|
int err = 0;
|
|
char buffer[1024] = {0,};
|
|
size_t size = 1024;
|
|
|
|
err = unpack_string(a, buffer, &size);
|
|
if (err)
|
|
return err;
|
|
|
|
*val = atof(buffer);
|
|
*len = 1;
|
|
|
|
return GRIB_SUCCESS;
|
|
}
|