mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
6ae3289701
## Overwriting I think I solved the file overwrite problem by doing light name mangling of the shared library names. With this change the probabilty is very small that installing our filter wrappers in a directory will overwrite code produced by others. ## Default Install Location I have setup the --with-plugin-dir option default to install in the following locations in order of preference 1. If HDF5_PLUGIN_PATH is defined (at build time remember), then the last directory in that path will be where the filter wrapper shared libraries will be installed. 2. Otherwise the default is "/usr/local/hdf5/lib/plugin" (on *nix*) or "%ALLUSERSPROFILE%\\hdf5\\lib\\plugin" for Windows or Mingw. Currently, --with-plugin-dir is disabled by default. I should note that even if I enable it by default, installing netcdf-c will still not run "out of the box" because the hypothetical naive user will not know which compressor libraries need to be pre-installed before netcdf is installed. Nor will that user have any way to find out what needs to be installed.
43 lines
1.5 KiB
C
43 lines
1.5 KiB
C
/* Copyright 2018-2018 University Corporation for Atmospheric
|
|
Research/Unidata. */
|
|
|
|
/**
|
|
* @file This header file containsfilter related macros, types, and prototypes for
|
|
* the filter code in libnczarr. This header should not be included in
|
|
* code outside libnczarr.
|
|
*
|
|
* @author Dennis Heimbigner
|
|
*/
|
|
|
|
#ifndef ZFILTER_H
|
|
#define ZFILTER_H
|
|
|
|
/* zfilter.c */
|
|
/* Dispatch functions are also in zfilter.c */
|
|
/* Filterlist management */
|
|
|
|
/*Mnemonic*/
|
|
#define ENCODING 1
|
|
|
|
/* list of environment variables to check for plugin roots */
|
|
#define PLUGIN_ENV "HDF5_PLUGIN_PATH"
|
|
#define PLUGIN_DIR_UNIX "/usr/local/hdf5/plugin"
|
|
#define PLUGIN_DIR_WIN "%s/hdf5/lib/plugin"
|
|
#define WIN32_ROOT_ENV "ALLUSERSPROFILE"
|
|
|
|
/* Opaque */
|
|
struct NCZ_Filter;
|
|
|
|
int NCZ_filter_initialize(void);
|
|
int NCZ_filter_finalize(void);
|
|
int NCZ_addfilter(NC_FILE_INFO_T*, NC_VAR_INFO_T* var, unsigned int id, size_t nparams, const unsigned int* params);
|
|
int NCZ_filter_setup(NC_VAR_INFO_T* var);
|
|
int NCZ_filter_freelists(NC_VAR_INFO_T* var);
|
|
int NCZ_codec_freelist(NCZ_VAR_INFO_T* zvar);
|
|
int NCZ_applyfilterchain(const NC_FILE_INFO_T*, NC_VAR_INFO_T*, NClist* chain, size_t insize, void* indata, size_t* outlen, void** outdata, int encode);
|
|
int NCZ_filter_jsonize(const NC_FILE_INFO_T*, const NC_VAR_INFO_T*, struct NCZ_Filter* filter, struct NCjson**);
|
|
int NCZ_filter_build(const NC_FILE_INFO_T*, NC_VAR_INFO_T* var, const NCjson* jfilter, int chainindex);
|
|
int NCZ_codec_attr(const NC_VAR_INFO_T* var, size_t* lenp, void* data);
|
|
|
|
#endif /*ZFILTER_H*/
|