16inline hid_t convert_plist_type(
PropertyType propertyType) {
19 switch (propertyType) {
21 return H5P_FILE_CREATE;
23 return H5P_FILE_ACCESS;
25 return H5P_DATASET_CREATE;
27 return H5P_DATASET_ACCESS;
29 return H5P_DATASET_XFER;
31 return H5P_GROUP_CREATE;
33 return H5P_GROUP_ACCESS;
35 return H5P_DATATYPE_CREATE;
37 return H5P_DATATYPE_ACCESS;
39 return H5P_STRING_CREATE;
41 return H5P_ATTRIBUTE_CREATE;
43 return H5P_LINK_CREATE;
45 return H5P_LINK_ACCESS;
47 HDF5ErrMapper::ToException<PropertyException>(
"Unsupported property list type");
58template <PropertyType T>
60 if (_hid != H5P_DEFAULT) {
63 _hid = detail::h5p_create(convert_plist_type(T));
66template <PropertyType T>
67template <PropertyInterface P>
69 _initializeIfNeeded();
73template <PropertyType T>
74template <
typename F,
typename... Args>
76 this->_initializeIfNeeded();
77 if (funct(this->_hid, args...) < 0) {
78 HDF5ErrMapper::ToException<PropertyException>(
"Error setting raw hdf5 property.");
83#if H5_VERSION_GE(1, 10, 1)
84inline FileSpaceStrategy::FileSpaceStrategy(H5F_fspace_strategy_t strategy,
89 , _threshold(threshold) {}
91inline FileSpaceStrategy::FileSpaceStrategy(
const FileCreateProps& fcpl) {
92 detail::h5p_get_file_space_strategy(fcpl.getId(), &_strategy, &_persist, &_threshold);
95inline void FileSpaceStrategy::apply(
const hid_t list)
const {
96 detail::h5p_set_file_space_strategy(list, _strategy, _persist, _threshold);
99inline H5F_fspace_strategy_t FileSpaceStrategy::getStrategy()
const {
103inline hbool_t FileSpaceStrategy::getPersist()
const {
107inline hsize_t FileSpaceStrategy::getThreshold()
const {
111inline FileSpacePageSize::FileSpacePageSize(hsize_t page_size)
112 : _page_size(page_size) {}
114inline void FileSpacePageSize::apply(
const hid_t list)
const {
115 detail::h5p_set_file_space_page_size(list, _page_size);
118inline FileSpacePageSize::FileSpacePageSize(
const FileCreateProps& fcpl) {
119 detail::h5p_get_file_space_page_size(fcpl.getId(), &_page_size);
122inline hsize_t FileSpacePageSize::getPageSize()
const {
126#ifndef H5_HAVE_PARALLEL
127inline PageBufferSize::PageBufferSize(
size_t page_buffer_size,
128 unsigned min_meta_percent,
129 unsigned min_raw_percent)
130 : _page_buffer_size(page_buffer_size)
131 , _min_meta(min_meta_percent)
132 , _min_raw(min_raw_percent) {}
135 detail::h5p_get_page_buffer_size(plist.getId(), &_page_buffer_size, &_min_meta, &_min_raw);
138inline void PageBufferSize::apply(
const hid_t list)
const {
139 detail::h5p_set_page_buffer_size(list, _page_buffer_size, _min_meta, _min_raw);
142inline size_t PageBufferSize::getPageBufferSize()
const {
143 return _page_buffer_size;
146inline unsigned PageBufferSize::getMinMetaPercent()
const {
150inline unsigned PageBufferSize::getMinRawPercent()
const {
156#ifdef H5_HAVE_PARALLEL
162inline void MPIOFileAccess::apply(
const hid_t list)
const {
163 detail::h5p_set_fapl_mpio(list, _comm, _info);
166#if H5_VERSION_GE(1, 10, 0)
167inline void MPIOCollectiveMetadata::apply(
const hid_t plist)
const {
168 auto read = MPIOCollectiveMetadataRead{collective_read_};
169 auto write = MPIOCollectiveMetadataWrite{collective_write_};
175inline MPIOCollectiveMetadata::MPIOCollectiveMetadata(
bool collective)
176 : collective_read_(collective)
177 , collective_write_(collective) {}
180inline MPIOCollectiveMetadata::MPIOCollectiveMetadata(
const FileAccessProps& plist)
181 : collective_read_(MPIOCollectiveMetadataRead(plist).isCollective())
182 , collective_write_(MPIOCollectiveMetadataWrite(plist).isCollective()) {}
184inline bool MPIOCollectiveMetadata::isCollectiveRead()
const {
185 return collective_read_;
188inline bool MPIOCollectiveMetadata::isCollectiveWrite()
const {
189 return collective_write_;
193inline void MPIOCollectiveMetadataRead::apply(
const hid_t plist)
const {
194 detail::h5p_set_all_coll_metadata_ops(plist, collective_);
197inline bool MPIOCollectiveMetadataRead::isCollective()
const {
201inline MPIOCollectiveMetadataRead::MPIOCollectiveMetadataRead(
const FileAccessProps& plist) {
202 detail::h5p_get_all_coll_metadata_ops(plist.getId(), &collective_);
205inline MPIOCollectiveMetadataRead::MPIOCollectiveMetadataRead(
bool collective)
206 : collective_(collective) {}
208inline void MPIOCollectiveMetadataWrite::apply(
const hid_t plist)
const {
209 detail::h5p_set_coll_metadata_write(plist, collective_);
212inline bool MPIOCollectiveMetadataWrite::isCollective()
const {
216inline MPIOCollectiveMetadataWrite::MPIOCollectiveMetadataWrite(
const FileAccessProps& plist) {
217 detail::h5p_get_coll_metadata_write(plist.getId(), &collective_);
220inline MPIOCollectiveMetadataWrite::MPIOCollectiveMetadataWrite(
bool collective)
221 : collective_(collective) {}
231 detail::h5p_get_libver_bounds(fapl.
getId(), &_low, &_high);
235 return std::make_pair(_low, _high);
238inline void FileVersionBounds::apply(
const hid_t list)
const {
239 detail::h5p_set_libver_bounds(list, _low, _high);
246 detail::h5p_get_meta_block_size(fapl.
getId(), &_size);
249inline void MetadataBlockSize::apply(
const hid_t list)
const {
250 detail::h5p_set_meta_block_size(list, _size);
257inline void EstimatedLinkInfo::apply(
const hid_t hid)
const {
258 detail::h5p_set_est_link_info(hid, _entries, _length);
266 detail::h5p_get_est_link_info(gcpl.
getId(), &_entries, &_length);
277inline void Chunking::apply(
const hid_t hid)
const {
278 detail::h5p_set_chunk(hid,
static_cast<int>(_dims.size()), _dims.data());
285 :
Chunking(std::vector<hsize_t>{items}) {}
288 : _dims(max_dims + 1) {
290 detail::h5p_get_chunk(plist.
getId(),
static_cast<int>(_dims.size()), _dims.data());
292 if (n_loaded >=
static_cast<int>(_dims.size())) {
293 *
this =
Chunking(plist, 8 * max_dims);
295 _dims.resize(
static_cast<size_t>(n_loaded));
303template <
typename... Args>
305 :
Chunking(std::vector<hsize_t>{item,
static_cast<hsize_t
>(args)...}) {}
307inline void Deflate::apply(
const hid_t hid)
const {
308 if (detail::h5z_filter_avail(H5Z_FILTER_DEFLATE) == 0) {
309 HDF5ErrMapper::ToException<PropertyException>(
"Deflate filter unavailable.");
312 detail::h5p_set_deflate(hid, _level);
318inline void Szip::apply(
const hid_t hid)
const {
319 if (detail::h5z_filter_avail(H5Z_FILTER_SZIP) == 0) {
320 HDF5ErrMapper::ToException<PropertyException>(
"SZIP filter unavailable.");
323 detail::h5p_set_szip(hid, _options_mask, _pixels_per_block);
326inline Szip::Szip(
unsigned int options_mask,
unsigned int pixels_per_block)
327 : _options_mask(options_mask)
328 , _pixels_per_block(pixels_per_block) {}
331 return _options_mask;
335 return _pixels_per_block;
338inline void Shuffle::apply(
const hid_t hid)
const {
339 if (detail::h5z_filter_avail(H5Z_FILTER_SHUFFLE) == 0) {
340 HDF5ErrMapper::ToException<PropertyException>(
"Shuffle filter unavailable.");
343 detail::h5p_set_shuffle(hid);
347 : _alloc_time(alloc_time) {}
350 detail::h5p_get_alloc_time(dcpl.
getId(), &_alloc_time);
353inline void AllocationTime::apply(hid_t dcpl)
const {
354 detail::h5p_set_alloc_time(dcpl, _alloc_time);
362 detail::h5p_get_chunk_cache(dcpl.
getId(), &_numSlots, &_cacheSize, &_w0);
365inline void Caching::apply(
const hid_t hid)
const {
366 detail::h5p_set_chunk_cache(hid, _numSlots, _cacheSize, _w0);
370 : _numSlots(numSlots)
371 , _cacheSize(cacheSize)
389inline void CreateIntermediateGroup::apply(
const hid_t hid)
const {
390 detail::h5p_set_create_intermediate_group(hid, _create ? 1 : 0);
399 _create = bool(detail::h5p_get_create_intermediate_group(hid, &c_bool));
406#ifdef H5_HAVE_PARALLEL
410inline void UseCollectiveIO::apply(
const hid_t hid)
const {
411 detail::h5p_set_dxpl_mpio(hid, _enable ? H5FD_MPIO_COLLECTIVE : H5FD_MPIO_INDEPENDENT);
415 H5FD_mpio_xfer_t collective;
417 detail::h5p_get_dxpl_mpio(dxpl.
getId(), &collective);
419 if (collective != H5FD_MPIO_COLLECTIVE && collective != H5FD_MPIO_INDEPENDENT) {
420 throw std::logic_error(
"H5Pget_dxpl_mpio returned something strange.");
423 _enable = collective == H5FD_MPIO_COLLECTIVE;
431 detail::h5p_get_mpio_no_collective_cause(dxpl.
getId(), &_local_cause, &_global_cause);
435 return _local_cause == 0 && _global_cause == 0;
443 return _global_cause;
447 return {_local_cause, _global_cause};
463inline void LinkCreationOrder::apply(
const hid_t hid)
const {
464 detail::h5p_set_link_creation_order(hid, _flags);
468 detail::h5p_get_link_creation_order(hid, &_flags);
472 : _max_compact(max_compact)
473 , _min_dense(min_dense) {}
476 detail::h5p_get_attr_phase_change(gcpl.
getId(), &_max_compact, &_min_dense);
487inline void AttributePhaseChange::apply(hid_t hid)
const {
488 detail::h5p_set_attr_phase_change(hid, _max_compact, _min_dense);
H5D_alloc_time_t getAllocationTime()
Definition H5PropertyList_misc.hpp:357
AllocationTime(H5D_alloc_time_t alloc_time)
Definition H5PropertyList_misc.hpp:346
unsigned max_compact() const
Definition H5PropertyList_misc.hpp:479
AttributePhaseChange(unsigned max_compact, unsigned min_dense)
Create the property from the threshold values.
Definition H5PropertyList_misc.hpp:471
unsigned min_dense() const
Definition H5PropertyList_misc.hpp:483
size_t getNumSlots() const
Definition H5PropertyList_misc.hpp:374
Caching(const size_t numSlots, const size_t cacheSize, const double w0=static_cast< double >(H5D_CHUNK_CACHE_W0_DEFAULT))
Definition H5PropertyList_misc.hpp:369
size_t getCacheSize() const
Definition H5PropertyList_misc.hpp:378
double getW0() const
Definition H5PropertyList_misc.hpp:382
Definition H5PropertyList.hpp:499
const std::vector< hsize_t > & getDimensions() const noexcept
Definition H5PropertyList_misc.hpp:299
Chunking(const std::vector< hsize_t > &dims)
Definition H5PropertyList_misc.hpp:281
Deflate(unsigned level)
Definition H5PropertyList_misc.hpp:315
unsigned getEntries() const
The estimated number of links in a group.
Definition H5PropertyList_misc.hpp:269
EstimatedLinkInfo(unsigned entries, unsigned length)
Create a property with the request parameters.
Definition H5PropertyList_misc.hpp:261
unsigned getNameLength() const
The estimated length of the names of links.
Definition H5PropertyList_misc.hpp:273
std::pair< H5F_libver_t, H5F_libver_t > getVersion() const
Definition H5PropertyList_misc.hpp:234
FileVersionBounds(H5F_libver_t low, H5F_libver_t high)
Definition H5PropertyList_misc.hpp:226
LinkCreationOrder(unsigned flags)
Create the property.
Definition H5PropertyList.hpp:685
void fromPropertyList(hid_t hid)
Definition H5PropertyList_misc.hpp:467
unsigned getFlags() const
Definition H5PropertyList_misc.hpp:459
MPIOFileAccess(MPI_Comm comm, MPI_Info info)
Definition H5PropertyList_misc.hpp:158
uint32_t getGlobalCause() const
The global cause for a non-collective I/O.
Definition H5PropertyList_misc.hpp:442
bool wasCollective() const
Was the datatransfer collective?
Definition H5PropertyList_misc.hpp:434
std::pair< uint32_t, uint32_t > getCause() const
A pair of the local and global cause for non-collective I/O.
Definition H5PropertyList_misc.hpp:446
MpioNoCollectiveCause(const DataTransferProps &dxpl)
Definition H5PropertyList_misc.hpp:430
uint32_t getLocalCause() const
The local cause for a non-collective I/O.
Definition H5PropertyList_misc.hpp:438
Definition H5Object.hpp:35
hid_t getId() const noexcept
getId
Definition H5Object_misc.hpp:63
PropertyListBase() noexcept
Definition H5PropertyList_misc.hpp:54
HDF5 property Lists.
Definition H5PropertyList.hpp:158
void _initializeIfNeeded()
Definition H5PropertyList_misc.hpp:59
void add(const P &property)
Definition H5PropertyList_misc.hpp:68
void add(const F &funct, const Args &... args)
Definition H5PropertyList_misc.hpp:75
Szip(unsigned options_mask=H5_SZIP_EC_OPTION_MASK, unsigned pixels_per_block=H5_SZIP_MAX_PIXELS_PER_BLOCK)
Definition H5PropertyList_misc.hpp:326
unsigned getPixelsPerBlock() const
Definition H5PropertyList_misc.hpp:334
unsigned getOptionsMask() const
Definition H5PropertyList_misc.hpp:330
bool isCollective() const
Does the property request collective IO?
Definition H5PropertyList_misc.hpp:426
UseCollectiveIO(bool enable=true)
Definition H5PropertyList_misc.hpp:407
PropertyType
Types of property lists.
Definition H5PropertyList.hpp:89
PropertyList< PropertyType::FILE_CREATE > FileCreateProps
Definition H5PropertyList.hpp:196
PropertyList< PropertyType::FILE_ACCESS > FileAccessProps
Definition H5PropertyList.hpp:197
Definition assert_compatible_spaces.hpp:15