mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-27 08:49:16 +08:00
9380790ea8
re: The current netcdf-c release has some problems with the mingw platform on windows. Mostly they are path issues. Changes to support mingw+msys2: ------------------------------- * Enable option of looking into the windows registry to find the mingw root path. In aid of proper path handling. * Add mingw+msys as a specific platform in configure.ac and move testing of the platform to the front so it is available early. * Handle mingw X libncpoco (dynamic loader) properly even though mingw does not yet support it. * Handle mingw X plugins properly even though mingw does not yet support it. * Alias pwd='pwd -W' to better handle paths in shell scripts. * Plus a number of other minor compile irritations. * Disallow the use of multiple nc_open's on the same file for windows (and mingw) because windows does not seem to handle these properly. Not sure why we did not catch this earlier. * Add mountpoint info to dpathmgr.c to help support mingw. * Cleanup dpathmgr conversions. Known problems: --------------- * I have not been able to get shared libraries to work, so plugins/filters must be disabled. * There is some kind of problem with libcurl that I have not solved, so all uses of libcurl (currently DAP+Byterange) must be disabled. Misc. other fixes: ------------------ * Cleanup the relationship between ENABLE_PLUGINS and various other flags in CMakeLists.txt and configure.ac. * Re-arrange the TESTDIRS order in Makefile.am. * Add pseudo-breakpoint to nclog.[ch] for debugging. * Improve the documentation of the path manager code in ncpathmgr.h * Add better support for relative paths in dpathmgr.c * Default the mode args to NCfopen to include "b" (binary) for windows. * Add optional debugging output in various places. * Make sure that everything builds with plugins disabled. * Fix numerous (s)printf inconsistencies betweenb the format spec and the arguments.
199 lines
4.0 KiB
C
199 lines
4.0 KiB
C
/* Copyright 2005-2018 University Corporation for Atmospheric
|
|
Research/Unidata. */
|
|
|
|
/**
|
|
* @file
|
|
* @internal This header file contains prototypes and initialization
|
|
* for the ZARR dispatch layer.
|
|
*
|
|
* @author Dennis Heimbigner, Ed Hartnett
|
|
*/
|
|
|
|
#include "zincludes.h"
|
|
|
|
/* Forward */
|
|
static int NCZ_var_par_access(int ncid, int varid, int par_access);
|
|
static int NCZ_show_metadata(int ncid);
|
|
|
|
static const NC_Dispatch NCZ_dispatcher = {
|
|
|
|
NC_FORMATX_NCZARR,
|
|
NC_DISPATCH_VERSION,
|
|
|
|
NCZ_create,
|
|
NCZ_open,
|
|
|
|
NCZ_redef,
|
|
NCZ__enddef,
|
|
NCZ_sync,
|
|
NCZ_abort,
|
|
NCZ_close,
|
|
NCZ_set_fill,
|
|
NC4_inq_format,
|
|
NCZ_inq_format_extended,
|
|
|
|
NCZ_inq,
|
|
NC4_inq_type,
|
|
|
|
NCZ_def_dim,
|
|
NC4_inq_dimid,
|
|
NCZ_inq_dim,
|
|
NC4_inq_unlimdim,
|
|
NCZ_rename_dim,
|
|
|
|
NCZ_inq_att,
|
|
NCZ_inq_attid,
|
|
NC4_inq_attname,
|
|
NCZ_rename_att,
|
|
NCZ_del_att,
|
|
NCZ_get_att,
|
|
NCZ_put_att,
|
|
|
|
NCZ_def_var,
|
|
NC4_inq_varid,
|
|
NCZ_rename_var,
|
|
NCZ_get_vara,
|
|
NCZ_put_vara,
|
|
NCZ_get_vars,
|
|
NCZ_put_vars,
|
|
NCDEFAULT_get_varm,
|
|
NCDEFAULT_put_varm,
|
|
|
|
NCZ_inq_var_all,
|
|
|
|
NCZ_var_par_access,
|
|
NCZ_def_var_fill,
|
|
|
|
NCZ_show_metadata,
|
|
NCZ_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,
|
|
NCZ_inq_type_equal,
|
|
NCZ_def_grp,
|
|
NCZ_rename_grp,
|
|
NC4_inq_user_type,
|
|
NC4_inq_typeid,
|
|
|
|
NC_NOTNC4_def_compound,
|
|
NC_NOTNC4_insert_compound,
|
|
NC_NOTNC4_insert_array_compound,
|
|
NC_NOTNC4_inq_compound_field,
|
|
NC_NOTNC4_inq_compound_fieldindex,
|
|
NC_NOTNC4_def_vlen,
|
|
NC_NOTNC4_put_vlen_element,
|
|
NC_NOTNC4_get_vlen_element,
|
|
NC_NOTNC4_def_enum,
|
|
NC_NOTNC4_insert_enum,
|
|
NC_NOTNC4_inq_enum_member,
|
|
NC_NOTNC4_inq_enum_ident,
|
|
NC_NOTNC4_def_opaque,
|
|
NCZ_def_var_deflate,
|
|
NCZ_def_var_fletcher32,
|
|
NCZ_def_var_chunking,
|
|
NCZ_def_var_endian,
|
|
NCZ_def_var_filter,
|
|
NCZ_set_var_chunk_cache,
|
|
NC4_get_var_chunk_cache,
|
|
NCZ_inq_var_filter_ids,
|
|
NCZ_inq_var_filter_info,
|
|
NC_NOTNC4_def_var_quantize,
|
|
NC_NOTNC4_inq_var_quantize,
|
|
};
|
|
|
|
const NC_Dispatch* NCZ_dispatch_table = NULL; /* moved here from ddispatch.c */
|
|
|
|
#ifdef ZTRACING
|
|
#include "ztracedispatch.h"
|
|
#endif
|
|
|
|
/**
|
|
* @internal Initialize the ZARR dispatch layer.
|
|
*
|
|
* @return ::NC_NOERR No error.
|
|
* @author Dennis Heimbigner, Ed Hartnett
|
|
*/
|
|
int ncz_initialized = 0; /**< True if initialization has happened. */
|
|
|
|
int
|
|
NCZ_initialize(void)
|
|
{
|
|
int stat;
|
|
NCZ_dispatch_table = &NCZ_dispatcher;
|
|
#ifdef ZTRACING
|
|
NCZ_dispatch_table = &NCZ_dispatcher_trace;
|
|
#endif
|
|
if (!ncz_initialized)
|
|
NCZ_initialize_internal();
|
|
stat = NCZ_provenance_init();
|
|
if(stat) ncz_initialized = 1;
|
|
return stat;
|
|
}
|
|
|
|
/**
|
|
* @internal Finalize the ZARR dispatch layer.
|
|
*
|
|
* @return ::NC_NOERR No error.
|
|
* @author Dennis Heimbigner
|
|
*/
|
|
int
|
|
NCZ_finalize(void)
|
|
{
|
|
NCZ_finalize_internal();
|
|
NCZ_provenance_finalize();
|
|
return NC_NOERR;
|
|
}
|
|
|
|
static int
|
|
NCZ_var_par_access(int ncid, int varid, int par_access)
|
|
{
|
|
return NC_NOERR; /* no-op */
|
|
}
|
|
|
|
static int
|
|
NCZ_show_metadata(int ncid)
|
|
{
|
|
return NC_NOERR;
|
|
}
|
|
|
|
#ifndef ENABLE_NCZARR_FILTERS
|
|
int
|
|
NCZ_def_var_filter(int ncid, int varid, unsigned int id , size_t n , const unsigned int *params)
|
|
{
|
|
NC_UNUSED(ncid);
|
|
NC_UNUSED(varid);
|
|
NC_UNUSED(id);
|
|
NC_UNUSED(n);
|
|
NC_UNUSED(params);
|
|
return REPORT(NC_NOERR,"def_var_filter");
|
|
}
|
|
|
|
int
|
|
NCZ_inq_var_filter_ids(int ncid, int varid, size_t* nfilters, unsigned int* filterids)
|
|
{
|
|
NC_UNUSED(ncid);
|
|
NC_UNUSED(varid);
|
|
NC_UNUSED(filterids);
|
|
if(nfilters) *nfilters = 0;
|
|
return REPORT(NC_NOERR,"inq_var_filter_ids");
|
|
}
|
|
|
|
int
|
|
NCZ_inq_var_filter_info(int ncid, int varid, unsigned int id, size_t* nparams, unsigned int* params)
|
|
{
|
|
NC_UNUSED(ncid);
|
|
NC_UNUSED(varid);
|
|
NC_UNUSED(id);
|
|
NC_UNUSED(nparams);
|
|
NC_UNUSED(params);
|
|
return REPORT(NC_ENOFILTER,"inq_var_filter_info");
|
|
}
|
|
#endif /*ENABLE_NCZARR_FILTERS*/
|