mirror of https://github.com/ecmwf/eccodes.git
Cleanup
This commit is contained in:
parent
b9dcf3fb63
commit
b2c381d6b8
|
@ -221,8 +221,7 @@ int is_date_valid(long year, long month, long day, long hour, long minute, doubl
|
||||||
// as 00:00 of the following day
|
// as 00:00 of the following day
|
||||||
int is_time_valid(long number)
|
int is_time_valid(long number)
|
||||||
{
|
{
|
||||||
// number should be 4 digits i.e., HHMM
|
// Number should be 4 digits i.e., HHMM
|
||||||
// Check if the number is a four-digit integer
|
|
||||||
if (number < 0 || number > 9999) {
|
if (number < 0 || number > 9999) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -129,14 +129,11 @@ static void dump(grib_accessor* a, grib_dumper* dumper)
|
||||||
|
|
||||||
static int unpack_long(grib_accessor* a, long* val, size_t* len)
|
static int unpack_long(grib_accessor* a, long* val, size_t* len)
|
||||||
{
|
{
|
||||||
int ret = 0;
|
|
||||||
grib_accessor_g1date* self = (grib_accessor_g1date*)a;
|
grib_accessor_g1date* self = (grib_accessor_g1date*)a;
|
||||||
grib_handle* hand = grib_handle_of_accessor(a);
|
grib_handle* hand = grib_handle_of_accessor(a);
|
||||||
|
|
||||||
long year = 0;
|
int ret = 0;
|
||||||
long century = 0;
|
long year = 0, century = 0, month = 0, day = 0;
|
||||||
long month = 0;
|
|
||||||
long day = 0;
|
|
||||||
|
|
||||||
if ((ret = grib_get_long_internal(hand, self->century, ¢ury)) != GRIB_SUCCESS)
|
if ((ret = grib_get_long_internal(hand, self->century, ¢ury)) != GRIB_SUCCESS)
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -165,25 +162,20 @@ static int unpack_long(grib_accessor* a, long* val, size_t* len)
|
||||||
|
|
||||||
static int pack_long(grib_accessor* a, const long* val, size_t* len)
|
static int pack_long(grib_accessor* a, const long* val, size_t* len)
|
||||||
{
|
{
|
||||||
int ret = 0;
|
|
||||||
long v = val[0];
|
|
||||||
grib_accessor_g1date* self = (grib_accessor_g1date*)a;
|
grib_accessor_g1date* self = (grib_accessor_g1date*)a;
|
||||||
grib_handle* hand = grib_handle_of_accessor(a);
|
grib_handle* hand = grib_handle_of_accessor(a);
|
||||||
|
|
||||||
long year = 0;
|
int ret = 0;
|
||||||
long century = 0;
|
long v = val[0];
|
||||||
long month = 0;
|
long year = 0, century = 0, month = 0, day = 0;
|
||||||
long day = 0;
|
|
||||||
|
|
||||||
if (*len != 1)
|
if (*len != 1)
|
||||||
return GRIB_WRONG_ARRAY_SIZE;
|
return GRIB_WRONG_ARRAY_SIZE;
|
||||||
|
|
||||||
{
|
long d = grib_julian_to_date(grib_date_to_julian(v));
|
||||||
long d = grib_julian_to_date((long)grib_date_to_julian(v));
|
if (v != d) {
|
||||||
if (v != d) {
|
grib_context_log(a->context, GRIB_LOG_ERROR, "grib_accessor_g1date: pack_long invalid date %ld, changed to %ld", v, d);
|
||||||
grib_context_log(a->context, GRIB_LOG_ERROR, "grib_accessor_g1date: pack_long invalid date %ld, changed to %ld", v, d);
|
return GRIB_ENCODING_ERROR;
|
||||||
return GRIB_ENCODING_ERROR;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
century = v / 1000000;
|
century = v / 1000000;
|
||||||
|
@ -228,15 +220,12 @@ static const char* months[] = {
|
||||||
|
|
||||||
static int unpack_string(grib_accessor* a, char* val, size_t* len)
|
static int unpack_string(grib_accessor* a, char* val, size_t* len)
|
||||||
{
|
{
|
||||||
int ret = 0;
|
|
||||||
char tmp[1024];
|
|
||||||
grib_accessor_g1date* self = (grib_accessor_g1date*)a;
|
grib_accessor_g1date* self = (grib_accessor_g1date*)a;
|
||||||
grib_handle* hand = grib_handle_of_accessor(a);
|
grib_handle* hand = grib_handle_of_accessor(a);
|
||||||
long year = 0;
|
|
||||||
long century = 0;
|
int ret = 0;
|
||||||
long month = 0;
|
char tmp[1024];
|
||||||
long day = 0;
|
long year = 0, century = 0, month = 0, day = 0;
|
||||||
size_t l;
|
|
||||||
|
|
||||||
if ((ret = grib_get_long_internal(hand, self->century, ¢ury)) != GRIB_SUCCESS)
|
if ((ret = grib_get_long_internal(hand, self->century, ¢ury)) != GRIB_SUCCESS)
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -261,7 +250,7 @@ static int unpack_string(grib_accessor* a, char* val, size_t* len)
|
||||||
snprintf(tmp, sizeof(tmp), "%ld", x);
|
snprintf(tmp, sizeof(tmp), "%ld", x);
|
||||||
}
|
}
|
||||||
|
|
||||||
l = strlen(tmp) + 1;
|
size_t l = strlen(tmp) + 1;
|
||||||
if (*len < l) {
|
if (*len < l) {
|
||||||
*len = l;
|
*len = l;
|
||||||
return GRIB_BUFFER_TOO_SMALL;
|
return GRIB_BUFFER_TOO_SMALL;
|
||||||
|
|
Loading…
Reference in New Issue