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 dimension functions.
|
|
|
|
|
|
|
|
Copyright 2003-5, University Corporation for Atmospheric Research. See
|
|
|
|
the COPYRIGHT file for copying and redistribution conditions.
|
|
|
|
|
|
|
|
$Id: nc4dim.c,v 1.41 2010/05/25 17:54:23 dmh Exp $
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nc4internal.h"
|
2012-12-13 04:05:06 +08:00
|
|
|
#include "nc4dispatch.h"
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2013-03-16 04:31:07 +08:00
|
|
|
#if 0 /*def USE_PNETCDF*/
|
2010-06-03 21:24:43 +08:00
|
|
|
#include <pnetcdf.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Netcdf-4 files might have more than one unlimited dimension, but
|
|
|
|
return the first one anyway. */
|
|
|
|
/* Note that this code is inconsistent with nc_inq */
|
|
|
|
int
|
|
|
|
NC4_inq_unlimdim(int ncid, int *unlimdimidp)
|
|
|
|
{
|
2012-09-07 03:44:03 +08:00
|
|
|
NC *nc;
|
2010-06-03 21:24:43 +08:00
|
|
|
NC_GRP_INFO_T *grp, *g;
|
|
|
|
NC_HDF5_FILE_INFO_T *h5;
|
|
|
|
NC_DIM_INFO_T *dim;
|
|
|
|
int found = 0;
|
|
|
|
int retval;
|
|
|
|
|
2013-12-01 13:20:28 +08:00
|
|
|
LOG((2, "%s: called", __func__));
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
if ((retval = nc4_find_nc_grp_h5(ncid, &nc, &grp, &h5)))
|
|
|
|
return retval;
|
2013-01-18 10:25:12 +08:00
|
|
|
assert(h5);
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2013-03-16 04:31:07 +08:00
|
|
|
#if 0 /*def USE_PNETCDF*/
|
2010-06-03 21:24:43 +08:00
|
|
|
/* Take care of files created/opened with parallel-netcdf library. */
|
2013-01-18 10:25:12 +08:00
|
|
|
if (h5->pnetcdf_file)
|
2010-06-03 21:24:43 +08:00
|
|
|
return ncmpi_inq_unlimdim(nc->int_ncid, unlimdimidp);
|
|
|
|
#endif /* USE_PNETCDF */
|
|
|
|
|
|
|
|
/* According to netcdf-3 manual, return -1 if there is no unlimited
|
|
|
|
dimension. */
|
|
|
|
*unlimdimidp = -1;
|
|
|
|
for (g = grp; g && !found; g = g->parent)
|
|
|
|
{
|
|
|
|
for (dim = g->dim; dim; dim = dim->next)
|
|
|
|
{
|
|
|
|
if (dim->unlimited)
|
|
|
|
{
|
|
|
|
*unlimdimidp = dim->dimid;
|
|
|
|
found++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NC_NOERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Dimensions are defined in attributes attached to the appropriate
|
|
|
|
group in the data file. */
|
|
|
|
int
|
|
|
|
NC4_def_dim(int ncid, const char *name, size_t len, int *idp)
|
|
|
|
{
|
2012-09-07 03:44:03 +08:00
|
|
|
NC *nc;
|
2010-06-03 21:24:43 +08:00
|
|
|
NC_GRP_INFO_T *grp;
|
|
|
|
NC_HDF5_FILE_INFO_T *h5;
|
|
|
|
NC_DIM_INFO_T *dim;
|
|
|
|
char norm_name[NC_MAX_NAME + 1];
|
|
|
|
int retval = NC_NOERR;
|
|
|
|
|
2013-12-01 13:20:28 +08:00
|
|
|
LOG((2, "%s: ncid 0x%x name %s len %d", __func__, ncid, name,
|
2010-06-03 21:24:43 +08:00
|
|
|
(int)len));
|
|
|
|
|
|
|
|
/* Find our global metadata structure. */
|
|
|
|
if ((retval = nc4_find_nc_grp_h5(ncid, &nc, &grp, &h5)))
|
|
|
|
return retval;
|
|
|
|
|
2013-01-18 10:25:12 +08:00
|
|
|
assert(h5 && nc /*& 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;
|
|
|
|
|
2013-03-16 04:31:07 +08:00
|
|
|
#if 0 /*def USE_PNETCDF*/
|
2013-01-18 10:25:12 +08:00
|
|
|
/* Take care of files created/opened with parallel-netcdf library. */
|
|
|
|
if (h5->pnetcdf_file)
|
|
|
|
return ncmpi_def_dim(nc->int_ncid, name, len, idp);
|
|
|
|
#endif /* USE_PNETCDF */
|
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
/* Check some stuff if strict nc3 rules are in effect. */
|
|
|
|
if (h5->cmode & NC_CLASSIC_MODEL)
|
|
|
|
{
|
|
|
|
/* Only one limited dimenson for strict nc3. */
|
|
|
|
if (len == NC_UNLIMITED)
|
|
|
|
for (dim = grp->dim; dim; dim = dim->next)
|
|
|
|
if (dim->unlimited)
|
|
|
|
return NC_EUNLIMIT;
|
|
|
|
|
|
|
|
/* Must be in define mode for stict nc3. */
|
|
|
|
if (!(h5->flags & NC_INDEF))
|
|
|
|
return NC_ENOTINDEFINE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If it's not in define mode, enter define mode. */
|
|
|
|
if (!(h5->flags & NC_INDEF))
|
2012-12-13 04:05:06 +08:00
|
|
|
if ((retval = NC4_redef(ncid)))
|
2010-06-03 21:24:43 +08:00
|
|
|
return retval;
|
|
|
|
|
|
|
|
/* Make sure this is a valid netcdf name. */
|
|
|
|
if ((retval = nc4_check_name(name, norm_name)))
|
|
|
|
return retval;
|
|
|
|
|
2011-09-06 00:09:17 +08:00
|
|
|
/* For classic model: dim length has to fit in a 32-bit unsigned
|
|
|
|
* int, as permitted for 64-bit offset format. */
|
2010-06-03 21:24:43 +08:00
|
|
|
if (h5->cmode & NC_CLASSIC_MODEL)
|
2011-09-06 00:09:17 +08:00
|
|
|
if(len > X_UINT_MAX) /* Backward compat */
|
2010-06-03 21:24:43 +08:00
|
|
|
return NC_EDIMSIZE;
|
|
|
|
|
|
|
|
/* Make sure the name is not already in use. */
|
|
|
|
for (dim = grp->dim; dim; dim = dim->next)
|
|
|
|
if (!strncmp(dim->name, norm_name, NC_MAX_NAME))
|
|
|
|
return NC_ENAMEINUSE;
|
|
|
|
|
|
|
|
/* Add a dimension to the list. The ID must come from the file
|
|
|
|
* information, since dimids are visible in more than one group. */
|
|
|
|
nc4_dim_list_add(&grp->dim);
|
2012-09-07 03:44:03 +08:00
|
|
|
grp->dim->dimid = grp->nc4_info->next_dimid++;
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
/* Initialize the metadata for this dimension. */
|
2010-07-01 21:36:41 +08:00
|
|
|
if (!(grp->dim->name = malloc((strlen(norm_name) + 1) * sizeof(char))))
|
|
|
|
return NC_ENOMEM;
|
2010-06-03 21:24:43 +08:00
|
|
|
strcpy(grp->dim->name, norm_name);
|
|
|
|
grp->dim->len = len;
|
|
|
|
if (len == NC_UNLIMITED)
|
|
|
|
grp->dim->unlimited++;
|
|
|
|
|
|
|
|
/* Pass back the dimid. */
|
|
|
|
if (idp)
|
|
|
|
*idp = grp->dim->dimid;
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Given dim name, find its id. */
|
|
|
|
int
|
|
|
|
NC4_inq_dimid(int ncid, const char *name, int *idp)
|
|
|
|
{
|
2012-09-07 03:44:03 +08:00
|
|
|
NC *nc;
|
2010-06-03 21:24:43 +08:00
|
|
|
NC_GRP_INFO_T *grp, *g;
|
|
|
|
NC_HDF5_FILE_INFO_T *h5;
|
|
|
|
NC_DIM_INFO_T *dim;
|
|
|
|
char norm_name[NC_MAX_NAME + 1];
|
|
|
|
int finished = 0;
|
|
|
|
int retval;
|
|
|
|
|
2013-12-01 13:20:28 +08:00
|
|
|
LOG((2, "%s: ncid 0x%x name %s", __func__, ncid, name));
|
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;
|
|
|
|
|
2013-01-18 10:25:12 +08:00
|
|
|
assert(h5);
|
|
|
|
assert(nc && grp);
|
|
|
|
|
2013-03-16 04:31:07 +08:00
|
|
|
#if 0 /*def USE_PNETCDF*/
|
2010-06-03 21:24:43 +08:00
|
|
|
/* Take care of files created/opened with parallel-netcdf library. */
|
2013-01-18 10:25:12 +08:00
|
|
|
if (h5->pnetcdf_file)
|
2010-06-03 21:24:43 +08:00
|
|
|
return ncmpi_inq_dimid(nc->int_ncid, name, idp);
|
|
|
|
#endif /* USE_PNETCDF */
|
|
|
|
|
|
|
|
/* Normalize name. */
|
|
|
|
if ((retval = nc4_normalize_name(name, norm_name)))
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
/* Go through each dim and check for a name match. */
|
|
|
|
for (g = grp; g && !finished; g = g->parent)
|
|
|
|
for (dim = g->dim; dim; dim = dim->next)
|
|
|
|
if (!strncmp(dim->name, norm_name, NC_MAX_NAME))
|
|
|
|
{
|
|
|
|
if (idp)
|
|
|
|
*idp = dim->dimid;
|
|
|
|
return NC_NOERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NC_EBADDIM;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find out name and len of a dim. For an unlimited dimension, the
|
|
|
|
length is the largest lenght so far written. If the name of lenp
|
|
|
|
pointers are NULL, they will be ignored. */
|
|
|
|
int
|
|
|
|
NC4_inq_dim(int ncid, int dimid, char *name, size_t *lenp)
|
|
|
|
{
|
2012-09-07 03:44:03 +08:00
|
|
|
NC *nc;
|
2010-06-03 21:24:43 +08:00
|
|
|
NC_HDF5_FILE_INFO_T *h5;
|
|
|
|
NC_GRP_INFO_T *grp, *dim_grp;
|
|
|
|
NC_DIM_INFO_T *dim;
|
|
|
|
int ret = NC_NOERR;
|
|
|
|
|
2013-12-01 13:20:28 +08:00
|
|
|
LOG((2, "%s: ncid 0x%x dimid %d", __func__, ncid, dimid));
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
/* Find our global metadata structure. */
|
|
|
|
if ((ret = nc4_find_nc_grp_h5(ncid, &nc, &grp, &h5)))
|
|
|
|
return ret;
|
|
|
|
|
2013-01-18 10:25:12 +08:00
|
|
|
assert(h5);
|
|
|
|
assert(nc && grp);
|
|
|
|
|
2013-03-16 04:31:07 +08:00
|
|
|
#if 0 /*def USE_PNETCDF*/
|
2010-06-03 21:24:43 +08:00
|
|
|
/* Take care of files created/opened with parallel-netcdf library. */
|
2013-01-18 10:25:12 +08:00
|
|
|
if (h5->pnetcdf_file)
|
2010-06-03 21:24:43 +08:00
|
|
|
{
|
|
|
|
MPI_Offset mpi_len;
|
|
|
|
if ((ret = ncmpi_inq_dim(nc->int_ncid, dimid, name, &mpi_len)))
|
|
|
|
return ret;
|
|
|
|
if (lenp)
|
|
|
|
*lenp = mpi_len;
|
2013-01-15 11:46:46 +08:00
|
|
|
return ret;
|
|
|
|
}
|
2010-06-03 21:24:43 +08:00
|
|
|
#endif /* USE_PNETCDF */
|
|
|
|
|
|
|
|
/* Find the dimension and its home group. */
|
|
|
|
if ((ret = nc4_find_dim(grp, dimid, &dim, &dim_grp)))
|
|
|
|
return ret;
|
|
|
|
assert(dim);
|
|
|
|
|
|
|
|
/* Return the dimension name, if the caller wants it. */
|
|
|
|
if (name && dim->name)
|
|
|
|
strcpy(name, dim->name);
|
|
|
|
|
|
|
|
/* Return the dimension length, if the caller wants it. */
|
|
|
|
if (lenp)
|
|
|
|
{
|
|
|
|
if (dim->unlimited)
|
|
|
|
{
|
|
|
|
/* Since this is an unlimited dimension, go to the file
|
|
|
|
and see how many records there are. Take the max number
|
|
|
|
of records from all the vars that share this
|
|
|
|
dimension. */
|
|
|
|
*lenp = 0;
|
|
|
|
if ((ret = nc4_find_dim_len(dim_grp, dimid, &lenp)))
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (dim->too_long)
|
|
|
|
{
|
|
|
|
ret = NC_EDIMSIZE;
|
|
|
|
*lenp = NC_MAX_UINT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*lenp = dim->len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Rename a dimension, for those who like to prevaricate. */
|
|
|
|
int
|
|
|
|
NC4_rename_dim(int ncid, int dimid, const char *name)
|
|
|
|
{
|
2012-09-07 03:44:03 +08:00
|
|
|
NC *nc;
|
2010-06-03 21:24:43 +08:00
|
|
|
NC_GRP_INFO_T *grp;
|
|
|
|
NC_HDF5_FILE_INFO_T *h5;
|
|
|
|
NC_DIM_INFO_T *dim;
|
|
|
|
char norm_name[NC_MAX_NAME + 1];
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
if (!name)
|
|
|
|
return NC_EINVAL;
|
|
|
|
|
2013-12-01 13:20:28 +08:00
|
|
|
LOG((2, "%s: ncid 0x%x dimid %d name %s", __func__, ncid,
|
2010-06-03 21:24:43 +08:00
|
|
|
dimid, name));
|
|
|
|
|
|
|
|
/* Find info for this file and group, and set pointer to each. */
|
|
|
|
if ((retval = nc4_find_nc_grp_h5(ncid, &nc, &grp, &h5)))
|
|
|
|
return retval;
|
2013-01-18 10:25:12 +08:00
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
assert(nc);
|
2013-01-18 10:25:12 +08:00
|
|
|
assert(h5 && grp);
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2013-01-18 10:25:12 +08:00
|
|
|
/* Trying to write to a read-only file? No way, Jose! */
|
|
|
|
if (h5->no_write)
|
|
|
|
return NC_EPERM;
|
|
|
|
|
2013-03-16 04:31:07 +08:00
|
|
|
#if 0 /*def USE_PNETCDF*/
|
2010-06-03 21:24:43 +08:00
|
|
|
/* Take care of files created/opened with parallel-netcdf library. */
|
2013-01-18 10:25:12 +08:00
|
|
|
if (h5->pnetcdf_file)
|
2010-06-03 21:24:43 +08:00
|
|
|
return ncmpi_rename_dim(nc->int_ncid, dimid, name);
|
|
|
|
#endif /* USE_PNETCDF */
|
|
|
|
|
|
|
|
/* Make sure this is a valid netcdf name. */
|
|
|
|
if ((retval = nc4_check_name(name, norm_name)))
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
/* Make sure the new name is not already in use in this group. */
|
|
|
|
for (dim = grp->dim; dim; dim = dim->next)
|
|
|
|
if (!strncmp(dim->name, norm_name, NC_MAX_NAME))
|
|
|
|
return NC_ENAMEINUSE;
|
|
|
|
|
|
|
|
/* Find the dim. */
|
|
|
|
for (dim = grp->dim; dim; dim = dim->next)
|
|
|
|
if (dim->dimid == dimid)
|
|
|
|
break;
|
|
|
|
if (!dim)
|
|
|
|
return NC_EBADDIM;
|
|
|
|
|
2013-12-01 13:20:28 +08:00
|
|
|
/* Check for renaming dimension w/o variable */
|
|
|
|
if (dim->hdf_dimscaleid)
|
2010-07-01 21:36:41 +08:00
|
|
|
{
|
2013-12-01 13:20:28 +08:00
|
|
|
/* Sanity check */
|
|
|
|
assert(!dim->coord_var);
|
|
|
|
|
|
|
|
/* Close the HDF5 dataset */
|
|
|
|
if (H5Dclose(dim->hdf_dimscaleid) < 0)
|
|
|
|
return NC_EHDFERR;
|
|
|
|
dim->hdf_dimscaleid = 0;
|
|
|
|
|
|
|
|
/* Now delete the dataset (it will be recreated later, if necessary) */
|
|
|
|
if (H5Gunlink(grp->hdf_grpid, dim->name) < 0)
|
|
|
|
return NC_EDIMMETA;
|
2010-07-01 21:36:41 +08:00
|
|
|
}
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
/* Give the dimension its new name in metadata. UTF8 normalization
|
|
|
|
* has been done. */
|
2013-08-18 01:53:29 +08:00
|
|
|
if(dim->name)
|
|
|
|
free(dim->name);
|
2010-07-01 21:36:41 +08:00
|
|
|
if (!(dim->name = malloc((strlen(norm_name) + 1) * sizeof(char))))
|
|
|
|
return NC_ENOMEM;
|
2010-06-03 21:24:43 +08:00
|
|
|
strcpy(dim->name, norm_name);
|
|
|
|
|
2013-12-01 13:20:28 +08:00
|
|
|
/* Check if dimension was a coordinate variable, but names are different now */
|
|
|
|
if (dim->coord_var && strcmp(dim->name, dim->coord_var->name))
|
|
|
|
{
|
|
|
|
/* Break up the coordinate variable */
|
|
|
|
if ((retval = nc4_break_coord_var(grp, dim->coord_var, dim)))
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if dimension should become a coordinate variable */
|
|
|
|
if (!dim->coord_var)
|
|
|
|
{
|
|
|
|
NC_VAR_INFO_T *var;
|
|
|
|
|
|
|
|
/* Attempt to find a variable with the same name as the dimension in
|
|
|
|
* the current group. */
|
|
|
|
if ((retval = nc4_find_var(grp, dim->name, &var)))
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
/* Check if we found a variable and the variable has the dimension in
|
|
|
|
* index 0. */
|
|
|
|
if (var && var->dim[0] == dim)
|
|
|
|
{
|
|
|
|
/* Sanity check */
|
|
|
|
assert(var->dimids[0] == dim->dimid);
|
|
|
|
|
|
|
|
/* Reform the coordinate variable */
|
|
|
|
if ((retval = nc4_reform_coord_var(grp, var, dim)))
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
return NC_NOERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns an array of unlimited dimension ids.The user can get the
|
|
|
|
number of unlimited dimensions by first calling this with NULL for
|
|
|
|
the second pointer.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
NC4_inq_unlimdims(int ncid, int *nunlimdimsp, int *unlimdimidsp)
|
|
|
|
{
|
|
|
|
NC_DIM_INFO_T *dim;
|
|
|
|
NC_GRP_INFO_T *grp;
|
2012-09-07 03:44:03 +08:00
|
|
|
NC *nc;
|
2010-06-03 21:24:43 +08:00
|
|
|
NC_HDF5_FILE_INFO_T *h5;
|
2010-07-31 06:16:15 +08:00
|
|
|
int num_unlim = 0;
|
2010-06-03 21:24:43 +08:00
|
|
|
int retval;
|
|
|
|
|
2013-12-01 13:20:28 +08:00
|
|
|
LOG((2, "%s: ncid 0x%x", __func__, ncid));
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2013-01-29 02:31:02 +08:00
|
|
|
/* Find info for this file and group, and set pointer to each. */
|
|
|
|
if ((retval = nc4_find_nc_grp_h5(ncid, &nc, &grp, &h5)))
|
|
|
|
return retval;
|
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
/* Get our dim info. */
|
2010-07-31 03:20:22 +08:00
|
|
|
assert(h5);
|
2010-06-03 21:24:43 +08:00
|
|
|
{
|
|
|
|
for (dim=grp->dim; dim; dim=dim->next)
|
|
|
|
{
|
|
|
|
if (dim->unlimited)
|
|
|
|
{
|
|
|
|
if (unlimdimidsp)
|
|
|
|
unlimdimidsp[num_unlim] = dim->dimid;
|
|
|
|
num_unlim++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Give the number if the user wants it. */
|
|
|
|
if (nunlimdimsp)
|
|
|
|
*nunlimdimsp = num_unlim;
|
|
|
|
|
|
|
|
return NC_NOERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|