Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5P_GET_FILTER2

Returns information about a filter in a pipeline

Procedure:

H5P_GET_FILTER2 ( plist_id, idx, flags, cd_nelmts, cd_values, namelen, name, filter_config )

Signature:

H5Z_filter_t H5Pget_filter2(
        hid_t plist_id, 
        unsigned idx, 
        unsigned int *flags,
        size_t *cd_nelmts,
        unsigned cd_values[],
        size_t namelen, 
        char name[],
        unsigned *filter_config
    )
        

Fortran90 Interface:  h5pget_filter_f
    
SUBROUTINE h5pget_filter_f(prp_id, filter_number, flags, cd_nelmts, 
                           cd_values, namelen, name, filter_id, hdferr)
  IMPLICIT NONE
  INTEGER(HID_T), INTENT(IN) :: prp_id    ! Property list identifier
  INTEGER, INTENT(IN) :: filter_number    ! Sequence number within the filter
                                          ! pipeline of the filter for which
                                          ! information is sought
  INTEGER, DIMENSION(*), INTENT(OUT) :: cd_values  
                                          ! Auxiliary data for the filter
  INTEGER, INTENT(OUT) :: flags           ! Bit vector specifying certain 
                                          ! general properties of the filter
  INTEGER(SIZE_T), INTENT(INOUT) :: cd_nelmts      
                                          ! Number of elements in cd_values
  INTEGER(SIZE_T), INTENT(IN) :: namelen  ! Anticipated number of characters 
                                          ! in name
  CHARACTER(LEN=*), INTENT(OUT) :: name   ! Name of the filter
  INTEGER, INTENT(OUT) :: filter_id       ! Filter identification number
  INTEGER, INTENT(OUT) :: hdferr          ! Error code
                                          ! 0 on success and -1 on failure
END SUBROUTINE h5pget_filter_f
	

Parameters:
hid_t plist_idIN: Dataset or group creation property list identifier
int idxIN: Sequence number within the filter pipeline of the filter for which information is sought
unsigned int * flagsOUT: Bit vector specifying certain general properties of the filter
size_t * cd_nelmtsIN/OUT: Number of elements in cd_values
unsigned int * cd_valuesOUT: Auxiliary data for the filter
size_t namelenIN: Anticipated number of characters in name
char name[]OUT: Name of the filter
unsigned int * filter_config    OUT: Bit field, as described in H5Z_GET_FILTER_INFO

Description:

H5P_GET_FILTER2 returns information about a filter, specified by its filter number, in a filter pipeline, specified by the property list with which it is associated.

plist_id must be a dataset or group creation property list.

idx is a value between zero and N-1, as described in H5P_GET_NFILTERS. The function will return a negative value if the filter number is out of range.

The structure of the flags argument is discussed in H5P_SET_FILTER.

On input, cd_nelmts indicates the number of entries in the cd_values array, as allocated by the caller; on return,cd_nelmts contains the number of values defined by the filter.

If name is a pointer to an array of at least namelen bytes, the filter name will be copied into that array. The name will be null terminated if namelen is large enough. The filter name returned will be the name appearing in the file, the name registered for the filter, or an empty string.

filter_config is the bit field described in H5Z_GET_FILTER_INFO.

Returns:

Returns the filter identifier if successful:

H5Z_FILTER_DEFLATEData compression filter, employing the gzip algorithm
H5Z_FILTER_SHUFFLEData shuffling filter
H5Z_FILTER_FLETCHER32  Error detection filter, employing the Fletcher32 checksum algorithm
H5Z_FILTER_SZIPData compression filter, employing the SZIP algorithm
H5Z_FILTER_NBITData compression filter, employing the N-bit algorithm
H5Z_FILTER_SCALEOFFSETData compression filter, employing the scale-offset algorithm

Otherwise returns a negative value.

Example:

Include Bitbucket Server for Confluence: An error occured

Connection to Bitbucket Server could not be established. Verify that you have properly configured the Bitbucket Server application link for your Confluence space and that your Bitbucket Server instance is up and running. Error details: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

Include Bitbucket Server for Confluence: An error occured

Connection to Bitbucket Server could not be established. Verify that you have properly configured the Bitbucket Server application link for your Confluence space and that your Bitbucket Server instance is up and running. Error details: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

 

History:
Release    Change
1.8.5Function extended to work with group creation property lists.
1.8.0Function introduced in this release.

--- Last Modified: August 07, 2019 | 10:53 AM