mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-21 08:39:46 +08:00
2ea1cf5f1b
stored in the _NCProperties attribute to allow two things: 1. capture of additional library dependencies (over and above hdf5) 2. Recognition of non-netcdf libraries that create netcdf-4 format files. To this end, the _NCProperties format has been extended to be and arbitrary set of key=value pairs separated by commas. This new format has version = 2, and uses commas as the pair separator. Thus the general form is: _NCProperties = "version=2,key1=value,key2=value2..." ; This new version is accompanied by a new ./configure option of the form --with-ncproperties="key1=value1,key2=value2..." that specifies pairs to add to the _NCProperties attribute for all files created with that netcdf library. At this point, what is missing is some programmatic way to specify either all the pairs or additional pairs to the _NCProperties attribute. Not sure of the best way to do this. Builders using non-netcdf libraries can specify whatever they want in the key value pairs (as long as the version=2 is specified first). By convention, the primary library is expected to be the the first pair after the leading version=2 pair, but this is convention only and is neither required nor enforced. Related changes: 1. Fixed the tests that check _NCProperties to properly operate with version=2. 2. When reading a version 1 _NCProperties attribute, convert it to look like a version 2 attribute. 2. Added some version 2 tests to ncdump/tst_fileinfo.c and ncdump/tst_fileinfo.sh Misc Changes: 1. Fix minor problem in ncdap_test/testurl.sh where a parameter to buildurl needed to be quoted. 2. Minor fix to ncgen to swap switches -H and -h to be consistent with other utilities. 3. Document the -M flag in nccopy usage() and the nccopy man page. 4. Modify a test case to use the nccopy -M flag.
216 lines
6.3 KiB
C
216 lines
6.3 KiB
C
/* This is part of the netCDF package. Copyright 2008 University
|
|
Corporation for Atmospheric Research/Unidata See COPYRIGHT file for
|
|
conditions of use. See www.unidata.ucar.edu for more info.
|
|
*/
|
|
|
|
/*
|
|
Test _NCProperties and other special attributes
|
|
*/
|
|
|
|
#include "config.h"
|
|
#ifdef HAVE_UNISTD_H
|
|
#include "unistd.h"
|
|
#endif
|
|
|
|
#include <hdf5.h>
|
|
#include "nc_tests.h"
|
|
#include "err_macros.h"
|
|
#include "netcdf.h"
|
|
#include "nc4internal.h"
|
|
|
|
#define NC4FILE "nc4_fileinfo.nc"
|
|
#define HDFFILE "hdf5_fileinfo.hdf"
|
|
#define INT_ATT_NAME "int_attr"
|
|
#define INT_VAR_NAME "int_var"
|
|
#define GROUPNAME "subgroup"
|
|
#define DIMNAME "time"
|
|
|
|
/*
|
|
Effective cdl:
|
|
|
|
netcdf nc4_fileinfo {
|
|
dimensions:
|
|
time = 4;
|
|
variables:
|
|
int :int_attr;
|
|
int int_var;
|
|
int int_var:int_attr;
|
|
char int_var:_NCProperties;
|
|
int time(time);
|
|
group subgroup: {
|
|
int :int_attr;
|
|
char :_NCProperties;
|
|
}
|
|
}
|
|
*/
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
printf("\n*** Testing 'Fileinfo attributes.\n");
|
|
|
|
{
|
|
hid_t fileid;
|
|
hid_t fcplid;
|
|
hid_t scalar_spaceid;
|
|
|
|
printf("*** creating test file using HDF5 directly %s...", HDFFILE);
|
|
|
|
/* Create scalar dataspace */
|
|
if((scalar_spaceid = H5Screate(H5S_SCALAR)) < 0) ERR;
|
|
|
|
/* Set creation ordering for file, so we can revise its contents later */
|
|
if((fcplid = H5Pcreate(H5P_FILE_CREATE)) < 0) ERR;
|
|
if(H5Pset_link_creation_order(fcplid, H5P_CRT_ORDER_TRACKED) < 0) ERR;
|
|
if(H5Pset_attr_creation_order(fcplid, H5P_CRT_ORDER_TRACKED) < 0) ERR;
|
|
|
|
/* Create new file, using default properties */
|
|
if((fileid = H5Fcreate(HDFFILE, H5F_ACC_TRUNC, fcplid, H5P_DEFAULT)) < 0) ERR;
|
|
/* Close file creation property list */
|
|
if(H5Pclose(fcplid) < 0) ERR;
|
|
|
|
/* Add attributes to root group */
|
|
{
|
|
hid_t scalar_spaceid = -1;
|
|
hid_t attid = -1;
|
|
|
|
/* Create scalar dataspace */
|
|
if((scalar_spaceid = H5Screate(H5S_SCALAR)) < 0) ERR;
|
|
|
|
/* Create attribute with native integer datatype on object */
|
|
if((attid = H5Acreate2(fileid, INT_ATT_NAME, H5T_NATIVE_INT, scalar_spaceid, H5P_DEFAULT, H5P_DEFAULT)) < 0) ERR;
|
|
if(H5Aclose(attid) < 0) ERR;
|
|
|
|
/* Clean up objects created */
|
|
if(H5Sclose(scalar_spaceid) < 0) ERR;
|
|
}
|
|
|
|
/* Close rest */
|
|
if(H5Sclose(scalar_spaceid) < 0) ERR;
|
|
if(H5Fclose(fileid) < 0) ERR;
|
|
}
|
|
|
|
{
|
|
int root, grpid, varid, stat, natts, id;
|
|
int data = 17;
|
|
const char* sdata = "text";
|
|
char ncprops[8192];
|
|
size_t len;
|
|
int dimid;
|
|
nc_type xtype;
|
|
char name[NC_MAX_NAME];
|
|
|
|
printf("\n*** creating netcdf-4 test file using netCDF %s...", NC4FILE);
|
|
|
|
if(nc_create(NC4FILE,NC_WRITE|NC_CLOBBER|NC_NETCDF4,&root)!=0) ERR;
|
|
/* Create global attribute */
|
|
if(nc_put_att_int(root,NC_GLOBAL,INT_ATT_NAME,NC_INT,1,&data)!=0) ERR;
|
|
/* Create global variable */
|
|
if(nc_def_var(root,INT_VAR_NAME,NC_INT,0,NULL,&varid)!=0) ERR;
|
|
/* Create attribute on var */
|
|
if(nc_put_att_int(root,varid,INT_ATT_NAME,NC_INT,1,&data)!=0) ERR;
|
|
/* Create global subgroup */
|
|
if(nc_def_grp(root,GROUPNAME,&grpid)!=0) ERR;
|
|
/* Create global attribute in the group */
|
|
if(nc_put_att_int(grpid,NC_GLOBAL,INT_ATT_NAME,NC_INT,1,&data)!=0) ERR;
|
|
/* Create var + dimension to cause e.g. dimscales to appear */
|
|
if(nc_def_dim(root,DIMNAME,(size_t)4,&dimid)!=0) ERR;
|
|
if(nc_def_var(root,DIMNAME,NC_INT,1,&dimid,&varid)!=0) ERR; /* same name */
|
|
/* Close, then re-open */
|
|
if(nc_close(root)) ERR;
|
|
if(nc_open(NC4FILE,NC_WRITE|NC_NETCDF4,&root)!=0) ERR;
|
|
|
|
/* Is all invisible attributes actually invisible vis-a-vis nc_inq? */
|
|
if(nc_inq(root,NULL,NULL,&natts,NULL)!=0) ERR;
|
|
if(natts != 1) ERR;
|
|
|
|
/* Now, fiddle with the NCPROPS attribute */
|
|
|
|
/* Get its metadata */
|
|
if(nc_inq_att(root,NC_GLOBAL,NCPROPS,&xtype,&len)!=0) ERR;
|
|
if(xtype != NC_CHAR) ERR;
|
|
|
|
/* Read in two ways */
|
|
if(nc_get_att_text(root,NC_GLOBAL,NCPROPS,ncprops)!=0) ERR;
|
|
if(strlen(ncprops) != len) ERR;
|
|
|
|
/* Attempt to get attribute metadata piecemeal; some will fail */
|
|
id = -1;
|
|
stat = nc_inq_attid(root,NC_GLOBAL,NCPROPS,&id);
|
|
if(stat == NC_NOERR) ERR;
|
|
stat = nc_inq_attname(root,NC_GLOBAL,id,name);
|
|
if(stat == NC_NOERR) ERR;
|
|
if(nc_inq_atttype(root,NC_GLOBAL,NCPROPS,&xtype)!=0) ERR;
|
|
if(xtype != NC_CHAR) ERR;
|
|
if(nc_inq_attlen(root,NC_GLOBAL,NCPROPS,&len)!=0) ERR;
|
|
if(len != strlen(ncprops)) ERR;
|
|
|
|
/*Overwrite _NCProperties root attribute; should fail */
|
|
stat = nc_put_att_text(root,NC_GLOBAL,NCPROPS,strlen(sdata),sdata);
|
|
if(stat == NC_NOERR) ERR;
|
|
|
|
/* Delete; should fail */
|
|
stat = nc_del_att(root,NC_GLOBAL,NCPROPS);
|
|
if(stat != NC_ENOTATT) ERR;
|
|
|
|
/* Ditto _SuperblockVersion */
|
|
|
|
/* Get its metadata */
|
|
if(nc_inq_att(root,NC_GLOBAL,SUPERBLOCKATT,&xtype,&len)!=0) ERR;
|
|
if(xtype != NC_INT) ERR;
|
|
if(len != 1) ERR;
|
|
|
|
if(nc_get_att_int(root,NC_GLOBAL,SUPERBLOCKATT,&data)!=0) ERR;
|
|
|
|
/* Attempt to get attribute metadata piecemeal */
|
|
stat = nc_inq_attid(root,NC_GLOBAL,SUPERBLOCKATT,&id);
|
|
if(stat == NC_NOERR) ERR;
|
|
stat = nc_inq_attname(root,NC_GLOBAL,id,name);
|
|
if(stat == NC_NOERR) ERR;
|
|
if(nc_inq_atttype(root,NC_GLOBAL,SUPERBLOCKATT,&xtype)!=0) ERR;
|
|
if(xtype != NC_INT) ERR;
|
|
if(nc_inq_attlen(root,NC_GLOBAL,SUPERBLOCKATT,&len)!=0) ERR;
|
|
if(len != 1) ERR;
|
|
|
|
/*Overwrite; should fail */
|
|
stat = nc_put_att_int(root,NC_GLOBAL,NCPROPS,NC_INT,1,&data);
|
|
if(stat == NC_NOERR) ERR;
|
|
|
|
/* Delete; should fail */
|
|
stat = nc_del_att(root,NC_GLOBAL,SUPERBLOCKATT);
|
|
if(stat == NC_NOERR) ERR;
|
|
|
|
/* Ditto _IsNetcdf4 */
|
|
|
|
/* Get its metadata */
|
|
if(nc_inq_att(root,NC_GLOBAL,ISNETCDF4ATT,&xtype,&len)!=0) ERR;
|
|
if(xtype != NC_INT) ERR;
|
|
if(len != 1) ERR;
|
|
|
|
if(nc_get_att_int(root,NC_GLOBAL,ISNETCDF4ATT,&data)!=0) ERR;
|
|
|
|
/* Attempt to get attribute metadata piecemeal */
|
|
stat = nc_inq_attid(root,NC_GLOBAL,ISNETCDF4ATT,&id);
|
|
if(stat == NC_NOERR) ERR;
|
|
stat = nc_inq_attname(root,NC_GLOBAL,id,name);
|
|
if(stat == NC_NOERR) ERR;
|
|
if(nc_inq_atttype(root,NC_GLOBAL,ISNETCDF4ATT,&xtype)!=0) ERR;
|
|
if(xtype != NC_INT) ERR;
|
|
if(nc_inq_attlen(root,NC_GLOBAL,ISNETCDF4ATT,&len)!=0) ERR;
|
|
if(len != 1) ERR;
|
|
|
|
/*Overwrite; should fail */
|
|
stat = nc_put_att_int(root,NC_GLOBAL,ISNETCDF4ATT,NC_INT,1,&data);
|
|
if(stat == NC_NOERR) ERR;
|
|
|
|
/* Delete; should fail */
|
|
stat = nc_del_att(root,NC_GLOBAL,ISNETCDF4ATT);
|
|
if(stat == NC_NOERR) ERR;
|
|
|
|
if(nc_close(root)!=0) ERR;
|
|
}
|
|
|
|
SUMMARIZE_ERR;
|
|
FINAL_RESULTS;
|
|
}
|