netcdf-c/libsrc4/nc4dispatch.c

172 lines
3.3 KiB
C
Raw Normal View History

2010-06-03 21:24:43 +08:00
/*********************************************************************
* 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 $
*********************************************************************/
2011-09-26 18:14:55 +08:00
#include "config.h"
2010-06-03 21:24:43 +08:00
#include <stdlib.h>
#include "nc4dispatch.h"
Primary change: add dap4 support Specific changes: 1. Add dap4 code: libdap4 and dap4_test. Note that until the d4ts server problem is solved, dap4 is turned off. 2. Modify various files to support dap4 flags: configure.ac, Makefile.am, CMakeLists.txt, etc. 3. Add nc_test/test_common.sh. This centralizes the handling of the locations of various things in the build tree: e.g. where is ncgen.exe located. See nc_test/test_common.sh for details. 4. Modify .sh files to use test_common.sh 5. Obsolete separate oc2 by moving it to be part of netcdf-c. This means replacing code with netcdf-c equivalents. 5. Add --with-testserver to configure.ac to allow override of the servers to be used for --enable-dap-remote-tests. 6. There were multiple versions of nctypealignment code. Try to centralize in libdispatch/doffset.c and include/ncoffsets.h 7. Add a unit test for the ncuri code because of its complexity. 8. Move the findserver code out of libdispatch and into a separate, self contained program in ncdap_test and dap4_test. 9. Move the dispatch header files (nc{3,4}dispatch.h) to .../include because they are now shared by modules. 10. Revamp the handling of TOPSRCDIR and TOPBUILDDIR for shell scripts. 11. Make use of MREMAP if available 12. Misc. minor changes e.g. - #include <config.h> -> #include "config.h" - Add some no-install headers to /include - extern -> EXTERNL and vice versa as needed - misc header cleanup - clean up checking for misc. unix vs microsoft functions 13. Change copyright decls in some files to point to LICENSE file. 14. Add notes to RELEASENOTES.md
2017-03-09 08:01:10 +08:00
#include "nc.h"
2010-06-03 21:24:43 +08:00
2018-06-03 20:14:23 +08:00
/* If user-defined formats are in use, we need to declare their
* dispatch tables. */
#ifdef USE_UDF0
extern NC_Dispatch UDF0_DISPATCH;
#endif /* USE_UDF0 */
#ifdef USE_UDF1
extern NC_Dispatch UDF1_DISPATCH;
#endif /* USE_UDF1 */
2018-06-02 22:43:34 +08:00
#ifdef USE_NETCDF4
2018-06-03 20:14:23 +08:00
/* Pointers to dispatch tables for user-defined formats. */
2018-06-02 22:43:34 +08:00
extern NC_Dispatch *UDF0_dispatch_table;
extern NC_Dispatch *UDF1_dispatch_table;
#endif /* USE_NETCDF4 */
static NC_Dispatch NC4_dispatcher = {
2010-06-03 21:24:43 +08:00
2015-08-16 06:26:35 +08:00
NC_FORMATX_NC4,
2010-06-03 21:24:43 +08:00
NC4_create,
NC4_open,
NC4_redef,
NC4__enddef,
NC4_sync,
NC4_abort,
NC4_close,
NC4_set_fill,
NC_NOTNC3_inq_base_pe,
NC_NOTNC3_set_base_pe,
2010-06-03 21:24:43 +08:00
NC4_inq_format,
NC4_inq_format_extended,
2010-06-03 21:24:43 +08:00
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,
NC4_get_vars,
NC4_put_vars,
NCDEFAULT_get_varm,
NCDEFAULT_put_varm,
2010-06-03 21:24:43 +08:00
NC4_inq_var_all,
2013-03-16 04:31:07 +08:00
NC4_var_par_access,
2017-12-21 10:53:30 +08:00
NC4_def_var_fill,
2013-03-16 04:31:07 +08:00
#ifdef USE_NETCDF4
2010-06-03 21:24:43 +08:00
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,
2010-06-03 21:24:43 +08:00
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,
2010-06-03 21:24:43 +08:00
NC4_set_var_chunk_cache,
NC4_get_var_chunk_cache,
#endif
2010-06-03 21:24:43 +08:00
};
2011-09-21 01:30:02 +08:00
NC_Dispatch* NC4_dispatch_table = NULL; /* moved here from ddispatch.c */
2017-12-05 03:21:14 +08:00
/**
2018-06-02 22:43:34 +08:00
* @internal Initialize netCDF-4. If user-defined format(s) have been
* specified in configure, load their dispatch table(s).
2017-12-05 03:21:14 +08:00
*
* @return ::NC_NOERR No error.
* @author Dennis Heimbigner
*/
2010-06-03 21:24:43 +08:00
int
NC4_initialize(void)
{
2018-06-02 22:43:34 +08:00
int ret = NC_NOERR;
NC4_dispatch_table = &NC4_dispatcher;
#ifdef USE_UDF0
/* If user-defined format 0 was specified during configure, set up
* it's dispatch table. */
2018-06-03 20:14:23 +08:00
if ((ret = nc_def_user_format(NC_UDF0, UDF0_DISPATCH_FUNC, NULL)))
2018-06-02 22:43:34 +08:00
return ret;
#endif /* USE_UDF0 */
#ifdef USE_UDF1
/* If user-defined format 0 was specified during configure, set up
* it's dispatch table. */
2018-06-03 20:28:55 +08:00
if ((ret = nc_def_user_format(NC_UDF1F, &UDF1_DISPATCH_FUNC, NULL)))
2018-06-02 22:43:34 +08:00
return ret;
#endif /* USE_UDF0 */
#ifdef LOGGING
2018-06-02 22:43:34 +08:00
if(getenv(NCLOGLEVELENV) != NULL) {
char* slevel = getenv(NCLOGLEVELENV);
long level = atol(slevel);
if(level >= 0)
nc_set_log_level((int)level);
}
#endif
2018-06-02 22:43:34 +08:00
return ret;
2010-06-03 21:24:43 +08:00
}
2015-08-16 06:26:35 +08:00
2017-12-05 03:21:14 +08:00
/**
* @internal Finalize netCDF-4.
*
* @return ::NC_NOERR No error.
* @author Dennis Heimbigner
*/
2015-08-16 06:26:35 +08:00
int
NC4_finalize(void)
{
return NC_NOERR;
}