File: nc4dispatch.c

package info (click to toggle)
netcdf-parallel 1%3A4.9.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 116,192 kB
  • sloc: ansic: 279,265; sh: 14,143; cpp: 5,971; yacc: 2,612; makefile: 2,075; lex: 1,218; javascript: 280; xml: 173; awk: 2
file content (89 lines) | stat: -rw-r--r-- 2,081 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* 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
 */

#include "config.h"
#include <stdlib.h>
#include "netcdf.h"
#include "nc4internal.h"
#include "nc4dispatch.h"
#include "nc.h"

/* 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 */

extern int nc_plugin_path_initialize(void);
extern int nc_plugin_path_finalize(void);
    
/**
 * @internal Initialize netCDF-4. If user-defined format(s) have been
 * specified in configure, load their dispatch table(s).
 *
 * @return ::NC_NOERR No error.
 * @author Dennis Heimbigner
 */
int
NC4_initialize(void)
{
    int ret = NC_NOERR;

#ifdef USE_UDF0
    /* 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;
#endif /* USE_UDF0 */

#ifdef USE_UDF1
    /* 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;
#endif /* USE_UDF0 */

#ifdef LOGGING
    if(getenv(NCLOGLEVELENV) != NULL) {
        char* slevel = getenv(NCLOGLEVELENV);
        long level = atol(slevel);
#ifdef USE_NETCDF4
        if(level >= 0)
            nc_set_log_level((int)level);
    }
#endif
#endif

#if defined(USE_HDF5) || defined(NETCDF_ENABLE_NCZARR)
    nc_plugin_path_initialize();
#endif

    NC_initialize_reserved();
    return ret;
}

/**
 * @internal Finalize netCDF-4.
 *
 * @return ::NC_NOERR No error.
 * @author Dennis Heimbigner
 */
int
NC4_finalize(void)
{
#if defined(USE_HDF5) || defined(NETCDF_ENABLE_NCZARR)
    nc_plugin_path_finalize();
#endif
    return NC_NOERR;
}