![]() |
HDF5 Last Updated on 2025-07-04
The HDF5 Field Guide
|
#include "H5FDpublic.h"
Data Structures | |
struct | H5FD_ros3_fapl_t |
Configuration structure for H5Pset_fapl_ros3() / H5Pget_fapl_ros3(). More... | |
Macros | |
#define | H5FD_ROS3 (H5OPEN H5FD_ROS3_id_g) |
#define | H5FD_ROS3_VALUE H5_VFD_ROS3 |
#define | H5FD_CURR_ROS3_FAPL_T_VERSION 1 |
#define | H5FD_ROS3_MAX_REGION_LEN 32 |
#define | H5FD_ROS3_MAX_SECRET_ID_LEN 128 |
#define | H5FD_ROS3_MAX_SECRET_KEY_LEN 128 |
#define | H5FD_ROS3_MAX_SECRET_TOK_LEN 4096 |
#define | H5FD_ROS3_VFD_DEFAULT_LOG_FILE "hdf5_ros3_vfd.log" |
#define | HDF5_ROS3_VFD_DEBUG "HDF5_ROS3_VFD_DEBUG" |
#define | HDF5_ROS3_VFD_LOG_LEVEL "HDF5_ROS3_VFD_LOG_LEVEL" |
#define | HDF5_ROS3_VFD_LOG_FILE "HDF5_ROS3_VFD_LOG_FILE" |
#define | HDF5_ROS3_VFD_FORCE_PATH_STYLE "HDF5_ROS3_VFD_FORCE_PATH_STYLE" |
Functions | |
herr_t | H5Pget_fapl_ros3 (hid_t fapl_id, H5FD_ros3_fapl_t *fa_out) |
Queries a File Access Property List for H5FD_ROS3 file driver properties. | |
herr_t | H5Pset_fapl_ros3 (hid_t fapl_id, const H5FD_ros3_fapl_t *fa) |
Modifies the specified File Access Property List to use the H5FD_ROS3 driver. | |
herr_t | H5Pget_fapl_ros3_token (hid_t fapl_id, size_t size, char *token) |
Queries a File Access Property List for H5FD_ROS3 file driver session/security token. | |
herr_t | H5Pset_fapl_ros3_token (hid_t fapl_id, const char *token) |
Modifies the specified File Access Property List to use the H5FD_ROS3 driver by adding the specified session/security token. | |
herr_t | H5Pget_fapl_ros3_endpoint (hid_t fapl_id, size_t size, char *endpoint) |
Queries a File Access Property List for H5FD_ROS3 file driver endpoint url. | |
herr_t | H5Pset_fapl_ros3_endpoint (hid_t fapl_id, const char *endpoint) |
Modifies the specified File Access Property List to use an alternative endpoint URL when opening files with the H5FD_ROS3 driver. | |
#define H5FD_CURR_ROS3_FAPL_T_VERSION 1 |
The version number of the H5FD_ros3_fapl_t configuration structure for the H5FD_ROS3 driver.
#define H5FD_ROS3 (H5OPEN H5FD_ROS3_id_g) |
Initializer for the ros3 VFD
#define H5FD_ROS3_MAX_REGION_LEN 32 |
Maximum string length for specifying the region of the S3 bucket.
#define H5FD_ROS3_MAX_SECRET_ID_LEN 128 |
Maximum string length for specifying the security ID.
#define H5FD_ROS3_MAX_SECRET_KEY_LEN 128 |
Maximum string length for specifying the security key.
#define H5FD_ROS3_MAX_SECRET_TOK_LEN 4096 |
Maximum string length for specifying the session/security token.
#define H5FD_ROS3_VALUE H5_VFD_ROS3 |
Identifier for the ros3 VFD
#define H5FD_ROS3_VFD_DEFAULT_LOG_FILE "hdf5_ros3_vfd.log" |
The default filename of the file that logging output is written to when enabled. This filename can be overridden with the HDF5_ROS3_VFD_LOG_FILE environment variable.
#define HDF5_ROS3_VFD_DEBUG "HDF5_ROS3_VFD_DEBUG" |
Macro for name of the environment variable that specifies debugging output should be enabled for the ROS3 VFD. This output includes brief details about operations that the VFD is performing. Debugging output will be enabled if this environment variable is defined to anything other than one of (case-insensitive):
'false'
'off'
'0'
Debugging output will be printed to stderr.
#define HDF5_ROS3_VFD_FORCE_PATH_STYLE "HDF5_ROS3_VFD_FORCE_PATH_STYLE" |
Macro for name of the environment variable that forces the VFD to use path-style requests rather than virtual-hosted-style requests. The VFD attempts to use virtual-hosted-style requests by default when possible, but in some cases it may be necessary to force it to use path-style requests for compatibility reasons. The VFD will use path-style requests if this environment variable is defined to anything other than one of (case-insensitive):
'false'
'off'
'0'
#define HDF5_ROS3_VFD_LOG_FILE "HDF5_ROS3_VFD_LOG_FILE" |
Macro for name of the environment variable that specifies the filename to write logging output to when it is enabled. This environment variable may be specified as one of the values 'stderr' or 'stdout' to write output to those standard streams. Otherwise, the value is treated as a regular filename. Used in conjunction with HDF5_ROS3_VFD_LOG_LEVEL.
#define HDF5_ROS3_VFD_LOG_LEVEL "HDF5_ROS3_VFD_LOG_LEVEL" |
Macro for name of the environment variable that specifies whether logging output should be enabled for the ROS3 VFD. This environment variable should be specified as one of (case-insensitive):
'error'
'info'
'debug'
'trace'
If specified as one of these values, logging output will be written to the file specified by the HDF5_ROS3_VFD_LOG_FILE environment variable. If that environment variable is not specified, logging will be written to the default file specified by H5FD_ROS3_VFD_DEFAULT_LOG_FILE.
Note that this logging output is separate from and much more detailed than the debugging information enabled by the HDF5_ROS3_VFD_DEBUG environment variable.