mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-05 16:20:10 +08:00
Filter support has three goals: 1. Use the existing HDF5 filter implementations, 2. Allow filter metadata to be stored in the NumCodecs metadata format used by Zarr, 3. Allow filters to be used even when HDF5 is disabled Detailed usage directions are define in docs/filters.md. For now, the existing filter API is left in place. So filters are defined using ''nc_def_var_filter'' using the HDF5 style where the id and parameters are unsigned integers. This is a big change since filters affect many parts of the code. In the following, the terms "compressor" and "filter" and "codec" are generally used synonomously. ### Filter-Related Changes: * In order to support dynamic loading of shared filter libraries, a new library was added in the libncpoco directory; it helps to isolate dynamic loading across multiple platforms. * Provide a json parsing library for use by plugins; this is created by merging libdispatch/ncjson.c with include/ncjson.h. * Add a new _Codecs attribute to allow clients to see what codecs are being used; let ncdump -s print it out. * Provide special headers to help support compilation of HDF5 filters when HDF5 is not enabled: netcdf_filter_hdf5_build.h and netcdf_filter_build.h. * Add a number of new test to test the new nczarr filters. * Let ncgen parse _Codecs attribute, although it is ignored. ### Plugin directory changes: * Add support for the Blosc compressor; this is essential because it is the most common compressor used in Zarr datasets. This also necessitated adding a CMake FindBlosc.cmake file * Add NCZarr support for the big-four filters provided by HDF5: shuffle, fletcher32, deflate (zlib), and szip * Add a Codec defaulter (see docs/filters.md) for the big four filters. * Make plugins work with windows by properly adding __declspec declaration. ### Misc. Non-Filter Changes * Replace most uses of USE_NETCDF4 (deprecated) with USE_HDF5. * Improve support for caching * More fixes for path conversion code * Fix misc. memory leaks * Add new utility -- ncdump/ncpathcvt -- that does more or less the same thing as cygpath. * Add a number of new test to test the non-filter fixes. * Update the parsers * Convert most instances of '#ifdef _MSC_VER' to '#ifdef _WIN32'
71 lines
2.0 KiB
C
71 lines
2.0 KiB
C
/* Copyright 2018, UCAR/Unidata and OPeNDAP, Inc.
|
|
See the COPYRIGHT file for more information. */
|
|
#ifndef NCLIST_H
|
|
#define NCLIST_H 1
|
|
|
|
#include "ncexternl.h"
|
|
|
|
/* Define the type of the elements in the list*/
|
|
|
|
#if defined(_CPLUSPLUS_) || defined(__CPLUSPLUS__)
|
|
extern "C" {
|
|
#endif
|
|
|
|
EXTERNL int nclistnull(void*);
|
|
|
|
typedef struct NClist {
|
|
size_t alloc;
|
|
size_t length;
|
|
void** content;
|
|
} NClist;
|
|
|
|
EXTERNL NClist* nclistnew(void);
|
|
EXTERNL int nclistfree(NClist*);
|
|
EXTERNL int nclistfreeall(NClist*);
|
|
EXTERNL int nclistclearall(NClist*);
|
|
EXTERNL int nclistsetalloc(NClist*,size_t);
|
|
EXTERNL int nclistsetlength(NClist*,size_t);
|
|
|
|
/* Set the ith element; will overwrite previous contents; expand if needed */
|
|
EXTERNL int nclistset(NClist*,size_t,void*);
|
|
/* Get value at position i */
|
|
EXTERNL void* nclistget(NClist*,size_t);/* Return the ith element of l */
|
|
/* Insert at position i; will push up elements i..|seq|. */
|
|
EXTERNL int nclistinsert(NClist*,size_t,void*);
|
|
/* Remove element at position i; will move higher elements down */
|
|
EXTERNL void* nclistremove(NClist* l, size_t i);
|
|
|
|
/* Tail operations */
|
|
EXTERNL int nclistpush(NClist*,const void*); /* Add at Tail */
|
|
EXTERNL void* nclistpop(NClist*);
|
|
EXTERNL void* nclisttop(NClist*);
|
|
|
|
/* Look for pointer match */
|
|
EXTERNL int nclistcontains(NClist*, void*);
|
|
|
|
/* Look for value match as string */
|
|
EXTERNL int nclistmatch(NClist*, const char*, int casesensistive);
|
|
|
|
/* Remove element by value; only removes first encountered */
|
|
EXTERNL int nclistelemremove(NClist* l, void* elem);
|
|
|
|
/* remove duplicates */
|
|
EXTERNL int nclistunique(NClist*);
|
|
|
|
/* Create a clone of a list; if deep, then assume it is a list of strings */
|
|
EXTERNL NClist* nclistclone(NClist*, int deep);
|
|
|
|
EXTERNL void* nclistextract(NClist*);
|
|
|
|
/* Following are always "in-lined"*/
|
|
#define nclistclear(l) nclistsetlength((l),0)
|
|
#define nclistextend(l,len) nclistsetalloc((l),(len)+(l->alloc))
|
|
#define nclistcontents(l) ((l)==NULL?NULL:(l)->content)
|
|
#define nclistlength(l) ((l)==NULL?0:(l)->length)
|
|
|
|
#if defined(_CPLUSPLUS_) || defined(__CPLUSPLUS__)
|
|
}
|
|
#endif
|
|
|
|
#endif /*NCLIST_H*/
|