16#ifdef H5_HAVE_PARALLEL
106template <
typename T,
typename U>
107T get_plist(
const U& obj, hid_t (*f)(hid_t)) {
108 auto hid = f(obj.getId());
110 HDF5ErrMapper::ToException<PropertyException>(
"Unable to get property list");
130 template <
typename T,
typename U>
131 friend T details::get_plist(
const U&, hid_t (*f)(hid_t));
143#if HIGHFIVE_HAS_CONCEPTS && __cplusplus >= 202002L
150#define PropertyInterface typename
157template <PropertyType T>
171 template <PropertyInterface P>
172 void add(
const P& property);
187 plist._initializeIfNeeded();
214template <PropertyType T>
217 template <
typename F,
typename... Args>
218 void add(
const F& funct,
const Args&... args);
221#ifdef H5_HAVE_PARALLEL
234 void apply(
const hid_t list)
const;
241#if H5_VERSION_GE(1, 10, 0)
247class MPIOCollectiveMetadata {
249 explicit MPIOCollectiveMetadata(
bool collective =
true);
252 bool isCollectiveRead()
const;
253 bool isCollectiveWrite()
const;
258 void apply(hid_t plist)
const;
260 bool collective_read_;
261 bool collective_write_;
277class MPIOCollectiveMetadataRead {
279 explicit MPIOCollectiveMetadataRead(
bool collective =
true);
280 explicit MPIOCollectiveMetadataRead(
const FileAccessProps& plist);
282 bool isCollective()
const;
285 friend FileAccessProps;
286 friend MPIOCollectiveMetadata;
288 void apply(hid_t plist)
const;
303class MPIOCollectiveMetadataWrite {
305 explicit MPIOCollectiveMetadataWrite(
bool collective =
true);
306 explicit MPIOCollectiveMetadataWrite(
const FileAccessProps& plist);
308 bool isCollective()
const;
312 friend MPIOCollectiveMetadata;
314 void apply(hid_t plist)
const;
343 std::pair<H5F_libver_t, H5F_libver_t>
getVersion()
const;
347 void apply(
const hid_t list)
const;
367 void apply(
const hid_t list)
const;
371#if H5_VERSION_GE(1, 10, 1)
378class FileSpaceStrategy {
386 FileSpaceStrategy(H5F_fspace_strategy_t strategy, hbool_t persist, hsize_t threshold);
389 H5F_fspace_strategy_t getStrategy()
const;
390 hbool_t getPersist()
const;
391 hsize_t getThreshold()
const;
396 void apply(
const hid_t list)
const;
398 H5F_fspace_strategy_t _strategy;
412class FileSpacePageSize {
418 explicit FileSpacePageSize(hsize_t page_size);
419 explicit FileSpacePageSize(
const FileCreateProps& fcpl);
421 hsize_t getPageSize()
const;
424 friend FileCreateProps;
425 void apply(
const hid_t list)
const;
430#ifndef H5_HAVE_PARALLEL
442class PageBufferSize {
449 explicit PageBufferSize(
size_t page_buffer_size,
450 unsigned min_meta_percent = 0,
451 unsigned min_raw_percent = 0);
453 explicit PageBufferSize(
const FileAccessProps& fapl);
455 size_t getPageBufferSize()
const;
456 unsigned getMinMetaPercent()
const;
457 unsigned getMinRawPercent()
const;
462 void apply(hid_t list)
const;
464 size_t _page_buffer_size;
492 void apply(hid_t hid)
const;
501 explicit Chunking(
const std::vector<hsize_t>& dims);
502 Chunking(
const std::initializer_list<hsize_t>& items);
504 template <
typename... Args>
505 explicit Chunking(hsize_t item, Args... args);
513 void apply(hid_t hid)
const;
514 std::vector<hsize_t> _dims;
520 explicit Deflate(
unsigned level);
525 void apply(hid_t hid)
const;
526 const unsigned _level;
532 explicit Szip(
unsigned options_mask = H5_SZIP_EC_OPTION_MASK,
533 unsigned pixels_per_block = H5_SZIP_MAX_PIXELS_PER_BLOCK);
540 void apply(hid_t hid)
const;
541 const unsigned _options_mask;
542 const unsigned _pixels_per_block;
552 void apply(hid_t hid)
const;
570 void apply(hid_t dcpl)
const;
572 H5D_alloc_time_t _alloc_time;
583 const size_t cacheSize,
584 const double w0 =
static_cast<double>(H5D_CHUNK_CACHE_W0_DEFAULT));
590 double getW0()
const;
594 void apply(hid_t hid)
const;
614 void apply(hid_t hid)
const;
618#ifdef H5_HAVE_PARALLEL
631 void apply(hid_t hid)
const;
657 std::pair<uint32_t, uint32_t>
getCause()
const;
661 uint32_t _local_cause;
662 uint32_t _global_cause;
699 void apply(hid_t hid)
const;
733 void apply(hid_t hid)
const;
735 unsigned _max_compact;
When are datasets allocated?
Definition H5PropertyList.hpp:561
H5D_alloc_time_t getAllocationTime()
Definition H5PropertyList_misc.hpp:357
Set threshold for attribute storage.
Definition H5PropertyList.hpp:715
unsigned max_compact() const
Definition H5PropertyList_misc.hpp:479
unsigned min_dense() const
Definition H5PropertyList_misc.hpp:483
Definition H5PropertyList.hpp:578
size_t getNumSlots() const
Definition H5PropertyList_misc.hpp:374
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
Definition H5PropertyList.hpp:518
Set hints as to how many links to expect and their average length.
Definition H5PropertyList.hpp:474
unsigned getEntries() const
The estimated number of links in a group.
Definition H5PropertyList_misc.hpp:269
unsigned getNameLength() const
The estimated length of the names of links.
Definition H5PropertyList_misc.hpp:273
Configure the version bounds for the file.
Definition H5PropertyList.hpp:338
std::pair< H5F_libver_t, H5F_libver_t > getVersion() const
Definition H5PropertyList_misc.hpp:234
Track and index creation order time.
Definition H5PropertyList.hpp:679
LinkCreationOrder(const GroupCreateProps &gcpl)
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
Configure MPI access for the file.
Definition H5PropertyList.hpp:228
The cause for non-collective I/O.
Definition H5PropertyList.hpp:643
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
uint32_t getLocalCause() const
The local cause for a non-collective I/O.
Definition H5PropertyList_misc.hpp:438
Definition H5Object.hpp:35
Base Class for Property lists, providing global default.
Definition H5PropertyList.hpp:120
PropertyListBase() noexcept
Definition H5PropertyList_misc.hpp:54
static const PropertyListBase & Default() noexcept
Definition H5PropertyList.hpp:124
HDF5 property Lists.
Definition H5PropertyList.hpp:158
void _initializeIfNeeded()
Definition H5PropertyList_misc.hpp:59
static PropertyList< T > Empty()
Definition H5PropertyList.hpp:185
static const PropertyList< T > & Default() noexcept
Return the Default property type object.
Definition H5PropertyList.hpp:176
constexpr PropertyType getType() const noexcept
return the type of this PropertyList
Definition H5PropertyList.hpp:162
void add(const P &property)
Definition H5PropertyList_misc.hpp:68
Definition H5PropertyList.hpp:215
void add(const F &funct, const Args &... args)
Definition H5PropertyList_misc.hpp:75
Definition H5PropertyList.hpp:546
Definition H5PropertyList.hpp:530
unsigned getPixelsPerBlock() const
Definition H5PropertyList_misc.hpp:334
unsigned getOptionsMask() const
Definition H5PropertyList_misc.hpp:330
Definition H5PropertyList.hpp:620
bool isCollective() const
Does the property request collective IO?
Definition H5PropertyList_misc.hpp:426
PropertyType
Types of property lists.
Definition H5PropertyList.hpp:89
PropertyList< PropertyType::FILE_ACCESS > FileAccessProps
Definition H5PropertyList.hpp:197
HDF5 file property object.
Definition assert_compatible_spaces.hpp:15
Definition H5PropertyList.hpp:666
_CreationOrder
Definition H5PropertyList.hpp:667
@ Tracked
Definition H5PropertyList.hpp:668
@ Indexed
Definition H5PropertyList.hpp:669