Please, help us to better serve our user community by answering the following short survey: https://www.hdfgroup.org/website-survey/
HDF5  1.15.0
API Reference
 
Loading...
Searching...
No Matches
Filters (H5Z)

Detailed Description

Use the functions in this module to manage HDF5 filters.

User-defined filters are created by registering a filter descriptor of type H5Z_class_t with the library.

Available filters can be read or examined at runtime.

It is conceivable that filters are stateful and that that state be updated at runtime.

Filters are deleted by unregistering.

CreateRead
10size_t
11filter(unsigned int flags, size_t cd_nelmts, const unsigned int cd_values[], size_t nbytes, size_t *buf_size,
12 void **buf)
13{
14 buf_size = 0;
15
16 if (flags & H5Z_FLAG_REVERSE) {
17 // read data, e.g., decompress data
18 // ...
19 }
20 else {
21 // write data, e.g., compress data
22 // ...
23 }
24
25 return nbytes;
26}
#define H5Z_FLAG_REVERSE
Definition H5Zpublic.h:107
35 {
36 __label__ fail_register;
37 H5Z_class_t cls;
38 cls.version = H5Z_CLASS_T_VERS;
39 cls.id = 256;
40 cls.encoder_present = 1;
41 cls.decoder_present = 1;
42 cls.name = "Identity filter";
43 cls.can_apply = NULL;
44 cls.set_local = NULL;
45 cls.filter = &filter;
46
47 // register the filter
48 if (H5Zregister(&cls) < 0) {
49 ret_val = EXIT_FAILURE;
50 goto fail_register;
51 }
52
53 // do something with filter
54 // ...
55
56 // unregister the filter if no longer required
57 // ...
58
59fail_register:;
60 }
#define H5Z_CLASS_T_VERS
Definition H5Zdevelop.h:31
#define H5Z_class_t
Definition H5version.h:1334
herr_t H5Zregister(const void *cls)
Registers a new filter with the HDF5 library.
64 {
65 __label__ fail_avail;
66
68 unsigned flags = 0;
69
70 // check if the deflate filter is available
71 if (H5Zfilter_avail(flt) < 0) {
72 ret_val = EXIT_FAILURE;
73 goto fail_avail;
74 }
75 // retrieve the deflate filter info
76 if (H5Zget_filter_info(flt, &flags) < 0) {
77 ret_val = EXIT_FAILURE;
78 goto fail_avail;
79 }
80
81 // check if the deflate encoder or decoder is enabled
83 printf("Deflate encoder enabled.\n");
85 printf("Deflate decoder enabled.\n");
86
87fail_avail:;
88 }
#define H5Z_FILTER_CONFIG_DECODE_ENABLED
Definition H5Zpublic.h:216
#define H5Z_FILTER_DEFLATE
Definition H5Zpublic.h:41
#define H5Z_FILTER_CONFIG_ENCODE_ENABLED
Definition H5Zpublic.h:215
int H5Z_filter_t
Filter identifiers.
Definition H5Zpublic.h:27
htri_t H5Zfilter_avail(H5Z_filter_t id)
Determines whether a filter is available.
herr_t H5Zget_filter_info(H5Z_filter_t filter, unsigned int *filter_config_flags)
Retrieves information about a filter.
UpdateDelete
92 {
93 // N/A
97 {
98 // unregister the identity filter
99 if (H5Zunregister(256) < 0) {
100 ret_val = EXIT_FAILURE;
101 }
102 }
herr_t H5Zunregister(H5Z_filter_t id)
Unregisters a filter.

HDF5 supports a filter pipeline that provides the capability for standard and customized raw data processing during I/O operations. HDF5 is distributed with a small set of standard filters such as compression (gzip, SZIP, and a shuffling algorithm) and error checking (Fletcher32 checksum). For further flexibility, the library allows a user application to extend the pipeline through the creation and registration of customized filters.

The flexibility of the filter pipeline implementation enables the definition of additional filters by a user application. A filter

The HDF5 library does not support filters for contiguous datasets because of the difficulty of implementing random access for partial I/O. Compact dataset filters are not supported because they would not produce significant results.

Filter identifiers for the filters distributed with the HDF5 Library are as follows:

H5Z_FILTER_DEFLATEThe gzip compression, or deflation, filter
H5Z_FILTER_SZIPThe SZIP compression filter
H5Z_FILTER_NBITThe N-bit compression filter
H5Z_FILTER_SCALEOFFSETThe scale-offset compression filter
H5Z_FILTER_SHUFFLEThe shuffle algorithm filter
H5Z_FILTER_FLETCHER32The Fletcher32 checksum, or error checking, filter

Custom filters that have been registered with the library will have additional unique identifiers.

See HDF5 Dynamically Loaded Filters for more information on how an HDF5 application can apply a filter that is not registered with the HDF5 library.

+ Collaboration diagram for Filters (H5Z):

Modules

 Predefined Filters
 

Functions

herr_t H5Zregister (const void *cls)
 Registers a new filter with the HDF5 library.
 
herr_t H5Zunregister (H5Z_filter_t id)
 Unregisters a filter.
 
htri_t H5Zfilter_avail (H5Z_filter_t id)
 Determines whether a filter is available.
 
herr_t H5Zget_filter_info (H5Z_filter_t filter, unsigned int *filter_config_flags)
 Retrieves information about a filter.
 

Function Documentation

◆ H5Zfilter_avail()

htri_t H5Zfilter_avail ( H5Z_filter_t  id)

Determines whether a filter is available.

Parameters
[in]idFilter identifier
Returns
Returns zero (false), a positive (true) or a negative (failure) value.

H5Zfilter_avail() determines whether the filter specified in id is available to the application.

Since
1.6.0

◆ H5Zget_filter_info()

herr_t H5Zget_filter_info ( H5Z_filter_t  filter,
unsigned int *  filter_config_flags 
)

Retrieves information about a filter.

Parameters
[in]filterFilter identifier
[out]filter_config_flagsA bit field encoding the returned filter information
Returns
Returns a non-negative value if successful; otherwise, returns a negative value.

H5Zget_filter_info() retrieves information about a filter. At present, this means that the function retrieves a filter's configuration flags, indicating whether the filter is configured to decode data, encode data, neither, or both.

If filter_config_flags is not set to NULL prior to the function call, the returned parameter contains a bit field specifying the available filter configuration. The configuration flag values can then be determined through a series of bitwise AND operations, as described below.

Valid filter configuration flags include the following:

H5Z_FILTER_CONFIG_ENCODE_ENABLED Encoding is enabled for this filter
H5Z_FILTER_CONFIG_DECODE_ENABLED Decoding is enabled for this filter

A bitwise AND of the returned filter_config_flags and a valid filter configuration flag will reveal whether the related configuration option is available. For example, if the value of

H5Z_FILTER_CONFIG_ENCODE_ENABLED & filter_config_flags

is true, i.e., greater than 0 (zero), the queried filter is configured to encode data; if the value is false, i.e., equal to 0 (zero), the filter is not so configured.

If a filter is not encode-enabled, the corresponding H5Pset_* function will return an error if the filter is added to a dataset creation property list (which is required if the filter is to be used to encode that dataset). For example, if the H5Z_FILTER_CONFIG_ENCODE_ENABLED flag is not returned for the SZIP filter, H5Z_FILTER_SZIP, a call to H5Pset_szip() will fail.

If a filter is not decode-enabled, the application will not be able to read an existing file encoded with that filter.

This function should be called, and the returned filter_config_flags should be analyzed, before calling any other function, such as H5Pset_szip(), that might require a particular filter configuration.

Since
1.6.0

◆ H5Zregister()

herr_t H5Zregister ( const void *  cls)

Registers a new filter with the HDF5 library.

Parameters
[in]clsA pointer to a buffer for the struct containing the filter-definition
Returns
Returns a non-negative value if successful; otherwise, returns a negative value.

H5Zregister() registers a new filter with the HDF5 library.

Making a new filter available to an application is a two-step process. The first step is to write the three filter callback functions described below: can_apply, set_local, and filter. This call to H5Zregister(), registering the filter with the library, is the second step. The can_apply and set_local fields can be set to NULL if they are not required for the filter being registered.

H5Zregister() accepts a single parameter, a pointer to a buffer for the cls data structure. That data structure must conform to one of the following definitions:

typedef struct H5Z_class1_t {
const char *name;
size_t(* H5Z_func_t)(unsigned int flags, size_t cd_nelmts, const unsigned int cd_values[], size_t nbytes, size_t *buf_size, void **buf)
The filter operation callback function, defining a filter's operation on data.
Definition H5Zdevelop.h:153
herr_t(* H5Z_set_local_func_t)(hid_t dcpl_id, hid_t type_id, hid_t space_id)
The filter operation callback function, defining a filter's operation on data.
Definition H5Zdevelop.h:116
htri_t(* H5Z_can_apply_func_t)(hid_t dcpl_id, hid_t type_id, hid_t space_id)
This callback determines if a filter can be applied to the dataset with the characteristics provided.
Definition H5Zdevelop.h:78
Definition H5Zdevelop.h:433
H5Z_can_apply_func_t can_apply
Definition H5Zdevelop.h:436
H5Z_set_local_func_t set_local
Definition H5Zdevelop.h:437
H5Z_filter_t id
Definition H5Zdevelop.h:434
const char * name
Definition H5Zdevelop.h:435
H5Z_func_t filter
Definition H5Zdevelop.h:438

or

typedef struct H5Z_class2_t {
int version;
unsigned encoder_present;
unsigned decoder_present;
const char *name;
Definition H5Zdevelop.h:162
H5Z_can_apply_func_t can_apply
Definition H5Zdevelop.h:168
unsigned encoder_present
Definition H5Zdevelop.h:165
H5Z_set_local_func_t set_local
Definition H5Zdevelop.h:169
H5Z_filter_t id
Definition H5Zdevelop.h:164
const char * name
Definition H5Zdevelop.h:167
H5Z_func_t filter
Definition H5Zdevelop.h:170
int version
Definition H5Zdevelop.h:163
unsigned decoder_present
Definition H5Zdevelop.h:166

version is a library-defined value reporting the version number of the H5Z_class_t struct. This currently must be set to H5Z_CLASS_T_VERS.

id is the identifier for the new filter. This is a user-defined value between H5Z_FILTER_RESERVED and H5Z_FILTER_MAX. These values are defined in the HDF5 source file H5Zpublic.h, but the symbols H5Z_FILTER_RESERVED and H5Z_FILTER_MAX should always be used instead of the literal values.

encoder_present is a library-defined value indicating whether the filter's encoding capability is available to the application.

decoder_present is a library-defined value indicating whether the filter's encoding capability is available to the application.

name is a descriptive comment used for debugging, may contain a descriptive name for the filter, and may be the null pointer.

can_apply, described in detail below, is a user-defined callback function that determines whether the combination of the dataset creation property list values, the datatype, and the dataspace represent a valid combination to apply this filter to.

set_local, described in detail below, is a user-defined callback function that sets any parameters that are specific to this dataset, based on the combination of the dataset creation property list values, the datatype, and the dataspace.

filter, described in detail below, is a user-defined callback function which performs the action of the filter.

The statistics associated with a filter are not reset by this function; they accumulate over the life of the library.

H5Z_class_t is a macro that maps to either H5Z_class1_t or H5Z_class2_t, depending on the needs of the application. To affect only this macro, H5Z_class_t_vers may be defined as either 1 or 2. Otherwise, it will behave in the same manner as other API compatibility macros. See API Compatibility Macros in HDF5 for more information. H5Z_class1_t matches the H5Z_class_t structure that is used in the 1.6.x versions of the HDF5 library.

H5Zregister() will automatically detect which structure type has been passed in, regardless of the mapping of the H5Z_class_t macro. However, the application must make sure that the fields are filled in according to the correct structure definition if the macro is used to declare the structure.

The callback functions:
Before H5Zregister() can link a filter into an application, three callback functions must be defined as described in the HDF5 library header file H5Zpublic.h.

When a filter is applied to the fractal heap for a group (e.g., when compressing group metadata) and if they can apply and set local callback functions that have been defined for that filter, HDF5 passes the value -1 for all parameters for those callback functions. This is done to ensure that the filter will not be applied to groups if it relies on these parameters, as they are not applicable to group fractal heaps; to operate on group fractal heaps, a filter must be capable of operating on an opaque block of binary data.

The can-apply callback function must return a positive value for a valid combination, zero for an invalid combination, and a negative value for an error.

typedef htri_t (*H5Z_can_apply_func_t)(hid_t dcpl_id, hid_t type_id, hid_t space_id);
int64_t hid_t
Definition H5Ipublic.h:60
int htri_t
Definition H5public.h:265

Before a dataset is created, the can apply callbacks for any filters used in the dataset creation property list are called with the dataset's dataset creation property list, dcpl_id, the dataset's datatype, type_id, and a dataspace describing a chunk, space_id, (for chunked dataset storage).

This callback must determine whether the combination of the dataset creation property list settings, the datatype, and the dataspace represent a valid combination to which to apply this filter. For example, an invalid combination may involve the filter not operating correctly on certain datatypes, on certain datatype sizes, or on certain sizes of the chunk dataspace. If this filter is enabled through H5Pset_filter() as optional and the can apply function returns 0, the library will skip the filter in the filter pipeline.

This callback can be the NULL pointer, in which case the library will assume that the filter can be applied to a dataset with any combination of dataset creation property list values, datatypes, and dataspaces.

The set local callback function is defined as follows:

typedef herr_t (*H5Z_set_local_func_t)(hid_t dcpl_id, hid_t type_id, hid_t space_id);
int herr_t
Definition H5public.h:235

After the can apply callbacks are checked for a new dataset, the set local callback functions for any filters used in the dataset creation property list are called. These callbacks receive dcpl_id, the dataset's private copy of the dataset creation property list passed into H5Dcreate() (i.e. not the actual property list passed into H5Dcreate()); type_id, the datatype identifier passed into H5Dcreate(), which is not copied and should not be modified; and space_id, a dataspace describing the chunk (for chunked dataset storage), which should also not be modified.

The set local callback must set any filter parameters that are specific to this dataset, based on the combination of the dataset creation property list values, the datatype, and the dataspace. For example, some filters perform different actions based on different datatypes, datatype sizes, numbers of dimensions, or dataspace sizes.

The set local callback may be the NULL pointer, in which case, the library will assume that there are no dataset-specific settings for this filter.

The set local callback function must return a non-negative value on success and a negative value for an error.

The filter operation callback function, defining the filter's operation on the data, is defined as follows:

typedef size_t (*H5Z_func_t)(unsigned int flags, size_t cd_nelmts, const unsigned int cd_values[],
size_t nbytes, size_t *buf_size, void **buf);

The parameters flags, cd_nelmts, and cd_values are the same as for the function H5Pset_filter(). The one exception is that an additional flag, H5Z_FLAG_REVERSE, is set when the filter is called as part of the input pipeline.

The parameter buf points to the input buffer which has a size of buf_size bytes, nbytes of which are valid data.

The filter should perform the transformation in place if possible. If the transformation cannot be done in place, then the filter should allocate a new buffer and assign it to buf, assigning the allocated size of that buffer to buf_size. The old buffer should be freed by the filter.

Some care must be taken with the functions that allocate and free memory. Standard C library functions like malloc(3) and free(3) will work in many cases, but if there is a mismatch between the memory allocators used in the library and any filter that reallocates a buffer, there could be problems. This is most often the case with Windows and/or when debugging memory allocators are being used. In both cases, the "state" of the memory allocator lies in different libraries and will get corrupted if you allocate in one library and free in another. Windows adds the C standard library via dlls that can vary with Visual Studio version and debug vs. release builds. Static links to the MSVC CRT can also introduce a new memory allocator state.

The library does provide H5allocate_memory() and H5free_memory() functions that will use the library's allocation and free functions, however using these functions will require linking your filter to a particular version of the library, which may be inconvenient.

If successful, the filter operation callback function returns the number of valid bytes of data contained in buf. In the case of failure, the return value is 0 (zero) and all pointer arguments are left unchanged.

Version
1.8.6 Return type for the can apply callback function, H5Z_can_apply_func_t, changed to htri_t.
1.8.5 Semantics of the can apply and set local callback functions changed to accommodate the use of filters with group fractal heaps.
1.8.3 H5Z_class_t renamed to H5Z_class2_t, H5Z_class1_t structure introduced for backwards compatibility with release 1.6.x, and H5Z_class_t macro introduced in this release. Function modified to accept either structure type.
1.8.0 The fields version, encoder_present, and decoder_present were added to the H5Z_class_t struct in this release.
1.6.0 This function was substantially revised in Release 1.6.0 with a new H5Z_class_t struct and new set local and can apply callback functions.
Since
1.0.0

◆ H5Zunregister()

herr_t H5Zunregister ( H5Z_filter_t  id)

Unregisters a filter.

Parameters
[in]idIdentifier of the filter to be unregistered.
Returns
Returns a non-negative value if successful; otherwise, returns a negative value.

H5Zunregister() unregisters the filter specified in id.

This function first iterates through all opened datasets and groups. If an open object that uses this filter is found, the function will fail with a message indicating that an object using the filter is still open. All open files are then flushed to make sure that all cached data that may use this filter are written out.

If the application is a parallel program, all processes that participate in collective data writing should call this function to ensure that all data is flushed.

After a call to H5Zunregister(), the filter specified in filter will no longer be available to the application.

Version
1.8.12 Function modified to check for open objects using the filter.
Since
1.6.0