HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
H5PropertyList_misc.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 "h5p_wrapper.hpp"
12
13namespace HighFive {
14
15namespace {
16inline hid_t convert_plist_type(PropertyType propertyType) {
17 // The HP5_XXX are macros with function calls so we can't assign
18 // them as the enum values
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;
46 default:
47 HDF5ErrMapper::ToException<PropertyException>("Unsupported property list type");
48 }
49}
50
51} // namespace
52
53
55 : Object(H5P_DEFAULT) {}
56
57
58template <PropertyType T>
60 if (_hid != H5P_DEFAULT) {
61 return;
62 }
63 _hid = detail::h5p_create(convert_plist_type(T));
64}
65
66template <PropertyType T>
67template <PropertyInterface P>
68inline void PropertyList<T>::add(const P& property) {
69 _initializeIfNeeded();
70 property.apply(_hid);
71}
72
73template <PropertyType T>
74template <typename F, typename... Args>
75inline void RawPropertyList<T>::add(const F& funct, const Args&... args) {
76 this->_initializeIfNeeded();
77 if (funct(this->_hid, args...) < 0) {
78 HDF5ErrMapper::ToException<PropertyException>("Error setting raw hdf5 property.");
79 }
80}
81
82// Specific options to be added to Property Lists
83#if H5_VERSION_GE(1, 10, 1)
84inline FileSpaceStrategy::FileSpaceStrategy(H5F_fspace_strategy_t strategy,
85 hbool_t persist,
86 hsize_t threshold)
87 : _strategy(strategy)
88 , _persist(persist)
89 , _threshold(threshold) {}
90
91inline FileSpaceStrategy::FileSpaceStrategy(const FileCreateProps& fcpl) {
92 detail::h5p_get_file_space_strategy(fcpl.getId(), &_strategy, &_persist, &_threshold);
93}
94
95inline void FileSpaceStrategy::apply(const hid_t list) const {
96 detail::h5p_set_file_space_strategy(list, _strategy, _persist, _threshold);
97}
98
99inline H5F_fspace_strategy_t FileSpaceStrategy::getStrategy() const {
100 return _strategy;
101}
102
103inline hbool_t FileSpaceStrategy::getPersist() const {
104 return _persist;
105}
106
107inline hsize_t FileSpaceStrategy::getThreshold() const {
108 return _threshold;
109}
110
111inline FileSpacePageSize::FileSpacePageSize(hsize_t page_size)
112 : _page_size(page_size) {}
113
114inline void FileSpacePageSize::apply(const hid_t list) const {
115 detail::h5p_set_file_space_page_size(list, _page_size);
116}
117
118inline FileSpacePageSize::FileSpacePageSize(const FileCreateProps& fcpl) {
119 detail::h5p_get_file_space_page_size(fcpl.getId(), &_page_size);
120}
121
122inline hsize_t FileSpacePageSize::getPageSize() const {
123 return _page_size;
124}
125
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) {}
133
134inline PageBufferSize::PageBufferSize(const FileAccessProps& plist) {
135 detail::h5p_get_page_buffer_size(plist.getId(), &_page_buffer_size, &_min_meta, &_min_raw);
136}
137
138inline void PageBufferSize::apply(const hid_t list) const {
139 detail::h5p_set_page_buffer_size(list, _page_buffer_size, _min_meta, _min_raw);
140}
141
142inline size_t PageBufferSize::getPageBufferSize() const {
143 return _page_buffer_size;
144}
145
146inline unsigned PageBufferSize::getMinMetaPercent() const {
147 return _min_meta;
148}
149
150inline unsigned PageBufferSize::getMinRawPercent() const {
151 return _min_raw;
152}
153#endif
154#endif
155
156#ifdef H5_HAVE_PARALLEL
157
158inline MPIOFileAccess::MPIOFileAccess(MPI_Comm comm, MPI_Info info)
159 : _comm(comm)
160 , _info(info) {}
161
162inline void MPIOFileAccess::apply(const hid_t list) const {
163 detail::h5p_set_fapl_mpio(list, _comm, _info);
164}
165
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_};
170
171 read.apply(plist);
172 write.apply(plist);
173}
174
175inline MPIOCollectiveMetadata::MPIOCollectiveMetadata(bool collective)
176 : collective_read_(collective)
177 , collective_write_(collective) {}
178
179
180inline MPIOCollectiveMetadata::MPIOCollectiveMetadata(const FileAccessProps& plist)
181 : collective_read_(MPIOCollectiveMetadataRead(plist).isCollective())
182 , collective_write_(MPIOCollectiveMetadataWrite(plist).isCollective()) {}
183
184inline bool MPIOCollectiveMetadata::isCollectiveRead() const {
185 return collective_read_;
186}
187
188inline bool MPIOCollectiveMetadata::isCollectiveWrite() const {
189 return collective_write_;
190}
191
192
193inline void MPIOCollectiveMetadataRead::apply(const hid_t plist) const {
194 detail::h5p_set_all_coll_metadata_ops(plist, collective_);
195}
196
197inline bool MPIOCollectiveMetadataRead::isCollective() const {
198 return collective_;
199}
200
201inline MPIOCollectiveMetadataRead::MPIOCollectiveMetadataRead(const FileAccessProps& plist) {
202 detail::h5p_get_all_coll_metadata_ops(plist.getId(), &collective_);
203}
204
205inline MPIOCollectiveMetadataRead::MPIOCollectiveMetadataRead(bool collective)
206 : collective_(collective) {}
207
208inline void MPIOCollectiveMetadataWrite::apply(const hid_t plist) const {
209 detail::h5p_set_coll_metadata_write(plist, collective_);
210}
211
212inline bool MPIOCollectiveMetadataWrite::isCollective() const {
213 return collective_;
214}
215
216inline MPIOCollectiveMetadataWrite::MPIOCollectiveMetadataWrite(const FileAccessProps& plist) {
217 detail::h5p_get_coll_metadata_write(plist.getId(), &collective_);
218}
219
220inline MPIOCollectiveMetadataWrite::MPIOCollectiveMetadataWrite(bool collective)
221 : collective_(collective) {}
222
223#endif
224#endif
225
226inline FileVersionBounds::FileVersionBounds(H5F_libver_t low, H5F_libver_t high)
227 : _low(low)
228 , _high(high) {}
229
231 detail::h5p_get_libver_bounds(fapl.getId(), &_low, &_high);
232}
233
234inline std::pair<H5F_libver_t, H5F_libver_t> FileVersionBounds::getVersion() const {
235 return std::make_pair(_low, _high);
236}
237
238inline void FileVersionBounds::apply(const hid_t list) const {
239 detail::h5p_set_libver_bounds(list, _low, _high);
240}
241
243 : _size(size) {}
244
246 detail::h5p_get_meta_block_size(fapl.getId(), &_size);
247}
248
249inline void MetadataBlockSize::apply(const hid_t list) const {
250 detail::h5p_set_meta_block_size(list, _size);
251}
252
253inline hsize_t MetadataBlockSize::getSize() const {
254 return _size;
255}
256
257inline void EstimatedLinkInfo::apply(const hid_t hid) const {
258 detail::h5p_set_est_link_info(hid, _entries, _length);
259}
260
261inline EstimatedLinkInfo::EstimatedLinkInfo(unsigned entries, unsigned length)
262 : _entries(entries)
263 , _length(length) {}
264
266 detail::h5p_get_est_link_info(gcpl.getId(), &_entries, &_length);
267}
268
269inline unsigned EstimatedLinkInfo::getEntries() const {
270 return _entries;
271}
272
273inline unsigned EstimatedLinkInfo::getNameLength() const {
274 return _length;
275}
276
277inline void Chunking::apply(const hid_t hid) const {
278 detail::h5p_set_chunk(hid, static_cast<int>(_dims.size()), _dims.data());
279}
280
281inline Chunking::Chunking(const std::vector<hsize_t>& dims)
282 : _dims(dims) {}
283
284inline Chunking::Chunking(const std::initializer_list<hsize_t>& items)
285 : Chunking(std::vector<hsize_t>{items}) {}
286
287inline Chunking::Chunking(DataSetCreateProps& plist, size_t max_dims)
288 : _dims(max_dims + 1) {
289 auto n_loaded =
290 detail::h5p_get_chunk(plist.getId(), static_cast<int>(_dims.size()), _dims.data());
291
292 if (n_loaded >= static_cast<int>(_dims.size())) {
293 *this = Chunking(plist, 8 * max_dims);
294 } else {
295 _dims.resize(static_cast<size_t>(n_loaded));
296 }
297}
298
299inline const std::vector<hsize_t>& Chunking::getDimensions() const noexcept {
300 return _dims;
301}
302
303template <typename... Args>
304inline Chunking::Chunking(hsize_t item, Args... args)
305 : Chunking(std::vector<hsize_t>{item, static_cast<hsize_t>(args)...}) {}
306
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.");
310 }
311
312 detail::h5p_set_deflate(hid, _level);
313}
314
315inline Deflate::Deflate(unsigned int level)
316 : _level(level) {}
317
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.");
321 }
322
323 detail::h5p_set_szip(hid, _options_mask, _pixels_per_block);
324}
325
326inline Szip::Szip(unsigned int options_mask, unsigned int pixels_per_block)
327 : _options_mask(options_mask)
328 , _pixels_per_block(pixels_per_block) {}
329
330inline unsigned Szip::getOptionsMask() const {
331 return _options_mask;
332}
333
334inline unsigned Szip::getPixelsPerBlock() const {
335 return _pixels_per_block;
336}
337
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.");
341 }
342
343 detail::h5p_set_shuffle(hid);
344}
345
346inline AllocationTime::AllocationTime(H5D_alloc_time_t alloc_time)
347 : _alloc_time(alloc_time) {}
348
350 detail::h5p_get_alloc_time(dcpl.getId(), &_alloc_time);
351}
352
353inline void AllocationTime::apply(hid_t dcpl) const {
354 detail::h5p_set_alloc_time(dcpl, _alloc_time);
355}
356
357inline H5D_alloc_time_t AllocationTime::getAllocationTime() {
358 return _alloc_time;
359}
360
362 detail::h5p_get_chunk_cache(dcpl.getId(), &_numSlots, &_cacheSize, &_w0);
363}
364
365inline void Caching::apply(const hid_t hid) const {
366 detail::h5p_set_chunk_cache(hid, _numSlots, _cacheSize, _w0);
367}
368
369inline Caching::Caching(const size_t numSlots, const size_t cacheSize, const double w0)
370 : _numSlots(numSlots)
371 , _cacheSize(cacheSize)
372 , _w0(w0) {}
373
374inline size_t Caching::getNumSlots() const {
375 return _numSlots;
376}
377
378inline size_t Caching::getCacheSize() const {
379 return _cacheSize;
380}
381
382inline double Caching::getW0() const {
383 return _w0;
384}
385
387 : _create(create) {}
388
389inline void CreateIntermediateGroup::apply(const hid_t hid) const {
390 detail::h5p_set_create_intermediate_group(hid, _create ? 1 : 0);
391}
392
396
398 unsigned c_bool = 0;
399 _create = bool(detail::h5p_get_create_intermediate_group(hid, &c_bool));
400}
401
403 return _create;
404}
405
406#ifdef H5_HAVE_PARALLEL
408 : _enable(enable) {}
409
410inline void UseCollectiveIO::apply(const hid_t hid) const {
411 detail::h5p_set_dxpl_mpio(hid, _enable ? H5FD_MPIO_COLLECTIVE : H5FD_MPIO_INDEPENDENT);
412}
413
415 H5FD_mpio_xfer_t collective;
416
417 detail::h5p_get_dxpl_mpio(dxpl.getId(), &collective);
418
419 if (collective != H5FD_MPIO_COLLECTIVE && collective != H5FD_MPIO_INDEPENDENT) {
420 throw std::logic_error("H5Pget_dxpl_mpio returned something strange.");
421 }
422
423 _enable = collective == H5FD_MPIO_COLLECTIVE;
424}
425
426inline bool UseCollectiveIO::isCollective() const {
427 return _enable;
428}
429
431 detail::h5p_get_mpio_no_collective_cause(dxpl.getId(), &_local_cause, &_global_cause);
432}
433
435 return _local_cause == 0 && _global_cause == 0;
436}
437
439 return _local_cause;
440}
441
443 return _global_cause;
444}
445
446inline std::pair<uint32_t, uint32_t> MpioNoCollectiveCause::getCause() const {
447 return {_local_cause, _global_cause};
448}
449#endif
450
454
456 fromPropertyList(gcpl.getId());
457}
458
459inline unsigned LinkCreationOrder::getFlags() const {
460 return _flags;
461}
462
463inline void LinkCreationOrder::apply(const hid_t hid) const {
464 detail::h5p_set_link_creation_order(hid, _flags);
465}
466
468 detail::h5p_get_link_creation_order(hid, &_flags);
469}
470
471inline AttributePhaseChange::AttributePhaseChange(unsigned max_compact, unsigned min_dense)
472 : _max_compact(max_compact)
473 , _min_dense(min_dense) {}
474
476 detail::h5p_get_attr_phase_change(gcpl.getId(), &_max_compact, &_min_dense);
477}
478
479inline unsigned AttributePhaseChange::max_compact() const {
480 return _max_compact;
481}
482
483inline unsigned AttributePhaseChange::min_dense() const {
484 return _min_dense;
485}
486
487inline void AttributePhaseChange::apply(hid_t hid) const {
488 detail::h5p_set_attr_phase_change(hid, _max_compact, _min_dense);
489}
490
491
492} // namespace HighFive
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
CreateIntermediateGroup(bool create=true)
Definition H5PropertyList_misc.hpp:386
void fromPropertyList(hid_t hid)
Definition H5PropertyList_misc.hpp:397
bool isSet() const
Definition H5PropertyList_misc.hpp:402
Deflate(unsigned level)
Definition H5PropertyList_misc.hpp:315
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
MPIOFileAccess(MPI_Comm comm, MPI_Info info)
Definition H5PropertyList_misc.hpp:158
MetadataBlockSize(hsize_t size)
Definition H5PropertyList_misc.hpp:242
hsize_t getSize() const
Definition H5PropertyList_misc.hpp:253
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