mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
8072d1f6bb
re: issue https://github.com/Unidata/netcdf-c/issues/1151 Modify DAP2 and DAP4 code to handle case when _FillValue type is not same as the parent variable type. Specifically: 1. Define a parameter [fillmismatch] to allow this mismatch; default is to disallow. 2. If allowed, forcibly change the type of the _FillValue to match the parent variable. 3. If allowed Convert the values to match new type 4. Generate a log message 5. if not allowed, then fail Implementing this required some changes to ncdap_test/dapcvt.c Also added test cases. Minor Unrelated Changes: 1. There were a number of warnings about e.g. assigning a const char* to a char*. Fix these 2. In nccopy.1, replace .NP with .IP "n" (re PR https://github.com/Unidata/netcdf-c/pull/1144) 3. fix minor error in ncdump/ocprint
61 lines
2.1 KiB
C
61 lines
2.1 KiB
C
/*********************************************************************
|
|
* Copyright 1993, UCAR/Unidata
|
|
* See netcdf/COPYRIGHT file for copying and redistribution conditions.
|
|
*********************************************************************/
|
|
|
|
#ifndef NCDAP_H
|
|
#define NCDAP_H 1
|
|
|
|
#ifndef nullfree
|
|
#define nullfree(m) {if((m)!=NULL) {free(m);} else {}}
|
|
#endif
|
|
|
|
/**************************************************/
|
|
/*
|
|
Collect single bit flags that
|
|
affect the operation of the system.
|
|
*/
|
|
|
|
typedef unsigned int NCFLAGS;
|
|
# define SETFLAG(controls,flag) (((controls).flags) |= (flag))
|
|
# define CLRFLAG(controls,flag) (((controls).flags) &= ~(flag))
|
|
# define FLAGSET(controls,flag) (((controls.flags) & (flag)) != 0)
|
|
|
|
/* Defined flags */
|
|
#define NCF_NC3 (0x0001) /* DAP->netcdf-3 */
|
|
#define NCF_NC4 (0x0002) /* DAP->netcdf-4 */
|
|
#define NCF_NCDAP (0x0004) /* Do libnc-dap mimic */
|
|
#define NCF_CACHE (0x0008) /* Cache enabled/disabled */
|
|
#define NCF_UPGRADE (0x0010) /* Do proper type upgrades */
|
|
#define NCF_UNCONSTRAINABLE (0x0020) /* Not a constrainable URL */
|
|
#define NCF_SHOWFETCH (0x0040) /* show fetch calls */
|
|
#define NCF_ONDISK (0x0080) /* cause oc to store data on disk */
|
|
#define NCF_WHOLEVAR (0x0100) /* retrieve only whole variables (as opposed to partial variable) into cache */
|
|
#define NCF_PREFETCH (0x0200) /* Cache prefetch enabled/disabled */
|
|
#define NCF_PREFETCH_EAGER (0x0400) /* Do eager prefetch; 0=>lazy */
|
|
#define NCF_PREFETCH_ALL (0x0800) /* Prefetch all variables */
|
|
/* Allow _FillValue/Variable type mismatch */
|
|
#define NCF_FILLMISMATCH (0x1000)
|
|
/*COLUMBIA_HACK*/
|
|
#define NCF_COLUMBIA (0x80000000) /* Hack for columbia server */
|
|
|
|
/* Define all the default on flags */
|
|
#define DFALT_ON_FLAGS (NCF_CACHE|NCF_PREFETCH)
|
|
|
|
typedef struct NCCONTROLS {
|
|
NCFLAGS flags;
|
|
} NCCONTROLS;
|
|
|
|
/* Misc. Constants */
|
|
|
|
#ifndef DFALTPACKETSIZE
|
|
#define DFALTPACKETSIZE 0x20000 /*approximately 100k bytes*/
|
|
#endif
|
|
|
|
#ifndef DFALTUSERAGENT
|
|
#define DFALTUSERAGENT "netCDF"
|
|
#endif
|
|
|
|
#endif /*NCDAP_H*/
|
|
|