#include "config.h" #include #include #include #include #include #include "netcdf_filter_build.h" #include "h5misc.h" /* WARNING: Starting with HDF5 version 1.10.x, the plugin code MUST be careful when using the standard *malloc()*, *realloc()*, and *free()* function. In the event that the code is allocating, reallocating, for free'ing memory that either came from or will be exported to the calling HDF5 library, then one MUST use the corresponding HDF5 functions *H5allocate_memory()*, *H5resize_memory()*, *H5free_memory()* [5] to avoid memory failures. Additionally, if your filter code leaks memory, then the HDF5 library will generate an error. */ #undef DEBUG /* The C standard apparently defines all floating point constants as double; we rely on that in this code. */ #define DBLVAL 12345678.12345678 static htri_t H5Z_test_can_apply(hid_t dcpl_id, hid_t type_id, hid_t space_id); static size_t H5Z_filter_test(unsigned int flags, size_t cd_nelmts, const unsigned int cd_values[], size_t nbytes, size_t *buf_size, void **buf); static int paramcheck(size_t nparams, const unsigned int* params); static void mismatch(size_t i, const char* which); const H5Z_class2_t H5Z_TEST[1] = {{ H5Z_CLASS_T_VERS, /* H5Z_class_t version */ (H5Z_filter_t)(H5Z_FILTER_TEST), /* Filter id number */ 1, /* encoder_present flag (set to true) */ 1, /* decoder_present flag (set to true) */ "test", /* Filter name for debugging */ (H5Z_can_apply_func_t)H5Z_test_can_apply, /* The "can apply" callback */ NULL, /* The "set local" callback */ (H5Z_func_t)H5Z_filter_test, /* The actual filter function */ }}; /* External Discovery Functions */ DLLEXPORT H5PL_type_t H5PLget_plugin_type(void) { return H5PL_TYPE_FILTER; } DLLEXPORT const void* H5PLget_plugin_info(void) { return H5Z_TEST; } /* Make this explicit */ /* * The "can_apply" callback returns positive a valid combination, zero for an * invalid combination and negative for an error. */ static htri_t H5Z_test_can_apply(hid_t dcpl_id, hid_t type_id, hid_t space_id) { return 1; /* Assume it can always apply */ } /* This filter does some verification that the parameters passed to the filter are correct. Specifically, that endian-ness is correct. As a filter, it is the identify function, passing input to output unchanged. It also prints out the size of each chunk. Test cases format: 1.The first param is the test index i.e. which test to execute. 2. The remaining parameters are those for the test chosen in #1 */ static size_t H5Z_filter_test(unsigned int flags, size_t cd_nelmts, const unsigned int cd_values[], size_t nbytes, size_t *buf_size, void **buf) { void* newbuf; unsigned int testcase = 0; size_t size = 1024 * sizeof(float) * 2; if(cd_nelmts == 0) goto fail; testcase = cd_values[0]; switch (testcase) { case TC_ENDIAN: if(!paramcheck(cd_nelmts,cd_values)) goto fail; break; case TC_ODDSIZE: /* Print out the chunk size */ fprintf(stderr,"nbytes = %lld chunk size = %lld\n",(long long)nbytes,(long long)*buf_size); fflush(stderr); break; default: break; } if (flags & H5Z_FLAG_REVERSE) { /* Decompress */ if(testcase == TC_EXPANDED) { int i; float* b = (float*)*buf; fprintf(stderr,"TC_EXPANDED: decompress: nbytes=%u buf_size=%u xdata[0..8]=|",(unsigned)nbytes,(unsigned)*buf_size); for(i=0;i<8;i++) { fprintf(stderr," %u",(int)(b[1024+i])); } fprintf(stderr,"|\n"); /* Replace buffer */ newbuf = H5allocate_memory(*buf_size,0); if(newbuf == NULL) abort(); memcpy(newbuf,*buf,*buf_size); } else { /* Replace buffer */ newbuf = H5allocate_memory(*buf_size,0); if(newbuf == NULL) abort(); memcpy(newbuf,*buf,*buf_size); } /* reclaim old buffer */ H5free_memory(*buf); *buf = newbuf; } else { /* Compress */ if(testcase == TC_EXPANDED) { int i; float* b; #if 0 fprintf(stderr,"TC_EXPANDED: compress: nbytes=%u buf_size=%u size=%u\n",(unsigned)nbytes,(unsigned)*buf_size,(unsigned)size); #endif /* Replace buffer with one that is bigger than the chunk size */ newbuf = H5allocate_memory(size,0); if(newbuf == NULL) abort(); b = (float*)newbuf; for(i=0;i<1024*2;i++) { b[i] = (float)(17+i); } memcpy(newbuf,*buf,*buf_size); *buf_size = size; } else { /* Replace buffer */ newbuf = H5allocate_memory(*buf_size,0); if(newbuf == NULL) abort(); memcpy(newbuf,*buf,*buf_size); } /* reclaim old buffer */ H5free_memory(*buf); *buf = newbuf; } return *buf_size; fail: return 0; } static int paramcheck(size_t nparams, const unsigned int* params) { size_t i; unsigned char mem[8]; if(nparams != 14) { fprintf(stderr,"Too few parameters: need=14 sent=%ld\n",(unsigned long)nparams); goto fail; } for(i=0;i