2017-12-04 06:37:56 +08:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*
|
|
|
|
* Copyright 2003, University Corporation for Atmospheric
|
|
|
|
* Research. See netcdf-4/docs/COPYRIGHT file for copying and
|
|
|
|
* redistribution conditions.
|
|
|
|
*
|
|
|
|
* 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 (useless) *_base_pe() functions, and the
|
|
|
|
* inq_format functions.
|
|
|
|
*
|
|
|
|
* @author Ed Hartnett, Dennis Heimbigner
|
2010-06-03 21:24:43 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nc4internal.h"
|
2017-03-09 08:01:10 +08:00
|
|
|
#include "nc4dispatch.h"
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2017-11-22 22:46:03 +08:00
|
|
|
/**
|
2017-12-04 06:37:56 +08:00
|
|
|
* @internal This function only does anything for netcdf-3 files.
|
2017-11-22 23:21:24 +08:00
|
|
|
*
|
2017-12-04 06:37:56 +08:00
|
|
|
* @param ncid File ID (ignored).
|
|
|
|
* @param pe Processor element (ignored).
|
2017-11-22 22:46:03 +08:00
|
|
|
*
|
2017-12-04 06:37:56 +08:00
|
|
|
* @return ::NC_ENOTNC3 Not a netCDF classic format file.
|
|
|
|
* @author Ed Hartnett
|
2017-11-22 23:21:24 +08:00
|
|
|
*/
|
2010-06-03 21:24:43 +08:00
|
|
|
int
|
|
|
|
NC4_set_base_pe(int ncid, int pe)
|
|
|
|
{
|
2017-11-22 23:21:24 +08:00
|
|
|
return NC_ENOTNC3;
|
2010-06-03 21:24:43 +08:00
|
|
|
}
|
|
|
|
|
2017-11-22 23:21:24 +08:00
|
|
|
/**
|
2017-12-04 06:37:56 +08:00
|
|
|
* @internal This function only does anything for netcdf-3 files.
|
2017-11-22 23:21:24 +08:00
|
|
|
*
|
2017-12-04 06:37:56 +08:00
|
|
|
* @param ncid File ID (ignored).
|
|
|
|
* @param pe Pointer to processor element. Ignored if NULL. Gets a 0
|
2017-11-22 23:21:24 +08:00
|
|
|
* if present.
|
|
|
|
*
|
2017-12-04 06:37:56 +08:00
|
|
|
* @return ::NC_ENOTNC3 Not a netCDF classic format file.
|
|
|
|
* @author Ed Hartnett
|
2017-11-22 23:21:24 +08:00
|
|
|
*/
|
2010-06-03 21:24:43 +08:00
|
|
|
int
|
|
|
|
NC4_inq_base_pe(int ncid, int *pe)
|
|
|
|
{
|
2012-09-07 03:44:03 +08:00
|
|
|
return NC_ENOTNC3;
|
2010-06-03 21:24:43 +08:00
|
|
|
}
|
|
|
|
|
2017-11-22 23:21:24 +08:00
|
|
|
/**
|
2017-12-04 06:37:56 +08:00
|
|
|
* @internal Get the format (i.e. NC_FORMAT_NETCDF4 pr
|
2017-11-22 23:21:24 +08:00
|
|
|
* NC_FORMAT_NETCDF4_CLASSIC) of an open netCDF-4 file.
|
|
|
|
*
|
2017-12-04 06:37:56 +08:00
|
|
|
* @param ncid File ID (ignored).
|
|
|
|
* @param formatp Pointer that gets the constant indicating format.
|
2017-11-22 23:21:24 +08:00
|
|
|
|
2017-12-04 06:37:56 +08:00
|
|
|
* @return ::NC_NOERR No error.
|
|
|
|
* @return ::NC_EBADID Bad ncid.
|
|
|
|
* @author Ed Hartnett
|
2017-11-22 23:21:24 +08:00
|
|
|
*/
|
2010-06-03 21:24:43 +08:00
|
|
|
int
|
|
|
|
NC4_inq_format(int ncid, int *formatp)
|
|
|
|
{
|
2012-09-07 03:44:03 +08:00
|
|
|
NC *nc;
|
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
|
|
|
NC_HDF5_FILE_INFO_T* nc4_info;
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
LOG((2, "nc_inq_format: ncid 0x%x", ncid));
|
|
|
|
|
|
|
|
if (!formatp)
|
|
|
|
return NC_NOERR;
|
|
|
|
|
|
|
|
/* Find the file metadata. */
|
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 (!(nc = nc4_find_nc_file(ncid,&nc4_info)))
|
2010-06-03 21:24:43 +08:00
|
|
|
return NC_EBADID;
|
|
|
|
|
|
|
|
/* Otherwise, this is a netcdf-4 file. Check if classic NC3 rules
|
|
|
|
* are in effect for this file. */
|
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 (nc4_info->cmode & NC_CLASSIC_MODEL)
|
2010-06-03 21:24:43 +08:00
|
|
|
*formatp = NC_FORMAT_NETCDF4_CLASSIC;
|
|
|
|
else
|
|
|
|
*formatp = NC_FORMAT_NETCDF4;
|
|
|
|
|
|
|
|
return NC_NOERR;
|
|
|
|
}
|
|
|
|
|
2017-11-22 23:21:24 +08:00
|
|
|
/**
|
2017-12-04 06:37:56 +08:00
|
|
|
* @internal Return the extended format (i.e. the dispatch model),
|
|
|
|
* plus the mode associated with an open file.
|
2017-11-22 23:21:24 +08:00
|
|
|
*
|
2017-12-04 06:37:56 +08:00
|
|
|
* @param ncid File ID (ignored).
|
|
|
|
* @param formatp a pointer that gets the extended format. Note that
|
2017-11-22 23:21:24 +08:00
|
|
|
* this is not the same as the format provided by nc_inq_format(). The
|
|
|
|
* extended foramt indicates the dispatch layer model. NetCDF-4 files
|
|
|
|
* will always get NC_FORMATX_NC4 for netCDF files, NC_FORMATX_HDF4
|
|
|
|
* for HDF4 files.
|
2017-12-04 06:37:56 +08:00
|
|
|
* @param modep a pointer that gets the open/create mode associated with
|
2017-11-22 23:21:24 +08:00
|
|
|
* this file. Ignored if NULL.
|
|
|
|
|
2017-12-04 06:37:56 +08:00
|
|
|
* @return ::NC_NOERR No error.
|
|
|
|
* @return ::NC_EBADID Bad ncid.
|
|
|
|
* @author Dennis Heimbigner
|
2017-11-22 23:21:24 +08:00
|
|
|
*/
|
2013-12-23 03:53:20 +08:00
|
|
|
int
|
|
|
|
NC4_inq_format_extended(int ncid, int *formatp, int *modep)
|
|
|
|
{
|
|
|
|
NC *nc;
|
|
|
|
NC_HDF5_FILE_INFO_T* h5;
|
|
|
|
|
|
|
|
LOG((2, "nc_inq_format_extended: ncid 0x%x", ncid));
|
|
|
|
|
|
|
|
/* Find the file metadata. */
|
|
|
|
if (!(nc = nc4_find_nc_file(ncid,&h5)))
|
|
|
|
return NC_EBADID;
|
|
|
|
|
|
|
|
if(modep) *modep = (nc->mode|NC_NETCDF4);
|
|
|
|
|
|
|
|
if(formatp) {
|
2014-02-12 07:12:08 +08:00
|
|
|
#ifdef USE_HDF4
|
2017-11-22 23:21:24 +08:00
|
|
|
/* Distinguish HDF5 from HDF4 */
|
|
|
|
*formatp = (h5->hdf4 ? NC_FORMATX_NC_HDF4 : NC_FORMATX_NC_HDF5);
|
2014-02-12 07:12:08 +08:00
|
|
|
#else /* USE_HDF4 */
|
2017-11-22 23:21:24 +08:00
|
|
|
*formatp = NC_FORMATX_NC_HDF5;
|
2014-02-12 07:12:08 +08:00
|
|
|
#endif /* USE_HDF4 */
|
2013-12-23 03:53:20 +08:00
|
|
|
}
|
|
|
|
return NC_NOERR;
|
|
|
|
}
|