mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
11fe00ea05
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'
248 lines
5.2 KiB
C
Executable File
248 lines
5.2 KiB
C
Executable File
/*
|
|
Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
and Contributors.
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdarg.h>
|
|
#include <assert.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
#include "cpoco.h"
|
|
|
|
/* Possible names of the test shared library */
|
|
static const char* SHAREDLIBS[] = {
|
|
"./libcpt.so",
|
|
"./cygcpt.dll",
|
|
"./cpt.dll",
|
|
"./.libs/libcpt.so",
|
|
"./.libs/cygcpt.dll",
|
|
"./.libs/cpt.dll",
|
|
"./.libs/cygcpt-0.dll",
|
|
NULL};
|
|
|
|
typedef int (*GimmeFiveFunc)();
|
|
|
|
#define CHECK(err) check(CE_ERR,0,__LINE__,__FILE__,(err))
|
|
#define CHECKNO(err) check(CE_ERR,1,__LINE__,__FILE__,(err))
|
|
#define CHECKBOOL(b) check(CE_BOOL,0,__LINE__,__FILE__,(b))
|
|
#define CHECKNOBOOL(b) check(CE_BOOL,1,__LINE__,__FILE__,(b))
|
|
#define CHECKSTR(s1,s2) check(CE_STR,0,__LINE__,__FILE__,(s1),(s2))
|
|
#define CHECKSYM(sym) check(CE_SYM,0,__LINE__,__FILE__,(sym))
|
|
#define CHECKNOSYM(sym) check(CE_SYM,1,__LINE__,__FILE__,(sym))
|
|
|
|
enum CE {
|
|
CE_ERR,
|
|
CE_BOOL,
|
|
CE_STR,
|
|
CE_SYM,
|
|
};
|
|
|
|
static void
|
|
check(enum CE ce, int invert, int lineno, const char* file, ...)
|
|
{
|
|
va_list args;
|
|
va_start (args,file);
|
|
int err;
|
|
char* s1;
|
|
char* s2;
|
|
void* sym;
|
|
|
|
switch (ce) {
|
|
case CE_ERR:
|
|
err = va_arg(args,int);
|
|
if((!invert && err != CP_OK) || (invert && err == CP_OK)) {
|
|
fprintf(stderr,"(%s:%d): %s\n",file,lineno,cperrstr(err));
|
|
goto fail;
|
|
}
|
|
break;
|
|
case CE_BOOL:
|
|
err = va_arg(args,int);
|
|
if((err && invert) || (!err && !invert)) {
|
|
fprintf(stderr,"(%s:%d): boolean fail\n",file,lineno);
|
|
goto fail;
|
|
}
|
|
break;
|
|
case CE_STR:
|
|
s1 = va_arg(args,char*);
|
|
s2 = va_arg (args,char*);
|
|
if(s1 == NULL) s1 = "null";
|
|
if(s2 == NULL) s2 = "null";
|
|
if((!invert && strcmp(s1,s2) != 0) || (invert && strcmp(s1,s2) == 0)) {
|
|
fprintf(stderr,"(%s:%d): mismatch: %s::%s \n",file,lineno,s1,s2);
|
|
goto fail;
|
|
}
|
|
break;
|
|
case CE_SYM:
|
|
sym = va_arg(args,void*);
|
|
if((!invert && sym == NULL) || (invert && sym != NULL)) {
|
|
fprintf(stderr,"(%s:%d): get symbol failure\n",file,lineno);
|
|
goto fail;
|
|
}
|
|
break;
|
|
default: abort();
|
|
}
|
|
va_end (args); // clean up the system stack
|
|
return;
|
|
fail:
|
|
exit(1);
|
|
}
|
|
|
|
static void
|
|
test1(const char* path)
|
|
{
|
|
SharedLib* sl = NULL;
|
|
void* p1;
|
|
|
|
CHECK(cpsharedlibnew(&sl));
|
|
CHECK(cpload(sl,path,0));
|
|
CHECKBOOL(cpisloaded(sl));
|
|
CHECKNO(cpload(sl,path,0));
|
|
CHECKSTR(cpgetpath(sl),path);
|
|
CHECKBOOL(cpisloaded(sl));
|
|
CHECKSYM(cpgetsymbol(sl,"gimmeFive"));
|
|
CHECKNOSYM(cpgetsymbol(sl,"fooBar123"));
|
|
|
|
p1 = cpgetsymbol(sl,"pocoBuildManifest");
|
|
CHECK((p1 != NULL));
|
|
|
|
p1 = cpgetsymbol(sl,"fooBar123");
|
|
cpunload(sl);
|
|
CHECKNOBOOL(cpisloaded(sl));
|
|
}
|
|
|
|
static void
|
|
test2(const char* path)
|
|
{
|
|
SharedLib* sl = NULL;
|
|
GimmeFiveFunc gimmeFive;
|
|
|
|
CHECK(cpsharedlibnew(&sl));
|
|
CHECK(cpload(sl,path,0));
|
|
CHECKSTR(cpgetpath(sl),path);
|
|
CHECKBOOL(cpisloaded(sl));
|
|
|
|
gimmeFive = (GimmeFiveFunc) cpgetsymbol(sl,"gimmeFive");
|
|
CHECKSYM(gimmeFive);
|
|
CHECKBOOL((gimmeFive() == 5));
|
|
CHECK(cpunload(sl));
|
|
CHECKNOBOOL(cpisloaded(sl));
|
|
}
|
|
|
|
static void
|
|
test3(const char* path)
|
|
{
|
|
SharedLib* sl = NULL;
|
|
|
|
CHECK(cpsharedlibnew(&sl));
|
|
CHECK(cpload(sl,path,0));
|
|
CHECKSTR(cpgetpath(sl),path);
|
|
CHECKBOOL(cpisloaded(sl));
|
|
CHECKNO(cpload(sl,"NoSuchLibrary",0));
|
|
CHECKBOOL(cpisloaded(sl));
|
|
CHECKNO(cpload(sl,path,0));
|
|
CHECKBOOL(cpisloaded(sl));
|
|
CHECKNO(cpload(sl,path,0));
|
|
CHECKBOOL(cpisloaded(sl));
|
|
CHECK(cpunload(sl));
|
|
CHECKNOBOOL(cpisloaded(sl));
|
|
}
|
|
|
|
static char*
|
|
abspath(const char* prefixpath, const char* relpath)
|
|
{
|
|
char* full = NULL;
|
|
if(prefixpath == NULL) {
|
|
#ifdef _MSC_VER
|
|
full = _fullpath(NULL,relpath,8192);
|
|
#else
|
|
full = realpath(relpath, NULL);
|
|
#endif
|
|
} else { /* concatenate */
|
|
full = malloc(strlen(prefixpath)+strlen(relpath)+2);
|
|
strcpy(full,prefixpath);
|
|
#ifdef _MSC_VER
|
|
strcat(full,"\\");
|
|
#else
|
|
strcat(full,"/");
|
|
#endif
|
|
strcat(full,relpath);
|
|
}
|
|
fprintf(stderr,"abspath=%s\n",full);
|
|
return full;
|
|
}
|
|
|
|
static const char*
|
|
findlib(const char* prefixpath)
|
|
{
|
|
char* path;
|
|
const char** p;
|
|
for(p=SHAREDLIBS;*p;p++) {
|
|
FILE* f;
|
|
path = abspath(prefixpath,*p);
|
|
if(path == NULL) continue;
|
|
f = fopen(path,"r");
|
|
fprintf(stderr,"findlib: trying %s\n",path);
|
|
if(f != NULL) {
|
|
fclose(f);
|
|
return *p;
|
|
}
|
|
}
|
|
fprintf(stderr,"findlib: failed\n");
|
|
return NULL;
|
|
}
|
|
|
|
|
|
int
|
|
main(int argc, char** argv)
|
|
{
|
|
const char* prefixpath = NULL;
|
|
const char* relpath = NULL;
|
|
const char* path = NULL;
|
|
|
|
switch (argc) {
|
|
default:
|
|
case 3:
|
|
relpath = argv[2];
|
|
/* fall thru */
|
|
case 2:
|
|
prefixpath = argv[1];
|
|
break;
|
|
case 1:
|
|
case 0:
|
|
break;
|
|
}
|
|
|
|
if(prefixpath == NULL) {
|
|
fprintf(stderr,"No prefix path specified\n");
|
|
return 1;
|
|
}
|
|
|
|
if(relpath == NULL)
|
|
relpath = findlib(prefixpath);
|
|
|
|
if(relpath == NULL) {
|
|
fprintf(stderr,"No dynamic test library specified\n");
|
|
return 1;
|
|
}
|
|
|
|
path = abspath(prefixpath,relpath);
|
|
|
|
if(path == NULL) {
|
|
fprintf(stderr,"Cannot locate dynamic test library: %s\n",relpath);
|
|
exit(1);
|
|
}
|
|
|
|
printf("Using shared test library: %s\n",path);
|
|
|
|
test1(path);
|
|
test2(path);
|
|
test3(path);
|
|
return 0;
|
|
}
|