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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "grib_api_internal.h"
|
|
|
|
/*
|
|
|
|
This is used by make_class.pl
|
|
|
|
|
|
|
|
START_CLASS_DEF
|
|
|
|
CLASS = accessor
|
|
|
|
SUPER = grib_accessor_class_gen
|
|
|
|
IMPLEMENTS = get_native_type;pack_missing;
|
|
|
|
IMPLEMENTS = unpack_string; pack_string
|
|
|
|
IMPLEMENTS = unpack_double
|
|
|
|
IMPLEMENTS = dump
|
|
|
|
IMPLEMENTS = compare
|
|
|
|
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*);
|
2013-03-25 12:04:10 +00:00
|
|
|
static int pack_missing(grib_accessor*);
|
2020-01-22 13:10:59 +00:00
|
|
|
static int pack_string(grib_accessor*, const char*, size_t* len);
|
|
|
|
static int unpack_double(grib_accessor*, double* val, size_t* len);
|
|
|
|
static int unpack_string(grib_accessor*, char*, size_t* len);
|
2013-03-25 12:04:10 +00:00
|
|
|
static void dump(grib_accessor*, grib_dumper*);
|
|
|
|
static void init_class(grib_accessor_class*);
|
|
|
|
static int compare(grib_accessor*, grib_accessor*);
|
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
typedef struct grib_accessor_long
|
|
|
|
{
|
|
|
|
grib_accessor att;
|
|
|
|
/* Members defined in gen */
|
|
|
|
/* Members defined in long */
|
2013-03-25 12:04:10 +00:00
|
|
|
} grib_accessor_long;
|
|
|
|
|
|
|
|
extern grib_accessor_class* grib_accessor_class_gen;
|
|
|
|
|
|
|
|
static grib_accessor_class _grib_accessor_class_long = {
|
2020-01-22 13:10:59 +00:00
|
|
|
&grib_accessor_class_gen, /* super */
|
|
|
|
"long", /* name */
|
|
|
|
sizeof(grib_accessor_long), /* size */
|
|
|
|
0, /* inited */
|
|
|
|
&init_class, /* init_class */
|
|
|
|
0, /* init */
|
|
|
|
0, /* post_init */
|
|
|
|
0, /* free mem */
|
|
|
|
&dump, /* describes himself */
|
|
|
|
0, /* get length of section */
|
|
|
|
0, /* get length of string */
|
|
|
|
0, /* get number of values */
|
|
|
|
0, /* get number of bytes */
|
|
|
|
0, /* get offset to bytes */
|
|
|
|
&get_native_type, /* get native type */
|
|
|
|
0, /* get sub_section */
|
|
|
|
&pack_missing, /* grib_pack procedures long */
|
|
|
|
0, /* grib_pack procedures long */
|
|
|
|
0, /* grib_pack procedures long */
|
|
|
|
0, /* grib_unpack procedures long */
|
|
|
|
0, /* grib_pack procedures double */
|
|
|
|
&unpack_double, /* grib_unpack procedures double */
|
|
|
|
&pack_string, /* grib_pack procedures string */
|
|
|
|
&unpack_string, /* grib_unpack procedures string */
|
|
|
|
0, /* grib_pack array procedures string */
|
|
|
|
0, /* grib_unpack array procedures string */
|
|
|
|
0, /* grib_pack procedures bytes */
|
|
|
|
0, /* grib_unpack procedures bytes */
|
|
|
|
0, /* pack_expression */
|
|
|
|
0, /* notify_change */
|
|
|
|
0, /* update_size */
|
|
|
|
0, /* preferred_size */
|
|
|
|
0, /* resize */
|
|
|
|
0, /* nearest_smaller_value */
|
|
|
|
0, /* next accessor */
|
|
|
|
&compare, /* compare vs. another accessor */
|
|
|
|
0, /* unpack only ith value */
|
|
|
|
0, /* unpack a subarray */
|
|
|
|
0, /* clear */
|
|
|
|
0, /* clone accessor */
|
2013-03-25 12:04:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
grib_accessor_class* grib_accessor_class_long = &_grib_accessor_class_long;
|
|
|
|
|
|
|
|
|
|
|
|
static void init_class(grib_accessor_class* c)
|
|
|
|
{
|
2020-01-22 13:10:59 +00:00
|
|
|
c->next_offset = (*(c->super))->next_offset;
|
|
|
|
c->string_length = (*(c->super))->string_length;
|
|
|
|
c->value_count = (*(c->super))->value_count;
|
|
|
|
c->byte_count = (*(c->super))->byte_count;
|
|
|
|
c->byte_offset = (*(c->super))->byte_offset;
|
|
|
|
c->sub_section = (*(c->super))->sub_section;
|
|
|
|
c->is_missing = (*(c->super))->is_missing;
|
|
|
|
c->pack_long = (*(c->super))->pack_long;
|
|
|
|
c->unpack_long = (*(c->super))->unpack_long;
|
|
|
|
c->pack_double = (*(c->super))->pack_double;
|
|
|
|
c->pack_string_array = (*(c->super))->pack_string_array;
|
|
|
|
c->unpack_string_array = (*(c->super))->unpack_string_array;
|
|
|
|
c->pack_bytes = (*(c->super))->pack_bytes;
|
|
|
|
c->unpack_bytes = (*(c->super))->unpack_bytes;
|
|
|
|
c->pack_expression = (*(c->super))->pack_expression;
|
|
|
|
c->notify_change = (*(c->super))->notify_change;
|
|
|
|
c->update_size = (*(c->super))->update_size;
|
|
|
|
c->preferred_size = (*(c->super))->preferred_size;
|
|
|
|
c->resize = (*(c->super))->resize;
|
|
|
|
c->nearest_smaller_value = (*(c->super))->nearest_smaller_value;
|
|
|
|
c->next = (*(c->super))->next;
|
|
|
|
c->unpack_double_element = (*(c->super))->unpack_double_element;
|
|
|
|
c->unpack_double_subarray = (*(c->super))->unpack_double_subarray;
|
|
|
|
c->clear = (*(c->super))->clear;
|
|
|
|
c->make_clone = (*(c->super))->make_clone;
|
2013-03-25 12:04:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* END_CLASS_IMP */
|
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
static int get_native_type(grib_accessor* a)
|
2016-06-22 13:50:29 +00:00
|
|
|
{
|
|
|
|
return GRIB_TYPE_LONG;
|
2013-03-25 12:04:10 +00:00
|
|
|
}
|
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
static void dump(grib_accessor* a, grib_dumper* dumper)
|
2013-03-25 12:04:10 +00:00
|
|
|
{
|
2020-01-22 13:10:59 +00:00
|
|
|
grib_dump_long(dumper, a, NULL);
|
2013-03-25 12:04:10 +00:00
|
|
|
}
|
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
static int unpack_string(grib_accessor* a, char* v, size_t* len)
|
2016-06-22 13:50:29 +00:00
|
|
|
{
|
2020-01-22 13:10:59 +00:00
|
|
|
int err = 0;
|
2016-06-22 13:50:29 +00:00
|
|
|
long val = 0;
|
|
|
|
size_t l = 1;
|
|
|
|
char repres[1024];
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
err = grib_unpack_long(a, &val, &l);
|
2018-11-08 14:49:43 +00:00
|
|
|
/* TODO: We should catch all errors but in this case the test ERA_Gen.sh will fail
|
|
|
|
* as the output from grib_ls will be different */
|
|
|
|
/* if (err) return err; */
|
2018-11-09 11:28:57 +00:00
|
|
|
(void)err;
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
if ((val == GRIB_MISSING_LONG) && ((a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) != 0))
|
|
|
|
sprintf(repres, "MISSING");
|
2016-06-22 13:50:29 +00:00
|
|
|
else
|
2020-01-22 13:10:59 +00:00
|
|
|
sprintf(repres, "%ld", val);
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
l = strlen(repres) + 1;
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
if (l > *len) {
|
|
|
|
grib_context_log(a->context, GRIB_LOG_ERROR, "grib_accessor_long : unpack_string : Buffer too small for %s ", a->name);
|
2016-06-22 13:50:29 +00:00
|
|
|
*len = l;
|
|
|
|
return GRIB_BUFFER_TOO_SMALL;
|
|
|
|
}
|
2019-07-17 15:30:52 +00:00
|
|
|
/*grib_context_log(a->context,GRIB_LOG_DEBUG, "grib_accessor_long: Casting long %s to string ", a->name);*/
|
2013-03-25 12:04:10 +00:00
|
|
|
|
|
|
|
*len = l;
|
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
strcpy(v, repres);
|
2016-06-22 13:50:29 +00:00
|
|
|
return GRIB_SUCCESS;
|
2013-03-25 12:04:10 +00:00
|
|
|
}
|
|
|
|
|
2016-06-22 13:50:29 +00:00
|
|
|
static int pack_missing(grib_accessor* a)
|
|
|
|
{
|
2021-01-05 12:17:37 +00:00
|
|
|
size_t len = 1;
|
2016-06-22 13:50:29 +00:00
|
|
|
long value = GRIB_MISSING_LONG;
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
if (a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING)
|
2021-01-05 12:17:37 +00:00
|
|
|
return grib_pack_long(a, &value, &len);
|
2016-06-22 13:50:29 +00:00
|
|
|
|
|
|
|
return GRIB_VALUE_CANNOT_BE_MISSING;
|
2013-03-25 12:04:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
static int is_missing(grib_accessor* a){
|
|
|
|
|
2021-01-05 12:17:37 +00:00
|
|
|
size_t len = 1;
|
2020-01-09 13:03:43 +00:00
|
|
|
long value = GRIB_MISSING_LONG;
|
|
|
|
long ret=0;
|
|
|
|
|
|
|
|
if(a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING)
|
|
|
|
{
|
2021-01-05 12:17:37 +00:00
|
|
|
ret = grib_unpack_long(a,&value,&len);
|
2020-01-09 13:03:43 +00:00
|
|
|
Assert( ret == 0);
|
|
|
|
return value == GRIB_MISSING_LONG;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2013-03-25 12:04:10 +00:00
|
|
|
}
|
2020-01-09 13:03:43 +00:00
|
|
|
*/
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
static int unpack_double(grib_accessor* a, double* val, size_t* len)
|
2016-06-22 13:50:29 +00:00
|
|
|
{
|
2020-01-22 13:10:59 +00:00
|
|
|
size_t rlen = 0;
|
|
|
|
long count = 0;
|
2016-06-22 13:50:29 +00:00
|
|
|
unsigned long i = 0;
|
2020-01-22 13:10:59 +00:00
|
|
|
long* values = NULL;
|
|
|
|
long oneval = 0;
|
|
|
|
int ret = GRIB_SUCCESS;
|
2016-06-22 13:50:29 +00:00
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
ret = grib_value_count(a, &count);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
rlen = count;
|
2016-06-22 13:50:29 +00:00
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
if (*len < rlen) {
|
|
|
|
grib_context_log(a->context, GRIB_LOG_ERROR, " wrong size for %s it contains %d values ", a->name, rlen);
|
2016-06-22 13:50:29 +00:00
|
|
|
*len = 0;
|
|
|
|
return GRIB_ARRAY_TOO_SMALL;
|
|
|
|
}
|
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
if (rlen == 1) {
|
|
|
|
ret = grib_unpack_long(a, &oneval, &rlen);
|
|
|
|
if (ret != GRIB_SUCCESS)
|
|
|
|
return ret;
|
|
|
|
*val = oneval;
|
2016-06-22 13:50:29 +00:00
|
|
|
*len = 1;
|
|
|
|
return GRIB_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
values = (long*)grib_context_malloc(a->context, rlen * sizeof(long));
|
|
|
|
if (!values)
|
2021-03-13 14:11:43 +00:00
|
|
|
return GRIB_OUT_OF_MEMORY;
|
2016-06-22 13:50:29 +00:00
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
ret = grib_unpack_long(a, values, &rlen);
|
|
|
|
if (ret != GRIB_SUCCESS) {
|
|
|
|
grib_context_free(a->context, values);
|
2016-06-22 13:50:29 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2020-01-22 13:10:59 +00:00
|
|
|
for (i = 0; i < rlen; i++)
|
2016-06-22 13:50:29 +00:00
|
|
|
val[i] = values[i];
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
grib_context_free(a->context, values);
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2016-06-22 13:50:29 +00:00
|
|
|
*len = rlen;
|
|
|
|
return GRIB_SUCCESS;
|
2013-03-25 12:04:10 +00:00
|
|
|
}
|
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
static int compare(grib_accessor* a, grib_accessor* b)
|
2016-06-22 13:50:29 +00:00
|
|
|
{
|
2020-01-22 13:10:59 +00:00
|
|
|
int retval = 0;
|
|
|
|
long* aval = 0;
|
|
|
|
long* bval = 0;
|
|
|
|
long count = 0;
|
2014-03-08 19:13:46 +00:00
|
|
|
|
2016-06-22 13:50:29 +00:00
|
|
|
size_t alen = 0;
|
|
|
|
size_t blen = 0;
|
2020-01-22 13:10:59 +00:00
|
|
|
int err = 0;
|
2014-03-08 19:13:46 +00:00
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
err = grib_value_count(a, &count);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
alen = count;
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
err = grib_value_count(b, &count);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
blen = count;
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
if (alen != blen)
|
|
|
|
return GRIB_COUNT_MISMATCH;
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
aval = (long*)grib_context_malloc(a->context, alen * sizeof(long));
|
|
|
|
bval = (long*)grib_context_malloc(b->context, blen * sizeof(long));
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
grib_unpack_long(a, aval, &alen);
|
|
|
|
grib_unpack_long(b, bval, &blen);
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2016-06-22 13:50:29 +00:00
|
|
|
retval = GRIB_SUCCESS;
|
|
|
|
while (alen != 0) {
|
2020-01-22 13:10:59 +00:00
|
|
|
if (*bval != *aval)
|
|
|
|
retval = GRIB_LONG_VALUE_MISMATCH;
|
2016-06-22 13:50:29 +00:00
|
|
|
alen--;
|
|
|
|
}
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
grib_context_free(a->context, aval);
|
|
|
|
grib_context_free(b->context, bval);
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2016-06-22 13:50:29 +00:00
|
|
|
return retval;
|
2013-03-25 12:04:10 +00:00
|
|
|
}
|
|
|
|
|
2020-01-22 13:10:59 +00:00
|
|
|
static int pack_string(grib_accessor* a, const char* val, size_t* len)
|
2013-03-25 12:04:10 +00:00
|
|
|
{
|
2020-01-22 13:10:59 +00:00
|
|
|
char* theEnd = NULL;
|
|
|
|
long v = strtol(val, &theEnd, 10);
|
2016-06-22 13:50:29 +00:00
|
|
|
if (theEnd) {
|
2020-01-22 13:10:59 +00:00
|
|
|
grib_context_log(a->context, GRIB_LOG_ERROR, "trying to pack \"%s\" as long", val);
|
2016-06-22 13:50:29 +00:00
|
|
|
return GRIB_WRONG_TYPE;
|
|
|
|
}
|
2020-01-22 13:10:59 +00:00
|
|
|
return grib_pack_long(a, &v, len);
|
2013-03-25 12:04:10 +00:00
|
|
|
}
|