2018-11-26 05:35:44 -07:00
|
|
|
/* Copyright 2005-2018 University Corporation for Atmospheric
|
|
|
|
Research/Unidata. */
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @internal This header file contains libsrc4 dispatch
|
|
|
|
* initialization, user-defined format, and logging prototypes and
|
|
|
|
* macros.
|
|
|
|
*
|
|
|
|
* @author Dennis Heimbigner, Ed Hartnett
|
2019-02-19 05:55:36 -07:00
|
|
|
*/
|
2010-06-03 13:24:43 +00:00
|
|
|
|
2011-09-26 10:14:55 +00:00
|
|
|
#include "config.h"
|
2010-06-03 13:24:43 +00:00
|
|
|
#include <stdlib.h>
|
2020-02-16 12:59:33 -07:00
|
|
|
#include "netcdf.h"
|
2018-10-30 20:48:12 -06:00
|
|
|
#include "nc4internal.h"
|
2010-06-03 13:24:43 +00:00
|
|
|
#include "nc4dispatch.h"
|
2017-03-08 17:01:10 -07:00
|
|
|
#include "nc.h"
|
2010-06-03 13:24:43 +00:00
|
|
|
|
2018-06-03 06:14:23 -06: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 */
|
|
|
|
|
2024-09-30 14:39:48 -06:00
|
|
|
extern int nc_plugin_path_initialize(void);
|
|
|
|
extern int nc_plugin_path_finalize(void);
|
|
|
|
|
2017-12-04 12:21:14 -07:00
|
|
|
/**
|
2018-06-02 08:43:34 -06:00
|
|
|
* @internal Initialize netCDF-4. If user-defined format(s) have been
|
|
|
|
* specified in configure, load their dispatch table(s).
|
2017-12-04 12:21:14 -07:00
|
|
|
*
|
|
|
|
* @return ::NC_NOERR No error.
|
|
|
|
* @author Dennis Heimbigner
|
|
|
|
*/
|
2010-06-03 13:24:43 +00:00
|
|
|
int
|
|
|
|
NC4_initialize(void)
|
|
|
|
{
|
2019-02-19 05:55:36 -07:00
|
|
|
int ret = NC_NOERR;
|
2018-10-30 20:48:12 -06:00
|
|
|
|
2018-06-02 08:43:34 -06:00
|
|
|
#ifdef USE_UDF0
|
2019-02-19 05:55:36 -07:00
|
|
|
/* If user-defined format 0 was specified during configure, set up
|
|
|
|
* it's dispatch table. */
|
|
|
|
if ((ret = nc_def_user_format(NC_UDF0, UDF0_DISPATCH_FUNC, NULL)))
|
|
|
|
return ret;
|
2018-06-02 08:43:34 -06:00
|
|
|
#endif /* USE_UDF0 */
|
2019-02-19 05:55:36 -07:00
|
|
|
|
2018-06-02 08:43:34 -06:00
|
|
|
#ifdef USE_UDF1
|
2019-02-19 05:55:36 -07:00
|
|
|
/* If user-defined format 0 was specified during configure, set up
|
|
|
|
* it's dispatch table. */
|
|
|
|
if ((ret = nc_def_user_format(NC_UDF1F, &UDF1_DISPATCH_FUNC, NULL)))
|
|
|
|
return ret;
|
2018-06-02 08:43:34 -06:00
|
|
|
#endif /* USE_UDF0 */
|
2019-02-19 05:55:36 -07:00
|
|
|
|
2018-03-16 11:46:18 -06:00
|
|
|
#ifdef LOGGING
|
2019-02-19 05:55:36 -07:00
|
|
|
if(getenv(NCLOGLEVELENV) != NULL) {
|
|
|
|
char* slevel = getenv(NCLOGLEVELENV);
|
|
|
|
long level = atol(slevel);
|
2024-05-15 18:46:25 -06:00
|
|
|
#ifdef USE_NETCDF4
|
2019-02-19 05:55:36 -07:00
|
|
|
if(level >= 0)
|
|
|
|
nc_set_log_level((int)level);
|
|
|
|
}
|
2018-03-16 11:46:18 -06:00
|
|
|
#endif
|
2024-05-15 18:46:25 -06:00
|
|
|
#endif
|
2024-09-30 14:39:48 -06:00
|
|
|
|
|
|
|
#if defined(USE_HDF5) || defined(NETCDF_ENABLE_NCZARR)
|
|
|
|
nc_plugin_path_initialize();
|
|
|
|
#endif
|
|
|
|
|
2024-05-15 18:46:25 -06:00
|
|
|
NC_initialize_reserved();
|
2019-02-19 05:55:36 -07:00
|
|
|
return ret;
|
2010-06-03 13:24:43 +00:00
|
|
|
}
|
2015-08-15 16:26:35 -06:00
|
|
|
|
2017-12-04 12:21:14 -07:00
|
|
|
/**
|
|
|
|
* @internal Finalize netCDF-4.
|
|
|
|
*
|
|
|
|
* @return ::NC_NOERR No error.
|
|
|
|
* @author Dennis Heimbigner
|
|
|
|
*/
|
2015-08-15 16:26:35 -06:00
|
|
|
int
|
|
|
|
NC4_finalize(void)
|
|
|
|
{
|
2024-09-30 14:39:48 -06:00
|
|
|
#if defined(USE_HDF5) || defined(NETCDF_ENABLE_NCZARR)
|
|
|
|
nc_plugin_path_finalize();
|
|
|
|
#endif
|
2015-08-15 16:26:35 -06:00
|
|
|
return NC_NOERR;
|
|
|
|
}
|