Retrieves a data transform expression
H5P_GET_DATA_TRANSFORM ( plist_id, expression, size )
ssize_t H5Pget_data_transform
(hid_t plist_id,
char *expression,
size_t size)
hid_t plist_id | IN: Identifier of the property list or class |
char *expression | OUT: Pointer to memory where the transform expression will be copied |
size_t size | IN: Number of bytes of the transform expression to copy to |
H5P_GET_DATA_TRANSFORM retrieves the data transform expression previously set in the dataset transfer property list plist_id
by H5P_SET_DATA_TRANSFORM.
H5P_GET_DATA_TRANSFORM can be used to both retrieve the transform expression and to query its size.
If expression
is non-NULL, up to size
bytes of the data transform expression are written to the buffer. If expression
is NULL, size
is ignored and the function does not write anything to the buffer. The function always returns the size of the data transform expression.
If 0
is returned for the size of the expression, no data transform expression exists for the property list.
If an error occurs, the buffer pointed to by expression
is unchanged and the function returns a negative value.
Success: size of the transform expression
Failure: a negative value
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.0 | Function introduced in this release. |
--- Last Modified: August 09, 2019 | 11:48 AM