HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
H5PropertyList.hpp
Go to the documentation of this file.
1/*
2 * Copyright (c), 2017-2018, Adrien Devresse <adrien.devresse@epfl.ch>
3 * Juan Hernando <juan.hernando@epfl.ch>
4 * Distributed under the Boost Software License, Version 1.0.
5 * (See accompanying file LICENSE_1_0.txt or copy at
6 * http://www.boost.org/LICENSE_1_0.txt)
7 *
8 */
9#pragma once
10
11#include <vector>
12
13#include <H5Ppublic.h>
14
15// Required by MPIOFileAccess
16#ifdef H5_HAVE_PARALLEL
17#include <H5FDmpi.h>
18#endif
19
20#include "H5Exception.hpp"
21#include "H5Object.hpp"
22
23namespace HighFive {
24
85
104
105namespace details {
106template <typename T, typename U>
107T get_plist(const U& obj, hid_t (*f)(hid_t)) {
108 auto hid = f(obj.getId());
109 if (hid < 0) {
110 HDF5ErrMapper::ToException<PropertyException>("Unable to get property list");
111 }
112 T t{};
113 t._hid = hid;
114 return t;
115}
116} // namespace details
117
121 public:
122 PropertyListBase() noexcept;
123
124 static const PropertyListBase& Default() noexcept {
125 static const PropertyListBase plist{};
126 return plist;
127 }
128
129 private:
130 template <typename T, typename U>
131 friend T details::get_plist(const U&, hid_t (*f)(hid_t));
132};
133
143#if HIGHFIVE_HAS_CONCEPTS && __cplusplus >= 202002L
144template <typename P>
145concept PropertyInterface = requires(P p, const hid_t hid) {
146 {p.apply(hid)};
147};
148
149#else
150#define PropertyInterface typename
151#endif
153
157template <PropertyType T>
159 public:
162 constexpr PropertyType getType() const noexcept {
163 return T;
164 }
165
171 template <PropertyInterface P>
172 void add(const P& property);
173
176 static const PropertyList<T>& Default() noexcept {
177 return static_cast<const PropertyList<T>&>(PropertyListBase::Default());
178 }
179
186 auto plist = PropertyList<T>();
187 plist._initializeIfNeeded();
188
189 return plist;
190 }
191
192 protected:
193 void _initializeIfNeeded();
194};
195
209
214template <PropertyType T>
216 public:
217 template <typename F, typename... Args>
218 void add(const F& funct, const Args&... args);
219};
220
221#ifdef H5_HAVE_PARALLEL
229 public:
230 MPIOFileAccess(MPI_Comm comm, MPI_Info info);
231
232 private:
233 friend FileAccessProps;
234 void apply(const hid_t list) const;
235
236 MPI_Comm _comm;
237 MPI_Info _info;
238};
239
240
241#if H5_VERSION_GE(1, 10, 0)
247class MPIOCollectiveMetadata {
248 public:
249 explicit MPIOCollectiveMetadata(bool collective = true);
250 explicit MPIOCollectiveMetadata(const FileAccessProps& plist);
251
252 bool isCollectiveRead() const;
253 bool isCollectiveWrite() const;
254
255
256 private:
257 friend FileAccessProps;
258 void apply(hid_t plist) const;
259
260 bool collective_read_;
261 bool collective_write_;
262};
263
277class MPIOCollectiveMetadataRead {
278 public:
279 explicit MPIOCollectiveMetadataRead(bool collective = true);
280 explicit MPIOCollectiveMetadataRead(const FileAccessProps& plist);
281
282 bool isCollective() const;
283
284 private:
285 friend FileAccessProps;
286 friend MPIOCollectiveMetadata;
287
288 void apply(hid_t plist) const;
289
290 bool collective_;
291};
292
303class MPIOCollectiveMetadataWrite {
304 public:
305 explicit MPIOCollectiveMetadataWrite(bool collective = true);
306 explicit MPIOCollectiveMetadataWrite(const FileAccessProps& plist);
307
308 bool isCollective() const;
309
310 private:
311 friend FileAccessProps;
312 friend MPIOCollectiveMetadata;
313
314 void apply(hid_t plist) const;
315
316 bool collective_;
317};
318
319#endif
320#endif
321
339 public:
340 FileVersionBounds(H5F_libver_t low, H5F_libver_t high);
341 explicit FileVersionBounds(const FileAccessProps& fapl);
342
343 std::pair<H5F_libver_t, H5F_libver_t> getVersion() const;
344
345 private:
346 friend FileAccessProps;
347 void apply(const hid_t list) const;
348
349 H5F_libver_t _low;
350 H5F_libver_t _high;
351};
352
359 public:
360 explicit MetadataBlockSize(hsize_t size);
361 explicit MetadataBlockSize(const FileAccessProps& fapl);
362
363 hsize_t getSize() const;
364
365 private:
366 friend FileAccessProps;
367 void apply(const hid_t list) const;
368 hsize_t _size;
369};
370
371#if H5_VERSION_GE(1, 10, 1)
378class FileSpaceStrategy {
379 public:
386 FileSpaceStrategy(H5F_fspace_strategy_t strategy, hbool_t persist, hsize_t threshold);
387 explicit FileSpaceStrategy(const FileCreateProps& fcpl);
388
389 H5F_fspace_strategy_t getStrategy() const;
390 hbool_t getPersist() const;
391 hsize_t getThreshold() const;
392
393 private:
394 friend FileCreateProps;
395
396 void apply(const hid_t list) const;
397
398 H5F_fspace_strategy_t _strategy;
399 hbool_t _persist;
400 hsize_t _threshold;
401};
402
412class FileSpacePageSize {
413 public:
418 explicit FileSpacePageSize(hsize_t page_size);
419 explicit FileSpacePageSize(const FileCreateProps& fcpl);
420
421 hsize_t getPageSize() const;
422
423 private:
424 friend FileCreateProps;
425 void apply(const hid_t list) const;
426
427 hsize_t _page_size;
428};
429
430#ifndef H5_HAVE_PARALLEL
442class PageBufferSize {
443 public:
449 explicit PageBufferSize(size_t page_buffer_size,
450 unsigned min_meta_percent = 0,
451 unsigned min_raw_percent = 0);
452
453 explicit PageBufferSize(const FileAccessProps& fapl);
454
455 size_t getPageBufferSize() const;
456 unsigned getMinMetaPercent() const;
457 unsigned getMinRawPercent() const;
458
459 private:
460 friend FileAccessProps;
461
462 void apply(hid_t list) const;
463
464 size_t _page_buffer_size;
465 unsigned _min_meta;
466 unsigned _min_raw;
467};
468#endif
469#endif
470
475 public:
480 explicit EstimatedLinkInfo(unsigned entries, unsigned length);
481
482 explicit EstimatedLinkInfo(const GroupCreateProps& gcpl);
483
485 unsigned getEntries() const;
486
488 unsigned getNameLength() const;
489
490 private:
491 friend GroupCreateProps;
492 void apply(hid_t hid) const;
493 unsigned _entries;
494 unsigned _length;
495};
496
497
499class Chunking {
500 public:
501 explicit Chunking(const std::vector<hsize_t>& dims);
502 Chunking(const std::initializer_list<hsize_t>& items);
503
504 template <typename... Args>
505 explicit Chunking(hsize_t item, Args... args);
506
507 explicit Chunking(DataSetCreateProps& plist, size_t max_dims = 32);
508
509 const std::vector<hsize_t>& getDimensions() const noexcept;
510
511 private:
512 friend DataSetCreateProps;
513 void apply(hid_t hid) const;
514 std::vector<hsize_t> _dims;
515};
516
518class Deflate {
519 public:
520 explicit Deflate(unsigned level);
521
522 private:
523 friend DataSetCreateProps;
524 friend GroupCreateProps;
525 void apply(hid_t hid) const;
526 const unsigned _level;
527};
528
530class Szip {
531 public:
532 explicit Szip(unsigned options_mask = H5_SZIP_EC_OPTION_MASK,
533 unsigned pixels_per_block = H5_SZIP_MAX_PIXELS_PER_BLOCK);
534
535 unsigned getOptionsMask() const;
536 unsigned getPixelsPerBlock() const;
537
538 private:
539 friend DataSetCreateProps;
540 void apply(hid_t hid) const;
541 const unsigned _options_mask;
542 const unsigned _pixels_per_block;
543};
544
546class Shuffle {
547 public:
548 Shuffle() = default;
549
550 private:
551 friend DataSetCreateProps;
552 void apply(hid_t hid) const;
553};
554
562 public:
563 explicit AllocationTime(H5D_alloc_time_t alloc_time);
564 explicit AllocationTime(const DataSetCreateProps& dcpl);
565
566 H5D_alloc_time_t getAllocationTime();
567
568 private:
569 friend DataSetCreateProps;
570 void apply(hid_t dcpl) const;
571
572 H5D_alloc_time_t _alloc_time;
573};
574
578class Caching {
579 public:
582 Caching(const size_t numSlots,
583 const size_t cacheSize,
584 const double w0 = static_cast<double>(H5D_CHUNK_CACHE_W0_DEFAULT));
585
586 explicit Caching(const DataSetCreateProps& dcpl);
587
588 size_t getNumSlots() const;
589 size_t getCacheSize() const;
590 double getW0() const;
591
592 private:
593 friend DataSetAccessProps;
594 void apply(hid_t hid) const;
595 size_t _numSlots;
596 size_t _cacheSize;
597 double _w0;
598};
599
602 public:
603 explicit CreateIntermediateGroup(bool create = true);
604
605 explicit CreateIntermediateGroup(const LinkCreateProps& lcpl);
606
607 bool isSet() const;
608
609 protected:
610 void fromPropertyList(hid_t hid);
611
612 private:
613 friend LinkCreateProps;
614 void apply(hid_t hid) const;
615 bool _create;
616};
617
618#ifdef H5_HAVE_PARALLEL
621 public:
622 explicit UseCollectiveIO(bool enable = true);
623
624 explicit UseCollectiveIO(const DataTransferProps& dxpl);
625
627 bool isCollective() const;
628
629 private:
630 friend DataTransferProps;
631 void apply(hid_t hid) const;
632 bool _enable;
633};
634
635
644 public:
645 explicit MpioNoCollectiveCause(const DataTransferProps& dxpl);
646
648 bool wasCollective() const;
649
651 uint32_t getLocalCause() const;
652
654 uint32_t getGlobalCause() const;
655
657 std::pair<uint32_t, uint32_t> getCause() const;
658
659 private:
660 friend DataTransferProps;
661 uint32_t _local_cause;
662 uint32_t _global_cause;
663};
664#endif
665
668 Tracked = H5P_CRT_ORDER_TRACKED,
669 Indexed = H5P_CRT_ORDER_INDEXED,
670 };
671};
672
680 public:
685 explicit LinkCreationOrder(unsigned flags)
686 : _flags(flags) {}
687
688 explicit LinkCreationOrder(const FileCreateProps& fcpl);
689 explicit LinkCreationOrder(const GroupCreateProps& gcpl);
690
691 unsigned getFlags() const;
692
693 protected:
694 void fromPropertyList(hid_t hid);
695
696 private:
697 friend FileCreateProps;
698 friend GroupCreateProps;
699 void apply(hid_t hid) const;
700 unsigned _flags;
701};
702
703
716 public:
723 AttributePhaseChange(unsigned max_compact, unsigned min_dense);
724
726 explicit AttributePhaseChange(const GroupCreateProps& gcpl);
727
728 unsigned max_compact() const;
729 unsigned min_dense() const;
730
731 private:
732 friend GroupCreateProps;
733 void apply(hid_t hid) const;
734
735 unsigned _max_compact;
736 unsigned _min_dense;
737};
738
740
741} // namespace HighFive
742
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:601
void fromPropertyList(hid_t hid)
Definition H5PropertyList_misc.hpp:397
bool isSet() const
Definition H5PropertyList_misc.hpp:402
Definition H5PropertyList.hpp:518
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
Configure MPI access for the file.
Definition H5PropertyList.hpp:228
Configure the metadata block size to use writing to files.
Definition H5PropertyList.hpp:358
hsize_t getSize() const
Definition H5PropertyList_misc.hpp:253
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