2010-06-03 21:24:43 +08:00
|
|
|
/*
|
|
|
|
This file is part of netcdf-4, a netCDF-like interface for HDF5, or a
|
|
|
|
HDF5 backend for netCDF, depending on your point of view.
|
|
|
|
|
|
|
|
This file handles the nc4 attribute functions.
|
|
|
|
|
|
|
|
Remember that with atts, type conversion can take place when writing
|
|
|
|
them, and when reading them.
|
|
|
|
|
2011-09-26 21:46:43 +08:00
|
|
|
Copyright 2003-2011, University Corporation for Atmospheric
|
2010-06-03 21:24:43 +08:00
|
|
|
Research. See COPYRIGHT file for copying and redistribution
|
|
|
|
conditions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nc4internal.h"
|
|
|
|
#include "nc.h"
|
|
|
|
#include "nc4dispatch.h"
|
2010-08-05 10:44:59 +08:00
|
|
|
#include "ncdispatch.h"
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2016-05-04 11:17:06 +08:00
|
|
|
#ifdef ENABLE_FILEINFO
|
2016-05-16 08:03:04 +08:00
|
|
|
static int nc4_get_att_special(NC_HDF5_FILE_INFO_T*, const char*,
|
|
|
|
nc_type*, nc_type, size_t*, int*, int, void*);
|
2016-05-04 11:17:06 +08:00
|
|
|
#endif
|
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
int nc4typelen(nc_type type);
|
|
|
|
|
|
|
|
/* Get or put attribute metadata from our linked list of file
|
|
|
|
info. Always locate the attribute by name, never by attnum.
|
|
|
|
The mem_type is ignored if data=NULL. */
|
|
|
|
int
|
2014-10-02 07:04:56 +08:00
|
|
|
nc4_get_att(int ncid, NC *nc, int varid, const char *name,
|
|
|
|
nc_type *xtype, nc_type mem_type, size_t *lenp,
|
|
|
|
int *attnum, int is_long, void *data)
|
2010-06-03 21:24:43 +08:00
|
|
|
{
|
|
|
|
NC_GRP_INFO_T *grp;
|
|
|
|
NC_HDF5_FILE_INFO_T *h5;
|
2013-04-24 05:50:07 +08:00
|
|
|
NC_ATT_INFO_T *att = NULL;
|
2010-06-03 21:24:43 +08:00
|
|
|
int my_attnum = -1;
|
2012-11-20 05:43:12 +08:00
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
int need_to_convert = 0;
|
|
|
|
int range_error = NC_NOERR;
|
2014-10-02 07:04:56 +08:00
|
|
|
void *bufr = NULL;
|
2010-06-03 21:24:43 +08:00
|
|
|
size_t type_size;
|
|
|
|
char norm_name[NC_MAX_NAME + 1];
|
|
|
|
int i;
|
|
|
|
int retval = NC_NOERR;
|
2016-05-04 11:17:06 +08:00
|
|
|
const char** sp;
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2016-05-04 11:17:06 +08:00
|
|
|
if (attnum) {
|
2010-06-03 21:24:43 +08:00
|
|
|
my_attnum = *attnum;
|
2016-05-04 11:17:06 +08:00
|
|
|
}
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2014-10-02 07:04:56 +08:00
|
|
|
LOG((3, "%s: ncid 0x%x varid %d name %s attnum %d mem_type %d",
|
2014-02-18 03:34:05 +08:00
|
|
|
__func__, ncid, varid, name, my_attnum, mem_type));
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
/* Find info for this file and group, and set pointer to each. */
|
2012-09-07 03:44:03 +08:00
|
|
|
h5 = NC4_DATA(nc);
|
2010-06-03 21:24:43 +08:00
|
|
|
if (!(grp = nc4_rec_find_grp(h5->root_grp, (ncid & GRP_ID_MASK))))
|
2014-02-14 22:07:14 +08:00
|
|
|
BAIL(NC_EBADGRPID);
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
/* Normalize name. */
|
|
|
|
if ((retval = nc4_normalize_name(name, norm_name)))
|
2014-02-14 22:07:14 +08:00
|
|
|
BAIL(retval);
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2016-05-04 11:17:06 +08:00
|
|
|
#ifdef ENABLE_FILEINFO
|
|
|
|
if(nc->ext_ncid == ncid && varid == NC_GLOBAL) {
|
|
|
|
const char** sp;
|
|
|
|
for(sp = NC_RESERVED_SPECIAL_LIST;*sp;sp++) {
|
|
|
|
if(strcmp(name,*sp)==0) {
|
2016-05-16 08:03:04 +08:00
|
|
|
return nc4_get_att_special(h5, norm_name, xtype, mem_type, lenp, attnum, is_long, data);
|
2016-05-04 11:17:06 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-05-28 00:08:01 +08:00
|
|
|
/* Find the attribute, if it exists.
|
|
|
|
<strike>If we don't find it, we are major failures.</strike>
|
|
|
|
*/
|
|
|
|
if ((retval = nc4_find_grp_att(grp, varid, norm_name, my_attnum, &att))) {
|
|
|
|
if(retval == NC_ENOTATT)
|
|
|
|
return retval;
|
|
|
|
else
|
2014-02-14 22:07:14 +08:00
|
|
|
BAIL(retval);
|
2016-05-28 00:08:01 +08:00
|
|
|
}
|
2014-10-02 07:04:56 +08:00
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
/* If mem_type is NC_NAT, it means we want to use the attribute's
|
|
|
|
* file type as the mem type as well. */
|
|
|
|
if (mem_type == NC_NAT)
|
2014-02-12 07:12:08 +08:00
|
|
|
mem_type = att->nc_typeid;
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
/* If the attribute is NC_CHAR, and the mem_type isn't, or vice
|
|
|
|
* versa, that's a freakish attempt to convert text to
|
|
|
|
* numbers. Some pervert out there is trying to pull a fast one!
|
|
|
|
* Send him an NC_ECHAR error...*/
|
|
|
|
if (data && att->len &&
|
2014-02-12 07:12:08 +08:00
|
|
|
((att->nc_typeid == NC_CHAR && mem_type != NC_CHAR) ||
|
|
|
|
(att->nc_typeid != NC_CHAR && mem_type == NC_CHAR)))
|
2014-02-14 22:07:14 +08:00
|
|
|
BAIL(NC_ECHAR); /* take that, you freak! */
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
/* Copy the info. */
|
|
|
|
if (lenp)
|
|
|
|
*lenp = att->len;
|
|
|
|
if (xtype)
|
2014-02-12 07:12:08 +08:00
|
|
|
*xtype = att->nc_typeid;
|
2016-05-04 11:17:06 +08:00
|
|
|
if (attnum) {
|
2010-06-03 21:24:43 +08:00
|
|
|
*attnum = att->attnum;
|
2016-05-04 11:17:06 +08:00
|
|
|
}
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
/* Zero len attributes are easy to read! */
|
|
|
|
if (!att->len)
|
2014-02-14 22:07:14 +08:00
|
|
|
BAIL(NC_NOERR);
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
/* Later on, we will need to know the size of this type. */
|
|
|
|
if ((retval = nc4_get_typelen_mem(h5, mem_type, is_long, &type_size)))
|
2014-02-14 22:07:14 +08:00
|
|
|
BAIL(retval);
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
/* We may have to convert data. Treat NC_CHAR the same as
|
|
|
|
* NC_UBYTE. If the mem_type is NAT, don't try any conversion - use
|
|
|
|
* the attribute's type. */
|
2014-02-12 07:12:08 +08:00
|
|
|
if (data && att->len && mem_type != att->nc_typeid &&
|
2010-06-03 21:24:43 +08:00
|
|
|
mem_type != NC_NAT &&
|
2014-10-02 07:04:56 +08:00
|
|
|
!(mem_type == NC_CHAR &&
|
2014-02-12 07:12:08 +08:00
|
|
|
(att->nc_typeid == NC_UBYTE || att->nc_typeid == NC_BYTE)))
|
2010-06-03 21:24:43 +08:00
|
|
|
{
|
|
|
|
if (!(bufr = malloc((size_t)(att->len * type_size))))
|
2014-02-14 22:07:14 +08:00
|
|
|
BAIL(NC_ENOMEM);
|
|
|
|
need_to_convert++;
|
2014-10-02 07:04:56 +08:00
|
|
|
if ((retval = nc4_convert_type(att->data, bufr, att->nc_typeid,
|
|
|
|
mem_type, (size_t)att->len, &range_error,
|
2010-06-03 21:24:43 +08:00
|
|
|
NULL, (h5->cmode & NC_CLASSIC_MODEL), 0, is_long)))
|
|
|
|
BAIL(retval);
|
|
|
|
|
|
|
|
/* For strict netcdf-3 rules, ignore erange errors between UBYTE
|
|
|
|
* and BYTE types. */
|
|
|
|
if ((h5->cmode & NC_CLASSIC_MODEL) &&
|
2014-02-12 07:12:08 +08:00
|
|
|
(att->nc_typeid == NC_UBYTE || att->nc_typeid == NC_BYTE) &&
|
2010-06-03 21:24:43 +08:00
|
|
|
(mem_type == NC_UBYTE || mem_type == NC_BYTE) &&
|
|
|
|
range_error)
|
|
|
|
range_error = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bufr = att->data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If the caller wants data, copy it for him. If he hasn't
|
Corrected "BAIL" macros to avoid infinite loop when logging is disabled and an
error occurs after an "exit:" label.
Corrected a dozen Coverity errors (mainly allocation issues, along with a few
other things):
711711, 711802, 711803, 711905, 970825, 996123, 996124, 1025787,
1047274, 1130013, 1130014, 1139538
Refactored internal fill-value code to correctly handle string types, and
especially to allow NULL pointers and null strings (ie. "") to be
distinguished. The code now avoids partially aliasing the two together
(which only happened on the 'write' side of things and wasn't reflected on
the 'read' side, adding to the previous confusion).
Probably still weak on handling fill-values of variable-length and compound
datatypes.
Refactored the recursive metadata reads a bit more, to process HDF5 named
datatypes and datasets immediately, avoiding chewing up memory for those
types of objects, etc.
Finished uncommenting and updating the nc_test4/tst_fills2.c code (as I'm
proceeding alphabetically through the nc_test4 code files).
2013-12-29 15:12:43 +08:00
|
|
|
allocated enough memory for it, he will burn in segmentation
|
2010-06-03 21:24:43 +08:00
|
|
|
fault hell, writhing with the agony of undiscovered memory
|
|
|
|
bugs! */
|
|
|
|
if (data)
|
|
|
|
{
|
|
|
|
if (att->vldata)
|
|
|
|
{
|
2014-02-14 22:07:14 +08:00
|
|
|
size_t base_typelen;
|
2010-06-03 21:24:43 +08:00
|
|
|
hvl_t *vldest = data;
|
|
|
|
NC_TYPE_INFO_T *type;
|
2014-02-12 07:12:08 +08:00
|
|
|
|
2014-02-14 22:07:14 +08:00
|
|
|
/* Get the type object for the attribute's type */
|
|
|
|
if ((retval = nc4_find_type(h5, att->nc_typeid, &type)))
|
|
|
|
BAIL(retval);
|
|
|
|
|
|
|
|
/* Retrieve the size of the base type */
|
|
|
|
if ((retval = nc4_get_typelen_mem(h5, type->u.v.base_nc_typeid, 0, &base_typelen)))
|
|
|
|
BAIL(retval);
|
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
for (i = 0; i < att->len; i++)
|
|
|
|
{
|
|
|
|
vldest[i].len = att->vldata[i].len;
|
|
|
|
if (!(vldest[i].p = malloc(vldest[i].len * base_typelen)))
|
|
|
|
BAIL(NC_ENOMEM);
|
|
|
|
memcpy(vldest[i].p, att->vldata[i].p, vldest[i].len * base_typelen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (att->stdata)
|
|
|
|
{
|
|
|
|
for (i = 0; i < att->len; i++)
|
|
|
|
{
|
2013-07-11 04:09:31 +08:00
|
|
|
/* Check for NULL pointer for string (valid in HDF5) */
|
|
|
|
if(att->stdata[i])
|
|
|
|
{
|
2014-02-14 22:07:14 +08:00
|
|
|
if (!(((char **)data)[i] = strdup(att->stdata[i])))
|
2013-07-11 04:09:31 +08:00
|
|
|
BAIL(NC_ENOMEM);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
((char **)data)[i] = att->stdata[i];
|
2010-06-03 21:24:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* For long types, we need to handle this special... */
|
2014-02-12 07:12:08 +08:00
|
|
|
if (is_long && att->nc_typeid == NC_INT)
|
2010-06-03 21:24:43 +08:00
|
|
|
{
|
|
|
|
long *lp = data;
|
|
|
|
int *ip = bufr;
|
2014-02-14 22:07:14 +08:00
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
for (i = 0; i < att->len; i++)
|
|
|
|
*lp++ = *ip++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
memcpy(data, bufr, (size_t)(att->len * type_size));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
2014-02-12 07:12:08 +08:00
|
|
|
if (need_to_convert)
|
|
|
|
free(bufr);
|
2010-06-03 21:24:43 +08:00
|
|
|
if (range_error)
|
2014-02-14 22:07:14 +08:00
|
|
|
retval = NC_ERANGE;
|
|
|
|
return retval;
|
2010-06-03 21:24:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Put attribute metadata into our global metadata. */
|
2014-02-12 07:12:08 +08:00
|
|
|
static int
|
2014-10-02 07:04:56 +08:00
|
|
|
nc4_put_att(int ncid, NC *nc, int varid, const char *name,
|
|
|
|
nc_type file_type, nc_type mem_type, size_t len, int is_long,
|
2010-06-03 21:24:43 +08:00
|
|
|
const void *data)
|
|
|
|
{
|
2014-10-02 07:04:56 +08:00
|
|
|
NC_GRP_INFO_T *grp;
|
2010-06-03 21:24:43 +08:00
|
|
|
NC_HDF5_FILE_INFO_T *h5;
|
|
|
|
NC_VAR_INFO_T *var = NULL;
|
2014-11-24 23:36:58 +08:00
|
|
|
NC_ATT_INFO_T *att, **attlist = NULL;
|
2010-06-03 21:24:43 +08:00
|
|
|
char norm_name[NC_MAX_NAME + 1];
|
2014-02-12 07:12:08 +08:00
|
|
|
nc_bool_t new_att = NC_FALSE;
|
2010-06-03 21:24:43 +08:00
|
|
|
int retval = NC_NOERR, range_error = 0;
|
|
|
|
size_t type_size;
|
|
|
|
int i;
|
|
|
|
int res;
|
|
|
|
|
2014-10-02 07:04:56 +08:00
|
|
|
if (!name)
|
2010-06-03 21:24:43 +08:00
|
|
|
return NC_EBADNAME;
|
2012-09-07 03:44:03 +08:00
|
|
|
assert(nc && NC4_DATA(nc));
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
LOG((1, "nc4_put_att: ncid 0x%x varid %d name %s "
|
|
|
|
"file_type %d mem_type %d len %d", ncid, varid,
|
|
|
|
name, file_type, mem_type, len));
|
|
|
|
|
|
|
|
/* If len is not zero, then there must be some data. */
|
|
|
|
if (len && !data)
|
|
|
|
return NC_EINVAL;
|
|
|
|
|
|
|
|
/* Find info for this file and group, and set pointer to each. */
|
2012-09-07 03:44:03 +08:00
|
|
|
h5 = NC4_DATA(nc);
|
2010-06-03 21:24:43 +08:00
|
|
|
if (!(grp = nc4_rec_find_grp(h5->root_grp, (ncid & GRP_ID_MASK))))
|
2014-10-02 07:04:56 +08:00
|
|
|
return NC_EBADGRPID;
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
/* If the file is read-only, return an error. */
|
|
|
|
if (h5->no_write)
|
|
|
|
return NC_EPERM;
|
|
|
|
|
|
|
|
/* Check and normalize the name. */
|
|
|
|
if ((retval = nc4_check_name(name, norm_name)))
|
|
|
|
return retval;
|
|
|
|
|
2016-05-04 11:17:06 +08:00
|
|
|
#ifdef ENABLE_FILEINFO
|
|
|
|
if(nc->ext_ncid == ncid && varid == NC_GLOBAL) {
|
|
|
|
const char** sp;
|
|
|
|
for(sp = NC_RESERVED_SPECIAL_LIST;*sp;sp++) {
|
|
|
|
if(strcmp(name,*sp)==0) {
|
|
|
|
return NC_ENOTATT; /* Not settable */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
/* Find att, if it exists. */
|
|
|
|
if (varid == NC_GLOBAL)
|
|
|
|
attlist = &grp->att;
|
|
|
|
else
|
|
|
|
{
|
Refactored read_scale(), memio_new(), var_create_dataset() and makespecial()
to clean up resources properly on failure.
Refactored doubly-linked list code for objects in the libsrc4 directory,
cleaning up the add/del routines, breaking out the common next/prev
pointers into a struct and extracting the add/del operations on them,
changed the list of dims to add new dims in the same order as the other
types, made all add routines able to optionally return a pointer to the
newly created object.
Removed some dead code (pg_var(), nc4_pg_var1(), nc4_pg_varm(), misc. small
routines, etc)
Fixed fill value handling for string types in nc4_get_vara().
Changed many malloc()+strcpy() pairs into calls to strdup().
Cleaned up misc. other minor Coverity issues.
2013-12-08 17:29:26 +08:00
|
|
|
for (var = grp->var; var; var = var->l.next)
|
2010-06-03 21:24:43 +08:00
|
|
|
if (var->varid == varid)
|
|
|
|
{
|
|
|
|
attlist = &var->att;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!var)
|
|
|
|
return NC_ENOTVAR;
|
|
|
|
}
|
2016-05-04 11:17:06 +08:00
|
|
|
|
Refactored read_scale(), memio_new(), var_create_dataset() and makespecial()
to clean up resources properly on failure.
Refactored doubly-linked list code for objects in the libsrc4 directory,
cleaning up the add/del routines, breaking out the common next/prev
pointers into a struct and extracting the add/del operations on them,
changed the list of dims to add new dims in the same order as the other
types, made all add routines able to optionally return a pointer to the
newly created object.
Removed some dead code (pg_var(), nc4_pg_var1(), nc4_pg_varm(), misc. small
routines, etc)
Fixed fill value handling for string types in nc4_get_vara().
Changed many malloc()+strcpy() pairs into calls to strdup().
Cleaned up misc. other minor Coverity issues.
2013-12-08 17:29:26 +08:00
|
|
|
for (att = *attlist; att; att = att->l.next)
|
2010-06-03 21:24:43 +08:00
|
|
|
if (!strcmp(att->name, norm_name))
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (!att)
|
|
|
|
{
|
|
|
|
/* If this is a new att, require define mode. */
|
|
|
|
if (!(h5->flags & NC_INDEF))
|
|
|
|
{
|
|
|
|
if (h5->cmode & NC_CLASSIC_MODEL)
|
|
|
|
return NC_EINDEFINE;
|
|
|
|
if ((retval = NC4_redef(ncid)))
|
|
|
|
BAIL(retval);
|
|
|
|
}
|
2014-02-12 07:12:08 +08:00
|
|
|
new_att = NC_TRUE;
|
2010-06-03 21:24:43 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* For an existing att, if we're not in define mode, the len
|
2010-11-30 06:23:16 +08:00
|
|
|
must not be greater than the existing len for classic model. */
|
2014-10-02 07:04:56 +08:00
|
|
|
if (!(h5->flags & NC_INDEF) &&
|
2014-02-12 07:12:08 +08:00
|
|
|
len * nc4typelen(file_type) > (size_t)att->len * nc4typelen(att->nc_typeid))
|
2010-06-03 21:24:43 +08:00
|
|
|
{
|
|
|
|
if (h5->cmode & NC_CLASSIC_MODEL)
|
|
|
|
return NC_EINDEFINE;
|
2012-03-10 03:19:43 +08:00
|
|
|
if ((retval = NC4_redef(ncid)))
|
2010-06-03 21:24:43 +08:00
|
|
|
BAIL(retval);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We must have two valid types to continue. */
|
|
|
|
if (file_type == NC_NAT || mem_type == NC_NAT)
|
|
|
|
return NC_EBADTYPE;
|
|
|
|
|
|
|
|
/* Get information about this type. */
|
|
|
|
if ((retval = nc4_get_typelen_mem(h5, file_type, is_long, &type_size)))
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
/* No character conversions are allowed. */
|
2014-10-02 07:04:56 +08:00
|
|
|
if (file_type != mem_type &&
|
|
|
|
(file_type == NC_CHAR || mem_type == NC_CHAR ||
|
2010-06-03 21:24:43 +08:00
|
|
|
file_type == NC_STRING || mem_type == NC_STRING))
|
|
|
|
return NC_ECHAR;
|
|
|
|
|
|
|
|
/* For classic mode file, only allow atts with classic types to be
|
|
|
|
* created. */
|
|
|
|
if (h5->cmode & NC_CLASSIC_MODEL && file_type > NC_DOUBLE)
|
|
|
|
return NC_ESTRICTNC3;
|
|
|
|
|
|
|
|
/* Add to the end of the attribute list, if this att doesn't
|
|
|
|
already exist. */
|
|
|
|
if (new_att)
|
|
|
|
{
|
|
|
|
LOG((3, "adding attribute %s to the list...", norm_name));
|
Refactored read_scale(), memio_new(), var_create_dataset() and makespecial()
to clean up resources properly on failure.
Refactored doubly-linked list code for objects in the libsrc4 directory,
cleaning up the add/del routines, breaking out the common next/prev
pointers into a struct and extracting the add/del operations on them,
changed the list of dims to add new dims in the same order as the other
types, made all add routines able to optionally return a pointer to the
newly created object.
Removed some dead code (pg_var(), nc4_pg_var1(), nc4_pg_varm(), misc. small
routines, etc)
Fixed fill value handling for string types in nc4_get_vara().
Changed many malloc()+strcpy() pairs into calls to strdup().
Cleaned up misc. other minor Coverity issues.
2013-12-08 17:29:26 +08:00
|
|
|
if ((res = nc4_att_list_add(attlist, &att)))
|
2010-06-03 21:24:43 +08:00
|
|
|
BAIL (res);
|
2014-02-12 07:12:08 +08:00
|
|
|
if (!(att->name = strdup(norm_name)))
|
|
|
|
return NC_ENOMEM;
|
2010-06-03 21:24:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Now fill in the metadata. */
|
2014-02-12 07:12:08 +08:00
|
|
|
att->dirty = NC_TRUE;
|
|
|
|
att->nc_typeid = file_type;
|
2013-07-11 04:09:31 +08:00
|
|
|
|
|
|
|
/* If this att has vlen or string data, release it before we lose the length value. */
|
|
|
|
if (att->stdata)
|
|
|
|
{
|
|
|
|
for (i = 0; i < att->len; i++)
|
|
|
|
if(att->stdata[i])
|
|
|
|
free(att->stdata[i]);
|
|
|
|
free(att->stdata);
|
|
|
|
att->stdata = NULL;
|
|
|
|
}
|
|
|
|
if (att->vldata)
|
|
|
|
{
|
|
|
|
for (i = 0; i < att->len; i++)
|
|
|
|
nc_free_vlen(&att->vldata[i]);
|
|
|
|
free(att->vldata);
|
|
|
|
att->vldata = NULL;
|
|
|
|
}
|
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
att->len = len;
|
Refactored read_scale(), memio_new(), var_create_dataset() and makespecial()
to clean up resources properly on failure.
Refactored doubly-linked list code for objects in the libsrc4 directory,
cleaning up the add/del routines, breaking out the common next/prev
pointers into a struct and extracting the add/del operations on them,
changed the list of dims to add new dims in the same order as the other
types, made all add routines able to optionally return a pointer to the
newly created object.
Removed some dead code (pg_var(), nc4_pg_var1(), nc4_pg_varm(), misc. small
routines, etc)
Fixed fill value handling for string types in nc4_get_vara().
Changed many malloc()+strcpy() pairs into calls to strdup().
Cleaned up misc. other minor Coverity issues.
2013-12-08 17:29:26 +08:00
|
|
|
if (att->l.prev)
|
|
|
|
att->attnum = ((NC_ATT_INFO_T *)att->l.prev)->attnum + 1;
|
2010-06-03 21:24:43 +08:00
|
|
|
else
|
|
|
|
att->attnum = 0;
|
|
|
|
|
|
|
|
/* If this is the _FillValue attribute, then we will also have to
|
2014-11-24 23:36:58 +08:00
|
|
|
* copy the value to the fill_vlue pointer of the NC_VAR_INFO_T
|
2010-06-03 21:24:43 +08:00
|
|
|
* struct for this var. (But ignore a global _FillValue
|
|
|
|
* attribute). */
|
|
|
|
if (!strcmp(att->name, _FillValue) && varid != NC_GLOBAL)
|
|
|
|
{
|
2014-11-24 23:36:58 +08:00
|
|
|
NC_ATT_INFO_T *varatt;
|
2010-06-03 21:24:43 +08:00
|
|
|
int size;
|
|
|
|
|
2012-08-17 02:31:48 +08:00
|
|
|
/* Fill value must be same type and have exactly one value */
|
2014-02-12 07:12:08 +08:00
|
|
|
if (att->nc_typeid != var->type_info->nc_typeid)
|
2012-08-17 02:31:48 +08:00
|
|
|
return NC_EBADTYPE;
|
|
|
|
if (att->len != 1)
|
2010-06-03 21:24:43 +08:00
|
|
|
return NC_EINVAL;
|
|
|
|
|
|
|
|
/* If we already wrote to the dataset, then return an error. */
|
|
|
|
if (var->written_to)
|
|
|
|
return NC_ELATEFILL;
|
|
|
|
|
|
|
|
/* If fill value hasn't been set, allocate space. Of course,
|
2014-02-14 22:07:14 +08:00
|
|
|
* vlens have to be different... */
|
2014-10-02 07:04:56 +08:00
|
|
|
if ((retval = nc4_get_typelen_mem(grp->nc4_info, var->type_info->nc_typeid, 0,
|
2010-06-03 21:24:43 +08:00
|
|
|
&type_size)))
|
|
|
|
return retval;
|
2014-10-02 07:04:56 +08:00
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
/* Already set a fill value? Now I'll have to free the old
|
|
|
|
* one. Make up your damn mind, would you? */
|
|
|
|
if (var->fill_value)
|
|
|
|
{
|
2014-02-12 07:12:08 +08:00
|
|
|
if (var->type_info->nc_type_class == NC_VLEN)
|
Corrected "BAIL" macros to avoid infinite loop when logging is disabled and an
error occurs after an "exit:" label.
Corrected a dozen Coverity errors (mainly allocation issues, along with a few
other things):
711711, 711802, 711803, 711905, 970825, 996123, 996124, 1025787,
1047274, 1130013, 1130014, 1139538
Refactored internal fill-value code to correctly handle string types, and
especially to allow NULL pointers and null strings (ie. "") to be
distinguished. The code now avoids partially aliasing the two together
(which only happened on the 'write' side of things and wasn't reflected on
the 'read' side, adding to the previous confusion).
Probably still weak on handling fill-values of variable-length and compound
datatypes.
Refactored the recursive metadata reads a bit more, to process HDF5 named
datatypes and datasets immediately, avoiding chewing up memory for those
types of objects, etc.
Finished uncommenting and updating the nc_test4/tst_fills2.c code (as I'm
proceeding alphabetically through the nc_test4 code files).
2013-12-29 15:12:43 +08:00
|
|
|
{
|
2014-02-12 07:12:08 +08:00
|
|
|
if ((retval = nc_free_vlen(var->fill_value)))
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
else if (var->type_info->nc_type_class == NC_STRING)
|
|
|
|
{
|
|
|
|
if (*(char **)var->fill_value)
|
|
|
|
free(*(char **)var->fill_value);
|
Corrected "BAIL" macros to avoid infinite loop when logging is disabled and an
error occurs after an "exit:" label.
Corrected a dozen Coverity errors (mainly allocation issues, along with a few
other things):
711711, 711802, 711803, 711905, 970825, 996123, 996124, 1025787,
1047274, 1130013, 1130014, 1139538
Refactored internal fill-value code to correctly handle string types, and
especially to allow NULL pointers and null strings (ie. "") to be
distinguished. The code now avoids partially aliasing the two together
(which only happened on the 'write' side of things and wasn't reflected on
the 'read' side, adding to the previous confusion).
Probably still weak on handling fill-values of variable-length and compound
datatypes.
Refactored the recursive metadata reads a bit more, to process HDF5 named
datatypes and datasets immediately, avoiding chewing up memory for those
types of objects, etc.
Finished uncommenting and updating the nc_test4/tst_fills2.c code (as I'm
proceeding alphabetically through the nc_test4 code files).
2013-12-29 15:12:43 +08:00
|
|
|
}
|
2010-06-03 21:24:43 +08:00
|
|
|
free(var->fill_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate space for the fill value. */
|
2014-02-12 07:12:08 +08:00
|
|
|
if (var->type_info->nc_type_class == NC_VLEN)
|
2010-06-03 21:24:43 +08:00
|
|
|
size = sizeof(hvl_t);
|
2014-02-12 07:12:08 +08:00
|
|
|
else if (var->type_info->nc_type_class == NC_STRING)
|
Corrected "BAIL" macros to avoid infinite loop when logging is disabled and an
error occurs after an "exit:" label.
Corrected a dozen Coverity errors (mainly allocation issues, along with a few
other things):
711711, 711802, 711803, 711905, 970825, 996123, 996124, 1025787,
1047274, 1130013, 1130014, 1139538
Refactored internal fill-value code to correctly handle string types, and
especially to allow NULL pointers and null strings (ie. "") to be
distinguished. The code now avoids partially aliasing the two together
(which only happened on the 'write' side of things and wasn't reflected on
the 'read' side, adding to the previous confusion).
Probably still weak on handling fill-values of variable-length and compound
datatypes.
Refactored the recursive metadata reads a bit more, to process HDF5 named
datatypes and datasets immediately, avoiding chewing up memory for those
types of objects, etc.
Finished uncommenting and updating the nc_test4/tst_fills2.c code (as I'm
proceeding alphabetically through the nc_test4 code files).
2013-12-29 15:12:43 +08:00
|
|
|
size = sizeof(char *);
|
2010-06-03 21:24:43 +08:00
|
|
|
else
|
|
|
|
size = type_size;
|
|
|
|
|
Corrected "BAIL" macros to avoid infinite loop when logging is disabled and an
error occurs after an "exit:" label.
Corrected a dozen Coverity errors (mainly allocation issues, along with a few
other things):
711711, 711802, 711803, 711905, 970825, 996123, 996124, 1025787,
1047274, 1130013, 1130014, 1139538
Refactored internal fill-value code to correctly handle string types, and
especially to allow NULL pointers and null strings (ie. "") to be
distinguished. The code now avoids partially aliasing the two together
(which only happened on the 'write' side of things and wasn't reflected on
the 'read' side, adding to the previous confusion).
Probably still weak on handling fill-values of variable-length and compound
datatypes.
Refactored the recursive metadata reads a bit more, to process HDF5 named
datatypes and datasets immediately, avoiding chewing up memory for those
types of objects, etc.
Finished uncommenting and updating the nc_test4/tst_fills2.c code (as I'm
proceeding alphabetically through the nc_test4 code files).
2013-12-29 15:12:43 +08:00
|
|
|
if (!(var->fill_value = calloc(1, size)))
|
2010-06-03 21:24:43 +08:00
|
|
|
return NC_ENOMEM;
|
|
|
|
|
|
|
|
/* Copy the fill_value. */
|
|
|
|
LOG((4, "Copying fill value into metadata for variable %s", var->name));
|
2014-02-12 07:12:08 +08:00
|
|
|
if (var->type_info->nc_type_class == NC_VLEN)
|
2010-06-03 21:24:43 +08:00
|
|
|
{
|
|
|
|
nc_vlen_t *in_vlen = (nc_vlen_t *)data, *fv_vlen = (nc_vlen_t *)(var->fill_value);
|
Corrected "BAIL" macros to avoid infinite loop when logging is disabled and an
error occurs after an "exit:" label.
Corrected a dozen Coverity errors (mainly allocation issues, along with a few
other things):
711711, 711802, 711803, 711905, 970825, 996123, 996124, 1025787,
1047274, 1130013, 1130014, 1139538
Refactored internal fill-value code to correctly handle string types, and
especially to allow NULL pointers and null strings (ie. "") to be
distinguished. The code now avoids partially aliasing the two together
(which only happened on the 'write' side of things and wasn't reflected on
the 'read' side, adding to the previous confusion).
Probably still weak on handling fill-values of variable-length and compound
datatypes.
Refactored the recursive metadata reads a bit more, to process HDF5 named
datatypes and datasets immediately, avoiding chewing up memory for those
types of objects, etc.
Finished uncommenting and updating the nc_test4/tst_fills2.c code (as I'm
proceeding alphabetically through the nc_test4 code files).
2013-12-29 15:12:43 +08:00
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
fv_vlen->len = in_vlen->len;
|
|
|
|
if (!(fv_vlen->p = malloc(size * in_vlen->len)))
|
|
|
|
return NC_ENOMEM;
|
|
|
|
memcpy(fv_vlen->p, in_vlen->p, in_vlen->len * size);
|
|
|
|
}
|
2014-02-12 07:12:08 +08:00
|
|
|
else if (var->type_info->nc_type_class == NC_STRING)
|
2010-11-30 06:23:16 +08:00
|
|
|
{
|
2013-07-11 04:09:31 +08:00
|
|
|
if(NULL != (*(char **)data))
|
Corrected "BAIL" macros to avoid infinite loop when logging is disabled and an
error occurs after an "exit:" label.
Corrected a dozen Coverity errors (mainly allocation issues, along with a few
other things):
711711, 711802, 711803, 711905, 970825, 996123, 996124, 1025787,
1047274, 1130013, 1130014, 1139538
Refactored internal fill-value code to correctly handle string types, and
especially to allow NULL pointers and null strings (ie. "") to be
distinguished. The code now avoids partially aliasing the two together
(which only happened on the 'write' side of things and wasn't reflected on
the 'read' side, adding to the previous confusion).
Probably still weak on handling fill-values of variable-length and compound
datatypes.
Refactored the recursive metadata reads a bit more, to process HDF5 named
datatypes and datasets immediately, avoiding chewing up memory for those
types of objects, etc.
Finished uncommenting and updating the nc_test4/tst_fills2.c code (as I'm
proceeding alphabetically through the nc_test4 code files).
2013-12-29 15:12:43 +08:00
|
|
|
{
|
|
|
|
if (!(*(char **)(var->fill_value) = malloc(strlen(*(char **)data) + 1)))
|
|
|
|
return NC_ENOMEM;
|
|
|
|
strcpy(*(char **)var->fill_value, *(char **)data);
|
|
|
|
}
|
2013-07-11 04:09:31 +08:00
|
|
|
else
|
Corrected "BAIL" macros to avoid infinite loop when logging is disabled and an
error occurs after an "exit:" label.
Corrected a dozen Coverity errors (mainly allocation issues, along with a few
other things):
711711, 711802, 711803, 711905, 970825, 996123, 996124, 1025787,
1047274, 1130013, 1130014, 1139538
Refactored internal fill-value code to correctly handle string types, and
especially to allow NULL pointers and null strings (ie. "") to be
distinguished. The code now avoids partially aliasing the two together
(which only happened on the 'write' side of things and wasn't reflected on
the 'read' side, adding to the previous confusion).
Probably still weak on handling fill-values of variable-length and compound
datatypes.
Refactored the recursive metadata reads a bit more, to process HDF5 named
datatypes and datasets immediately, avoiding chewing up memory for those
types of objects, etc.
Finished uncommenting and updating the nc_test4/tst_fills2.c code (as I'm
proceeding alphabetically through the nc_test4 code files).
2013-12-29 15:12:43 +08:00
|
|
|
*(char **)var->fill_value = NULL;
|
2010-11-30 06:23:16 +08:00
|
|
|
}
|
2010-06-03 21:24:43 +08:00
|
|
|
else
|
|
|
|
memcpy(var->fill_value, data, type_size);
|
2015-11-12 02:32:12 +08:00
|
|
|
|
2014-12-01 22:52:53 +08:00
|
|
|
/* Indicate that the fill value was changed, if the variable has already
|
|
|
|
* been created in the file, so the dataset gets deleted and re-created. */
|
|
|
|
if (var->created)
|
|
|
|
var->fill_val_changed = NC_TRUE;
|
2010-06-03 21:24:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Copy the attribute data, if there is any. VLENs and string
|
|
|
|
* arrays have to be handled specially. */
|
2014-02-12 07:12:08 +08:00
|
|
|
if(att->len)
|
2010-06-03 21:24:43 +08:00
|
|
|
{
|
2014-02-12 07:12:08 +08:00
|
|
|
nc_type type_class; /* Class of attribute's type */
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2014-02-12 07:12:08 +08:00
|
|
|
/* Get class for this type. */
|
|
|
|
if ((retval = nc4_get_typeclass(h5, file_type, &type_class)))
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
assert(data);
|
|
|
|
if (type_class == NC_VLEN)
|
2010-06-03 21:24:43 +08:00
|
|
|
{
|
2014-02-12 07:12:08 +08:00
|
|
|
const hvl_t *vldata1;
|
2014-02-14 22:07:14 +08:00
|
|
|
NC_TYPE_INFO_T *type;
|
|
|
|
size_t base_typelen;
|
|
|
|
|
|
|
|
/* Get the type object for the attribute's type */
|
|
|
|
if ((retval = nc4_find_type(h5, file_type, &type)))
|
|
|
|
BAIL(retval);
|
|
|
|
|
|
|
|
/* Retrieve the size of the base type */
|
|
|
|
if ((retval = nc4_get_typelen_mem(h5, type->u.v.base_nc_typeid, 0, &base_typelen)))
|
|
|
|
BAIL(retval);
|
2014-02-12 07:12:08 +08:00
|
|
|
|
|
|
|
vldata1 = data;
|
2014-10-02 07:04:56 +08:00
|
|
|
if (!(att->vldata = (nc_vlen_t*)malloc(att->len * sizeof(hvl_t))))
|
|
|
|
BAIL(NC_ENOMEM);
|
2014-02-12 07:12:08 +08:00
|
|
|
for (i = 0; i < att->len; i++)
|
|
|
|
{
|
|
|
|
att->vldata[i].len = vldata1[i].len;
|
2014-02-14 22:07:14 +08:00
|
|
|
if (!(att->vldata[i].p = malloc(base_typelen * att->vldata[i].len)))
|
2014-02-12 07:12:08 +08:00
|
|
|
BAIL(NC_ENOMEM);
|
2014-02-14 22:07:14 +08:00
|
|
|
memcpy(att->vldata[i].p, vldata1[i].p, base_typelen * att->vldata[i].len);
|
2014-02-12 07:12:08 +08:00
|
|
|
}
|
2010-06-03 21:24:43 +08:00
|
|
|
}
|
2014-02-12 07:12:08 +08:00
|
|
|
else if (type_class == NC_STRING)
|
2010-06-03 21:24:43 +08:00
|
|
|
{
|
2015-11-12 02:32:12 +08:00
|
|
|
LOG((4, "copying array of NC_STRING"));
|
|
|
|
if (!(att->stdata = malloc(sizeof(char *) * att->len))) {
|
|
|
|
BAIL(NC_ENOMEM);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we are overwriting an existing attribute,
|
|
|
|
specifically an NC_CHAR, we need to clean up
|
|
|
|
the pre-existing att->data. */
|
|
|
|
if (!new_att && att->data) {
|
|
|
|
free(att->data);
|
|
|
|
att->data = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < att->len; i++)
|
|
|
|
{
|
2014-02-12 07:12:08 +08:00
|
|
|
if(NULL != ((char **)data)[i]) {
|
2015-11-12 02:32:12 +08:00
|
|
|
LOG((5, "copying string %d of size %d", i, strlen(((char **)data)[i]) + 1));
|
|
|
|
if (!(att->stdata[i] = strdup(((char **)data)[i])))
|
|
|
|
BAIL(NC_ENOMEM);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
att->stdata[i] = ((char **)data)[i];
|
|
|
|
}
|
2010-06-03 21:24:43 +08:00
|
|
|
}
|
2014-02-12 07:12:08 +08:00
|
|
|
else
|
2010-06-03 21:24:43 +08:00
|
|
|
{
|
2014-02-12 07:12:08 +08:00
|
|
|
/* [Re]allocate memory for the attribute data */
|
|
|
|
if (!new_att)
|
|
|
|
free (att->data);
|
|
|
|
if (!(att->data = malloc(att->len * type_size)))
|
|
|
|
BAIL(NC_ENOMEM);
|
|
|
|
|
|
|
|
/* Just copy the data, for non-atomic types */
|
|
|
|
if (type_class == NC_OPAQUE || type_class == NC_COMPOUND || type_class == NC_ENUM)
|
|
|
|
memcpy(att->data, data, len * type_size);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Data types are like religions, in that one can convert. */
|
2014-10-02 07:04:56 +08:00
|
|
|
if ((retval = nc4_convert_type(data, att->data, mem_type, file_type,
|
|
|
|
len, &range_error, NULL,
|
2014-02-12 07:12:08 +08:00
|
|
|
(h5->cmode & NC_CLASSIC_MODEL), is_long, 0)))
|
|
|
|
BAIL(retval);
|
|
|
|
}
|
2010-06-03 21:24:43 +08:00
|
|
|
}
|
|
|
|
}
|
2014-02-12 07:12:08 +08:00
|
|
|
att->dirty = NC_TRUE;
|
|
|
|
att->created = NC_FALSE;
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2014-11-24 23:36:58 +08:00
|
|
|
/* Mark attributes on variable dirty, so they get written */
|
|
|
|
if(var)
|
|
|
|
var->attr_dirty = NC_TRUE;
|
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
exit:
|
|
|
|
/* If there was an error return it, otherwise return any potential
|
|
|
|
range error value. If none, return NC_NOERR as usual.*/
|
2014-10-02 07:04:56 +08:00
|
|
|
if (retval)
|
2010-06-03 21:24:43 +08:00
|
|
|
return retval;
|
|
|
|
if (range_error)
|
|
|
|
return NC_ERANGE;
|
|
|
|
return NC_NOERR;
|
|
|
|
}
|
|
|
|
|
2016-05-16 08:03:04 +08:00
|
|
|
/* Learn about an att. All the nc4 nc_inq_ functions just call
|
|
|
|
* nc4_get_att to get the metadata on an attribute. */
|
2010-06-03 21:24:43 +08:00
|
|
|
int
|
|
|
|
NC4_inq_att(int ncid, int varid, const char *name, nc_type *xtypep, size_t *lenp)
|
|
|
|
{
|
2012-09-07 03:44:03 +08:00
|
|
|
NC *nc;
|
2013-01-18 10:25:12 +08:00
|
|
|
NC_HDF5_FILE_INFO_T *h5;
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
LOG((2, "nc_inq_att: ncid 0x%x varid %d name %s", ncid, varid, name));
|
|
|
|
|
|
|
|
/* Find metadata. */
|
2012-09-07 03:44:03 +08:00
|
|
|
if (!(nc = nc4_find_nc_file(ncid,NULL)))
|
2010-06-03 21:24:43 +08:00
|
|
|
return NC_EBADID;
|
|
|
|
|
2013-01-18 10:25:12 +08:00
|
|
|
/* get netcdf-4 metadata */
|
|
|
|
h5 = NC4_DATA(nc);
|
|
|
|
assert(h5);
|
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
/* Handle netcdf-4 files. */
|
2016-05-16 08:03:04 +08:00
|
|
|
return nc4_get_att(ncid, nc, varid, name, xtypep, NC_NAT, lenp, NULL, 0, NULL);
|
2010-06-03 21:24:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Learn an attnum, given a name. */
|
2014-10-02 07:04:56 +08:00
|
|
|
int
|
2010-06-03 21:24:43 +08:00
|
|
|
NC4_inq_attid(int ncid, int varid, const char *name, int *attnump)
|
|
|
|
{
|
2012-09-07 03:44:03 +08:00
|
|
|
NC *nc;
|
2013-01-18 10:25:12 +08:00
|
|
|
NC_HDF5_FILE_INFO_T *h5;
|
2016-05-16 08:03:04 +08:00
|
|
|
int stat;
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
LOG((2, "nc_inq_attid: ncid 0x%x varid %d name %s", ncid, varid, name));
|
|
|
|
|
|
|
|
/* Find metadata. */
|
2012-09-07 03:44:03 +08:00
|
|
|
if (!(nc = nc4_find_nc_file(ncid,NULL)))
|
2010-06-03 21:24:43 +08:00
|
|
|
return NC_EBADID;
|
|
|
|
|
2013-01-18 10:25:12 +08:00
|
|
|
/* get netcdf-4 metadata */
|
|
|
|
h5 = NC4_DATA(nc);
|
|
|
|
assert(h5);
|
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
/* Handle netcdf-4 files. */
|
2016-05-16 08:03:04 +08:00
|
|
|
stat = nc4_get_att(ncid, nc, varid, name, NULL, NC_NAT,
|
2010-06-03 21:24:43 +08:00
|
|
|
NULL, attnump, 0, NULL);
|
2016-05-16 08:03:04 +08:00
|
|
|
return stat;
|
2010-06-03 21:24:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Given an attnum, find the att's name. */
|
|
|
|
int
|
|
|
|
NC4_inq_attname(int ncid, int varid, int attnum, char *name)
|
|
|
|
{
|
2012-09-07 03:44:03 +08:00
|
|
|
NC *nc;
|
2010-06-03 21:24:43 +08:00
|
|
|
NC_ATT_INFO_T *att;
|
2013-01-18 10:25:12 +08:00
|
|
|
NC_HDF5_FILE_INFO_T *h5;
|
2010-06-03 21:24:43 +08:00
|
|
|
int retval = NC_NOERR;
|
|
|
|
|
2014-10-02 07:04:56 +08:00
|
|
|
LOG((2, "nc_inq_attname: ncid 0x%x varid %d attnum %d",
|
2010-06-03 21:24:43 +08:00
|
|
|
ncid, varid, attnum));
|
|
|
|
|
|
|
|
/* Find metadata. */
|
2012-09-07 03:44:03 +08:00
|
|
|
if (!(nc = nc4_find_nc_file(ncid,NULL)))
|
2010-06-03 21:24:43 +08:00
|
|
|
return NC_EBADID;
|
|
|
|
|
2013-01-18 10:25:12 +08:00
|
|
|
/* get netcdf-4 metadata */
|
|
|
|
h5 = NC4_DATA(nc);
|
|
|
|
assert(h5);
|
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
/* Handle netcdf-4 files. */
|
|
|
|
if ((retval = nc4_find_nc_att(ncid, varid, NULL, attnum, &att)))
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
/* Get the name. */
|
|
|
|
if (name)
|
|
|
|
strcpy(name, att->name);
|
|
|
|
|
|
|
|
return NC_NOERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* I think all atts should be named the exact same thing, to avoid
|
|
|
|
confusion! */
|
|
|
|
int
|
2014-10-02 07:04:56 +08:00
|
|
|
NC4_rename_att(int ncid, int varid, const char *name,
|
2010-06-03 21:24:43 +08:00
|
|
|
const char *newname)
|
|
|
|
{
|
2012-09-07 03:44:03 +08:00
|
|
|
NC *nc;
|
2014-10-02 07:04:56 +08:00
|
|
|
NC_GRP_INFO_T *grp;
|
2010-06-03 21:24:43 +08:00
|
|
|
NC_HDF5_FILE_INFO_T *h5;
|
2015-02-25 23:25:40 +08:00
|
|
|
NC_VAR_INFO_T *var = NULL;
|
2010-06-03 21:24:43 +08:00
|
|
|
NC_ATT_INFO_T *att, *list;
|
|
|
|
char norm_newname[NC_MAX_NAME + 1], norm_name[NC_MAX_NAME + 1];
|
|
|
|
hid_t datasetid = 0;
|
|
|
|
int retval = NC_NOERR;
|
|
|
|
|
|
|
|
if (!name || !newname)
|
|
|
|
return NC_EINVAL;
|
|
|
|
|
|
|
|
LOG((2, "nc_rename_att: ncid 0x%x varid %d name %s newname %s",
|
|
|
|
ncid, varid, name, newname));
|
|
|
|
|
|
|
|
/* If the new name is too long, that's an error. */
|
|
|
|
if (strlen(newname) > NC_MAX_NAME)
|
|
|
|
return NC_EMAXNAME;
|
|
|
|
|
|
|
|
/* Find metadata for this file. */
|
|
|
|
if ((retval = nc4_find_nc_grp_h5(ncid, &nc, &grp, &h5)))
|
|
|
|
return retval;
|
|
|
|
|
2013-01-18 10:25:12 +08:00
|
|
|
assert(h5 && grp);
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
/* If the file is read-only, return an error. */
|
|
|
|
if (h5->no_write)
|
|
|
|
return NC_EPERM;
|
|
|
|
|
|
|
|
/* Check and normalize the name. */
|
|
|
|
if ((retval = nc4_check_name(newname, norm_newname)))
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
/* Is norm_newname in use? */
|
|
|
|
if (varid == NC_GLOBAL)
|
|
|
|
{
|
|
|
|
list = grp->att;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
Refactored read_scale(), memio_new(), var_create_dataset() and makespecial()
to clean up resources properly on failure.
Refactored doubly-linked list code for objects in the libsrc4 directory,
cleaning up the add/del routines, breaking out the common next/prev
pointers into a struct and extracting the add/del operations on them,
changed the list of dims to add new dims in the same order as the other
types, made all add routines able to optionally return a pointer to the
newly created object.
Removed some dead code (pg_var(), nc4_pg_var1(), nc4_pg_varm(), misc. small
routines, etc)
Fixed fill value handling for string types in nc4_get_vara().
Changed many malloc()+strcpy() pairs into calls to strdup().
Cleaned up misc. other minor Coverity issues.
2013-12-08 17:29:26 +08:00
|
|
|
for (var = grp->var; var; var = var->l.next)
|
2010-06-03 21:24:43 +08:00
|
|
|
if (var->varid == varid)
|
|
|
|
{
|
|
|
|
list = var->att;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!var)
|
|
|
|
return NC_ENOTVAR;
|
|
|
|
}
|
Refactored read_scale(), memio_new(), var_create_dataset() and makespecial()
to clean up resources properly on failure.
Refactored doubly-linked list code for objects in the libsrc4 directory,
cleaning up the add/del routines, breaking out the common next/prev
pointers into a struct and extracting the add/del operations on them,
changed the list of dims to add new dims in the same order as the other
types, made all add routines able to optionally return a pointer to the
newly created object.
Removed some dead code (pg_var(), nc4_pg_var1(), nc4_pg_varm(), misc. small
routines, etc)
Fixed fill value handling for string types in nc4_get_vara().
Changed many malloc()+strcpy() pairs into calls to strdup().
Cleaned up misc. other minor Coverity issues.
2013-12-08 17:29:26 +08:00
|
|
|
for (att = list; att; att = att->l.next)
|
2010-06-03 21:24:43 +08:00
|
|
|
if (!strncmp(att->name, norm_newname, NC_MAX_NAME))
|
|
|
|
return NC_ENAMEINUSE;
|
|
|
|
|
|
|
|
/* Normalize name and find the attribute. */
|
|
|
|
if ((retval = nc4_normalize_name(name, norm_name)))
|
|
|
|
return retval;
|
Refactored read_scale(), memio_new(), var_create_dataset() and makespecial()
to clean up resources properly on failure.
Refactored doubly-linked list code for objects in the libsrc4 directory,
cleaning up the add/del routines, breaking out the common next/prev
pointers into a struct and extracting the add/del operations on them,
changed the list of dims to add new dims in the same order as the other
types, made all add routines able to optionally return a pointer to the
newly created object.
Removed some dead code (pg_var(), nc4_pg_var1(), nc4_pg_varm(), misc. small
routines, etc)
Fixed fill value handling for string types in nc4_get_vara().
Changed many malloc()+strcpy() pairs into calls to strdup().
Cleaned up misc. other minor Coverity issues.
2013-12-08 17:29:26 +08:00
|
|
|
for (att = list; att; att = att->l.next)
|
2010-06-03 21:24:43 +08:00
|
|
|
if (!strncmp(att->name, norm_name, NC_MAX_NAME))
|
|
|
|
break;
|
|
|
|
if (!att)
|
|
|
|
return NC_ENOTATT;
|
|
|
|
|
|
|
|
/* If we're not in define mode, new name must be of equal or
|
|
|
|
less size, if complying with strict NC3 rules. */
|
|
|
|
if (!(h5->flags & NC_INDEF) && strlen(norm_newname) > strlen(att->name) &&
|
|
|
|
(h5->cmode & NC_CLASSIC_MODEL))
|
|
|
|
return NC_ENOTINDEFINE;
|
|
|
|
|
|
|
|
/* Delete the original attribute, if it exists in the HDF5 file. */
|
|
|
|
if (att->created)
|
|
|
|
{
|
|
|
|
if (varid == NC_GLOBAL)
|
|
|
|
{
|
2010-11-30 06:23:16 +08:00
|
|
|
if (H5Adelete(grp->hdf_grpid, att->name) < 0)
|
|
|
|
return NC_EHDFERR;
|
2010-06-03 21:24:43 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ((retval = nc4_open_var_grp2(grp, varid, &datasetid)))
|
|
|
|
return retval;
|
2010-11-30 06:23:16 +08:00
|
|
|
if (H5Adelete(datasetid, att->name) < 0)
|
|
|
|
return NC_EHDFERR;
|
2010-06-03 21:24:43 +08:00
|
|
|
}
|
2014-02-12 07:12:08 +08:00
|
|
|
att->created = NC_FALSE;
|
2010-06-03 21:24:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Copy the new name into our metadata. */
|
2010-07-01 21:08:28 +08:00
|
|
|
free(att->name);
|
|
|
|
if (!(att->name = malloc((strlen(norm_newname) + 1) * sizeof(char))))
|
|
|
|
return NC_ENOMEM;
|
2010-06-03 21:24:43 +08:00
|
|
|
strcpy(att->name, norm_newname);
|
2014-02-12 07:12:08 +08:00
|
|
|
att->dirty = NC_TRUE;
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2015-02-25 23:25:40 +08:00
|
|
|
/* Mark attributes on variable dirty, so they get written */
|
|
|
|
if(var)
|
|
|
|
var->attr_dirty = NC_TRUE;
|
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Delete an att. Rub it out. Push the button on it. Liquidate
|
|
|
|
it. Bump it off. Take it for a one-way ride. Terminate it. Drop the
|
2014-10-02 07:04:56 +08:00
|
|
|
bomb on it. You get the idea.
|
|
|
|
Ed Hartnett, 10/1/3
|
2010-06-03 21:24:43 +08:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
NC4_del_att(int ncid, int varid, const char *name)
|
|
|
|
{
|
2012-09-07 03:44:03 +08:00
|
|
|
NC *nc;
|
2014-10-02 07:04:56 +08:00
|
|
|
NC_GRP_INFO_T *grp;
|
2010-06-03 21:24:43 +08:00
|
|
|
NC_HDF5_FILE_INFO_T *h5;
|
|
|
|
NC_ATT_INFO_T *att, *natt;
|
|
|
|
NC_VAR_INFO_T *var;
|
|
|
|
NC_ATT_INFO_T **attlist = NULL;
|
|
|
|
hid_t locid = 0, datasetid = 0;
|
|
|
|
int retval = NC_NOERR;
|
|
|
|
|
|
|
|
if (!name)
|
|
|
|
return NC_EINVAL;
|
|
|
|
|
|
|
|
LOG((2, "nc_del_att: ncid 0x%x varid %d name %s",
|
|
|
|
ncid, varid, name));
|
2014-10-02 07:04:56 +08:00
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
/* Find metadata for this file. */
|
|
|
|
if ((retval = nc4_find_nc_grp_h5(ncid, &nc, &grp, &h5)))
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
assert(h5 && grp);
|
|
|
|
|
|
|
|
/* If the file is read-only, return an error. */
|
|
|
|
if (h5->no_write)
|
|
|
|
return NC_EPERM;
|
|
|
|
|
|
|
|
/* If it's not in define mode, forget it. */
|
|
|
|
if (!(h5->flags & NC_INDEF))
|
|
|
|
{
|
|
|
|
if (h5->cmode & NC_CLASSIC_MODEL)
|
|
|
|
return NC_ENOTINDEFINE;
|
|
|
|
if ((retval = NC4_redef(ncid)))
|
|
|
|
BAIL(retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get either the global or a variable attribute list. Also figure
|
|
|
|
out the HDF5 location it's attached to. */
|
|
|
|
if (varid == NC_GLOBAL)
|
|
|
|
{
|
|
|
|
attlist = &grp->att;
|
|
|
|
locid = grp->hdf_grpid;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
Refactored read_scale(), memio_new(), var_create_dataset() and makespecial()
to clean up resources properly on failure.
Refactored doubly-linked list code for objects in the libsrc4 directory,
cleaning up the add/del routines, breaking out the common next/prev
pointers into a struct and extracting the add/del operations on them,
changed the list of dims to add new dims in the same order as the other
types, made all add routines able to optionally return a pointer to the
newly created object.
Removed some dead code (pg_var(), nc4_pg_var1(), nc4_pg_varm(), misc. small
routines, etc)
Fixed fill value handling for string types in nc4_get_vara().
Changed many malloc()+strcpy() pairs into calls to strdup().
Cleaned up misc. other minor Coverity issues.
2013-12-08 17:29:26 +08:00
|
|
|
for(var = grp->var; var; var = var->l.next)
|
2010-06-03 21:24:43 +08:00
|
|
|
{
|
|
|
|
if (var->varid == varid)
|
|
|
|
{
|
|
|
|
attlist = &var->att;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!var)
|
|
|
|
return NC_ENOTVAR;
|
|
|
|
if (var->created)
|
|
|
|
locid = var->hdf_datasetid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now find the attribute by name or number. */
|
Refactored read_scale(), memio_new(), var_create_dataset() and makespecial()
to clean up resources properly on failure.
Refactored doubly-linked list code for objects in the libsrc4 directory,
cleaning up the add/del routines, breaking out the common next/prev
pointers into a struct and extracting the add/del operations on them,
changed the list of dims to add new dims in the same order as the other
types, made all add routines able to optionally return a pointer to the
newly created object.
Removed some dead code (pg_var(), nc4_pg_var1(), nc4_pg_varm(), misc. small
routines, etc)
Fixed fill value handling for string types in nc4_get_vara().
Changed many malloc()+strcpy() pairs into calls to strdup().
Cleaned up misc. other minor Coverity issues.
2013-12-08 17:29:26 +08:00
|
|
|
for (att = *attlist; att; att = att->l.next)
|
2010-06-03 21:24:43 +08:00
|
|
|
if (!strcmp(att->name, name))
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* If att is NULL, we couldn't find the attribute. */
|
2014-10-02 07:04:56 +08:00
|
|
|
if (!att)
|
2010-06-03 21:24:43 +08:00
|
|
|
BAIL_QUIET(NC_ENOTATT);
|
2014-10-02 07:04:56 +08:00
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
/* Delete it from the HDF5 file, if it's been created. */
|
|
|
|
if (att->created)
|
2014-11-24 23:36:58 +08:00
|
|
|
{
|
|
|
|
assert(locid);
|
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
if(H5Adelete(locid, att->name) < 0)
|
|
|
|
BAIL(NC_EATTMETA);
|
2014-11-24 23:36:58 +08:00
|
|
|
}
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
/* Renumber all following attributes. */
|
Refactored read_scale(), memio_new(), var_create_dataset() and makespecial()
to clean up resources properly on failure.
Refactored doubly-linked list code for objects in the libsrc4 directory,
cleaning up the add/del routines, breaking out the common next/prev
pointers into a struct and extracting the add/del operations on them,
changed the list of dims to add new dims in the same order as the other
types, made all add routines able to optionally return a pointer to the
newly created object.
Removed some dead code (pg_var(), nc4_pg_var1(), nc4_pg_varm(), misc. small
routines, etc)
Fixed fill value handling for string types in nc4_get_vara().
Changed many malloc()+strcpy() pairs into calls to strdup().
Cleaned up misc. other minor Coverity issues.
2013-12-08 17:29:26 +08:00
|
|
|
for (natt = att->l.next; natt; natt = natt->l.next)
|
2010-06-03 21:24:43 +08:00
|
|
|
natt->attnum--;
|
|
|
|
|
|
|
|
/* Delete this attribute from this list. */
|
|
|
|
if ((retval = nc4_att_list_del(attlist, att)))
|
|
|
|
BAIL(retval);
|
2014-10-02 07:04:56 +08:00
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
exit:
|
|
|
|
if (datasetid > 0) H5Dclose(datasetid);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Write an attribute with type conversion. */
|
2014-02-12 07:12:08 +08:00
|
|
|
static int
|
2014-10-02 07:04:56 +08:00
|
|
|
nc4_put_att_tc(int ncid, int varid, const char *name, nc_type file_type,
|
|
|
|
nc_type mem_type, int mem_type_is_long, size_t len,
|
2010-06-03 21:24:43 +08:00
|
|
|
const void *op)
|
|
|
|
{
|
2012-09-07 03:44:03 +08:00
|
|
|
NC *nc;
|
2013-01-18 10:25:12 +08:00
|
|
|
NC_HDF5_FILE_INFO_T *h5;
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
if (!name || strlen(name) > NC_MAX_NAME)
|
|
|
|
return NC_EBADNAME;
|
|
|
|
|
|
|
|
LOG((3, "nc4_put_att_tc: ncid 0x%x varid %d name %s file_type %d "
|
|
|
|
"mem_type %d len %d", ncid, varid, name, file_type, mem_type, len));
|
|
|
|
|
|
|
|
/* The length needs to be positive (cast needed for braindead
|
|
|
|
systems with signed size_t). */
|
2014-10-02 07:04:56 +08:00
|
|
|
if((unsigned long) len > X_INT_MAX)
|
2010-06-03 21:24:43 +08:00
|
|
|
return NC_EINVAL;
|
|
|
|
|
|
|
|
/* Find metadata. */
|
2012-09-07 03:44:03 +08:00
|
|
|
if (!(nc = nc4_find_nc_file(ncid,NULL)))
|
2010-06-03 21:24:43 +08:00
|
|
|
return NC_EBADID;
|
|
|
|
|
2013-01-18 10:25:12 +08:00
|
|
|
/* get netcdf-4 metadata */
|
|
|
|
h5 = NC4_DATA(nc);
|
|
|
|
assert(h5);
|
|
|
|
|
2016-05-04 11:17:06 +08:00
|
|
|
if(nc->ext_ncid == ncid && varid == NC_GLOBAL) {
|
|
|
|
const char** reserved = NC_RESERVED_ATT_LIST;
|
|
|
|
for(;*reserved;reserved++) {
|
|
|
|
if(strcmp(name,*reserved)==0)
|
|
|
|
return NC_ENAMEINUSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(varid != NC_GLOBAL) {
|
|
|
|
const char** reserved = NC_RESERVED_VARATT_LIST;
|
|
|
|
for(;*reserved;reserved++) {
|
|
|
|
if(strcmp(name,*reserved)==0)
|
|
|
|
return NC_ENAMEINUSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
/* Otherwise, handle things the netcdf-4 way. */
|
2014-10-02 07:04:56 +08:00
|
|
|
return nc4_put_att(ncid, nc, varid, name, file_type, mem_type, len,
|
2010-06-03 21:24:43 +08:00
|
|
|
mem_type_is_long, op);
|
|
|
|
}
|
|
|
|
|
2016-05-04 11:17:06 +08:00
|
|
|
#ifdef ENABLE_FILEINFO
|
|
|
|
static int
|
2016-05-16 08:03:04 +08:00
|
|
|
nc4_get_att_special(NC_HDF5_FILE_INFO_T* h5, const char* name,
|
|
|
|
nc_type* filetypep, nc_type mem_type, size_t* lenp,
|
|
|
|
int* attnump, int is_long, void* data)
|
2016-05-04 11:17:06 +08:00
|
|
|
{
|
2016-05-16 08:03:04 +08:00
|
|
|
/* Fail if asking for att id */
|
|
|
|
if(attnump)
|
|
|
|
return NC_EATTMETA;
|
2016-05-04 11:17:06 +08:00
|
|
|
|
|
|
|
if(strcmp(name,NCPROPS)==0) {
|
|
|
|
if(h5->fileinfo->propattr.version == 0)
|
|
|
|
return NC_ENOTATT;
|
2016-05-16 08:03:04 +08:00
|
|
|
if(mem_type == NC_NAT) mem_type = NC_CHAR;
|
|
|
|
if(mem_type != NC_CHAR)
|
|
|
|
return NC_ECHAR;
|
|
|
|
if(filetypep) *filetypep = NC_CHAR;
|
2016-05-04 11:17:06 +08:00
|
|
|
if(lenp) *lenp = strlen(h5->fileinfo->propattr.text);
|
|
|
|
if(data) strcpy((char*)data,h5->fileinfo->propattr.text);
|
|
|
|
} else if(strcmp(name,ISNETCDF4ATT)==0
|
|
|
|
|| strcmp(name,SUPERBLOCKATT)==0) {
|
|
|
|
unsigned long long iv = 0;
|
2016-05-16 08:03:04 +08:00
|
|
|
if(filetypep) *filetypep = NC_INT;
|
|
|
|
if(lenp) *lenp = 1;
|
2016-05-04 11:17:06 +08:00
|
|
|
if(strcmp(name,SUPERBLOCKATT)==0)
|
|
|
|
iv = (unsigned long long)h5->fileinfo->superblockversion;
|
|
|
|
else /* strcmp(name,ISNETCDF4ATT)==0 */
|
|
|
|
iv = NC4_isnetcdf4(h5);
|
2016-05-16 08:03:04 +08:00
|
|
|
if(mem_type == NC_NAT) mem_type = NC_INT;
|
2016-05-04 11:17:06 +08:00
|
|
|
if(data)
|
|
|
|
switch (mem_type) {
|
|
|
|
case NC_BYTE: *((char*)data) = (char)iv; break;
|
|
|
|
case NC_SHORT: *((short*)data) = (short)iv; break;
|
|
|
|
case NC_INT: *((int*)data) = (int)iv; break;
|
|
|
|
case NC_UBYTE: *((unsigned char*)data) = (unsigned char)iv; break;
|
|
|
|
case NC_USHORT: *((unsigned short*)data) = (unsigned short)iv; break;
|
|
|
|
case NC_UINT: *((unsigned int*)data) = (unsigned int)iv; break;
|
|
|
|
case NC_INT64: *((long long*)data) = (long long)iv; break;
|
|
|
|
case NC_UINT64: *((unsigned long long*)data) = (unsigned long long)iv; break;
|
|
|
|
default:
|
|
|
|
return NC_ERANGE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NC_NOERR;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
/* Read an attribute of any type, with type conversion. This may be
|
|
|
|
* called by any of the nc_get_att_* functions. */
|
|
|
|
int
|
2014-10-02 07:04:56 +08:00
|
|
|
nc4_get_att_tc(int ncid, int varid, const char *name, nc_type mem_type,
|
2010-06-03 21:24:43 +08:00
|
|
|
int mem_type_is_long, void *ip)
|
|
|
|
{
|
2012-09-07 03:44:03 +08:00
|
|
|
NC *nc;
|
2013-01-18 10:25:12 +08:00
|
|
|
NC_HDF5_FILE_INFO_T *h5;
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2014-10-02 07:04:56 +08:00
|
|
|
LOG((3, "nc4_get_att_tc: ncid 0x%x varid %d name %s mem_type %d",
|
2010-06-03 21:24:43 +08:00
|
|
|
ncid, varid, name, mem_type));
|
|
|
|
|
|
|
|
/* Find metadata. */
|
2012-09-07 03:44:03 +08:00
|
|
|
if (!(nc = nc4_find_nc_file(ncid,NULL)))
|
2010-06-03 21:24:43 +08:00
|
|
|
return NC_EBADID;
|
|
|
|
|
2013-01-18 10:25:12 +08:00
|
|
|
/* get netcdf-4 metadata */
|
|
|
|
h5 = NC4_DATA(nc);
|
|
|
|
assert(h5);
|
|
|
|
|
2016-05-13 04:32:55 +08:00
|
|
|
return nc4_get_att(ncid, nc, varid, name, NULL, mem_type,
|
2010-06-03 21:24:43 +08:00
|
|
|
NULL, NULL, mem_type_is_long, ip);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2014-10-02 07:04:56 +08:00
|
|
|
NC4_put_att(int ncid, int varid, const char *name, nc_type xtype,
|
2010-06-03 21:24:43 +08:00
|
|
|
size_t nelems, const void *value, nc_type memtype)
|
|
|
|
{
|
|
|
|
return nc4_put_att_tc(ncid, varid, name, xtype, memtype, 0, nelems, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
NC4_get_att(int ncid, int varid, const char *name, void *value, nc_type memtype)
|
|
|
|
{
|
|
|
|
return nc4_get_att_tc(ncid, varid, name, memtype, 0, value);
|
|
|
|
}
|