mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
25f062528b
The file docs/indexing.dox tries to provide design information for the refactoring. The primary change is to replace all walking of linked lists with the use of the NCindex data structure. Ncindex is a combination of a hash table (for name-based lookup) and a vector (for walking the elements in the index). Additionally, global vectors are added to NC_HDF5_FILE_INFO_T to support direct mapping of an e.g. dimid to the NC_DIM_INFO_T object. These global vectors exist for dimensions, types, and groups because they have globally unique id numbers. WARNING: 1. since libsrc4 and libsrchdf4 share code, there are also changes in libsrchdf4. 2. Any outstanding pull requests that change libsrc4 or libhdf4 are likely to cause conflicts with this code. 3. The original reason for doing this was for performance improvements, but as noted elsewhere, this may not be significant because the meta-data read performance apparently is being dominated by the hdf5 library because we do bulk meta-data reading rather than lazy reading.
139 lines
2.4 KiB
C
139 lines
2.4 KiB
C
/*********************************************************************
|
|
* Copyright 1993, UCAR/Unidata
|
|
* See netcdf/COPYRIGHT file for copying and redistribution conditions.
|
|
* $Header: /upc/share/CVS/netcdf-3/libsrc4/nc4dispatch.c,v 1.5 2010/05/27 02:19:37 dmh Exp $
|
|
*********************************************************************/
|
|
|
|
#include "config.h"
|
|
#include <stdlib.h>
|
|
#include "nc4dispatch.h"
|
|
#include "nc.h"
|
|
|
|
static NC_Dispatch NC4_dispatcher = {
|
|
|
|
NC_FORMATX_NC4,
|
|
|
|
NC4_create,
|
|
NC4_open,
|
|
|
|
NC4_redef,
|
|
NC4__enddef,
|
|
NC4_sync,
|
|
NC4_abort,
|
|
NC4_close,
|
|
NC4_set_fill,
|
|
NC4_inq_base_pe,
|
|
NC4_set_base_pe,
|
|
NC4_inq_format,
|
|
NC4_inq_format_extended,
|
|
|
|
NC4_inq,
|
|
NC4_inq_type,
|
|
|
|
NC4_def_dim,
|
|
NC4_inq_dimid,
|
|
NC4_inq_dim,
|
|
NC4_inq_unlimdim,
|
|
NC4_rename_dim,
|
|
|
|
NC4_inq_att,
|
|
NC4_inq_attid,
|
|
NC4_inq_attname,
|
|
NC4_rename_att,
|
|
NC4_del_att,
|
|
NC4_get_att,
|
|
NC4_put_att,
|
|
|
|
NC4_def_var,
|
|
NC4_inq_varid,
|
|
NC4_rename_var,
|
|
NC4_get_vara,
|
|
NC4_put_vara,
|
|
NCDEFAULT_get_vars,
|
|
NCDEFAULT_put_vars,
|
|
NCDEFAULT_get_varm,
|
|
NCDEFAULT_put_varm,
|
|
|
|
NC4_inq_var_all,
|
|
|
|
NC4_var_par_access,
|
|
NC4_def_var_fill,
|
|
|
|
#ifdef USE_NETCDF4
|
|
NC4_show_metadata,
|
|
NC4_inq_unlimdims,
|
|
|
|
NC4_inq_ncid,
|
|
NC4_inq_grps,
|
|
NC4_inq_grpname,
|
|
NC4_inq_grpname_full,
|
|
NC4_inq_grp_parent,
|
|
NC4_inq_grp_full_ncid,
|
|
NC4_inq_varids,
|
|
NC4_inq_dimids,
|
|
NC4_inq_typeids,
|
|
NC4_inq_type_equal,
|
|
NC4_def_grp,
|
|
NC4_rename_grp,
|
|
NC4_inq_user_type,
|
|
NC4_inq_typeid,
|
|
|
|
NC4_def_compound,
|
|
NC4_insert_compound,
|
|
NC4_insert_array_compound,
|
|
NC4_inq_compound_field,
|
|
NC4_inq_compound_fieldindex,
|
|
NC4_def_vlen,
|
|
NC4_put_vlen_element,
|
|
NC4_get_vlen_element,
|
|
NC4_def_enum,
|
|
NC4_insert_enum,
|
|
NC4_inq_enum_member,
|
|
NC4_inq_enum_ident,
|
|
NC4_def_opaque,
|
|
NC4_def_var_deflate,
|
|
NC4_def_var_fletcher32,
|
|
NC4_def_var_chunking,
|
|
NC4_def_var_endian,
|
|
NC4_def_var_filter,
|
|
NC4_set_var_chunk_cache,
|
|
NC4_get_var_chunk_cache,
|
|
#endif
|
|
|
|
};
|
|
|
|
NC_Dispatch* NC4_dispatch_table = NULL; /* moved here from ddispatch.c */
|
|
|
|
/**
|
|
* @internal Initialize netCDF-4.
|
|
*
|
|
* @return ::NC_NOERR No error.
|
|
* @author Dennis Heimbigner
|
|
*/
|
|
int
|
|
NC4_initialize(void)
|
|
{
|
|
NC4_dispatch_table = &NC4_dispatcher;
|
|
#ifdef LOGGING
|
|
if(getenv(NCLOGLEVELENV) != NULL) {
|
|
char* slevel = getenv(NCLOGLEVELENV);
|
|
long level = atol(slevel);
|
|
if(level >= 0)
|
|
nc_set_log_level((int)level);
|
|
}
|
|
#endif
|
|
return NC_NOERR;
|
|
}
|
|
|
|
/**
|
|
* @internal Finalize netCDF-4.
|
|
*
|
|
* @return ::NC_NOERR No error.
|
|
* @author Dennis Heimbigner
|
|
*/
|
|
int
|
|
NC4_finalize(void)
|
|
{
|
|
return NC_NOERR;
|
|
}
|