diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 000000000..e69de29bb diff --git a/_c_h_a_n_g_e_l_o_g_8md.html b/_c_h_a_n_g_e_l_o_g_8md.html new file mode 100644 index 000000000..38c063c3c --- /dev/null +++ b/_c_h_a_n_g_e_l_o_g_8md.html @@ -0,0 +1,109 @@ + + + + + + + +HighFive: /home/runner/work/HighFive/HighFive/CHANGELOG.md File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
/home/runner/work/HighFive/HighFive/CHANGELOG.md File Reference
+
+
+
+
+ + + + diff --git a/_h5__definitions_8hpp.html b/_h5__definitions_8hpp.html new file mode 100644 index 000000000..ccba56269 --- /dev/null +++ b/_h5__definitions_8hpp.html @@ -0,0 +1,300 @@ + + + + + + + +HighFive: highfive/bits/H5_definitions.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5_definitions.hpp File Reference
+
+
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + + +

+Namespaces

namespace  HighFive
 
namespace  HighFive::deprecated
 
+ + + + + +

+Macros

#define H5_DEPRECATED(msg)
 
#define H5_DEPRECATED_USING(msg)
 
+

Macro Definition Documentation

+ +

◆ H5_DEPRECATED

+ +
+
+ + + + + + + +
#define H5_DEPRECATED( msg)
+
+ +
+
+ +

◆ H5_DEPRECATED_USING

+ +
+
+ + + + + + + +
#define H5_DEPRECATED_USING( msg)
+
+ +
+
+
+
+ + + + diff --git a/_h5__definitions_8hpp.js b/_h5__definitions_8hpp.js new file mode 100644 index 000000000..130cb5f97 --- /dev/null +++ b/_h5__definitions_8hpp.js @@ -0,0 +1,5 @@ +var _h5__definitions_8hpp = +[ + [ "H5_DEPRECATED", "_h5__definitions_8hpp.html#ac2f1b4314e067c8a44383228d8a47cce", null ], + [ "H5_DEPRECATED_USING", "_h5__definitions_8hpp.html#aa4ffeead789d7234fbd1920500bcf448", null ] +]; \ No newline at end of file diff --git a/_h5__definitions_8hpp__dep__incl.map b/_h5__definitions_8hpp__dep__incl.map new file mode 100644 index 000000000..2ffbba3ed --- /dev/null +++ b/_h5__definitions_8hpp__dep__incl.map @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5__definitions_8hpp__dep__incl.md5 b/_h5__definitions_8hpp__dep__incl.md5 new file mode 100644 index 000000000..c09e1e4a6 --- /dev/null +++ b/_h5__definitions_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +7497ceaba3280c0dddbef010b7ab4940 \ No newline at end of file diff --git a/_h5__definitions_8hpp__dep__incl.png b/_h5__definitions_8hpp__dep__incl.png new file mode 100644 index 000000000..45b21e60d Binary files /dev/null and b/_h5__definitions_8hpp__dep__incl.png differ diff --git a/_h5__definitions_8hpp_source.html b/_h5__definitions_8hpp_source.html new file mode 100644 index 000000000..da43b545b --- /dev/null +++ b/_h5__definitions_8hpp_source.html @@ -0,0 +1,199 @@ + + + + + + + +HighFive: highfive/bits/H5_definitions.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5_definitions.hpp
+
+
+Go to the documentation of this file.
1#pragma once
+
2
+
3#if defined(__GNUC__) || defined(__clang__)
+
4#define H5_DEPRECATED(msg) __attribute__((deprecated(#msg)))
+
5#elif defined(_MSC_VER)
+
6#define H5_DEPRECATED(msg) __declspec(deprecated(#msg))
+
7#else
+
8#pragma message("WARNING: Compiler doesn't support deprecation")
+
9#define H5_DEPRECATED(msg)
+
10#endif
+
11
+
12#if defined(__GNUC__) || defined(__clang__)
+
13#define H5_DEPRECATED_USING(msg) H5_DEPRECATED((msg))
+
14#else
+
15#pragma message("WARNING: Compiler doesn't support deprecating using statements.")
+
16#define H5_DEPRECATED_USING(msg)
+
17#endif
+
18
+
19
+
20// Forward declarations
+
21
+
+
22namespace HighFive {
+
23
+
24enum class LinkType;
+
25enum class ObjectType;
+
26enum class PropertyType;
+
27
+
28class Attribute;
+
29class DataSet;
+
30class DataSpace;
+
31class DataType;
+
32class Exception;
+
33class File;
+
34class FileDriver;
+
35class Group;
+
36class Object;
+
37class ObjectInfo;
+
38class Reference;
+
39class Selection;
+
40class SilenceHDF5;
+
41
+
42template <typename T>
+
43class AtomicType;
+
44
+
45template <typename Derivate>
+
46class AnnotateTraits;
+
47
+
+
48namespace deprecated {
+
49template <std::size_t N>
+ +
51}
+
+
52
+
53template <typename Derivate>
+
54class NodeTraits;
+
55
+
56template <PropertyType T>
+
57class PropertyList;
+
58
+
59} // namespace HighFive
+
+
Definition H5Annotate_traits.hpp:18
+
create an HDF5 DataType from a C++ type
Definition H5DataType.hpp:187
+
Class representing an Attribute of a DataSet or Group.
Definition H5Attribute.hpp:46
+
Class representing a dataset.
Definition H5DataSet.hpp:30
+
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
+
HDF5 Data Type.
Definition H5DataType.hpp:61
+
Basic HighFive Exception class.
Definition H5Exception.hpp:23
+
file driver base concept
Definition H5FileDriver.hpp:18
+
File class.
Definition H5File.hpp:24
+
Represents an hdf5 group.
Definition H5Group.hpp:46
+
NodeTraits: Base class for Group and File.
Definition H5Node_traits.hpp:28
+
Definition H5Object.hpp:54
+
A class for accessing hdf5 objects info.
Definition H5Object.hpp:126
+
HDF5 property Lists.
Definition H5PropertyList.hpp:160
+
An HDF5 (object) reference type.
Definition H5Reference.hpp:33
+
Selection: represent a view on a slice/part of a dataset.
Definition H5Selection.hpp:27
+
Utility class to disable HDF5 stack printing inside a scope.
Definition H5Utility.hpp:24
+
A structure representing a set of fixed-length strings.
Definition H5DataType.hpp:356
+
PropertyType
Types of property lists.
Definition H5PropertyList.hpp:89
+
Definition H5_definitions.hpp:22
+
LinkType
The possible types of group entries (link concept)
Definition H5Node_traits.hpp:237
+
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24
+
+
+ + + + diff --git a/_h5_annotate__traits_8hpp.html b/_h5_annotate__traits_8hpp.html new file mode 100644 index 000000000..7dadf0ab4 --- /dev/null +++ b/_h5_annotate__traits_8hpp.html @@ -0,0 +1,338 @@ + + + + + + + +HighFive: highfive/bits/H5Annotate_traits.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Annotate_traits.hpp File Reference
+
+
+
#include <string>
+#include "../H5Attribute.hpp"
+
+Include dependency graph for H5Annotate_traits.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Classes

class  HighFive::AnnotateTraits< Derivate >
 
+ + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_annotate__traits_8hpp.js b/_h5_annotate__traits_8hpp.js new file mode 100644 index 000000000..bd6ede4fd --- /dev/null +++ b/_h5_annotate__traits_8hpp.js @@ -0,0 +1,4 @@ +var _h5_annotate__traits_8hpp = +[ + [ "HighFive::AnnotateTraits< Derivate >", "class_high_five_1_1_annotate_traits.html", "class_high_five_1_1_annotate_traits" ] +]; \ No newline at end of file diff --git a/_h5_annotate__traits_8hpp__dep__incl.map b/_h5_annotate__traits_8hpp__dep__incl.map new file mode 100644 index 000000000..9c5c13243 --- /dev/null +++ b/_h5_annotate__traits_8hpp__dep__incl.map @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_annotate__traits_8hpp__dep__incl.md5 b/_h5_annotate__traits_8hpp__dep__incl.md5 new file mode 100644 index 000000000..ea1e07a00 --- /dev/null +++ b/_h5_annotate__traits_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +b25e093ae6a5422c7ecb05850c19f6ea \ No newline at end of file diff --git a/_h5_annotate__traits_8hpp__dep__incl.png b/_h5_annotate__traits_8hpp__dep__incl.png new file mode 100644 index 000000000..3aeeb4f9a Binary files /dev/null and b/_h5_annotate__traits_8hpp__dep__incl.png differ diff --git a/_h5_annotate__traits_8hpp__incl.map b/_h5_annotate__traits_8hpp__incl.map new file mode 100644 index 000000000..d722f97c2 --- /dev/null +++ b/_h5_annotate__traits_8hpp__incl.map @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_annotate__traits_8hpp__incl.md5 b/_h5_annotate__traits_8hpp__incl.md5 new file mode 100644 index 000000000..78e16b70e --- /dev/null +++ b/_h5_annotate__traits_8hpp__incl.md5 @@ -0,0 +1 @@ +51e0f627f9c290c70015b155549af68f \ No newline at end of file diff --git a/_h5_annotate__traits_8hpp__incl.png b/_h5_annotate__traits_8hpp__incl.png new file mode 100644 index 000000000..12a8537f0 Binary files /dev/null and b/_h5_annotate__traits_8hpp__incl.png differ diff --git a/_h5_annotate__traits_8hpp_source.html b/_h5_annotate__traits_8hpp_source.html new file mode 100644 index 000000000..0bea14807 --- /dev/null +++ b/_h5_annotate__traits_8hpp_source.html @@ -0,0 +1,171 @@ + + + + + + + +HighFive: highfive/bits/H5Annotate_traits.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Annotate_traits.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 <string>
+
12
+
13#include "../H5Attribute.hpp"
+
14
+
15namespace HighFive {
+
16
+
17template <typename Derivate>
+
+ +
19 public:
+
27 Attribute createAttribute(const std::string& attribute_name,
+
28 const DataSpace& space,
+
29 const DataType& type);
+
30
+
38 template <typename Type>
+
39 Attribute createAttribute(const std::string& attribute_name, const DataSpace& space);
+
40
+
49 template <typename T>
+
50 Attribute createAttribute(const std::string& attribute_name, const T& data);
+
51
+
55 void deleteAttribute(const std::string& attribute_name);
+
56
+
61 Attribute getAttribute(const std::string& attribute_name) const;
+
62
+
66 size_t getNumberAttributes() const;
+
67
+
71 std::vector<std::string> listAttributeNames() const;
+
72
+
76 bool hasAttribute(const std::string& attr_name) const;
+
77
+
78 private:
+
79 using derivate_type = Derivate;
+
80};
+
+
81} // namespace HighFive
+ +
Definition H5Annotate_traits.hpp:18
+
Attribute createAttribute(const std::string &attribute_name, const DataSpace &space, const DataType &type)
create a new attribute with the name attribute_name
Definition H5Annotate_traits_misc.hpp:24
+
std::vector< std::string > listAttributeNames() const
list all attribute name of the node / group
Definition H5Annotate_traits_misc.hpp:75
+
void deleteAttribute(const std::string &attribute_name)
deleteAttribute let you delete an attribute by its name.
Definition H5Annotate_traits_misc.hpp:56
+
Attribute getAttribute(const std::string &attribute_name) const
open an existing attribute with the name attribute_name
Definition H5Annotate_traits_misc.hpp:61
+
bool hasAttribute(const std::string &attr_name) const
checks an attribute exists
Definition H5Annotate_traits_misc.hpp:93
+
size_t getNumberAttributes() const
return the number of attributes of the node / group
Definition H5Annotate_traits_misc.hpp:69
+
Class representing an Attribute of a DataSet or Group.
Definition H5Attribute.hpp:46
+
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
+
HDF5 Data Type.
Definition H5DataType.hpp:61
+
Definition H5_definitions.hpp:22
+
+
+ + + + diff --git a/_h5_annotate__traits__misc_8hpp.html b/_h5_annotate__traits__misc_8hpp.html new file mode 100644 index 000000000..ac88145a8 --- /dev/null +++ b/_h5_annotate__traits__misc_8hpp.html @@ -0,0 +1,343 @@ + + + + + + + +HighFive: highfive/bits/H5Annotate_traits_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Annotate_traits_misc.hpp File Reference
+
+
+
#include <string>
+#include <vector>
+#include <H5Apublic.h>
+#include <H5Ppublic.h>
+#include "H5Attribute_misc.hpp"
+#include "H5Iterables_misc.hpp"
+#include "h5a_wrapper.hpp"
+
+Include dependency graph for H5Annotate_traits_misc.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_annotate__traits__misc_8hpp__dep__incl.map b/_h5_annotate__traits__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..e4031d0f4 --- /dev/null +++ b/_h5_annotate__traits__misc_8hpp__dep__incl.map @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_annotate__traits__misc_8hpp__dep__incl.md5 b/_h5_annotate__traits__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..7cc36039f --- /dev/null +++ b/_h5_annotate__traits__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +d0d9af31102048f976c29315b82ed19d \ No newline at end of file diff --git a/_h5_annotate__traits__misc_8hpp__dep__incl.png b/_h5_annotate__traits__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..bc24df835 Binary files /dev/null and b/_h5_annotate__traits__misc_8hpp__dep__incl.png differ diff --git a/_h5_annotate__traits__misc_8hpp__incl.map b/_h5_annotate__traits__misc_8hpp__incl.map new file mode 100644 index 000000000..bc7531280 --- /dev/null +++ b/_h5_annotate__traits__misc_8hpp__incl.map @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_annotate__traits__misc_8hpp__incl.md5 b/_h5_annotate__traits__misc_8hpp__incl.md5 new file mode 100644 index 000000000..3601512c5 --- /dev/null +++ b/_h5_annotate__traits__misc_8hpp__incl.md5 @@ -0,0 +1 @@ +11800c059b7e8949cc3affb97110f40d \ No newline at end of file diff --git a/_h5_annotate__traits__misc_8hpp__incl.png b/_h5_annotate__traits__misc_8hpp__incl.png new file mode 100644 index 000000000..362c8c58f Binary files /dev/null and b/_h5_annotate__traits__misc_8hpp__incl.png differ diff --git a/_h5_annotate__traits__misc_8hpp_source.html b/_h5_annotate__traits__misc_8hpp_source.html new file mode 100644 index 000000000..7019e4d04 --- /dev/null +++ b/_h5_annotate__traits__misc_8hpp_source.html @@ -0,0 +1,256 @@ + + + + + + + +HighFive: highfive/bits/H5Annotate_traits_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Annotate_traits_misc.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 <string>
+
12#include <vector>
+
13
+
14#include <H5Apublic.h>
+
15#include <H5Ppublic.h>
+
16
+
17#include "H5Attribute_misc.hpp"
+
18#include "H5Iterables_misc.hpp"
+
19#include "h5a_wrapper.hpp"
+
20
+
21namespace HighFive {
+
22
+
23template <typename Derivate>
+
+
24inline Attribute AnnotateTraits<Derivate>::createAttribute(const std::string& attribute_name,
+
25 const DataSpace& space,
+
26 const DataType& dtype) {
+
+
27 auto attr_id = detail::h5a_create2(static_cast<Derivate*>(this)->getId(),
+
28 attribute_name.c_str(),
+
29 dtype.getId(),
+
30 space.getId(),
+
31 H5P_DEFAULT,
+
32 H5P_DEFAULT);
+
33 return detail::make_attribute(attr_id);
+
34}
+
+
+
35
+
36template <typename Derivate>
+
37template <typename Type>
+
+
38inline Attribute AnnotateTraits<Derivate>::createAttribute(const std::string& attribute_name,
+
+
39 const DataSpace& space) {
+
40 return createAttribute(attribute_name, space, create_and_check_datatype<Type>());
+
41}
+
+
+
42
+
43template <typename Derivate>
+
44template <typename T>
+
+
45inline Attribute AnnotateTraits<Derivate>::createAttribute(const std::string& attribute_name,
+
46 const T& data) {
+
47 Attribute att =
+
48 createAttribute(attribute_name,
+
49 DataSpace::From(data),
+
+
50 create_and_check_datatype<typename details::inspector<T>::base_type>());
+
51 att.write(data);
+
52 return att;
+
53}
+
+
+
54
+
+
55template <typename Derivate>
+
+
56inline void AnnotateTraits<Derivate>::deleteAttribute(const std::string& attribute_name) {
+
57 detail::h5a_delete(static_cast<const Derivate*>(this)->getId(), attribute_name.c_str());
+
58}
+
+
+
59
+
60template <typename Derivate>
+
+
61inline Attribute AnnotateTraits<Derivate>::getAttribute(const std::string& attribute_name) const {
+
62 const auto attr_id = detail::h5a_open(static_cast<const Derivate*>(this)->getId(),
+
63 attribute_name.c_str(),
+
64 H5P_DEFAULT);
+
65 return detail::make_attribute(attr_id);
+ +
+
67
+
68template <typename Derivate>
+
+ +
70 int res = detail::h5a_get_num_attrs(static_cast<const Derivate*>(this)->getId());
+
+
71 return static_cast<size_t>(res);
+
72}
+
73
+
74template <typename Derivate>
+
+
75inline std::vector<std::string> AnnotateTraits<Derivate>::listAttributeNames() const {
+
+
76 std::vector<std::string> names;
+
77 details::HighFiveIterateData iterateData(names);
+
78
+
79 size_t num_objs = getNumberAttributes();
+
80 names.reserve(num_objs);
+
81
+
82 detail::h5a_iterate2(static_cast<const Derivate*>(this)->getId(),
+
83 H5_INDEX_NAME,
+
84 H5_ITER_INC,
+
85 nullptr,
+
86 &details::internal_high_five_iterate<H5A_info_t>,
+
87 static_cast<void*>(&iterateData));
+
88
+
89 return names;
+
90}
+
91
+
92template <typename Derivate>
+
+
93inline bool AnnotateTraits<Derivate>::hasAttribute(const std::string& attr_name) const {
+
94 return detail::h5a_exists(static_cast<const Derivate*>(this)->getId(), attr_name.c_str()) > 0;
+
95}
+
+
+
96
+
97} // namespace HighFive
+
+
+
+ + +
Attribute createAttribute(const std::string &attribute_name, const DataSpace &space, const DataType &type)
create a new attribute with the name attribute_name
Definition H5Annotate_traits_misc.hpp:24
+
std::vector< std::string > listAttributeNames() const
list all attribute name of the node / group
Definition H5Annotate_traits_misc.hpp:75
+
void deleteAttribute(const std::string &attribute_name)
deleteAttribute let you delete an attribute by its name.
Definition H5Annotate_traits_misc.hpp:56
+
Attribute getAttribute(const std::string &attribute_name) const
open an existing attribute with the name attribute_name
Definition H5Annotate_traits_misc.hpp:61
+
bool hasAttribute(const std::string &attr_name) const
checks an attribute exists
Definition H5Annotate_traits_misc.hpp:93
+
size_t getNumberAttributes() const
return the number of attributes of the node / group
Definition H5Annotate_traits_misc.hpp:69
+
Class representing an Attribute of a DataSet or Group.
Definition H5Attribute.hpp:46
+
void write(const T &value)
Write the value into the Attribute.
Definition H5Attribute_misc.hpp:131
+
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
+
static DataSpace From(const T &value)
Automatically deduce the DataSpace from a container/value.
Definition H5Dataspace_misc.hpp:128
+
HDF5 Data Type.
Definition H5DataType.hpp:61
+
hid_t getId() const noexcept
getId
Definition H5Object_misc.hpp:69
+ +
Definition H5_definitions.hpp:22
+
DataType create_and_check_datatype()
Create a DataType instance representing type T and perform a sanity check on its size.
Definition H5DataType_misc.hpp:486
+
+
+ + + + diff --git a/_h5_attribute_8hpp.html b/_h5_attribute_8hpp.html new file mode 100644 index 000000000..d0b4e5301 --- /dev/null +++ b/_h5_attribute_8hpp.html @@ -0,0 +1,346 @@ + + + + + + + +HighFive: highfive/H5Attribute.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Attribute.hpp File Reference
+
+
+
#include <vector>
+#include <H5Apublic.h>
+#include "H5DataType.hpp"
+#include "H5Object.hpp"
+#include "bits/H5Friends.hpp"
+#include "bits/H5Path_traits.hpp"
+
+Include dependency graph for H5Attribute.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + +

+Classes

class  HighFive::Attribute
 Class representing an Attribute of a DataSet or Group. More...
 
+ + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_attribute_8hpp.js b/_h5_attribute_8hpp.js new file mode 100644 index 000000000..07d5fd431 --- /dev/null +++ b/_h5_attribute_8hpp.js @@ -0,0 +1,4 @@ +var _h5_attribute_8hpp = +[ + [ "HighFive::Attribute", "class_high_five_1_1_attribute.html", "class_high_five_1_1_attribute" ] +]; \ No newline at end of file diff --git a/_h5_attribute_8hpp__dep__incl.map b/_h5_attribute_8hpp__dep__incl.map new file mode 100644 index 000000000..834341bad --- /dev/null +++ b/_h5_attribute_8hpp__dep__incl.map @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_attribute_8hpp__dep__incl.md5 b/_h5_attribute_8hpp__dep__incl.md5 new file mode 100644 index 000000000..f276103a0 --- /dev/null +++ b/_h5_attribute_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +1ecdaf6a1a49ab6ae59516e9559b2dff \ No newline at end of file diff --git a/_h5_attribute_8hpp__dep__incl.png b/_h5_attribute_8hpp__dep__incl.png new file mode 100644 index 000000000..455ba3281 Binary files /dev/null and b/_h5_attribute_8hpp__dep__incl.png differ diff --git a/_h5_attribute_8hpp__incl.map b/_h5_attribute_8hpp__incl.map new file mode 100644 index 000000000..2f1706b1c --- /dev/null +++ b/_h5_attribute_8hpp__incl.map @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_attribute_8hpp__incl.md5 b/_h5_attribute_8hpp__incl.md5 new file mode 100644 index 000000000..9eeadf205 --- /dev/null +++ b/_h5_attribute_8hpp__incl.md5 @@ -0,0 +1 @@ +174d6c94986b0686d3790a66782426b6 \ No newline at end of file diff --git a/_h5_attribute_8hpp__incl.png b/_h5_attribute_8hpp__incl.png new file mode 100644 index 000000000..64effebb3 Binary files /dev/null and b/_h5_attribute_8hpp__incl.png differ diff --git a/_h5_attribute_8hpp_source.html b/_h5_attribute_8hpp_source.html new file mode 100644 index 000000000..78b4fbaa5 --- /dev/null +++ b/_h5_attribute_8hpp_source.html @@ -0,0 +1,239 @@ + + + + + + + +HighFive: highfive/H5Attribute.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Attribute.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Ali Can Demiralp <ali.demiralp@rwth-aachen.de>
+
3 *
+
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 <H5Apublic.h>
+
14
+
15#include "H5DataType.hpp"
+
16#include "H5Object.hpp"
+
17#include "bits/H5Friends.hpp"
+ +
19
+
20namespace HighFive {
+
21class DataSpace;
+
22
+
23namespace detail {
+
24
+
40Attribute make_attribute(hid_t hid);
+
41} // namespace detail
+
42
+
+
46class Attribute: public Object, public PathTraits<Attribute> {
+
47 public:
+ +
49
+
56 std::string getName() const;
+
57
+
63 size_t getStorageSize() const;
+
64
+
71 DataType getDataType() const;
+
72
+
79 DataSpace getSpace() const;
+
80
+
84 DataSpace getMemSpace() const;
+
85
+
93 template <typename T>
+
94 T read() const;
+
95
+
113 template <typename T>
+
114 void read(T& array) const;
+
115
+
118 template <typename T>
+
119 void read(T* array, const DataType& mem_datatype) const;
+
120
+
123 template <typename T>
+
124 void read(T* array) const;
+
125
+
144 template <typename T>
+
145 void read_raw(T* array, const DataType& mem_datatype) const;
+
146
+
166 template <typename T>
+
167 void read_raw(T* array) const;
+
168
+
186 template <typename T>
+
187 void write(const T& value);
+
188
+
212 template <typename T>
+
213 void write_raw(const T* buffer, const DataType& mem_datatype);
+
214
+
235 template <typename T>
+
236 void write_raw(const T* buffer);
+
237
+
+ +
252 return details::get_plist<AttributeCreateProps>(*this, H5Aget_create_plist);
+
253 }
+
+
254
+
255 // No empty attributes
+
256 Attribute() = delete;
+
257
+
258 protected:
+
259 using Object::Object;
+
260
+
261 private:
+
262#if HIGHFIVE_HAS_FRIEND_DECLARATIONS
+
263 template <typename Derivate>
+
264 friend class ::HighFive::AnnotateTraits;
+
265#endif
+
266
+
267 friend Attribute detail::make_attribute(hid_t);
+
268};
+
+
269
+
270namespace detail {
+
271inline Attribute make_attribute(hid_t hid) {
+
272 return Attribute(hid);
+
273}
+
274} // namespace detail
+
275
+
276} // namespace HighFive
+ + + + +
Class representing an Attribute of a DataSet or Group.
Definition H5Attribute.hpp:46
+
DataSpace getSpace() const
Get the DataSpace of the current Attribute.
Definition H5Attribute_misc.hpp:43
+
DataType getDataType() const
Get the DataType of the Attribute.
Definition H5Attribute_misc.hpp:37
+
void read_raw(T *array, const DataType &mem_datatype) const
Read the attribute into a pre-allocated buffer.
Definition H5Attribute_misc.hpp:110
+
std::string getName() const
Get the name of the current Attribute.
Definition H5Attribute_misc.hpp:28
+
static const ObjectType type
Definition H5Attribute.hpp:48
+
T read() const
Get the value of the Attribute.
Definition H5Attribute_misc.hpp:54
+
DataSpace getMemSpace() const
Get the DataSpace of the current Attribute.
Definition H5Attribute_misc.hpp:49
+
void write(const T &value)
Write the value into the Attribute.
Definition H5Attribute_misc.hpp:131
+ +
void write_raw(const T *buffer, const DataType &mem_datatype)
Write from a raw pointer.
Definition H5Attribute_misc.hpp:156
+
size_t getStorageSize() const
The number of bytes required to store the attribute in the HDF5 file.
Definition H5Attribute_misc.hpp:33
+
AttributeCreateProps getCreatePropertyList() const
The create property list used for this attribute.
Definition H5Attribute.hpp:251
+
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
+
HDF5 Data Type.
Definition H5DataType.hpp:61
+
Definition H5Object.hpp:54
+
Object()
Definition H5Object_misc.hpp:25
+
Definition H5Path_traits.hpp:16
+
HDF5 property Lists.
Definition H5PropertyList.hpp:160
+
Definition H5_definitions.hpp:22
+
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24
+ + +
+
+ + + + diff --git a/_h5_attribute__misc_8hpp.html b/_h5_attribute__misc_8hpp.html new file mode 100644 index 000000000..b2c152a71 --- /dev/null +++ b/_h5_attribute__misc_8hpp.html @@ -0,0 +1,341 @@ + + + + + + + +HighFive: highfive/bits/H5Attribute_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Attribute_misc.hpp File Reference
+
+
+
#include <algorithm>
+#include <functional>
+#include <numeric>
+#include <sstream>
+#include <string>
+#include <H5Ppublic.h>
+#include "../H5DataSpace.hpp"
+#include "H5Converter_misc.hpp"
+#include "H5ReadWrite_misc.hpp"
+#include "H5Utils.hpp"
+#include "h5a_wrapper.hpp"
+#include "h5d_wrapper.hpp"
+
+Include dependency graph for H5Attribute_misc.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_attribute__misc_8hpp__dep__incl.map b/_h5_attribute__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..a044e0745 --- /dev/null +++ b/_h5_attribute__misc_8hpp__dep__incl.map @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_attribute__misc_8hpp__dep__incl.md5 b/_h5_attribute__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..765d5bab8 --- /dev/null +++ b/_h5_attribute__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +cd6fbe81b74e4053765726d875dc0882 \ No newline at end of file diff --git a/_h5_attribute__misc_8hpp__dep__incl.png b/_h5_attribute__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..c7afdb8c1 Binary files /dev/null and b/_h5_attribute__misc_8hpp__dep__incl.png differ diff --git a/_h5_attribute__misc_8hpp__incl.map b/_h5_attribute__misc_8hpp__incl.map new file mode 100644 index 000000000..976d6bc17 --- /dev/null +++ b/_h5_attribute__misc_8hpp__incl.map @@ -0,0 +1,159 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_attribute__misc_8hpp__incl.md5 b/_h5_attribute__misc_8hpp__incl.md5 new file mode 100644 index 000000000..6bd8580fe --- /dev/null +++ b/_h5_attribute__misc_8hpp__incl.md5 @@ -0,0 +1 @@ +20613725db480b384db0b1f9a10e56b2 \ No newline at end of file diff --git a/_h5_attribute__misc_8hpp__incl.png b/_h5_attribute__misc_8hpp__incl.png new file mode 100644 index 000000000..a121f1d60 Binary files /dev/null and b/_h5_attribute__misc_8hpp__incl.png differ diff --git a/_h5_attribute__misc_8hpp_source.html b/_h5_attribute__misc_8hpp_source.html new file mode 100644 index 000000000..b4656d89a --- /dev/null +++ b/_h5_attribute__misc_8hpp_source.html @@ -0,0 +1,335 @@ + + + + + + + +HighFive: highfive/bits/H5Attribute_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Attribute_misc.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Ali Can Demiralp <ali.demiralp@rwth-aachen.de>
+
3 *
+
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 <algorithm>
+
12#include <functional>
+
13#include <numeric>
+
14#include <sstream>
+
15#include <string>
+
16
+
17#include <H5Ppublic.h>
+
18
+
19#include "../H5DataSpace.hpp"
+
20#include "H5Converter_misc.hpp"
+
21#include "H5ReadWrite_misc.hpp"
+
22#include "H5Utils.hpp"
+
23#include "h5a_wrapper.hpp"
+
24#include "h5d_wrapper.hpp"
+
25
+
26namespace HighFive {
+
27
+
+
28inline std::string Attribute::getName() const {
+
29 return details::get_name(
+
30 [&](char* buffer, size_t length) { return detail::h5a_get_name(_hid, length, buffer); });
+
31}
+
+
32
+
+
33inline size_t Attribute::getStorageSize() const {
+
34 return static_cast<size_t>(detail::h5a_get_storage_size(_hid));
+
35}
+
+
36
+
+ +
38 DataType res;
+
39 res._hid = detail::h5a_get_type(_hid);
+
40 return res;
+
41}
+
+
42
+
+ +
44 DataSpace space;
+
45 space._hid = detail::h5a_get_space(_hid);
+
46 return space;
+
47}
+
+
48
+
+ +
50 return getSpace();
+
51}
+
+
52
+
53template <typename T>
+
+
54inline T Attribute::read() const {
+
55 T array;
+
56 read(array);
+
57 return array;
+
58}
+
+
59
+
60template <typename T>
+
+
61inline void Attribute::read(T& array) const {
+
62 const DataSpace& mem_space = getMemSpace();
+
63 auto file_datatype = getDataType();
+
64 const details::BufferInfo<T> buffer_info(
+
65 file_datatype,
+
66 [this]() -> std::string { return this->getName(); },
+
67 details::BufferInfo<T>::Operation::read);
+
68
+
69 if (!details::checkDimensions(mem_space, buffer_info.n_dimensions)) {
+
70 std::ostringstream ss;
+
71 ss << "Impossible to read Attribute of dimensions " << mem_space.getNumberDimensions()
+
72 << " into arrays of dimensions " << buffer_info.n_dimensions;
+
73 throw DataSpaceException(ss.str());
+
74 }
+
75 auto dims = mem_space.getDimensions();
+
76
+
77 if (mem_space.getElementCount() == 0) {
+
78 auto effective_dims = details::squeezeDimensions(dims,
+
79 details::inspector<T>::recursive_ndim);
+
80
+
81 details::inspector<T>::prepare(array, effective_dims);
+
82 return;
+
83 }
+
84
+
85 auto r = details::data_converter::get_reader<T>(dims, array, file_datatype);
+
86 read_raw(r.getPointer(), buffer_info.data_type);
+
87 // re-arrange results
+
88 r.unserialize(array);
+
89
+
90 auto t = buffer_info.data_type;
+
91 auto c = t.getClass();
+
92
+
93 if (c == DataTypeClass::VarLen || t.isVariableStr()) {
+
94#if H5_VERSION_GE(1, 12, 0)
+
95 // This one have been created in 1.12.0
+
96 (void) detail::h5t_reclaim(t.getId(), mem_space.getId(), H5P_DEFAULT, r.getPointer());
+
97#else
+
98 // This one is deprecated since 1.12.0
+
99 (void) detail::h5d_vlen_reclaim(t.getId(), mem_space.getId(), H5P_DEFAULT, r.getPointer());
+
100#endif
+
101 }
+
102}
+
+
103
+
104template <typename T>
+
+
105inline void Attribute::read(T* array, const DataType& mem_datatype) const {
+
106 read_raw(array, mem_datatype);
+
107}
+
+
108
+
109template <typename T>
+
+
110inline void Attribute::read_raw(T* array, const DataType& mem_datatype) const {
+
111 static_assert(!std::is_const<T>::value,
+
112 "read() requires a non-const structure to read data into");
+
113
+
114 detail::h5a_read(getId(), mem_datatype.getId(), static_cast<void*>(array));
+
115}
+
+
116
+
117template <typename T>
+
+
118inline void Attribute::read(T* array) const {
+
119 read_raw(array);
+
120}
+
+
121
+
122template <typename T>
+
+
123inline void Attribute::read_raw(T* array) const {
+
124 using element_type = typename details::inspector<T>::base_type;
+
125 const DataType& mem_datatype = create_and_check_datatype<element_type>();
+
126
+
127 read_raw(array, mem_datatype);
+
128}
+
+
129
+
130template <typename T>
+
+
131inline void Attribute::write(const T& buffer) {
+
132 const DataSpace& mem_space = getMemSpace();
+
133
+
134 if (mem_space.getElementCount() == 0) {
+
135 return;
+
136 }
+
137
+
138 auto file_datatype = getDataType();
+
139
+
140 const details::BufferInfo<T> buffer_info(
+
141 file_datatype,
+
142 [this]() -> std::string { return this->getName(); },
+
143 details::BufferInfo<T>::Operation::write);
+
144
+
145 if (!details::checkDimensions(mem_space, buffer_info.n_dimensions)) {
+
146 std::ostringstream ss;
+
147 ss << "Impossible to write buffer of dimensions " << buffer_info.n_dimensions
+
148 << " into dataset of dimensions " << mem_space.getNumberDimensions();
+
149 throw DataSpaceException(ss.str());
+
150 }
+
151 auto w = details::data_converter::serialize<T>(buffer, file_datatype);
+
152 write_raw(w.getPointer(), buffer_info.data_type);
+
153}
+
+
154
+
155template <typename T>
+
+
156inline void Attribute::write_raw(const T* buffer, const DataType& mem_datatype) {
+
157 detail::h5a_write(getId(), mem_datatype.getId(), buffer);
+
158}
+
+
159
+
160template <typename T>
+
+
161inline void Attribute::write_raw(const T* buffer) {
+
162 using element_type = typename details::inspector<T>::base_type;
+
163 const auto& mem_datatype = create_and_check_datatype<element_type>();
+
164
+
165 write_raw(buffer, mem_datatype);
+
166}
+
+
167
+
168} // namespace HighFive
+ + + + +
DataSpace getSpace() const
Get the DataSpace of the current Attribute.
Definition H5Attribute_misc.hpp:43
+
DataType getDataType() const
Get the DataType of the Attribute.
Definition H5Attribute_misc.hpp:37
+
void read_raw(T *array, const DataType &mem_datatype) const
Read the attribute into a pre-allocated buffer.
Definition H5Attribute_misc.hpp:110
+
std::string getName() const
Get the name of the current Attribute.
Definition H5Attribute_misc.hpp:28
+
T read() const
Get the value of the Attribute.
Definition H5Attribute_misc.hpp:54
+
DataSpace getMemSpace() const
Get the DataSpace of the current Attribute.
Definition H5Attribute_misc.hpp:49
+
void write(const T &value)
Write the value into the Attribute.
Definition H5Attribute_misc.hpp:131
+
void write_raw(const T *buffer, const DataType &mem_datatype)
Write from a raw pointer.
Definition H5Attribute_misc.hpp:156
+
size_t getStorageSize() const
The number of bytes required to store the attribute in the HDF5 file.
Definition H5Attribute_misc.hpp:33
+
Exception specific to HighFive DataSpace interface.
Definition H5Exception.hpp:112
+
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
+
size_t getNumberDimensions() const
Returns the number of dimensions of a DataSpace.
Definition H5Dataspace_misc.hpp:100
+
size_t getElementCount() const
Return the number of elements in this DataSpace.
Definition H5Dataspace_misc.hpp:112
+
std::vector< size_t > getDimensions() const
Returns the size of the dataset in each dimension.
Definition H5Dataspace_misc.hpp:104
+
HDF5 Data Type.
Definition H5DataType.hpp:61
+
hid_t getId() const noexcept
getId
Definition H5Object_misc.hpp:69
+
hid_t _hid
Definition H5Object.hpp:105
+ + +
Definition H5_definitions.hpp:22
+ +
+
+ + + + diff --git a/_h5_converter__misc_8hpp.html b/_h5_converter__misc_8hpp.html new file mode 100644 index 000000000..20b1d15c2 --- /dev/null +++ b/_h5_converter__misc_8hpp.html @@ -0,0 +1,345 @@ + + + + + + + +HighFive: highfive/bits/H5Converter_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Converter_misc.hpp File Reference
+
+
+
#include <type_traits>
+#include "H5Inspector_misc.hpp"
+#include "../H5DataType.hpp"
+
+Include dependency graph for H5Converter_misc.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_converter__misc_8hpp__dep__incl.map b/_h5_converter__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..0231b24c8 --- /dev/null +++ b/_h5_converter__misc_8hpp__dep__incl.map @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_converter__misc_8hpp__dep__incl.md5 b/_h5_converter__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..89e32c211 --- /dev/null +++ b/_h5_converter__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +64799dabac0b4d8d40bd2207016ea188 \ No newline at end of file diff --git a/_h5_converter__misc_8hpp__dep__incl.png b/_h5_converter__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..8515761c4 Binary files /dev/null and b/_h5_converter__misc_8hpp__dep__incl.png differ diff --git a/_h5_converter__misc_8hpp__incl.map b/_h5_converter__misc_8hpp__incl.map new file mode 100644 index 000000000..b3ec28893 --- /dev/null +++ b/_h5_converter__misc_8hpp__incl.map @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_converter__misc_8hpp__incl.md5 b/_h5_converter__misc_8hpp__incl.md5 new file mode 100644 index 000000000..42e5adc33 --- /dev/null +++ b/_h5_converter__misc_8hpp__incl.md5 @@ -0,0 +1 @@ +6236fc0f8b7199850fc4911f2ea3b67c \ No newline at end of file diff --git a/_h5_converter__misc_8hpp__incl.png b/_h5_converter__misc_8hpp__incl.png new file mode 100644 index 000000000..267f09489 Binary files /dev/null and b/_h5_converter__misc_8hpp__incl.png differ diff --git a/_h5_converter__misc_8hpp_source.html b/_h5_converter__misc_8hpp_source.html new file mode 100644 index 000000000..f22c1e85b --- /dev/null +++ b/_h5_converter__misc_8hpp_source.html @@ -0,0 +1,477 @@ + + + + + + + +HighFive: highfive/bits/H5Converter_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Converter_misc.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c) 2022 Blue Brain Project
+
3 *
+
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 <type_traits>
+
12
+
13#include "H5Inspector_misc.hpp"
+
14#include "../H5DataType.hpp"
+
15
+
16namespace HighFive {
+
17namespace details {
+
18
+
19template <class T>
+
20struct is_std_string {
+
21 static constexpr bool value =
+
22 std::is_same<typename inspector<T>::base_type, std::string>::value;
+
23};
+
24
+
25template <class T, class V = void>
+
26struct enable_shallow_copy
+
27 : public std::enable_if<!is_std_string<T>::value && inspector<T>::is_trivially_copyable, V> {};
+
28
+
29template <class T, class V = void>
+
30struct enable_deep_copy
+
31 : public std::enable_if<!is_std_string<T>::value && !inspector<T>::is_trivially_copyable, V> {};
+
32
+
33template <class T, class V = void>
+
34struct enable_string_copy: public std::enable_if<is_std_string<T>::value, V> {};
+
35
+
36
+
37template <typename T, bool IsReadOnly>
+
38struct ShallowCopyBuffer {
+
39 using type = unqualified_t<T>;
+
40 using hdf5_type =
+
41 typename std::conditional<IsReadOnly,
+
42 typename std::add_const<typename inspector<T>::hdf5_type>::type,
+
43 typename inspector<T>::hdf5_type>::type;
+
44
+
45 ShallowCopyBuffer() = delete;
+
46
+
47 explicit ShallowCopyBuffer(typename std::conditional<IsReadOnly, const T&, T&>::type val)
+
48 : ptr(inspector<T>::data(val)){};
+
49
+
50 hdf5_type* getPointer() const {
+
51 return ptr;
+
52 }
+
53
+
54 hdf5_type* begin() const {
+
55 return getPointer();
+
56 }
+
57
+
58 void unserialize(T& /* val */) const {
+
59 /* nothing to do. */
+
60 }
+
61
+
62 private:
+
63 hdf5_type* ptr;
+
64};
+
65
+
66template <class T>
+
67struct DeepCopyBuffer {
+
68 using type = unqualified_t<T>;
+
69 using hdf5_type = typename inspector<type>::hdf5_type;
+
70
+
71 explicit DeepCopyBuffer(const std::vector<size_t>& _dims)
+
72 : buffer(inspector<T>::getSize(_dims))
+
73 , dims(_dims) {}
+
74
+
75 hdf5_type* getPointer() {
+
76 return buffer.data();
+
77 }
+
78
+
79 hdf5_type const* getPointer() const {
+
80 return buffer.data();
+
81 }
+
82
+
83 hdf5_type* begin() {
+
84 return getPointer();
+
85 }
+
86
+
87 hdf5_type const* begin() const {
+
88 return getPointer();
+
89 }
+
90
+
91 void unserialize(T& val) const {
+
92 inspector<type>::unserialize(buffer.data(), dims, val);
+
93 }
+
94
+
95 private:
+
96 std::vector<hdf5_type> buffer;
+
97 std::vector<size_t> dims;
+
98};
+
99
+
100enum class BufferMode { Read, Write };
+
101
+
102
+
106inline size_t char_buffer_size(char const* const str, size_t max_string_length) {
+
107 for (size_t i = 0; i <= max_string_length; ++i) {
+
108 if (str[i] == '\0') {
+
109 return i;
+
110 }
+
111 }
+
112
+
113 return max_string_length;
+
114}
+
115
+
116
+
164template <typename T, BufferMode buffer_mode>
+
165struct StringBuffer {
+
166 using type = unqualified_t<T>;
+
167 using hdf5_type = typename inspector<type>::hdf5_type;
+
168
+
169 class StringView {
+
170 public:
+
171 StringView(StringBuffer<T, buffer_mode>& _buffer, size_t _i)
+
172 : buffer(_buffer)
+
173 , i(_i) {}
+
174
+
182 void assign(char const* data, size_t length, StringPadding pad) {
+
183 if (buffer.isVariableLengthString()) {
+ +
185 buffer.variable_length_pointers[i] = data;
+
186 } else {
+
187 buffer.variable_length_buffer[i] = std::string(data, length);
+
188 buffer.variable_length_pointers[i] = buffer.variable_length_buffer[i].data();
+
189 }
+
190 } else if (buffer.isFixedLengthString()) {
+
191 // If the buffer is fixed-length and null-terminated, then
+
192 // `buffer.string_length` doesn't include the null-character.
+
193 if (length > buffer.string_length) {
+
194 throw std::invalid_argument("String length too big.");
+
195 }
+
196
+
197 memcpy(&buffer.fixed_length_buffer[i * buffer.string_size], data, length);
+
198 }
+
199 }
+
200
+
201 private:
+
202 StringBuffer<T, buffer_mode>& buffer;
+
203 size_t i;
+
204 };
+
205
+
206
+
207 class StringConstView {
+
208 public:
+
209 StringConstView(const StringBuffer<T, buffer_mode>& _buffer, size_t _i)
+
210 : buffer(_buffer)
+
211 , i(_i) {}
+
212
+
216 char const* data() const {
+
217 if (buffer.isVariableLengthString()) {
+
218 return buffer.variable_length_pointers[i];
+
219 } else {
+
220 return &buffer.fixed_length_buffer[i * buffer.string_size];
+
221 }
+
222 }
+
223
+
230 size_t length() const {
+
231 if (buffer.isNullTerminated()) {
+
232 return char_buffer_size(data(), buffer.string_length);
+
233 } else {
+
234 return buffer.string_length;
+
235 }
+
236 }
+
237
+
238 private:
+
239 const StringBuffer<T, buffer_mode>& buffer;
+
240 size_t i;
+
241 };
+
242
+
243
+
244 class Iterator {
+
245 public:
+
246 Iterator(StringBuffer<T, buffer_mode>& _buffer, size_t _pos)
+
247 : buffer(_buffer)
+
248 , pos(_pos) {}
+
249
+
250 Iterator operator+(size_t n_strings) const {
+
251 return Iterator(buffer, pos + n_strings);
+
252 }
+
253
+
254 void operator+=(size_t n_strings) {
+
255 pos += n_strings;
+
256 }
+
257
+
258 StringView operator*() {
+
259 return StringView(buffer, pos);
+
260 }
+
261
+
262 StringConstView operator*() const {
+
263 return StringConstView(buffer, pos);
+
264 }
+
265
+
266 private:
+
267 StringBuffer<T, buffer_mode>& buffer;
+
268 size_t pos;
+
269 };
+
270
+
271 StringBuffer(std::vector<size_t> _dims, const DataType& _file_datatype)
+
272 : file_datatype(_file_datatype.asStringType())
+
273 , padding(file_datatype.getPadding())
+
274 , string_size(file_datatype.isVariableStr() ? size_t(-1) : file_datatype.getSize())
+
275 , string_length(string_size - size_t(isNullTerminated()))
+
276 , dims(_dims) {
+
277 if (string_size == 0 && isNullTerminated()) {
+
278 throw DataTypeException(
+
279 "Fixed-length, null-terminated need at least one byte to store the "
+
280 "null-character.");
+
281 }
+
282
+
283 auto n_strings = compute_total_size(dims);
+
284 if (isVariableLengthString()) {
+
285 variable_length_buffer.resize(n_strings);
+
286 variable_length_pointers.resize(n_strings);
+
287 } else {
+
288 char pad = padding == StringPadding::SpacePadded ? ' ' : '\0';
+
289 fixed_length_buffer.assign(n_strings * string_size, pad);
+
290 }
+
291 }
+
292
+
293 bool isVariableLengthString() const {
+
294 return file_datatype.isVariableStr();
+
295 }
+
296
+
297 bool isFixedLengthString() const {
+
298 return file_datatype.isFixedLenStr();
+
299 }
+
300
+
301 bool isNullTerminated() const {
+
302 return file_datatype.getPadding() == StringPadding::NullTerminated;
+
303 }
+
304
+
305
+
306 void* getPointer() {
+
307 if (file_datatype.isVariableStr()) {
+
308 return variable_length_pointers.data();
+
309 } else {
+
310 return fixed_length_buffer.data();
+
311 }
+
312 }
+
313
+
314 Iterator begin() {
+
315 return Iterator(*this, 0ul);
+
316 }
+
317
+
318 void unserialize(T& val) {
+
319 inspector<type>::unserialize(begin(), dims, val);
+
320 }
+
321
+
322 private:
+
323 StringType file_datatype;
+
324 StringPadding padding;
+
325 size_t string_size; // Size of buffer required to store the string.
+
326 // Meaningful for fixed length strings only.
+
327 size_t string_length; // Semantic length of string.
+
328 std::vector<size_t> dims;
+
329
+
330 std::vector<char> fixed_length_buffer;
+
331 std::vector<std::string> variable_length_buffer;
+
332 std::vector<
+
333 typename std::conditional<buffer_mode == BufferMode::Write, const char, char>::type*>
+
334 variable_length_pointers;
+
335};
+
336
+
337
+
338template <typename T, typename Enable = void>
+
339struct Writer;
+
340
+
341template <typename T>
+
342struct Writer<T, typename enable_shallow_copy<T>::type>: public ShallowCopyBuffer<T, true> {
+
343 private:
+
344 using super = ShallowCopyBuffer<T, true>;
+
345
+
346 public:
+
347 explicit Writer(const T& val, const DataType& /* file_datatype */)
+
348 : super(val){};
+
349};
+
350
+
351template <typename T>
+
352struct Writer<T, typename enable_deep_copy<T>::type>: public DeepCopyBuffer<T> {
+
353 explicit Writer(const T& val, const DataType& /* file_datatype */)
+
354 : DeepCopyBuffer<T>(inspector<T>::getDimensions(val)) {
+
355 inspector<T>::serialize(val, this->begin());
+
356 }
+
357};
+
358
+
359template <typename T>
+
360struct Writer<T, typename enable_string_copy<T>::type>: public StringBuffer<T, BufferMode::Write> {
+
361 explicit Writer(const T& val, const DataType& _file_datatype)
+
362 : StringBuffer<T, BufferMode::Write>(inspector<T>::getDimensions(val), _file_datatype) {
+
363 inspector<T>::serialize(val, this->begin());
+
364 }
+
365};
+
366
+
367template <typename T, typename Enable = void>
+
368struct Reader;
+
369
+
370template <typename T>
+
371struct Reader<T, typename enable_shallow_copy<T>::type>: public ShallowCopyBuffer<T, false> {
+
372 private:
+
373 using super = ShallowCopyBuffer<T, false>;
+
374 using type = typename super::type;
+
375
+
376 public:
+
377 Reader(const std::vector<size_t>&, type& val, const DataType& /* file_datatype */)
+
378 : super(val) {}
+
379};
+
380
+
381template <typename T>
+
382struct Reader<T, typename enable_deep_copy<T>::type>: public DeepCopyBuffer<T> {
+
383 private:
+
384 using super = DeepCopyBuffer<T>;
+
385 using type = typename super::type;
+
386
+
387 public:
+
388 Reader(const std::vector<size_t>& _dims, type&, const DataType& /* file_datatype */)
+
389 : super(_dims) {}
+
390};
+
391
+
392
+
393template <typename T>
+
394struct Reader<T, typename enable_string_copy<T>::type>: public StringBuffer<T, BufferMode::Write> {
+
395 public:
+
396 explicit Reader(const std::vector<size_t>& _dims,
+
397 const T& /* val */,
+
398 const DataType& _file_datatype)
+
399 : StringBuffer<T, BufferMode::Write>(_dims, _file_datatype) {}
+
400};
+
401
+
402struct data_converter {
+
403 template <typename T>
+
404 static Writer<T> serialize(const typename inspector<T>::type& val,
+
405 const DataType& file_datatype) {
+
406 return Writer<T>(val, file_datatype);
+
407 }
+
408
+
409 template <typename T>
+
410 static Reader<T> get_reader(const std::vector<size_t>& dims,
+
411 T& val,
+
412 const DataType& file_datatype) {
+
413 // TODO Use bufferinfo for recursive_ndim
+
414 auto effective_dims = details::squeezeDimensions(dims, inspector<T>::recursive_ndim);
+
415 inspector<T>::prepare(val, effective_dims);
+
416 return Reader<T>(effective_dims, val, file_datatype);
+
417 }
+
418};
+
419
+
420} // namespace details
+
421} // namespace HighFive
+ + +
size_t getSize(const File &file, const std::string &path)
Get the size of an existing DataSet in an open HDF5 file.
Definition H5Easy_public.hpp:82
+
Definition H5_definitions.hpp:22
+
StringPadding
Definition string_padding.hpp:7
+ + +
size_t compute_total_size(const std::vector< size_t > &dims)
Definition H5Inspector_decl.hpp:10
+
+
+ + + + diff --git a/_h5_data_set_8hpp.html b/_h5_data_set_8hpp.html new file mode 100644 index 000000000..ed0dfadd2 --- /dev/null +++ b/_h5_data_set_8hpp.html @@ -0,0 +1,347 @@ + + + + + + + +HighFive: highfive/H5DataSet.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5DataSet.hpp File Reference
+
+
+
#include <vector>
+#include "H5DataSpace.hpp"
+#include "H5DataType.hpp"
+#include "H5Object.hpp"
+#include "bits/H5_definitions.hpp"
+#include "bits/H5Annotate_traits.hpp"
+#include "bits/H5Slice_traits.hpp"
+#include "bits/H5Path_traits.hpp"
+
+Include dependency graph for H5DataSet.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + +

+Classes

class  HighFive::DataSet
 Class representing a dataset. More...
 
+ + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_data_set_8hpp.js b/_h5_data_set_8hpp.js new file mode 100644 index 000000000..2a562c59a --- /dev/null +++ b/_h5_data_set_8hpp.js @@ -0,0 +1,4 @@ +var _h5_data_set_8hpp = +[ + [ "HighFive::DataSet", "class_high_five_1_1_data_set.html", "class_high_five_1_1_data_set" ] +]; \ No newline at end of file diff --git a/_h5_data_set_8hpp__dep__incl.map b/_h5_data_set_8hpp__dep__incl.map new file mode 100644 index 000000000..067492baf --- /dev/null +++ b/_h5_data_set_8hpp__dep__incl.map @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_data_set_8hpp__dep__incl.md5 b/_h5_data_set_8hpp__dep__incl.md5 new file mode 100644 index 000000000..f125ef66b --- /dev/null +++ b/_h5_data_set_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +f0c69396e8decb9ff40b3fd08ed3d7f4 \ No newline at end of file diff --git a/_h5_data_set_8hpp__dep__incl.png b/_h5_data_set_8hpp__dep__incl.png new file mode 100644 index 000000000..e118e194c Binary files /dev/null and b/_h5_data_set_8hpp__dep__incl.png differ diff --git a/_h5_data_set_8hpp__incl.map b/_h5_data_set_8hpp__incl.map new file mode 100644 index 000000000..5fe2a1324 --- /dev/null +++ b/_h5_data_set_8hpp__incl.map @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_data_set_8hpp__incl.md5 b/_h5_data_set_8hpp__incl.md5 new file mode 100644 index 000000000..dfbbbcab6 --- /dev/null +++ b/_h5_data_set_8hpp__incl.md5 @@ -0,0 +1 @@ +abc37b1b0e2f50a6f4dd997e4bb3ad95 \ No newline at end of file diff --git a/_h5_data_set_8hpp__incl.png b/_h5_data_set_8hpp__incl.png new file mode 100644 index 000000000..cb4e60358 Binary files /dev/null and b/_h5_data_set_8hpp__incl.png differ diff --git a/_h5_data_set_8hpp_source.html b/_h5_data_set_8hpp_source.html new file mode 100644 index 000000000..c00ed6b2a --- /dev/null +++ b/_h5_data_set_8hpp_source.html @@ -0,0 +1,235 @@ + + + + + + + +HighFive: highfive/H5DataSet.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5DataSet.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 "H5DataSpace.hpp"
+
14#include "H5DataType.hpp"
+
15#include "H5Object.hpp"
+ + + + + +
21
+
22namespace HighFive {
+
23
+
+
27class DataSet: public Object,
+
28 public SliceTraits<DataSet>,
+
29 public AnnotateTraits<DataSet>,
+
30 public PathTraits<DataSet> {
+
31 public:
+ +
33
+
38 uint64_t getStorageSize() const;
+
39
+
44 uint64_t getOffset() const;
+
45
+
50 DataType getDataType() const;
+
51
+
56 DataSpace getSpace() const;
+
57
+
63 DataSpace getMemSpace() const;
+
64
+
65
+
71 void resize(const std::vector<size_t>& dims);
+
72
+
73
+
+
78 inline std::vector<size_t> getDimensions() const {
+
79 return getSpace().getDimensions();
+
80 }
+
+
81
+
+
87 inline size_t getElementCount() const {
+
88 return getSpace().getElementCount();
+
89 }
+
+
90
+
+ +
93 return details::get_plist<DataSetCreateProps>(*this, H5Dget_create_plist);
+
94 }
+
+
95
+
+ +
98 return details::get_plist<DataSetAccessProps>(*this, H5Dget_access_plist);
+
99 }
+
+
100
+
102 H5_DEPRECATED("Default constructor creates unsafe uninitialized objects")
+
103 DataSet() = default;
+
104
+
105 protected:
+
106 using Object::Object; // bring DataSet(hid_t)
+
107
+
+
108 DataSet(Object&& o) noexcept
+
109 : Object(std::move(o)) {}
+
+
110
+
111 friend class Reference;
+
112 template <typename Derivate>
+
113 friend class NodeTraits;
+
114};
+
+
115
+
116} // namespace HighFive
+ +
#define H5_DEPRECATED(msg)
Definition H5_definitions.hpp:9
+ + + + + + +
Definition H5Annotate_traits.hpp:18
+
Class representing a dataset.
Definition H5DataSet.hpp:30
+
DataSpace getMemSpace() const
getMemSpace
Definition H5DataSet_misc.hpp:38
+
void resize(const std::vector< size_t > &dims)
Change the size of the dataset.
Definition H5DataSet_misc.hpp:46
+
DataType getDataType() const
getDataType
Definition H5DataSet_misc.hpp:28
+
DataSetCreateProps getCreatePropertyList() const
Get the list of properties for creation of this dataset.
Definition H5DataSet.hpp:92
+
uint64_t getOffset() const
getOffset
Definition H5DataSet_misc.hpp:42
+
uint64_t getStorageSize() const
getStorageSize
Definition H5DataSet_misc.hpp:24
+
DataSpace getSpace() const
getSpace
Definition H5DataSet_misc.hpp:32
+
static const ObjectType type
Definition H5DataSet.hpp:32
+
size_t getElementCount() const
Get the total number of elements in the current dataset. E.g. 2x2x2 matrix has size 8....
Definition H5DataSet.hpp:87
+
DataSetAccessProps getAccessPropertyList() const
Get the list of properties for accession of this dataset.
Definition H5DataSet.hpp:97
+
std::vector< size_t > getDimensions() const
Get the dimensions of the whole DataSet. This is a shorthand for getSpace().getDimensions()
Definition H5DataSet.hpp:78
+
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
+
size_t getElementCount() const
Return the number of elements in this DataSpace.
Definition H5Dataspace_misc.hpp:112
+
std::vector< size_t > getDimensions() const
Returns the size of the dataset in each dimension.
Definition H5Dataspace_misc.hpp:104
+
HDF5 Data Type.
Definition H5DataType.hpp:61
+
NodeTraits: Base class for Group and File.
Definition H5Node_traits.hpp:28
+
Definition H5Object.hpp:54
+
Definition H5Path_traits.hpp:16
+
HDF5 property Lists.
Definition H5PropertyList.hpp:160
+
An HDF5 (object) reference type.
Definition H5Reference.hpp:33
+
Definition H5Slice_traits.hpp:245
+
Definition H5_definitions.hpp:22
+
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24
+ +
+
+ + + + diff --git a/_h5_data_set__misc_8hpp.html b/_h5_data_set__misc_8hpp.html new file mode 100644 index 000000000..1009eed57 --- /dev/null +++ b/_h5_data_set__misc_8hpp.html @@ -0,0 +1,238 @@ + + + + + + + +HighFive: highfive/bits/H5DataSet_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5DataSet_misc.hpp File Reference
+
+
+
#include <algorithm>
+#include <functional>
+#include <numeric>
+#include <sstream>
+#include <string>
+#include <H5Ppublic.h>
+#include "h5d_wrapper.hpp"
+#include "H5Utils.hpp"
+
+Include dependency graph for H5DataSet_misc.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_data_set__misc_8hpp__dep__incl.map b/_h5_data_set__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..d22d28cb3 --- /dev/null +++ b/_h5_data_set__misc_8hpp__dep__incl.map @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_data_set__misc_8hpp__dep__incl.md5 b/_h5_data_set__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..ea6adc8ed --- /dev/null +++ b/_h5_data_set__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +3f9160900530ea0647d2ea87b49a150d \ No newline at end of file diff --git a/_h5_data_set__misc_8hpp__dep__incl.png b/_h5_data_set__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..2c6089d51 Binary files /dev/null and b/_h5_data_set__misc_8hpp__dep__incl.png differ diff --git a/_h5_data_set__misc_8hpp__incl.map b/_h5_data_set__misc_8hpp__incl.map new file mode 100644 index 000000000..b4e843cfd --- /dev/null +++ b/_h5_data_set__misc_8hpp__incl.map @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_data_set__misc_8hpp__incl.md5 b/_h5_data_set__misc_8hpp__incl.md5 new file mode 100644 index 000000000..f1daa1d6e --- /dev/null +++ b/_h5_data_set__misc_8hpp__incl.md5 @@ -0,0 +1 @@ +5511509ae779ee6cb791e483cde705e0 \ No newline at end of file diff --git a/_h5_data_set__misc_8hpp__incl.png b/_h5_data_set__misc_8hpp__incl.png new file mode 100644 index 000000000..0ed8e91cd Binary files /dev/null and b/_h5_data_set__misc_8hpp__incl.png differ diff --git a/_h5_data_set__misc_8hpp_source.html b/_h5_data_set__misc_8hpp_source.html new file mode 100644 index 000000000..096d2ae75 --- /dev/null +++ b/_h5_data_set__misc_8hpp_source.html @@ -0,0 +1,199 @@ + + + + + + + +HighFive: highfive/bits/H5DataSet_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5DataSet_misc.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 <algorithm>
+
12#include <functional>
+
13#include <numeric>
+
14#include <sstream>
+
15#include <string>
+
16
+
17#include <H5Ppublic.h>
+
18
+
19#include "h5d_wrapper.hpp"
+
20#include "H5Utils.hpp"
+
21
+
22namespace HighFive {
+
23
+
+
24inline uint64_t DataSet::getStorageSize() const {
+
25 return detail::h5d_get_storage_size(_hid);
+
26}
+
+
27
+
+ +
29 return DataType(detail::h5d_get_type(_hid));
+
30}
+
+
31
+
+ +
33 DataSpace space;
+
34 space._hid = detail::h5d_get_space(_hid);
+
35 return space;
+
36}
+
+
37
+
+ +
39 return getSpace();
+
40}
+
+
41
+
+
42inline uint64_t DataSet::getOffset() const {
+
43 return static_cast<uint64_t>(detail::h5d_get_offset(_hid));
+
44}
+
+
45
+
+
46inline void DataSet::resize(const std::vector<size_t>& dims) {
+
47 const size_t numDimensions = getSpace().getDimensions().size();
+
48 if (dims.size() != numDimensions) {
+
49 HDF5ErrMapper::ToException<DataSetException>("Invalid dataspace dimensions, got " +
+
50 std::to_string(dims.size()) + " expected " +
+
51 std::to_string(numDimensions));
+
52 }
+
53
+
54 std::vector<hsize_t> real_dims(dims.begin(), dims.end());
+
55 detail::h5d_set_extent(getId(), real_dims.data());
+
56}
+
+
57
+
58} // namespace HighFive
+ +
DataSpace getMemSpace() const
getMemSpace
Definition H5DataSet_misc.hpp:38
+
void resize(const std::vector< size_t > &dims)
Change the size of the dataset.
Definition H5DataSet_misc.hpp:46
+
DataType getDataType() const
getDataType
Definition H5DataSet_misc.hpp:28
+
uint64_t getOffset() const
getOffset
Definition H5DataSet_misc.hpp:42
+
uint64_t getStorageSize() const
getStorageSize
Definition H5DataSet_misc.hpp:24
+
DataSpace getSpace() const
getSpace
Definition H5DataSet_misc.hpp:32
+
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
+
std::vector< size_t > getDimensions() const
Returns the size of the dataset in each dimension.
Definition H5Dataspace_misc.hpp:104
+
HDF5 Data Type.
Definition H5DataType.hpp:61
+
hid_t getId() const noexcept
getId
Definition H5Object_misc.hpp:69
+
hid_t _hid
Definition H5Object.hpp:105
+ +
Definition H5_definitions.hpp:22
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/_h5_data_space_8hpp.html b/_h5_data_space_8hpp.html new file mode 100644 index 000000000..f4f2c0a43 --- /dev/null +++ b/_h5_data_space_8hpp.html @@ -0,0 +1,354 @@ + + + + + + + +HighFive: highfive/H5DataSpace.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5DataSpace.hpp File Reference
+
+
+
#include <vector>
+#include <array>
+#include <cstdint>
+#include <type_traits>
+#include <initializer_list>
+#include "H5Object.hpp"
+#include "bits/H5_definitions.hpp"
+#include "bits/H5Dataspace_misc.hpp"
+
+Include dependency graph for H5DataSpace.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + +

+Classes

class  HighFive::DataSpace
 Class representing the space (dimensions) of a DataSet. More...
 
+ + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_data_space_8hpp.js b/_h5_data_space_8hpp.js new file mode 100644 index 000000000..88a87ac0c --- /dev/null +++ b/_h5_data_space_8hpp.js @@ -0,0 +1,4 @@ +var _h5_data_space_8hpp = +[ + [ "HighFive::DataSpace", "class_high_five_1_1_data_space.html", "class_high_five_1_1_data_space" ] +]; \ No newline at end of file diff --git a/_h5_data_space_8hpp__dep__incl.map b/_h5_data_space_8hpp__dep__incl.map new file mode 100644 index 000000000..53286fb4d --- /dev/null +++ b/_h5_data_space_8hpp__dep__incl.map @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_data_space_8hpp__dep__incl.md5 b/_h5_data_space_8hpp__dep__incl.md5 new file mode 100644 index 000000000..265c820d8 --- /dev/null +++ b/_h5_data_space_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +71b141c4fd86d1646dc574943a1c0711 \ No newline at end of file diff --git a/_h5_data_space_8hpp__dep__incl.png b/_h5_data_space_8hpp__dep__incl.png new file mode 100644 index 000000000..2b6f98dba Binary files /dev/null and b/_h5_data_space_8hpp__dep__incl.png differ diff --git a/_h5_data_space_8hpp__incl.map b/_h5_data_space_8hpp__incl.map new file mode 100644 index 000000000..01b78406b --- /dev/null +++ b/_h5_data_space_8hpp__incl.map @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_data_space_8hpp__incl.md5 b/_h5_data_space_8hpp__incl.md5 new file mode 100644 index 000000000..46bb0e5ac --- /dev/null +++ b/_h5_data_space_8hpp__incl.md5 @@ -0,0 +1 @@ +fdb451d3147f1f780025f2d4a3b60cce \ No newline at end of file diff --git a/_h5_data_space_8hpp__incl.png b/_h5_data_space_8hpp__incl.png new file mode 100644 index 000000000..be98f63d3 Binary files /dev/null and b/_h5_data_space_8hpp__incl.png differ diff --git a/_h5_data_space_8hpp_source.html b/_h5_data_space_8hpp_source.html new file mode 100644 index 000000000..a5cdccddc --- /dev/null +++ b/_h5_data_space_8hpp_source.html @@ -0,0 +1,246 @@ + + + + + + + +HighFive: highfive/H5DataSpace.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5DataSpace.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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#include <array>
+
13#include <cstdint>
+
14#include <type_traits>
+
15#include <initializer_list>
+
16
+
17#include "H5Object.hpp"
+ +
19
+
20namespace HighFive {
+
21
+
22namespace detail {
+
27DataSpace make_data_space(hid_t hid);
+
28} // namespace detail
+
29
+
+
39class DataSpace: public Object {
+
40 public:
+ +
42
+
49 static const size_t UNLIMITED = SIZE_MAX;
+
50
+
+ + + +
59 // simple dataspace are handle directly from their dimensions
+
60 };
+
+
61
+
70 explicit DataSpace(const std::vector<size_t>& dims);
+
71
+
80 template <size_t N>
+
81 explicit DataSpace(const std::array<size_t, N>& dims);
+
82
+
91 DataSpace(const std::initializer_list<size_t>& dims);
+
92
+
102 template <typename... Args>
+
103 explicit DataSpace(size_t dim1, Args... dims);
+
104
+
116 // Attention: Explicitly disable DataSpace(int_like, int_like) from trying
+
117 // to use this constructor
+
118 template <typename IT,
+
119 typename = typename std::enable_if<!std::is_integral<IT>::value, IT>::type>
+
120 DataSpace(const IT begin, const IT end);
+
121
+
134 explicit DataSpace(const std::vector<size_t>& dims, const std::vector<size_t>& maxdims);
+
135
+
154 explicit DataSpace(DataspaceType space_type);
+
155
+
163 static DataSpace Scalar();
+
164
+
172 static DataSpace Null();
+
173
+
182 DataSpace clone() const;
+
183
+
190 size_t getNumberDimensions() const;
+
191
+
205 std::vector<size_t> getDimensions() const;
+
206
+
214 size_t getElementCount() const;
+
215
+
228 std::vector<size_t> getMaxDimensions() const;
+
229
+
243 template <typename T>
+
244 static DataSpace From(const T& value);
+
245
+
255 template <std::size_t N, std::size_t Width>
+
256 static DataSpace FromCharArrayStrings(const char (&string_array)[N][Width]);
+
257
+
258 protected:
+
259 DataSpace() = default;
+
260
+
+
261 static DataSpace fromId(hid_t hid) {
+
262 DataSpace space;
+
263 space._hid = hid;
+
264
+
265 return space;
+
266 }
+
+
267
+
268 friend class Attribute;
+
269 friend class File;
+
270 friend class DataSet;
+
271
+
272 friend DataSpace detail::make_data_space(hid_t hid);
+
273};
+
+
274
+
275} // namespace HighFive
+
276
+
277// We include bits right away since DataSpace is user-constructible
+ + + + +
Class representing an Attribute of a DataSet or Group.
Definition H5Attribute.hpp:46
+
Class representing a dataset.
Definition H5DataSet.hpp:30
+
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
+
static DataSpace FromCharArrayStrings(const char(&string_array)[N][Width])
Create a DataSpace from a value of type string array.
Definition H5Dataspace_misc.hpp:134
+
static const ObjectType type
Definition H5DataSpace.hpp:41
+
static DataSpace fromId(hid_t hid)
Definition H5DataSpace.hpp:261
+
static DataSpace From(const T &value)
Automatically deduce the DataSpace from a container/value.
Definition H5Dataspace_misc.hpp:128
+
size_t getNumberDimensions() const
Returns the number of dimensions of a DataSpace.
Definition H5Dataspace_misc.hpp:100
+
std::vector< size_t > getMaxDimensions() const
Returns the maximum size of the dataset in each dimension.
Definition H5Dataspace_misc.hpp:116
+
DataspaceType
An enum to create scalar and null DataSpace with DataSpace::DataSpace(DataspaceType dtype).
Definition H5DataSpace.hpp:56
+
@ dataspace_scalar
Value to create scalar DataSpace.
Definition H5DataSpace.hpp:57
+
@ dataspace_null
Value to create null DataSpace.
Definition H5DataSpace.hpp:58
+
static DataSpace Scalar()
Create a scalar DataSpace.
Definition H5Dataspace_misc.hpp:51
+
size_t getElementCount() const
Return the number of elements in this DataSpace.
Definition H5Dataspace_misc.hpp:112
+
std::vector< size_t > getDimensions() const
Returns the size of the dataset in each dimension.
Definition H5Dataspace_misc.hpp:104
+
DataSpace clone() const
Create a copy of the DataSpace which will have different id.
Definition H5Dataspace_misc.hpp:94
+ +
static DataSpace Null()
Create a null DataSpace.
Definition H5Dataspace_misc.hpp:55
+
static const size_t UNLIMITED
Magic value to specify that a DataSpace can grow without limit.
Definition H5DataSpace.hpp:49
+
File class.
Definition H5File.hpp:24
+
Definition H5Object.hpp:54
+
hid_t _hid
Definition H5Object.hpp:105
+
Definition H5_definitions.hpp:22
+
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24
+ +
+
+ + + + diff --git a/_h5_data_type_8hpp.html b/_h5_data_type_8hpp.html new file mode 100644 index 000000000..9a339592f --- /dev/null +++ b/_h5_data_type_8hpp.html @@ -0,0 +1,489 @@ + + + + + + + +HighFive: highfive/H5DataType.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5DataType.hpp File Reference
+
+
+
#include <type_traits>
+#include <vector>
+#include <H5Tpublic.h>
+#include "H5Object.hpp"
+#include "bits/H5Utils.hpp"
+#include "bits/string_padding.hpp"
+#include "H5PropertyList.hpp"
+#include "bits/h5_wrapper.hpp"
+#include "bits/h5t_wrapper.hpp"
+#include "bits/H5DataType_misc.hpp"
+
+Include dependency graph for H5DataType.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Classes

class  HighFive::DataType
 HDF5 Data Type. More...
 
class  HighFive::StringType
 
class  HighFive::FixedLengthStringType
 
class  HighFive::VariableLengthStringType
 
class  HighFive::AtomicType< T >
 create an HDF5 DataType from a C++ type More...
 
class  HighFive::CompoundType
 Create a compound HDF5 datatype. More...
 
struct  HighFive::CompoundType::member_def
 Use for defining a sub-type of compound type. More...
 
class  HighFive::EnumType< T >
 Create a enum HDF5 datatype. More...
 
struct  HighFive::EnumType< T >::member_def
 Use for defining a member of enum type. More...
 
class  HighFive::deprecated::FixedLenStringArray< N >
 A structure representing a set of fixed-length strings. More...
 
+ + + + + +

+Namespaces

namespace  HighFive
 
namespace  HighFive::deprecated
 
+ + + + +

+Macros

#define HIGHFIVE_REGISTER_TYPE(type, function)
 Macro to extend datatype of HighFive.
 
+ + + + + + +

+Enumerations

enum class  HighFive::DataTypeClass {
+  HighFive::Time = 1 << 1 +, HighFive::Integer = 1 << 2 +, HighFive::Float = 1 << 3 +, HighFive::String = 1 << 4 +,
+  HighFive::BitField = 1 << 5 +, HighFive::Opaque = 1 << 6 +, HighFive::Compound = 1 << 7 +, HighFive::Reference = 1 << 8 +,
+  HighFive::Enum = 1 << 9 +, HighFive::VarLen = 1 << 10 +, HighFive::Array = 1 << 11 +, HighFive::Invalid = 0 +
+ }
 Enum of Fundamental data classes. More...
 
enum class  HighFive::CharacterSet : std::underlying_type< H5T_cset_t >::type { HighFive::Ascii = H5T_CSET_ASCII +, HighFive::Utf8 = H5T_CSET_UTF8 + }
 
+ + + + + + + + + + + + + +

+Functions

DataTypeClass HighFive::operator| (DataTypeClass lhs, DataTypeClass rhs)
 
DataTypeClass HighFive::operator& (DataTypeClass lhs, DataTypeClass rhs)
 
template<typename T >
DataType HighFive::create_datatype ()
 Create a DataType instance representing type T.
 
template<typename T >
DataType HighFive::create_and_check_datatype ()
 Create a DataType instance representing type T and perform a sanity check on its size.
 
+

Macro Definition Documentation

+ +

◆ HIGHFIVE_REGISTER_TYPE

+ +
+
+ + + + + + + + + + + +
#define HIGHFIVE_REGISTER_TYPE( type,
function )
+
+Value:
template <> \
+
inline HighFive::DataType HighFive::create_datatype<type>() { \
+
return function(); \
+
}
+
HDF5 Data Type.
Definition H5DataType.hpp:61
+
+

Macro to extend datatype of HighFive.

+

This macro has to be called outside of any namespace.

+
namespace app {
+
enum FooBar { FOO = 1, BAR = 2 };
+
EnumType create_enum_foobar() {
+
return EnumType<FooBar>({{"FOO", FooBar::FOO},
+
{"BAR", FooBar::BAR}});
+
}
+
}
+
+
HIGHFIVE_REGISTER_TYPE(FooBar, ::app::create_enum_foobar)
+
#define HIGHFIVE_REGISTER_TYPE(type, function)
Macro to extend datatype of HighFive.
Definition H5DataType.hpp:488
+
+
+
+
+
+ + + + diff --git a/_h5_data_type_8hpp.js b/_h5_data_type_8hpp.js new file mode 100644 index 000000000..325830ff9 --- /dev/null +++ b/_h5_data_type_8hpp.js @@ -0,0 +1,36 @@ +var _h5_data_type_8hpp = +[ + [ "HighFive::DataType", "class_high_five_1_1_data_type.html", "class_high_five_1_1_data_type" ], + [ "HighFive::StringType", "class_high_five_1_1_string_type.html", "class_high_five_1_1_string_type" ], + [ "HighFive::FixedLengthStringType", "class_high_five_1_1_fixed_length_string_type.html", "class_high_five_1_1_fixed_length_string_type" ], + [ "HighFive::VariableLengthStringType", "class_high_five_1_1_variable_length_string_type.html", "class_high_five_1_1_variable_length_string_type" ], + [ "HighFive::AtomicType< T >", "class_high_five_1_1_atomic_type.html", "class_high_five_1_1_atomic_type" ], + [ "HighFive::CompoundType", "class_high_five_1_1_compound_type.html", "class_high_five_1_1_compound_type" ], + [ "HighFive::CompoundType::member_def", "struct_high_five_1_1_compound_type_1_1member__def.html", "struct_high_five_1_1_compound_type_1_1member__def" ], + [ "HighFive::EnumType< T >", "class_high_five_1_1_enum_type.html", "class_high_five_1_1_enum_type" ], + [ "HighFive::EnumType< T >::member_def", "struct_high_five_1_1_enum_type_1_1member__def.html", "struct_high_five_1_1_enum_type_1_1member__def" ], + [ "HighFive::deprecated::FixedLenStringArray< N >", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html", "class_high_five_1_1deprecated_1_1_fixed_len_string_array" ], + [ "HIGHFIVE_REGISTER_TYPE", "_h5_data_type_8hpp.html#aabbf38f2b276343c2b2a85116e60313c", null ], + [ "CharacterSet", "_h5_data_type_8hpp.html#a7133a7a677541ffa6780f5ca5eee6db9", [ + [ "Ascii", "_h5_data_type_8hpp.html#a7133a7a677541ffa6780f5ca5eee6db9a76b8d0dcd02ccaf203c167ced6d7ef31", null ], + [ "Utf8", "_h5_data_type_8hpp.html#a7133a7a677541ffa6780f5ca5eee6db9a81f91ccd37ce1d232cbfc1520374319d", null ] + ] ], + [ "DataTypeClass", "_h5_data_type_8hpp.html#ad43e509d198c83c5484c796babdd847b", [ + [ "Time", "_h5_data_type_8hpp.html#ad43e509d198c83c5484c796babdd847baa76d4ef5f3f6a672bbfab2865563e530", null ], + [ "Integer", "_h5_data_type_8hpp.html#ad43e509d198c83c5484c796babdd847baa0faef0851b4294c06f2b94bb1cb2044", null ], + [ "Float", "_h5_data_type_8hpp.html#ad43e509d198c83c5484c796babdd847ba22ae0e2b89e5e3d477f988cc36d3272b", null ], + [ "String", "_h5_data_type_8hpp.html#ad43e509d198c83c5484c796babdd847ba27118326006d3829667a400ad23d5d98", null ], + [ "BitField", "_h5_data_type_8hpp.html#ad43e509d198c83c5484c796babdd847ba2f706038ccc6843d07ebf1a34051a0a8", null ], + [ "Opaque", "_h5_data_type_8hpp.html#ad43e509d198c83c5484c796babdd847bafaa90538de35640e4b1e31ccf35b6eb5", null ], + [ "Compound", "_h5_data_type_8hpp.html#ad43e509d198c83c5484c796babdd847ba26154ea007c65f860de5333a555a56cf", null ], + [ "Reference", "_h5_data_type_8hpp.html#ad43e509d198c83c5484c796babdd847ba63d5049791d9d79d86e9a108b0a999ca", null ], + [ "Enum", "_h5_data_type_8hpp.html#ad43e509d198c83c5484c796babdd847bacf20423ed48998082c20099488a0917c", null ], + [ "VarLen", "_h5_data_type_8hpp.html#ad43e509d198c83c5484c796babdd847ba72c6842c18d1470d1c991f865a2fab3a", null ], + [ "Array", "_h5_data_type_8hpp.html#ad43e509d198c83c5484c796babdd847ba4410ec34d9e6c1a68100ca0ce033fb17", null ], + [ "Invalid", "_h5_data_type_8hpp.html#ad43e509d198c83c5484c796babdd847ba4bbb8f967da6d1a610596d7257179c2b", null ] + ] ], + [ "create_and_check_datatype", "_h5_data_type_8hpp.html#a43d3946c0bb037e99c803ec90dc247b4", null ], + [ "create_datatype", "_h5_data_type_8hpp.html#a6f3b307cc5b6bd82d6360f13cacac2de", null ], + [ "operator&", "_h5_data_type_8hpp.html#ad11e24eec8492d0d2c977b58b1e64dbc", null ], + [ "operator|", "_h5_data_type_8hpp.html#a98688378bfbae23ab35a06c6916c5a44", null ] +]; \ No newline at end of file diff --git a/_h5_data_type_8hpp__dep__incl.map b/_h5_data_type_8hpp__dep__incl.map new file mode 100644 index 000000000..e4349f93e --- /dev/null +++ b/_h5_data_type_8hpp__dep__incl.map @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_data_type_8hpp__dep__incl.md5 b/_h5_data_type_8hpp__dep__incl.md5 new file mode 100644 index 000000000..d418ca73e --- /dev/null +++ b/_h5_data_type_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +ec5b8d427e13478c9287d93bfb2df842 \ No newline at end of file diff --git a/_h5_data_type_8hpp__dep__incl.png b/_h5_data_type_8hpp__dep__incl.png new file mode 100644 index 000000000..ae40e26f3 Binary files /dev/null and b/_h5_data_type_8hpp__dep__incl.png differ diff --git a/_h5_data_type_8hpp__incl.map b/_h5_data_type_8hpp__incl.map new file mode 100644 index 000000000..304ae4906 --- /dev/null +++ b/_h5_data_type_8hpp__incl.map @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_data_type_8hpp__incl.md5 b/_h5_data_type_8hpp__incl.md5 new file mode 100644 index 000000000..b1dc51a8f --- /dev/null +++ b/_h5_data_type_8hpp__incl.md5 @@ -0,0 +1 @@ +9700f855eb52b32d1074987be9fbc742 \ No newline at end of file diff --git a/_h5_data_type_8hpp__incl.png b/_h5_data_type_8hpp__incl.png new file mode 100644 index 000000000..ea150c03d Binary files /dev/null and b/_h5_data_type_8hpp__incl.png differ diff --git a/_h5_data_type_8hpp_source.html b/_h5_data_type_8hpp_source.html new file mode 100644 index 000000000..4c1e1c18f --- /dev/null +++ b/_h5_data_type_8hpp_source.html @@ -0,0 +1,656 @@ + + + + + + + +HighFive: highfive/H5DataType.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5DataType.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 <type_traits>
+
12#include <vector>
+
13
+
14#include <H5Tpublic.h>
+
15
+
16#include "H5Object.hpp"
+
17#include "bits/H5Utils.hpp"
+
18
+ +
20#include "H5PropertyList.hpp"
+
21
+
22#include "bits/h5_wrapper.hpp"
+
23#include "bits/h5t_wrapper.hpp"
+
24
+
25namespace HighFive {
+
26
+
27
+
+
31enum class DataTypeClass {
+
32 Time = 1 << 1,
+
33 Integer = 1 << 2,
+
34 Float = 1 << 3,
+
35 String = 1 << 4,
+
36 BitField = 1 << 5,
+
37 Opaque = 1 << 6,
+
38 Compound = 1 << 7,
+
39 Reference = 1 << 8,
+
40 Enum = 1 << 9,
+
41 VarLen = 1 << 10,
+
42 Array = 1 << 11,
+
43 Invalid = 0
+
44};
+
+
45
+
+ +
47 using T = std::underlying_type<DataTypeClass>::type;
+
48 return static_cast<DataTypeClass>(static_cast<T>(lhs) | static_cast<T>(rhs));
+
49}
+
+
50
+
+ +
52 using T = std::underlying_type<DataTypeClass>::type;
+
53 return static_cast<DataTypeClass>(static_cast<T>(lhs) & static_cast<T>(rhs));
+
54}
+
+
55
+
56class StringType;
+
57
+
+
61class DataType: public Object {
+
62 public:
+
63 bool operator==(const DataType& other) const;
+
64
+
65 bool operator!=(const DataType& other) const;
+
66
+
70 DataTypeClass getClass() const;
+
71
+
78 size_t getSize() const;
+
79
+
83 std::string string() const;
+
84
+
88 bool isVariableStr() const;
+
89
+
93 bool isFixedLenStr() const;
+
94
+ +
99
+
103 bool empty() const noexcept;
+
104
+
106 bool isReference() const;
+
107
+
+ +
110 return details::get_plist<DataTypeCreateProps>(*this, H5Tget_create_plist);
+
111 }
+
+
112
+
113 protected:
+
114 using Object::Object;
+
115
+
116 friend class Attribute;
+
117 friend class File;
+
118 friend class DataSet;
+
119 friend class CompoundType;
+
120 template <typename Derivate>
+
121 friend class NodeTraits;
+
122};
+
+
123
+
124
+
+
125enum class CharacterSet : std::underlying_type<H5T_cset_t>::type {
+
126 Ascii = H5T_CSET_ASCII,
+
127 Utf8 = H5T_CSET_UTF8,
+
128};
+
+
129
+
+
130class StringType: public DataType {
+
131 public:
+ +
136
+ +
141
+
142 protected:
+
143 using DataType::DataType;
+
144 friend class DataType;
+
145};
+
+
146
+
+ +
148 public:
+
167 FixedLengthStringType(size_t size,
+
168 StringPadding padding,
+
169 CharacterSet character_set = CharacterSet::Ascii);
+
170};
+
+
171
+
+ +
173 public:
+ +
178};
+
+
179
+
180
+
186template <typename T>
+
+
187class AtomicType: public DataType {
+
188 public:
+
189 AtomicType();
+
190
+
191 using basic_type = T;
+
192};
+
+
193
+
194
+
+
198class CompoundType: public DataType {
+
199 public:
+
+
202 struct member_def {
+
+
203 member_def(std::string t_name, DataType t_base_type, size_t t_offset = 0)
+
204 : name(std::move(t_name))
+
205 , base_type(std::move(t_base_type))
+
206 , offset(t_offset) {}
+
+
207 std::string name;
+ +
209 size_t offset;
+
210 };
+
+
211
+
212 CompoundType(const CompoundType& other) = default;
+
213
+
+
218 inline CompoundType(const std::vector<member_def>& t_members, size_t size = 0)
+
219 : members(t_members) {
+
220 create(size);
+
221 }
+
+
+
222 inline CompoundType(std::vector<member_def>&& t_members, size_t size = 0)
+
223 : members(std::move(t_members)) {
+
224 create(size);
+
225 }
+
+
+
226 inline CompoundType(const std::initializer_list<member_def>& t_members, size_t size = 0)
+
227 : members(t_members) {
+
228 create(size);
+
229 }
+
+
230
+
+
234 inline CompoundType(DataType&& type)
+
235 : DataType(type) {
+ +
237 std::ostringstream ss;
+
238 ss << "hid " << _hid << " does not refer to a compound data type";
+
239 throw DataTypeException(ss.str());
+
240 }
+
241 size_t n_members = static_cast<size_t>(detail::h5t_get_nmembers(_hid));
+
242 members.reserve(n_members);
+
243 for (unsigned i = 0; i < n_members; i++) {
+
244 char* name = detail::h5t_get_member_name(_hid, i);
+
245 size_t offset = detail::h5t_get_member_offset(_hid, i);
+
246 hid_t member_hid = detail::h5t_get_member_type(_hid, i);
+
247 DataType member_type{member_hid};
+
248 members.emplace_back(std::string(name), member_type, offset);
+
249
+
250 detail::h5_free_memory(name);
+
251 }
+
252 }
+
+
253
+
257 inline void commit(const Object& object, const std::string& name) const;
+
258
+
+
260 inline const std::vector<member_def>& getMembers() const noexcept {
+
261 return members;
+
262 }
+
+
263
+
264 private:
+
266 std::vector<member_def> members;
+
267
+
271 void create(size_t size = 0);
+
272};
+
+
273
+
295template <typename T>
+
+
296class EnumType: public DataType {
+
297 public:
+
+
300 struct member_def {
+
+
301 member_def(const std::string& t_name, T t_value)
+
302 : name(t_name)
+
303 , value(std::move(t_value)) {}
+
+
304 std::string name;
+ +
306 };
+
+
307
+
308 EnumType(const EnumType& other) = default;
+
309
+
+
310 EnumType(const std::vector<member_def>& t_members)
+
311 : members(t_members) {
+
312 static_assert(std::is_enum<T>::value, "EnumType<T>::create takes only enum");
+
313 if (members.empty()) {
+ +
315 "Could not create an enum without members");
+
316 }
+
317 create();
+
318 }
+
+
319
+
+
320 EnumType(std::initializer_list<member_def> t_members)
+
321 : EnumType(std::vector<member_def>(t_members)) {}
+
+
322
+
326 void commit(const Object& object, const std::string& name) const;
+
327
+
328 private:
+
329 std::vector<member_def> members;
+
330
+
331 void create();
+
332};
+
+
333
+
334
+
336template <typename T>
+
337DataType create_datatype();
+
338
+
339
+
341template <typename T>
+ +
343
+
344
+
345namespace deprecated {
+
355template <std::size_t N>
+
+ +
357 public:
+ +
359
+
365 FixedLenStringArray(const char array[][N], std::size_t n_strings);
+
366
+
372 explicit FixedLenStringArray(const std::vector<std::string>& vec);
+
373
+
374 FixedLenStringArray(const std::string* iter_begin, const std::string* iter_end);
+
375
+
376 FixedLenStringArray(const std::initializer_list<std::string>&);
+
377
+
381 void push_back(const std::string&);
+
382
+
383 void push_back(const std::array<char, N>&);
+
384
+
388 std::string getString(std::size_t index) const;
+
389
+
390 // Container interface
+
+
391 inline const char* operator[](std::size_t i) const noexcept {
+
392 return datavec[i].data();
+
393 }
+
+
+
394 inline const char* at(std::size_t i) const {
+
395 return datavec.at(i).data();
+
396 }
+
+
+
397 inline bool empty() const noexcept {
+
398 return datavec.empty();
+
399 }
+
+
+
400 inline std::size_t size() const noexcept {
+
401 return datavec.size();
+
402 }
+
+
+
403 inline void resize(std::size_t n) {
+
404 datavec.resize(n);
+
405 }
+
+
+
406 inline const char* front() const {
+
407 return datavec.front().data();
+
408 }
+
+
+
409 inline const char* back() const {
+
410 return datavec.back().data();
+
411 }
+
+
+
412 inline char* data() noexcept {
+
413 return datavec[0].data();
+
414 }
+
+
+
415 inline const char* data() const noexcept {
+
416 return datavec[0].data();
+
417 }
+
+
418
+
419 private:
+
420 using vector_t = typename std::vector<std::array<char, N>>;
+
421
+
422 public:
+
423 // Use the underlying iterator
+
424 using iterator = typename vector_t::iterator;
+
425 using const_iterator = typename vector_t::const_iterator;
+
426 using reverse_iterator = typename vector_t::reverse_iterator;
+
427 using const_reverse_iterator = typename vector_t::const_reverse_iterator;
+
428 using value_type = typename vector_t::value_type;
+
429
+
+
430 inline iterator begin() noexcept {
+
431 return datavec.begin();
+
432 }
+
+
+
433 inline iterator end() noexcept {
+
434 return datavec.end();
+
435 }
+
+
+
436 inline const_iterator begin() const noexcept {
+
437 return datavec.begin();
+
438 }
+
+
+
439 inline const_iterator cbegin() const noexcept {
+
440 return datavec.cbegin();
+
441 }
+
+
+
442 inline const_iterator end() const noexcept {
+
443 return datavec.end();
+
444 }
+
+
+
445 inline const_iterator cend() const noexcept {
+
446 return datavec.cend();
+
447 }
+
+
+
448 inline reverse_iterator rbegin() noexcept {
+
449 return datavec.rbegin();
+
450 }
+
+
+
451 inline reverse_iterator rend() noexcept {
+
452 return datavec.rend();
+
453 }
+
+
+
454 inline const_reverse_iterator rbegin() const noexcept {
+
455 return datavec.rbegin();
+
456 }
+
+
+
457 inline const_reverse_iterator rend() const noexcept {
+
458 return datavec.rend();
+
459 }
+
+
460
+
461 private:
+
462 vector_t datavec;
+
463};
+
+
464} // namespace deprecated
+
465
+
466template <size_t N>
+
467using FixedLenStringArray H5_DEPRECATED_USING("Use 'std::vector<std::string>'.") =
+
468 deprecated::FixedLenStringArray<N>;
+
469
+
470} // namespace HighFive
+
471
+
472
+
+
488#define HIGHFIVE_REGISTER_TYPE(type, function) \
+
489 template <> \
+
490 inline HighFive::DataType HighFive::create_datatype<type>() { \
+
491 return function(); \
+
492 }
+
+
493
+ +
#define H5_DEPRECATED_USING(msg)
Definition H5_definitions.hpp:16
+ + + + +
create an HDF5 DataType from a C++ type
Definition H5DataType.hpp:187
+
AtomicType()
Definition H5DataType_misc.hpp:235
+
T basic_type
Definition H5DataType.hpp:191
+
Class representing an Attribute of a DataSet or Group.
Definition H5Attribute.hpp:46
+
Create a compound HDF5 datatype.
Definition H5DataType.hpp:198
+
void commit(const Object &object, const std::string &name) const
Commit datatype into the given Object.
Definition H5DataType_misc.hpp:381
+
const std::vector< member_def > & getMembers() const noexcept
Get read access to the CompoundType members.
Definition H5DataType.hpp:260
+
CompoundType(const CompoundType &other)=default
+
CompoundType(const std::initializer_list< member_def > &t_members, size_t size=0)
Definition H5DataType.hpp:226
+
CompoundType(const std::vector< member_def > &t_members, size_t size=0)
Initializes a compound type from a vector of member definitions.
Definition H5DataType.hpp:218
+
CompoundType(DataType &&type)
Initializes a compound type from a DataType.
Definition H5DataType.hpp:234
+
CompoundType(std::vector< member_def > &&t_members, size_t size=0)
Definition H5DataType.hpp:222
+
Class representing a dataset.
Definition H5DataSet.hpp:30
+
Exception specific to HighFive DataType interface.
Definition H5Exception.hpp:94
+
HDF5 Data Type.
Definition H5DataType.hpp:61
+
bool operator==(const DataType &other) const
Definition H5DataType_misc.hpp:44
+
bool isFixedLenStr() const
Returns whether the type is a fixed-length string.
Definition H5DataType_misc.hpp:56
+
DataTypeCreateProps getCreatePropertyList() const
Get the list of properties for creation of this DataType.
Definition H5DataType.hpp:109
+
size_t getSize() const
Returns the length (in bytes) of this type elements.
Definition H5DataType_misc.hpp:40
+
bool isVariableStr() const
Returns whether the type is a variable-length string.
Definition H5DataType_misc.hpp:52
+
bool empty() const noexcept
Check the DataType was default constructed.
Definition H5DataType_misc.hpp:32
+
std::string string() const
Returns a friendly description of the type (e.g. Float32)
Definition H5DataType_misc.hpp:76
+
DataTypeClass getClass() const
Return the fundamental type.
Definition H5DataType_misc.hpp:36
+
bool isReference() const
Returns whether the type is a Reference.
Definition H5DataType_misc.hpp:60
+
StringType asStringType() const
Returns this datatype as a StringType.
Definition H5DataType_misc.hpp:64
+
bool operator!=(const DataType &other) const
Definition H5DataType_misc.hpp:48
+
Create a enum HDF5 datatype.
Definition H5DataType.hpp:296
+
EnumType(std::initializer_list< member_def > t_members)
Definition H5DataType.hpp:320
+
EnumType(const EnumType &other)=default
+
void commit(const Object &object, const std::string &name) const
Commit datatype into the given Object.
Definition H5DataType_misc.hpp:398
+
EnumType(const std::vector< member_def > &t_members)
Definition H5DataType.hpp:310
+
File class.
Definition H5File.hpp:24
+
Definition H5DataType.hpp:147
+
FixedLengthStringType(size_t size, StringPadding padding, CharacterSet character_set=CharacterSet::Ascii)
Create a fixed length string datatype.
Definition H5DataType_misc.hpp:88
+
NodeTraits: Base class for Group and File.
Definition H5Node_traits.hpp:28
+
Definition H5Object.hpp:54
+
Object()
Definition H5Object_misc.hpp:25
+
hid_t _hid
Definition H5Object.hpp:105
+
HDF5 property Lists.
Definition H5PropertyList.hpp:160
+
An HDF5 (object) reference type.
Definition H5Reference.hpp:33
+
Definition H5DataType.hpp:130
+
StringPadding getPadding() const
For fixed length stings return the padding.
Definition H5DataType_misc.hpp:80
+
CharacterSet getCharacterSet() const
For stings return the character set.
Definition H5DataType_misc.hpp:84
+
Definition H5DataType.hpp:172
+
VariableLengthStringType(CharacterSet character_set=CharacterSet::Ascii)
Create a variable length string HDF5 datatype.
Definition H5DataType_misc.hpp:103
+
A structure representing a set of fixed-length strings.
Definition H5DataType.hpp:356
+
typename vector_t::const_iterator const_iterator
Definition H5DataType.hpp:425
+
const_iterator end() const noexcept
Definition H5DataType.hpp:442
+
const_iterator cend() const noexcept
Definition H5DataType.hpp:445
+
void resize(std::size_t n)
Definition H5DataType.hpp:403
+
bool empty() const noexcept
Definition H5DataType.hpp:397
+
const char * front() const
Definition H5DataType.hpp:406
+
const_iterator cbegin() const noexcept
Definition H5DataType.hpp:439
+
void push_back(const std::string &)
Append an std::string to the buffer structure.
Definition H5DataType_misc.hpp:268
+
const char * back() const
Definition H5DataType.hpp:409
+
typename vector_t::reverse_iterator reverse_iterator
Definition H5DataType.hpp:426
+
const char * at(std::size_t i) const
Definition H5DataType.hpp:394
+
const char * operator[](std::size_t i) const noexcept
Definition H5DataType.hpp:391
+
std::string getString(std::size_t index) const
Retrieve a string from the structure as std::string.
Definition H5DataType_misc.hpp:282
+
reverse_iterator rend() noexcept
Definition H5DataType.hpp:451
+
typename vector_t::const_reverse_iterator const_reverse_iterator
Definition H5DataType.hpp:427
+
const_iterator begin() const noexcept
Definition H5DataType.hpp:436
+ +
const_reverse_iterator rbegin() const noexcept
Definition H5DataType.hpp:454
+
iterator begin() noexcept
Definition H5DataType.hpp:430
+
char * data() noexcept
Definition H5DataType.hpp:412
+
typename vector_t::value_type value_type
Definition H5DataType.hpp:428
+
reverse_iterator rbegin() noexcept
Definition H5DataType.hpp:448
+
iterator end() noexcept
Definition H5DataType.hpp:433
+
const_reverse_iterator rend() const noexcept
Definition H5DataType.hpp:457
+
typename vector_t::iterator iterator
Definition H5DataType.hpp:424
+
std::size_t size() const noexcept
Definition H5DataType.hpp:400
+
const char * data() const noexcept
Definition H5DataType.hpp:415
+ + +
Definition H5_definitions.hpp:22
+
DataType create_and_check_datatype()
Create a DataType instance representing type T and perform a sanity check on its size.
Definition H5DataType_misc.hpp:486
+
DataType create_datatype()
Create a DataType instance representing type T.
Definition H5DataType_misc.hpp:479
+
CharacterSet
Definition H5DataType.hpp:125
+ + +
DataTypeClass operator|(DataTypeClass lhs, DataTypeClass rhs)
Definition H5DataType.hpp:46
+
DataTypeClass operator&(DataTypeClass lhs, DataTypeClass rhs)
Definition H5DataType.hpp:51
+
DataTypeClass
Enum of Fundamental data classes.
Definition H5DataType.hpp:31
+ + + + + + + + + + + +
StringPadding
Definition string_padding.hpp:7
+ +
Use for defining a sub-type of compound type.
Definition H5DataType.hpp:202
+
size_t offset
Definition H5DataType.hpp:209
+
member_def(std::string t_name, DataType t_base_type, size_t t_offset=0)
Definition H5DataType.hpp:203
+
DataType base_type
Definition H5DataType.hpp:208
+
std::string name
Definition H5DataType.hpp:207
+
Use for defining a member of enum type.
Definition H5DataType.hpp:300
+
T value
Definition H5DataType.hpp:305
+
std::string name
Definition H5DataType.hpp:304
+
member_def(const std::string &t_name, T t_value)
Definition H5DataType.hpp:301
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/_h5_data_type__misc_8hpp.html b/_h5_data_type__misc_8hpp.html new file mode 100644 index 000000000..c2af1cf1e --- /dev/null +++ b/_h5_data_type__misc_8hpp.html @@ -0,0 +1,415 @@ + + + + + + + +HighFive: highfive/bits/H5DataType_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5DataType_misc.hpp File Reference
+
+
+
#include <string>
+#include <complex>
+#include <cstring>
+#include <H5Ppublic.h>
+#include "H5Inspector_misc.hpp"
+#include "h5t_wrapper.hpp"
+#include "h5i_wrapper.hpp"
+#include <highfive/half_float.hpp>
+
+Include dependency graph for H5DataType_misc.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + + + + +

+Classes

class  HighFive::AtomicType< char[StrLen]>
 
class  HighFive::AtomicType< deprecated::FixedLenStringArray< StrLen > >
 
class  HighFive::AtomicType< std::complex< T > >
 
+ + + + + +

+Namespaces

namespace  HighFive
 
namespace  HighFive::deprecated
 
+ + + +

+Macros

#define _H5_STRUCT_PADDING(current_size, member_size)
 
+ + + + + + + + + + + + + + + + +

+Functions

EnumType< details::Boolean > HighFive::create_enum_boolean ()
 
size_t HighFive::find_first_atomic_member_size (hid_t hid)
 
template<typename T >
DataType HighFive::create_datatype ()
 Create a DataType instance representing type T.
 
template<typename T >
DataType HighFive::create_and_check_datatype ()
 Create a DataType instance representing type T and perform a sanity check on its size.
 
template<>
DataType HighFive::create_datatype< bool > ()
 
+

Macro Definition Documentation

+ +

◆ _H5_STRUCT_PADDING

+ +
+
+ + + + + + + + + + + +
#define _H5_STRUCT_PADDING( current_size,
member_size )
+
+Value:
(((member_size) >= (current_size)) \
+
? (((member_size) - (current_size)) % (member_size)) \
+
: ((((member_size) - (((current_size) - (member_size)) % (member_size)))) % \
+
(member_size)))
+
+
+
+
+
+ + + + diff --git a/_h5_data_type__misc_8hpp.js b/_h5_data_type__misc_8hpp.js new file mode 100644 index 000000000..52666ffd0 --- /dev/null +++ b/_h5_data_type__misc_8hpp.js @@ -0,0 +1,12 @@ +var _h5_data_type__misc_8hpp = +[ + [ "HighFive::AtomicType< char[StrLen]>", "class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4.html", "class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4" ], + [ "HighFive::AtomicType< deprecated::FixedLenStringArray< StrLen > >", "class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4.html", "class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4" ], + [ "HighFive::AtomicType< std::complex< T > >", "class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4.html", "class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4" ], + [ "_H5_STRUCT_PADDING", "_h5_data_type__misc_8hpp.html#a8411b26baa96407eb4f3de2ba4bcd6f7", null ], + [ "create_and_check_datatype", "_h5_data_type__misc_8hpp.html#a43d3946c0bb037e99c803ec90dc247b4", null ], + [ "create_datatype", "_h5_data_type__misc_8hpp.html#a6f3b307cc5b6bd82d6360f13cacac2de", null ], + [ "create_datatype< bool >", "_h5_data_type__misc_8hpp.html#aaf8cbe7c9df6f34f493d21ad51517fc9", null ], + [ "create_enum_boolean", "_h5_data_type__misc_8hpp.html#a361e2132e78bca627125eba4295b9ae6", null ], + [ "find_first_atomic_member_size", "_h5_data_type__misc_8hpp.html#ac4e5e1ccbc6a1c20bcd581f71fb5e6d5", null ] +]; \ No newline at end of file diff --git a/_h5_data_type__misc_8hpp__dep__incl.map b/_h5_data_type__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..930cca51e --- /dev/null +++ b/_h5_data_type__misc_8hpp__dep__incl.map @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_data_type__misc_8hpp__dep__incl.md5 b/_h5_data_type__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..ec37ee617 --- /dev/null +++ b/_h5_data_type__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +f2e6e06bcacb0f42e19b5d529065202b \ No newline at end of file diff --git a/_h5_data_type__misc_8hpp__dep__incl.png b/_h5_data_type__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..7beeb05a6 Binary files /dev/null and b/_h5_data_type__misc_8hpp__dep__incl.png differ diff --git a/_h5_data_type__misc_8hpp__incl.map b/_h5_data_type__misc_8hpp__incl.map new file mode 100644 index 000000000..9a53e56fc --- /dev/null +++ b/_h5_data_type__misc_8hpp__incl.map @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_data_type__misc_8hpp__incl.md5 b/_h5_data_type__misc_8hpp__incl.md5 new file mode 100644 index 000000000..168939d9e --- /dev/null +++ b/_h5_data_type__misc_8hpp__incl.md5 @@ -0,0 +1 @@ +a4c11865d828ada3e0a3962ccd744eae \ No newline at end of file diff --git a/_h5_data_type__misc_8hpp__incl.png b/_h5_data_type__misc_8hpp__incl.png new file mode 100644 index 000000000..ac0f003ce Binary files /dev/null and b/_h5_data_type__misc_8hpp__incl.png differ diff --git a/_h5_data_type__misc_8hpp_source.html b/_h5_data_type__misc_8hpp_source.html new file mode 100644 index 000000000..5daa94ead --- /dev/null +++ b/_h5_data_type__misc_8hpp_source.html @@ -0,0 +1,804 @@ + + + + + + + +HighFive: highfive/bits/H5DataType_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5DataType_misc.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 <string>
+
12#include <complex>
+
13#include <cstring>
+
14#if HIGHFIVE_CXX_STD >= 17
+
15#include <cstddef>
+
16#endif
+
17
+
18#include <H5Ppublic.h>
+
19
+
20#include "H5Inspector_misc.hpp"
+
21#include "h5t_wrapper.hpp"
+
22#include "h5i_wrapper.hpp"
+
23
+
24namespace HighFive {
+
25
+
26namespace { // unnamed
+
27inline DataTypeClass convert_type_class(const H5T_class_t& tclass);
+
28inline std::string type_class_string(DataTypeClass);
+
29inline hid_t create_string(std::size_t length);
+
30} // namespace
+
31
+
+
32inline bool DataType::empty() const noexcept {
+
33 return _hid == H5I_INVALID_HID;
+
34}
+
+
35
+
+ +
37 return convert_type_class(detail::h5t_get_class(_hid));
+
38}
+
+
39
+
+
40inline size_t DataType::getSize() const {
+
41 return detail::h5t_get_size(_hid);
+
42}
+
+
43
+
+
44inline bool DataType::operator==(const DataType& other) const {
+
45 return detail::h5t_equal(_hid, other._hid) > 0;
+
46}
+
+
47
+
+
48inline bool DataType::operator!=(const DataType& other) const {
+
49 return !(*this == other);
+
50}
+
+
51
+
+
52inline bool DataType::isVariableStr() const {
+
53 return detail::h5t_is_variable_str(_hid) > 0;
+
54}
+
+
55
+
+
56inline bool DataType::isFixedLenStr() const {
+ +
58}
+
+
59
+
+
60inline bool DataType::isReference() const {
+
61 return detail::h5t_equal(_hid, H5T_STD_REF_OBJ) > 0;
+
62}
+
+
63
+
+ + +
66 throw DataTypeException("Invalid conversion to StringType.");
+
67 }
+
68
+
69 if (isValid()) {
+
70 detail::h5i_inc_ref(_hid);
+
71 }
+
72
+
73 return StringType(_hid);
+
74}
+
+
75
+
+
76inline std::string DataType::string() const {
+
77 return type_class_string(getClass()) + std::to_string(getSize() * 8);
+
78}
+
+
79
+
+ +
81 return StringPadding(detail::h5t_get_strpad(_hid));
+
82}
+
+
83
+
+ +
85 return CharacterSet(detail::h5t_get_cset(_hid));
+
86}
+
+
87
+
+ +
89 StringPadding padding,
+
90 CharacterSet character_set) {
+
91 if (size == 0 && padding == StringPadding::NullTerminated) {
+ +
93 "Fixed-length, null-terminated need at least one byte to store the null-character.");
+
94 }
+
95
+
96 _hid = detail::h5t_copy(H5T_C_S1);
+
97
+
98 detail::h5t_set_size(_hid, hsize_t(size));
+
99 detail::h5t_set_cset(_hid, H5T_cset_t(character_set));
+
100 detail::h5t_set_strpad(_hid, H5T_str_t(padding));
+
101}
+
+
102
+
+ +
104 _hid = detail::h5t_copy(H5T_C_S1);
+
105
+
106 detail::h5t_set_size(_hid, H5T_VARIABLE);
+
107 detail::h5t_set_cset(_hid, H5T_cset_t(character_set));
+
108}
+
+
109
+
110// char mapping
+
111template <>
+
+ +
113 _hid = detail::h5t_copy(H5T_NATIVE_CHAR);
+
114}
+
+
115
+
116template <>
+
+ +
118 _hid = detail::h5t_copy(H5T_NATIVE_SCHAR);
+
119}
+
+
120
+
121template <>
+
+ +
123 _hid = detail::h5t_copy(H5T_NATIVE_UCHAR);
+
124}
+
+
125
+
126// short mapping
+
127template <>
+
+ +
129 _hid = detail::h5t_copy(H5T_NATIVE_SHORT);
+
130}
+
+
131
+
132template <>
+
+ +
134 _hid = detail::h5t_copy(H5T_NATIVE_USHORT);
+
135}
+
+
136
+
137// integer mapping
+
138template <>
+
+ +
140 _hid = detail::h5t_copy(H5T_NATIVE_INT);
+
141}
+
+
142
+
143template <>
+
+ +
145 _hid = detail::h5t_copy(H5T_NATIVE_UINT);
+
146}
+
+
147
+
148// long mapping
+
149template <>
+
+ +
151 _hid = detail::h5t_copy(H5T_NATIVE_LONG);
+
152}
+
+
153
+
154template <>
+
+ +
156 _hid = detail::h5t_copy(H5T_NATIVE_ULONG);
+
157}
+
+
158
+
159// long long mapping
+
160template <>
+
+ +
162 _hid = detail::h5t_copy(H5T_NATIVE_LLONG);
+
163}
+
+
164
+
165template <>
+
+ +
167 _hid = detail::h5t_copy(H5T_NATIVE_ULLONG);
+
168}
+
+
169
+
170// half-float, float, double and long double mapping
+
171template <>
+
+ +
173 _hid = detail::h5t_copy(H5T_NATIVE_FLOAT);
+
174}
+
+
175
+
176template <>
+
+ +
178 _hid = detail::h5t_copy(H5T_NATIVE_DOUBLE);
+
179}
+
+
180
+
181template <>
+
+ +
183 _hid = detail::h5t_copy(H5T_NATIVE_LDOUBLE);
+
184}
+
+
185
+
186// std string
+
187template <>
+
+ +
189 _hid = create_string(H5T_VARIABLE);
+
190}
+
+
191
+
192#if HIGHFIVE_CXX_STD >= 17
+
193// std byte
+
194template <>
+ +
196 _hid = detail::h5t_copy(H5T_NATIVE_B8);
+
197}
+
198#endif
+
199
+
200// Fixed-Length strings
+
201// require class specialization templated for the char length
+
202template <size_t StrLen>
+
+
203class AtomicType<char[StrLen]>: public DataType {
+
204 public:
+
+
205 inline AtomicType()
+
206 : DataType(create_string(StrLen)) {}
+
+
207};
+
+
208
+
209template <size_t StrLen>
+
+
210class AtomicType<deprecated::FixedLenStringArray<StrLen>>: public DataType {
+
211 public:
+
+
212 inline AtomicType()
+
213 : DataType(create_string(StrLen)) {}
+
+
214};
+
+
215
+
216template <typename T>
+
+
217class AtomicType<std::complex<T>>: public DataType {
+
218 public:
+
+
219 inline AtomicType()
+
220 : DataType(
+
221 CompoundType({{"r", create_datatype<T>(), 0}, {"i", create_datatype<T>(), sizeof(T)}},
+
222 sizeof(std::complex<T>))) {
+
223 static_assert(std::is_arithmetic<T>::value,
+
224 "std::complex accepts only floating point and integral numbers.");
+
225 }
+
+
226};
+
+
227
+
228// For boolean we act as h5py
+
+ +
230 return {{"FALSE", details::Boolean::HighFiveFalse}, {"TRUE", details::Boolean::HighFiveTrue}};
+
231}
+
+
232
+
233// Other cases not supported. Fail early with a user message
+
234template <typename T>
+
+ +
236 static_assert(details::inspector<T>::recursive_ndim == 0,
+
237 "Atomic types cant be arrays, except for char[] (fixed-length strings)");
+
238 static_assert(details::inspector<T>::recursive_ndim > 0, "Type not supported");
+
239}
+
+
240
+
241
+
242namespace deprecated {
+
243template <std::size_t N>
+
+
244inline FixedLenStringArray<N>::FixedLenStringArray(const char array[][N], std::size_t length) {
+
245 datavec.resize(length);
+
246 std::memcpy(datavec[0].data(), array[0].data(), N * length);
+
247}
+
+
248
+
249template <std::size_t N>
+
+
250inline FixedLenStringArray<N>::FixedLenStringArray(const std::string* iter_begin,
+
251 const std::string* iter_end) {
+
252 datavec.reserve(static_cast<std::size_t>(iter_end - iter_begin));
+
253 for (std::string const* it = iter_begin; it != iter_end; ++it) {
+
254 push_back(*it);
+
255 }
+
256}
+
+
257
+
258template <std::size_t N>
+
+
259inline FixedLenStringArray<N>::FixedLenStringArray(const std::vector<std::string>& vec)
+
260 : FixedLenStringArray(vec.data(), vec.data() + vec.size()) {}
+
+
261
+
262template <std::size_t N>
+
+ +
264 const std::initializer_list<std::string>& init_list)
+
265 : FixedLenStringArray(init_list.begin(), init_list.end()) {}
+
+
266
+
267template <std::size_t N>
+
+
268inline void FixedLenStringArray<N>::push_back(const std::string& src) {
+
269 datavec.emplace_back();
+
270 const size_t length = std::min(N - 1, src.length());
+
271 std::memcpy(datavec.back().data(), src.c_str(), length);
+
272 datavec.back()[length] = 0;
+
273}
+
+
274
+
275template <std::size_t N>
+
+
276inline void FixedLenStringArray<N>::push_back(const std::array<char, N>& src) {
+
277 datavec.emplace_back();
+
278 std::copy(src.begin(), src.end(), datavec.back().data());
+
279}
+
+
280
+
281template <std::size_t N>
+
+
282inline std::string FixedLenStringArray<N>::getString(std::size_t i) const {
+
283 return std::string(datavec[i].data());
+
284}
+
+
285} // namespace deprecated
+
286
+
287// Internal
+
288// Reference mapping
+
289template <>
+
+ +
291 _hid = detail::h5t_copy(H5T_STD_REF_OBJ);
+
292}
+
+
293
+
+
294inline size_t find_first_atomic_member_size(hid_t hid) {
+
295 // Recursive exit condition
+
296 if (detail::h5t_get_class(hid) == H5T_COMPOUND) {
+
297 auto number_of_members = detail::h5t_get_nmembers(hid);
+
298 if (number_of_members == -1) {
+
299 throw DataTypeException("Cannot get members of CompoundType with hid: " +
+
300 std::to_string(hid));
+
301 }
+
302 if (number_of_members == 0) {
+
303 throw DataTypeException("No members defined for CompoundType with hid: " +
+
304 std::to_string(hid));
+
305 }
+
306
+
307 auto member_type = detail::h5t_get_member_type(hid, 0);
+
308 auto size = find_first_atomic_member_size(member_type);
+
309 detail::h5t_close(member_type);
+
310 return size;
+
311 } else if (detail::h5t_get_class(hid) == H5T_STRING) {
+
312 return 1;
+
313 }
+
314 return detail::h5t_get_size(hid);
+
315}
+
+
316
+
317// Calculate the padding required to align an element of a struct
+
318// For padding see explanation here: https://en.cppreference.com/w/cpp/language/object#Alignment
+
319// It is to compute padding following last element inserted inside a struct
+
320// 1) We want to push back an element padded to the structure
+
321// 'current_size' is the size of the structure before adding the new element.
+
322// 'member_size' the size of the element we want to add.
+
323// 2) We want to compute the final padding for the global structure
+
324// 'current_size' is the size of the whole structure without final padding
+
325// 'member_size' is the maximum size of all element of the struct
+
326//
+
327// The basic formula is only to know how much we need to add to 'current_size' to fit
+
328// 'member_size'.
+
329// And at the end, we do another computation because the end padding, should fit the biggest
+
330// element of the struct.
+
331//
+
332// As we are with `size_t` element, we need to compute everything inside R+
+
+
333#define _H5_STRUCT_PADDING(current_size, member_size) \
+
334 (((member_size) >= (current_size)) \
+
335 ? (((member_size) - (current_size)) % (member_size)) \
+
336 : ((((member_size) - (((current_size) - (member_size)) % (member_size)))) % \
+
337 (member_size)))
+
+
338
+
339inline void CompoundType::create(size_t size) {
+
340 if (size == 0) {
+
341 size_t current_size = 0, max_atomic_size = 0;
+
342
+
343 // Do a first pass to find the total size of the compound datatype
+
344 for (auto& member: members) {
+
345 size_t member_size = detail::h5t_get_size(member.base_type.getId());
+
346
+
347 if (member_size == 0) {
+
348 throw DataTypeException("Cannot get size of DataType with hid: " +
+
349 std::to_string(member.base_type.getId()));
+
350 }
+
351
+
352 size_t first_atomic_size = find_first_atomic_member_size(member.base_type.getId());
+
353
+
354 // Set the offset of this member within the struct according to the
+
355 // standard alignment rules. The c++ standard specifies that:
+
356 // > objects have an alignment requirement of which their size is a multiple
+
357 member.offset = current_size + _H5_STRUCT_PADDING(current_size, first_atomic_size);
+
358
+
359 // Set the current size to the end of the new member
+
360 current_size = member.offset + member_size;
+
361
+
362 // Keep track of the highest atomic member size because it's needed
+
363 // for the padding of the complete compound type.
+
364 max_atomic_size = std::max(max_atomic_size, first_atomic_size);
+
365 }
+
366
+
367 size = current_size + _H5_STRUCT_PADDING(current_size, max_atomic_size);
+
368 }
+
369
+
370 // Create the HDF5 type
+
371 _hid = detail::h5t_create(H5T_COMPOUND, size);
+
372
+
373 // Loop over all the members and insert them into the datatype
+
374 for (const auto& member: members) {
+
375 detail::h5t_insert(_hid, member.name.c_str(), member.offset, member.base_type.getId());
+
376 }
+
377}
+
378
+
379#undef _H5_STRUCT_PADDING
+
380
+
+
381inline void CompoundType::commit(const Object& object, const std::string& name) const {
+
382 detail::h5t_commit2(
+
383 object.getId(), name.c_str(), getId(), H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+
384}
+
+
385
+
386template <typename T>
+
387inline void EnumType<T>::create() {
+
388 // Create the HDF5 type
+
389 _hid = detail::h5t_enum_create(AtomicType<typename std::underlying_type<T>::type>{}.getId());
+
390
+
391 // Loop over all the members and insert them into the datatype
+
392 for (const auto& member: members) {
+
393 detail::h5t_enum_insert(_hid, member.name.c_str(), &(member.value));
+
394 }
+
395}
+
396
+
397template <typename T>
+
+
398inline void EnumType<T>::commit(const Object& object, const std::string& name) const {
+
399 detail::h5t_commit2(
+
400 object.getId(), name.c_str(), getId(), H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+
401}
+
+
402
+
403namespace {
+
404
+
405inline hid_t create_string(size_t length) {
+
406 hid_t _hid = detail::h5t_copy(H5T_C_S1);
+
407 detail::h5t_set_size(_hid, length);
+
408 detail::h5t_set_cset(_hid, H5T_CSET_UTF8);
+
409 return _hid;
+
410}
+
411
+
412
+
413inline DataTypeClass convert_type_class(const H5T_class_t& tclass) {
+
414 switch (tclass) {
+
415 case H5T_TIME:
+
416 return DataTypeClass::Time;
+
417 case H5T_INTEGER:
+ +
419 case H5T_FLOAT:
+ +
421 case H5T_STRING:
+ +
423 case H5T_BITFIELD:
+ +
425 case H5T_OPAQUE:
+ +
427 case H5T_COMPOUND:
+ +
429 case H5T_REFERENCE:
+ +
431 case H5T_ENUM:
+
432 return DataTypeClass::Enum;
+
433 case H5T_VLEN:
+ +
435 case H5T_ARRAY:
+ +
437 case H5T_NO_CLASS:
+
438 case H5T_NCLASSES:
+
439 default:
+ +
441 }
+
442}
+
443
+
444
+
445inline std::string type_class_string(DataTypeClass tclass) {
+
446 switch (tclass) {
+ +
448 return "Time";
+ +
450 return "Integer";
+ +
452 return "Float";
+ +
454 return "String";
+ +
456 return "BitField";
+ +
458 return "Opaque";
+ +
460 return "Compound";
+ +
462 return "Reference";
+ +
464 return "Enum";
+ +
466 return "Varlen";
+ +
468 return "Array";
+
469 default:
+
470 return "(Invalid)";
+
471 }
+
472}
+
473
+
474} // unnamed namespace
+
475
+
476
+
478template <typename T>
+
+ +
480 return AtomicType<T>();
+
481}
+
+
482
+
483
+
485template <typename T>
+
+ +
487 DataType t = create_datatype<T>();
+
488 if (t.empty()) {
+
489 throw DataTypeException("Type given to create_and_check_datatype is not valid");
+
490 }
+
491
+
492 // Skip check if the base type is a variable length string
+
493 if (t.isVariableStr()) {
+
494 return t;
+
495 }
+
496
+
497 // Check that the size of the template type matches the size that HDF5 is
+
498 // expecting.
+
499 if (t.isReference() || t.isFixedLenStr()) {
+
500 return t;
+
501 }
+
502 if (sizeof(T) != t.getSize()) {
+
503 std::ostringstream ss;
+
504 ss << "Size of array type " << sizeof(T) << " != that of memory datatype " << t.getSize()
+
505 << std::endl;
+
506 throw DataTypeException(ss.str());
+
507 }
+
508
+
509 return t;
+
510}
+
+
511
+
512} // namespace HighFive
+
513HIGHFIVE_REGISTER_TYPE(HighFive::details::Boolean, HighFive::create_enum_boolean)
+
514
+
515namespace HighFive {
+
516
+
517template <>
+
+ +
519 return create_datatype<HighFive::details::Boolean>();
+
520}
+
+
521
+
522} // namespace HighFive
+
523
+
524#ifdef H5_USE_HALF_FLOAT
+ +
526#endif
+
#define HIGHFIVE_REGISTER_TYPE(type, function)
Macro to extend datatype of HighFive.
Definition H5DataType.hpp:488
+
#define _H5_STRUCT_PADDING(current_size, member_size)
Definition H5DataType_misc.hpp:333
+ +
AtomicType()
Definition H5DataType_misc.hpp:205
+ +
AtomicType()
Definition H5DataType_misc.hpp:219
+
create an HDF5 DataType from a C++ type
Definition H5DataType.hpp:187
+
AtomicType()
Definition H5DataType_misc.hpp:235
+
Create a compound HDF5 datatype.
Definition H5DataType.hpp:198
+
void commit(const Object &object, const std::string &name) const
Commit datatype into the given Object.
Definition H5DataType_misc.hpp:381
+
Exception specific to HighFive DataType interface.
Definition H5Exception.hpp:94
+
HDF5 Data Type.
Definition H5DataType.hpp:61
+
bool operator==(const DataType &other) const
Definition H5DataType_misc.hpp:44
+
bool isFixedLenStr() const
Returns whether the type is a fixed-length string.
Definition H5DataType_misc.hpp:56
+
size_t getSize() const
Returns the length (in bytes) of this type elements.
Definition H5DataType_misc.hpp:40
+
bool isVariableStr() const
Returns whether the type is a variable-length string.
Definition H5DataType_misc.hpp:52
+
bool empty() const noexcept
Check the DataType was default constructed.
Definition H5DataType_misc.hpp:32
+
std::string string() const
Returns a friendly description of the type (e.g. Float32)
Definition H5DataType_misc.hpp:76
+
DataTypeClass getClass() const
Return the fundamental type.
Definition H5DataType_misc.hpp:36
+
bool isReference() const
Returns whether the type is a Reference.
Definition H5DataType_misc.hpp:60
+
StringType asStringType() const
Returns this datatype as a StringType.
Definition H5DataType_misc.hpp:64
+
bool operator!=(const DataType &other) const
Definition H5DataType_misc.hpp:48
+
Create a enum HDF5 datatype.
Definition H5DataType.hpp:296
+
void commit(const Object &object, const std::string &name) const
Commit datatype into the given Object.
Definition H5DataType_misc.hpp:398
+
FixedLengthStringType(size_t size, StringPadding padding, CharacterSet character_set=CharacterSet::Ascii)
Create a fixed length string datatype.
Definition H5DataType_misc.hpp:88
+
Definition H5Object.hpp:54
+
hid_t getId() const noexcept
getId
Definition H5Object_misc.hpp:69
+
bool isValid() const noexcept
isValid
Definition H5Object_misc.hpp:65
+
hid_t _hid
Definition H5Object.hpp:105
+
Definition H5DataType.hpp:130
+
StringPadding getPadding() const
For fixed length stings return the padding.
Definition H5DataType_misc.hpp:80
+
CharacterSet getCharacterSet() const
For stings return the character set.
Definition H5DataType_misc.hpp:84
+
VariableLengthStringType(CharacterSet character_set=CharacterSet::Ascii)
Create a variable length string HDF5 datatype.
Definition H5DataType_misc.hpp:103
+
A structure representing a set of fixed-length strings.
Definition H5DataType.hpp:356
+
void push_back(const std::string &)
Append an std::string to the buffer structure.
Definition H5DataType_misc.hpp:268
+
std::string getString(std::size_t index) const
Retrieve a string from the structure as std::string.
Definition H5DataType_misc.hpp:282
+ + + + +
Definition H5_definitions.hpp:22
+
EnumType< details::Boolean > create_enum_boolean()
Definition H5DataType_misc.hpp:229
+
DataType create_and_check_datatype()
Create a DataType instance representing type T and perform a sanity check on its size.
Definition H5DataType_misc.hpp:486
+
DataType create_datatype()
Create a DataType instance representing type T.
Definition H5DataType_misc.hpp:479
+
CharacterSet
Definition H5DataType.hpp:125
+
DataType create_datatype< bool >()
Definition H5DataType_misc.hpp:518
+
size_t find_first_atomic_member_size(hid_t hid)
Definition H5DataType_misc.hpp:294
+
DataTypeClass
Enum of Fundamental data classes.
Definition H5DataType.hpp:31
+ + + + + + + + + + + + +
StringPadding
Definition string_padding.hpp:7
+ +
+
+ + + + diff --git a/_h5_dataspace__misc_8hpp.html b/_h5_dataspace__misc_8hpp.html new file mode 100644 index 000000000..939466d02 --- /dev/null +++ b/_h5_dataspace__misc_8hpp.html @@ -0,0 +1,339 @@ + + + + + + + +HighFive: highfive/bits/H5Dataspace_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Dataspace_misc.hpp File Reference
+
+
+
#include <array>
+#include <initializer_list>
+#include <vector>
+#include <numeric>
+#include <H5Spublic.h>
+#include "H5Utils.hpp"
+#include "H5Converter_misc.hpp"
+#include "h5s_wrapper.hpp"
+
+Include dependency graph for H5Dataspace_misc.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_dataspace__misc_8hpp__dep__incl.map b/_h5_dataspace__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..1764e11fa --- /dev/null +++ b/_h5_dataspace__misc_8hpp__dep__incl.map @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_dataspace__misc_8hpp__dep__incl.md5 b/_h5_dataspace__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..d9431e855 --- /dev/null +++ b/_h5_dataspace__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +2bad08289a7fa94d15c8e596e54dd002 \ No newline at end of file diff --git a/_h5_dataspace__misc_8hpp__dep__incl.png b/_h5_dataspace__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..1e9950a4a Binary files /dev/null and b/_h5_dataspace__misc_8hpp__dep__incl.png differ diff --git a/_h5_dataspace__misc_8hpp__incl.map b/_h5_dataspace__misc_8hpp__incl.map new file mode 100644 index 000000000..1d0b1a255 --- /dev/null +++ b/_h5_dataspace__misc_8hpp__incl.map @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_dataspace__misc_8hpp__incl.md5 b/_h5_dataspace__misc_8hpp__incl.md5 new file mode 100644 index 000000000..ccc67b0c5 --- /dev/null +++ b/_h5_dataspace__misc_8hpp__incl.md5 @@ -0,0 +1 @@ +fe4dcfc7d2fd7dc351708fffb5e33a2b \ No newline at end of file diff --git a/_h5_dataspace__misc_8hpp__incl.png b/_h5_dataspace__misc_8hpp__incl.png new file mode 100644 index 000000000..bba8b11ab Binary files /dev/null and b/_h5_dataspace__misc_8hpp__incl.png differ diff --git a/_h5_dataspace__misc_8hpp_source.html b/_h5_dataspace__misc_8hpp_source.html new file mode 100644 index 000000000..db314a64a --- /dev/null +++ b/_h5_dataspace__misc_8hpp_source.html @@ -0,0 +1,314 @@ + + + + + + + +HighFive: highfive/bits/H5Dataspace_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Dataspace_misc.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 <array>
+
12#include <initializer_list>
+
13#include <vector>
+
14#include <numeric>
+
15
+
16#include <H5Spublic.h>
+
17
+
18#include "H5Utils.hpp"
+
19#include "H5Converter_misc.hpp"
+
20#include "h5s_wrapper.hpp"
+
21
+
22namespace HighFive {
+
23
+
24namespace detail {
+
25inline DataSpace make_data_space(hid_t hid) {
+
26 return DataSpace::fromId(hid);
+
27}
+
28} // namespace detail
+
29
+
+
30inline DataSpace::DataSpace(const std::vector<size_t>& dims)
+
31 : DataSpace(dims.begin(), dims.end()) {}
+
+
32
+
33template <size_t N>
+
+
34inline DataSpace::DataSpace(const std::array<size_t, N>& dims)
+
35 : DataSpace(dims.begin(), dims.end()) {}
+
+
36
+
+
37inline DataSpace::DataSpace(const std::initializer_list<size_t>& items)
+
38 : DataSpace(std::vector<size_t>(items)) {}
+
+
39
+
40template <typename... Args>
+
+
41inline DataSpace::DataSpace(size_t dim1, Args... dims)
+
42 : DataSpace(std::vector<size_t>{dim1, static_cast<size_t>(dims)...}) {}
+
+
43
+
44template <class IT, typename>
+
+
45inline DataSpace::DataSpace(const IT begin, const IT end) {
+
46 std::vector<hsize_t> real_dims(begin, end);
+
47
+
48 _hid = detail::h5s_create_simple(int(real_dims.size()), real_dims.data(), nullptr);
+
49}
+
+
50
+ +
54
+ +
58
+
+
59inline DataSpace::DataSpace(const std::vector<size_t>& dims, const std::vector<size_t>& maxdims) {
+
60 if (dims.size() != maxdims.size()) {
+
61 throw DataSpaceException("dims and maxdims must be the same length.");
+
62 }
+
63
+
64 std::vector<hsize_t> real_dims(dims.begin(), dims.end());
+
65 std::vector<hsize_t> real_maxdims(maxdims.begin(), maxdims.end());
+
66
+
67 // Replace unlimited flag with actual HDF one
+
68 std::replace(real_maxdims.begin(),
+
69 real_maxdims.end(),
+
70 static_cast<hsize_t>(DataSpace::UNLIMITED),
+
71 H5S_UNLIMITED);
+
72
+
73 _hid = detail::h5s_create_simple(int(dims.size()), real_dims.data(), real_maxdims.data());
+
74}
+
+
75
+
+ +
77 H5S_class_t h5_dataspace_type;
+
78 switch (space_type) {
+ +
80 h5_dataspace_type = H5S_SCALAR;
+
81 break;
+ +
83 h5_dataspace_type = H5S_NULL;
+
84 break;
+
85 default:
+ +
87 "Invalid dataspace type: should be "
+
88 "dataspace_scalar or dataspace_null");
+
89 }
+
90
+
91 _hid = detail::h5s_create(h5_dataspace_type);
+
92}
+
+
93
+
+ +
95 DataSpace res;
+
96 res._hid = detail::h5s_copy(_hid);
+
97 return res;
+
98}
+
+
99
+
+
100inline size_t DataSpace::getNumberDimensions() const {
+
101 return static_cast<size_t>(detail::h5s_get_simple_extent_ndims(_hid));
+
102}
+
+
103
+
+
104inline std::vector<size_t> DataSpace::getDimensions() const {
+
105 std::vector<hsize_t> dims(getNumberDimensions());
+
106 if (!dims.empty()) {
+
107 detail::h5s_get_simple_extent_dims(_hid, dims.data(), nullptr);
+
108 }
+
109 return details::to_vector_size_t(std::move(dims));
+
110}
+
+
111
+
+
112inline size_t DataSpace::getElementCount() const {
+
113 return static_cast<size_t>(detail::h5s_get_simple_extent_npoints(_hid));
+
114}
+
+
115
+
+
116inline std::vector<size_t> DataSpace::getMaxDimensions() const {
+
117 std::vector<hsize_t> maxdims(getNumberDimensions());
+
118 detail::h5s_get_simple_extent_dims(_hid, nullptr, maxdims.data());
+
119
+
120 std::replace(maxdims.begin(),
+
121 maxdims.end(),
+
122 H5S_UNLIMITED,
+
123 static_cast<hsize_t>(DataSpace::UNLIMITED));
+
124 return details::to_vector_size_t(maxdims);
+
125}
+
+
126
+
127template <typename T>
+
+
128inline DataSpace DataSpace::From(const T& value) {
+
129 auto dims = details::inspector<T>::getDimensions(value);
+
130 return DataSpace(dims);
+
131}
+
+
132
+
133template <std::size_t N, std::size_t Width>
+
+
134inline DataSpace DataSpace::FromCharArrayStrings(const char (&)[N][Width]) {
+
135 return DataSpace(N);
+
136}
+
+
137
+
138namespace details {
+
139
+
141inline bool checkDimensions(const DataSpace& mem_space, size_t n_dim_requested) {
+
142 return checkDimensions(mem_space.getDimensions(), n_dim_requested);
+
143}
+
144
+
145} // namespace details
+
146} // namespace HighFive
+ + +
Exception specific to HighFive DataSpace interface.
Definition H5Exception.hpp:112
+
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
+
static DataSpace FromCharArrayStrings(const char(&string_array)[N][Width])
Create a DataSpace from a value of type string array.
Definition H5Dataspace_misc.hpp:134
+
static DataSpace fromId(hid_t hid)
Definition H5DataSpace.hpp:261
+
static DataSpace From(const T &value)
Automatically deduce the DataSpace from a container/value.
Definition H5Dataspace_misc.hpp:128
+
size_t getNumberDimensions() const
Returns the number of dimensions of a DataSpace.
Definition H5Dataspace_misc.hpp:100
+
std::vector< size_t > getMaxDimensions() const
Returns the maximum size of the dataset in each dimension.
Definition H5Dataspace_misc.hpp:116
+
DataspaceType
An enum to create scalar and null DataSpace with DataSpace::DataSpace(DataspaceType dtype).
Definition H5DataSpace.hpp:56
+
@ dataspace_scalar
Value to create scalar DataSpace.
Definition H5DataSpace.hpp:57
+
@ dataspace_null
Value to create null DataSpace.
Definition H5DataSpace.hpp:58
+
static DataSpace Scalar()
Create a scalar DataSpace.
Definition H5Dataspace_misc.hpp:51
+
size_t getElementCount() const
Return the number of elements in this DataSpace.
Definition H5Dataspace_misc.hpp:112
+
std::vector< size_t > getDimensions() const
Returns the size of the dataset in each dimension.
Definition H5Dataspace_misc.hpp:104
+
DataSpace clone() const
Create a copy of the DataSpace which will have different id.
Definition H5Dataspace_misc.hpp:94
+ +
static DataSpace Null()
Create a null DataSpace.
Definition H5Dataspace_misc.hpp:55
+
static const size_t UNLIMITED
Magic value to specify that a DataSpace can grow without limit.
Definition H5DataSpace.hpp:49
+
hid_t _hid
Definition H5Object.hpp:105
+ +
Definition H5_definitions.hpp:22
+ +
+
+ + + + diff --git a/_h5_easy_8hpp.html b/_h5_easy_8hpp.html new file mode 100644 index 000000000..23ae64b96 --- /dev/null +++ b/_h5_easy_8hpp.html @@ -0,0 +1,433 @@ + + + + + + + +HighFive: highfive/H5Easy.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Easy.hpp File Reference
+
+
+
#include <string>
+#include <vector>
+#include <xtensor/xarray.hpp>
+#include <xtensor/xtensor.hpp>
+#include <Eigen/Eigen>
+#include <opencv2/opencv.hpp>
+#include "H5File.hpp"
+#include "h5easy_bits/H5Easy_Eigen.hpp"
+#include "h5easy_bits/H5Easy_misc.hpp"
+#include "h5easy_bits/H5Easy_opencv.hpp"
+#include "h5easy_bits/H5Easy_public.hpp"
+#include "h5easy_bits/H5Easy_scalar.hpp"
+#include "h5easy_bits/H5Easy_vector.hpp"
+#include "h5easy_bits/H5Easy_xtensor.hpp"
+
+Include dependency graph for H5Easy.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + + + + +

+Classes

class  H5Easy::Compression
 Signal to set compression level for written DataSets. More...
 
class  H5Easy::DumpOptions
 Define options for dumping data. More...
 
+ + + + +

+Namespaces

namespace  H5Easy
 Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated, and accept:
 
+ + + + + + + +

+Enumerations

enum class  H5Easy::DumpMode { H5Easy::Create = 0 +, H5Easy::Overwrite = 1 + }
 Write mode for DataSets. More...
 
enum class  H5Easy::Flush { H5Easy::False = 0 +, H5Easy::True = 1 + }
 Signal to enable/disable automatic flushing after write operations. More...
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

size_t H5Easy::getSize (const File &file, const std::string &path)
 Get the size of an existing DataSet in an open HDF5 file.
 
std::vector< size_t > H5Easy::getShape (const File &file, const std::string &path)
 Get the shape of an existing DataSet in an readable file.
 
template<class T >
DataSet H5Easy::dump (File &file, const std::string &path, const T &data, DumpMode mode=DumpMode::Create)
 Write object (templated) to a (new) DataSet in an open HDF5 file.
 
template<class T >
DataSet H5Easy::dump (File &file, const std::string &path, const T &data, const DumpOptions &options)
 Write object (templated) to a (new) DataSet in an open HDF5 file.
 
template<class T >
DataSet H5Easy::dump (File &file, const std::string &path, const T &data, const std::vector< size_t > &idx)
 Write a scalar to a (new, extendible) DataSet in an open HDF5 file.
 
template<class T >
DataSet H5Easy::dump (File &file, const std::string &path, const T &data, const std::initializer_list< size_t > &idx)
 Write a scalar to a (new, extendable) DataSet in an open HDF5 file.
 
template<class T >
DataSet H5Easy::dump (File &file, const std::string &path, const T &data, const std::vector< size_t > &idx, const DumpOptions &options)
 Write a scalar to a (new, extendible) DataSet in an open HDF5 file.
 
template<class T >
DataSet H5Easy::dump (File &file, const std::string &path, const T &data, const std::initializer_list< size_t > &idx, const DumpOptions &options)
 Write a scalar to a (new, extendible) DataSet in an open HDF5 file.
 
template<class T >
H5Easy::load (const File &file, const std::string &path, const std::vector< size_t > &idx)
 Load entry {i, j, ...} from a DataSet in an open HDF5 file to a scalar.
 
template<class T >
H5Easy::load (const File &file, const std::string &path)
 Load a DataSet in an open HDF5 file to an object (templated).
 
template<class T >
Attribute H5Easy::dumpAttribute (File &file, const std::string &path, const std::string &key, const T &data, DumpMode mode=DumpMode::Create)
 Write object (templated) to a (new) Attribute in an open HDF5 file.
 
template<class T >
Attribute H5Easy::dumpAttribute (File &file, const std::string &path, const std::string &key, const T &data, const DumpOptions &options)
 Write object (templated) to a (new) Attribute in an open HDF5 file.
 
template<class T >
H5Easy::loadAttribute (const File &file, const std::string &path, const std::string &key)
 Load a Attribute in an open HDF5 file to an object (templated).
 
+
+
+ + + + diff --git a/_h5_easy_8hpp.js b/_h5_easy_8hpp.js new file mode 100644 index 000000000..619c143bc --- /dev/null +++ b/_h5_easy_8hpp.js @@ -0,0 +1,26 @@ +var _h5_easy_8hpp = +[ + [ "H5Easy::Compression", "class_h5_easy_1_1_compression.html", "class_h5_easy_1_1_compression" ], + [ "H5Easy::DumpOptions", "class_h5_easy_1_1_dump_options.html", "class_h5_easy_1_1_dump_options" ], + [ "DumpMode", "_h5_easy_8hpp.html#a6d10754b7f2ada9e3296560032dd81a0", [ + [ "Create", "_h5_easy_8hpp.html#a6d10754b7f2ada9e3296560032dd81a0a686e697538050e4664636337cc3b834f", null ], + [ "Overwrite", "_h5_easy_8hpp.html#a6d10754b7f2ada9e3296560032dd81a0ada364eb37e143f6b2b5559aa03f5913a", null ] + ] ], + [ "Flush", "_h5_easy_8hpp.html#af71ce7ab9b99227bdead69993d1f3b62", [ + [ "False", "_h5_easy_8hpp.html#af71ce7ab9b99227bdead69993d1f3b62af8320b26d30ab433c5a54546d21f414c", null ], + [ "True", "_h5_easy_8hpp.html#af71ce7ab9b99227bdead69993d1f3b62af827cf462f62848df37c5e1e94a4da74", null ] + ] ], + [ "dump", "_h5_easy_8hpp.html#a7614d902c22b74a18fb29c42599a6785", null ], + [ "dump", "_h5_easy_8hpp.html#a2e96c80337866b79777e52faa7d692cc", null ], + [ "dump", "_h5_easy_8hpp.html#a5f0af85e0fe3ac03af665dae2a3e9e16", null ], + [ "dump", "_h5_easy_8hpp.html#a727340de29b032fa860412f6a69f215c", null ], + [ "dump", "_h5_easy_8hpp.html#a26be50f813db9257d77b0c25adfdf726", null ], + [ "dump", "_h5_easy_8hpp.html#a3d74bc6b96493dbef4fb3b4e237cff88", null ], + [ "dumpAttribute", "_h5_easy_8hpp.html#a4a395eb642d1a2d5055282dacf32ee94", null ], + [ "dumpAttribute", "_h5_easy_8hpp.html#a85cad90855dbb23ba985be58b447a6b2", null ], + [ "getShape", "_h5_easy_8hpp.html#aa178d03fd7b8d435b5b41f613c1eaa8b", null ], + [ "getSize", "_h5_easy_8hpp.html#a225c8cffbe78d15254ecde0c8a42958b", null ], + [ "load", "_h5_easy_8hpp.html#a35bd0e824fe3dca2e2d9f9b5e42a18aa", null ], + [ "load", "_h5_easy_8hpp.html#a97ce3122b92fcf8322ed7e8c460c6862", null ], + [ "loadAttribute", "_h5_easy_8hpp.html#a6dc2a2016da5196913ab7036700006fa", null ] +]; \ No newline at end of file diff --git a/_h5_easy_8hpp__dep__incl.map b/_h5_easy_8hpp__dep__incl.map new file mode 100644 index 000000000..f8a84c94a --- /dev/null +++ b/_h5_easy_8hpp__dep__incl.map @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_easy_8hpp__dep__incl.md5 b/_h5_easy_8hpp__dep__incl.md5 new file mode 100644 index 000000000..f21b0d25c --- /dev/null +++ b/_h5_easy_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +d44107fa08bcab1bc164cb2f139a9adc \ No newline at end of file diff --git a/_h5_easy_8hpp__dep__incl.png b/_h5_easy_8hpp__dep__incl.png new file mode 100644 index 000000000..0541a1492 Binary files /dev/null and b/_h5_easy_8hpp__dep__incl.png differ diff --git a/_h5_easy_8hpp__incl.map b/_h5_easy_8hpp__incl.map new file mode 100644 index 000000000..3b495a3dc --- /dev/null +++ b/_h5_easy_8hpp__incl.map @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_easy_8hpp__incl.md5 b/_h5_easy_8hpp__incl.md5 new file mode 100644 index 000000000..49dd95d63 --- /dev/null +++ b/_h5_easy_8hpp__incl.md5 @@ -0,0 +1 @@ +0c5e83a1773aa38ebedcb57579cb014c \ No newline at end of file diff --git a/_h5_easy_8hpp__incl.png b/_h5_easy_8hpp__incl.png new file mode 100644 index 000000000..c1838c676 Binary files /dev/null and b/_h5_easy_8hpp__incl.png differ diff --git a/_h5_easy_8hpp_source.html b/_h5_easy_8hpp_source.html new file mode 100644 index 000000000..3f4803a92 --- /dev/null +++ b/_h5_easy_8hpp_source.html @@ -0,0 +1,374 @@ + + + + + + + +HighFive: highfive/H5Easy.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Easy.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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
+
17
+
18#pragma once
+
19
+
20#include <string>
+
21#include <vector>
+
22
+
23// optionally enable xtensor plug-in and load the library
+
24#ifdef XTENSOR_VERSION_MAJOR
+
25#ifndef H5_USE_XTENSOR
+
26#define H5_USE_XTENSOR
+
27#endif
+
28#endif
+
29
+
30#ifdef H5_USE_XTENSOR
+
31#include <xtensor/xarray.hpp>
+
32#include <xtensor/xtensor.hpp>
+
33#endif
+
34
+
35// optionally enable Eigen plug-in and load the library
+
36#ifdef EIGEN_WORLD_VERSION
+
37#ifndef H5_USE_EIGEN
+
38#define H5_USE_EIGEN
+
39#endif
+
40#endif
+
41
+
42#ifdef H5_USE_EIGEN
+
43#include <Eigen/Eigen>
+
44#endif
+
45
+
46// optionally enable OpenCV plug-in and load the library
+
47#ifdef CV_MAJOR_VERSION
+
48#ifndef H5_USE_OPENCV
+
49#define H5_USE_OPENCV
+
50#endif
+
51#endif
+
52
+
53#ifdef H5_USE_OPENCV
+
54#include <opencv2/opencv.hpp>
+
55#endif
+
56
+
57#include "H5File.hpp"
+
58
+
+
59namespace H5Easy {
+
60
+ + + + + + + + +
69using HighFive::File;
+ + +
72
+
+
75enum class DumpMode {
+
76 Create = 0,
+
77 Overwrite = 1
+
78};
+
+
79
+
+
82enum class Flush {
+
83 False = 0,
+
84 True = 1
+
85};
+
+
86
+
+ +
90 public:
+
96 explicit Compression(bool enable = true);
+
97
+
102 template <class T>
+
103 Compression(T level);
+
104
+
107 inline unsigned get() const;
+
108
+
109 private:
+
110 unsigned m_compression_level;
+
111};
+
+
112
+
+ +
122 public:
+
125 DumpOptions() = default;
+
126
+
130 template <class... Args>
+
+
131 DumpOptions(Args... args) {
+
132 set(args...);
+
133 }
+
+
134
+
138 inline void set(DumpMode mode);
+
139
+
143 inline void set(Flush mode);
+
144
+
148 inline void set(const Compression& level);
+
149
+
154 template <class T, class... Args>
+
155 inline void set(T arg, Args... args);
+
156
+
160 template <class T>
+
161 inline void setChunkSize(const std::vector<T>& shape);
+
162
+
166 inline void setChunkSize(std::initializer_list<size_t> shape);
+
167
+
171 inline bool overwrite() const;
+
172
+
176 inline bool flush() const;
+
177
+
181 inline bool compress() const;
+
182
+
186 inline unsigned getCompressionLevel() const;
+
187
+
192 inline bool isChunked() const;
+
193
+
197 inline std::vector<hsize_t> getChunkSize() const;
+
198
+
199 private:
+
200 bool m_overwrite = false;
+
201 bool m_flush = true;
+
202 unsigned m_compression_level = 0;
+
203 std::vector<hsize_t> m_chunk_size = {};
+
204};
+
+
205
+
213inline size_t getSize(const File& file, const std::string& path);
+
214
+
222inline std::vector<size_t> getShape(const File& file, const std::string& path);
+
223
+
234template <class T>
+
235inline DataSet dump(File& file,
+
236 const std::string& path,
+
237 const T& data,
+ +
239
+
250template <class T>
+
251inline DataSet dump(File& file, const std::string& path, const T& data, const DumpOptions& options);
+
252
+
263template <class T>
+
264inline DataSet dump(File& file,
+
265 const std::string& path,
+
266 const T& data,
+
267 const std::vector<size_t>& idx);
+
268
+
279template <class T>
+
280inline DataSet dump(File& file,
+
281 const std::string& path,
+
282 const T& data,
+
283 const std::initializer_list<size_t>& idx);
+
284
+
296template <class T>
+
297inline DataSet dump(File& file,
+
298 const std::string& path,
+
299 const T& data,
+
300 const std::vector<size_t>& idx,
+
301 const DumpOptions& options);
+
302
+
314template <class T>
+
315inline DataSet dump(File& file,
+
316 const std::string& path,
+
317 const T& data,
+
318 const std::initializer_list<size_t>& idx,
+
319 const DumpOptions& options);
+
320
+
330template <class T>
+
331inline T load(const File& file, const std::string& path, const std::vector<size_t>& idx);
+
332
+
341template <class T>
+
342inline T load(const File& file, const std::string& path);
+
343
+
355template <class T>
+
356inline Attribute dumpAttribute(File& file,
+
357 const std::string& path,
+
358 const std::string& key,
+
359 const T& data,
+ +
361
+
373template <class T>
+
374inline Attribute dumpAttribute(File& file,
+
375 const std::string& path,
+
376 const std::string& key,
+
377 const T& data,
+
378 const DumpOptions& options);
+
379
+
389template <class T>
+
390inline T loadAttribute(const File& file, const std::string& path, const std::string& key);
+
391
+
392} // namespace H5Easy
+
+
393
+ + + + + + + + + + + + + + + +
Signal to set compression level for written DataSets.
Definition H5Easy.hpp:89
+
unsigned get() const
Return compression level.
Definition H5Easy_public.hpp:27
+
Compression(bool enable=true)
Enable compression with the highest compression level (9). or disable compression (set compression le...
Definition H5Easy_public.hpp:15
+
Define options for dumping data.
Definition H5Easy.hpp:121
+
bool flush() const
Get flush-mode.
Definition H5Easy_public.hpp:62
+
bool isChunked() const
Get chunking mode: true is manually set, false if chunk-size should be computed automatically.
Definition H5Easy_public.hpp:74
+
std::vector< hsize_t > getChunkSize() const
Get chunk size. Use DumpOptions::getChunkSize to check if chunk-size should be automatically computed...
Definition H5Easy_public.hpp:78
+
DumpOptions()=default
Constructor: accept all default settings.
+
unsigned getCompressionLevel() const
Get compression level.
Definition H5Easy_public.hpp:70
+
bool overwrite() const
Get overwrite-mode.
Definition H5Easy_public.hpp:58
+
void set(DumpMode mode)
Overwrite H5Easy::DumpMode setting.
Definition H5Easy_public.hpp:31
+
bool compress() const
Get compress-mode.
Definition H5Easy_public.hpp:66
+
DumpOptions(Args... args)
Constructor: overwrite (some of the) defaults.
Definition H5Easy.hpp:131
+
void setChunkSize(const std::vector< T > &shape)
Set chunk-size. If the input is rank (size) zero, automatic chunking is enabled.
Definition H5Easy_public.hpp:50
+
create an HDF5 DataType from a C++ type
Definition H5DataType.hpp:187
+
Class representing an Attribute of a DataSet or Group.
Definition H5Attribute.hpp:46
+
Definition H5PropertyList.hpp:503
+
Class representing a dataset.
Definition H5DataSet.hpp:30
+
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
+
Definition H5PropertyList.hpp:522
+
Basic HighFive Exception class.
Definition H5Exception.hpp:23
+
File class.
Definition H5File.hpp:24
+
HDF5 property Lists.
Definition H5PropertyList.hpp:160
+
Definition H5PropertyList.hpp:550
+
Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated...
Definition H5Easy.hpp:59
+
size_t getSize(const File &file, const std::string &path)
Get the size of an existing DataSet in an open HDF5 file.
Definition H5Easy_public.hpp:82
+
DataSet dump(File &file, const std::string &path, const T &data, DumpMode mode=DumpMode::Create)
Write object (templated) to a (new) DataSet in an open HDF5 file.
Definition H5Easy_public.hpp:99
+
DumpMode
Write mode for DataSets.
Definition H5Easy.hpp:75
+ + +
T loadAttribute(const File &file, const std::string &path, const std::string &key)
Load a Attribute in an open HDF5 file to an object (templated).
Definition H5Easy_public.hpp:166
+
Attribute dumpAttribute(File &file, const std::string &path, const std::string &key, const T &data, DumpMode mode=DumpMode::Create)
Write object (templated) to a (new) Attribute in an open HDF5 file.
Definition H5Easy_public.hpp:148
+
T load(const File &file, const std::string &path, const std::vector< size_t > &idx)
Load entry {i, j, ...} from a DataSet in an open HDF5 file to a scalar.
Definition H5Easy_public.hpp:138
+
std::vector< size_t > getShape(const File &file, const std::string &path)
Get the shape of an existing DataSet in an readable file.
Definition H5Easy_public.hpp:86
+
Flush
Signal to enable/disable automatic flushing after write operations.
Definition H5Easy.hpp:82
+ + +
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24
+ +
+
+ + + + diff --git a/_h5_easy___eigen_8hpp.html b/_h5_easy___eigen_8hpp.html new file mode 100644 index 000000000..1fd8ead7a --- /dev/null +++ b/_h5_easy___eigen_8hpp.html @@ -0,0 +1,344 @@ + + + + + + + +HighFive: highfive/h5easy_bits/H5Easy_Eigen.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Easy_Eigen.hpp File Reference
+
+
+
#include "../H5Easy.hpp"
+#include "H5Easy_misc.hpp"
+#include "H5Easy_scalar.hpp"
+
+Include dependency graph for H5Easy_Eigen.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + +

+Namespaces

namespace  H5Easy
 Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated, and accept:
 
+
+
+ + + + diff --git a/_h5_easy___eigen_8hpp__dep__incl.map b/_h5_easy___eigen_8hpp__dep__incl.map new file mode 100644 index 000000000..ca255d882 --- /dev/null +++ b/_h5_easy___eigen_8hpp__dep__incl.map @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_easy___eigen_8hpp__dep__incl.md5 b/_h5_easy___eigen_8hpp__dep__incl.md5 new file mode 100644 index 000000000..a87ad9cc7 --- /dev/null +++ b/_h5_easy___eigen_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +6b1947ccff176e2c9e73431c4886874d \ No newline at end of file diff --git a/_h5_easy___eigen_8hpp__dep__incl.png b/_h5_easy___eigen_8hpp__dep__incl.png new file mode 100644 index 000000000..b64f9710f Binary files /dev/null and b/_h5_easy___eigen_8hpp__dep__incl.png differ diff --git a/_h5_easy___eigen_8hpp__incl.map b/_h5_easy___eigen_8hpp__incl.map new file mode 100644 index 000000000..98ea2b4da --- /dev/null +++ b/_h5_easy___eigen_8hpp__incl.map @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_easy___eigen_8hpp__incl.md5 b/_h5_easy___eigen_8hpp__incl.md5 new file mode 100644 index 000000000..36ad46bd9 --- /dev/null +++ b/_h5_easy___eigen_8hpp__incl.md5 @@ -0,0 +1 @@ +b171407a20c95a4fa4fe268f4c1194a4 \ No newline at end of file diff --git a/_h5_easy___eigen_8hpp__incl.png b/_h5_easy___eigen_8hpp__incl.png new file mode 100644 index 000000000..fe89a270b Binary files /dev/null and b/_h5_easy___eigen_8hpp__incl.png differ diff --git a/_h5_easy___eigen_8hpp_source.html b/_h5_easy___eigen_8hpp_source.html new file mode 100644 index 000000000..5497031b0 --- /dev/null +++ b/_h5_easy___eigen_8hpp_source.html @@ -0,0 +1,269 @@ + + + + + + + +HighFive: highfive/h5easy_bits/H5Easy_Eigen.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Easy_Eigen.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 "../H5Easy.hpp"
+
12#include "H5Easy_misc.hpp"
+
13#include "H5Easy_scalar.hpp"
+
14
+
15#ifdef H5_USE_EIGEN
+
16
+
17namespace H5Easy {
+
18
+
19namespace detail {
+
20
+
21template <typename T>
+
22struct io_impl<T, typename std::enable_if<std::is_base_of<Eigen::DenseBase<T>, T>::value>::type> {
+
23 // abbreviate row-major <-> col-major conversions
+
24 template <typename S>
+
25 struct types {
+
26 using row_major = Eigen::Ref<
+
27 const Eigen::Array<typename std::decay<T>::type::Scalar,
+
28 std::decay<T>::type::RowsAtCompileTime,
+
29 std::decay<T>::type::ColsAtCompileTime,
+
30 std::decay<T>::type::ColsAtCompileTime == 1 ? Eigen::ColMajor
+
31 : Eigen::RowMajor,
+
32 std::decay<T>::type::MaxRowsAtCompileTime,
+
33 std::decay<T>::type::MaxColsAtCompileTime>,
+
34 0,
+
35 Eigen::InnerStride<1>>;
+
36
+
37 using col_major =
+
38 Eigen::Map<Eigen::Array<typename std::decay<T>::type::Scalar,
+
39 std::decay<T>::type::RowsAtCompileTime,
+
40 std::decay<T>::type::ColsAtCompileTime,
+
41 std::decay<T>::type::ColsAtCompileTime == 1 ? Eigen::ColMajor
+
42 : Eigen::RowMajor,
+
43 std::decay<T>::type::MaxRowsAtCompileTime,
+
44 std::decay<T>::type::MaxColsAtCompileTime>>;
+
45 };
+
46
+
47 // return the shape of Eigen::DenseBase<T> object as size 1 or 2 "std::vector<size_t>"
+
48 inline static std::vector<size_t> shape(const T& data) {
+
49 if (std::decay<T>::type::RowsAtCompileTime == 1) {
+
50 return {static_cast<size_t>(data.cols())};
+
51 }
+
52 if (std::decay<T>::type::ColsAtCompileTime == 1) {
+
53 return {static_cast<size_t>(data.rows())};
+
54 }
+
55 return {static_cast<size_t>(data.rows()), static_cast<size_t>(data.cols())};
+
56 }
+
57
+
58 using EigenIndex = Eigen::DenseIndex;
+
59
+
60 // get the shape of a "DataSet" as size 2 "std::vector<Eigen::Index>"
+
61 template <class D>
+
62 inline static std::vector<EigenIndex> shape(const File& file,
+
63 const std::string& path,
+
64 const D& dataset,
+
65 int RowsAtCompileTime) {
+
66 std::vector<size_t> dims = dataset.getDimensions();
+
67
+
68 if (dims.size() == 1 && RowsAtCompileTime == 1) {
+
69 return std::vector<EigenIndex>{1u, static_cast<EigenIndex>(dims[0])};
+
70 }
+
71 if (dims.size() == 1) {
+
72 return std::vector<EigenIndex>{static_cast<EigenIndex>(dims[0]), 1u};
+
73 }
+
74 if (dims.size() == 2) {
+
75 return std::vector<EigenIndex>{static_cast<EigenIndex>(dims[0]),
+
76 static_cast<EigenIndex>(dims[1])};
+
77 }
+
78
+
79 throw detail::error(file, path, "H5Easy::load: Inconsistent rank");
+
80 }
+
81
+
82 inline static DataSet dump(File& file,
+
83 const std::string& path,
+
84 const T& data,
+
85 const DumpOptions& options) {
+
86 using row_major_type = typename types<T>::row_major;
+
87 using value_type = typename std::decay<T>::type::Scalar;
+
88 row_major_type row_major(data);
+
89 DataSet dataset = initDataset<value_type>(file, path, shape(data), options);
+
90 dataset.write_raw(row_major.data());
+
91 if (options.flush()) {
+
92 file.flush();
+
93 }
+
94 return dataset;
+
95 }
+
96
+
97 inline static T load(const File& file, const std::string& path) {
+
98 DataSet dataset = file.getDataSet(path);
+
99 std::vector<typename T::Index> dims = shape(file, path, dataset, T::RowsAtCompileTime);
+
100 T data(dims[0], dims[1]);
+
101 dataset.read_raw(data.data());
+
102 if (data.IsVectorAtCompileTime || data.IsRowMajor) {
+
103 return data;
+
104 }
+
105 using col_major = typename types<T>::col_major;
+
106 return col_major(data.data(), dims[0], dims[1]);
+
107 }
+
108
+
109 inline static Attribute dumpAttribute(File& file,
+
110 const std::string& path,
+
111 const std::string& key,
+
112 const T& data,
+
113 const DumpOptions& options) {
+
114 using row_major_type = typename types<T>::row_major;
+
115 using value_type = typename std::decay<T>::type::Scalar;
+
116 row_major_type row_major(data);
+
117 Attribute attribute = initAttribute<value_type>(file, path, key, shape(data), options);
+
118 attribute.write_raw(row_major.data());
+
119 if (options.flush()) {
+
120 file.flush();
+
121 }
+
122 return attribute;
+
123 }
+
124
+
125 inline static T loadAttribute(const File& file,
+
126 const std::string& path,
+
127 const std::string& key) {
+
128 DataSet dataset = file.getDataSet(path);
+
129 Attribute attribute = dataset.getAttribute(key);
+
130 DataSpace dataspace = attribute.getSpace();
+
131 std::vector<typename T::Index> dims = shape(file, path, dataspace, T::RowsAtCompileTime);
+
132 T data(dims[0], dims[1]);
+
133 attribute.read_raw(data.data());
+
134 if (data.IsVectorAtCompileTime || data.IsRowMajor) {
+
135 return data;
+
136 }
+
137 using col_major = typename types<T>::col_major;
+
138 return col_major(data.data(), dims[0], dims[1]);
+
139 }
+
140};
+
141
+
142} // namespace detail
+
143} // namespace H5Easy
+
144
+
145#endif // H5_USE_EIGEN
+ + + +
Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated...
Definition H5Easy.hpp:59
+
DataSet dump(File &file, const std::string &path, const T &data, DumpMode mode=DumpMode::Create)
Write object (templated) to a (new) DataSet in an open HDF5 file.
Definition H5Easy_public.hpp:99
+
T loadAttribute(const File &file, const std::string &path, const std::string &key)
Load a Attribute in an open HDF5 file to an object (templated).
Definition H5Easy_public.hpp:166
+
Attribute dumpAttribute(File &file, const std::string &path, const std::string &key, const T &data, DumpMode mode=DumpMode::Create)
Write object (templated) to a (new) Attribute in an open HDF5 file.
Definition H5Easy_public.hpp:148
+
T load(const File &file, const std::string &path, const std::vector< size_t > &idx)
Load entry {i, j, ...} from a DataSet in an open HDF5 file to a scalar.
Definition H5Easy_public.hpp:138
+ + +
+
+ + + + diff --git a/_h5_easy__misc_8hpp.html b/_h5_easy__misc_8hpp.html new file mode 100644 index 000000000..027168bfd --- /dev/null +++ b/_h5_easy__misc_8hpp.html @@ -0,0 +1,342 @@ + + + + + + + +HighFive: highfive/h5easy_bits/H5Easy_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Easy_misc.hpp File Reference
+
+
+
#include "../H5Easy.hpp"
+
+Include dependency graph for H5Easy_misc.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + +

+Namespaces

namespace  H5Easy
 Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated, and accept:
 
+
+
+ + + + diff --git a/_h5_easy__misc_8hpp__dep__incl.map b/_h5_easy__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..ebf51fcf1 --- /dev/null +++ b/_h5_easy__misc_8hpp__dep__incl.map @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_easy__misc_8hpp__dep__incl.md5 b/_h5_easy__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..b005d54cc --- /dev/null +++ b/_h5_easy__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +380f7fb4eb5f6595d0f35d2c64b08750 \ No newline at end of file diff --git a/_h5_easy__misc_8hpp__dep__incl.png b/_h5_easy__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..8d9ed935d Binary files /dev/null and b/_h5_easy__misc_8hpp__dep__incl.png differ diff --git a/_h5_easy__misc_8hpp__incl.map b/_h5_easy__misc_8hpp__incl.map new file mode 100644 index 000000000..0b572a232 --- /dev/null +++ b/_h5_easy__misc_8hpp__incl.map @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_easy__misc_8hpp__incl.md5 b/_h5_easy__misc_8hpp__incl.md5 new file mode 100644 index 000000000..d127bde10 --- /dev/null +++ b/_h5_easy__misc_8hpp__incl.md5 @@ -0,0 +1 @@ +6e1d2bb02f3f2e12106c2ff4a73ed8ed \ No newline at end of file diff --git a/_h5_easy__misc_8hpp__incl.png b/_h5_easy__misc_8hpp__incl.png new file mode 100644 index 000000000..c59046304 Binary files /dev/null and b/_h5_easy__misc_8hpp__incl.png differ diff --git a/_h5_easy__misc_8hpp_source.html b/_h5_easy__misc_8hpp_source.html new file mode 100644 index 000000000..4fe30fb14 --- /dev/null +++ b/_h5_easy__misc_8hpp_source.html @@ -0,0 +1,273 @@ + + + + + + + +HighFive: highfive/h5easy_bits/H5Easy_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Easy_misc.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 "../H5Easy.hpp"
+
12
+
13namespace H5Easy {
+
14
+
15namespace detail {
+
16
+
17// Generate error-stream and return "Exception" (not yet thrown).
+
18inline Exception error(const File& file, const std::string& path, const std::string& message) {
+
19 std::ostringstream ss;
+
20 ss << message << std::endl
+
21 << "Path: " << path << std::endl
+
22 << "Filename: " << file.getName() << std::endl;
+
23 return Exception(ss.str());
+
24}
+
25
+
26// Generate specific dump error
+
27inline Exception dump_error(File& file, const std::string& path) {
+
28 if (file.getObjectType(path) == ObjectType::Dataset) {
+
29 return error(file,
+
30 path,
+
31 "H5Easy: Dataset already exists, dump with H5Easy::DumpMode::Overwrite "
+
32 "to overwrite (with an array of the same shape).");
+
33 } else {
+
34 return error(
+
35 file,
+
36 path,
+
37 "H5Easy: path exists, but does not correspond to a Dataset. Dump not possible.");
+
38 }
+
39}
+
40
+
41// get a opened DataSet: nd-array
+
42template <class T>
+
43inline DataSet initDataset(File& file,
+
44 const std::string& path,
+
45 const std::vector<size_t>& shape,
+
46 const DumpOptions& options) {
+
47 if (!file.exist(path)) {
+
48 if (!options.compress() && !options.isChunked()) {
+
49 return file.createDataSet<T>(path, DataSpace(shape), {}, {}, true);
+
50 } else {
+
51 std::vector<hsize_t> chunks(shape.begin(), shape.end());
+
52 if (options.isChunked()) {
+
53 chunks = options.getChunkSize();
+
54 if (chunks.size() != shape.size()) {
+
55 throw error(file, path, "H5Easy::dump: Incorrect rank ChunkSize");
+
56 }
+
57 }
+ +
59 props.add(Chunking(chunks));
+
60 if (options.compress()) {
+
61 props.add(Shuffle());
+
62 props.add(Deflate(options.getCompressionLevel()));
+
63 }
+
64 return file.createDataSet<T>(path, DataSpace(shape), props, {}, true);
+
65 }
+
66 } else if (options.overwrite() && file.getObjectType(path) == ObjectType::Dataset) {
+
67 DataSet dataset = file.getDataSet(path);
+
68 if (dataset.getDimensions() != shape) {
+
69 throw error(file, path, "H5Easy::dump: Inconsistent dimensions");
+
70 }
+
71 return dataset;
+
72 }
+
73 throw dump_error(file, path);
+
74}
+
75
+
76// get a opened DataSet: scalar
+
77template <class T>
+
78inline DataSet initScalarDataset(File& file,
+
79 const std::string& path,
+
80 const T& data,
+
81 const DumpOptions& options) {
+
82 if (!file.exist(path)) {
+
83 return file.createDataSet<T>(path, DataSpace::From(data), {}, {}, true);
+
84 } else if (options.overwrite() && file.getObjectType(path) == ObjectType::Dataset) {
+
85 DataSet dataset = file.getDataSet(path);
+
86 if (dataset.getElementCount() != 1) {
+
87 throw error(file, path, "H5Easy::dump: Existing field not a scalar");
+
88 }
+
89 return dataset;
+
90 }
+
91 throw dump_error(file, path);
+
92}
+
93
+
94// get a opened Attribute: nd-array
+
95template <class T>
+
96inline Attribute initAttribute(File& file,
+
97 const std::string& path,
+
98 const std::string& key,
+
99 const std::vector<size_t>& shape,
+
100 const DumpOptions& options) {
+
101 if (!file.exist(path)) {
+
102 throw error(file, path, "H5Easy::dumpAttribute: DataSet does not exist");
+
103 }
+
104 if (file.getObjectType(path) != ObjectType::Dataset) {
+
105 throw error(file, path, "H5Easy::dumpAttribute: path not a DataSet");
+
106 }
+
107 DataSet dataset = file.getDataSet(path);
+
108 if (!dataset.hasAttribute(key)) {
+
109 return dataset.createAttribute<T>(key, DataSpace(shape));
+
110 } else if (options.overwrite()) {
+
111 Attribute attribute = dataset.getAttribute(key);
+
112 DataSpace dataspace = attribute.getSpace();
+
113 if (dataspace.getDimensions() != shape) {
+
114 throw error(file, path, "H5Easy::dumpAttribute: Inconsistent dimensions");
+
115 }
+
116 return attribute;
+
117 }
+
118 throw error(file,
+
119 path,
+
120 "H5Easy: Attribute exists, overwrite with H5Easy::DumpMode::Overwrite.");
+
121}
+
122
+
123// get a opened Attribute: scalar
+
124template <class T>
+
125inline Attribute initScalarAttribute(File& file,
+
126 const std::string& path,
+
127 const std::string& key,
+
128 const T& data,
+
129 const DumpOptions& options) {
+
130 if (!file.exist(path)) {
+
131 throw error(file, path, "H5Easy::dumpAttribute: DataSet does not exist");
+
132 }
+
133 if (file.getObjectType(path) != ObjectType::Dataset) {
+
134 throw error(file, path, "H5Easy::dumpAttribute: path not a DataSet");
+
135 }
+
136 DataSet dataset = file.getDataSet(path);
+
137 if (!dataset.hasAttribute(key)) {
+
138 return dataset.createAttribute<T>(key, DataSpace::From(data));
+
139 } else if (options.overwrite()) {
+
140 Attribute attribute = dataset.getAttribute(key);
+
141 DataSpace dataspace = attribute.getSpace();
+
142 if (dataspace.getElementCount() != 1) {
+
143 throw error(file, path, "H5Easy::dumpAttribute: Existing field not a scalar");
+
144 }
+
145 return attribute;
+
146 }
+
147 throw error(file,
+
148 path,
+
149 "H5Easy: Attribute exists, overwrite with H5Easy::DumpMode::Overwrite.");
+
150}
+
151
+
152} // namespace detail
+
153} // namespace H5Easy
+ +
static DataSpace From(const T &value)
Automatically deduce the DataSpace from a container/value.
Definition H5Dataspace_misc.hpp:128
+
PropertyList< PropertyType::DATASET_CREATE > DataSetCreateProps
Definition H5PropertyList.hpp:201
+
Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated...
Definition H5Easy.hpp:59
+ + +
+
+ + + + diff --git a/_h5_easy__opencv_8hpp.html b/_h5_easy__opencv_8hpp.html new file mode 100644 index 000000000..26c8005b6 --- /dev/null +++ b/_h5_easy__opencv_8hpp.html @@ -0,0 +1,344 @@ + + + + + + + +HighFive: highfive/h5easy_bits/H5Easy_opencv.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Easy_opencv.hpp File Reference
+
+
+
#include "../H5Easy.hpp"
+#include "H5Easy_misc.hpp"
+#include "H5Easy_scalar.hpp"
+
+Include dependency graph for H5Easy_opencv.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + +

+Namespaces

namespace  H5Easy
 Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated, and accept:
 
+
+
+ + + + diff --git a/_h5_easy__opencv_8hpp__dep__incl.map b/_h5_easy__opencv_8hpp__dep__incl.map new file mode 100644 index 000000000..aae21228a --- /dev/null +++ b/_h5_easy__opencv_8hpp__dep__incl.map @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_easy__opencv_8hpp__dep__incl.md5 b/_h5_easy__opencv_8hpp__dep__incl.md5 new file mode 100644 index 000000000..b3ee19258 --- /dev/null +++ b/_h5_easy__opencv_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +d2d11a1b106fc8d99020ad113c4bc28d \ No newline at end of file diff --git a/_h5_easy__opencv_8hpp__dep__incl.png b/_h5_easy__opencv_8hpp__dep__incl.png new file mode 100644 index 000000000..ab41b0aff Binary files /dev/null and b/_h5_easy__opencv_8hpp__dep__incl.png differ diff --git a/_h5_easy__opencv_8hpp__incl.map b/_h5_easy__opencv_8hpp__incl.map new file mode 100644 index 000000000..cb4f0c033 --- /dev/null +++ b/_h5_easy__opencv_8hpp__incl.map @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_easy__opencv_8hpp__incl.md5 b/_h5_easy__opencv_8hpp__incl.md5 new file mode 100644 index 000000000..9bf841bbb --- /dev/null +++ b/_h5_easy__opencv_8hpp__incl.md5 @@ -0,0 +1 @@ +d557eece013160387bf8dab4b1ac6cc9 \ No newline at end of file diff --git a/_h5_easy__opencv_8hpp__incl.png b/_h5_easy__opencv_8hpp__incl.png new file mode 100644 index 000000000..7cc05f5ac Binary files /dev/null and b/_h5_easy__opencv_8hpp__incl.png differ diff --git a/_h5_easy__opencv_8hpp_source.html b/_h5_easy__opencv_8hpp_source.html new file mode 100644 index 000000000..19e0ba514 --- /dev/null +++ b/_h5_easy__opencv_8hpp_source.html @@ -0,0 +1,224 @@ + + + + + + + +HighFive: highfive/h5easy_bits/H5Easy_opencv.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Easy_opencv.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 "../H5Easy.hpp"
+
12#include "H5Easy_misc.hpp"
+
13#include "H5Easy_scalar.hpp"
+
14
+
15#ifdef H5_USE_OPENCV
+
16
+
17namespace H5Easy {
+
18
+
19namespace detail {
+
20
+
21template <class T>
+
22struct is_opencv: std::false_type {};
+
23template <class T>
+
24struct is_opencv<cv::Mat_<T>>: std::true_type {};
+
25
+
26template <typename T>
+
27struct io_impl<T, typename std::enable_if<is_opencv<T>::value>::type> {
+
28 inline static std::vector<size_t> shape(const T& data) {
+
29 return std::vector<size_t>{static_cast<size_t>(data.rows), static_cast<size_t>(data.cols)};
+
30 }
+
31
+
32 inline static std::vector<int> shape(const File& file,
+
33 const std::string& path,
+
34 std::vector<size_t> dims) {
+
35 if (dims.size() == 1) {
+
36 return std::vector<int>{static_cast<int>(dims[0]), 1ul};
+
37 }
+
38 if (dims.size() == 2) {
+
39 return std::vector<int>{static_cast<int>(dims[0]), static_cast<int>(dims[1])};
+
40 }
+
41
+
42 throw detail::error(file, path, "H5Easy::load: Inconsistent rank");
+
43 }
+
44
+
45 inline static DataSet dump(File& file,
+
46 const std::string& path,
+
47 const T& data,
+
48 const DumpOptions& options) {
+
49 using value_type = typename T::value_type;
+
50 DataSet dataset = initDataset<value_type>(file, path, shape(data), options);
+
51 std::vector<value_type> v(data.begin(), data.end());
+
52 dataset.write_raw(v.data());
+
53 if (options.flush()) {
+
54 file.flush();
+
55 }
+
56 return dataset;
+
57 }
+
58
+
59 inline static T load(const File& file, const std::string& path) {
+
60 using value_type = typename T::value_type;
+
61 DataSet dataset = file.getDataSet(path);
+
62 std::vector<int> dims = shape(file, path, dataset.getDimensions());
+
63 T data(dims[0], dims[1]);
+
64 dataset.read_raw(reinterpret_cast<value_type*>(data.data));
+
65 return data;
+
66 }
+
67
+
68 inline static Attribute dumpAttribute(File& file,
+
69 const std::string& path,
+
70 const std::string& key,
+
71 const T& data,
+
72 const DumpOptions& options) {
+
73 using value_type = typename T::value_type;
+
74 Attribute attribute = initAttribute<value_type>(file, path, key, shape(data), options);
+
75 std::vector<value_type> v(data.begin(), data.end());
+
76 attribute.write_raw(v.data());
+
77 if (options.flush()) {
+
78 file.flush();
+
79 }
+
80 return attribute;
+
81 }
+
82
+
83 inline static T loadAttribute(const File& file,
+
84 const std::string& path,
+
85 const std::string& key) {
+
86 using value_type = typename T::value_type;
+
87 DataSet dataset = file.getDataSet(path);
+
88 Attribute attribute = dataset.getAttribute(key);
+
89 DataSpace dataspace = attribute.getSpace();
+
90 std::vector<int> dims = shape(file, path, dataspace.getDimensions());
+
91 T data(dims[0], dims[1]);
+
92 attribute.read_raw(reinterpret_cast<value_type*>(data.data));
+
93 return data;
+
94 }
+
95};
+
96
+
97} // namespace detail
+
98} // namespace H5Easy
+
99
+
100#endif // H5_USE_OPENCV
+ + + +
Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated...
Definition H5Easy.hpp:59
+
DataSet dump(File &file, const std::string &path, const T &data, DumpMode mode=DumpMode::Create)
Write object (templated) to a (new) DataSet in an open HDF5 file.
Definition H5Easy_public.hpp:99
+
T loadAttribute(const File &file, const std::string &path, const std::string &key)
Load a Attribute in an open HDF5 file to an object (templated).
Definition H5Easy_public.hpp:166
+
Attribute dumpAttribute(File &file, const std::string &path, const std::string &key, const T &data, DumpMode mode=DumpMode::Create)
Write object (templated) to a (new) Attribute in an open HDF5 file.
Definition H5Easy_public.hpp:148
+
T load(const File &file, const std::string &path, const std::vector< size_t > &idx)
Load entry {i, j, ...} from a DataSet in an open HDF5 file to a scalar.
Definition H5Easy_public.hpp:138
+ + +
+
+ + + + diff --git a/_h5_easy__public_8hpp.html b/_h5_easy__public_8hpp.html new file mode 100644 index 000000000..aa1d6c690 --- /dev/null +++ b/_h5_easy__public_8hpp.html @@ -0,0 +1,396 @@ + + + + + + + +HighFive: highfive/h5easy_bits/H5Easy_public.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Easy_public.hpp File Reference
+
+
+
#include "../H5Easy.hpp"
+
+Include dependency graph for H5Easy_public.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + +

+Namespaces

namespace  H5Easy
 Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated, and accept:
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

size_t H5Easy::getSize (const File &file, const std::string &path)
 Get the size of an existing DataSet in an open HDF5 file.
 
std::vector< size_t > H5Easy::getShape (const File &file, const std::string &path)
 Get the shape of an existing DataSet in an readable file.
 
template<class T >
DataSet H5Easy::dump (File &file, const std::string &path, const T &data, const DumpOptions &options)
 Write object (templated) to a (new) DataSet in an open HDF5 file.
 
template<class T >
DataSet H5Easy::dump (File &file, const std::string &path, const T &data, DumpMode mode=DumpMode::Create)
 Write object (templated) to a (new) DataSet in an open HDF5 file.
 
template<class T >
DataSet H5Easy::dump (File &file, const std::string &path, const T &data, const std::vector< size_t > &idx, const DumpOptions &options)
 Write a scalar to a (new, extendible) DataSet in an open HDF5 file.
 
template<class T >
DataSet H5Easy::dump (File &file, const std::string &path, const T &data, const std::initializer_list< size_t > &idx, const DumpOptions &options)
 Write a scalar to a (new, extendible) DataSet in an open HDF5 file.
 
template<class T >
DataSet H5Easy::dump (File &file, const std::string &path, const T &data, const std::vector< size_t > &idx)
 Write a scalar to a (new, extendible) DataSet in an open HDF5 file.
 
template<class T >
DataSet H5Easy::dump (File &file, const std::string &path, const T &data, const std::initializer_list< size_t > &idx)
 Write a scalar to a (new, extendable) DataSet in an open HDF5 file.
 
template<class T >
H5Easy::load (const File &file, const std::string &path, const std::vector< size_t > &idx)
 Load entry {i, j, ...} from a DataSet in an open HDF5 file to a scalar.
 
template<class T >
H5Easy::load (const File &file, const std::string &path)
 Load a DataSet in an open HDF5 file to an object (templated).
 
template<class T >
Attribute H5Easy::dumpAttribute (File &file, const std::string &path, const std::string &key, const T &data, DumpMode mode=DumpMode::Create)
 Write object (templated) to a (new) Attribute in an open HDF5 file.
 
template<class T >
Attribute H5Easy::dumpAttribute (File &file, const std::string &path, const std::string &key, const T &data, const DumpOptions &options)
 Write object (templated) to a (new) Attribute in an open HDF5 file.
 
template<class T >
H5Easy::loadAttribute (const File &file, const std::string &path, const std::string &key)
 Load a Attribute in an open HDF5 file to an object (templated).
 
+
+
+ + + + diff --git a/_h5_easy__public_8hpp.js b/_h5_easy__public_8hpp.js new file mode 100644 index 000000000..66e7eafc1 --- /dev/null +++ b/_h5_easy__public_8hpp.js @@ -0,0 +1,16 @@ +var _h5_easy__public_8hpp = +[ + [ "dump", "_h5_easy__public_8hpp.html#a7614d902c22b74a18fb29c42599a6785", null ], + [ "dump", "_h5_easy__public_8hpp.html#a2e96c80337866b79777e52faa7d692cc", null ], + [ "dump", "_h5_easy__public_8hpp.html#a5f0af85e0fe3ac03af665dae2a3e9e16", null ], + [ "dump", "_h5_easy__public_8hpp.html#a727340de29b032fa860412f6a69f215c", null ], + [ "dump", "_h5_easy__public_8hpp.html#a26be50f813db9257d77b0c25adfdf726", null ], + [ "dump", "_h5_easy__public_8hpp.html#a3d74bc6b96493dbef4fb3b4e237cff88", null ], + [ "dumpAttribute", "_h5_easy__public_8hpp.html#a4a395eb642d1a2d5055282dacf32ee94", null ], + [ "dumpAttribute", "_h5_easy__public_8hpp.html#a85cad90855dbb23ba985be58b447a6b2", null ], + [ "getShape", "_h5_easy__public_8hpp.html#aa178d03fd7b8d435b5b41f613c1eaa8b", null ], + [ "getSize", "_h5_easy__public_8hpp.html#a225c8cffbe78d15254ecde0c8a42958b", null ], + [ "load", "_h5_easy__public_8hpp.html#a35bd0e824fe3dca2e2d9f9b5e42a18aa", null ], + [ "load", "_h5_easy__public_8hpp.html#a97ce3122b92fcf8322ed7e8c460c6862", null ], + [ "loadAttribute", "_h5_easy__public_8hpp.html#a6dc2a2016da5196913ab7036700006fa", null ] +]; \ No newline at end of file diff --git a/_h5_easy__public_8hpp__dep__incl.map b/_h5_easy__public_8hpp__dep__incl.map new file mode 100644 index 000000000..e7a115414 --- /dev/null +++ b/_h5_easy__public_8hpp__dep__incl.map @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_easy__public_8hpp__dep__incl.md5 b/_h5_easy__public_8hpp__dep__incl.md5 new file mode 100644 index 000000000..1615ff909 --- /dev/null +++ b/_h5_easy__public_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +b0b2004c83f36dc92a7f4a92743392f5 \ No newline at end of file diff --git a/_h5_easy__public_8hpp__dep__incl.png b/_h5_easy__public_8hpp__dep__incl.png new file mode 100644 index 000000000..b8953b781 Binary files /dev/null and b/_h5_easy__public_8hpp__dep__incl.png differ diff --git a/_h5_easy__public_8hpp__incl.map b/_h5_easy__public_8hpp__incl.map new file mode 100644 index 000000000..64ed43abe --- /dev/null +++ b/_h5_easy__public_8hpp__incl.map @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_easy__public_8hpp__incl.md5 b/_h5_easy__public_8hpp__incl.md5 new file mode 100644 index 000000000..18430038a --- /dev/null +++ b/_h5_easy__public_8hpp__incl.md5 @@ -0,0 +1 @@ +d494c0d2073d88f15a80e1638d566238 \ No newline at end of file diff --git a/_h5_easy__public_8hpp__incl.png b/_h5_easy__public_8hpp__incl.png new file mode 100644 index 000000000..cc73c8d92 Binary files /dev/null and b/_h5_easy__public_8hpp__incl.png differ diff --git a/_h5_easy__public_8hpp_source.html b/_h5_easy__public_8hpp_source.html new file mode 100644 index 000000000..6d818de06 --- /dev/null +++ b/_h5_easy__public_8hpp_source.html @@ -0,0 +1,368 @@ + + + + + + + +HighFive: highfive/h5easy_bits/H5Easy_public.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Easy_public.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 "../H5Easy.hpp"
+
12
+
13namespace H5Easy {
+
14
+
+
15inline Compression::Compression(bool enable) {
+
16 if (enable) {
+
17 m_compression_level = 9;
+
18 } else {
+
19 m_compression_level = 0;
+
20 }
+
21}
+
+
22
+
23template <class T>
+
+ +
25 : m_compression_level(static_cast<unsigned>(level)) {}
+
+
26
+
+
27inline unsigned Compression::get() const {
+
28 return m_compression_level;
+
29}
+
+
30
+
+
31inline void DumpOptions::set(DumpMode mode) {
+
32 m_overwrite = static_cast<bool>(mode);
+
33}
+
+
34
+
+
35inline void DumpOptions::set(Flush mode) {
+
36 m_flush = static_cast<bool>(mode);
+
37}
+
+
38
+
+
39inline void DumpOptions::set(const Compression& level) {
+
40 m_compression_level = level.get();
+
41}
+
+
42
+
43template <class T, class... Args>
+
+
44inline void DumpOptions::set(T arg, Args... args) {
+
45 set(arg);
+
46 set(args...);
+
47}
+
+
48
+
49template <class T>
+
+
50inline void DumpOptions::setChunkSize(const std::vector<T>& shape) {
+
51 m_chunk_size = std::vector<hsize_t>(shape.begin(), shape.end());
+
52}
+
+
53
+
+
54inline void DumpOptions::setChunkSize(std::initializer_list<size_t> shape) {
+
55 m_chunk_size = std::vector<hsize_t>(shape.begin(), shape.end());
+
56}
+
+
57
+
+
58inline bool DumpOptions::overwrite() const {
+
59 return m_overwrite;
+
60}
+
+
61
+
+
62inline bool DumpOptions::flush() const {
+
63 return m_flush;
+
64}
+
+
65
+
+
66inline bool DumpOptions::compress() const {
+
67 return m_compression_level > 0;
+
68}
+
+
69
+
+
70inline unsigned DumpOptions::getCompressionLevel() const {
+
71 return m_compression_level;
+
72}
+
+
73
+
+
74inline bool DumpOptions::isChunked() const {
+
75 return m_chunk_size.size() > 0;
+
76}
+
+
77
+
+
78inline std::vector<hsize_t> DumpOptions::getChunkSize() const {
+
79 return m_chunk_size;
+
80}
+
+
81
+
+
82inline size_t getSize(const File& file, const std::string& path) {
+
83 return file.getDataSet(path).getElementCount();
+
84}
+
+
85
+
+
86inline std::vector<size_t> getShape(const File& file, const std::string& path) {
+
87 return file.getDataSet(path).getDimensions();
+
88}
+
+
89
+
90template <class T>
+
+
91inline DataSet dump(File& file,
+
92 const std::string& path,
+
93 const T& data,
+
94 const DumpOptions& options) {
+
95 return detail::io_impl<T>::dump(file, path, data, options);
+
96}
+
+
97
+
98template <class T>
+
+
99inline DataSet dump(File& file, const std::string& path, const T& data, DumpMode mode) {
+
100 return detail::io_impl<T>::dump(file, path, data, DumpOptions(mode));
+
101}
+
+
102
+
103template <class T>
+
+
104inline DataSet dump(File& file,
+
105 const std::string& path,
+
106 const T& data,
+
107 const std::vector<size_t>& idx,
+
108 const DumpOptions& options) {
+
109 return detail::io_impl<T>::dump_extend(file, path, data, idx, options);
+
110}
+
+
111
+
112template <class T>
+
+
113inline DataSet dump(File& file,
+
114 const std::string& path,
+
115 const T& data,
+
116 const std::initializer_list<size_t>& idx,
+
117 const DumpOptions& options) {
+
118 return detail::io_impl<T>::dump_extend(file, path, data, idx, options);
+
119}
+
+
120
+
121template <class T>
+
+
122inline DataSet dump(File& file,
+
123 const std::string& path,
+
124 const T& data,
+
125 const std::vector<size_t>& idx) {
+
126 return detail::io_impl<T>::dump_extend(file, path, data, idx, DumpOptions());
+
127}
+
+
128
+
129template <class T>
+
+
130inline DataSet dump(File& file,
+
131 const std::string& path,
+
132 const T& data,
+
133 const std::initializer_list<size_t>& idx) {
+
134 return detail::io_impl<T>::dump_extend(file, path, data, idx, DumpOptions());
+
135}
+
+
136
+
137template <class T>
+
+
138inline T load(const File& file, const std::string& path, const std::vector<size_t>& idx) {
+
139 return detail::io_impl<T>::load_part(file, path, idx);
+
140}
+
+
141
+
142template <class T>
+
+
143inline T load(const File& file, const std::string& path) {
+
144 return detail::io_impl<T>::load(file, path);
+
145}
+
+
146
+
147template <class T>
+
+ +
149 const std::string& path,
+
150 const std::string& key,
+
151 const T& data,
+
152 DumpMode mode) {
+
153 return detail::io_impl<T>::dumpAttribute(file, path, key, data, DumpOptions(mode));
+
154}
+
+
155
+
156template <class T>
+
+ +
158 const std::string& path,
+
159 const std::string& key,
+
160 const T& data,
+
161 const DumpOptions& options) {
+
162 return detail::io_impl<T>::dumpAttribute(file, path, key, data, options);
+
163}
+
+
164
+
165template <class T>
+
+
166inline T loadAttribute(const File& file, const std::string& path, const std::string& key) {
+
167 return detail::io_impl<T>::loadAttribute(file, path, key);
+
168}
+
+
169
+
170} // namespace H5Easy
+ +
Signal to set compression level for written DataSets.
Definition H5Easy.hpp:89
+
unsigned get() const
Return compression level.
Definition H5Easy_public.hpp:27
+
Compression(bool enable=true)
Enable compression with the highest compression level (9). or disable compression (set compression le...
Definition H5Easy_public.hpp:15
+
Define options for dumping data.
Definition H5Easy.hpp:121
+
bool flush() const
Get flush-mode.
Definition H5Easy_public.hpp:62
+
bool isChunked() const
Get chunking mode: true is manually set, false if chunk-size should be computed automatically.
Definition H5Easy_public.hpp:74
+
std::vector< hsize_t > getChunkSize() const
Get chunk size. Use DumpOptions::getChunkSize to check if chunk-size should be automatically computed...
Definition H5Easy_public.hpp:78
+
unsigned getCompressionLevel() const
Get compression level.
Definition H5Easy_public.hpp:70
+
bool overwrite() const
Get overwrite-mode.
Definition H5Easy_public.hpp:58
+
void set(DumpMode mode)
Overwrite H5Easy::DumpMode setting.
Definition H5Easy_public.hpp:31
+
bool compress() const
Get compress-mode.
Definition H5Easy_public.hpp:66
+
void setChunkSize(const std::vector< T > &shape)
Set chunk-size. If the input is rank (size) zero, automatic chunking is enabled.
Definition H5Easy_public.hpp:50
+
Class representing an Attribute of a DataSet or Group.
Definition H5Attribute.hpp:46
+
Class representing a dataset.
Definition H5DataSet.hpp:30
+
size_t getElementCount() const
Get the total number of elements in the current dataset. E.g. 2x2x2 matrix has size 8....
Definition H5DataSet.hpp:87
+
std::vector< size_t > getDimensions() const
Get the dimensions of the whole DataSet. This is a shorthand for getSpace().getDimensions()
Definition H5DataSet.hpp:78
+
File class.
Definition H5File.hpp:24
+
DataSet getDataSet(const std::string &dataset_name, const DataSetAccessProps &accessProps=DataSetAccessProps::Default()) const
get an existing dataset in the current file
Definition H5Node_traits_misc.hpp:97
+
Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated...
Definition H5Easy.hpp:59
+
size_t getSize(const File &file, const std::string &path)
Get the size of an existing DataSet in an open HDF5 file.
Definition H5Easy_public.hpp:82
+
DataSet dump(File &file, const std::string &path, const T &data, DumpMode mode=DumpMode::Create)
Write object (templated) to a (new) DataSet in an open HDF5 file.
Definition H5Easy_public.hpp:99
+
DumpMode
Write mode for DataSets.
Definition H5Easy.hpp:75
+
T loadAttribute(const File &file, const std::string &path, const std::string &key)
Load a Attribute in an open HDF5 file to an object (templated).
Definition H5Easy_public.hpp:166
+
Attribute dumpAttribute(File &file, const std::string &path, const std::string &key, const T &data, DumpMode mode=DumpMode::Create)
Write object (templated) to a (new) Attribute in an open HDF5 file.
Definition H5Easy_public.hpp:148
+
T load(const File &file, const std::string &path, const std::vector< size_t > &idx)
Load entry {i, j, ...} from a DataSet in an open HDF5 file to a scalar.
Definition H5Easy_public.hpp:138
+
std::vector< size_t > getShape(const File &file, const std::string &path)
Get the shape of an existing DataSet in an readable file.
Definition H5Easy_public.hpp:86
+
Flush
Signal to enable/disable automatic flushing after write operations.
Definition H5Easy.hpp:82
+
+
+ + + + diff --git a/_h5_easy__scalar_8hpp.html b/_h5_easy__scalar_8hpp.html new file mode 100644 index 000000000..b5ed861f5 --- /dev/null +++ b/_h5_easy__scalar_8hpp.html @@ -0,0 +1,343 @@ + + + + + + + +HighFive: highfive/h5easy_bits/H5Easy_scalar.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Easy_scalar.hpp File Reference
+
+
+
#include "../H5Easy.hpp"
+#include "H5Easy_misc.hpp"
+
+Include dependency graph for H5Easy_scalar.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + +

+Namespaces

namespace  H5Easy
 Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated, and accept:
 
+
+
+ + + + diff --git a/_h5_easy__scalar_8hpp__dep__incl.map b/_h5_easy__scalar_8hpp__dep__incl.map new file mode 100644 index 000000000..6abc9d0d4 --- /dev/null +++ b/_h5_easy__scalar_8hpp__dep__incl.map @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_easy__scalar_8hpp__dep__incl.md5 b/_h5_easy__scalar_8hpp__dep__incl.md5 new file mode 100644 index 000000000..5b7358540 --- /dev/null +++ b/_h5_easy__scalar_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +ddae0cb139d0255e7aa71c55ac2ba01c \ No newline at end of file diff --git a/_h5_easy__scalar_8hpp__dep__incl.png b/_h5_easy__scalar_8hpp__dep__incl.png new file mode 100644 index 000000000..1a88dbf94 Binary files /dev/null and b/_h5_easy__scalar_8hpp__dep__incl.png differ diff --git a/_h5_easy__scalar_8hpp__incl.map b/_h5_easy__scalar_8hpp__incl.map new file mode 100644 index 000000000..be6f16bff --- /dev/null +++ b/_h5_easy__scalar_8hpp__incl.map @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_easy__scalar_8hpp__incl.md5 b/_h5_easy__scalar_8hpp__incl.md5 new file mode 100644 index 000000000..9ae829e6d --- /dev/null +++ b/_h5_easy__scalar_8hpp__incl.md5 @@ -0,0 +1 @@ +adf352265f92cfc43bf068c77f6d0622 \ No newline at end of file diff --git a/_h5_easy__scalar_8hpp__incl.png b/_h5_easy__scalar_8hpp__incl.png new file mode 100644 index 000000000..f8f40b6dc Binary files /dev/null and b/_h5_easy__scalar_8hpp__incl.png differ diff --git a/_h5_easy__scalar_8hpp_source.html b/_h5_easy__scalar_8hpp_source.html new file mode 100644 index 000000000..b70645ae4 --- /dev/null +++ b/_h5_easy__scalar_8hpp_source.html @@ -0,0 +1,257 @@ + + + + + + + +HighFive: highfive/h5easy_bits/H5Easy_scalar.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Easy_scalar.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 "../H5Easy.hpp"
+
12#include "H5Easy_misc.hpp"
+
13
+
14namespace H5Easy {
+
15
+
16namespace detail {
+
17
+
18/*
+
19Base template for partial specialization: the fallback if specialized templates don't match.
+
20Used e.g. for scalars.
+
21*/
+
22template <typename T, typename = void>
+
23struct io_impl {
+
24 inline static DataSet dump(File& file,
+
25 const std::string& path,
+
26 const T& data,
+
27 const DumpOptions& options) {
+
28 DataSet dataset = initScalarDataset(file, path, data, options);
+
29 dataset.write(data);
+
30 if (options.flush()) {
+
31 file.flush();
+
32 }
+
33 return dataset;
+
34 }
+
35
+
36 inline static T load(const File& file, const std::string& path) {
+
37 DataSet dataset = file.getDataSet(path);
+
38 T data;
+
39 dataset.read(data);
+
40 return data;
+
41 }
+
42
+
43 inline static Attribute dumpAttribute(File& file,
+
44 const std::string& path,
+
45 const std::string& key,
+
46 const T& data,
+
47 const DumpOptions& options) {
+
48 Attribute attribute = initScalarAttribute(file, path, key, data, options);
+
49 attribute.write(data);
+
50 if (options.flush()) {
+
51 file.flush();
+
52 }
+
53 return attribute;
+
54 }
+
55
+
56 inline static T loadAttribute(const File& file,
+
57 const std::string& path,
+
58 const std::string& key) {
+
59 DataSet dataset = file.getDataSet(path);
+
60 Attribute attribute = dataset.getAttribute(key);
+
61 T data;
+
62 attribute.read(data);
+
63 return data;
+
64 }
+
65
+
66 inline static DataSet dump_extend(File& file,
+
67 const std::string& path,
+
68 const T& data,
+
69 const std::vector<size_t>& idx,
+
70 const DumpOptions& options) {
+
71 std::vector<size_t> ones(idx.size(), 1);
+
72
+
73 if (file.exist(path)) {
+
74 DataSet dataset = file.getDataSet(path);
+
75 std::vector<size_t> dims = dataset.getDimensions();
+
76 std::vector<size_t> shape = dims;
+
77 if (dims.size() != idx.size()) {
+
78 throw detail::error(
+
79 file,
+
80 path,
+
81 "H5Easy::dump: Dimension of the index and the existing field do not match");
+
82 }
+
83 for (size_t i = 0; i < dims.size(); ++i) {
+
84 shape[i] = std::max(dims[i], idx[i] + 1);
+
85 }
+
86 if (shape != dims) {
+
87 dataset.resize(shape);
+
88 }
+
89 dataset.select(idx, ones).write(data);
+
90 if (options.flush()) {
+
91 file.flush();
+
92 }
+
93 return dataset;
+
94 }
+
95
+
96 std::vector<size_t> shape = idx;
+
97 const size_t unlim = DataSpace::UNLIMITED;
+
98 std::vector<size_t> unlim_shape(idx.size(), unlim);
+
99 std::vector<hsize_t> chunks(idx.size(), 10);
+
100 if (options.isChunked()) {
+
101 chunks = options.getChunkSize();
+
102 if (chunks.size() != idx.size()) {
+
103 throw error(file, path, "H5Easy::dump: Incorrect dimension ChunkSize");
+
104 }
+
105 }
+
106 for (size_t& i: shape) {
+
107 i++;
+
108 }
+
109 DataSpace dataspace = DataSpace(shape, unlim_shape);
+
110 DataSetCreateProps props;
+
111 props.add(Chunking(chunks));
+
112 DataSet dataset = file.createDataSet(path, dataspace, AtomicType<T>(), props, {}, true);
+
113 dataset.select(idx, ones).write(data);
+
114 if (options.flush()) {
+
115 file.flush();
+
116 }
+
117 return dataset;
+
118 }
+
119
+
120 inline static T load_part(const File& file,
+
121 const std::string& path,
+
122 const std::vector<size_t>& idx) {
+
123 std::vector<size_t> ones(idx.size(), 1);
+
124 DataSet dataset = file.getDataSet(path);
+
125 T data;
+
126 dataset.select(idx, ones).read(data);
+
127 return data;
+
128 }
+
129};
+
130
+
131} // namespace detail
+
132} // namespace H5Easy
+ + +
static const size_t UNLIMITED
Magic value to specify that a DataSpace can grow without limit.
Definition H5DataSpace.hpp:49
+
PropertyList< PropertyType::DATASET_CREATE > DataSetCreateProps
Definition H5PropertyList.hpp:201
+
Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated...
Definition H5Easy.hpp:59
+
DataSet dump(File &file, const std::string &path, const T &data, DumpMode mode=DumpMode::Create)
Write object (templated) to a (new) DataSet in an open HDF5 file.
Definition H5Easy_public.hpp:99
+
T loadAttribute(const File &file, const std::string &path, const std::string &key)
Load a Attribute in an open HDF5 file to an object (templated).
Definition H5Easy_public.hpp:166
+
Attribute dumpAttribute(File &file, const std::string &path, const std::string &key, const T &data, DumpMode mode=DumpMode::Create)
Write object (templated) to a (new) Attribute in an open HDF5 file.
Definition H5Easy_public.hpp:148
+
T load(const File &file, const std::string &path, const std::vector< size_t > &idx)
Load entry {i, j, ...} from a DataSet in an open HDF5 file to a scalar.
Definition H5Easy_public.hpp:138
+ + +
+
+ + + + diff --git a/_h5_easy__vector_8hpp.html b/_h5_easy__vector_8hpp.html new file mode 100644 index 000000000..1ab5bb0c6 --- /dev/null +++ b/_h5_easy__vector_8hpp.html @@ -0,0 +1,344 @@ + + + + + + + +HighFive: highfive/h5easy_bits/H5Easy_vector.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Easy_vector.hpp File Reference
+
+
+
#include "../H5Easy.hpp"
+#include "H5Easy_misc.hpp"
+#include "H5Easy_scalar.hpp"
+
+Include dependency graph for H5Easy_vector.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + +

+Namespaces

namespace  H5Easy
 Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated, and accept:
 
+
+
+ + + + diff --git a/_h5_easy__vector_8hpp__dep__incl.map b/_h5_easy__vector_8hpp__dep__incl.map new file mode 100644 index 000000000..74fe74a7e --- /dev/null +++ b/_h5_easy__vector_8hpp__dep__incl.map @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_easy__vector_8hpp__dep__incl.md5 b/_h5_easy__vector_8hpp__dep__incl.md5 new file mode 100644 index 000000000..3d3780d94 --- /dev/null +++ b/_h5_easy__vector_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +615fd5c7590e99c663585bec031c9c09 \ No newline at end of file diff --git a/_h5_easy__vector_8hpp__dep__incl.png b/_h5_easy__vector_8hpp__dep__incl.png new file mode 100644 index 000000000..3846a915c Binary files /dev/null and b/_h5_easy__vector_8hpp__dep__incl.png differ diff --git a/_h5_easy__vector_8hpp__incl.map b/_h5_easy__vector_8hpp__incl.map new file mode 100644 index 000000000..ce621ed26 --- /dev/null +++ b/_h5_easy__vector_8hpp__incl.map @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_easy__vector_8hpp__incl.md5 b/_h5_easy__vector_8hpp__incl.md5 new file mode 100644 index 000000000..ba3c724de --- /dev/null +++ b/_h5_easy__vector_8hpp__incl.md5 @@ -0,0 +1 @@ +0fa039e558592edb6de9f1f7c9b335d3 \ No newline at end of file diff --git a/_h5_easy__vector_8hpp__incl.png b/_h5_easy__vector_8hpp__incl.png new file mode 100644 index 000000000..c9eca7f02 Binary files /dev/null and b/_h5_easy__vector_8hpp__incl.png differ diff --git a/_h5_easy__vector_8hpp_source.html b/_h5_easy__vector_8hpp_source.html new file mode 100644 index 000000000..cb6089d35 --- /dev/null +++ b/_h5_easy__vector_8hpp_source.html @@ -0,0 +1,203 @@ + + + + + + + +HighFive: highfive/h5easy_bits/H5Easy_vector.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Easy_vector.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 "../H5Easy.hpp"
+
12#include "H5Easy_misc.hpp"
+
13#include "H5Easy_scalar.hpp"
+
14
+
15namespace H5Easy {
+
16
+
17namespace detail {
+
18
+
19template <class T>
+
20struct is_vector: std::false_type {};
+
21template <class T>
+
22struct is_vector<std::vector<T>>: std::true_type {};
+
23
+
24using HighFive::details::inspector;
+
25
+
26template <typename T>
+
27struct io_impl<T, typename std::enable_if<is_vector<T>::value>::type> {
+
28 inline static DataSet dump(File& file,
+
29 const std::string& path,
+
30 const T& data,
+
31 const DumpOptions& options) {
+
32 using value_type = typename inspector<T>::base_type;
+
33 auto dims = inspector<T>::getDimensions(data);
+
34 DataSet dataset = initDataset<value_type>(file,
+
35 path,
+
36 std::vector<size_t>(dims.begin(), dims.end()),
+
37 options);
+
38 dataset.write(data);
+
39 if (options.flush()) {
+
40 file.flush();
+
41 }
+
42 return dataset;
+
43 }
+
44
+
45 inline static T load(const File& file, const std::string& path) {
+
46 DataSet dataset = file.getDataSet(path);
+
47 T data;
+
48 dataset.read(data);
+
49 return data;
+
50 }
+
51
+
52 inline static Attribute dumpAttribute(File& file,
+
53 const std::string& path,
+
54 const std::string& key,
+
55 const T& data,
+
56 const DumpOptions& options) {
+
57 using value_type = typename inspector<T>::base_type;
+
58 auto dims = inspector<T>::getDimensions(data);
+
59 std::vector<size_t> shape(dims.begin(), dims.end());
+
60 Attribute attribute = initAttribute<value_type>(file, path, key, shape, options);
+
61 attribute.write(data);
+
62 if (options.flush()) {
+
63 file.flush();
+
64 }
+
65 return attribute;
+
66 }
+
67
+
68 inline static T loadAttribute(const File& file,
+
69 const std::string& path,
+
70 const std::string& key) {
+
71 DataSet dataset = file.getDataSet(path);
+
72 Attribute attribute = dataset.getAttribute(key);
+
73 T data;
+
74 attribute.read(data);
+
75 return data;
+
76 }
+
77};
+
78
+
79} // namespace detail
+
80} // namespace H5Easy
+ + + +
Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated...
Definition H5Easy.hpp:59
+
DataSet dump(File &file, const std::string &path, const T &data, DumpMode mode=DumpMode::Create)
Write object (templated) to a (new) DataSet in an open HDF5 file.
Definition H5Easy_public.hpp:99
+
T loadAttribute(const File &file, const std::string &path, const std::string &key)
Load a Attribute in an open HDF5 file to an object (templated).
Definition H5Easy_public.hpp:166
+
Attribute dumpAttribute(File &file, const std::string &path, const std::string &key, const T &data, DumpMode mode=DumpMode::Create)
Write object (templated) to a (new) Attribute in an open HDF5 file.
Definition H5Easy_public.hpp:148
+
T load(const File &file, const std::string &path, const std::vector< size_t > &idx)
Load entry {i, j, ...} from a DataSet in an open HDF5 file to a scalar.
Definition H5Easy_public.hpp:138
+ +
+
+ + + + diff --git a/_h5_easy__xtensor_8hpp.html b/_h5_easy__xtensor_8hpp.html new file mode 100644 index 000000000..3c7da1903 --- /dev/null +++ b/_h5_easy__xtensor_8hpp.html @@ -0,0 +1,344 @@ + + + + + + + +HighFive: highfive/h5easy_bits/H5Easy_xtensor.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Easy_xtensor.hpp File Reference
+
+
+
#include "../H5Easy.hpp"
+#include "H5Easy_misc.hpp"
+#include "H5Easy_scalar.hpp"
+
+Include dependency graph for H5Easy_xtensor.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + +

+Namespaces

namespace  H5Easy
 Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated, and accept:
 
+
+
+ + + + diff --git a/_h5_easy__xtensor_8hpp__dep__incl.map b/_h5_easy__xtensor_8hpp__dep__incl.map new file mode 100644 index 000000000..1997a9073 --- /dev/null +++ b/_h5_easy__xtensor_8hpp__dep__incl.map @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_easy__xtensor_8hpp__dep__incl.md5 b/_h5_easy__xtensor_8hpp__dep__incl.md5 new file mode 100644 index 000000000..9f0ec6880 --- /dev/null +++ b/_h5_easy__xtensor_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +d654a8c0fd8ca7151adacef286398864 \ No newline at end of file diff --git a/_h5_easy__xtensor_8hpp__dep__incl.png b/_h5_easy__xtensor_8hpp__dep__incl.png new file mode 100644 index 000000000..6044f6df0 Binary files /dev/null and b/_h5_easy__xtensor_8hpp__dep__incl.png differ diff --git a/_h5_easy__xtensor_8hpp__incl.map b/_h5_easy__xtensor_8hpp__incl.map new file mode 100644 index 000000000..3641dfa3b --- /dev/null +++ b/_h5_easy__xtensor_8hpp__incl.map @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_easy__xtensor_8hpp__incl.md5 b/_h5_easy__xtensor_8hpp__incl.md5 new file mode 100644 index 000000000..d11164356 --- /dev/null +++ b/_h5_easy__xtensor_8hpp__incl.md5 @@ -0,0 +1 @@ +6f03a4fd790847728104eeb3045342fe \ No newline at end of file diff --git a/_h5_easy__xtensor_8hpp__incl.png b/_h5_easy__xtensor_8hpp__incl.png new file mode 100644 index 000000000..eef3fb354 Binary files /dev/null and b/_h5_easy__xtensor_8hpp__incl.png differ diff --git a/_h5_easy__xtensor_8hpp_source.html b/_h5_easy__xtensor_8hpp_source.html new file mode 100644 index 000000000..a681b0676 --- /dev/null +++ b/_h5_easy__xtensor_8hpp_source.html @@ -0,0 +1,208 @@ + + + + + + + +HighFive: highfive/h5easy_bits/H5Easy_xtensor.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Easy_xtensor.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 "../H5Easy.hpp"
+
12#include "H5Easy_misc.hpp"
+
13#include "H5Easy_scalar.hpp"
+
14
+
15#ifdef H5_USE_XTENSOR
+
16
+
17namespace H5Easy {
+
18
+
19namespace detail {
+
20
+
21template <typename T>
+
22struct io_impl<T, typename std::enable_if<xt::is_xexpression<T>::value>::type> {
+
23 inline static std::vector<size_t> shape(const T& data) {
+
24 return std::vector<size_t>(data.shape().cbegin(), data.shape().cend());
+
25 }
+
26
+
27 inline static DataSet dump(File& file,
+
28 const std::string& path,
+
29 const T& data,
+
30 const DumpOptions& options) {
+
31 using value_type = typename std::decay_t<T>::value_type;
+
32 DataSet dataset = initDataset<value_type>(file, path, shape(data), options);
+
33 dataset.write_raw(data.data());
+
34 if (options.flush()) {
+
35 file.flush();
+
36 }
+
37 return dataset;
+
38 }
+
39
+
40 inline static T load(const File& file, const std::string& path) {
+
41 static_assert(
+
42 xt::has_data_interface<T>::value,
+
43 "Cannot load to xt::xfunction or xt::xgenerator, use e.g. xt::xtensor or xt::xarray");
+
44 DataSet dataset = file.getDataSet(path);
+
45 std::vector<size_t> dims = dataset.getDimensions();
+
46 T data = T::from_shape(dims);
+
47 dataset.read_raw(data.data());
+
48 return data;
+
49 }
+
50
+
51 inline static Attribute dumpAttribute(File& file,
+
52 const std::string& path,
+
53 const std::string& key,
+
54 const T& data,
+
55 const DumpOptions& options) {
+
56 using value_type = typename std::decay_t<T>::value_type;
+
57 Attribute attribute = initAttribute<value_type>(file, path, key, shape(data), options);
+
58 attribute.write_raw(data.data());
+
59 if (options.flush()) {
+
60 file.flush();
+
61 }
+
62 return attribute;
+
63 }
+
64
+
65 inline static T loadAttribute(const File& file,
+
66 const std::string& path,
+
67 const std::string& key) {
+
68 static_assert(
+
69 xt::has_data_interface<T>::value,
+
70 "Cannot load to xt::xfunction or xt::xgenerator, use e.g. xt::xtensor or xt::xarray");
+
71 DataSet dataset = file.getDataSet(path);
+
72 Attribute attribute = dataset.getAttribute(key);
+
73 DataSpace dataspace = attribute.getSpace();
+
74 std::vector<size_t> dims = dataspace.getDimensions();
+
75 T data = T::from_shape(dims);
+
76 attribute.read_raw(data.data());
+
77 return data;
+
78 }
+
79};
+
80
+
81} // namespace detail
+
82} // namespace H5Easy
+
83
+
84#endif // H5_USE_XTENSOR
+ + + +
Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated...
Definition H5Easy.hpp:59
+
DataSet dump(File &file, const std::string &path, const T &data, DumpMode mode=DumpMode::Create)
Write object (templated) to a (new) DataSet in an open HDF5 file.
Definition H5Easy_public.hpp:99
+
T loadAttribute(const File &file, const std::string &path, const std::string &key)
Load a Attribute in an open HDF5 file to an object (templated).
Definition H5Easy_public.hpp:166
+
Attribute dumpAttribute(File &file, const std::string &path, const std::string &key, const T &data, DumpMode mode=DumpMode::Create)
Write object (templated) to a (new) Attribute in an open HDF5 file.
Definition H5Easy_public.hpp:148
+
T load(const File &file, const std::string &path, const std::vector< size_t > &idx)
Load entry {i, j, ...} from a DataSet in an open HDF5 file to a scalar.
Definition H5Easy_public.hpp:138
+ + +
+
+ + + + diff --git a/_h5_exception_8hpp.html b/_h5_exception_8hpp.html new file mode 100644 index 000000000..72f1a7769 --- /dev/null +++ b/_h5_exception_8hpp.html @@ -0,0 +1,341 @@ + + + + + + + +HighFive: highfive/H5Exception.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Exception.hpp File Reference
+
+
+
#include <memory>
+#include <stdexcept>
+#include <string>
+#include <H5Ipublic.h>
+#include "bits/H5Exception_misc.hpp"
+
+Include dependency graph for H5Exception.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Classes

class  HighFive::Exception
 Basic HighFive Exception class. More...
 
class  HighFive::ObjectException
 Exception specific to HighFive Object interface. More...
 
class  HighFive::DataTypeException
 Exception specific to HighFive DataType interface. More...
 
class  HighFive::FileException
 Exception specific to HighFive File interface. More...
 
class  HighFive::DataSpaceException
 Exception specific to HighFive DataSpace interface. More...
 
class  HighFive::AttributeException
 Exception specific to HighFive Attribute interface. More...
 
class  HighFive::DataSetException
 Exception specific to HighFive DataSet interface. More...
 
class  HighFive::GroupException
 Exception specific to HighFive Group interface. More...
 
class  HighFive::PropertyException
 Exception specific to HighFive Property interface. More...
 
class  HighFive::ReferenceException
 Exception specific to HighFive Reference interface. More...
 
+ + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_exception_8hpp.js b/_h5_exception_8hpp.js new file mode 100644 index 000000000..6b48a6829 --- /dev/null +++ b/_h5_exception_8hpp.js @@ -0,0 +1,13 @@ +var _h5_exception_8hpp = +[ + [ "HighFive::Exception", "class_high_five_1_1_exception.html", "class_high_five_1_1_exception" ], + [ "HighFive::ObjectException", "class_high_five_1_1_object_exception.html", "class_high_five_1_1_object_exception" ], + [ "HighFive::DataTypeException", "class_high_five_1_1_data_type_exception.html", "class_high_five_1_1_data_type_exception" ], + [ "HighFive::FileException", "class_high_five_1_1_file_exception.html", "class_high_five_1_1_file_exception" ], + [ "HighFive::DataSpaceException", "class_high_five_1_1_data_space_exception.html", "class_high_five_1_1_data_space_exception" ], + [ "HighFive::AttributeException", "class_high_five_1_1_attribute_exception.html", "class_high_five_1_1_attribute_exception" ], + [ "HighFive::DataSetException", "class_high_five_1_1_data_set_exception.html", "class_high_five_1_1_data_set_exception" ], + [ "HighFive::GroupException", "class_high_five_1_1_group_exception.html", "class_high_five_1_1_group_exception" ], + [ "HighFive::PropertyException", "class_high_five_1_1_property_exception.html", "class_high_five_1_1_property_exception" ], + [ "HighFive::ReferenceException", "class_high_five_1_1_reference_exception.html", "class_high_five_1_1_reference_exception" ] +]; \ No newline at end of file diff --git a/_h5_exception_8hpp__dep__incl.map b/_h5_exception_8hpp__dep__incl.map new file mode 100644 index 000000000..3a7b3b276 --- /dev/null +++ b/_h5_exception_8hpp__dep__incl.map @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_exception_8hpp__dep__incl.md5 b/_h5_exception_8hpp__dep__incl.md5 new file mode 100644 index 000000000..fd04af02b --- /dev/null +++ b/_h5_exception_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +22d7b6e403f5b99b7ca3d1f4de25122a \ No newline at end of file diff --git a/_h5_exception_8hpp__dep__incl.png b/_h5_exception_8hpp__dep__incl.png new file mode 100644 index 000000000..629032928 Binary files /dev/null and b/_h5_exception_8hpp__dep__incl.png differ diff --git a/_h5_exception_8hpp__incl.map b/_h5_exception_8hpp__incl.map new file mode 100644 index 000000000..8a6aed0b8 --- /dev/null +++ b/_h5_exception_8hpp__incl.map @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_exception_8hpp__incl.md5 b/_h5_exception_8hpp__incl.md5 new file mode 100644 index 000000000..75286d743 --- /dev/null +++ b/_h5_exception_8hpp__incl.md5 @@ -0,0 +1 @@ +1990e3ca2f089c38850f64ed2877ccb2 \ No newline at end of file diff --git a/_h5_exception_8hpp__incl.png b/_h5_exception_8hpp__incl.png new file mode 100644 index 000000000..44ca355a2 Binary files /dev/null and b/_h5_exception_8hpp__incl.png differ diff --git a/_h5_exception_8hpp_source.html b/_h5_exception_8hpp_source.html new file mode 100644 index 000000000..8a52b5533 --- /dev/null +++ b/_h5_exception_8hpp_source.html @@ -0,0 +1,309 @@ + + + + + + + +HighFive: highfive/H5Exception.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Exception.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 <memory>
+
12#include <stdexcept>
+
13#include <string>
+
14
+
15#include <H5Ipublic.h>
+
16
+
17namespace HighFive {
+
18
+
+
23class Exception: public std::exception {
+
24 public:
+
+
25 Exception(const std::string& err_msg)
+
26 : _errmsg(err_msg)
+
27 , _next()
+
28 , _err_major(0)
+
29 , _err_minor(0) {}
+
+
30
+
31 virtual ~Exception() throw() {}
+
32
+
+
37 inline const char* what() const throw() override {
+
38 return _errmsg.c_str();
+
39 }
+
+
40
+
+
45 inline virtual void setErrorMsg(const std::string& errmsg) {
+
46 _errmsg = errmsg;
+
47 }
+
+
48
+
+
54 inline Exception* nextException() const {
+
55 return _next.get();
+
56 }
+
+
57
+
+
62 inline hid_t getErrMajor() const {
+
63 return _err_major;
+
64 }
+
+
65
+
+
70 inline hid_t getErrMinor() const {
+
71 return _err_minor;
+
72 }
+
+
73
+
74 protected:
+
75 std::string _errmsg;
+
76 std::shared_ptr<Exception> _next;
+ +
78
+
79 friend struct HDF5ErrMapper;
+
80};
+
+
81
+
+ +
86 public:
+
+
87 ObjectException(const std::string& err_msg)
+
88 : Exception(err_msg) {}
+
+
89};
+
+
90
+
+ +
95 public:
+
+
96 DataTypeException(const std::string& err_msg)
+
97 : Exception(err_msg) {}
+
+
98};
+
+
99
+
+ +
104 public:
+
+
105 FileException(const std::string& err_msg)
+
106 : Exception(err_msg) {}
+
+
107};
+
+
108
+
+ +
113 public:
+
+
114 DataSpaceException(const std::string& err_msg)
+
115 : Exception(err_msg) {}
+
+
116};
+
+
117
+
+ +
122 public:
+
+
123 AttributeException(const std::string& err_msg)
+
124 : Exception(err_msg) {}
+
+
125};
+
+
126
+
+ +
131 public:
+
+
132 DataSetException(const std::string& err_msg)
+
133 : Exception(err_msg) {}
+
+
134};
+
+
135
+
+ +
140 public:
+
+
141 GroupException(const std::string& err_msg)
+
142 : Exception(err_msg) {}
+
+
143};
+
+
144
+
+ +
149 public:
+
+
150 PropertyException(const std::string& err_msg)
+
151 : Exception(err_msg) {}
+
+
152};
+
+
153
+
+ +
158 public:
+
+
159 ReferenceException(const std::string& err_msg)
+
160 : Exception(err_msg) {}
+
+
161};
+
+
162} // namespace HighFive
+
163
+ + +
Exception specific to HighFive Attribute interface.
Definition H5Exception.hpp:121
+
AttributeException(const std::string &err_msg)
Definition H5Exception.hpp:123
+
Exception specific to HighFive DataSet interface.
Definition H5Exception.hpp:130
+
DataSetException(const std::string &err_msg)
Definition H5Exception.hpp:132
+
Exception specific to HighFive DataSpace interface.
Definition H5Exception.hpp:112
+
DataSpaceException(const std::string &err_msg)
Definition H5Exception.hpp:114
+
Exception specific to HighFive DataType interface.
Definition H5Exception.hpp:94
+
DataTypeException(const std::string &err_msg)
Definition H5Exception.hpp:96
+
Basic HighFive Exception class.
Definition H5Exception.hpp:23
+
Exception * nextException() const
nextException
Definition H5Exception.hpp:54
+
std::shared_ptr< Exception > _next
Definition H5Exception.hpp:76
+
virtual ~Exception()
Definition H5Exception.hpp:31
+
virtual void setErrorMsg(const std::string &errmsg)
define the error message
Definition H5Exception.hpp:45
+
hid_t _err_major
Definition H5Exception.hpp:77
+
hid_t getErrMajor() const
HDF5 library error mapper.
Definition H5Exception.hpp:62
+
std::string _errmsg
Definition H5Exception.hpp:75
+
const char * what() const override
get the current exception error message
Definition H5Exception.hpp:37
+
hid_t getErrMinor() const
HDF5 library error mapper.
Definition H5Exception.hpp:70
+
hid_t _err_minor
Definition H5Exception.hpp:77
+
Exception(const std::string &err_msg)
Definition H5Exception.hpp:25
+
Exception specific to HighFive File interface.
Definition H5Exception.hpp:103
+
FileException(const std::string &err_msg)
Definition H5Exception.hpp:105
+
Exception specific to HighFive Group interface.
Definition H5Exception.hpp:139
+
GroupException(const std::string &err_msg)
Definition H5Exception.hpp:141
+
Exception specific to HighFive Object interface.
Definition H5Exception.hpp:85
+
ObjectException(const std::string &err_msg)
Definition H5Exception.hpp:87
+
Exception specific to HighFive Property interface.
Definition H5Exception.hpp:148
+
PropertyException(const std::string &err_msg)
Definition H5Exception.hpp:150
+
Exception specific to HighFive Reference interface.
Definition H5Exception.hpp:157
+
ReferenceException(const std::string &err_msg)
Definition H5Exception.hpp:159
+
Definition H5_definitions.hpp:22
+
Definition H5Exception_misc.hpp:19
+
+
+ + + + diff --git a/_h5_exception__misc_8hpp.html b/_h5_exception__misc_8hpp.html new file mode 100644 index 000000000..60c6a022c --- /dev/null +++ b/_h5_exception__misc_8hpp.html @@ -0,0 +1,304 @@ + + + + + + + +HighFive: highfive/bits/H5Exception_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Exception_misc.hpp File Reference
+
+
+
#include <cstdlib>
+#include <sstream>
+#include "h5_wrapper.hpp"
+#include "h5e_wrapper.hpp"
+
+Include dependency graph for H5Exception_misc.hpp:
+
+
+ + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Classes

struct  HighFive::HDF5ErrMapper
 
+ + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_exception__misc_8hpp.js b/_h5_exception__misc_8hpp.js new file mode 100644 index 000000000..fc5f25156 --- /dev/null +++ b/_h5_exception__misc_8hpp.js @@ -0,0 +1,4 @@ +var _h5_exception__misc_8hpp = +[ + [ "HighFive::HDF5ErrMapper", "struct_high_five_1_1_h_d_f5_err_mapper.html", null ] +]; \ No newline at end of file diff --git a/_h5_exception__misc_8hpp__dep__incl.map b/_h5_exception__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..f5cb4f41f --- /dev/null +++ b/_h5_exception__misc_8hpp__dep__incl.map @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_exception__misc_8hpp__dep__incl.md5 b/_h5_exception__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..c6bb14247 --- /dev/null +++ b/_h5_exception__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +377df5d84acc8884f9399bd14c8d3915 \ No newline at end of file diff --git a/_h5_exception__misc_8hpp__dep__incl.png b/_h5_exception__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..84bc7841e Binary files /dev/null and b/_h5_exception__misc_8hpp__dep__incl.png differ diff --git a/_h5_exception__misc_8hpp__incl.map b/_h5_exception__misc_8hpp__incl.map new file mode 100644 index 000000000..f4c71a789 --- /dev/null +++ b/_h5_exception__misc_8hpp__incl.map @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/_h5_exception__misc_8hpp__incl.md5 b/_h5_exception__misc_8hpp__incl.md5 new file mode 100644 index 000000000..eb634e0a6 --- /dev/null +++ b/_h5_exception__misc_8hpp__incl.md5 @@ -0,0 +1 @@ +01ed007e0731b75f90b17fd04240853b \ No newline at end of file diff --git a/_h5_exception__misc_8hpp__incl.png b/_h5_exception__misc_8hpp__incl.png new file mode 100644 index 000000000..608e980e5 Binary files /dev/null and b/_h5_exception__misc_8hpp__incl.png differ diff --git a/_h5_exception__misc_8hpp_source.html b/_h5_exception__misc_8hpp_source.html new file mode 100644 index 000000000..f538413e1 --- /dev/null +++ b/_h5_exception__misc_8hpp_source.html @@ -0,0 +1,192 @@ + + + + + + + +HighFive: highfive/bits/H5Exception_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Exception_misc.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 <cstdlib>
+
12#include <sstream>
+
13
+
14#include "h5_wrapper.hpp"
+
15#include "h5e_wrapper.hpp"
+
16
+
17namespace HighFive {
+
18
+
+ +
20 template <typename ExceptionType>
+
+
21 static inline herr_t stackWalk(unsigned n, const H5E_error2_t* err_desc, void* client_data) {
+
22 auto** e_iter = static_cast<ExceptionType**>(client_data);
+
23 (void) n;
+
24
+
25 const char* major_err = detail::nothrow::h5e_get_major(err_desc->maj_num);
+
26 const char* minor_err = detail::nothrow::h5e_get_minor(err_desc->min_num);
+
27
+
28 std::ostringstream oss;
+
29 oss << '(' << major_err << ") " << minor_err;
+
30
+
31 detail::nothrow::h5_free_memory((void*) major_err);
+
32 detail::nothrow::h5_free_memory((void*) minor_err);
+
33
+
34 auto* e = new ExceptionType(oss.str());
+
35 e->_err_major = err_desc->maj_num;
+
36 e->_err_minor = err_desc->min_num;
+
37 (*e_iter)->_next.reset(e);
+
38 *e_iter = e;
+
39 return 0;
+
40 }
+
+
41
+
42 template <typename ExceptionType>
+
+
43 [[noreturn]] static inline void ToException(const std::string& prefix_msg) {
+ +
45 if (err_stack >= 0) {
+
46 ExceptionType e("");
+ +
48
+
49 detail::nothrow::h5e_walk2(err_stack,
+ + +
52 &e_iter);
+
53 detail::nothrow::h5e_clear2(err_stack);
+
54
+
55 const char* next_err_msg = (e.nextException() != NULL) ? (e.nextException()->what())
+
56 : ("");
+
57
+
58 e.setErrorMsg(prefix_msg + " " + next_err_msg);
+
59 throw e;
+
60 }
+
61 // throw generic error, unrecognized error
+
62 throw ExceptionType(prefix_msg + ": Unknown HDF5 error");
+
63 }
+
+
64};
+
+
65
+
66} // namespace HighFive
+ + +
Definition H5_definitions.hpp:22
+
Definition H5Exception_misc.hpp:19
+
static herr_t stackWalk(unsigned n, const H5E_error2_t *err_desc, void *client_data)
Definition H5Exception_misc.hpp:21
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/_h5_file_8hpp.html b/_h5_file_8hpp.html new file mode 100644 index 000000000..a15f04e14 --- /dev/null +++ b/_h5_file_8hpp.html @@ -0,0 +1,357 @@ + + + + + + + +HighFive: highfive/H5File.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5File.hpp File Reference
+
+
+
#include <string>
+#include "H5FileDriver.hpp"
+#include "H5Object.hpp"
+#include "H5PropertyList.hpp"
+#include "bits/H5Annotate_traits.hpp"
+#include "bits/H5Node_traits.hpp"
+#include "bits/H5Annotate_traits_misc.hpp"
+#include "bits/H5File_misc.hpp"
+#include "bits/H5Node_traits_misc.hpp"
+#include "bits/H5Path_traits_misc.hpp"
+
+Include dependency graph for H5File.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + +

+Classes

class  HighFive::File
 File class. More...
 
+ + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_file_8hpp.js b/_h5_file_8hpp.js new file mode 100644 index 000000000..ad7592c13 --- /dev/null +++ b/_h5_file_8hpp.js @@ -0,0 +1,4 @@ +var _h5_file_8hpp = +[ + [ "HighFive::File", "class_high_five_1_1_file.html", "class_high_five_1_1_file" ] +]; \ No newline at end of file diff --git a/_h5_file_8hpp__dep__incl.map b/_h5_file_8hpp__dep__incl.map new file mode 100644 index 000000000..7c1ce224f --- /dev/null +++ b/_h5_file_8hpp__dep__incl.map @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_file_8hpp__dep__incl.md5 b/_h5_file_8hpp__dep__incl.md5 new file mode 100644 index 000000000..bff63fde5 --- /dev/null +++ b/_h5_file_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +8aa34fa27badf4c12afbbbc88f48fb10 \ No newline at end of file diff --git a/_h5_file_8hpp__dep__incl.png b/_h5_file_8hpp__dep__incl.png new file mode 100644 index 000000000..e020222df Binary files /dev/null and b/_h5_file_8hpp__dep__incl.png differ diff --git a/_h5_file_8hpp__incl.map b/_h5_file_8hpp__incl.map new file mode 100644 index 000000000..e54141322 --- /dev/null +++ b/_h5_file_8hpp__incl.map @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_file_8hpp__incl.md5 b/_h5_file_8hpp__incl.md5 new file mode 100644 index 000000000..a1285a65d --- /dev/null +++ b/_h5_file_8hpp__incl.md5 @@ -0,0 +1 @@ +e48e98b6d8552789ec9af453475b2a99 \ No newline at end of file diff --git a/_h5_file_8hpp__incl.png b/_h5_file_8hpp__incl.png new file mode 100644 index 000000000..bd8847c92 Binary files /dev/null and b/_h5_file_8hpp__incl.png differ diff --git a/_h5_file_8hpp_source.html b/_h5_file_8hpp_source.html new file mode 100644 index 000000000..afcf97a7e --- /dev/null +++ b/_h5_file_8hpp_source.html @@ -0,0 +1,254 @@ + + + + + + + +HighFive: highfive/H5File.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5File.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 <string>
+
12
+
13#include "H5FileDriver.hpp"
+
14#include "H5Object.hpp"
+
15#include "H5PropertyList.hpp"
+ + +
18
+
19namespace HighFive {
+
20
+
+
24class File: public Object, public NodeTraits<File>, public AnnotateTraits<File> {
+
25 public:
+ +
27
+
28 enum : unsigned {
+
30 ReadOnly = 0x00u,
+
32 ReadWrite = 0x01u,
+
34 Truncate = 0x02u,
+
36 Excl = 0x04u,
+
38 Debug = 0x08u,
+
40 Create = 0x10u,
+ + +
45 };
+
46
+
54 explicit File(const std::string& filename,
+
55 unsigned openFlags = ReadOnly,
+
56 const FileAccessProps& fileAccessProps = FileAccessProps::Default());
+
57
+
66 File(const std::string& filename,
+
67 unsigned openFlags,
+
68 const FileCreateProps& fileCreateProps,
+
69 const FileAccessProps& fileAccessProps = FileAccessProps::Default());
+
70
+
74 const std::string& getName() const noexcept;
+
75
+
76
+
+
78 std::string getPath() const noexcept {
+
79 return "/";
+
80 }
+
+
81
+
83 hsize_t getMetadataBlockSize() const;
+
84
+
86 std::pair<H5F_libver_t, H5F_libver_t> getVersionBounds() const;
+
87
+
88#if H5_VERSION_GE(1, 10, 1)
+
90 H5F_fspace_strategy_t getFileSpaceStrategy() const;
+
91
+
93 hsize_t getFileSpacePageSize() const;
+
94#endif
+
95
+
101 void flush();
+
102
+
+ +
105 return details::get_plist<FileCreateProps>(*this, H5Fget_create_plist);
+
106 }
+
+
107
+
+ +
110 return details::get_plist<FileAccessProps>(*this, H5Fget_access_plist);
+
111 }
+
+
112
+
114 size_t getFileSize() const;
+
115
+
122 size_t getFreeSpace() const;
+
123
+
124 protected:
+
125 File() = default;
+
126 using Object::Object;
+
127
+
128 private:
+
129 mutable std::string _filename{};
+
130
+
131 template <typename>
+
132 friend class PathTraits;
+
133};
+
+
134
+
135} // namespace HighFive
+
136
+
137// H5File is the main user constructible -> bring in implementation headers
+ +
139#include "bits/H5File_misc.hpp"
+ + + + + + + + + + + +
Definition H5Annotate_traits.hpp:18
+
File class.
Definition H5File.hpp:24
+
FileCreateProps getCreatePropertyList() const
Get the list of properties for creation of this file.
Definition H5File.hpp:104
+
size_t getFileSize() const
Get the size of this file in bytes.
Definition H5File_misc.hpp:128
+
std::pair< H5F_libver_t, H5F_libver_t > getVersionBounds() const
Returns the HDF5 version compatibility bounds.
Definition H5File_misc.hpp:99
+
void flush()
flush
Definition H5File_misc.hpp:124
+
size_t getFreeSpace() const
Get the amount of tracked, unused space in bytes.
Definition H5File_misc.hpp:134
+
FileAccessProps getAccessPropertyList() const
Get the list of properties for accession of this file.
Definition H5File.hpp:109
+
hsize_t getMetadataBlockSize() const
Returns the block size for metadata in bytes.
Definition H5File_misc.hpp:94
+
@ OpenOrCreate
Derived open flag: Opens RW or exclusively creates.
Definition H5File.hpp:44
+
@ Overwrite
Derived open flag: common write mode (=ReadWrite|Create|Truncate)
Definition H5File.hpp:42
+
@ Truncate
Open flag: Truncate a file if already existing.
Definition H5File.hpp:34
+
@ Create
Open flag: Create non existing file.
Definition H5File.hpp:40
+
@ ReadOnly
Open flag: Read only access.
Definition H5File.hpp:30
+
@ ReadWrite
Open flag: Read Write access.
Definition H5File.hpp:32
+
@ Debug
Open flag: Open in debug mode.
Definition H5File.hpp:38
+
@ Excl
Open flag: Open will fail if file already exist.
Definition H5File.hpp:36
+
File()=default
+
static const ObjectType type
Definition H5File.hpp:26
+
std::string getPath() const noexcept
Object path of a File is always "/".
Definition H5File.hpp:78
+
const std::string & getName() const noexcept
Return the name of the file.
Definition H5File_misc.hpp:85
+
NodeTraits: Base class for Group and File.
Definition H5Node_traits.hpp:28
+
Definition H5Object.hpp:54
+
Object()
Definition H5Object_misc.hpp:25
+
Definition H5Path_traits.hpp:16
+
HDF5 property Lists.
Definition H5PropertyList.hpp:160
+
static const PropertyList< T > & Default() noexcept
Return the Default property type object.
Definition H5PropertyList.hpp:178
+
Definition H5_definitions.hpp:22
+
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24
+ +
+
+ + + + diff --git a/_h5_file__misc_8hpp.html b/_h5_file__misc_8hpp.html new file mode 100644 index 000000000..af5005ff2 --- /dev/null +++ b/_h5_file__misc_8hpp.html @@ -0,0 +1,234 @@ + + + + + + + +HighFive: highfive/bits/H5File_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5File_misc.hpp File Reference
+
+
+
#include <string>
+#include <H5Fpublic.h>
+#include "../H5Utility.hpp"
+#include "H5Utils.hpp"
+#include "h5f_wrapper.hpp"
+
+Include dependency graph for H5File_misc.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_file__misc_8hpp__dep__incl.map b/_h5_file__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..cce066956 --- /dev/null +++ b/_h5_file__misc_8hpp__dep__incl.map @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_file__misc_8hpp__dep__incl.md5 b/_h5_file__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..3523eba43 --- /dev/null +++ b/_h5_file__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +62bc510a58fc7d3833338c9203e6236d \ No newline at end of file diff --git a/_h5_file__misc_8hpp__dep__incl.png b/_h5_file__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..33a24939c Binary files /dev/null and b/_h5_file__misc_8hpp__dep__incl.png differ diff --git a/_h5_file__misc_8hpp__incl.map b/_h5_file__misc_8hpp__incl.map new file mode 100644 index 000000000..7ef9c2fc9 --- /dev/null +++ b/_h5_file__misc_8hpp__incl.map @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_file__misc_8hpp__incl.md5 b/_h5_file__misc_8hpp__incl.md5 new file mode 100644 index 000000000..8745d4396 --- /dev/null +++ b/_h5_file__misc_8hpp__incl.md5 @@ -0,0 +1 @@ +c133b77de21376e785aa46a451e9c236 \ No newline at end of file diff --git a/_h5_file__misc_8hpp__incl.png b/_h5_file__misc_8hpp__incl.png new file mode 100644 index 000000000..e238f6f3b Binary files /dev/null and b/_h5_file__misc_8hpp__incl.png differ diff --git a/_h5_file__misc_8hpp_source.html b/_h5_file__misc_8hpp_source.html new file mode 100644 index 000000000..a77be52c1 --- /dev/null +++ b/_h5_file__misc_8hpp_source.html @@ -0,0 +1,296 @@ + + + + + + + +HighFive: highfive/bits/H5File_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5File_misc.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 <string>
+
12
+
13#include <H5Fpublic.h>
+
14
+
15#include "../H5Utility.hpp"
+
16#include "H5Utils.hpp"
+
17#include "h5f_wrapper.hpp"
+
18
+
19namespace HighFive {
+
20
+
21namespace { // unnamed
+
22
+
23// libhdf5 uses a preprocessor trick on their oflags
+
24// we can not declare them constant without a mapper
+
25inline unsigned convert_open_flag(unsigned openFlags) {
+
26 unsigned res_open = 0;
+
27 if (openFlags & File::ReadOnly)
+
28 res_open |= H5F_ACC_RDONLY;
+
29 if (openFlags & File::ReadWrite)
+
30 res_open |= H5F_ACC_RDWR;
+
31 if (openFlags & File::Create)
+
32 res_open |= H5F_ACC_CREAT;
+
33 if (openFlags & File::Truncate)
+
34 res_open |= H5F_ACC_TRUNC;
+
35 if (openFlags & File::Excl)
+
36 res_open |= H5F_ACC_EXCL;
+
37 return res_open;
+
38}
+
39} // namespace
+
40
+
+
41inline File::File(const std::string& filename,
+
42 unsigned openFlags,
+
43 const FileAccessProps& fileAccessProps)
+
44 : File(filename, openFlags, FileCreateProps::Default(), fileAccessProps) {}
+
+
45
+
46
+
+
47inline File::File(const std::string& filename,
+
48 unsigned openFlags,
+
49 const FileCreateProps& fileCreateProps,
+
50 const FileAccessProps& fileAccessProps) {
+
51 openFlags = convert_open_flag(openFlags);
+
52
+
53 unsigned createMode = openFlags & (H5F_ACC_TRUNC | H5F_ACC_EXCL);
+
54 unsigned openMode = openFlags & (H5F_ACC_RDWR | H5F_ACC_RDONLY);
+
55 bool mustCreate = createMode > 0;
+
56 bool openOrCreate = (openFlags & H5F_ACC_CREAT) > 0;
+
57
+
58 // open is default. It's skipped only if flags require creation
+
59 // If open fails it will try create() if H5F_ACC_CREAT is set
+
60 if (!mustCreate) {
+
61 // Silence open errors if create is allowed
+
62 std::unique_ptr<SilenceHDF5> silencer;
+
63 if (openOrCreate)
+
64 silencer.reset(new SilenceHDF5());
+
65
+
66 _hid = detail::nothrow::h5f_open(filename.c_str(), openMode, fileAccessProps.getId());
+
67
+
68 if (isValid())
+
69 return; // Done
+
70
+
71 if (openOrCreate) {
+
72 // Will attempt to create ensuring wont clobber any file
+
73 createMode = H5F_ACC_EXCL;
+
74 } else {
+ +
76 std::string("Unable to open file " + filename));
+
77 }
+
78 }
+
79
+
80 auto fcpl = fileCreateProps.getId();
+
81 auto fapl = fileAccessProps.getId();
+
82 _hid = detail::h5f_create(filename.c_str(), createMode, fcpl, fapl);
+
83}
+
+
84
+
+
85inline const std::string& File::getName() const noexcept {
+
86 if (_filename.empty()) {
+
87 _filename = details::get_name([this](char* buffer, size_t length) {
+
88 return detail::h5f_get_name(getId(), buffer, length);
+
89 });
+
90 }
+
91 return _filename;
+
92}
+
+
93
+
+
94inline hsize_t File::getMetadataBlockSize() const {
+
95 auto fapl = getAccessPropertyList();
+
96 return MetadataBlockSize(fapl).getSize();
+
97}
+
+
98
+
+
99inline std::pair<H5F_libver_t, H5F_libver_t> File::getVersionBounds() const {
+
100 auto fapl = getAccessPropertyList();
+
101 auto fileVer = FileVersionBounds(fapl);
+
102 return fileVer.getVersion();
+
103}
+
+
104
+
105#if H5_VERSION_GE(1, 10, 1)
+
106inline H5F_fspace_strategy_t File::getFileSpaceStrategy() const {
+
107 auto fcpl = getCreatePropertyList();
+
108 FileSpaceStrategy spaceStrategy(fcpl);
+
109 return spaceStrategy.getStrategy();
+
110}
+
111
+
112inline hsize_t File::getFileSpacePageSize() const {
+
113 auto fcpl = getCreatePropertyList();
+
114
+
115 if (getFileSpaceStrategy() != H5F_FSPACE_STRATEGY_PAGE) {
+ +
117 std::string("Cannot obtain page size as paged allocation is not used."));
+
118 }
+
119
+
120 return FileSpacePageSize(fcpl).getPageSize();
+
121}
+
122#endif
+
123
+
+
124inline void File::flush() {
+
125 detail::h5f_flush(_hid, H5F_SCOPE_GLOBAL);
+
126}
+
+
127
+
+
128inline size_t File::getFileSize() const {
+
129 hsize_t sizeValue = 0;
+
130 detail::h5f_get_filesize(_hid, &sizeValue);
+
131 return static_cast<size_t>(sizeValue);
+
132}
+
+
133
+
+
134inline size_t File::getFreeSpace() const {
+
135 return static_cast<size_t>(detail::h5f_get_freespace(_hid));
+
136}
+
+
137
+
138} // namespace HighFive
+ + +
File class.
Definition H5File.hpp:24
+
FileCreateProps getCreatePropertyList() const
Get the list of properties for creation of this file.
Definition H5File.hpp:104
+
size_t getFileSize() const
Get the size of this file in bytes.
Definition H5File_misc.hpp:128
+
std::pair< H5F_libver_t, H5F_libver_t > getVersionBounds() const
Returns the HDF5 version compatibility bounds.
Definition H5File_misc.hpp:99
+
void flush()
flush
Definition H5File_misc.hpp:124
+
size_t getFreeSpace() const
Get the amount of tracked, unused space in bytes.
Definition H5File_misc.hpp:134
+
FileAccessProps getAccessPropertyList() const
Get the list of properties for accession of this file.
Definition H5File.hpp:109
+
hsize_t getMetadataBlockSize() const
Returns the block size for metadata in bytes.
Definition H5File_misc.hpp:94
+
@ Truncate
Open flag: Truncate a file if already existing.
Definition H5File.hpp:34
+
@ Create
Open flag: Create non existing file.
Definition H5File.hpp:40
+
@ ReadOnly
Open flag: Read only access.
Definition H5File.hpp:30
+
@ ReadWrite
Open flag: Read Write access.
Definition H5File.hpp:32
+
@ Excl
Open flag: Open will fail if file already exist.
Definition H5File.hpp:36
+
File()=default
+
const std::string & getName() const noexcept
Return the name of the file.
Definition H5File_misc.hpp:85
+
Configure the version bounds for the file.
Definition H5PropertyList.hpp:342
+
Configure the metadata block size to use writing to files.
Definition H5PropertyList.hpp:362
+
hsize_t getSize() const
Definition H5PropertyList_misc.hpp:257
+
hid_t getId() const noexcept
getId
Definition H5Object_misc.hpp:69
+
bool isValid() const noexcept
isValid
Definition H5Object_misc.hpp:65
+
hid_t _hid
Definition H5Object.hpp:105
+
HDF5 property Lists.
Definition H5PropertyList.hpp:160
+
Utility class to disable HDF5 stack printing inside a scope.
Definition H5Utility.hpp:24
+ +
Definition H5_definitions.hpp:22
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/_h5_file_driver_8hpp.html b/_h5_file_driver_8hpp.html new file mode 100644 index 000000000..db8990a61 --- /dev/null +++ b/_h5_file_driver_8hpp.html @@ -0,0 +1,253 @@ + + + + + + + +HighFive: highfive/H5FileDriver.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5FileDriver.hpp File Reference
+
+
+
+Include dependency graph for H5FileDriver.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + + + + +

+Classes

class  HighFive::FileDriver
 file driver base concept More...
 
class  HighFive::MPIOFileDriver
 MPIIO Driver for Parallel HDF5. More...
 
+ + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_file_driver_8hpp.js b/_h5_file_driver_8hpp.js new file mode 100644 index 000000000..c77c1a3d4 --- /dev/null +++ b/_h5_file_driver_8hpp.js @@ -0,0 +1,5 @@ +var _h5_file_driver_8hpp = +[ + [ "HighFive::FileDriver", "class_high_five_1_1_file_driver.html", null ], + [ "HighFive::MPIOFileDriver", "class_high_five_1_1_m_p_i_o_file_driver.html", "class_high_five_1_1_m_p_i_o_file_driver" ] +]; \ No newline at end of file diff --git a/_h5_file_driver_8hpp__dep__incl.map b/_h5_file_driver_8hpp__dep__incl.map new file mode 100644 index 000000000..b2198a7e9 --- /dev/null +++ b/_h5_file_driver_8hpp__dep__incl.map @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_file_driver_8hpp__dep__incl.md5 b/_h5_file_driver_8hpp__dep__incl.md5 new file mode 100644 index 000000000..33f387de3 --- /dev/null +++ b/_h5_file_driver_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +c3c6b21f926a9d7fa64bc89ae90833d4 \ No newline at end of file diff --git a/_h5_file_driver_8hpp__dep__incl.png b/_h5_file_driver_8hpp__dep__incl.png new file mode 100644 index 000000000..9ec34c9a2 Binary files /dev/null and b/_h5_file_driver_8hpp__dep__incl.png differ diff --git a/_h5_file_driver_8hpp__incl.map b/_h5_file_driver_8hpp__incl.map new file mode 100644 index 000000000..fcade80d2 --- /dev/null +++ b/_h5_file_driver_8hpp__incl.map @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_file_driver_8hpp__incl.md5 b/_h5_file_driver_8hpp__incl.md5 new file mode 100644 index 000000000..fb9e57b28 --- /dev/null +++ b/_h5_file_driver_8hpp__incl.md5 @@ -0,0 +1 @@ +8891bb23de384c6574362b85e0a838c2 \ No newline at end of file diff --git a/_h5_file_driver_8hpp__incl.png b/_h5_file_driver_8hpp__incl.png new file mode 100644 index 000000000..308c63391 Binary files /dev/null and b/_h5_file_driver_8hpp__incl.png differ diff --git a/_h5_file_driver_8hpp_source.html b/_h5_file_driver_8hpp_source.html new file mode 100644 index 000000000..90487e9c1 --- /dev/null +++ b/_h5_file_driver_8hpp_source.html @@ -0,0 +1,152 @@ + + + + + + + +HighFive: highfive/H5FileDriver.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5FileDriver.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 "H5PropertyList.hpp"
+ +
13
+
14namespace HighFive {
+
15
+
18class H5_DEPRECATED("Use FileAccessProps directly") FileDriver: public FileAccessProps {};
+
19
+
20#ifdef H5_HAVE_PARALLEL
+
+
23class H5_DEPRECATED("Add MPIOFileAccess directly to FileAccessProps") MPIOFileDriver
+
24 : public FileAccessProps {
+
25 public:
+
26 inline MPIOFileDriver(MPI_Comm mpi_comm, MPI_Info mpi_info);
+
27};
+
+
28#endif
+
29
+
30} // namespace HighFive
+
31
+ + +
#define H5_DEPRECATED(msg)
Definition H5_definitions.hpp:9
+ + +
file driver base concept
Definition H5FileDriver.hpp:18
+
MPIIO Driver for Parallel HDF5.
Definition H5FileDriver.hpp:24
+
HDF5 property Lists.
Definition H5PropertyList.hpp:160
+
Definition H5_definitions.hpp:22
+
+
+ + + + diff --git a/_h5_file_driver__misc_8hpp.html b/_h5_file_driver__misc_8hpp.html new file mode 100644 index 000000000..fd75e0d95 --- /dev/null +++ b/_h5_file_driver__misc_8hpp.html @@ -0,0 +1,166 @@ + + + + + + + +HighFive: highfive/bits/H5FileDriver_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5FileDriver_misc.hpp File Reference
+
+
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_file_driver__misc_8hpp__dep__incl.map b/_h5_file_driver__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..9eefe3347 --- /dev/null +++ b/_h5_file_driver__misc_8hpp__dep__incl.map @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_file_driver__misc_8hpp__dep__incl.md5 b/_h5_file_driver__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..91f022f2e --- /dev/null +++ b/_h5_file_driver__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +b2f5d916e1f0d915ae58ed6c8d51be88 \ No newline at end of file diff --git a/_h5_file_driver__misc_8hpp__dep__incl.png b/_h5_file_driver__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..95815cb5d Binary files /dev/null and b/_h5_file_driver__misc_8hpp__dep__incl.png differ diff --git a/_h5_file_driver__misc_8hpp_source.html b/_h5_file_driver__misc_8hpp_source.html new file mode 100644 index 000000000..5e07d5c04 --- /dev/null +++ b/_h5_file_driver__misc_8hpp_source.html @@ -0,0 +1,140 @@ + + + + + + + +HighFive: highfive/bits/H5FileDriver_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5FileDriver_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 *
+
5 * Distributed under the Boost Software License, Version 1.0.
+
6 * (See accompanying file LICENSE_1_0.txt or copy at
+
7 * http://www.boost.org/LICENSE_1_0.txt)
+
8 *
+
9 */
+
10#pragma once
+
11
+
12namespace HighFive {
+
13
+
14#ifdef H5_HAVE_PARALLEL
+
+
15inline MPIOFileDriver::MPIOFileDriver(MPI_Comm comm, MPI_Info info) {
+
16 add(MPIOFileAccess(comm, info));
+
17}
+
+
18#endif
+
19
+
20} // namespace HighFive
+
Configure MPI access for the file.
Definition H5PropertyList.hpp:232
+
MPIOFileDriver(MPI_Comm mpi_comm, MPI_Info mpi_info)
Definition H5FileDriver_misc.hpp:15
+
void add(const P &property)
Definition H5PropertyList_misc.hpp:72
+
Definition H5_definitions.hpp:22
+
+
+ + + + diff --git a/_h5_friends_8hpp.html b/_h5_friends_8hpp.html new file mode 100644 index 000000000..68667d40b --- /dev/null +++ b/_h5_friends_8hpp.html @@ -0,0 +1,263 @@ + + + + + + + +HighFive: highfive/bits/H5Friends.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Friends.hpp File Reference
+
+
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+
+
+ + + + diff --git a/_h5_friends_8hpp__dep__incl.map b/_h5_friends_8hpp__dep__incl.map new file mode 100644 index 000000000..e06eab0e4 --- /dev/null +++ b/_h5_friends_8hpp__dep__incl.map @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_friends_8hpp__dep__incl.md5 b/_h5_friends_8hpp__dep__incl.md5 new file mode 100644 index 000000000..7fe41f723 --- /dev/null +++ b/_h5_friends_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +acebe7721f0e0d70e9648f86565bb91f \ No newline at end of file diff --git a/_h5_friends_8hpp__dep__incl.png b/_h5_friends_8hpp__dep__incl.png new file mode 100644 index 000000000..0944eeb08 Binary files /dev/null and b/_h5_friends_8hpp__dep__incl.png differ diff --git a/_h5_friends_8hpp_source.html b/_h5_friends_8hpp_source.html new file mode 100644 index 000000000..0a4a41e4a --- /dev/null +++ b/_h5_friends_8hpp_source.html @@ -0,0 +1,124 @@ + + + + + + + +HighFive: highfive/bits/H5Friends.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Friends.hpp
+
+
+Go to the documentation of this file.
1#pragma once
+
2
+
3#ifndef HIGHFIVE_HAS_FRIEND_DECLARATIONS
+
4#ifdef _MSC_VER
+
5// This prevents a compiler bug on certain versions of MSVC.
+
6// Known to fail: Toolset 141.
+
7// See `CMakeLists.txt` for more information.
+
8#define HIGHFIVE_HAS_FRIEND_DECLARATIONS 1
+
9#endif
+
10#endif
+
+
+ + + + diff --git a/_h5_group_8hpp.html b/_h5_group_8hpp.html new file mode 100644 index 000000000..2b34cbc2d --- /dev/null +++ b/_h5_group_8hpp.html @@ -0,0 +1,343 @@ + + + + + + + +HighFive: highfive/H5Group.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Group.hpp File Reference
+
+
+
#include <H5Gpublic.h>
+#include "H5Object.hpp"
+#include "bits/H5Friends.hpp"
+#include "bits/H5_definitions.hpp"
+#include "bits/H5Annotate_traits.hpp"
+#include "bits/H5Node_traits.hpp"
+#include "bits/H5Path_traits.hpp"
+
+Include dependency graph for H5Group.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + +

+Classes

class  HighFive::Group
 Represents an hdf5 group. More...
 
+ + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_group_8hpp.js b/_h5_group_8hpp.js new file mode 100644 index 000000000..8e9fc6e66 --- /dev/null +++ b/_h5_group_8hpp.js @@ -0,0 +1,4 @@ +var _h5_group_8hpp = +[ + [ "HighFive::Group", "class_high_five_1_1_group.html", "class_high_five_1_1_group" ] +]; \ No newline at end of file diff --git a/_h5_group_8hpp__dep__incl.map b/_h5_group_8hpp__dep__incl.map new file mode 100644 index 000000000..3e9020a14 --- /dev/null +++ b/_h5_group_8hpp__dep__incl.map @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_group_8hpp__dep__incl.md5 b/_h5_group_8hpp__dep__incl.md5 new file mode 100644 index 000000000..84e1f73f0 --- /dev/null +++ b/_h5_group_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +182109c6571e9fde096291455e9d9687 \ No newline at end of file diff --git a/_h5_group_8hpp__dep__incl.png b/_h5_group_8hpp__dep__incl.png new file mode 100644 index 000000000..698fc90ac Binary files /dev/null and b/_h5_group_8hpp__dep__incl.png differ diff --git a/_h5_group_8hpp__incl.map b/_h5_group_8hpp__incl.map new file mode 100644 index 000000000..d2871d746 --- /dev/null +++ b/_h5_group_8hpp__incl.map @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_group_8hpp__incl.md5 b/_h5_group_8hpp__incl.md5 new file mode 100644 index 000000000..6d91ff150 --- /dev/null +++ b/_h5_group_8hpp__incl.md5 @@ -0,0 +1 @@ +6e9d6c1821b6e9da2430f7bd13fd0baf \ No newline at end of file diff --git a/_h5_group_8hpp__incl.png b/_h5_group_8hpp__incl.png new file mode 100644 index 000000000..d2a9b81f7 Binary files /dev/null and b/_h5_group_8hpp__incl.png differ diff --git a/_h5_group_8hpp_source.html b/_h5_group_8hpp_source.html new file mode 100644 index 000000000..1950d0c26 --- /dev/null +++ b/_h5_group_8hpp_source.html @@ -0,0 +1,216 @@ + + + + + + + +HighFive: highfive/H5Group.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Group.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 <H5Gpublic.h>
+
12
+
13#include "H5Object.hpp"
+
14#include "bits/H5Friends.hpp"
+ + + + +
19
+
20namespace HighFive {
+
21
+
22namespace detail {
+
38Group make_group(hid_t);
+
39} // namespace detail
+
40
+
+
43class Group: public Object,
+
44 public NodeTraits<Group>,
+
45 public AnnotateTraits<Group>,
+
46 public PathTraits<Group> {
+
47 public:
+ +
49
+
51 H5_DEPRECATED("Default constructor creates unsafe uninitialized objects")
+
52 Group() = default;
+
53
+
54 std::pair<unsigned int, unsigned int> getEstimatedLinkInfo() const;
+
55
+
+ +
58 return details::get_plist<GroupCreateProps>(*this, H5Gget_create_plist);
+
59 }
+
+
60
+
+
61 Group(Object&& o) noexcept
+
62 : Object(std::move(o)){};
+
+
63
+
64 protected:
+
65 using Object::Object;
+
66
+
67 friend Group detail::make_group(hid_t);
+
68 friend class File;
+
69 friend class Reference;
+
70#if HIGHFIVE_HAS_FRIEND_DECLARATIONS
+
71 template <typename Derivate>
+
72 friend class ::HighFive::NodeTraits;
+
73#endif
+
74};
+
+
75
+
+
76inline std::pair<unsigned int, unsigned int> Group::getEstimatedLinkInfo() const {
+
77 auto gcpl = getCreatePropertyList();
+
78 auto eli = EstimatedLinkInfo(gcpl);
+
79 return std::make_pair(eli.getEntries(), eli.getNameLength());
+
80}
+
+
81
+
82namespace detail {
+
83inline Group make_group(hid_t hid) {
+
84 return Group(hid);
+
85}
+
86} // namespace detail
+
87
+
88} // namespace HighFive
+ +
#define H5_DEPRECATED(msg)
Definition H5_definitions.hpp:9
+ + + + + +
Definition H5Annotate_traits.hpp:18
+ +
File class.
Definition H5File.hpp:24
+
Represents an hdf5 group.
Definition H5Group.hpp:46
+
Object()
Definition H5Object_misc.hpp:25
+
static const ObjectType type
Definition H5Group.hpp:48
+
GroupCreateProps getCreatePropertyList() const
Get the list of properties for creation of this group.
Definition H5Group.hpp:57
+
Group(Object &&o) noexcept
Definition H5Group.hpp:61
+
std::pair< unsigned int, unsigned int > getEstimatedLinkInfo() const
Definition H5Group.hpp:76
+
NodeTraits: Base class for Group and File.
Definition H5Node_traits.hpp:28
+
Definition H5Object.hpp:54
+
Object()
Definition H5Object_misc.hpp:25
+
Definition H5Path_traits.hpp:16
+
HDF5 property Lists.
Definition H5PropertyList.hpp:160
+
An HDF5 (object) reference type.
Definition H5Reference.hpp:33
+
Definition H5_definitions.hpp:22
+
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24
+ +
+
+ + + + diff --git a/_h5_inspector__decl_8hpp.html b/_h5_inspector__decl_8hpp.html new file mode 100644 index 000000000..459791e22 --- /dev/null +++ b/_h5_inspector__decl_8hpp.html @@ -0,0 +1,252 @@ + + + + + + + +HighFive: highfive/bits/H5Inspector_decl.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Inspector_decl.hpp File Reference
+
+
+
#include <cstddef>
+#include <numeric>
+#include <functional>
+#include <vector>
+
+Include dependency graph for H5Inspector_decl.hpp:
+
+
+ + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+ + + + +

+Typedefs

template<typename T >
using HighFive::unqualified_t = typename std::remove_const<typename std::remove_reference<T>::type>::type
 
+ + + +

+Functions

size_t HighFive::compute_total_size (const std::vector< size_t > &dims)
 
+
+
+ + + + diff --git a/_h5_inspector__decl_8hpp.js b/_h5_inspector__decl_8hpp.js new file mode 100644 index 000000000..423bb03a4 --- /dev/null +++ b/_h5_inspector__decl_8hpp.js @@ -0,0 +1,5 @@ +var _h5_inspector__decl_8hpp = +[ + [ "unqualified_t", "_h5_inspector__decl_8hpp.html#aa9e6633e6c8cdf9f4a092c1d7509774a", null ], + [ "compute_total_size", "_h5_inspector__decl_8hpp.html#ae473192dc3e4e3f42c470f682817a32c", null ] +]; \ No newline at end of file diff --git a/_h5_inspector__decl_8hpp__dep__incl.map b/_h5_inspector__decl_8hpp__dep__incl.map new file mode 100644 index 000000000..878ea12ac --- /dev/null +++ b/_h5_inspector__decl_8hpp__dep__incl.map @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_inspector__decl_8hpp__dep__incl.md5 b/_h5_inspector__decl_8hpp__dep__incl.md5 new file mode 100644 index 000000000..7edb83afb --- /dev/null +++ b/_h5_inspector__decl_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +d667912c78d3897c9668fe98f49d08c7 \ No newline at end of file diff --git a/_h5_inspector__decl_8hpp__dep__incl.png b/_h5_inspector__decl_8hpp__dep__incl.png new file mode 100644 index 000000000..59b1dc4d3 Binary files /dev/null and b/_h5_inspector__decl_8hpp__dep__incl.png differ diff --git a/_h5_inspector__decl_8hpp__incl.map b/_h5_inspector__decl_8hpp__incl.map new file mode 100644 index 000000000..57f2e058f --- /dev/null +++ b/_h5_inspector__decl_8hpp__incl.map @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/_h5_inspector__decl_8hpp__incl.md5 b/_h5_inspector__decl_8hpp__incl.md5 new file mode 100644 index 000000000..cb90c7240 --- /dev/null +++ b/_h5_inspector__decl_8hpp__incl.md5 @@ -0,0 +1 @@ +e95bbcadc9d14c8b666a16b23db4749d \ No newline at end of file diff --git a/_h5_inspector__decl_8hpp__incl.png b/_h5_inspector__decl_8hpp__incl.png new file mode 100644 index 000000000..bd76782cc Binary files /dev/null and b/_h5_inspector__decl_8hpp__incl.png differ diff --git a/_h5_inspector__decl_8hpp_source.html b/_h5_inspector__decl_8hpp_source.html new file mode 100644 index 000000000..d468b2cf0 --- /dev/null +++ b/_h5_inspector__decl_8hpp_source.html @@ -0,0 +1,146 @@ + + + + + + + +HighFive: highfive/bits/H5Inspector_decl.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Inspector_decl.hpp
+
+
+Go to the documentation of this file.
1#pragma once
+
2
+
3#include <cstddef>
+
4#include <numeric>
+
5#include <functional>
+
6#include <vector>
+
7
+
8namespace HighFive {
+
9
+
+
10inline size_t compute_total_size(const std::vector<size_t>& dims) {
+
11 return std::accumulate(dims.begin(), dims.end(), size_t{1u}, std::multiplies<size_t>());
+
12}
+
+
13
+
14template <typename T>
+
15using unqualified_t = typename std::remove_const<typename std::remove_reference<T>::type>::type;
+
16
+
17
+
18namespace details {
+
19
+
20template <typename T>
+
21struct type_helper;
+
22
+
23template <typename T>
+
24struct inspector;
+
25
+
26} // namespace details
+
27} // namespace HighFive
+
Definition H5_definitions.hpp:22
+
typename std::remove_const< typename std::remove_reference< T >::type >::type unqualified_t
Definition H5Inspector_decl.hpp:15
+
size_t compute_total_size(const std::vector< size_t > &dims)
Definition H5Inspector_decl.hpp:10
+
+
+ + + + diff --git a/_h5_inspector__misc_8hpp.html b/_h5_inspector__misc_8hpp.html new file mode 100644 index 000000000..6793644da --- /dev/null +++ b/_h5_inspector__misc_8hpp.html @@ -0,0 +1,352 @@ + + + + + + + +HighFive: highfive/bits/H5Inspector_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Inspector_misc.hpp File Reference
+
+
+
#include <type_traits>
+#include <cstring>
+#include <cassert>
+#include <vector>
+#include <array>
+#include <string>
+#include <numeric>
+#include "../H5Reference.hpp"
+#include "string_padding.hpp"
+#include "H5Inspector_decl.hpp"
+#include <highfive/boost.hpp>
+#include <highfive/eigen.hpp>
+
+Include dependency graph for H5Inspector_misc.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_inspector__misc_8hpp__dep__incl.map b/_h5_inspector__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..7ef66fe10 --- /dev/null +++ b/_h5_inspector__misc_8hpp__dep__incl.map @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_inspector__misc_8hpp__dep__incl.md5 b/_h5_inspector__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..1dd8daa8f --- /dev/null +++ b/_h5_inspector__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +962ae92e74b4c29ccd45b4f2faa318fd \ No newline at end of file diff --git a/_h5_inspector__misc_8hpp__dep__incl.png b/_h5_inspector__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..ff0152531 Binary files /dev/null and b/_h5_inspector__misc_8hpp__dep__incl.png differ diff --git a/_h5_inspector__misc_8hpp__incl.map b/_h5_inspector__misc_8hpp__incl.map new file mode 100644 index 000000000..9f622748c --- /dev/null +++ b/_h5_inspector__misc_8hpp__incl.map @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_inspector__misc_8hpp__incl.md5 b/_h5_inspector__misc_8hpp__incl.md5 new file mode 100644 index 000000000..7e1c7e56d --- /dev/null +++ b/_h5_inspector__misc_8hpp__incl.md5 @@ -0,0 +1 @@ +f11d54dc3d9e4ce84a35d85d4a79ea8c \ No newline at end of file diff --git a/_h5_inspector__misc_8hpp__incl.png b/_h5_inspector__misc_8hpp__incl.png new file mode 100644 index 000000000..69874e6b8 Binary files /dev/null and b/_h5_inspector__misc_8hpp__incl.png differ diff --git a/_h5_inspector__misc_8hpp_source.html b/_h5_inspector__misc_8hpp_source.html new file mode 100644 index 000000000..805875ce3 --- /dev/null +++ b/_h5_inspector__misc_8hpp_source.html @@ -0,0 +1,774 @@ + + + + + + + +HighFive: highfive/bits/H5Inspector_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Inspector_misc.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c) 2022 Blue Brain Project
+
3 *
+
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
+
10#pragma once
+
11
+
12#include <type_traits>
+
13#include <cstring>
+
14#include <cassert>
+
15#include <vector>
+
16#include <array>
+
17#include <string>
+
18#include <numeric>
+
19
+
20#include "../H5Reference.hpp"
+
21
+
22#include "string_padding.hpp"
+
23
+
24#include "H5Inspector_decl.hpp"
+
25
+
26
+
27namespace HighFive {
+
28namespace details {
+
29
+
30inline bool checkDimensions(const std::vector<size_t>& dims, size_t n_dim_requested) {
+
31 size_t n_dim_actual = dims.size();
+
32
+
33 // We should allow reading scalar from shapes like `(1, 1, 1)`.
+
34 if (n_dim_requested == 0) {
+
35 if (n_dim_actual == 0ul) {
+
36 return true;
+
37 }
+
38
+
39 return size_t(std::count(dims.begin(), dims.end(), 1ul)) == n_dim_actual;
+
40 }
+
41
+
42 // For non-scalar datasets, we can squeeze away singleton dimension, but
+
43 // we never add any.
+
44 if (n_dim_actual < n_dim_requested) {
+
45 return false;
+
46 }
+
47
+
48 // Special case for 1-dimensional arrays, which can squeeze `1`s from either
+
49 // side simultaneously if needed.
+
50 if (n_dim_requested == 1ul) {
+
51 return n_dim_actual >= 1ul &&
+
52 size_t(std::count(dims.begin(), dims.end(), 1ul)) >= n_dim_actual - 1ul;
+
53 }
+
54
+
55 // All other cases strip front only. This avoid unstable behaviour when
+
56 // squeezing singleton dimensions.
+
57 size_t n_dim_excess = n_dim_actual - n_dim_requested;
+
58
+
59 bool squeeze_back = true;
+
60 for (size_t i = 1; i <= n_dim_excess; ++i) {
+
61 if (dims[n_dim_actual - i] != 1) {
+
62 squeeze_back = false;
+
63 break;
+
64 }
+
65 }
+
66
+
67 return squeeze_back;
+
68}
+
69
+
70
+
71inline std::vector<size_t> squeezeDimensions(const std::vector<size_t>& dims,
+
72 size_t n_dim_requested) {
+
73 auto format_error_message = [&]() -> std::string {
+
74 return "Can't interpret dims = " + format_vector(dims) + " as " +
+
75 std::to_string(n_dim_requested) + "-dimensional.";
+
76 };
+
77
+
78 if (n_dim_requested == 0) {
+
79 if (!checkDimensions(dims, n_dim_requested)) {
+
80 throw std::invalid_argument("Failed dimensions check: " + format_error_message());
+
81 }
+
82
+
83 return {1ul};
+
84 }
+
85
+
86 auto n_dim = dims.size();
+
87 if (n_dim < n_dim_requested) {
+
88 throw std::invalid_argument("Failed 'n_dim < n_dim_requested: " + format_error_message());
+
89 }
+
90
+
91 if (n_dim_requested == 1ul) {
+
92 size_t non_singleton_dim = size_t(-1);
+
93 for (size_t i = 0; i < n_dim; ++i) {
+
94 if (dims[i] != 1ul) {
+
95 if (non_singleton_dim == size_t(-1)) {
+
96 non_singleton_dim = i;
+
97 } else {
+
98 throw std::invalid_argument("Failed one-dimensional: " +
+
99 format_error_message());
+
100 }
+
101 }
+
102 }
+
103
+
104 return {dims[std::min(non_singleton_dim, n_dim - 1)]};
+
105 }
+
106
+
107 size_t n_dim_excess = dims.size() - n_dim_requested;
+
108 for (size_t i = 1; i <= n_dim_excess; ++i) {
+
109 if (dims[n_dim - i] != 1) {
+
110 throw std::invalid_argument("Failed stripping from back:" + format_error_message());
+
111 }
+
112 }
+
113
+
114 return std::vector<size_t>(dims.begin(),
+
115 dims.end() - static_cast<std::ptrdiff_t>(n_dim_excess));
+
116}
+
117} // namespace details
+
118
+
119
+
120/*****
+
121inspector<T> {
+
122 using type = T
+
123 // base_type is the base type inside c++ (e.g. std::vector<int> => int)
+
124 using base_type
+
125 // hdf5_type is the base read by hdf5 (c-type) (e.g. std::vector<std::string> => const char*)
+
126 using hdf5_type
+
127
+
128 // Number of dimensions starting from here
+
129 static constexpr size_t recursive_ndim
+
130 // Is the inner type trivially copyable for optimisation
+
131 // If this value is true: data() is mandatory
+
132 // If this value is false: getSizeVal, getSize, serialize, unserialize are mandatory
+
133 static constexpr bool is_trivially_copyable
+
134
+
135 // Reading:
+
136 // Allocate the value following dims (should be recursive)
+
137 static void prepare(type& val, const std::vector<std::size_t> dims)
+
138 // Return the size of the vector pass to/from hdf5 from a vector of dims
+
139 static size_t getSize(const std::vector<size_t>& dims)
+
140 // Return a pointer of the first value of val (for reading)
+
141 static hdf5_type* data(type& val)
+
142 // Take a serialized vector 'in', some dims and copy value to val (for reading)
+
143 static void unserialize(const hdf5_type* in, const std::vector<size_t>&i, type& val)
+
144
+
145
+
146 // Writing:
+
147 // Return the size of the vector pass to/from hdf5 from a value
+
148 static size_t getSizeVal(const type& val)
+
149 // Return a point of the first value of val
+
150 static const hdf5_type* data(const type& val)
+
151 // Take a val and serialize it inside 'out'
+
152 static void serialize(const type& val, hdf5_type* out)
+
153 // Return an array of dimensions of the space needed for writing val
+
154 static std::vector<size_t> getDimensions(const type& val)
+
155}
+
156*****/
+
157
+
158
+
159namespace details {
+
160template <typename T>
+
161struct type_helper {
+
162 using type = unqualified_t<T>;
+
163 using base_type = unqualified_t<T>;
+
164 using hdf5_type = base_type;
+
165
+
166 static constexpr size_t ndim = 0;
+
167 static constexpr size_t recursive_ndim = ndim;
+
168 static constexpr bool is_trivially_copyable = std::is_trivially_copyable<type>::value;
+
169
+
170 static std::vector<size_t> getDimensions(const type& /* val */) {
+
171 return {};
+
172 }
+
173
+
174 static size_t getSizeVal(const type& val) {
+
175 return compute_total_size(getDimensions(val));
+
176 }
+
177
+
178 static size_t getSize(const std::vector<size_t>& dims) {
+
179 return compute_total_size(dims);
+
180 }
+
181
+
182 static void prepare(type& /* val */, const std::vector<size_t>& /* dims */) {}
+
183
+
184 static hdf5_type* data(type& val) {
+
185 static_assert(is_trivially_copyable, "The type is not trivially copyable");
+
186 return &val;
+
187 }
+
188
+
189 static const hdf5_type* data(const type& val) {
+
190 static_assert(is_trivially_copyable, "The type is not trivially copyable");
+
191 return &val;
+
192 }
+
193
+
194 static void serialize(const type& val, hdf5_type* m) {
+
195 static_assert(is_trivially_copyable, "The type is not trivially copyable");
+
196 *m = val;
+
197 }
+
198
+
199 static void unserialize(const hdf5_type* vec,
+
200 const std::vector<size_t>& /* dims */,
+
201 type& val) {
+
202 static_assert(is_trivially_copyable, "The type is not trivially copyable");
+
203 val = vec[0];
+
204 }
+
205};
+
206
+
207template <typename T>
+
208struct inspector: type_helper<T> {};
+
209
+
210enum class Boolean : int8_t {
+
211 HighFiveFalse = 0,
+
212 HighFiveTrue = 1,
+
213};
+
214
+
215template <>
+
216struct inspector<bool>: type_helper<bool> {
+
217 using base_type = Boolean;
+
218 using hdf5_type = int8_t;
+
219
+
220 static constexpr bool is_trivially_copyable = false;
+
221
+
222 static hdf5_type* data(type& /* val */) {
+
223 throw DataSpaceException("A boolean cannot be read directly.");
+
224 }
+
225
+
226 static const hdf5_type* data(const type& /* val */) {
+
227 throw DataSpaceException("A boolean cannot be written directly.");
+
228 }
+
229
+
230 static void unserialize(const hdf5_type* vec,
+
231 const std::vector<size_t>& /* dims */,
+
232 type& val) {
+
233 val = vec[0] != 0 ? true : false;
+
234 }
+
235
+
236 static void serialize(const type& val, hdf5_type* m) {
+
237 *m = val ? 1 : 0;
+
238 }
+
239};
+
240
+
241template <>
+
242struct inspector<std::string>: type_helper<std::string> {
+
243 using hdf5_type = const char*;
+
244
+
245 static hdf5_type* data(type& /* val */) {
+
246 throw DataSpaceException("A std::string cannot be read directly.");
+
247 }
+
248
+
249 static const hdf5_type* data(const type& /* val */) {
+
250 throw DataSpaceException("A std::string cannot be written directly.");
+
251 }
+
252
+
253 template <class It>
+
254 static void serialize(const type& val, It m) {
+
255 (*m).assign(val.data(), val.size(), StringPadding::NullTerminated);
+
256 }
+
257
+
258 template <class It>
+
259 static void unserialize(const It& vec, const std::vector<size_t>& /* dims */, type& val) {
+
260 const auto& view = *vec;
+
261 val.assign(view.data(), view.length());
+
262 }
+
263};
+
264
+
265template <>
+
266struct inspector<Reference>: type_helper<Reference> {
+
267 using hdf5_type = hobj_ref_t;
+
268
+
269 static constexpr bool is_trivially_copyable = false;
+
270
+
271 static hdf5_type* data(type& /* val */) {
+
272 throw DataSpaceException("A Reference cannot be read directly.");
+
273 }
+
274
+
275 static const hdf5_type* data(const type& /* val */) {
+
276 throw DataSpaceException("A Reference cannot be written directly.");
+
277 }
+
278
+
279 static void serialize(const type& val, hdf5_type* m) {
+
280 hobj_ref_t ref;
+
281 val.create_ref(&ref);
+
282 *m = ref;
+
283 }
+
284
+
285 static void unserialize(const hdf5_type* vec,
+
286 const std::vector<size_t>& /* dims */,
+
287 type& val) {
+
288 val = type{vec[0]};
+
289 }
+
290};
+
291
+
292template <size_t N>
+
293struct inspector<deprecated::FixedLenStringArray<N>> {
+
294 using type = deprecated::FixedLenStringArray<N>;
+
295 using value_type = char*;
+
296 using base_type = deprecated::FixedLenStringArray<N>;
+
297 using hdf5_type = char;
+
298
+
299 static constexpr size_t ndim = 1;
+
300 static constexpr size_t recursive_ndim = ndim;
+
301 static constexpr bool is_trivially_copyable = false;
+
302
+
303 static std::vector<size_t> getDimensions(const type& val) {
+
304 return std::vector<size_t>{val.size()};
+
305 }
+
306
+
307 static size_t getSizeVal(const type& val) {
+
308 return N * compute_total_size(getDimensions(val));
+
309 }
+
310
+
311 static size_t getSize(const std::vector<size_t>& dims) {
+
312 return N * compute_total_size(dims);
+
313 }
+
314
+
315 static void prepare(type& /* val */, const std::vector<size_t>& dims) {
+
316 if (dims[0] > N) {
+
317 std::ostringstream os;
+
318 os << "Size of FixedlenStringArray (" << N << ") is too small for dims (" << dims[0]
+
319 << ").";
+
320 throw DataSpaceException(os.str());
+
321 }
+
322 }
+
323
+
324 static hdf5_type* data(type& val) {
+
325 return val.data();
+
326 }
+
327
+
328 static const hdf5_type* data(const type& val) {
+
329 return val.data();
+
330 }
+
331
+
332 static void serialize(const type& val, hdf5_type* m) {
+
333 for (size_t i = 0; i < val.size(); ++i) {
+
334 std::memcpy(m + i * N, val[i], N);
+
335 }
+
336 }
+
337
+
338 static void unserialize(const hdf5_type* vec, const std::vector<size_t>& dims, type& val) {
+
339 for (size_t i = 0; i < dims[0]; ++i) {
+
340 std::array<char, N> s;
+
341 std::memcpy(s.data(), vec + (i * N), N);
+
342 val.push_back(s);
+
343 }
+
344 }
+
345};
+
346
+
347template <typename T>
+
348struct inspector<std::vector<T>> {
+
349 using type = std::vector<T>;
+
350 using value_type = unqualified_t<T>;
+
351 using base_type = typename inspector<value_type>::base_type;
+
352 using hdf5_type = typename inspector<value_type>::hdf5_type;
+
353
+
354 static constexpr size_t ndim = 1;
+
355 static constexpr size_t recursive_ndim = ndim + inspector<value_type>::recursive_ndim;
+
356 static constexpr bool is_trivially_copyable = std::is_trivially_copyable<value_type>::value &&
+
357 inspector<value_type>::is_trivially_copyable;
+
358
+
359 static std::vector<size_t> getDimensions(const type& val) {
+
360 std::vector<size_t> sizes(recursive_ndim, 1ul);
+
361 sizes[0] = val.size();
+
362 if (!val.empty()) {
+
363 auto s = inspector<value_type>::getDimensions(val[0]);
+
364 assert(s.size() + ndim == sizes.size());
+
365 for (size_t i = 0; i < s.size(); ++i) {
+
366 sizes[i + ndim] = s[i];
+
367 }
+
368 }
+
369 return sizes;
+
370 }
+
371
+
372 static size_t getSizeVal(const type& val) {
+
373 return compute_total_size(getDimensions(val));
+
374 }
+
375
+
376 static size_t getSize(const std::vector<size_t>& dims) {
+
377 return compute_total_size(dims);
+
378 }
+
379
+
380 static void prepare(type& val, const std::vector<size_t>& dims) {
+
381 val.resize(dims[0]);
+
382 std::vector<size_t> next_dims(dims.begin() + 1, dims.end());
+
383 for (auto&& e: val) {
+
384 inspector<value_type>::prepare(e, next_dims);
+
385 }
+
386 }
+
387
+
388 static hdf5_type* data(type& val) {
+
389 return val.empty() ? nullptr : inspector<value_type>::data(val[0]);
+
390 }
+
391
+
392 static const hdf5_type* data(const type& val) {
+
393 return val.empty() ? nullptr : inspector<value_type>::data(val[0]);
+
394 }
+
395
+
396 template <class It>
+
397 static void serialize(const type& val, It m) {
+
398 if (!val.empty()) {
+
399 size_t subsize = inspector<value_type>::getSizeVal(val[0]);
+
400 for (auto&& e: val) {
+
401 inspector<value_type>::serialize(e, m);
+
402 m += subsize;
+
403 }
+
404 }
+
405 }
+
406
+
407 template <class It>
+
408 static void unserialize(const It& vec_align, const std::vector<size_t>& dims, type& val) {
+
409 std::vector<size_t> next_dims(dims.begin() + 1, dims.end());
+
410 size_t next_size = compute_total_size(next_dims);
+
411 for (size_t i = 0; i < dims[0]; ++i) {
+
412 inspector<value_type>::unserialize(vec_align + i * next_size, next_dims, val[i]);
+
413 }
+
414 }
+
415};
+
416
+
417template <>
+
418struct inspector<std::vector<bool>> {
+
419 using type = std::vector<bool>;
+
420 using value_type = bool;
+
421 using base_type = Boolean;
+
422 using hdf5_type = uint8_t;
+
423
+
424 static constexpr size_t ndim = 1;
+
425 static constexpr size_t recursive_ndim = ndim;
+
426 static constexpr bool is_trivially_copyable = false;
+
427
+
428 static std::vector<size_t> getDimensions(const type& val) {
+
429 std::vector<size_t> sizes{val.size()};
+
430 return sizes;
+
431 }
+
432
+
433 static size_t getSizeVal(const type& val) {
+
434 return val.size();
+
435 }
+
436
+
437 static size_t getSize(const std::vector<size_t>& dims) {
+
438 if (dims.size() > 1) {
+
439 throw DataSpaceException("std::vector<bool> is only 1 dimension.");
+
440 }
+
441 return dims[0];
+
442 }
+
443
+
444 static void prepare(type& val, const std::vector<size_t>& dims) {
+
445 if (dims.size() > 1) {
+
446 throw DataSpaceException("std::vector<bool> is only 1 dimension.");
+
447 }
+
448 val.resize(dims[0]);
+
449 }
+
450
+
451 static hdf5_type* data(type& /* val */) {
+
452 throw DataSpaceException("A std::vector<bool> cannot be read directly.");
+
453 }
+
454
+
455 static const hdf5_type* data(const type& /* val */) {
+
456 throw DataSpaceException("A std::vector<bool> cannot be written directly.");
+
457 }
+
458
+
459 static void serialize(const type& val, hdf5_type* m) {
+
460 for (size_t i = 0; i < val.size(); ++i) {
+
461 m[i] = val[i] ? 1 : 0;
+
462 }
+
463 }
+
464
+
465 static void unserialize(const hdf5_type* vec_align,
+
466 const std::vector<size_t>& dims,
+
467 type& val) {
+
468 for (size_t i = 0; i < dims[0]; ++i) {
+
469 val[i] = vec_align[i] != 0 ? true : false;
+
470 }
+
471 }
+
472};
+
473
+
474template <typename T, size_t N>
+
475struct inspector<std::array<T, N>> {
+
476 using type = std::array<T, N>;
+
477 using value_type = unqualified_t<T>;
+
478 using base_type = typename inspector<value_type>::base_type;
+
479 using hdf5_type = typename inspector<value_type>::hdf5_type;
+
480
+
481 static constexpr size_t ndim = 1;
+
482 static constexpr size_t recursive_ndim = ndim + inspector<value_type>::recursive_ndim;
+
483 static constexpr bool is_trivially_copyable = std::is_trivially_copyable<value_type>::value &&
+
484 sizeof(type) == N * sizeof(T) &&
+
485 inspector<value_type>::is_trivially_copyable;
+
486
+
487 static std::vector<size_t> getDimensions(const type& val) {
+
488 std::vector<size_t> sizes{N};
+
489 if (!val.empty()) {
+
490 auto s = inspector<value_type>::getDimensions(val[0]);
+
491 sizes.insert(sizes.end(), s.begin(), s.end());
+
492 }
+
493 return sizes;
+
494 }
+
495
+
496 static size_t getSizeVal(const type& val) {
+
497 return compute_total_size(getDimensions(val));
+
498 }
+
499
+
500 static size_t getSize(const std::vector<size_t>& dims) {
+
501 return compute_total_size(dims);
+
502 }
+
503
+
504 static void prepare(type& val, const std::vector<size_t>& dims) {
+
505 if (dims[0] > N) {
+
506 std::ostringstream os;
+
507 os << "Size of std::array (" << N << ") is too small for dims (" << dims[0] << ").";
+
508 throw DataSpaceException(os.str());
+
509 }
+
510
+
511 std::vector<size_t> next_dims(dims.begin() + 1, dims.end());
+
512 for (auto&& e: val) {
+
513 inspector<value_type>::prepare(e, next_dims);
+
514 }
+
515 }
+
516
+
517 static hdf5_type* data(type& val) {
+
518 return inspector<value_type>::data(val[0]);
+
519 }
+
520
+
521 static const hdf5_type* data(const type& val) {
+
522 return inspector<value_type>::data(val[0]);
+
523 }
+
524
+
525 template <class It>
+
526 static void serialize(const type& val, It m) {
+
527 size_t subsize = inspector<value_type>::getSizeVal(val[0]);
+
528 for (auto& e: val) {
+
529 inspector<value_type>::serialize(e, m);
+
530 m += subsize;
+
531 }
+
532 }
+
533
+
534 template <class It>
+
535 static void unserialize(const It& vec_align, const std::vector<size_t>& dims, type& val) {
+
536 if (dims[0] != N) {
+
537 std::ostringstream os;
+
538 os << "Impossible to pair DataSet with " << dims[0] << " elements into an array with "
+
539 << N << " elements.";
+
540 throw DataSpaceException(os.str());
+
541 }
+
542 std::vector<size_t> next_dims(dims.begin() + 1, dims.end());
+
543 size_t next_size = compute_total_size(next_dims);
+
544 for (size_t i = 0; i < dims[0]; ++i) {
+
545 inspector<value_type>::unserialize(vec_align + i * next_size, next_dims, val[i]);
+
546 }
+
547 }
+
548};
+
549
+
550// Cannot be use for reading
+
551template <typename T>
+
552struct inspector<T*> {
+
553 using type = T*;
+
554 using value_type = unqualified_t<T>;
+
555 using base_type = typename inspector<value_type>::base_type;
+
556 using hdf5_type = typename inspector<value_type>::hdf5_type;
+
557
+
558 static constexpr size_t ndim = 1;
+
559 static constexpr size_t recursive_ndim = ndim + inspector<value_type>::recursive_ndim;
+
560 static constexpr bool is_trivially_copyable = std::is_trivially_copyable<value_type>::value &&
+
561 inspector<value_type>::is_trivially_copyable;
+
562
+
563 static size_t getSizeVal(const type& /* val */) {
+
564 throw DataSpaceException("Not possible to have size of a T*");
+
565 }
+
566
+
567 static std::vector<size_t> getDimensions(const type& /* val */) {
+
568 throw DataSpaceException("Not possible to have size of a T*");
+
569 }
+
570
+
571 static const hdf5_type* data(const type& val) {
+
572 return reinterpret_cast<const hdf5_type*>(val);
+
573 }
+
574
+
575 /* it works because there is only T[][][] currently
+
576 we will fix it one day */
+
577 static void serialize(const type& /* val */, hdf5_type* /* m */) {
+
578 throw DataSpaceException("Not possible to serialize a T*");
+
579 }
+
580};
+
581
+
582// Cannot be use for reading
+
583template <typename T, size_t N>
+
584struct inspector<T[N]> {
+
585 using type = T[N];
+
586 using value_type = unqualified_t<T>;
+
587 using base_type = typename inspector<value_type>::base_type;
+
588 using hdf5_type = typename inspector<value_type>::hdf5_type;
+
589
+
590 static constexpr size_t ndim = 1;
+
591 static constexpr size_t recursive_ndim = ndim + inspector<value_type>::recursive_ndim;
+
592 static constexpr bool is_trivially_copyable = std::is_trivially_copyable<value_type>::value &&
+
593 inspector<value_type>::is_trivially_copyable;
+
594
+
595 static void prepare(type& val, const std::vector<size_t>& dims) {
+
596 if (dims.size() < 1) {
+
597 throw DataSpaceException("Invalid 'dims', must be at least 1 dimensional.");
+
598 }
+
599
+
600 if (dims[0] != N) {
+
601 throw DataSpaceException("Dimensions mismatch.");
+
602 }
+
603
+
604 std::vector<size_t> next_dims(dims.begin() + 1, dims.end());
+
605 for (size_t i = 0; i < dims[0]; ++i) {
+
606 inspector<value_type>::prepare(val[i], next_dims);
+
607 }
+
608 }
+
609
+
610 static size_t getSizeVal(const type& val) {
+
611 return compute_total_size(getDimensions(val));
+
612 }
+
613
+
614 static std::vector<size_t> getDimensions(const type& val) {
+
615 std::vector<size_t> sizes{N};
+
616 if (N > 0) {
+
617 auto s = inspector<value_type>::getDimensions(val[0]);
+
618 sizes.insert(sizes.end(), s.begin(), s.end());
+
619 }
+
620 return sizes;
+
621 }
+
622
+
623 static const hdf5_type* data(const type& val) {
+
624 return inspector<value_type>::data(val[0]);
+
625 }
+
626
+
627 static hdf5_type* data(type& val) {
+
628 return inspector<value_type>::data(val[0]);
+
629 }
+
630
+
631 /* it works because there is only T[][][] currently
+
632 we will fix it one day */
+
633 static void serialize(const type& val, hdf5_type* m) {
+
634 size_t subsize = inspector<value_type>::getSizeVal(val[0]);
+
635 for (size_t i = 0; i < N; ++i) {
+
636 inspector<value_type>::serialize(val[i], m + i * subsize);
+
637 }
+
638 }
+
639};
+
640
+
641} // namespace details
+
642} // namespace HighFive
+
643
+
644#ifdef H5_USE_BOOST
+
645#include <highfive/boost.hpp>
+
646#endif
+
647
+
648#ifdef H5_USE_EIGEN
+
649#include <highfive/eigen.hpp>
+
650#endif
+ + + + +
size_t getSize(const File &file, const std::string &path)
Get the size of an existing DataSet in an open HDF5 file.
Definition H5Easy_public.hpp:82
+
Definition H5_definitions.hpp:22
+ + +
size_t compute_total_size(const std::vector< size_t > &dims)
Definition H5Inspector_decl.hpp:10
+ +
+
+ + + + diff --git a/_h5_iterables__misc_8hpp.html b/_h5_iterables__misc_8hpp.html new file mode 100644 index 000000000..f4c3e2d34 --- /dev/null +++ b/_h5_iterables__misc_8hpp.html @@ -0,0 +1,188 @@ + + + + + + + +HighFive: highfive/bits/H5Iterables_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Iterables_misc.hpp File Reference
+
+
+
#include <exception>
+#include <string>
+#include <vector>
+#include <H5Ipublic.h>
+
+Include dependency graph for H5Iterables_misc.hpp:
+
+
+ + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_iterables__misc_8hpp__dep__incl.map b/_h5_iterables__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..2e5cdf1d2 --- /dev/null +++ b/_h5_iterables__misc_8hpp__dep__incl.map @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_iterables__misc_8hpp__dep__incl.md5 b/_h5_iterables__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..d7461e092 --- /dev/null +++ b/_h5_iterables__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +91502155dfb0fb0265eac2013a777565 \ No newline at end of file diff --git a/_h5_iterables__misc_8hpp__dep__incl.png b/_h5_iterables__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..7ab1ab842 Binary files /dev/null and b/_h5_iterables__misc_8hpp__dep__incl.png differ diff --git a/_h5_iterables__misc_8hpp__incl.map b/_h5_iterables__misc_8hpp__incl.map new file mode 100644 index 000000000..ba5e4204c --- /dev/null +++ b/_h5_iterables__misc_8hpp__incl.map @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/_h5_iterables__misc_8hpp__incl.md5 b/_h5_iterables__misc_8hpp__incl.md5 new file mode 100644 index 000000000..fecc8c020 --- /dev/null +++ b/_h5_iterables__misc_8hpp__incl.md5 @@ -0,0 +1 @@ +c5b16bf6f91b747de2f8bfba4b5f8a3c \ No newline at end of file diff --git a/_h5_iterables__misc_8hpp__incl.png b/_h5_iterables__misc_8hpp__incl.png new file mode 100644 index 000000000..e486236b2 Binary files /dev/null and b/_h5_iterables__misc_8hpp__incl.png differ diff --git a/_h5_iterables__misc_8hpp_source.html b/_h5_iterables__misc_8hpp_source.html new file mode 100644 index 000000000..bc197b5ef --- /dev/null +++ b/_h5_iterables__misc_8hpp_source.html @@ -0,0 +1,169 @@ + + + + + + + +HighFive: highfive/bits/H5Iterables_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Iterables_misc.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 <exception>
+
12#include <string>
+
13#include <vector>
+
14
+
15#include <H5Ipublic.h>
+
16
+
17namespace HighFive {
+
18
+
19namespace details {
+
20
+
21// iterator for H5 iterate
+
22
+
23struct HighFiveIterateData {
+
24 inline HighFiveIterateData(std::vector<std::string>& my_names)
+
25 : names(my_names)
+
26 , err(NULL) {}
+
27
+
28 std::vector<std::string>& names;
+
29 std::exception* err;
+
30
+
31 inline void throwIfError() {
+
32 if (err) {
+
33 throw *err;
+
34 }
+
35 }
+
36};
+
37
+
38template <typename InfoType>
+
39inline herr_t internal_high_five_iterate(hid_t /*id*/,
+
40 const char* name,
+
41 const InfoType* /*info*/,
+
42 void* op_data) {
+
43 auto* data = static_cast<HighFiveIterateData*>(op_data);
+
44 try {
+
45 data->names.emplace_back(name);
+
46 return 0;
+
47 } catch (...) {
+
48 data->err = new ObjectException("Exception during H5Iterate, abort listing");
+
49 }
+
50 return -1;
+
51}
+
52
+
53} // namespace details
+
54} // namespace HighFive
+
Definition H5_definitions.hpp:22
+
+
+ + + + diff --git a/_h5_node__traits_8hpp.html b/_h5_node__traits_8hpp.html new file mode 100644 index 000000000..42a504004 --- /dev/null +++ b/_h5_node__traits_8hpp.html @@ -0,0 +1,353 @@ + + + + + + + +HighFive: highfive/bits/H5Node_traits.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Node_traits.hpp File Reference
+
+
+
#include <string>
+#include "../H5PropertyList.hpp"
+#include "H5_definitions.hpp"
+#include "H5Converter_misc.hpp"
+
+Include dependency graph for H5Node_traits.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + +

+Classes

class  HighFive::NodeTraits< Derivate >
 NodeTraits: Base class for Group and File. More...
 
+ + + +

+Namespaces

namespace  HighFive
 
+ + + + + + +

+Enumerations

enum class  HighFive::IndexType : std::underlying_type< H5_index_t >::type { HighFive::NAME = H5_INDEX_NAME +, HighFive::CRT_ORDER = H5_INDEX_CRT_ORDER + }
 
enum class  HighFive::LinkType { HighFive::Hard +, HighFive::Soft +, HighFive::External +, HighFive::Other + }
 The possible types of group entries (link concept) More...
 
+
+
+ + + + diff --git a/_h5_node__traits_8hpp.js b/_h5_node__traits_8hpp.js new file mode 100644 index 000000000..30cba0326 --- /dev/null +++ b/_h5_node__traits_8hpp.js @@ -0,0 +1,14 @@ +var _h5_node__traits_8hpp = +[ + [ "HighFive::NodeTraits< Derivate >", "class_high_five_1_1_node_traits.html", "class_high_five_1_1_node_traits" ], + [ "IndexType", "_h5_node__traits_8hpp.html#afed91f5950b7a58ec51a33d260773996", [ + [ "NAME", "_h5_node__traits_8hpp.html#afed91f5950b7a58ec51a33d260773996aad32e604e17467fc435538334fbddf3e", null ], + [ "CRT_ORDER", "_h5_node__traits_8hpp.html#afed91f5950b7a58ec51a33d260773996ac83c60110da7010a6dd3168fb2c8b8a7", null ] + ] ], + [ "LinkType", "_h5_node__traits_8hpp.html#abe5895b8113887accd6bff2392b24c40", [ + [ "Hard", "_h5_node__traits_8hpp.html#abe5895b8113887accd6bff2392b24c40a3656183169810334a96b91129dc9d881", null ], + [ "Soft", "_h5_node__traits_8hpp.html#abe5895b8113887accd6bff2392b24c40a682160fc6ad12f783f70608a9b46b9b9", null ], + [ "External", "_h5_node__traits_8hpp.html#abe5895b8113887accd6bff2392b24c40ab206a1b4ea1097761f78e8876f6da779", null ], + [ "Other", "_h5_node__traits_8hpp.html#abe5895b8113887accd6bff2392b24c40a6311ae17c1ee52b36e68aaf4ad066387", null ] + ] ] +]; \ No newline at end of file diff --git a/_h5_node__traits_8hpp__dep__incl.map b/_h5_node__traits_8hpp__dep__incl.map new file mode 100644 index 000000000..c9d140f0f --- /dev/null +++ b/_h5_node__traits_8hpp__dep__incl.map @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_node__traits_8hpp__dep__incl.md5 b/_h5_node__traits_8hpp__dep__incl.md5 new file mode 100644 index 000000000..d5dc349ff --- /dev/null +++ b/_h5_node__traits_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +4fb7a3c2795ba9c017f6c435e50bc410 \ No newline at end of file diff --git a/_h5_node__traits_8hpp__dep__incl.png b/_h5_node__traits_8hpp__dep__incl.png new file mode 100644 index 000000000..95079cdf8 Binary files /dev/null and b/_h5_node__traits_8hpp__dep__incl.png differ diff --git a/_h5_node__traits_8hpp__incl.map b/_h5_node__traits_8hpp__incl.map new file mode 100644 index 000000000..4c285a055 --- /dev/null +++ b/_h5_node__traits_8hpp__incl.map @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_node__traits_8hpp__incl.md5 b/_h5_node__traits_8hpp__incl.md5 new file mode 100644 index 000000000..de675cafe --- /dev/null +++ b/_h5_node__traits_8hpp__incl.md5 @@ -0,0 +1 @@ +d0efa0b5a48ac674c62e4eb60bd03750 \ No newline at end of file diff --git a/_h5_node__traits_8hpp__incl.png b/_h5_node__traits_8hpp__incl.png new file mode 100644 index 000000000..7a08ed0fa Binary files /dev/null and b/_h5_node__traits_8hpp__incl.png differ diff --git a/_h5_node__traits_8hpp_source.html b/_h5_node__traits_8hpp_source.html new file mode 100644 index 000000000..c86bacc8a --- /dev/null +++ b/_h5_node__traits_8hpp_source.html @@ -0,0 +1,301 @@ + + + + + + + +HighFive: highfive/bits/H5Node_traits.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Node_traits.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 <string>
+
12
+
13#include "../H5PropertyList.hpp"
+
14#include "H5_definitions.hpp"
+
15#include "H5Converter_misc.hpp"
+
16
+
17namespace HighFive {
+
18
+
+
19enum class IndexType : std::underlying_type<H5_index_t>::type {
+
20 NAME = H5_INDEX_NAME,
+
21 CRT_ORDER = H5_INDEX_CRT_ORDER,
+
22};
+
+
23
+
27template <typename Derivate>
+
+ +
29 public:
+
40 DataSet createDataSet(const std::string& dataset_name,
+
41 const DataSpace& space,
+
42 const DataType& type,
+ + +
45 bool parents = true);
+
46
+
56 template <typename T>
+
57 DataSet createDataSet(const std::string& dataset_name,
+
58 const DataSpace& space,
+ + +
61 bool parents = true);
+
62
+
73 template <typename T>
+
74 DataSet createDataSet(const std::string& dataset_name,
+
75 const T& data,
+ + +
78 bool parents = true);
+
79
+
80
+
81 template <std::size_t N>
+
82 H5_DEPRECATED("Use 'std::vector<std::string>'.")
+
83 DataSet createDataSet(const std::string& dataset_name,
+ + + +
87 bool parents = true);
+
88
+
94 DataSet getDataSet(const std::string& dataset_name,
+
95 const DataSetAccessProps& accessProps = DataSetAccessProps::Default()) const;
+
96
+
102 Group createGroup(const std::string& group_name, bool parents = true);
+
103
+
110 Group createGroup(const std::string& group_name,
+
111 const GroupCreateProps& createProps,
+
112 bool parents = true);
+
113
+
118 Group getGroup(const std::string& group_name) const;
+
119
+ +
125 const std::string& type_name,
+
126 const DataTypeAccessProps& accessProps = DataTypeAccessProps::Default()) const;
+
127
+
131 size_t getNumberObjects() const;
+
132
+
136 std::string getObjectName(size_t index) const;
+
137
+
144 bool rename(const std::string& src_path,
+
145 const std::string& dest_path,
+
146 bool parents = true) const;
+
147
+
154 std::vector<std::string> listObjectNames(IndexType idx_type = IndexType::NAME) const;
+
155
+
160 bool exist(const std::string& node_name) const;
+
161
+
165 void unlink(const std::string& node_name) const;
+
166
+
170 LinkType getLinkType(const std::string& node_name) const;
+
171
+
175 ObjectType getObjectType(const std::string& node_name) const;
+
176
+
180 template <typename T, typename = decltype(&T::getPath)>
+
+
181 void createSoftLink(const std::string& linkName, const T& obj) {
+
182 static_assert(!std::is_same<T, Attribute>::value,
+
183 "hdf5 doesn't support soft links to Attributes");
+
184 createSoftLink(linkName, obj.getPath());
+
185 }
+
+
186
+
194 void createSoftLink(const std::string& link_name,
+
195 const std::string& obj_path,
+
196 LinkCreateProps linkCreateProps = LinkCreateProps(),
+
197 const LinkAccessProps& linkAccessProps = LinkAccessProps(),
+
198 const bool parents = true);
+
199
+
200 void createExternalLink(const std::string& link_name,
+
201 const std::string& h5_file,
+
202 const std::string& obj_path,
+
203 LinkCreateProps linkCreateProps = LinkCreateProps(),
+
204 const LinkAccessProps& linkAccessProps = LinkAccessProps(),
+
205 const bool parents = true);
+
206
+
214 template <typename T, typename = decltype(&T::getPath)>
+
215 void createHardLink(const std::string& link_name,
+
216 const T& target_obj,
+
217 LinkCreateProps linkCreateProps = LinkCreateProps(),
+
218 const LinkAccessProps& linkAccessProps = LinkAccessProps(),
+
219 const bool parents = true);
+
220
+
221 private:
+
222 using derivate_type = Derivate;
+
223
+
224 // A wrapper over the low-level H5Lexist
+
225 // It makes behavior consistent among versions and by default transforms
+
226 // errors to exceptions
+
227 bool _exist(const std::string& node_name, bool raise_errors = true) const;
+
228
+
229 // Opens an arbitrary object to obtain info
+
230 Object _open(const std::string& node_name) const;
+
231};
+
+
232
+
233
+
+
237enum class LinkType {
+
238 Hard,
+
239 Soft,
+
240 External,
+
241 Other // Reserved or User-defined
+
242};
+
+
243
+
244
+
245} // namespace HighFive
+ +
#define H5_DEPRECATED(msg)
Definition H5_definitions.hpp:9
+ + +
Class representing a dataset.
Definition H5DataSet.hpp:30
+
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
+
HDF5 Data Type.
Definition H5DataType.hpp:61
+
Represents an hdf5 group.
Definition H5Group.hpp:46
+
NodeTraits: Base class for Group and File.
Definition H5Node_traits.hpp:28
+
Group getGroup(const std::string &group_name) const
open an existing group with the name group_name
Definition H5Node_traits_misc.hpp:129
+
std::vector< std::string > listObjectNames(IndexType idx_type=IndexType::NAME) const
list all leaf objects name of the node / group
Definition H5Node_traits_misc.hpp:181
+
void unlink(const std::string &node_name) const
unlink the given dataset or group
Definition H5Node_traits_misc.hpp:231
+
void createExternalLink(const std::string &link_name, const std::string &h5_file, const std::string &obj_path, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)
Definition H5Node_traits_misc.hpp:292
+
DataType getDataType(const std::string &type_name, const DataTypeAccessProps &accessProps=DataTypeAccessProps::Default()) const
open a commited datatype with the name type_name
Definition H5Node_traits_misc.hpp:136
+
DataSet getDataSet(const std::string &dataset_name, const DataSetAccessProps &accessProps=DataSetAccessProps::Default()) const
get an existing dataset in the current file
Definition H5Node_traits_misc.hpp:97
+
void createSoftLink(const std::string &linkName, const T &obj)
A shorthand to create softlink to any object which provides getPath The link will be created with def...
Definition H5Node_traits.hpp:181
+
void createHardLink(const std::string &link_name, const T &target_obj, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)
Creates hardlinks.
Definition H5Node_traits_misc.hpp:311
+
Group createGroup(const std::string &group_name, bool parents=true)
create a new group, and eventually intermediate groups
Definition H5Node_traits_misc.hpp:105
+
DataSet createDataSet(const std::string &dataset_name, const DataSpace &space, const DataType &type, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)
createDataSet Create a new dataset in the current file of datatype type and of size space
Definition H5Node_traits_misc.hpp:37
+
bool rename(const std::string &src_path, const std::string &dest_path, bool parents=true) const
moves an object and its content within an HDF5 file.
Definition H5Node_traits_misc.hpp:165
+
bool exist(const std::string &node_name) const
check a dataset or group exists in the current node / group
Definition H5Node_traits_misc.hpp:218
+
ObjectType getObjectType(const std::string &node_name) const
A shorthand to get the kind of object pointed to (group, dataset, type...)
Definition H5Node_traits_misc.hpp:269
+
size_t getNumberObjects() const
return the number of leaf objects of the node / group
Definition H5Node_traits_misc.hpp:144
+
std::string getObjectName(size_t index) const
return the name of the object with the given index
Definition H5Node_traits_misc.hpp:151
+
LinkType getLinkType(const std::string &node_name) const
Returns the kind of link of the given name (soft, hard...)
Definition H5Node_traits_misc.hpp:254
+
Definition H5Object.hpp:54
+
HDF5 property Lists.
Definition H5PropertyList.hpp:160
+
static const PropertyList< T > & Default() noexcept
Return the Default property type object.
Definition H5PropertyList.hpp:178
+
A structure representing a set of fixed-length strings.
Definition H5DataType.hpp:356
+
PropertyList< PropertyType::LINK_CREATE > LinkCreateProps
Definition H5PropertyList.hpp:211
+
PropertyList< PropertyType::LINK_ACCESS > LinkAccessProps
Definition H5PropertyList.hpp:212
+
Definition H5_definitions.hpp:22
+
LinkType
The possible types of group entries (link concept)
Definition H5Node_traits.hpp:237
+ + + + +
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24
+
IndexType
Definition H5Node_traits.hpp:19
+ + +
+
+ + + + diff --git a/_h5_node__traits__misc_8hpp.html b/_h5_node__traits__misc_8hpp.html new file mode 100644 index 000000000..7f84cab61 --- /dev/null +++ b/_h5_node__traits__misc_8hpp.html @@ -0,0 +1,355 @@ + + + + + + + +HighFive: highfive/bits/H5Node_traits_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Node_traits_misc.hpp File Reference
+
+
+
#include <string>
+#include <vector>
+#include <H5Apublic.h>
+#include <H5Fpublic.h>
+#include <H5Ppublic.h>
+#include <H5Tpublic.h>
+#include "../H5DataSet.hpp"
+#include "../H5Group.hpp"
+#include "../H5Selection.hpp"
+#include "../H5Utility.hpp"
+#include "H5DataSet_misc.hpp"
+#include "H5Iterables_misc.hpp"
+#include "H5Selection_misc.hpp"
+#include "H5Slice_traits_misc.hpp"
+#include "h5l_wrapper.hpp"
+#include "h5g_wrapper.hpp"
+#include "h5o_wrapper.hpp"
+
+Include dependency graph for H5Node_traits_misc.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_node__traits__misc_8hpp__dep__incl.map b/_h5_node__traits__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..421a76cd0 --- /dev/null +++ b/_h5_node__traits__misc_8hpp__dep__incl.map @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_node__traits__misc_8hpp__dep__incl.md5 b/_h5_node__traits__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..f36f37b9f --- /dev/null +++ b/_h5_node__traits__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +f7e6eab7036b5bbb978e244f1d587ff3 \ No newline at end of file diff --git a/_h5_node__traits__misc_8hpp__dep__incl.png b/_h5_node__traits__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..3877e6190 Binary files /dev/null and b/_h5_node__traits__misc_8hpp__dep__incl.png differ diff --git a/_h5_node__traits__misc_8hpp__incl.map b/_h5_node__traits__misc_8hpp__incl.map new file mode 100644 index 000000000..68d6f7036 --- /dev/null +++ b/_h5_node__traits__misc_8hpp__incl.map @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_node__traits__misc_8hpp__incl.md5 b/_h5_node__traits__misc_8hpp__incl.md5 new file mode 100644 index 000000000..c3db68ff2 --- /dev/null +++ b/_h5_node__traits__misc_8hpp__incl.md5 @@ -0,0 +1 @@ +8ce7749a19ff3c2125b78e679cac4856 \ No newline at end of file diff --git a/_h5_node__traits__misc_8hpp__incl.png b/_h5_node__traits__misc_8hpp__incl.png new file mode 100644 index 000000000..953e2f918 Binary files /dev/null and b/_h5_node__traits__misc_8hpp__incl.png differ diff --git a/_h5_node__traits__misc_8hpp_source.html b/_h5_node__traits__misc_8hpp_source.html new file mode 100644 index 000000000..7e004840d --- /dev/null +++ b/_h5_node__traits__misc_8hpp_source.html @@ -0,0 +1,576 @@ + + + + + + + +HighFive: highfive/bits/H5Node_traits_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Node_traits_misc.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 <string>
+
12#include <vector>
+
13
+
14#include <H5Apublic.h>
+
15#include <H5Fpublic.h>
+
16#include <H5Ppublic.h>
+
17#include <H5Tpublic.h>
+
18
+
19#include "../H5DataSet.hpp"
+
20#include "../H5Group.hpp"
+
21#include "../H5Selection.hpp"
+
22#include "../H5Utility.hpp"
+
23#include "H5DataSet_misc.hpp"
+
24#include "H5Iterables_misc.hpp"
+
25#include "H5Selection_misc.hpp"
+ +
27
+
28#include "h5l_wrapper.hpp"
+
29#include "h5g_wrapper.hpp"
+
30#include "h5o_wrapper.hpp"
+
31
+
32
+
33namespace HighFive {
+
34
+
35
+
36template <typename Derivate>
+
+
37inline DataSet NodeTraits<Derivate>::createDataSet(const std::string& dataset_name,
+
38 const DataSpace& space,
+
39 const DataType& dtype,
+
+
40 const DataSetCreateProps& createProps,
+
41 const DataSetAccessProps& accessProps,
+
42 bool parents) {
+
43 LinkCreateProps lcpl;
+
44 lcpl.add(CreateIntermediateGroup(parents));
+
45 return DataSet(detail::h5d_create2(static_cast<Derivate*>(this)->getId(),
+
46 dataset_name.c_str(),
+
47 dtype.getId(),
+
48 space.getId(),
+
49 lcpl.getId(),
+
50 createProps.getId(),
+
51 accessProps.getId()));
+
52}
+
+
+
53
+
54template <typename Derivate>
+
55template <typename T>
+
+
56inline DataSet NodeTraits<Derivate>::createDataSet(const std::string& dataset_name,
+
+
57 const DataSpace& space,
+
58 const DataSetCreateProps& createProps,
+
59 const DataSetAccessProps& accessProps,
+
60 bool parents) {
+
61 return createDataSet(
+
62 dataset_name, space, create_and_check_datatype<T>(), createProps, accessProps, parents);
+
63}
+
+
+
64
+
65template <typename Derivate>
+
66template <typename T>
+
+
67inline DataSet NodeTraits<Derivate>::createDataSet(const std::string& dataset_name,
+
68 const T& data,
+
69 const DataSetCreateProps& createProps,
+
70 const DataSetAccessProps& accessProps,
+
71 bool parents) {
+
72 DataSet ds =
+
73 createDataSet(dataset_name,
+
+ +
75 create_and_check_datatype<typename details::inspector<T>::base_type>(),
+
76 createProps,
+
77 accessProps,
+
78 parents);
+
79 ds.write(data);
+
80 return ds;
+
81}
+
+
+
82
+
+
83template <typename Derivate>
+
84template <std::size_t N>
+
+
85inline DataSet NodeTraits<Derivate>::createDataSet(const std::string& dataset_name,
+ +
87 const DataSetCreateProps& createProps,
+
88 const DataSetAccessProps& accessProps,
+
89 bool parents) {
+
90 DataSet ds = createDataSet<char[N]>(
+
91 dataset_name, DataSpace(data.size()), createProps, accessProps, parents);
+
92 ds.write(data);
+
93 return ds;
+ +
+
+
95
+
96template <typename Derivate>
+
+
97inline DataSet NodeTraits<Derivate>::getDataSet(const std::string& dataset_name,
+
98 const DataSetAccessProps& accessProps) const {
+
99 return DataSet(detail::h5d_open2(static_cast<const Derivate*>(this)->getId(),
+
100 dataset_name.c_str(),
+
101 accessProps.getId()));
+ +
+
103
+
104template <typename Derivate>
+
+
105inline Group NodeTraits<Derivate>::createGroup(const std::string& group_name, bool parents) {
+
106 LinkCreateProps lcpl;
+
107 lcpl.add(CreateIntermediateGroup(parents));
+
108 return detail::make_group(detail::h5g_create2(static_cast<Derivate*>(this)->getId(),
+
109 group_name.c_str(),
+
+
110 lcpl.getId(),
+
111 H5P_DEFAULT,
+
112 H5P_DEFAULT));
+
113}
+
114
+
115template <typename Derivate>
+
+
116inline Group NodeTraits<Derivate>::createGroup(const std::string& group_name,
+
117 const GroupCreateProps& createProps,
+
+
118 bool parents) {
+
119 LinkCreateProps lcpl;
+
120 lcpl.add(CreateIntermediateGroup(parents));
+
121 return detail::make_group(detail::h5g_create2(static_cast<Derivate*>(this)->getId(),
+
122 group_name.c_str(),
+
123 lcpl.getId(),
+
+
124 createProps.getId(),
+
125 H5P_DEFAULT));
+
126}
+
127
+
128template <typename Derivate>
+
+
129inline Group NodeTraits<Derivate>::getGroup(const std::string& group_name) const {
+
130 return detail::make_group(detail::h5g_open2(static_cast<const Derivate*>(this)->getId(),
+
+
131 group_name.c_str(),
+
132 H5P_DEFAULT));
+
133}
+
134
+
135template <typename Derivate>
+
+
136inline DataType NodeTraits<Derivate>::getDataType(const std::string& type_name,
+
137 const DataTypeAccessProps& accessProps) const {
+
138 return DataType(detail::h5t_open2(static_cast<const Derivate*>(this)->getId(),
+
139 type_name.c_str(),
+
140 accessProps.getId()));
+
141}
+
+
142
+
143template <typename Derivate>
+
+ +
145 hsize_t res;
+
146 detail::h5g_get_num_objs(static_cast<const Derivate*>(this)->getId(), &res);
+
147 return static_cast<size_t>(res);
+
148}
+
+
+
149
+
150template <typename Derivate>
+
+
151inline std::string NodeTraits<Derivate>::getObjectName(size_t index) const {
+
152 return details::get_name([&](char* buffer, size_t length) {
+
153 return detail::h5l_get_name_by_idx(static_cast<const Derivate*>(this)->getId(),
+
+
154 ".",
+
155 H5_INDEX_NAME,
+
156 H5_ITER_INC,
+
157 index,
+
158 buffer,
+
159 length,
+
+
160 H5P_DEFAULT);
+
161 });
+
162}
+
163
+
164template <typename Derivate>
+
+
165inline bool NodeTraits<Derivate>::rename(const std::string& src_path,
+
166 const std::string& dst_path,
+
167 bool parents) const {
+
168 LinkCreateProps lcpl;
+
169 lcpl.add(CreateIntermediateGroup(parents));
+
+
170 herr_t err = detail::h5l_move(static_cast<const Derivate*>(this)->getId(),
+
171 src_path.c_str(),
+
172 static_cast<const Derivate*>(this)->getId(),
+
173 dst_path.c_str(),
+
174 lcpl.getId(),
+
+
175 H5P_DEFAULT);
+
176
+
177 return err >= 0;
+
178}
+
179
+
180template <typename Derivate>
+
+
181inline std::vector<std::string> NodeTraits<Derivate>::listObjectNames(IndexType idx_type) const {
+
182 std::vector<std::string> names;
+
183 details::HighFiveIterateData iterateData(names);
+
184
+
185 size_t num_objs = getNumberObjects();
+
186 names.reserve(num_objs);
+
187
+
188 detail::h5l_iterate(static_cast<const Derivate*>(this)->getId(),
+
189 static_cast<H5_index_t>(idx_type),
+
190 H5_ITER_INC,
+
191 NULL,
+
192 &details::internal_high_five_iterate<H5L_info_t>,
+
193 static_cast<void*>(&iterateData));
+
+
194 return names;
+
195}
+
196
+
197template <typename Derivate>
+
198inline bool NodeTraits<Derivate>::_exist(const std::string& node_name, bool raise_errors) const {
+
199 SilenceHDF5 silencer{};
+
+
200 const auto val = detail::nothrow::h5l_exists(static_cast<const Derivate*>(this)->getId(),
+
201 node_name.c_str(),
+
202 H5P_DEFAULT);
+
203 if (val < 0) {
+
204 if (raise_errors) {
+
205 HDF5ErrMapper::ToException<GroupException>("Invalid link for exist()");
+
206 } else {
+
207 return false;
+
208 }
+
209 }
+
210
+
211 // The root path always exists, but H5Lexists return 0 or 1
+
212 // depending of the version of HDF5, so always return true for it
+
213 // We had to call H5Lexists anyway to check that there are no errors
+
214 return (node_name == "/") ? true : (val > 0);
+
+ +
216
+
217template <typename Derivate>
+
+
218inline bool NodeTraits<Derivate>::exist(const std::string& group_path) const {
+
219 // When there are slashes, first check everything is fine
+
220 // so that subsequent errors are only due to missing intermediate groups
+
221 if (group_path.find('/') != std::string::npos) {
+
222 _exist("/"); // Shall not throw under normal circumstances
+
223 // Unless "/" (already checked), verify path exists (not throwing errors)
+
224 return (group_path == "/") ? true : _exist(group_path, false);
+
225 }
+
226 return _exist(group_path);
+
227}
+
+
228
+
229
+
230template <typename Derivate>
+
+
231inline void NodeTraits<Derivate>::unlink(const std::string& node_name) const {
+
232 detail::h5l_delete(static_cast<const Derivate*>(this)->getId(), node_name.c_str(), H5P_DEFAULT);
+
233}
+
+
234
+
235
+
236// convert internal link types to enum class.
+
237// This function is internal, so H5L_TYPE_ERROR shall be handled in the calling context
+
238static inline LinkType _convert_link_type(const H5L_type_t& ltype) noexcept {
+
239 switch (ltype) {
+
240 case H5L_TYPE_HARD:
+
241 return LinkType::Hard;
+
242 case H5L_TYPE_SOFT:
+
243 return LinkType::Soft;
+
244 case H5L_TYPE_EXTERNAL:
+
245 return LinkType::External;
+
246 default:
+
247 // Other link types are possible but are considered strange to HighFive.
+
248 // see https://support.hdfgroup.org/HDF5/doc/RM/H5L/H5Lregister.htm
+
249 return LinkType::Other;
+
250 }
+
251}
+
252
+
253template <typename Derivate>
+
+
254inline LinkType NodeTraits<Derivate>::getLinkType(const std::string& node_name) const {
+
255 H5L_info_t linkinfo;
+
256 detail::h5l_get_info(static_cast<const Derivate*>(this)->getId(),
+
257 node_name.c_str(),
+
258 &linkinfo,
+
259 H5P_DEFAULT);
+
260
+
261 if (linkinfo.type == H5L_TYPE_ERROR) {
+
262 HDF5ErrMapper::ToException<GroupException>(std::string("Link type of \"") + node_name +
+
263 "\" is H5L_TYPE_ERROR");
+
264 }
+
265 return _convert_link_type(linkinfo.type);
+
266}
+
+
267
+
268template <typename Derivate>
+
+
269inline ObjectType NodeTraits<Derivate>::getObjectType(const std::string& node_name) const {
+
270 return _open(node_name).getType();
+
271}
+
+
272
+
273
+
274template <typename Derivate>
+
+
275inline void NodeTraits<Derivate>::createSoftLink(const std::string& link_name,
+
276 const std::string& obj_path,
+
277 LinkCreateProps linkCreateProps,
+
278 const LinkAccessProps& linkAccessProps,
+
279 const bool parents) {
+
280 if (parents) {
+
281 linkCreateProps.add(CreateIntermediateGroup{});
+
282 }
+
283 detail::h5l_create_soft(obj_path.c_str(),
+
284 static_cast<const Derivate*>(this)->getId(),
+
285 link_name.c_str(),
+
286 linkCreateProps.getId(),
+
287 linkAccessProps.getId());
+
288}
+
+
289
+
290
+
291template <typename Derivate>
+
+
292inline void NodeTraits<Derivate>::createExternalLink(const std::string& link_name,
+
293 const std::string& h5_file,
+
294 const std::string& obj_path,
+
295 LinkCreateProps linkCreateProps,
+
296 const LinkAccessProps& linkAccessProps,
+
297 const bool parents) {
+
298 if (parents) {
+
299 linkCreateProps.add(CreateIntermediateGroup{});
+
300 }
+
301 detail::h5l_create_external(h5_file.c_str(),
+
302 obj_path.c_str(),
+
303 static_cast<const Derivate*>(this)->getId(),
+
304 link_name.c_str(),
+
305 linkCreateProps.getId(),
+
306 linkAccessProps.getId());
+
307}
+
+
308
+
309template <typename Derivate>
+
310template <typename T, typename>
+
+
311inline void NodeTraits<Derivate>::createHardLink(const std::string& link_name,
+
312 const T& target_obj,
+
313 LinkCreateProps linkCreateProps,
+
314 const LinkAccessProps& linkAccessProps,
+
315 const bool parents) {
+
316 static_assert(!std::is_same<T, Attribute>::value,
+
317 "hdf5 doesn't support hard links to Attributes");
+
318 if (parents) {
+
319 linkCreateProps.add(CreateIntermediateGroup{});
+
320 }
+
321 detail::h5l_create_hard(target_obj.getId(),
+
322 ".",
+
323 static_cast<const Derivate*>(this)->getId(),
+
324 link_name.c_str(),
+
325 linkCreateProps.getId(),
+
326 linkAccessProps.getId());
+
327}
+
+
+
328
+
329
+
330template <typename Derivate>
+
331inline Object NodeTraits<Derivate>::_open(const std::string& node_name) const {
+
332 const auto id = detail::h5o_open(static_cast<const Derivate*>(this)->getId(),
+
333 node_name.c_str(),
+
334 H5P_DEFAULT);
+
335 return detail::make_object(id);
+
336}
+
337
+
338
+
339} // namespace HighFive
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + + + + + + +
Definition H5PropertyList.hpp:605
+
Class representing a dataset.
Definition H5DataSet.hpp:30
+
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
+
static DataSpace From(const T &value)
Automatically deduce the DataSpace from a container/value.
Definition H5Dataspace_misc.hpp:128
+
HDF5 Data Type.
Definition H5DataType.hpp:61
+
Represents an hdf5 group.
Definition H5Group.hpp:46
+
NodeTraits: Base class for Group and File.
Definition H5Node_traits.hpp:28
+
Group getGroup(const std::string &group_name) const
open an existing group with the name group_name
Definition H5Node_traits_misc.hpp:129
+
std::vector< std::string > listObjectNames(IndexType idx_type=IndexType::NAME) const
list all leaf objects name of the node / group
Definition H5Node_traits_misc.hpp:181
+
void unlink(const std::string &node_name) const
unlink the given dataset or group
Definition H5Node_traits_misc.hpp:231
+
void createExternalLink(const std::string &link_name, const std::string &h5_file, const std::string &obj_path, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)
Definition H5Node_traits_misc.hpp:292
+
DataType getDataType(const std::string &type_name, const DataTypeAccessProps &accessProps=DataTypeAccessProps::Default()) const
open a commited datatype with the name type_name
Definition H5Node_traits_misc.hpp:136
+
DataSet getDataSet(const std::string &dataset_name, const DataSetAccessProps &accessProps=DataSetAccessProps::Default()) const
get an existing dataset in the current file
Definition H5Node_traits_misc.hpp:97
+
void createSoftLink(const std::string &linkName, const T &obj)
A shorthand to create softlink to any object which provides getPath The link will be created with def...
Definition H5Node_traits.hpp:181
+
void createHardLink(const std::string &link_name, const T &target_obj, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)
Creates hardlinks.
Definition H5Node_traits_misc.hpp:311
+
Group createGroup(const std::string &group_name, bool parents=true)
create a new group, and eventually intermediate groups
Definition H5Node_traits_misc.hpp:105
+
DataSet createDataSet(const std::string &dataset_name, const DataSpace &space, const DataType &type, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)
createDataSet Create a new dataset in the current file of datatype type and of size space
Definition H5Node_traits_misc.hpp:37
+
bool rename(const std::string &src_path, const std::string &dest_path, bool parents=true) const
moves an object and its content within an HDF5 file.
Definition H5Node_traits_misc.hpp:165
+
bool exist(const std::string &node_name) const
check a dataset or group exists in the current node / group
Definition H5Node_traits_misc.hpp:218
+
ObjectType getObjectType(const std::string &node_name) const
A shorthand to get the kind of object pointed to (group, dataset, type...)
Definition H5Node_traits_misc.hpp:269
+
size_t getNumberObjects() const
return the number of leaf objects of the node / group
Definition H5Node_traits_misc.hpp:144
+
std::string getObjectName(size_t index) const
return the name of the object with the given index
Definition H5Node_traits_misc.hpp:151
+
LinkType getLinkType(const std::string &node_name) const
Returns the kind of link of the given name (soft, hard...)
Definition H5Node_traits_misc.hpp:254
+
Definition H5Object.hpp:54
+
hid_t getId() const noexcept
getId
Definition H5Object_misc.hpp:69
+
HDF5 property Lists.
Definition H5PropertyList.hpp:160
+
void add(const P &property)
Definition H5PropertyList_misc.hpp:72
+
Utility class to disable HDF5 stack printing inside a scope.
Definition H5Utility.hpp:24
+
void write(const T &buffer, const DataTransferProps &xfer_props=DataTransferProps())
Definition H5Slice_traits_misc.hpp:256
+
A structure representing a set of fixed-length strings.
Definition H5DataType.hpp:356
+
std::size_t size() const noexcept
Definition H5DataType.hpp:400
+ + + +
Definition H5_definitions.hpp:22
+
DataType create_and_check_datatype()
Create a DataType instance representing type T and perform a sanity check on its size.
Definition H5DataType_misc.hpp:486
+
LinkType
The possible types of group entries (link concept)
Definition H5Node_traits.hpp:237
+ + + + +
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24
+ +
IndexType
Definition H5Node_traits.hpp:19
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/_h5_object_8hpp.html b/_h5_object_8hpp.html new file mode 100644 index 000000000..810de2c90 --- /dev/null +++ b/_h5_object_8hpp.html @@ -0,0 +1,326 @@ + + + + + + + +HighFive: highfive/H5Object.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Object.hpp File Reference
+
+
+
#include <ctime>
+#include <H5Ipublic.h>
+#include <H5Opublic.h>
+#include "bits/H5_definitions.hpp"
+#include "bits/H5Friends.hpp"
+#include "bits/H5Object_misc.hpp"
+
+Include dependency graph for H5Object.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + + + +

+Classes

class  HighFive::Object
 
class  HighFive::ObjectInfo
 A class for accessing hdf5 objects info. More...
 
+ + + +

+Namespaces

namespace  HighFive
 
+ + + + +

+Enumerations

enum class  HighFive::ObjectType {
+  HighFive::File +, HighFive::Group +, HighFive::UserDataType +, HighFive::DataSpace +,
+  HighFive::Dataset +, HighFive::Attribute +, HighFive::Other +
+ }
 Enum of the types of objects (H5O api) More...
 
+
+
+ + + + diff --git a/_h5_object_8hpp.js b/_h5_object_8hpp.js new file mode 100644 index 000000000..e60ca0fd3 --- /dev/null +++ b/_h5_object_8hpp.js @@ -0,0 +1,14 @@ +var _h5_object_8hpp = +[ + [ "HighFive::Object", "class_high_five_1_1_object.html", "class_high_five_1_1_object" ], + [ "HighFive::ObjectInfo", "class_high_five_1_1_object_info.html", "class_high_five_1_1_object_info" ], + [ "ObjectType", "_h5_object_8hpp.html#ad8790d0a626a7355392c05dc69a1d474", [ + [ "File", "_h5_object_8hpp.html#ad8790d0a626a7355392c05dc69a1d474a0b27918290ff5323bea1e3b78a9cf04e", null ], + [ "Group", "_h5_object_8hpp.html#ad8790d0a626a7355392c05dc69a1d474a03937134cedab9078be39a77ee3a48a0", null ], + [ "UserDataType", "_h5_object_8hpp.html#ad8790d0a626a7355392c05dc69a1d474a99f109983e5e6524be1f6fbcc819691c", null ], + [ "DataSpace", "_h5_object_8hpp.html#ad8790d0a626a7355392c05dc69a1d474a546863182b9bd136e5295389d0e8343e", null ], + [ "Dataset", "_h5_object_8hpp.html#ad8790d0a626a7355392c05dc69a1d474a239658e016e3d5d06ae719d280a79fec", null ], + [ "Attribute", "_h5_object_8hpp.html#ad8790d0a626a7355392c05dc69a1d474af2bbdf9f72c085adc4d0404e370f0f4c", null ], + [ "Other", "_h5_object_8hpp.html#ad8790d0a626a7355392c05dc69a1d474a6311ae17c1ee52b36e68aaf4ad066387", null ] + ] ] +]; \ No newline at end of file diff --git a/_h5_object_8hpp__dep__incl.map b/_h5_object_8hpp__dep__incl.map new file mode 100644 index 000000000..64e649543 --- /dev/null +++ b/_h5_object_8hpp__dep__incl.map @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_object_8hpp__dep__incl.md5 b/_h5_object_8hpp__dep__incl.md5 new file mode 100644 index 000000000..1668d152b --- /dev/null +++ b/_h5_object_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +aa6238fbfb23494beb30a38a06b9f2e3 \ No newline at end of file diff --git a/_h5_object_8hpp__dep__incl.png b/_h5_object_8hpp__dep__incl.png new file mode 100644 index 000000000..8c57efbf0 Binary files /dev/null and b/_h5_object_8hpp__dep__incl.png differ diff --git a/_h5_object_8hpp__incl.map b/_h5_object_8hpp__incl.map new file mode 100644 index 000000000..5f0efc0ca --- /dev/null +++ b/_h5_object_8hpp__incl.map @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_object_8hpp__incl.md5 b/_h5_object_8hpp__incl.md5 new file mode 100644 index 000000000..aca5cd454 --- /dev/null +++ b/_h5_object_8hpp__incl.md5 @@ -0,0 +1 @@ +6b4d8d058d6fc3662f0efe32e2c985ab \ No newline at end of file diff --git a/_h5_object_8hpp__incl.png b/_h5_object_8hpp__incl.png new file mode 100644 index 000000000..42ce02550 Binary files /dev/null and b/_h5_object_8hpp__incl.png differ diff --git a/_h5_object_8hpp_source.html b/_h5_object_8hpp_source.html new file mode 100644 index 000000000..8a121121c --- /dev/null +++ b/_h5_object_8hpp_source.html @@ -0,0 +1,268 @@ + + + + + + + +HighFive: highfive/H5Object.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Object.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 <ctime>
+
12
+
13#include <H5Ipublic.h>
+
14#include <H5Opublic.h>
+
15
+ +
17#include "bits/H5Friends.hpp"
+
18
+
19namespace HighFive {
+
20
+
+
24enum class ObjectType {
+
25 File,
+
26 Group,
+ + +
29 Dataset,
+ +
31 Other // Internal/custom object type
+
32};
+
+
33
+
34namespace detail {
+
50Object make_object(hid_t hid);
+
51} // namespace detail
+
52
+
53
+
+
54class Object {
+
55 public:
+
56 // move constructor, reuse hid
+
57 Object(Object&& other) noexcept;
+
58
+
59 // decrease reference counter
+
60 ~Object();
+
61
+
66 bool isValid() const noexcept;
+
67
+
73 hid_t getId() const noexcept;
+
74
+
78 ObjectInfo getInfo() const;
+
79
+
85 ObjectType getType() const;
+
86
+
87 // Check if refer to same object
+
+
88 bool operator==(const Object& other) const noexcept {
+
89 return _hid == other._hid;
+
90 }
+
+
91
+
92 protected:
+
93 // empty constructor
+
94 Object();
+
95
+
96 // copy constructor, increase reference counter
+
97 Object(const Object& other);
+
98
+
99 // Init with an low-level object id
+
100 explicit Object(hid_t);
+
101
+
102 // Copy-Assignment operator
+
103 Object& operator=(const Object& other);
+
104
+
105 hid_t _hid;
+
106
+
107 private:
+
108 friend Object detail::make_object(hid_t);
+
109 friend class Reference;
+
110 friend class CompoundType;
+
111
+
112#if HIGHFIVE_HAS_FRIEND_DECLARATIONS
+
113 template <typename Derivate>
+
114 friend class NodeTraits;
+
115 template <typename Derivate>
+
116 friend class AnnotateTraits;
+
117 template <typename Derivate>
+
118 friend class PathTraits;
+
119#endif
+
120};
+
+
121
+
122
+
+ +
127 public:
+
130 H5_DEPRECATED("Deprecated since HighFive 2.2. Soon supporting VOL tokens")
+
131 haddr_t getAddress() const noexcept;
+
132
+
134 size_t getRefCount() const noexcept;
+
135
+
137 time_t getCreationTime() const noexcept;
+
138
+
140 time_t getModificationTime() const noexcept;
+
141
+
142 protected:
+
143#if (H5Oget_info_vers < 3)
+
144 H5O_info_t raw_info;
+
145#else
+
146 // Use compat H5O_info1_t while getAddress() is supported (deprecated)
+
147 H5O_info1_t raw_info;
+
148#endif
+
149
+
150 friend class Object;
+
151};
+
+
152
+
153} // namespace HighFive
+
154
+
155#include "bits/H5Object_misc.hpp"
+ +
#define H5_DEPRECATED(msg)
Definition H5_definitions.hpp:9
+ + +
Definition H5Annotate_traits.hpp:18
+
Create a compound HDF5 datatype.
Definition H5DataType.hpp:198
+
NodeTraits: Base class for Group and File.
Definition H5Node_traits.hpp:28
+
Definition H5Object.hpp:54
+
hid_t getId() const noexcept
getId
Definition H5Object_misc.hpp:69
+
ObjectInfo getInfo() const
Retrieve several infos about the current object (address, dates, etc)
Definition H5Object_misc.hpp:97
+
~Object()
Definition H5Object_misc.hpp:57
+
ObjectType getType() const
Gets the fundamental type of the object (dataset, group, etc)
Definition H5Object_misc.hpp:92
+
Object()
Definition H5Object_misc.hpp:25
+
bool isValid() const noexcept
isValid
Definition H5Object_misc.hpp:65
+
hid_t _hid
Definition H5Object.hpp:105
+
Object & operator=(const Object &other)
Definition H5Object_misc.hpp:43
+
bool operator==(const Object &other) const noexcept
Definition H5Object.hpp:88
+
A class for accessing hdf5 objects info.
Definition H5Object.hpp:126
+
time_t getCreationTime() const noexcept
Retrieve the object's creation time.
Definition H5Object_misc.hpp:115
+
haddr_t getAddress() const noexcept
Retrieve the address of the object (within its file)
Definition H5Object_misc.hpp:109
+
size_t getRefCount() const noexcept
Retrieve the number of references to this object.
Definition H5Object_misc.hpp:112
+
H5O_info_t raw_info
Definition H5Object.hpp:144
+
time_t getModificationTime() const noexcept
Retrieve the object's last modification time.
Definition H5Object_misc.hpp:118
+
Definition H5Path_traits.hpp:16
+
An HDF5 (object) reference type.
Definition H5Reference.hpp:33
+
Definition H5_definitions.hpp:22
+ +
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24
+ + + + + + +
+
+ + + + diff --git a/_h5_object__misc_8hpp.html b/_h5_object__misc_8hpp.html new file mode 100644 index 000000000..ee5f14be1 --- /dev/null +++ b/_h5_object__misc_8hpp.html @@ -0,0 +1,290 @@ + + + + + + + +HighFive: highfive/bits/H5Object_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Object_misc.hpp File Reference
+
+
+
#include <iostream>
+#include "../H5Exception.hpp"
+#include "../H5Utility.hpp"
+#include "h5i_wrapper.hpp"
+
+Include dependency graph for H5Object_misc.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_object__misc_8hpp__dep__incl.map b/_h5_object__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..0fc768bda --- /dev/null +++ b/_h5_object__misc_8hpp__dep__incl.map @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_object__misc_8hpp__dep__incl.md5 b/_h5_object__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..ab93b601a --- /dev/null +++ b/_h5_object__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +3c4fc2fcd8ce76e7be3d5b825c3c2744 \ No newline at end of file diff --git a/_h5_object__misc_8hpp__dep__incl.png b/_h5_object__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..af75cde77 Binary files /dev/null and b/_h5_object__misc_8hpp__dep__incl.png differ diff --git a/_h5_object__misc_8hpp__incl.map b/_h5_object__misc_8hpp__incl.map new file mode 100644 index 000000000..736fc7c46 --- /dev/null +++ b/_h5_object__misc_8hpp__incl.map @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_object__misc_8hpp__incl.md5 b/_h5_object__misc_8hpp__incl.md5 new file mode 100644 index 000000000..04d87868c --- /dev/null +++ b/_h5_object__misc_8hpp__incl.md5 @@ -0,0 +1 @@ +c85371f92df4269f632a590f988d1b43 \ No newline at end of file diff --git a/_h5_object__misc_8hpp__incl.png b/_h5_object__misc_8hpp__incl.png new file mode 100644 index 000000000..f21325459 Binary files /dev/null and b/_h5_object__misc_8hpp__incl.png differ diff --git a/_h5_object__misc_8hpp_source.html b/_h5_object__misc_8hpp_source.html new file mode 100644 index 000000000..ff1637bb4 --- /dev/null +++ b/_h5_object__misc_8hpp_source.html @@ -0,0 +1,298 @@ + + + + + + + +HighFive: highfive/bits/H5Object_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Object_misc.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 <iostream>
+
12
+
13#include "../H5Exception.hpp"
+
14#include "../H5Utility.hpp"
+
15#include "h5i_wrapper.hpp"
+
16
+
17namespace HighFive {
+
18namespace detail {
+
19inline Object make_object(hid_t hid) {
+
20 return Object(hid);
+
21}
+
22} // namespace detail
+
23
+
24
+
+ +
26 : _hid(H5I_INVALID_HID) {}
+
+
27
+
+
28inline Object::Object(hid_t hid)
+
29 : _hid(hid) {}
+
+
30
+
+
31inline Object::Object(const Object& other)
+
32 : _hid(other._hid) {
+
33 if (other.isValid()) {
+
34 detail::h5i_inc_ref(_hid);
+
35 }
+
36}
+
+
37
+
+
38inline Object::Object(Object&& other) noexcept
+
39 : _hid(other._hid) {
+
40 other._hid = H5I_INVALID_HID;
+
41}
+
+
42
+
+
43inline Object& Object::operator=(const Object& other) {
+
44 if (this != &other) {
+
45 if ((*this).isValid()) {
+
46 detail::h5i_dec_ref(_hid);
+
47 }
+
48
+
49 _hid = other._hid;
+
50 if (other.isValid()) {
+
51 detail::h5i_inc_ref(_hid);
+
52 }
+
53 }
+
54 return *this;
+
55}
+
+
56
+
+ +
58 if (isValid()) {
+
59 if (detail::nothrow::h5i_dec_ref(_hid) < 0) {
+
60 HIGHFIVE_LOG_ERROR("Failed to decrease reference count of HID");
+
61 }
+
62 }
+
63}
+
64
+
+
65inline bool Object::isValid() const noexcept {
+
66 return (_hid > 0) && (detail::nothrow::h5i_is_valid(_hid) > 0);
+
67}
+
+
68
+
+
69inline hid_t Object::getId() const noexcept {
+
70 return _hid;
+
71}
+
+
72
+
73static inline ObjectType _convert_object_type(const H5I_type_t& h5type) {
+
74 switch (h5type) {
+
75 case H5I_FILE:
+
76 return ObjectType::File;
+
77 case H5I_GROUP:
+
78 return ObjectType::Group;
+
79 case H5I_DATATYPE:
+ +
81 case H5I_DATASPACE:
+ +
83 case H5I_DATASET:
+ +
85 case H5I_ATTR:
+ +
87 default:
+
88 return ObjectType::Other;
+
89 }
+
90}
+
91
+
+ +
93 // H5Iget_type is a very lightweight func which extracts the type from the id
+
+
94 return _convert_object_type(detail::h5i_get_type(_hid));
+
95}
+
96
+
+ +
98 ObjectInfo info;
+
99#if (H5Oget_info_vers < 3)
+
+
100 if (H5Oget_info(_hid, &info.raw_info) < 0) {
+
101#else
+
102 if (H5Oget_info1(_hid, &info.raw_info) < 0) {
+
103#endif
+
104 HDF5ErrMapper::ToException<ObjectException>("Unable to obtain info for object");
+
105 }
+
106 return info;
+
107}
+
108
+
+
109inline haddr_t ObjectInfo::getAddress() const noexcept {
+
110 return raw_info.addr;
+
111}
+
+
+
112inline size_t ObjectInfo::getRefCount() const noexcept {
+
113 return raw_info.rc;
+
114}
+
+
+
115inline time_t ObjectInfo::getCreationTime() const noexcept {
+
116 return raw_info.btime;
+
117}
+
+
+
118inline time_t ObjectInfo::getModificationTime() const noexcept {
+
119 return raw_info.mtime;
+
120}
+
+
121
+
122
+
123} // namespace HighFive
+
+
+
+
+
+ + +
#define HIGHFIVE_LOG_ERROR(message)
Definition H5Utility.hpp:204
+
Definition H5Object.hpp:54
+
hid_t getId() const noexcept
getId
Definition H5Object_misc.hpp:69
+
ObjectInfo getInfo() const
Retrieve several infos about the current object (address, dates, etc)
Definition H5Object_misc.hpp:97
+
~Object()
Definition H5Object_misc.hpp:57
+
ObjectType getType() const
Gets the fundamental type of the object (dataset, group, etc)
Definition H5Object_misc.hpp:92
+
Object()
Definition H5Object_misc.hpp:25
+
bool isValid() const noexcept
isValid
Definition H5Object_misc.hpp:65
+
hid_t _hid
Definition H5Object.hpp:105
+
Object & operator=(const Object &other)
Definition H5Object_misc.hpp:43
+
A class for accessing hdf5 objects info.
Definition H5Object.hpp:126
+
time_t getCreationTime() const noexcept
Retrieve the object's creation time.
Definition H5Object_misc.hpp:115
+
haddr_t getAddress() const noexcept
Retrieve the address of the object (within its file)
Definition H5Object_misc.hpp:109
+
size_t getRefCount() const noexcept
Retrieve the number of references to this object.
Definition H5Object_misc.hpp:112
+
H5O_info_t raw_info
Definition H5Object.hpp:144
+
time_t getModificationTime() const noexcept
Retrieve the object's last modification time.
Definition H5Object_misc.hpp:118
+ +
Definition H5_definitions.hpp:22
+
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24
+ + + + + + + +
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/_h5_path__traits_8hpp.html b/_h5_path__traits_8hpp.html new file mode 100644 index 000000000..6f7ea600f --- /dev/null +++ b/_h5_path__traits_8hpp.html @@ -0,0 +1,204 @@ + + + + + + + +HighFive: highfive/bits/H5Path_traits.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Path_traits.hpp File Reference
+
+
+
#include "H5_definitions.hpp"
+
+Include dependency graph for H5Path_traits.hpp:
+
+
+ + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Classes

class  HighFive::PathTraits< Derivate >
 
+ + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_path__traits_8hpp.js b/_h5_path__traits_8hpp.js new file mode 100644 index 000000000..babf9bd1a --- /dev/null +++ b/_h5_path__traits_8hpp.js @@ -0,0 +1,4 @@ +var _h5_path__traits_8hpp = +[ + [ "HighFive::PathTraits< Derivate >", "class_high_five_1_1_path_traits.html", "class_high_five_1_1_path_traits" ] +]; \ No newline at end of file diff --git a/_h5_path__traits_8hpp__dep__incl.map b/_h5_path__traits_8hpp__dep__incl.map new file mode 100644 index 000000000..ad9e2a024 --- /dev/null +++ b/_h5_path__traits_8hpp__dep__incl.map @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_path__traits_8hpp__dep__incl.md5 b/_h5_path__traits_8hpp__dep__incl.md5 new file mode 100644 index 000000000..3bb152279 --- /dev/null +++ b/_h5_path__traits_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +34a26db77056069caea26260699a5a8d \ No newline at end of file diff --git a/_h5_path__traits_8hpp__dep__incl.png b/_h5_path__traits_8hpp__dep__incl.png new file mode 100644 index 000000000..f005a514f Binary files /dev/null and b/_h5_path__traits_8hpp__dep__incl.png differ diff --git a/_h5_path__traits_8hpp__incl.map b/_h5_path__traits_8hpp__incl.map new file mode 100644 index 000000000..8140cab52 --- /dev/null +++ b/_h5_path__traits_8hpp__incl.map @@ -0,0 +1,5 @@ + + + + + diff --git a/_h5_path__traits_8hpp__incl.md5 b/_h5_path__traits_8hpp__incl.md5 new file mode 100644 index 000000000..0f848adba --- /dev/null +++ b/_h5_path__traits_8hpp__incl.md5 @@ -0,0 +1 @@ +9e9453b164183457561945aabf1775f8 \ No newline at end of file diff --git a/_h5_path__traits_8hpp__incl.png b/_h5_path__traits_8hpp__incl.png new file mode 100644 index 000000000..2a24d15c1 Binary files /dev/null and b/_h5_path__traits_8hpp__incl.png differ diff --git a/_h5_path__traits_8hpp_source.html b/_h5_path__traits_8hpp_source.html new file mode 100644 index 000000000..04a7b6db3 --- /dev/null +++ b/_h5_path__traits_8hpp_source.html @@ -0,0 +1,153 @@ + + + + + + + +HighFive: highfive/bits/H5Path_traits.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Path_traits.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2020, EPFL - Blue Brain Project
+
3 *
+
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 "H5_definitions.hpp"
+
12
+
13namespace HighFive {
+
14
+
15template <typename Derivate>
+
+ +
17 public:
+
18 PathTraits();
+
19
+
23 std::string getPath() const;
+
24
+
28 File& getFile() const noexcept;
+
29
+
30
+
31 protected:
+
32 std::shared_ptr<File> _file_obj; // keep a ref to file so we keep its ref count > 0
+
33};
+
+
34
+
35} // namespace HighFive
+ +
File class.
Definition H5File.hpp:24
+
Definition H5Path_traits.hpp:16
+
PathTraits()
Definition H5Path_traits_misc.hpp:19
+
std::shared_ptr< File > _file_obj
Definition H5Path_traits.hpp:32
+
File & getFile() const noexcept
Return a reference to the File object this object belongs.
Definition H5Path_traits_misc.hpp:38
+
std::string getPath() const
return the path to the current object
Definition H5Path_traits_misc.hpp:31
+
Definition H5_definitions.hpp:22
+
+
+ + + + diff --git a/_h5_path__traits__misc_8hpp.html b/_h5_path__traits__misc_8hpp.html new file mode 100644 index 000000000..ddfe4d584 --- /dev/null +++ b/_h5_path__traits__misc_8hpp.html @@ -0,0 +1,222 @@ + + + + + + + +HighFive: highfive/bits/H5Path_traits_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Path_traits_misc.hpp File Reference
+
+
+
#include <H5Ipublic.h>
+#include "H5Utils.hpp"
+#include "H5Path_traits.hpp"
+
+Include dependency graph for H5Path_traits_misc.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_path__traits__misc_8hpp__dep__incl.map b/_h5_path__traits__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..4d75dcbed --- /dev/null +++ b/_h5_path__traits__misc_8hpp__dep__incl.map @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_path__traits__misc_8hpp__dep__incl.md5 b/_h5_path__traits__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..67f85c4c6 --- /dev/null +++ b/_h5_path__traits__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +44bddb1852f7c0073391369e09c287f2 \ No newline at end of file diff --git a/_h5_path__traits__misc_8hpp__dep__incl.png b/_h5_path__traits__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..933b42a85 Binary files /dev/null and b/_h5_path__traits__misc_8hpp__dep__incl.png differ diff --git a/_h5_path__traits__misc_8hpp__incl.map b/_h5_path__traits__misc_8hpp__incl.map new file mode 100644 index 000000000..b20e279fa --- /dev/null +++ b/_h5_path__traits__misc_8hpp__incl.map @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_path__traits__misc_8hpp__incl.md5 b/_h5_path__traits__misc_8hpp__incl.md5 new file mode 100644 index 000000000..874205875 --- /dev/null +++ b/_h5_path__traits__misc_8hpp__incl.md5 @@ -0,0 +1 @@ +89de59b42a8b3f7412b7657143fd9076 \ No newline at end of file diff --git a/_h5_path__traits__misc_8hpp__incl.png b/_h5_path__traits__misc_8hpp__incl.png new file mode 100644 index 000000000..717561fa8 Binary files /dev/null and b/_h5_path__traits__misc_8hpp__incl.png differ diff --git a/_h5_path__traits__misc_8hpp_source.html b/_h5_path__traits__misc_8hpp_source.html new file mode 100644 index 000000000..94b2d62cf --- /dev/null +++ b/_h5_path__traits__misc_8hpp_source.html @@ -0,0 +1,176 @@ + + + + + + + +HighFive: highfive/bits/H5Path_traits_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Path_traits_misc.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2020, EPFL - Blue Brain Project
+
3 *
+
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 <H5Ipublic.h>
+
12
+
13#include "H5Utils.hpp"
+
14#include "H5Path_traits.hpp"
+
15
+
16namespace HighFive {
+
17
+
+
18template <typename Derivate>
+
+ +
20 static_assert(std::is_same<Derivate, Group>::value || std::is_same<Derivate, DataSet>::value ||
+
21 std::is_same<Derivate, Attribute>::value,
+
22 "PathTraits can only be applied to Group, DataSet and Attribute");
+
+
23 const auto& obj = static_cast<const Derivate&>(*this);
+
24 if (obj.isValid()) {
+
25 const hid_t file_id = detail::h5i_get_file_id<PropertyException>(obj.getId());
+
26 _file_obj.reset(new File(file_id));
+
27 }
+
+ +
29
+
30template <typename Derivate>
+
+
31inline std::string PathTraits<Derivate>::getPath() const {
+
32 return details::get_name([this](char* buffer, size_t length) {
+
33 return detail::h5i_get_name(static_cast<const Derivate&>(*this).getId(), buffer, length);
+
34 });
+
35}
+
+
36
+
37template <typename Derivate>
+
+
38inline File& PathTraits<Derivate>::getFile() const noexcept {
+
39 return *_file_obj;
+
40}
+
+
+
41
+
42} // namespace HighFive
+
+
+
+ + +
File class.
Definition H5File.hpp:24
+
PathTraits()
Definition H5Path_traits_misc.hpp:19
+
File & getFile() const noexcept
Return a reference to the File object this object belongs.
Definition H5Path_traits_misc.hpp:38
+
std::string getPath() const
return the path to the current object
Definition H5Path_traits_misc.hpp:31
+
Definition H5_definitions.hpp:22
+ +
+
+ + + + diff --git a/_h5_property_list_8hpp.html b/_h5_property_list_8hpp.html new file mode 100644 index 000000000..6def449a9 --- /dev/null +++ b/_h5_property_list_8hpp.html @@ -0,0 +1,409 @@ + + + + + + + +HighFive: highfive/H5PropertyList.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5PropertyList.hpp File Reference
+
+
+
#include <vector>
+#include <H5Ppublic.h>
+#include <H5FDmpi.h>
+#include "H5Exception.hpp"
+#include "H5Object.hpp"
+#include "bits/H5PropertyList_misc.hpp"
+
+Include dependency graph for H5PropertyList.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Classes

class  HighFive::PropertyListBase
 Base Class for Property lists, providing global default. More...
 
class  HighFive::PropertyList< T >
 HDF5 property Lists. More...
 
class  HighFive::RawPropertyList< T >
 
class  HighFive::MPIOFileAccess
 Configure MPI access for the file. More...
 
class  HighFive::FileVersionBounds
 Configure the version bounds for the file. More...
 
class  HighFive::MetadataBlockSize
 Configure the metadata block size to use writing to files. More...
 
class  HighFive::EstimatedLinkInfo
 Set hints as to how many links to expect and their average length. More...
 
class  HighFive::Chunking
 
class  HighFive::Deflate
 
class  HighFive::Szip
 
class  HighFive::Shuffle
 
class  HighFive::AllocationTime
 When are datasets allocated? More...
 
class  HighFive::Caching
 
class  HighFive::CreateIntermediateGroup
 
class  HighFive::UseCollectiveIO
 
class  HighFive::MpioNoCollectiveCause
 The cause for non-collective I/O. More...
 
struct  HighFive::CreationOrder
 
class  HighFive::LinkCreationOrder
 Track and index creation order time. More...
 
class  HighFive::AttributePhaseChange
 Set threshold for attribute storage. More...
 
+ + + +

+Namespaces

namespace  HighFive
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

using HighFive::ObjectCreateProps = PropertyList<PropertyType::OBJECT_CREATE>
 
using HighFive::FileCreateProps = PropertyList<PropertyType::FILE_CREATE>
 
using HighFive::FileAccessProps = PropertyList<PropertyType::FILE_ACCESS>
 
using HighFive::DataSetCreateProps = PropertyList<PropertyType::DATASET_CREATE>
 
using HighFive::DataSetAccessProps = PropertyList<PropertyType::DATASET_ACCESS>
 
using HighFive::DataTransferProps = PropertyList<PropertyType::DATASET_XFER>
 
using HighFive::GroupCreateProps = PropertyList<PropertyType::GROUP_CREATE>
 
using HighFive::GroupAccessProps = PropertyList<PropertyType::GROUP_ACCESS>
 
using HighFive::DataTypeCreateProps = PropertyList<PropertyType::DATATYPE_CREATE>
 
using HighFive::DataTypeAccessProps = PropertyList<PropertyType::DATATYPE_ACCESS>
 
using HighFive::StringCreateProps = PropertyList<PropertyType::STRING_CREATE>
 
using HighFive::AttributeCreateProps = PropertyList<PropertyType::ATTRIBUTE_CREATE>
 
using HighFive::ObjectCopyProps = PropertyList<PropertyType::OBJECT_COPY>
 
using HighFive::LinkCreateProps = PropertyList<PropertyType::LINK_CREATE>
 
using HighFive::LinkAccessProps = PropertyList<PropertyType::LINK_ACCESS>
 
+ + + + +

+Enumerations

enum class  HighFive::PropertyType : int {
+  HighFive::PropertyType::OBJECT_CREATE +, HighFive::PropertyType::FILE_CREATE +, HighFive::PropertyType::FILE_ACCESS +, HighFive::PropertyType::DATASET_CREATE +,
+  HighFive::PropertyType::DATASET_ACCESS +, HighFive::PropertyType::DATASET_XFER +, HighFive::PropertyType::GROUP_CREATE +, HighFive::PropertyType::GROUP_ACCESS +,
+  HighFive::PropertyType::DATATYPE_CREATE +, HighFive::PropertyType::DATATYPE_ACCESS +, HighFive::PropertyType::STRING_CREATE +, HighFive::PropertyType::ATTRIBUTE_CREATE +,
+  HighFive::PropertyType::OBJECT_COPY +, HighFive::PropertyType::LINK_CREATE +, HighFive::PropertyType::LINK_ACCESS +
+ }
 Types of property lists. More...
 
+
+
+ + + + diff --git a/_h5_property_list_8hpp.js b/_h5_property_list_8hpp.js new file mode 100644 index 000000000..2ae0f31ab --- /dev/null +++ b/_h5_property_list_8hpp.js @@ -0,0 +1,35 @@ +var _h5_property_list_8hpp = +[ + [ "AttributeCreateProps", "_h5_property_list_8hpp.html#ga3ad092372f31951daaf8a51c0acdea2e", null ], + [ "DataSetAccessProps", "_h5_property_list_8hpp.html#ga7491cb84edb6012aa97f96ae21564d4c", null ], + [ "DataSetCreateProps", "_h5_property_list_8hpp.html#ga8877fba7ca191b3b155888a625a764c3", null ], + [ "DataTransferProps", "_h5_property_list_8hpp.html#ga905dd430e77d8ddf3086f49ec39c6f03", null ], + [ "DataTypeAccessProps", "_h5_property_list_8hpp.html#gaa41cb6d6489aa2e82a3dfd046daf6d3f", null ], + [ "DataTypeCreateProps", "_h5_property_list_8hpp.html#ga75c7721bfccfc8e093c53ba40a281b39", null ], + [ "FileAccessProps", "_h5_property_list_8hpp.html#ga358ba8fbb023f5e85dc6bb43219ed42c", null ], + [ "FileCreateProps", "_h5_property_list_8hpp.html#ga8bdc886dc6c848bca97870e4b1d08336", null ], + [ "GroupAccessProps", "_h5_property_list_8hpp.html#ga94129b25dc64ff0d23c98fbf3299d91c", null ], + [ "GroupCreateProps", "_h5_property_list_8hpp.html#gab7d50ee5d71f2ff1bab9bf1757640f3f", null ], + [ "LinkAccessProps", "_h5_property_list_8hpp.html#ga6e5fcdabe6e261340645676ebbc6c4c9", null ], + [ "LinkCreateProps", "_h5_property_list_8hpp.html#ga174b81b71b9c60f6b29ae68860bb7721", null ], + [ "ObjectCopyProps", "_h5_property_list_8hpp.html#ga26c5b877905940b89b22a7fe6576bc32", null ], + [ "ObjectCreateProps", "_h5_property_list_8hpp.html#ga171296b98ab8d5f898fb9bb6e3179292", null ], + [ "StringCreateProps", "_h5_property_list_8hpp.html#gaaf41437769c5539c5c184c4a738fec8d", null ], + [ "PropertyType", "_h5_property_list_8hpp.html#ga097a358bdda37ff6e6b48d9f43664ad4", [ + [ "OBJECT_CREATE", "_h5_property_list_8hpp.html#gga097a358bdda37ff6e6b48d9f43664ad4afcea7f1287d62768c2fc0ee0cf18023f", null ], + [ "FILE_CREATE", "_h5_property_list_8hpp.html#gga097a358bdda37ff6e6b48d9f43664ad4a5534109883a2d6699c0262b228c14f67", null ], + [ "FILE_ACCESS", "_h5_property_list_8hpp.html#gga097a358bdda37ff6e6b48d9f43664ad4a8f93e8ee202d29ba296afdfb6c08550e", null ], + [ "DATASET_CREATE", "_h5_property_list_8hpp.html#gga097a358bdda37ff6e6b48d9f43664ad4aafd89ef46ba1fc317f8b8cfadbc8e89d", null ], + [ "DATASET_ACCESS", "_h5_property_list_8hpp.html#gga097a358bdda37ff6e6b48d9f43664ad4a1f9f49c3a9b29c99fd336a46e1fb0b8c", null ], + [ "DATASET_XFER", "_h5_property_list_8hpp.html#gga097a358bdda37ff6e6b48d9f43664ad4adbac4060e0053cc521283eb9f7d0869e", null ], + [ "GROUP_CREATE", "_h5_property_list_8hpp.html#gga097a358bdda37ff6e6b48d9f43664ad4aa9f9694169963af7096ae421df5025ce", null ], + [ "GROUP_ACCESS", "_h5_property_list_8hpp.html#gga097a358bdda37ff6e6b48d9f43664ad4aff3aa98325265641dfb5b6c727973774", null ], + [ "DATATYPE_CREATE", "_h5_property_list_8hpp.html#gga097a358bdda37ff6e6b48d9f43664ad4a4a9bef3e26735c56f85701720da97704", null ], + [ "DATATYPE_ACCESS", "_h5_property_list_8hpp.html#gga097a358bdda37ff6e6b48d9f43664ad4a023c2a1da4192ec57c9589f2adcf0375", null ], + [ "STRING_CREATE", "_h5_property_list_8hpp.html#gga097a358bdda37ff6e6b48d9f43664ad4a8c7bdf2b95146589251f8ecff10ca084", null ], + [ "ATTRIBUTE_CREATE", "_h5_property_list_8hpp.html#gga097a358bdda37ff6e6b48d9f43664ad4a518c30284a8061ffe051004a0670f135", null ], + [ "OBJECT_COPY", "_h5_property_list_8hpp.html#gga097a358bdda37ff6e6b48d9f43664ad4a9b0ceee4dc388106832eabb5522d4506", null ], + [ "LINK_CREATE", "_h5_property_list_8hpp.html#gga097a358bdda37ff6e6b48d9f43664ad4a57fb2f103675cde088df70923f6224b1", null ], + [ "LINK_ACCESS", "_h5_property_list_8hpp.html#gga097a358bdda37ff6e6b48d9f43664ad4a49f33864cd831c0b35b59fc99cb75293", null ] + ] ] +]; \ No newline at end of file diff --git a/_h5_property_list_8hpp__dep__incl.map b/_h5_property_list_8hpp__dep__incl.map new file mode 100644 index 000000000..7a54aafd3 --- /dev/null +++ b/_h5_property_list_8hpp__dep__incl.map @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_property_list_8hpp__dep__incl.md5 b/_h5_property_list_8hpp__dep__incl.md5 new file mode 100644 index 000000000..844506726 --- /dev/null +++ b/_h5_property_list_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +4fedd642a521b63be99d08a5ff43f33f \ No newline at end of file diff --git a/_h5_property_list_8hpp__dep__incl.png b/_h5_property_list_8hpp__dep__incl.png new file mode 100644 index 000000000..8e55202c4 Binary files /dev/null and b/_h5_property_list_8hpp__dep__incl.png differ diff --git a/_h5_property_list_8hpp__incl.map b/_h5_property_list_8hpp__incl.map new file mode 100644 index 000000000..f4a9bb466 --- /dev/null +++ b/_h5_property_list_8hpp__incl.map @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_property_list_8hpp__incl.md5 b/_h5_property_list_8hpp__incl.md5 new file mode 100644 index 000000000..2d7d26e1e --- /dev/null +++ b/_h5_property_list_8hpp__incl.md5 @@ -0,0 +1 @@ +8288342d6d242129863072a61a1752e1 \ No newline at end of file diff --git a/_h5_property_list_8hpp__incl.png b/_h5_property_list_8hpp__incl.png new file mode 100644 index 000000000..99b207dc4 Binary files /dev/null and b/_h5_property_list_8hpp__incl.png differ diff --git a/_h5_property_list_8hpp_source.html b/_h5_property_list_8hpp_source.html new file mode 100644 index 000000000..1bfa0e937 --- /dev/null +++ b/_h5_property_list_8hpp_source.html @@ -0,0 +1,749 @@ + + + + + + + +HighFive: highfive/H5PropertyList.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.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
+
+
89enum class PropertyType : int {
+ + + + + + + + + + + + + + + +
105};
+
+
106
+
107namespace details {
+
108template <typename T, typename U>
+
109T get_plist(const U& obj, hid_t (*f)(hid_t)) {
+
110 auto hid = f(obj.getId());
+
111 if (hid < 0) {
+
112 HDF5ErrMapper::ToException<PropertyException>("Unable to get property list");
+
113 }
+
114 T t{};
+
115 t._hid = hid;
+
116 return t;
+
117}
+
118} // namespace details
+
119
+
+ +
123 public:
+
124 PropertyListBase() noexcept;
+
125
+
+
126 static const PropertyListBase& Default() noexcept {
+
127 static const PropertyListBase plist{};
+
128 return plist;
+
129 }
+
+
130
+
131 private:
+
132 template <typename T, typename U>
+
133 friend T details::get_plist(const U&, hid_t (*f)(hid_t));
+
134};
+
+
135
+
145#if HIGHFIVE_HAS_CONCEPTS && __cplusplus >= 202002L
+
146template <typename P>
+
147concept PropertyInterface = requires(P p, const hid_t hid) {
+
148 {p.apply(hid)};
+
149};
+
150
+
151#else
+
152#define PropertyInterface typename
+
153#endif
+
155
+
159template <PropertyType T>
+
+ +
161 public:
+
+
164 constexpr PropertyType getType() const noexcept {
+
165 return T;
+
166 }
+
+
167
+
173 template <PropertyInterface P>
+
174 void add(const P& property);
+
175
+
+
178 static const PropertyList<T>& Default() noexcept {
+
179 return static_cast<const PropertyList<T>&>(PropertyListBase::Default());
+
180 }
+
+
181
+
+ +
188 auto plist = PropertyList<T>();
+
189 plist._initializeIfNeeded();
+
190
+
191 return plist;
+
192 }
+
+
193
+
194 protected:
+
195 void _initializeIfNeeded();
+
196};
+
+
197
+ + + + + + + + + + + + + + + +
213
+
218template <PropertyType T>
+
+ +
220 public:
+
221 template <typename F, typename... Args>
+
222 void add(const F& funct, const Args&... args);
+
223};
+
+
224
+
225#ifdef H5_HAVE_PARALLEL
+
+ +
233 public:
+
234 MPIOFileAccess(MPI_Comm comm, MPI_Info info);
+
235
+
236 private:
+
237 friend FileAccessProps;
+
238 void apply(const hid_t list) const;
+
239
+
240 MPI_Comm _comm;
+
241 MPI_Info _info;
+
242};
+
+
243
+
244
+
245#if H5_VERSION_GE(1, 10, 0)
+
251class MPIOCollectiveMetadata {
+
252 public:
+
253 explicit MPIOCollectiveMetadata(bool collective = true);
+
254 explicit MPIOCollectiveMetadata(const FileAccessProps& plist);
+
255
+
256 bool isCollectiveRead() const;
+
257 bool isCollectiveWrite() const;
+
258
+
259
+
260 private:
+
261 friend FileAccessProps;
+
262 void apply(hid_t plist) const;
+
263
+
264 bool collective_read_;
+
265 bool collective_write_;
+
266};
+
267
+
281class MPIOCollectiveMetadataRead {
+
282 public:
+
283 explicit MPIOCollectiveMetadataRead(bool collective = true);
+
284 explicit MPIOCollectiveMetadataRead(const FileAccessProps& plist);
+
285
+
286 bool isCollective() const;
+
287
+
288 private:
+
289 friend FileAccessProps;
+
290 friend MPIOCollectiveMetadata;
+
291
+
292 void apply(hid_t plist) const;
+
293
+
294 bool collective_;
+
295};
+
296
+
307class MPIOCollectiveMetadataWrite {
+
308 public:
+
309 explicit MPIOCollectiveMetadataWrite(bool collective = true);
+
310 explicit MPIOCollectiveMetadataWrite(const FileAccessProps& plist);
+
311
+
312 bool isCollective() const;
+
313
+
314 private:
+
315 friend FileAccessProps;
+
316 friend MPIOCollectiveMetadata;
+
317
+
318 void apply(hid_t plist) const;
+
319
+
320 bool collective_;
+
321};
+
322
+
323#endif
+
324#endif
+
325
+
+ +
343 public:
+
344 FileVersionBounds(H5F_libver_t low, H5F_libver_t high);
+
345 explicit FileVersionBounds(const FileAccessProps& fapl);
+
346
+
347 std::pair<H5F_libver_t, H5F_libver_t> getVersion() const;
+
348
+
349 private:
+
350 friend FileAccessProps;
+
351 void apply(const hid_t list) const;
+
352
+
353 H5F_libver_t _low;
+
354 H5F_libver_t _high;
+
355};
+
+
356
+
+ +
363 public:
+
364 explicit MetadataBlockSize(hsize_t size);
+
365 explicit MetadataBlockSize(const FileAccessProps& fapl);
+
366
+
367 hsize_t getSize() const;
+
368
+
369 private:
+
370 friend FileAccessProps;
+
371 void apply(const hid_t list) const;
+
372 hsize_t _size;
+
373};
+
+
374
+
375#if H5_VERSION_GE(1, 10, 1)
+
382class FileSpaceStrategy {
+
383 public:
+
390 FileSpaceStrategy(H5F_fspace_strategy_t strategy, hbool_t persist, hsize_t threshold);
+
391 explicit FileSpaceStrategy(const FileCreateProps& fcpl);
+
392
+
393 H5F_fspace_strategy_t getStrategy() const;
+
394 hbool_t getPersist() const;
+
395 hsize_t getThreshold() const;
+
396
+
397 private:
+
398 friend FileCreateProps;
+
399
+
400 void apply(const hid_t list) const;
+
401
+
402 H5F_fspace_strategy_t _strategy;
+
403 hbool_t _persist;
+
404 hsize_t _threshold;
+
405};
+
406
+
416class FileSpacePageSize {
+
417 public:
+
422 explicit FileSpacePageSize(hsize_t page_size);
+
423 explicit FileSpacePageSize(const FileCreateProps& fcpl);
+
424
+
425 hsize_t getPageSize() const;
+
426
+
427 private:
+
428 friend FileCreateProps;
+
429 void apply(const hid_t list) const;
+
430
+
431 hsize_t _page_size;
+
432};
+
433
+
434#ifndef H5_HAVE_PARALLEL
+
446class PageBufferSize {
+
447 public:
+
453 explicit PageBufferSize(size_t page_buffer_size,
+
454 unsigned min_meta_percent = 0,
+
455 unsigned min_raw_percent = 0);
+
456
+
457 explicit PageBufferSize(const FileAccessProps& fapl);
+
458
+
459 size_t getPageBufferSize() const;
+
460 unsigned getMinMetaPercent() const;
+
461 unsigned getMinRawPercent() const;
+
462
+
463 private:
+
464 friend FileAccessProps;
+
465
+
466 void apply(hid_t list) const;
+
467
+
468 size_t _page_buffer_size;
+
469 unsigned _min_meta;
+
470 unsigned _min_raw;
+
471};
+
472#endif
+
473#endif
+
474
+
+ +
479 public:
+
484 explicit EstimatedLinkInfo(unsigned entries, unsigned length);
+
485
+
486 explicit EstimatedLinkInfo(const GroupCreateProps& gcpl);
+
487
+
489 unsigned getEntries() const;
+
490
+
492 unsigned getNameLength() const;
+
493
+
494 private:
+
495 friend GroupCreateProps;
+
496 void apply(hid_t hid) const;
+
497 unsigned _entries;
+
498 unsigned _length;
+
499};
+
+
500
+
501
+
+
503class Chunking {
+
504 public:
+
505 explicit Chunking(const std::vector<hsize_t>& dims);
+
506 Chunking(const std::initializer_list<hsize_t>& items);
+
507
+
508 template <typename... Args>
+
509 explicit Chunking(hsize_t item, Args... args);
+
510
+
511 explicit Chunking(DataSetCreateProps& plist, size_t max_dims = 32);
+
512
+
513 const std::vector<hsize_t>& getDimensions() const noexcept;
+
514
+
515 private:
+
516 friend DataSetCreateProps;
+
517 void apply(hid_t hid) const;
+
518 std::vector<hsize_t> _dims;
+
519};
+
+
520
+
+
522class Deflate {
+
523 public:
+
524 explicit Deflate(unsigned level);
+
525
+
526 private:
+
527 friend DataSetCreateProps;
+
528 friend GroupCreateProps;
+
529 void apply(hid_t hid) const;
+
530 const unsigned _level;
+
531};
+
+
532
+
+
534class Szip {
+
535 public:
+
536 explicit Szip(unsigned options_mask = H5_SZIP_EC_OPTION_MASK,
+
537 unsigned pixels_per_block = H5_SZIP_MAX_PIXELS_PER_BLOCK);
+
538
+
539 unsigned getOptionsMask() const;
+
540 unsigned getPixelsPerBlock() const;
+
541
+
542 private:
+
543 friend DataSetCreateProps;
+
544 void apply(hid_t hid) const;
+
545 const unsigned _options_mask;
+
546 const unsigned _pixels_per_block;
+
547};
+
+
548
+
+
550class Shuffle {
+
551 public:
+
552 Shuffle() = default;
+
553
+
554 private:
+
555 friend DataSetCreateProps;
+
556 void apply(hid_t hid) const;
+
557};
+
+
558
+
+ +
566 public:
+
567 explicit AllocationTime(H5D_alloc_time_t alloc_time);
+
568 explicit AllocationTime(const DataSetCreateProps& dcpl);
+
569
+
570 H5D_alloc_time_t getAllocationTime();
+
571
+
572 private:
+
573 friend DataSetCreateProps;
+
574 void apply(hid_t dcpl) const;
+
575
+
576 H5D_alloc_time_t _alloc_time;
+
577};
+
+
578
+
+
582class Caching {
+
583 public:
+
586 Caching(const size_t numSlots,
+
587 const size_t cacheSize,
+
588 const double w0 = static_cast<double>(H5D_CHUNK_CACHE_W0_DEFAULT));
+
589
+
590 explicit Caching(const DataSetCreateProps& dcpl);
+
591
+
592 size_t getNumSlots() const;
+
593 size_t getCacheSize() const;
+
594 double getW0() const;
+
595
+
596 private:
+
597 friend DataSetAccessProps;
+
598 void apply(hid_t hid) const;
+
599 size_t _numSlots;
+
600 size_t _cacheSize;
+
601 double _w0;
+
602};
+
+
603
+
+ +
606 public:
+
607 explicit CreateIntermediateGroup(bool create = true);
+
608
+
609 explicit CreateIntermediateGroup(const ObjectCreateProps& ocpl);
+ +
611
+
612 bool isSet() const;
+
613
+
614 protected:
+
615 void fromPropertyList(hid_t hid);
+
616
+
617 private:
+
618 friend ObjectCreateProps;
+
619 friend LinkCreateProps;
+
620 void apply(hid_t hid) const;
+
621 bool _create;
+
622};
+
+
623
+
624#ifdef H5_HAVE_PARALLEL
+
+ +
627 public:
+
628 explicit UseCollectiveIO(bool enable = true);
+
629
+
630 explicit UseCollectiveIO(const DataTransferProps& dxpl);
+
631
+
633 bool isCollective() const;
+
634
+
635 private:
+
636 friend DataTransferProps;
+
637 void apply(hid_t hid) const;
+
638 bool _enable;
+
639};
+
+
640
+
641
+
+ +
650 public:
+
651 explicit MpioNoCollectiveCause(const DataTransferProps& dxpl);
+
652
+
654 bool wasCollective() const;
+
655
+
657 uint32_t getLocalCause() const;
+
658
+
660 uint32_t getGlobalCause() const;
+
661
+
663 std::pair<uint32_t, uint32_t> getCause() const;
+
664
+
665 private:
+
666 friend DataTransferProps;
+
667 uint32_t _local_cause;
+
668 uint32_t _global_cause;
+
669};
+
+
670#endif
+
671
+
+ +
+ +
674 Tracked = H5P_CRT_ORDER_TRACKED,
+
675 Indexed = H5P_CRT_ORDER_INDEXED,
+
676 };
+
+
677};
+
+
678
+
+ +
686 public:
+
+
691 explicit LinkCreationOrder(unsigned flags)
+
692 : _flags(flags) {}
+
+
693
+
694 explicit LinkCreationOrder(const FileCreateProps& fcpl);
+
695 explicit LinkCreationOrder(const GroupCreateProps& gcpl);
+
696
+
697 unsigned getFlags() const;
+
698
+
699 protected:
+
700 void fromPropertyList(hid_t hid);
+
701
+
702 private:
+
703 friend FileCreateProps;
+
704 friend GroupCreateProps;
+
705 void apply(hid_t hid) const;
+
706 unsigned _flags;
+
707};
+
+
708
+
709
+
+ +
722 public:
+
729 AttributePhaseChange(unsigned max_compact, unsigned min_dense);
+
730
+
732 explicit AttributePhaseChange(const GroupCreateProps& gcpl);
+
733
+
734 unsigned max_compact() const;
+
735 unsigned min_dense() const;
+
736
+
737 private:
+
738 friend GroupCreateProps;
+
739 void apply(hid_t hid) const;
+
740
+
741 unsigned _max_compact;
+
742 unsigned _min_dense;
+
743};
+
+
744
+
746
+
747} // namespace HighFive
+
748
+ + + + +
When are datasets allocated?
Definition H5PropertyList.hpp:565
+
H5D_alloc_time_t getAllocationTime()
Definition H5PropertyList_misc.hpp:361
+
AllocationTime(H5D_alloc_time_t alloc_time)
Definition H5PropertyList_misc.hpp:350
+
Set threshold for attribute storage.
Definition H5PropertyList.hpp:721
+
unsigned max_compact() const
Definition H5PropertyList_misc.hpp:488
+
AttributePhaseChange(unsigned max_compact, unsigned min_dense)
Create the property from the threshold values.
Definition H5PropertyList_misc.hpp:480
+
unsigned min_dense() const
Definition H5PropertyList_misc.hpp:492
+
Definition H5PropertyList.hpp:582
+
size_t getNumSlots() const
Definition H5PropertyList_misc.hpp:378
+
Caching(const size_t numSlots, const size_t cacheSize, const double w0=static_cast< double >(H5D_CHUNK_CACHE_W0_DEFAULT))
Definition H5PropertyList_misc.hpp:373
+
size_t getCacheSize() const
Definition H5PropertyList_misc.hpp:382
+
double getW0() const
Definition H5PropertyList_misc.hpp:386
+
Definition H5PropertyList.hpp:503
+
const std::vector< hsize_t > & getDimensions() const noexcept
Definition H5PropertyList_misc.hpp:303
+
Chunking(const std::vector< hsize_t > &dims)
Definition H5PropertyList_misc.hpp:285
+
Definition H5PropertyList.hpp:605
+
CreateIntermediateGroup(bool create=true)
Definition H5PropertyList_misc.hpp:390
+
CreateIntermediateGroup(const LinkCreateProps &lcpl)
+
void fromPropertyList(hid_t hid)
Definition H5PropertyList_misc.hpp:406
+
bool isSet() const
Definition H5PropertyList_misc.hpp:411
+
Definition H5PropertyList.hpp:522
+
Deflate(unsigned level)
Definition H5PropertyList_misc.hpp:319
+ + + + +
Configure the version bounds for the file.
Definition H5PropertyList.hpp:342
+
std::pair< H5F_libver_t, H5F_libver_t > getVersion() const
Definition H5PropertyList_misc.hpp:238
+
FileVersionBounds(H5F_libver_t low, H5F_libver_t high)
Definition H5PropertyList_misc.hpp:230
+ + + + + +
Configure MPI access for the file.
Definition H5PropertyList.hpp:232
+
MPIOFileAccess(MPI_Comm comm, MPI_Info info)
Definition H5PropertyList_misc.hpp:162
+
Configure the metadata block size to use writing to files.
Definition H5PropertyList.hpp:362
+
MetadataBlockSize(hsize_t size)
Definition H5PropertyList_misc.hpp:246
+
hsize_t getSize() const
Definition H5PropertyList_misc.hpp:257
+
The cause for non-collective I/O.
Definition H5PropertyList.hpp:649
+
uint32_t getGlobalCause() const
The global cause for a non-collective I/O.
Definition H5PropertyList_misc.hpp:451
+
bool wasCollective() const
Was the datatransfer collective?
Definition H5PropertyList_misc.hpp:443
+
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:455
+
MpioNoCollectiveCause(const DataTransferProps &dxpl)
Definition H5PropertyList_misc.hpp:439
+
uint32_t getLocalCause() const
The local cause for a non-collective I/O.
Definition H5PropertyList_misc.hpp:447
+
Definition H5Object.hpp:54
+
Base Class for Property lists, providing global default.
Definition H5PropertyList.hpp:122
+
PropertyListBase() noexcept
Definition H5PropertyList_misc.hpp:58
+
static const PropertyListBase & Default() noexcept
Definition H5PropertyList.hpp:126
+
HDF5 property Lists.
Definition H5PropertyList.hpp:160
+
void _initializeIfNeeded()
Definition H5PropertyList_misc.hpp:63
+
static PropertyList< T > Empty()
Definition H5PropertyList.hpp:187
+
static const PropertyList< T > & Default() noexcept
Return the Default property type object.
Definition H5PropertyList.hpp:178
+
constexpr PropertyType getType() const noexcept
return the type of this PropertyList
Definition H5PropertyList.hpp:164
+
void add(const P &property)
Definition H5PropertyList_misc.hpp:72
+
Definition H5PropertyList.hpp:219
+
void add(const F &funct, const Args &... args)
Definition H5PropertyList_misc.hpp:79
+
Definition H5PropertyList.hpp:550
+ +
Definition H5PropertyList.hpp:534
+
Szip(unsigned options_mask=H5_SZIP_EC_OPTION_MASK, unsigned pixels_per_block=H5_SZIP_MAX_PIXELS_PER_BLOCK)
Definition H5PropertyList_misc.hpp:330
+
unsigned getPixelsPerBlock() const
Definition H5PropertyList_misc.hpp:338
+
unsigned getOptionsMask() const
Definition H5PropertyList_misc.hpp:334
+
Definition H5PropertyList.hpp:626
+
bool isCollective() const
Does the property request collective IO?
Definition H5PropertyList_misc.hpp:435
+
UseCollectiveIO(bool enable=true)
Definition H5PropertyList_misc.hpp:416
+
PropertyType
Types of property lists.
Definition H5PropertyList.hpp:89
+
PropertyList< PropertyType::FILE_ACCESS > FileAccessProps
Definition H5PropertyList.hpp:200
+ + + + + + + + + + + + + + + +
HDF5 file property object.
+
Definition H5_definitions.hpp:22
+
Definition H5PropertyList.hpp:672
+
_CreationOrder
Definition H5PropertyList.hpp:673
+
@ Tracked
Definition H5PropertyList.hpp:674
+
@ Indexed
Definition H5PropertyList.hpp:675
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/_h5_property_list__misc_8hpp.html b/_h5_property_list__misc_8hpp.html new file mode 100644 index 000000000..3255793d5 --- /dev/null +++ b/_h5_property_list__misc_8hpp.html @@ -0,0 +1,236 @@ + + + + + + + +HighFive: highfive/bits/H5PropertyList_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5PropertyList_misc.hpp File Reference
+
+
+
#include "h5p_wrapper.hpp"
+
+Include dependency graph for H5PropertyList_misc.hpp:
+
+
+ + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_property_list__misc_8hpp__dep__incl.map b/_h5_property_list__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..eae85c2ed --- /dev/null +++ b/_h5_property_list__misc_8hpp__dep__incl.map @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_property_list__misc_8hpp__dep__incl.md5 b/_h5_property_list__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..6660e7ce8 --- /dev/null +++ b/_h5_property_list__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +a980e418e80d63d2c94965d76094aa25 \ No newline at end of file diff --git a/_h5_property_list__misc_8hpp__dep__incl.png b/_h5_property_list__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..d214166d5 Binary files /dev/null and b/_h5_property_list__misc_8hpp__dep__incl.png differ diff --git a/_h5_property_list__misc_8hpp__incl.map b/_h5_property_list__misc_8hpp__incl.map new file mode 100644 index 000000000..f6cc91b2c --- /dev/null +++ b/_h5_property_list__misc_8hpp__incl.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/_h5_property_list__misc_8hpp__incl.md5 b/_h5_property_list__misc_8hpp__incl.md5 new file mode 100644 index 000000000..b5a39dc5e --- /dev/null +++ b/_h5_property_list__misc_8hpp__incl.md5 @@ -0,0 +1 @@ +27b98a5dbc7e44ecc84e6b709b9f1c84 \ No newline at end of file diff --git a/_h5_property_list__misc_8hpp__incl.png b/_h5_property_list__misc_8hpp__incl.png new file mode 100644 index 000000000..c2fd641db Binary files /dev/null and b/_h5_property_list__misc_8hpp__incl.png differ diff --git a/_h5_property_list__misc_8hpp_source.html b/_h5_property_list__misc_8hpp_source.html new file mode 100644 index 000000000..bd1990b5e --- /dev/null +++ b/_h5_property_list__misc_8hpp_source.html @@ -0,0 +1,783 @@ + + + + + + + +HighFive: highfive/bits/H5PropertyList_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.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_OBJECT_CREATE;
+ +
23 return H5P_FILE_CREATE;
+ +
25 return H5P_FILE_ACCESS;
+ +
27 return H5P_DATASET_CREATE;
+ +
29 return H5P_DATASET_ACCESS;
+ +
31 return H5P_DATASET_XFER;
+ +
33 return H5P_GROUP_CREATE;
+ +
35 return H5P_GROUP_ACCESS;
+ +
37 return H5P_DATATYPE_CREATE;
+ +
39 return H5P_DATATYPE_ACCESS;
+ +
41 return H5P_STRING_CREATE;
+ +
43 return H5P_ATTRIBUTE_CREATE;
+ +
45 return H5P_OBJECT_COPY;
+ +
47 return H5P_LINK_CREATE;
+ +
49 return H5P_LINK_ACCESS;
+
50 default:
+
51 HDF5ErrMapper::ToException<PropertyException>("Unsupported property list type");
+
52 }
+
53}
+
54
+
55} // namespace
+
56
+
57
+
+ +
59 : Object(H5P_DEFAULT) {}
+
+
60
+
61
+
62template <PropertyType T>
+
+ +
64 if (_hid != H5P_DEFAULT) {
+
65 return;
+
66 }
+
67 _hid = detail::h5p_create(convert_plist_type(T));
+
68}
+
+
69
+
70template <PropertyType T>
+
71template <PropertyInterface P>
+
+
72inline void PropertyList<T>::add(const P& property) {
+
73 _initializeIfNeeded();
+
74 property.apply(_hid);
+
75}
+
+
76
+
77template <PropertyType T>
+
78template <typename F, typename... Args>
+
+
79inline void RawPropertyList<T>::add(const F& funct, const Args&... args) {
+
80 this->_initializeIfNeeded();
+
81 if (funct(this->_hid, args...) < 0) {
+
82 HDF5ErrMapper::ToException<PropertyException>("Error setting raw hdf5 property.");
+
83 }
+
84}
+
+
85
+
86// Specific options to be added to Property Lists
+
87#if H5_VERSION_GE(1, 10, 1)
+
88inline FileSpaceStrategy::FileSpaceStrategy(H5F_fspace_strategy_t strategy,
+
89 hbool_t persist,
+
90 hsize_t threshold)
+
91 : _strategy(strategy)
+
92 , _persist(persist)
+
93 , _threshold(threshold) {}
+
94
+
95inline FileSpaceStrategy::FileSpaceStrategy(const FileCreateProps& fcpl) {
+
96 detail::h5p_get_file_space_strategy(fcpl.getId(), &_strategy, &_persist, &_threshold);
+
97}
+
98
+
99inline void FileSpaceStrategy::apply(const hid_t list) const {
+
100 detail::h5p_set_file_space_strategy(list, _strategy, _persist, _threshold);
+
101}
+
102
+
103inline H5F_fspace_strategy_t FileSpaceStrategy::getStrategy() const {
+
104 return _strategy;
+
105}
+
106
+
107inline hbool_t FileSpaceStrategy::getPersist() const {
+
108 return _persist;
+
109}
+
110
+
111inline hsize_t FileSpaceStrategy::getThreshold() const {
+
112 return _threshold;
+
113}
+
114
+
115inline FileSpacePageSize::FileSpacePageSize(hsize_t page_size)
+
116 : _page_size(page_size) {}
+
117
+
118inline void FileSpacePageSize::apply(const hid_t list) const {
+
119 detail::h5p_set_file_space_page_size(list, _page_size);
+
120}
+
121
+
122inline FileSpacePageSize::FileSpacePageSize(const FileCreateProps& fcpl) {
+
123 detail::h5p_get_file_space_page_size(fcpl.getId(), &_page_size);
+
124}
+
125
+
126inline hsize_t FileSpacePageSize::getPageSize() const {
+
127 return _page_size;
+
128}
+
129
+
130#ifndef H5_HAVE_PARALLEL
+
131inline PageBufferSize::PageBufferSize(size_t page_buffer_size,
+
132 unsigned min_meta_percent,
+
133 unsigned min_raw_percent)
+
134 : _page_buffer_size(page_buffer_size)
+
135 , _min_meta(min_meta_percent)
+
136 , _min_raw(min_raw_percent) {}
+
137
+
138inline PageBufferSize::PageBufferSize(const FileAccessProps& plist) {
+
139 detail::h5p_get_page_buffer_size(plist.getId(), &_page_buffer_size, &_min_meta, &_min_raw);
+
140}
+
141
+
142inline void PageBufferSize::apply(const hid_t list) const {
+
143 detail::h5p_set_page_buffer_size(list, _page_buffer_size, _min_meta, _min_raw);
+
144}
+
145
+
146inline size_t PageBufferSize::getPageBufferSize() const {
+
147 return _page_buffer_size;
+
148}
+
149
+
150inline unsigned PageBufferSize::getMinMetaPercent() const {
+
151 return _min_meta;
+
152}
+
153
+
154inline unsigned PageBufferSize::getMinRawPercent() const {
+
155 return _min_raw;
+
156}
+
157#endif
+
158#endif
+
159
+
160#ifdef H5_HAVE_PARALLEL
+
161
+
+
162inline MPIOFileAccess::MPIOFileAccess(MPI_Comm comm, MPI_Info info)
+
163 : _comm(comm)
+
164 , _info(info) {}
+
+
165
+
166inline void MPIOFileAccess::apply(const hid_t list) const {
+
167 detail::h5p_set_fapl_mpio(list, _comm, _info);
+
168}
+
169
+
170#if H5_VERSION_GE(1, 10, 0)
+
171inline void MPIOCollectiveMetadata::apply(const hid_t plist) const {
+
172 auto read = MPIOCollectiveMetadataRead{collective_read_};
+
173 auto write = MPIOCollectiveMetadataWrite{collective_write_};
+
174
+
175 read.apply(plist);
+
176 write.apply(plist);
+
177}
+
178
+
179inline MPIOCollectiveMetadata::MPIOCollectiveMetadata(bool collective)
+
180 : collective_read_(collective)
+
181 , collective_write_(collective) {}
+
182
+
183
+
184inline MPIOCollectiveMetadata::MPIOCollectiveMetadata(const FileAccessProps& plist)
+
185 : collective_read_(MPIOCollectiveMetadataRead(plist).isCollective())
+
186 , collective_write_(MPIOCollectiveMetadataWrite(plist).isCollective()) {}
+
187
+
188inline bool MPIOCollectiveMetadata::isCollectiveRead() const {
+
189 return collective_read_;
+
190}
+
191
+
192inline bool MPIOCollectiveMetadata::isCollectiveWrite() const {
+
193 return collective_write_;
+
194}
+
195
+
196
+
197inline void MPIOCollectiveMetadataRead::apply(const hid_t plist) const {
+
198 detail::h5p_set_all_coll_metadata_ops(plist, collective_);
+
199}
+
200
+
201inline bool MPIOCollectiveMetadataRead::isCollective() const {
+
202 return collective_;
+
203}
+
204
+
205inline MPIOCollectiveMetadataRead::MPIOCollectiveMetadataRead(const FileAccessProps& plist) {
+
206 detail::h5p_get_all_coll_metadata_ops(plist.getId(), &collective_);
+
207}
+
208
+
209inline MPIOCollectiveMetadataRead::MPIOCollectiveMetadataRead(bool collective)
+
210 : collective_(collective) {}
+
211
+
212inline void MPIOCollectiveMetadataWrite::apply(const hid_t plist) const {
+
213 detail::h5p_set_coll_metadata_write(plist, collective_);
+
214}
+
215
+
216inline bool MPIOCollectiveMetadataWrite::isCollective() const {
+
217 return collective_;
+
218}
+
219
+
220inline MPIOCollectiveMetadataWrite::MPIOCollectiveMetadataWrite(const FileAccessProps& plist) {
+
221 detail::h5p_get_coll_metadata_write(plist.getId(), &collective_);
+
222}
+
223
+
224inline MPIOCollectiveMetadataWrite::MPIOCollectiveMetadataWrite(bool collective)
+
225 : collective_(collective) {}
+
226
+
227#endif
+
228#endif
+
229
+
+
230inline FileVersionBounds::FileVersionBounds(H5F_libver_t low, H5F_libver_t high)
+
231 : _low(low)
+
232 , _high(high) {}
+
+
233
+
+ +
235 detail::h5p_get_libver_bounds(fapl.getId(), &_low, &_high);
+
236}
+
+
237
+
+
238inline std::pair<H5F_libver_t, H5F_libver_t> FileVersionBounds::getVersion() const {
+
239 return std::make_pair(_low, _high);
+
240}
+
+
241
+
242inline void FileVersionBounds::apply(const hid_t list) const {
+
243 detail::h5p_set_libver_bounds(list, _low, _high);
+
244}
+
245
+
+ +
247 : _size(size) {}
+
+
248
+
+ +
250 detail::h5p_get_meta_block_size(fapl.getId(), &_size);
+
251}
+
+
252
+
253inline void MetadataBlockSize::apply(const hid_t list) const {
+
254 detail::h5p_set_meta_block_size(list, _size);
+
255}
+
256
+
+
257inline hsize_t MetadataBlockSize::getSize() const {
+
258 return _size;
+
259}
+
+
260
+
261inline void EstimatedLinkInfo::apply(const hid_t hid) const {
+
262 detail::h5p_set_est_link_info(hid, _entries, _length);
+
263}
+
264
+
+
265inline EstimatedLinkInfo::EstimatedLinkInfo(unsigned entries, unsigned length)
+
266 : _entries(entries)
+
267 , _length(length) {}
+
+
268
+
+ +
270 detail::h5p_get_est_link_info(gcpl.getId(), &_entries, &_length);
+
271}
+
+
272
+
+
273inline unsigned EstimatedLinkInfo::getEntries() const {
+
274 return _entries;
+
275}
+
+
276
+
+
277inline unsigned EstimatedLinkInfo::getNameLength() const {
+
278 return _length;
+
279}
+
+
280
+
281inline void Chunking::apply(const hid_t hid) const {
+
282 detail::h5p_set_chunk(hid, static_cast<int>(_dims.size()), _dims.data());
+
283}
+
284
+
+
285inline Chunking::Chunking(const std::vector<hsize_t>& dims)
+
286 : _dims(dims) {}
+
+
287
+
+
288inline Chunking::Chunking(const std::initializer_list<hsize_t>& items)
+
289 : Chunking(std::vector<hsize_t>{items}) {}
+
+
290
+
+
291inline Chunking::Chunking(DataSetCreateProps& plist, size_t max_dims)
+
292 : _dims(max_dims + 1) {
+
293 auto n_loaded =
+
294 detail::h5p_get_chunk(plist.getId(), static_cast<int>(_dims.size()), _dims.data());
+
295
+
296 if (n_loaded >= static_cast<int>(_dims.size())) {
+
297 *this = Chunking(plist, 8 * max_dims);
+
298 } else {
+
299 _dims.resize(static_cast<size_t>(n_loaded));
+
300 }
+
301}
+
+
302
+
+
303inline const std::vector<hsize_t>& Chunking::getDimensions() const noexcept {
+
304 return _dims;
+
305}
+
+
306
+
307template <typename... Args>
+
+
308inline Chunking::Chunking(hsize_t item, Args... args)
+
309 : Chunking(std::vector<hsize_t>{item, static_cast<hsize_t>(args)...}) {}
+
+
310
+
311inline void Deflate::apply(const hid_t hid) const {
+
312 if (detail::h5z_filter_avail(H5Z_FILTER_DEFLATE) == 0) {
+
313 HDF5ErrMapper::ToException<PropertyException>("Deflate filter unavailable.");
+
314 }
+
315
+
316 detail::h5p_set_deflate(hid, _level);
+
317}
+
318
+
+
319inline Deflate::Deflate(unsigned int level)
+
320 : _level(level) {}
+
+
321
+
322inline void Szip::apply(const hid_t hid) const {
+
323 if (detail::h5z_filter_avail(H5Z_FILTER_SZIP) == 0) {
+
324 HDF5ErrMapper::ToException<PropertyException>("SZIP filter unavailable.");
+
325 }
+
326
+
327 detail::h5p_set_szip(hid, _options_mask, _pixels_per_block);
+
328}
+
329
+
+
330inline Szip::Szip(unsigned int options_mask, unsigned int pixels_per_block)
+
331 : _options_mask(options_mask)
+
332 , _pixels_per_block(pixels_per_block) {}
+
+
333
+
+
334inline unsigned Szip::getOptionsMask() const {
+
335 return _options_mask;
+
336}
+
+
337
+
+
338inline unsigned Szip::getPixelsPerBlock() const {
+
339 return _pixels_per_block;
+
340}
+
+
341
+
342inline void Shuffle::apply(const hid_t hid) const {
+
343 if (detail::h5z_filter_avail(H5Z_FILTER_SHUFFLE) == 0) {
+
344 HDF5ErrMapper::ToException<PropertyException>("Shuffle filter unavailable.");
+
345 }
+
346
+
347 detail::h5p_set_shuffle(hid);
+
348}
+
349
+
+
350inline AllocationTime::AllocationTime(H5D_alloc_time_t alloc_time)
+
351 : _alloc_time(alloc_time) {}
+
+
352
+
+ +
354 detail::h5p_get_alloc_time(dcpl.getId(), &_alloc_time);
+
355}
+
+
356
+
357inline void AllocationTime::apply(hid_t dcpl) const {
+
358 detail::h5p_set_alloc_time(dcpl, _alloc_time);
+
359}
+
360
+
+
361inline H5D_alloc_time_t AllocationTime::getAllocationTime() {
+
362 return _alloc_time;
+
363}
+
+
364
+
+ +
366 detail::h5p_get_chunk_cache(dcpl.getId(), &_numSlots, &_cacheSize, &_w0);
+
367}
+
+
368
+
369inline void Caching::apply(const hid_t hid) const {
+
370 detail::h5p_set_chunk_cache(hid, _numSlots, _cacheSize, _w0);
+
371}
+
372
+
+
373inline Caching::Caching(const size_t numSlots, const size_t cacheSize, const double w0)
+
374 : _numSlots(numSlots)
+
375 , _cacheSize(cacheSize)
+
376 , _w0(w0) {}
+
+
377
+
+
378inline size_t Caching::getNumSlots() const {
+
379 return _numSlots;
+
380}
+
+
381
+
+
382inline size_t Caching::getCacheSize() const {
+
383 return _cacheSize;
+
384}
+
+
385
+
+
386inline double Caching::getW0() const {
+
387 return _w0;
+
388}
+
+
389
+
+ +
391 : _create(create) {}
+
+
392
+ +
396
+
397
+
398inline void CreateIntermediateGroup::apply(const hid_t hid) const {
+
399 detail::h5p_set_create_intermediate_group(hid, _create ? 1 : 0);
+
400}
+
401
+ +
403 fromPropertyList(lcpl.getId());
+
404}
+
405
+
+ +
407 unsigned c_bool = 0;
+
408 _create = bool(detail::h5p_get_create_intermediate_group(hid, &c_bool));
+
409}
+
+
410
+
+ +
412 return _create;
+
413}
+
+
414
+
415#ifdef H5_HAVE_PARALLEL
+
+ +
417 : _enable(enable) {}
+
+
418
+
419inline void UseCollectiveIO::apply(const hid_t hid) const {
+
420 detail::h5p_set_dxpl_mpio(hid, _enable ? H5FD_MPIO_COLLECTIVE : H5FD_MPIO_INDEPENDENT);
+
421}
+
422
+
+ +
424 H5FD_mpio_xfer_t collective;
+
425
+
426 detail::h5p_get_dxpl_mpio(dxpl.getId(), &collective);
+
427
+
428 if (collective != H5FD_MPIO_COLLECTIVE && collective != H5FD_MPIO_INDEPENDENT) {
+
429 throw std::logic_error("H5Pget_dxpl_mpio returned something strange.");
+
430 }
+
431
+
432 _enable = collective == H5FD_MPIO_COLLECTIVE;
+
433}
+
+
434
+
+
435inline bool UseCollectiveIO::isCollective() const {
+
436 return _enable;
+
437}
+
+
438
+
+ +
440 detail::h5p_get_mpio_no_collective_cause(dxpl.getId(), &_local_cause, &_global_cause);
+
441}
+
+
442
+
+ +
444 return _local_cause == 0 && _global_cause == 0;
+
445}
+
+
446
+
+ +
448 return _local_cause;
+
449}
+
+
450
+
+ +
452 return _global_cause;
+
453}
+
+
454
+
+
455inline std::pair<uint32_t, uint32_t> MpioNoCollectiveCause::getCause() const {
+
456 return {_local_cause, _global_cause};
+
457}
+
+
458#endif
+
459
+
+ +
461 fromPropertyList(fcpl.getId());
+
462}
+
+
463
+ +
465 fromPropertyList(gcpl.getId());
+
466}
+
467
+
+
468inline unsigned LinkCreationOrder::getFlags() const {
+
469 return _flags;
+
470}
+
+
471
+
472inline void LinkCreationOrder::apply(const hid_t hid) const {
+
473 detail::h5p_set_link_creation_order(hid, _flags);
+
474}
+
475
+
+ +
477 detail::h5p_get_link_creation_order(hid, &_flags);
+
478}
+
+
479
+
+
480inline AttributePhaseChange::AttributePhaseChange(unsigned max_compact, unsigned min_dense)
+
481 : _max_compact(max_compact)
+
482 , _min_dense(min_dense) {}
+
+
483
+
+ +
485 detail::h5p_get_attr_phase_change(gcpl.getId(), &_max_compact, &_min_dense);
+
486}
+
+
487
+
+
488inline unsigned AttributePhaseChange::max_compact() const {
+
489 return _max_compact;
+
490}
+
+
491
+
+
492inline unsigned AttributePhaseChange::min_dense() const {
+
493 return _min_dense;
+
494}
+
+
495
+
496inline void AttributePhaseChange::apply(hid_t hid) const {
+
497 detail::h5p_set_attr_phase_change(hid, _max_compact, _min_dense);
+
498}
+
499
+
500
+
501} // namespace HighFive
+
H5D_alloc_time_t getAllocationTime()
Definition H5PropertyList_misc.hpp:361
+
AllocationTime(H5D_alloc_time_t alloc_time)
Definition H5PropertyList_misc.hpp:350
+
unsigned max_compact() const
Definition H5PropertyList_misc.hpp:488
+
AttributePhaseChange(unsigned max_compact, unsigned min_dense)
Create the property from the threshold values.
Definition H5PropertyList_misc.hpp:480
+
unsigned min_dense() const
Definition H5PropertyList_misc.hpp:492
+
size_t getNumSlots() const
Definition H5PropertyList_misc.hpp:378
+
Caching(const size_t numSlots, const size_t cacheSize, const double w0=static_cast< double >(H5D_CHUNK_CACHE_W0_DEFAULT))
Definition H5PropertyList_misc.hpp:373
+
size_t getCacheSize() const
Definition H5PropertyList_misc.hpp:382
+
double getW0() const
Definition H5PropertyList_misc.hpp:386
+
Definition H5PropertyList.hpp:503
+
const std::vector< hsize_t > & getDimensions() const noexcept
Definition H5PropertyList_misc.hpp:303
+
Chunking(const std::vector< hsize_t > &dims)
Definition H5PropertyList_misc.hpp:285
+
CreateIntermediateGroup(bool create=true)
Definition H5PropertyList_misc.hpp:390
+
void fromPropertyList(hid_t hid)
Definition H5PropertyList_misc.hpp:406
+
bool isSet() const
Definition H5PropertyList_misc.hpp:411
+
Deflate(unsigned level)
Definition H5PropertyList_misc.hpp:319
+ + + +
std::pair< H5F_libver_t, H5F_libver_t > getVersion() const
Definition H5PropertyList_misc.hpp:238
+
FileVersionBounds(H5F_libver_t low, H5F_libver_t high)
Definition H5PropertyList_misc.hpp:230
+ + + +
MPIOFileAccess(MPI_Comm comm, MPI_Info info)
Definition H5PropertyList_misc.hpp:162
+
MetadataBlockSize(hsize_t size)
Definition H5PropertyList_misc.hpp:246
+
hsize_t getSize() const
Definition H5PropertyList_misc.hpp:257
+
uint32_t getGlobalCause() const
The global cause for a non-collective I/O.
Definition H5PropertyList_misc.hpp:451
+
bool wasCollective() const
Was the datatransfer collective?
Definition H5PropertyList_misc.hpp:443
+
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:455
+
MpioNoCollectiveCause(const DataTransferProps &dxpl)
Definition H5PropertyList_misc.hpp:439
+
uint32_t getLocalCause() const
The local cause for a non-collective I/O.
Definition H5PropertyList_misc.hpp:447
+
Definition H5Object.hpp:54
+
hid_t getId() const noexcept
getId
Definition H5Object_misc.hpp:69
+
PropertyListBase() noexcept
Definition H5PropertyList_misc.hpp:58
+
HDF5 property Lists.
Definition H5PropertyList.hpp:160
+
void _initializeIfNeeded()
Definition H5PropertyList_misc.hpp:63
+
void add(const P &property)
Definition H5PropertyList_misc.hpp:72
+
void add(const F &funct, const Args &... args)
Definition H5PropertyList_misc.hpp:79
+
Szip(unsigned options_mask=H5_SZIP_EC_OPTION_MASK, unsigned pixels_per_block=H5_SZIP_MAX_PIXELS_PER_BLOCK)
Definition H5PropertyList_misc.hpp:330
+
unsigned getPixelsPerBlock() const
Definition H5PropertyList_misc.hpp:338
+
unsigned getOptionsMask() const
Definition H5PropertyList_misc.hpp:334
+
bool isCollective() const
Does the property request collective IO?
Definition H5PropertyList_misc.hpp:435
+
UseCollectiveIO(bool enable=true)
Definition H5PropertyList_misc.hpp:416
+
PropertyType
Types of property lists.
Definition H5PropertyList.hpp:89
+
PropertyList< PropertyType::LINK_CREATE > LinkCreateProps
Definition H5PropertyList.hpp:211
+
PropertyList< PropertyType::FILE_ACCESS > FileAccessProps
Definition H5PropertyList.hpp:200
+
PropertyList< PropertyType::FILE_CREATE > FileCreateProps
Definition H5PropertyList.hpp:199
+ + + + + + + + + + + + + + + + +
Definition H5_definitions.hpp:22
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/_h5_read_write__misc_8hpp.html b/_h5_read_write__misc_8hpp.html new file mode 100644 index 000000000..4762eba8e --- /dev/null +++ b/_h5_read_write__misc_8hpp.html @@ -0,0 +1,227 @@ + + + + + + + +HighFive: highfive/bits/H5ReadWrite_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5ReadWrite_misc.hpp File Reference
+
+
+
#include <H5Tpublic.h>
+#include "H5Utils.hpp"
+
+Include dependency graph for H5ReadWrite_misc.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_read_write__misc_8hpp__dep__incl.map b/_h5_read_write__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..6063be67f --- /dev/null +++ b/_h5_read_write__misc_8hpp__dep__incl.map @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_read_write__misc_8hpp__dep__incl.md5 b/_h5_read_write__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..9d8caa5d3 --- /dev/null +++ b/_h5_read_write__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +97b1a05c864fb48beb3fcb8b42dc37ce \ No newline at end of file diff --git a/_h5_read_write__misc_8hpp__dep__incl.png b/_h5_read_write__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..30c870c4f Binary files /dev/null and b/_h5_read_write__misc_8hpp__dep__incl.png differ diff --git a/_h5_read_write__misc_8hpp__incl.map b/_h5_read_write__misc_8hpp__incl.map new file mode 100644 index 000000000..fb84c06c5 --- /dev/null +++ b/_h5_read_write__misc_8hpp__incl.map @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_read_write__misc_8hpp__incl.md5 b/_h5_read_write__misc_8hpp__incl.md5 new file mode 100644 index 000000000..2909ef157 --- /dev/null +++ b/_h5_read_write__misc_8hpp__incl.md5 @@ -0,0 +1 @@ +9f7b601397b0525fd7f9b2c22efb2f08 \ No newline at end of file diff --git a/_h5_read_write__misc_8hpp__incl.png b/_h5_read_write__misc_8hpp__incl.png new file mode 100644 index 000000000..13836da66 Binary files /dev/null and b/_h5_read_write__misc_8hpp__incl.png differ diff --git a/_h5_read_write__misc_8hpp_source.html b/_h5_read_write__misc_8hpp_source.html new file mode 100644 index 000000000..a7ab7b24e --- /dev/null +++ b/_h5_read_write__misc_8hpp_source.html @@ -0,0 +1,282 @@ + + + + + + + +HighFive: highfive/bits/H5ReadWrite_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5ReadWrite_misc.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c) 2020 Blue Brain Project
+
3 *
+
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 <H5Tpublic.h>
+
12#include "H5Utils.hpp"
+
13
+
14namespace HighFive {
+
15
+
16namespace details {
+
17
+
18template <typename T>
+
19using unqualified_t = typename std::remove_const<typename std::remove_reference<T>::type>::type;
+
20
+
21// Find the type of an eventual char array, otherwise void
+
22template <typename T>
+
23struct type_char_array {
+
24 using type = typename std::conditional<
+
25 std::is_same<typename inspector<T>::base_type, std::string>::value,
+
26 std::string,
+
27 void>::type;
+
28 static constexpr bool is_char_array = false;
+
29};
+
30
+
31template <typename T>
+
32struct type_char_array<T*> {
+
33 using type = typename std::conditional<std::is_same<unqualified_t<T>, char>::value,
+
34 char*,
+
35 typename type_char_array<T>::type>::type;
+
36 static constexpr bool is_char_array = true;
+
37};
+
38
+
39template <typename T, std::size_t N>
+
40struct type_char_array<T[N]> {
+
41 using type = typename std::conditional<std::is_same<unqualified_t<T>, char>::value,
+
42 char[N],
+
43 typename type_char_array<T>::type>::type;
+
44 static constexpr bool is_char_array = true;
+
45};
+
46
+
47template <typename T>
+
48struct BufferInfo {
+
49 using type_no_const = typename std::remove_const<T>::type;
+
50 using elem_type = typename details::inspector<type_no_const>::base_type;
+
51 using char_array_t = typename details::type_char_array<type_no_const>::type;
+
52 static constexpr bool is_char_array = details::type_char_array<type_no_const>::is_char_array;
+
53
+
54 enum class Operation { read, write };
+
55 const Operation op;
+
56
+
57 template <class F>
+
58 BufferInfo(const DataType& dtype, F getName, Operation _op);
+
59
+
60 // member data for info depending on the destination dataset type
+
61 const bool is_fixed_len_string;
+
62 const size_t n_dimensions;
+
63 const DataType data_type;
+
64};
+
65
+
66// details implementation
+
67template <typename SrcStrT>
+
68struct string_type_checker {
+
69 static DataType getDataType(const DataType&, const DataType&);
+
70};
+
71
+
72inline void enforce_ascii_hack(const DataType& dst, const DataType& src) {
+
73 // Note: constness only refers to constness of the DataType object, which
+
74 // is just an ID, we can/will change properties of `dst`.
+
75
+
76 // TEMP. CHANGE: Ensure that the character set is properly configured to prevent
+
77 // converter issues on HDF5 <=v1.12.0 when loading ASCII strings first.
+
78 // See https://github.com/HDFGroup/hdf5/issues/544 for further information.
+
79
+
80 bool is_dst_string = detail::h5t_get_class(dst.getId()) == H5T_STRING;
+
81 bool is_src_string = detail::h5t_get_class(src.getId()) == H5T_STRING;
+
82
+
83 if (is_dst_string && is_src_string) {
+
84 if (detail::h5t_get_cset(src.getId()) == H5T_CSET_ASCII) {
+
85 detail::h5t_set_cset(dst.getId(), H5T_CSET_ASCII);
+
86 }
+
87 }
+
88}
+
89
+
90template <>
+
91struct string_type_checker<void> {
+
92 inline static DataType getDataType(const DataType& element_type, const DataType& dtype) {
+
93 if (detail::h5t_get_class(element_type.getId()) == H5T_STRING) {
+
94 enforce_ascii_hack(element_type, dtype);
+
95 }
+
96 return element_type;
+
97 }
+
98};
+
99
+
100template <>
+
101struct string_type_checker<std::string> {
+
102 inline static DataType getDataType(const DataType&, const DataType& file_datatype) {
+
103 // The StringBuffer ensures that the data is transformed such that it
+
104 // matches the datatype of the dataset, i.e. `file_datatype` and
+
105 // `mem_datatype` are the same.
+
106 return file_datatype;
+
107 }
+
108};
+
109
+
110template <std::size_t FixedLen>
+
111struct string_type_checker<char[FixedLen]> {
+
112 inline static DataType getDataType(const DataType& element_type, const DataType& dtype) {
+
113 DataType return_type = (dtype.isFixedLenStr()) ? AtomicType<char[FixedLen]>()
+
114 : element_type;
+
115 enforce_ascii_hack(return_type, dtype);
+
116 return return_type;
+
117 }
+
118};
+
119
+
120template <>
+
121struct string_type_checker<char*> {
+
122 inline static DataType getDataType(const DataType&, const DataType& dtype) {
+
123 if (dtype.isFixedLenStr()) {
+
124 throw DataSetException("Can't output variable-length to fixed-length strings");
+
125 }
+
126 DataType return_type = AtomicType<std::string>();
+
127 enforce_ascii_hack(return_type, dtype);
+
128 return return_type;
+
129 }
+
130};
+
131
+
132template <typename T>
+
133template <class F>
+
134BufferInfo<T>::BufferInfo(const DataType& file_data_type, F getName, Operation _op)
+
135 : op(_op)
+
136 , is_fixed_len_string(file_data_type.isFixedLenStr())
+
137 // In case we are using Fixed-len strings we need to subtract one dimension
+
138 , n_dimensions(details::inspector<type_no_const>::recursive_ndim -
+
139 ((is_fixed_len_string && is_char_array) ? 1 : 0))
+
140 , data_type(string_type_checker<char_array_t>::getDataType(create_datatype<elem_type>(),
+
141 file_data_type)) {
+
142 // We warn. In case they are really not convertible an exception will rise on read/write
+
143 if (file_data_type.getClass() != data_type.getClass()) {
+
144 HIGHFIVE_LOG_WARN(getName() + "\": data and hdf5 dataset have different types: " +
+
145 data_type.string() + " -> " + file_data_type.string());
+
146 } else if ((file_data_type.getClass() & data_type.getClass()) == DataTypeClass::Float) {
+ +
148 (op == Operation::read) && (file_data_type.getSize() > data_type.getSize()),
+
149 getName() + "\": hdf5 dataset has higher floating point precision than data on read: " +
+
150 file_data_type.string() + " -> " + data_type.string());
+
151
+ +
153 (op == Operation::write) && (file_data_type.getSize() < data_type.getSize()),
+
154 getName() +
+
155 "\": data has higher floating point precision than hdf5 dataset on write: " +
+
156 data_type.string() + " -> " + file_data_type.string());
+
157 }
+
158}
+
159
+
160} // namespace details
+
161
+
162} // namespace HighFive
+
#define HIGHFIVE_LOG_WARN_IF(cond, message)
Definition H5Utility.hpp:193
+
#define HIGHFIVE_LOG_WARN(message)
Definition H5Utility.hpp:189
+ +
Definition H5_definitions.hpp:22
+
DataType create_datatype()
Create a DataType instance representing type T.
Definition H5DataType_misc.hpp:479
+
typename std::remove_const< typename std::remove_reference< T >::type >::type unqualified_t
Definition H5Inspector_decl.hpp:15
+
+
+ + + + diff --git a/_h5_reference_8hpp.html b/_h5_reference_8hpp.html new file mode 100644 index 000000000..7f0e4b139 --- /dev/null +++ b/_h5_reference_8hpp.html @@ -0,0 +1,318 @@ + + + + + + + +HighFive: highfive/H5Reference.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Reference.hpp File Reference
+
+
+
#include <string>
+#include <vector>
+#include <H5Ipublic.h>
+#include <H5Rpublic.h>
+#include "bits/H5_definitions.hpp"
+#include "bits/H5Reference_misc.hpp"
+
+Include dependency graph for H5Reference.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + +

+Classes

class  HighFive::Reference
 An HDF5 (object) reference type. More...
 
+ + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_reference_8hpp.js b/_h5_reference_8hpp.js new file mode 100644 index 000000000..21af720c4 --- /dev/null +++ b/_h5_reference_8hpp.js @@ -0,0 +1,4 @@ +var _h5_reference_8hpp = +[ + [ "HighFive::Reference", "class_high_five_1_1_reference.html", "class_high_five_1_1_reference" ] +]; \ No newline at end of file diff --git a/_h5_reference_8hpp__dep__incl.map b/_h5_reference_8hpp__dep__incl.map new file mode 100644 index 000000000..f29e4bdc6 --- /dev/null +++ b/_h5_reference_8hpp__dep__incl.map @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_reference_8hpp__dep__incl.md5 b/_h5_reference_8hpp__dep__incl.md5 new file mode 100644 index 000000000..34aedc207 --- /dev/null +++ b/_h5_reference_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +6605fc51a5c830e7375669c191552db2 \ No newline at end of file diff --git a/_h5_reference_8hpp__dep__incl.png b/_h5_reference_8hpp__dep__incl.png new file mode 100644 index 000000000..cb4e2afb1 Binary files /dev/null and b/_h5_reference_8hpp__dep__incl.png differ diff --git a/_h5_reference_8hpp__incl.map b/_h5_reference_8hpp__incl.map new file mode 100644 index 000000000..db70bc8da --- /dev/null +++ b/_h5_reference_8hpp__incl.map @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_reference_8hpp__incl.md5 b/_h5_reference_8hpp__incl.md5 new file mode 100644 index 000000000..2d0a2907e --- /dev/null +++ b/_h5_reference_8hpp__incl.md5 @@ -0,0 +1 @@ +febea870b33463b5fe3f7926150a788a \ No newline at end of file diff --git a/_h5_reference_8hpp__incl.png b/_h5_reference_8hpp__incl.png new file mode 100644 index 000000000..6b88109fa Binary files /dev/null and b/_h5_reference_8hpp__incl.png differ diff --git a/_h5_reference_8hpp_source.html b/_h5_reference_8hpp_source.html new file mode 100644 index 000000000..3c52fe6b6 --- /dev/null +++ b/_h5_reference_8hpp_source.html @@ -0,0 +1,184 @@ + + + + + + + +HighFive: highfive/H5Reference.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Reference.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2020, EPFL - Blue Brain Project
+
3 *
+
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
+
10#pragma once
+
11
+
12#include <string>
+
13#include <vector>
+
14
+
15#include <H5Ipublic.h>
+
16#include <H5Rpublic.h>
+
17
+ +
19
+
20namespace HighFive {
+
21
+
22namespace details {
+
23template <typename T>
+
24struct inspector;
+
25}
+
+
33class Reference {
+
34 public:
+
36 Reference() = default;
+
37
+
42 Reference(const Object& location, const Object& object);
+
43
+
49 template <typename T>
+
50 T dereference(const Object& location) const;
+
51
+
56 ObjectType getType(const Object& location) const;
+
57
+
58 protected:
+
+
60 inline explicit Reference(const hobj_ref_t h5_ref)
+
61 : href(h5_ref){};
+
+
62
+
67 void create_ref(hobj_ref_t* refptr) const;
+
68
+
69 private:
+
70 Object get_ref(const Object& location) const;
+
71
+
72 hobj_ref_t href{};
+
73 std::string obj_name{};
+
74 hid_t parent_id{};
+
75
+
76 friend struct details::inspector<Reference>;
+
77};
+
+
78
+
79} // namespace HighFive
+
80
+ + + +
Definition H5Object.hpp:54
+
An HDF5 (object) reference type.
Definition H5Reference.hpp:33
+
T dereference(const Object &location) const
Retrieve the Object being referenced by the Reference.
Definition H5Reference_misc.hpp:39
+
Reference(const hobj_ref_t h5_ref)
Create a Reference from a low-level HDF5 object reference.
Definition H5Reference.hpp:60
+
Reference()=default
Create an empty Reference to be initialized later.
+
ObjectType getType(const Object &location) const
Get only the type of the referenced Object.
Definition H5Reference_misc.hpp:34
+
void create_ref(hobj_ref_t *refptr) const
Create the low-level reference and store it at refptr.
Definition H5Reference_misc.hpp:30
+
Definition H5_definitions.hpp:22
+
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24
+
+
+ + + + diff --git a/_h5_reference__misc_8hpp.html b/_h5_reference__misc_8hpp.html new file mode 100644 index 000000000..8a30f397b --- /dev/null +++ b/_h5_reference__misc_8hpp.html @@ -0,0 +1,305 @@ + + + + + + + +HighFive: highfive/bits/H5Reference_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Reference_misc.hpp File Reference
+
+
+
#include <string>
+#include <H5Ppublic.h>
+#include "H5Utils.hpp"
+#include "../H5Object.hpp"
+#include "h5r_wrapper.hpp"
+
+Include dependency graph for H5Reference_misc.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_reference__misc_8hpp__dep__incl.map b/_h5_reference__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..4c5f635c0 --- /dev/null +++ b/_h5_reference__misc_8hpp__dep__incl.map @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_reference__misc_8hpp__dep__incl.md5 b/_h5_reference__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..93ac5d74a --- /dev/null +++ b/_h5_reference__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +a1787079cfefb9f400c4d5b338d26e3a \ No newline at end of file diff --git a/_h5_reference__misc_8hpp__dep__incl.png b/_h5_reference__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..781e3bff5 Binary files /dev/null and b/_h5_reference__misc_8hpp__dep__incl.png differ diff --git a/_h5_reference__misc_8hpp__incl.map b/_h5_reference__misc_8hpp__incl.map new file mode 100644 index 000000000..e738f4a56 --- /dev/null +++ b/_h5_reference__misc_8hpp__incl.map @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_reference__misc_8hpp__incl.md5 b/_h5_reference__misc_8hpp__incl.md5 new file mode 100644 index 000000000..af724c4dc --- /dev/null +++ b/_h5_reference__misc_8hpp__incl.md5 @@ -0,0 +1 @@ +fd88249970df864dd2ce3df84e93e029 \ No newline at end of file diff --git a/_h5_reference__misc_8hpp__incl.png b/_h5_reference__misc_8hpp__incl.png new file mode 100644 index 000000000..154c087bf Binary files /dev/null and b/_h5_reference__misc_8hpp__incl.png differ diff --git a/_h5_reference__misc_8hpp_source.html b/_h5_reference__misc_8hpp_source.html new file mode 100644 index 000000000..a342a38bc --- /dev/null +++ b/_h5_reference__misc_8hpp_source.html @@ -0,0 +1,197 @@ + + + + + + + +HighFive: highfive/bits/H5Reference_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Reference_misc.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2020, EPFL - Blue Brain Project
+
3 *
+
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
+
10#pragma once
+
11
+
12#include <string>
+
13#include <H5Ppublic.h>
+
14
+
15#include "H5Utils.hpp"
+
16
+
17#include "../H5Object.hpp"
+
18
+
19#include "h5r_wrapper.hpp"
+
20
+
21namespace HighFive {
+
22
+
+
23inline Reference::Reference(const Object& location, const Object& object)
+
24 : parent_id(location.getId()) {
+
25 obj_name = details::get_name([&](char* buffer, size_t length) {
+
26 return detail::h5i_get_name(object.getId(), buffer, length);
+
27 });
+
28}
+
+
29
+
+
30inline void Reference::create_ref(hobj_ref_t* refptr) const {
+
31 detail::h5r_create(refptr, parent_id, obj_name.c_str(), H5R_OBJECT, -1);
+
32}
+
+
33
+
+
34inline ObjectType Reference::getType(const Object& location) const {
+
35 return get_ref(location).getType();
+
36}
+
+
37
+
38template <typename T>
+
+
39inline T Reference::dereference(const Object& location) const {
+
40 static_assert(std::is_same<DataSet, T>::value || std::is_same<Group, T>::value,
+
41 "We can only (de)reference HighFive::Group or HighFive:DataSet");
+
42 auto obj = get_ref(location);
+
43 if (obj.getType() != T::type) {
+
44 HDF5ErrMapper::ToException<ReferenceException>("Trying to dereference the wrong type");
+
45 }
+
46#if defined __GNUC__ && __GNUC__ < 9
+
47 return std::move(obj);
+
48#else
+
49 return obj;
+
50#endif
+
51}
+
+
52
+
53inline Object Reference::get_ref(const Object& location) const {
+
54#if (H5Rdereference_vers == 2)
+
55 hid_t res = detail::h5r_dereference(location.getId(), H5P_DEFAULT, H5R_OBJECT, &href);
+
56#else
+
57 hid_t res = detail::h5r_dereference(location.getId(), H5R_OBJECT, &href);
+
58#endif
+
59 return Object(res);
+
60}
+
61
+
62} // namespace HighFive
+ + +
Definition H5Object.hpp:54
+
hid_t getId() const noexcept
getId
Definition H5Object_misc.hpp:69
+
ObjectType getType() const
Gets the fundamental type of the object (dataset, group, etc)
Definition H5Object_misc.hpp:92
+
T dereference(const Object &location) const
Retrieve the Object being referenced by the Reference.
Definition H5Reference_misc.hpp:39
+
Reference()=default
Create an empty Reference to be initialized later.
+
ObjectType getType(const Object &location) const
Get only the type of the referenced Object.
Definition H5Reference_misc.hpp:34
+
void create_ref(hobj_ref_t *refptr) const
Create the low-level reference and store it at refptr.
Definition H5Reference_misc.hpp:30
+ +
Definition H5_definitions.hpp:22
+
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/_h5_selection_8hpp.html b/_h5_selection_8hpp.html new file mode 100644 index 000000000..d1c8c6b88 --- /dev/null +++ b/_h5_selection_8hpp.html @@ -0,0 +1,342 @@ + + + + + + + +HighFive: highfive/H5Selection.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Selection.hpp File Reference
+
+
+
#include "H5DataSet.hpp"
+#include "H5DataSpace.hpp"
+#include "bits/H5Slice_traits.hpp"
+#include "bits/H5Friends.hpp"
+
+Include dependency graph for H5Selection.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + +

+Classes

class  HighFive::Selection
 Selection: represent a view on a slice/part of a dataset. More...
 
+ + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_selection_8hpp.js b/_h5_selection_8hpp.js new file mode 100644 index 000000000..ed393aff9 --- /dev/null +++ b/_h5_selection_8hpp.js @@ -0,0 +1,4 @@ +var _h5_selection_8hpp = +[ + [ "HighFive::Selection", "class_high_five_1_1_selection.html", "class_high_five_1_1_selection" ] +]; \ No newline at end of file diff --git a/_h5_selection_8hpp__dep__incl.map b/_h5_selection_8hpp__dep__incl.map new file mode 100644 index 000000000..21da9e722 --- /dev/null +++ b/_h5_selection_8hpp__dep__incl.map @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_selection_8hpp__dep__incl.md5 b/_h5_selection_8hpp__dep__incl.md5 new file mode 100644 index 000000000..4f88f58da --- /dev/null +++ b/_h5_selection_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +13e591495ed5e8b2998a219375a6e61e \ No newline at end of file diff --git a/_h5_selection_8hpp__dep__incl.png b/_h5_selection_8hpp__dep__incl.png new file mode 100644 index 000000000..084e91f14 Binary files /dev/null and b/_h5_selection_8hpp__dep__incl.png differ diff --git a/_h5_selection_8hpp__incl.map b/_h5_selection_8hpp__incl.map new file mode 100644 index 000000000..0f56a370d --- /dev/null +++ b/_h5_selection_8hpp__incl.map @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_selection_8hpp__incl.md5 b/_h5_selection_8hpp__incl.md5 new file mode 100644 index 000000000..e28f320f2 --- /dev/null +++ b/_h5_selection_8hpp__incl.md5 @@ -0,0 +1 @@ +57a6cb04be2a8162c46eae7440fb13ea \ No newline at end of file diff --git a/_h5_selection_8hpp__incl.png b/_h5_selection_8hpp__incl.png new file mode 100644 index 000000000..a174e570f Binary files /dev/null and b/_h5_selection_8hpp__incl.png differ diff --git a/_h5_selection_8hpp_source.html b/_h5_selection_8hpp_source.html new file mode 100644 index 000000000..ff1fd8d9c --- /dev/null +++ b/_h5_selection_8hpp_source.html @@ -0,0 +1,179 @@ + + + + + + + +HighFive: highfive/H5Selection.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Selection.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 "H5DataSet.hpp"
+
12#include "H5DataSpace.hpp"
+ +
14#include "bits/H5Friends.hpp"
+
15
+
16namespace HighFive {
+
17
+
18namespace detail {
+
19Selection make_selection(const DataSpace&, const DataSpace&, const DataSet&);
+
20}
+
21
+
+
27class Selection: public SliceTraits<Selection> {
+
28 public:
+
33 DataSpace getSpace() const noexcept;
+
34
+
40 DataSpace getMemSpace() const noexcept;
+
41
+
46 DataSet& getDataset() noexcept;
+
47 const DataSet& getDataset() const noexcept;
+
48
+
52 const DataType getDataType() const;
+
53
+
54 protected:
+
55 Selection(const DataSpace& memspace, const DataSpace& file_space, const DataSet& set);
+
56
+
57 private:
+
58 DataSpace _mem_space, _file_space;
+
59 DataSet _set;
+
60
+
61#if HIGHFIVE_HAS_FRIEND_DECLARATIONS
+
62 template <typename Derivate>
+
63 friend class ::HighFive::SliceTraits;
+
64#endif
+
65 friend Selection detail::make_selection(const DataSpace&, const DataSpace&, const DataSet&);
+
66};
+
+
67
+
68} // namespace HighFive
+ + + + +
Class representing a dataset.
Definition H5DataSet.hpp:30
+
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
+
HDF5 Data Type.
Definition H5DataType.hpp:61
+
Selection: represent a view on a slice/part of a dataset.
Definition H5Selection.hpp:27
+
DataSpace getMemSpace() const noexcept
getMemSpace
Definition H5Selection_misc.hpp:24
+
const DataType getDataType() const
return the datatype of the selection
Definition H5Selection_misc.hpp:37
+
DataSet & getDataset() noexcept
getDataSet
Definition H5Selection_misc.hpp:28
+
Selection(const DataSpace &memspace, const DataSpace &file_space, const DataSet &set)
Definition H5Selection_misc.hpp:13
+
DataSpace getSpace() const noexcept
getSpace
Definition H5Selection_misc.hpp:20
+
Definition H5Slice_traits.hpp:245
+
Definition H5_definitions.hpp:22
+ +
+
+ + + + diff --git a/_h5_selection__misc_8hpp.html b/_h5_selection__misc_8hpp.html new file mode 100644 index 000000000..24f50e167 --- /dev/null +++ b/_h5_selection__misc_8hpp.html @@ -0,0 +1,165 @@ + + + + + + + +HighFive: highfive/bits/H5Selection_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Selection_misc.hpp File Reference
+
+
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_selection__misc_8hpp__dep__incl.map b/_h5_selection__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..7bac7ffbf --- /dev/null +++ b/_h5_selection__misc_8hpp__dep__incl.map @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_selection__misc_8hpp__dep__incl.md5 b/_h5_selection__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..2cedf5833 --- /dev/null +++ b/_h5_selection__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +5131209410157c00f17ff16ba8f0883d \ No newline at end of file diff --git a/_h5_selection__misc_8hpp__dep__incl.png b/_h5_selection__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..c66e0b6b9 Binary files /dev/null and b/_h5_selection__misc_8hpp__dep__incl.png differ diff --git a/_h5_selection__misc_8hpp_source.html b/_h5_selection__misc_8hpp_source.html new file mode 100644 index 000000000..76c708a7d --- /dev/null +++ b/_h5_selection__misc_8hpp_source.html @@ -0,0 +1,186 @@ + + + + + + + +HighFive: highfive/bits/H5Selection_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Selection_misc.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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
+
11namespace HighFive {
+
12
+
+
13inline Selection::Selection(const DataSpace& memspace,
+
14 const DataSpace& file_space,
+
15 const DataSet& set)
+
16 : _mem_space(memspace)
+
17 , _file_space(file_space)
+
18 , _set(set) {}
+
+
19
+
+
20inline DataSpace Selection::getSpace() const noexcept {
+
21 return _file_space;
+
22}
+
+
23
+
+
24inline DataSpace Selection::getMemSpace() const noexcept {
+
25 return _mem_space;
+
26}
+
+
27
+
+
28inline DataSet& Selection::getDataset() noexcept {
+
29 return _set;
+
30}
+
+
31
+
+
32inline const DataSet& Selection::getDataset() const noexcept {
+
33 return _set;
+
34}
+
+
35
+
36// Not only a shortcut but also for templated compat with H5Dataset
+
+
37inline const DataType Selection::getDataType() const {
+
38 return _set.getDataType();
+
39}
+
+
40
+
41namespace detail {
+
42inline Selection make_selection(const DataSpace& mem_space,
+
43 const DataSpace& file_space,
+
44 const DataSet& set) {
+
45 return Selection(mem_space, file_space, set);
+
46}
+
47} // namespace detail
+
48
+
49} // namespace HighFive
+
Class representing a dataset.
Definition H5DataSet.hpp:30
+
DataType getDataType() const
getDataType
Definition H5DataSet_misc.hpp:28
+
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
+
HDF5 Data Type.
Definition H5DataType.hpp:61
+
Selection: represent a view on a slice/part of a dataset.
Definition H5Selection.hpp:27
+
DataSpace getMemSpace() const noexcept
getMemSpace
Definition H5Selection_misc.hpp:24
+
const DataType getDataType() const
return the datatype of the selection
Definition H5Selection_misc.hpp:37
+
DataSet & getDataset() noexcept
getDataSet
Definition H5Selection_misc.hpp:28
+
Selection(const DataSpace &memspace, const DataSpace &file_space, const DataSet &set)
Definition H5Selection_misc.hpp:13
+
DataSpace getSpace() const noexcept
getSpace
Definition H5Selection_misc.hpp:20
+
Definition H5_definitions.hpp:22
+
+
+ + + + diff --git a/_h5_slice__traits_8hpp.html b/_h5_slice__traits_8hpp.html new file mode 100644 index 000000000..2337db460 --- /dev/null +++ b/_h5_slice__traits_8hpp.html @@ -0,0 +1,297 @@ + + + + + + + +HighFive: highfive/bits/H5Slice_traits.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Slice_traits.hpp File Reference
+
+
+
#include <cstdlib>
+#include <vector>
+#include "H5_definitions.hpp"
+#include "H5Utils.hpp"
+#include "../H5PropertyList.hpp"
+#include "h5s_wrapper.hpp"
+
+Include dependency graph for H5Slice_traits.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + + + + + + +

+Classes

class  HighFive::ElementSet
 
struct  HighFive::RegularHyperSlab
 
class  HighFive::HyperSlab
 
class  HighFive::SliceTraits< Derivate >
 
+ + + +

+Namespaces

namespace  HighFive
 
+ + + + + +

+Functions

std::vector< hsize_t > HighFive::toHDF5SizeVector (const std::vector< size_t > &from)
 
std::vector< size_t > HighFive::toSTLSizeVector (const std::vector< hsize_t > &from)
 
+
+
+ + + + diff --git a/_h5_slice__traits_8hpp.js b/_h5_slice__traits_8hpp.js new file mode 100644 index 000000000..fc9ea3ce1 --- /dev/null +++ b/_h5_slice__traits_8hpp.js @@ -0,0 +1,9 @@ +var _h5_slice__traits_8hpp = +[ + [ "HighFive::ElementSet", "class_high_five_1_1_element_set.html", "class_high_five_1_1_element_set" ], + [ "HighFive::RegularHyperSlab", "struct_high_five_1_1_regular_hyper_slab.html", "struct_high_five_1_1_regular_hyper_slab" ], + [ "HighFive::HyperSlab", "class_high_five_1_1_hyper_slab.html", "class_high_five_1_1_hyper_slab" ], + [ "HighFive::SliceTraits< Derivate >", "class_high_five_1_1_slice_traits.html", "class_high_five_1_1_slice_traits" ], + [ "toHDF5SizeVector", "_h5_slice__traits_8hpp.html#acd815ee14c714bfa4ba0f05acc6e486d", null ], + [ "toSTLSizeVector", "_h5_slice__traits_8hpp.html#a1de5c5eaf17007862e5cf63ec186a64e", null ] +]; \ No newline at end of file diff --git a/_h5_slice__traits_8hpp__dep__incl.map b/_h5_slice__traits_8hpp__dep__incl.map new file mode 100644 index 000000000..6742b7b2e --- /dev/null +++ b/_h5_slice__traits_8hpp__dep__incl.map @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_slice__traits_8hpp__dep__incl.md5 b/_h5_slice__traits_8hpp__dep__incl.md5 new file mode 100644 index 000000000..3c7a3153d --- /dev/null +++ b/_h5_slice__traits_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +7673f4d26804d00d26f2c3074335124a \ No newline at end of file diff --git a/_h5_slice__traits_8hpp__dep__incl.png b/_h5_slice__traits_8hpp__dep__incl.png new file mode 100644 index 000000000..a24a28155 Binary files /dev/null and b/_h5_slice__traits_8hpp__dep__incl.png differ diff --git a/_h5_slice__traits_8hpp__incl.map b/_h5_slice__traits_8hpp__incl.map new file mode 100644 index 000000000..37083516d --- /dev/null +++ b/_h5_slice__traits_8hpp__incl.map @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_slice__traits_8hpp__incl.md5 b/_h5_slice__traits_8hpp__incl.md5 new file mode 100644 index 000000000..0806faf60 --- /dev/null +++ b/_h5_slice__traits_8hpp__incl.md5 @@ -0,0 +1 @@ +1cf3935e0948b4cb83cc765a2743e782 \ No newline at end of file diff --git a/_h5_slice__traits_8hpp__incl.png b/_h5_slice__traits_8hpp__incl.png new file mode 100644 index 000000000..7148be4db Binary files /dev/null and b/_h5_slice__traits_8hpp__incl.png differ diff --git a/_h5_slice__traits_8hpp_source.html b/_h5_slice__traits_8hpp_source.html new file mode 100644 index 000000000..824a21cd8 --- /dev/null +++ b/_h5_slice__traits_8hpp_source.html @@ -0,0 +1,476 @@ + + + + + + + +HighFive: highfive/bits/H5Slice_traits.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Slice_traits.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 <cstdlib>
+
12#include <vector>
+
13
+
14#include "H5_definitions.hpp"
+
15#include "H5Utils.hpp"
+
16
+
17#include "../H5PropertyList.hpp"
+
18#include "h5s_wrapper.hpp"
+
19
+
20namespace HighFive {
+
21
+
+ +
23 public:
+
29 explicit ElementSet(std::initializer_list<std::size_t> list);
+
34 explicit ElementSet(std::initializer_list<std::vector<std::size_t>> list);
+
40 explicit ElementSet(const std::vector<std::size_t>& element_ids);
+
45 explicit ElementSet(const std::vector<std::vector<std::size_t>>& element_ids);
+
46
+
47 private:
+
48 std::vector<std::size_t> _ids;
+
49
+
50 template <typename Derivate>
+
51 friend class SliceTraits;
+
52};
+
+
53
+
54namespace detail {
+
55
+
56template <class To, class From>
+
57inline std::vector<To> convertSizeVector(const std::vector<From>& from) {
+
58 std::vector<To> to(from.size());
+
59 std::copy(from.cbegin(), from.cend(), to.begin());
+
60
+
61 return to;
+
62}
+
63} // namespace detail
+
64
+
+
65inline std::vector<hsize_t> toHDF5SizeVector(const std::vector<size_t>& from) {
+
66 return detail::convertSizeVector<hsize_t>(from);
+
67}
+
+
68
+
+
69inline std::vector<size_t> toSTLSizeVector(const std::vector<hsize_t>& from) {
+
70 return detail::convertSizeVector<size_t>(from);
+
71}
+
+
72
+
+ +
74 RegularHyperSlab() = default;
+
75
+
+
76 RegularHyperSlab(std::vector<size_t> offset_,
+
77 std::vector<size_t> count_ = {},
+
78 std::vector<size_t> stride_ = {},
+
79 std::vector<size_t> block_ = {})
+
80 : offset(toHDF5SizeVector(offset_))
+
81 , count(toHDF5SizeVector(count_))
+
82 , stride(toHDF5SizeVector(stride_))
+
83 , block(toHDF5SizeVector(block_)) {}
+
+
84
+
+
85 static RegularHyperSlab fromHDF5Sizes(std::vector<hsize_t> offset_,
+
86 std::vector<hsize_t> count_ = {},
+
87 std::vector<hsize_t> stride_ = {},
+
88 std::vector<hsize_t> block_ = {}) {
+ +
90 slab.offset = offset_;
+
91 slab.count = count_;
+
92 slab.stride = stride_;
+
93 slab.block = block_;
+
94
+
95 return slab;
+
96 }
+
+
97
+
+
98 size_t rank() const {
+
99 return std::max(std::max(offset.size(), count.size()),
+
100 std::max(stride.size(), block.size()));
+
101 }
+
+
102
+
+
104 std::vector<size_t> packedDims() const {
+
105 auto n_dims = rank();
+
106 auto dims = std::vector<size_t>(n_dims, 0);
+
107
+
108 for (size_t i = 0; i < n_dims; ++i) {
+
109 dims[i] = count[i] * (block.empty() ? 1 : block[i]);
+
110 }
+
111
+
112 return dims;
+
113 }
+
+
114
+
115 std::vector<hsize_t> offset;
+
116 std::vector<hsize_t> count;
+
117 std::vector<hsize_t> stride;
+
118 std::vector<hsize_t> block;
+
119};
+
+
120
+
+ +
122 public:
+
+ +
124 selects.emplace_back(RegularHyperSlab{}, Op::None);
+
125 };
+
+
126
+
+
127 explicit HyperSlab(const RegularHyperSlab& sel) {
+
128 selects.emplace_back(sel, Op::Set);
+
129 }
+
+
130
+
+ +
132 auto ret = *this;
+
133 ret |= sel;
+
134 return ret;
+
135 }
+
+
136
+
+ +
138 selects.emplace_back(sel, Op::Or);
+
139 return *this;
+
140 }
+
+
141
+
+ +
143 auto ret = *this;
+
144 ret &= sel;
+
145 return ret;
+
146 }
+
+
147
+
+ +
149 selects.emplace_back(sel, Op::And);
+
150 return *this;
+
151 }
+
+
152
+
+ +
154 auto ret = *this;
+
155 ret ^= sel;
+
156 return ret;
+
157 }
+
+
158
+
+ +
160 selects.emplace_back(sel, Op::Xor);
+
161 return *this;
+
162 }
+
+
163
+
+ +
165 selects.emplace_back(sel, Op::NotA);
+
166 return *this;
+
167 }
+
+
168
+
+ +
170 selects.emplace_back(sel, Op::NotB);
+
171 return *this;
+
172 }
+
+
173
+
+
174 DataSpace apply(const DataSpace& space_) const {
+
175 auto space = space_.clone();
+
176 for (const auto& sel: selects) {
+
177 if (sel.op == Op::None) {
+
178 detail::h5s_select_none(space.getId());
+
179 } else {
+
180 detail::h5s_select_hyperslab(space.getId(),
+
181 convert(sel.op),
+
182 sel.offset.empty() ? nullptr : sel.offset.data(),
+
183 sel.stride.empty() ? nullptr : sel.stride.data(),
+
184 sel.count.empty() ? nullptr : sel.count.data(),
+
185 sel.block.empty() ? nullptr : sel.block.data());
+
186 }
+
187 }
+
188 return space;
+
189 }
+
+
190
+
191 private:
+
192 enum class Op {
+
193 Noop,
+
194 Set,
+
195 Or,
+
196 And,
+
197 Xor,
+
198 NotB,
+
199 NotA,
+
200 Append,
+
201 Prepend,
+
202 Invalid,
+
203 None,
+
204 };
+
205
+
206 H5S_seloper_t convert(Op op) const {
+
207 switch (op) {
+
208 case Op::Noop:
+
209 return H5S_SELECT_NOOP;
+
210 case Op::Set:
+
211 return H5S_SELECT_SET;
+
212 case Op::Or:
+
213 return H5S_SELECT_OR;
+
214 case Op::And:
+
215 return H5S_SELECT_AND;
+
216 case Op::Xor:
+
217 return H5S_SELECT_XOR;
+
218 case Op::NotB:
+
219 return H5S_SELECT_NOTB;
+
220 case Op::NotA:
+
221 return H5S_SELECT_NOTA;
+
222 case Op::Append:
+
223 return H5S_SELECT_APPEND;
+
224 case Op::Prepend:
+
225 return H5S_SELECT_PREPEND;
+
226 case Op::Invalid:
+
227 return H5S_SELECT_INVALID;
+
228 default:
+
229 throw DataSpaceException("Invalid HyperSlab operation.");
+
230 }
+
231 }
+
232
+
233 struct Select_: public RegularHyperSlab {
+
234 Select_(const RegularHyperSlab& sel, Op op_)
+
235 : RegularHyperSlab(sel)
+
236 , op(op_) {}
+
237
+
238 Op op;
+
239 };
+
240
+
241 std::vector<Select_> selects;
+
242};
+
+
243
+
244template <typename Derivate>
+
+ +
246 public:
+
255 Selection select(const HyperSlab& hyperslab) const;
+
256
+
264 Selection select(const HyperSlab& hyperslab, const DataSpace& memspace) const;
+
265
+
273 Selection select(const std::vector<size_t>& offset,
+
274 const std::vector<size_t>& count,
+
275 const std::vector<size_t>& stride = {},
+
276 const std::vector<size_t>& block = {}) const;
+
277
+
283 Selection select(const std::vector<size_t>& columns) const;
+
284
+
288 Selection select(const ElementSet& elements) const;
+
289
+
290 template <typename T>
+
291 T read(const DataTransferProps& xfer_props = DataTransferProps()) const;
+
292
+
303 template <typename T>
+
304 void read(T& array, const DataTransferProps& xfer_props = DataTransferProps()) const;
+
305
+
317 template <typename T>
+
318 void read(T* array,
+
319 const DataType& dtype,
+
320 const DataTransferProps& xfer_props = DataTransferProps()) const;
+
321
+
333 template <typename T>
+
334 void read(T* array, const DataTransferProps& xfer_props = DataTransferProps()) const;
+
335
+
345 template <typename T>
+
346 void read_raw(T* array,
+
347 const DataType& dtype,
+
348 const DataTransferProps& xfer_props = DataTransferProps()) const;
+
349
+
359 template <typename T>
+
360 void read_raw(T* array, const DataTransferProps& xfer_props = DataTransferProps()) const;
+
361
+
362
+
370 template <typename T>
+
371 void write(const T& buffer, const DataTransferProps& xfer_props = DataTransferProps());
+
372
+
387 template <typename T>
+
388 void write_raw(const T* buffer,
+
389 const DataType& mem_datatype,
+
390 const DataTransferProps& xfer_props = DataTransferProps());
+
391
+
399 template <typename T>
+
400 void write_raw(const T* buffer, const DataTransferProps& xfer_props = DataTransferProps());
+
401};
+
+
402
+
403} // namespace HighFive
+ + + +
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
+
DataSpace clone() const
Create a copy of the DataSpace which will have different id.
Definition H5Dataspace_misc.hpp:94
+
HDF5 Data Type.
Definition H5DataType.hpp:61
+
Definition H5Slice_traits.hpp:22
+
ElementSet(std::initializer_list< std::size_t > list)
Create a list of points of N-dimension for selection.
Definition H5Slice_traits_misc.hpp:51
+
Definition H5Slice_traits.hpp:121
+
HyperSlab & notA(const RegularHyperSlab &sel)
Definition H5Slice_traits.hpp:164
+
HyperSlab & notB(const RegularHyperSlab &sel)
Definition H5Slice_traits.hpp:169
+
HyperSlab operator&(const RegularHyperSlab &sel) const
Definition H5Slice_traits.hpp:142
+
HyperSlab operator^(const RegularHyperSlab &sel) const
Definition H5Slice_traits.hpp:153
+
HyperSlab operator|(const RegularHyperSlab &sel) const
Definition H5Slice_traits.hpp:131
+
HyperSlab & operator&=(const RegularHyperSlab &sel)
Definition H5Slice_traits.hpp:148
+
HyperSlab()
Definition H5Slice_traits.hpp:123
+
HyperSlab & operator^=(const RegularHyperSlab &sel)
Definition H5Slice_traits.hpp:159
+
HyperSlab(const RegularHyperSlab &sel)
Definition H5Slice_traits.hpp:127
+
HyperSlab & operator|=(const RegularHyperSlab &sel)
Definition H5Slice_traits.hpp:137
+
DataSpace apply(const DataSpace &space_) const
Definition H5Slice_traits.hpp:174
+
HDF5 property Lists.
Definition H5PropertyList.hpp:160
+
Selection: represent a view on a slice/part of a dataset.
Definition H5Selection.hpp:27
+
Definition H5Slice_traits.hpp:245
+
T read(const DataTransferProps &xfer_props=DataTransferProps()) const
Definition H5Slice_traits_misc.hpp:160
+
void write(const T &buffer, const DataTransferProps &xfer_props=DataTransferProps())
Definition H5Slice_traits_misc.hpp:256
+
Selection select(const HyperSlab &hyperslab) const
Select an hyperslab in the current Slice/Dataset.
Definition H5Slice_traits_misc.hpp:82
+
void read_raw(T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) const
Definition H5Slice_traits_misc.hpp:227
+
void write_raw(const T *buffer, const DataType &mem_datatype, const DataTransferProps &xfer_props=DataTransferProps())
Definition H5Slice_traits_misc.hpp:281
+
PropertyList< PropertyType::DATASET_XFER > DataTransferProps
Definition H5PropertyList.hpp:203
+ +
Definition H5_definitions.hpp:22
+
std::vector< size_t > toSTLSizeVector(const std::vector< hsize_t > &from)
Definition H5Slice_traits.hpp:69
+
std::vector< hsize_t > toHDF5SizeVector(const std::vector< size_t > &from)
Definition H5Slice_traits.hpp:65
+ +
Definition H5Slice_traits.hpp:73
+
size_t rank() const
Definition H5Slice_traits.hpp:98
+
std::vector< hsize_t > offset
Definition H5Slice_traits.hpp:115
+
std::vector< hsize_t > block
Definition H5Slice_traits.hpp:118
+
std::vector< size_t > packedDims() const
Dimensions when all gaps are removed.
Definition H5Slice_traits.hpp:104
+
RegularHyperSlab(std::vector< size_t > offset_, std::vector< size_t > count_={}, std::vector< size_t > stride_={}, std::vector< size_t > block_={})
Definition H5Slice_traits.hpp:76
+ +
std::vector< hsize_t > count
Definition H5Slice_traits.hpp:116
+
static RegularHyperSlab fromHDF5Sizes(std::vector< hsize_t > offset_, std::vector< hsize_t > count_={}, std::vector< hsize_t > stride_={}, std::vector< hsize_t > block_={})
Definition H5Slice_traits.hpp:85
+
std::vector< hsize_t > stride
Definition H5Slice_traits.hpp:117
+
+
+ + + + diff --git a/_h5_slice__traits__misc_8hpp.html b/_h5_slice__traits__misc_8hpp.html new file mode 100644 index 000000000..6e1b18ede --- /dev/null +++ b/_h5_slice__traits__misc_8hpp.html @@ -0,0 +1,329 @@ + + + + + + + +HighFive: highfive/bits/H5Slice_traits_misc.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Slice_traits_misc.hpp File Reference
+
+
+
#include <algorithm>
+#include <cassert>
+#include <functional>
+#include <numeric>
+#include <sstream>
+#include <string>
+#include "h5d_wrapper.hpp"
+#include "h5s_wrapper.hpp"
+#include "H5ReadWrite_misc.hpp"
+#include "H5Converter_misc.hpp"
+
+Include dependency graph for H5Slice_traits_misc.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/_h5_slice__traits__misc_8hpp__dep__incl.map b/_h5_slice__traits__misc_8hpp__dep__incl.map new file mode 100644 index 000000000..377c3b10e --- /dev/null +++ b/_h5_slice__traits__misc_8hpp__dep__incl.map @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_slice__traits__misc_8hpp__dep__incl.md5 b/_h5_slice__traits__misc_8hpp__dep__incl.md5 new file mode 100644 index 000000000..d53c72f11 --- /dev/null +++ b/_h5_slice__traits__misc_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +38780fe211fc7370045b1c8311d202de \ No newline at end of file diff --git a/_h5_slice__traits__misc_8hpp__dep__incl.png b/_h5_slice__traits__misc_8hpp__dep__incl.png new file mode 100644 index 000000000..f24a04dc3 Binary files /dev/null and b/_h5_slice__traits__misc_8hpp__dep__incl.png differ diff --git a/_h5_slice__traits__misc_8hpp__incl.map b/_h5_slice__traits__misc_8hpp__incl.map new file mode 100644 index 000000000..fcfdf790e --- /dev/null +++ b/_h5_slice__traits__misc_8hpp__incl.map @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_slice__traits__misc_8hpp__incl.md5 b/_h5_slice__traits__misc_8hpp__incl.md5 new file mode 100644 index 000000000..6ae914d0a --- /dev/null +++ b/_h5_slice__traits__misc_8hpp__incl.md5 @@ -0,0 +1 @@ +dc59d6ad7841320e44d1ad72883b466b \ No newline at end of file diff --git a/_h5_slice__traits__misc_8hpp__incl.png b/_h5_slice__traits__misc_8hpp__incl.png new file mode 100644 index 000000000..6faa88f54 Binary files /dev/null and b/_h5_slice__traits__misc_8hpp__incl.png differ diff --git a/_h5_slice__traits__misc_8hpp_source.html b/_h5_slice__traits__misc_8hpp_source.html new file mode 100644 index 000000000..6d46962a7 --- /dev/null +++ b/_h5_slice__traits__misc_8hpp_source.html @@ -0,0 +1,496 @@ + + + + + + + +HighFive: highfive/bits/H5Slice_traits_misc.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Slice_traits_misc.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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 <algorithm>
+
12#include <cassert>
+
13#include <functional>
+
14#include <numeric>
+
15#include <sstream>
+
16#include <string>
+
17
+
18#include "h5d_wrapper.hpp"
+
19#include "h5s_wrapper.hpp"
+
20
+
21#include "H5ReadWrite_misc.hpp"
+
22#include "H5Converter_misc.hpp"
+
23
+
24namespace HighFive {
+
25
+
26namespace details {
+
27
+
28// map the correct reference to the dataset depending of the layout
+
29// dataset -> itself
+
30// subselection -> parent dataset
+
31inline const DataSet& get_dataset(const Selection& sel) {
+
32 return sel.getDataset();
+
33}
+
34
+
35inline const DataSet& get_dataset(const DataSet& ds) {
+
36 return ds;
+
37}
+
38
+
39// map the correct memspace identifier depending of the layout
+
40// dataset -> entire memspace
+
41// selection -> resolve space id
+
42inline hid_t get_memspace_id(const Selection& ptr) {
+
43 return ptr.getMemSpace().getId();
+
44}
+
45
+
46inline hid_t get_memspace_id(const DataSet&) {
+
47 return H5S_ALL;
+
48}
+
49} // namespace details
+
50
+
+
51inline ElementSet::ElementSet(std::initializer_list<std::size_t> list)
+
52 : _ids(list) {}
+
+
53
+
+
54inline ElementSet::ElementSet(std::initializer_list<std::vector<std::size_t>> list)
+
55 : ElementSet(std::vector<std::vector<std::size_t>>(list)) {}
+
+
56
+
+
57inline ElementSet::ElementSet(const std::vector<std::size_t>& element_ids)
+
58 : _ids(element_ids) {}
+
+
59
+
+
60inline ElementSet::ElementSet(const std::vector<std::vector<std::size_t>>& element_ids) {
+
61 for (const auto& vec: element_ids) {
+
62 std::copy(vec.begin(), vec.end(), std::back_inserter(_ids));
+
63 }
+
64}
+
+
65
+
66template <typename Derivate>
+
+ +
68 const DataSpace& memspace) const {
+
69 // Note: The current limitation are that memspace must describe a
+
70 // packed memspace.
+
71 //
+
72 // The reason for this is that we're unable to unpack general
+
73 // hyperslabs when the memory is not contiguous, e.g.
+
74 // `std::vector<std::vector<double>>`.
+
75 const auto& slice = static_cast<const Derivate&>(*this);
+
76 auto filespace = hyperslab.apply(slice.getSpace());
+
77
+
78 return detail::make_selection(memspace, filespace, details::get_dataset(slice));
+
79}
+
+
80
+
81template <typename Derivate>
+
+
82inline Selection SliceTraits<Derivate>::select(const HyperSlab& hyper_slab) const {
+
83 const auto& slice = static_cast<const Derivate&>(*this);
+
84 auto filespace = slice.getSpace();
+
85 filespace = hyper_slab.apply(filespace);
+
86
+
87 auto n_elements = detail::h5s_get_select_npoints(filespace.getId());
+
88 auto memspace = DataSpace(std::array<size_t, 1>{size_t(n_elements)});
+
89
+
90 return detail::make_selection(memspace, filespace, details::get_dataset(slice));
+
91}
+
+
92
+
93
+
94template <typename Derivate>
+
+
95inline Selection SliceTraits<Derivate>::select(const std::vector<size_t>& offset,
+
96 const std::vector<size_t>& count,
+
97 const std::vector<size_t>& stride,
+
98 const std::vector<size_t>& block) const {
+
99 auto slab = HyperSlab(RegularHyperSlab(offset, count, stride, block));
+
100 auto memspace = DataSpace(count);
+
101 return select(slab, memspace);
+
102}
+
+
103
+
104template <typename Derivate>
+
+
105inline Selection SliceTraits<Derivate>::select(const std::vector<size_t>& columns) const {
+
106 const auto& slice = static_cast<const Derivate&>(*this);
+
107 const DataSpace& space = slice.getSpace();
+
108 std::vector<size_t> dims = space.getDimensions();
+
109
+
110 std::vector<size_t> counts = dims;
+
111 counts.back() = 1;
+
112
+
113 std::vector<size_t> offsets(dims.size(), 0);
+
114
+
115 HyperSlab slab;
+
116 for (const auto& column: columns) {
+
117 offsets.back() = column;
+
118 slab |= RegularHyperSlab(offsets, counts);
+
119 }
+
120
+
121 std::vector<size_t> memdims = dims;
+
122 memdims.back() = columns.size();
+
123
+
124 return select(slab, DataSpace(memdims));
+
125}
+
+
126
+
127template <typename Derivate>
+
+ +
129 const auto& slice = static_cast<const Derivate&>(*this);
+
130 const hsize_t* data = nullptr;
+
131 const DataSpace space = slice.getSpace().clone();
+
132 const std::size_t length = elements._ids.size();
+
133 if (length % space.getNumberDimensions() != 0) {
+
134 throw DataSpaceException(
+
135 "Number of coordinates in elements picking "
+
136 "should be a multiple of the dimensions.");
+
137 }
+
138 const std::size_t num_elements = length / space.getNumberDimensions();
+
139 std::vector<hsize_t> raw_elements;
+
140
+
141 // optimised at compile time
+
142 // switch for data conversion on 32bits platforms
+
143 if (std::is_same<std::size_t, hsize_t>::value) {
+
144 // `if constexpr` can't be used, thus a reinterpret_cast is needed.
+
145 data = reinterpret_cast<const hsize_t*>(&(elements._ids[0]));
+
146 } else {
+
147 raw_elements.resize(length);
+
148 std::copy(elements._ids.begin(), elements._ids.end(), raw_elements.begin());
+
149 data = raw_elements.data();
+
150 }
+
151
+
152 detail::h5s_select_elements(space.getId(), H5S_SELECT_SET, num_elements, data);
+
153
+
154 return detail::make_selection(DataSpace(num_elements), space, details::get_dataset(slice));
+
155}
+
+
156
+
157
+
158template <typename Derivate>
+
159template <typename T>
+
+
160inline T SliceTraits<Derivate>::read(const DataTransferProps& xfer_props) const {
+
161 T array;
+
162 read(array, xfer_props);
+
163 return array;
+
164}
+
+
165
+
166
+
167template <typename Derivate>
+
168template <typename T>
+
+
169inline void SliceTraits<Derivate>::read(T& array, const DataTransferProps& xfer_props) const {
+
170 const auto& slice = static_cast<const Derivate&>(*this);
+
171 const DataSpace& mem_space = slice.getMemSpace();
+
172
+
173 auto file_datatype = slice.getDataType();
+
174
+
175 const details::BufferInfo<T> buffer_info(
+
176 file_datatype,
+
177 [&slice]() -> std::string { return details::get_dataset(slice).getPath(); },
+
178 details::BufferInfo<T>::Operation::read);
+
179
+
180 if (!details::checkDimensions(mem_space, buffer_info.n_dimensions)) {
+
181 std::ostringstream ss;
+
182 ss << "Impossible to read DataSet of dimensions " << mem_space.getNumberDimensions()
+
183 << " into arrays of dimensions " << buffer_info.n_dimensions;
+
184 throw DataSpaceException(ss.str());
+
185 }
+
186 auto dims = mem_space.getDimensions();
+
187
+
188 auto r = details::data_converter::get_reader<T>(dims, array, file_datatype);
+
189 read_raw(r.getPointer(), buffer_info.data_type, xfer_props);
+
190 // re-arrange results
+
191 r.unserialize(array);
+
192
+
193 auto t = buffer_info.data_type;
+
194 auto c = t.getClass();
+
195 if (c == DataTypeClass::VarLen || t.isVariableStr()) {
+
196#if H5_VERSION_GE(1, 12, 0)
+
197 // This one have been created in 1.12.0
+
198 (void)
+
199 detail::h5t_reclaim(t.getId(), mem_space.getId(), xfer_props.getId(), r.getPointer());
+
200#else
+
201 // This one is deprecated since 1.12.0
+
202 (void) detail::h5d_vlen_reclaim(t.getId(),
+
203 mem_space.getId(),
+
204 xfer_props.getId(),
+
205 r.getPointer());
+
206#endif
+
207 }
+
208}
+
+
209
+
210template <typename Derivate>
+
211template <typename T>
+
+
212inline void SliceTraits<Derivate>::read(T* array,
+
213 const DataType& mem_datatype,
+
214 const DataTransferProps& xfer_props) const {
+
215 read_raw(array, mem_datatype, xfer_props);
+
216}
+
+
217
+
218template <typename Derivate>
+
219template <typename T>
+
+
220inline void SliceTraits<Derivate>::read(T* array, const DataTransferProps& xfer_props) const {
+
221 read_raw(array, xfer_props);
+
222}
+
+
223
+
224
+
225template <typename Derivate>
+
226template <typename T>
+
+ +
228 const DataType& mem_datatype,
+
229 const DataTransferProps& xfer_props) const {
+
230 static_assert(!std::is_const<T>::value,
+
231 "read() requires a non-const structure to read data into");
+
232
+
233 const auto& slice = static_cast<const Derivate&>(*this);
+
234
+
235 detail::h5d_read(details::get_dataset(slice).getId(),
+
236 mem_datatype.getId(),
+
237 details::get_memspace_id(slice),
+
238 slice.getSpace().getId(),
+
239 xfer_props.getId(),
+
240 static_cast<void*>(array));
+
241}
+
+
242
+
243
+
244template <typename Derivate>
+
245template <typename T>
+
+
246inline void SliceTraits<Derivate>::read_raw(T* array, const DataTransferProps& xfer_props) const {
+
247 using element_type = typename details::inspector<T>::base_type;
+
248 const DataType& mem_datatype = create_and_check_datatype<element_type>();
+
249
+
250 read_raw(array, mem_datatype, xfer_props);
+
251}
+
+
252
+
253
+
254template <typename Derivate>
+
+
255template <typename T>
+
+
256inline void SliceTraits<Derivate>::write(const T& buffer, const DataTransferProps& xfer_props) {
+
257 const auto& slice = static_cast<const Derivate&>(*this);
+
258 const DataSpace& mem_space = slice.getMemSpace();
+
259
+
260 auto file_datatype = slice.getDataType();
+
261
+
262 const details::BufferInfo<T> buffer_info(
+
263 file_datatype,
+
+
264 [&slice]() -> std::string { return details::get_dataset(slice).getPath(); },
+
265 details::BufferInfo<T>::Operation::write);
+
266
+
267 if (!details::checkDimensions(mem_space, buffer_info.n_dimensions)) {
+
268 std::ostringstream ss;
+
269 ss << "Impossible to write buffer of dimensions "
+
270 << details::format_vector(mem_space.getDimensions())
+
271 << " into dataset with n = " << buffer_info.n_dimensions << " dimensions.";
+
272 throw DataSpaceException(ss.str());
+
+ +
274 auto w = details::data_converter::serialize<T>(buffer, file_datatype);
+
275 write_raw(w.getPointer(), buffer_info.data_type, xfer_props);
+
276}
+
277
+
278
+
279template <typename Derivate>
+
280template <typename T>
+
+
281inline void SliceTraits<Derivate>::write_raw(const T* buffer,
+
282 const DataType& mem_datatype,
+
+
283 const DataTransferProps& xfer_props) {
+
284 const auto& slice = static_cast<const Derivate&>(*this);
+
285
+
286 detail::h5d_write(details::get_dataset(slice).getId(),
+
287 mem_datatype.getId(),
+
+
288 details::get_memspace_id(slice),
+
289 slice.getSpace().getId(),
+
290 xfer_props.getId(),
+
+
291 static_cast<const void*>(buffer));
+
292}
+
293
+
294
+
295template <typename Derivate>
+
296template <typename T>
+
+
297inline void SliceTraits<Derivate>::write_raw(const T* buffer, const DataTransferProps& xfer_props) {
+
298 using element_type = typename details::inspector<T>::base_type;
+
299 const auto& mem_datatype = create_and_check_datatype<element_type>();
+
300
+
301 write_raw(buffer, mem_datatype, xfer_props);
+
302}
+
+
303
+
+ +
305} // namespace HighFive
+
+
+
+
+
+
+
+
+
+ + +
Exception specific to HighFive DataSpace interface.
Definition H5Exception.hpp:112
+
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
+
size_t getNumberDimensions() const
Returns the number of dimensions of a DataSpace.
Definition H5Dataspace_misc.hpp:100
+
std::vector< size_t > getDimensions() const
Returns the size of the dataset in each dimension.
Definition H5Dataspace_misc.hpp:104
+
DataSpace clone() const
Create a copy of the DataSpace which will have different id.
Definition H5Dataspace_misc.hpp:94
+
HDF5 Data Type.
Definition H5DataType.hpp:61
+
Definition H5Slice_traits.hpp:22
+
ElementSet(std::initializer_list< std::size_t > list)
Create a list of points of N-dimension for selection.
Definition H5Slice_traits_misc.hpp:51
+
Definition H5Slice_traits.hpp:121
+
DataSpace apply(const DataSpace &space_) const
Definition H5Slice_traits.hpp:174
+
hid_t getId() const noexcept
getId
Definition H5Object_misc.hpp:69
+
HDF5 property Lists.
Definition H5PropertyList.hpp:160
+
Selection: represent a view on a slice/part of a dataset.
Definition H5Selection.hpp:27
+
DataSpace getSpace() const noexcept
getSpace
Definition H5Selection_misc.hpp:20
+
T read(const DataTransferProps &xfer_props=DataTransferProps()) const
Definition H5Slice_traits_misc.hpp:160
+
void write(const T &buffer, const DataTransferProps &xfer_props=DataTransferProps())
Definition H5Slice_traits_misc.hpp:256
+
Selection select(const HyperSlab &hyperslab) const
Select an hyperslab in the current Slice/Dataset.
Definition H5Slice_traits_misc.hpp:82
+
void read_raw(T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) const
Definition H5Slice_traits_misc.hpp:227
+
void write_raw(const T *buffer, const DataType &mem_datatype, const DataTransferProps &xfer_props=DataTransferProps())
Definition H5Slice_traits_misc.hpp:281
+ + +
Definition H5_definitions.hpp:22
+ + +
Definition H5Slice_traits.hpp:73
+
+
+ + + + diff --git a/_h5_utility_8hpp.html b/_h5_utility_8hpp.html new file mode 100644 index 000000000..25c3c4ed8 --- /dev/null +++ b/_h5_utility_8hpp.html @@ -0,0 +1,571 @@ + + + + + + + +HighFive: highfive/H5Utility.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Utility.hpp File Reference
+
+
+
#include <functional>
+#include <string>
+#include <iostream>
+#include "bits/h5e_wrapper.hpp"
+#include "bits/H5Friends.hpp"
+
+Include dependency graph for H5Utility.hpp:
+
+
+ + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + + + + +

+Classes

class  HighFive::SilenceHDF5
 Utility class to disable HDF5 stack printing inside a scope. More...
 
class  HighFive::Logger
 A logger with supporting basic functionality. More...
 
+ + + +

+Namespaces

namespace  HighFive
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Macros

#define HIGHFIVE_LOG_LEVEL_DEBUG   10
 
#define HIGHFIVE_LOG_LEVEL_INFO   20
 
#define HIGHFIVE_LOG_LEVEL_WARN   30
 
#define HIGHFIVE_LOG_LEVEL_ERROR   40
 
#define HIGHFIVE_LOG_LEVEL   HIGHFIVE_LOG_LEVEL_WARN
 
#define HIGHFIVE_LOG_DEBUG(message)    ::HighFive::detail::log(::HighFive::LogSeverity::Debug, (message), __FILE__, __LINE__);
 
#define HIGHFIVE_LOG_DEBUG_IF(cond, message)
 
#define HIGHFIVE_LOG_INFO(message)    ::HighFive::detail::log(::HighFive::LogSeverity::Info, (message), __FILE__, __LINE__);
 
#define HIGHFIVE_LOG_INFO_IF(cond, message)
 
#define HIGHFIVE_LOG_WARN(message)    ::HighFive::detail::log(::HighFive::LogSeverity::Warn, (message), __FILE__, __LINE__);
 
#define HIGHFIVE_LOG_WARN_IF(cond, message)
 
#define HIGHFIVE_LOG_ERROR(message)    ::HighFive::detail::log(::HighFive::LogSeverity::Error, (message), __FILE__, __LINE__);
 
#define HIGHFIVE_LOG_ERROR_IF(cond, message)
 
+ + + +

+Enumerations

enum class  HighFive::LogSeverity { HighFive::Debug = HIGHFIVE_LOG_LEVEL_DEBUG +, HighFive::Info = HIGHFIVE_LOG_LEVEL_INFO +, HighFive::Warn = HIGHFIVE_LOG_LEVEL_WARN +, HighFive::Error = HIGHFIVE_LOG_LEVEL_ERROR + }
 
+ + + + + + + + + + + +

+Functions

std::string HighFive::to_string (LogSeverity severity)
 
void HighFive::default_logging_callback (LogSeverity severity, const std::string &message, const std::string &file, int line)
 
LoggerHighFive::get_global_logger ()
 Obtain a reference to the logger used by HighFive.
 
void HighFive::register_logging_callback (Logger::callback_type cb)
 Sets the callback that's used by the logger.
 
+

Macro Definition Documentation

+ +

◆ HIGHFIVE_LOG_DEBUG

+ +
+
+ + + + + + + +
#define HIGHFIVE_LOG_DEBUG( message)    ::HighFive::detail::log(::HighFive::LogSeverity::Debug, (message), __FILE__, __LINE__);
+
+ +
+
+ +

◆ HIGHFIVE_LOG_DEBUG_IF

+ +
+
+ + + + + + + + + + + +
#define HIGHFIVE_LOG_DEBUG_IF( cond,
message )
+
+Value:
if ((cond)) { \
+
HIGHFIVE_LOG_DEBUG((message)); \
+
}
+
+
+
+ +

◆ HIGHFIVE_LOG_ERROR

+ +
+
+ + + + + + + +
#define HIGHFIVE_LOG_ERROR( message)    ::HighFive::detail::log(::HighFive::LogSeverity::Error, (message), __FILE__, __LINE__);
+
+ +
+
+ +

◆ HIGHFIVE_LOG_ERROR_IF

+ +
+
+ + + + + + + + + + + +
#define HIGHFIVE_LOG_ERROR_IF( cond,
message )
+
+Value:
if ((cond)) { \
+
HIGHFIVE_LOG_ERROR((message)); \
+
}
+
+
+
+ +

◆ HIGHFIVE_LOG_INFO

+ +
+
+ + + + + + + +
#define HIGHFIVE_LOG_INFO( message)    ::HighFive::detail::log(::HighFive::LogSeverity::Info, (message), __FILE__, __LINE__);
+
+ +
+
+ +

◆ HIGHFIVE_LOG_INFO_IF

+ +
+
+ + + + + + + + + + + +
#define HIGHFIVE_LOG_INFO_IF( cond,
message )
+
+Value:
if ((cond)) { \
+
HIGHFIVE_LOG_INFO((message)); \
+
}
+
+
+
+ +

◆ HIGHFIVE_LOG_LEVEL

+ +
+
+ + + + +
#define HIGHFIVE_LOG_LEVEL   HIGHFIVE_LOG_LEVEL_WARN
+
+ +
+
+ +

◆ HIGHFIVE_LOG_LEVEL_DEBUG

+ +
+
+ + + + +
#define HIGHFIVE_LOG_LEVEL_DEBUG   10
+
+ +
+
+ +

◆ HIGHFIVE_LOG_LEVEL_ERROR

+ +
+
+ + + + +
#define HIGHFIVE_LOG_LEVEL_ERROR   40
+
+ +
+
+ +

◆ HIGHFIVE_LOG_LEVEL_INFO

+ +
+
+ + + + +
#define HIGHFIVE_LOG_LEVEL_INFO   20
+
+ +
+
+ +

◆ HIGHFIVE_LOG_LEVEL_WARN

+ +
+
+ + + + +
#define HIGHFIVE_LOG_LEVEL_WARN   30
+
+ +
+
+ +

◆ HIGHFIVE_LOG_WARN

+ +
+
+ + + + + + + +
#define HIGHFIVE_LOG_WARN( message)    ::HighFive::detail::log(::HighFive::LogSeverity::Warn, (message), __FILE__, __LINE__);
+
+ +
+
+ +

◆ HIGHFIVE_LOG_WARN_IF

+ +
+
+ + + + + + + + + + + +
#define HIGHFIVE_LOG_WARN_IF( cond,
message )
+
+Value:
if ((cond)) { \
+
HIGHFIVE_LOG_WARN((message)); \
+
}
+
+
+
+
+
+ + + + diff --git a/_h5_utility_8hpp.js b/_h5_utility_8hpp.js new file mode 100644 index 000000000..9792c2179 --- /dev/null +++ b/_h5_utility_8hpp.js @@ -0,0 +1,28 @@ +var _h5_utility_8hpp = +[ + [ "HighFive::SilenceHDF5", "class_high_five_1_1_silence_h_d_f5.html", "class_high_five_1_1_silence_h_d_f5" ], + [ "HighFive::Logger", "class_high_five_1_1_logger.html", "class_high_five_1_1_logger" ], + [ "HIGHFIVE_LOG_DEBUG", "_h5_utility_8hpp.html#a45004ae7b6ee4d36ece02625b803dae1", null ], + [ "HIGHFIVE_LOG_DEBUG_IF", "_h5_utility_8hpp.html#acb450a6ca0ce4ede86eeb543dbb97fd5", null ], + [ "HIGHFIVE_LOG_ERROR", "_h5_utility_8hpp.html#ada09af07f5ee416f589dc4c6b7dfc28d", null ], + [ "HIGHFIVE_LOG_ERROR_IF", "_h5_utility_8hpp.html#aacdac9e7e0e29eb62f7d68b1bddb08b7", null ], + [ "HIGHFIVE_LOG_INFO", "_h5_utility_8hpp.html#aea7948282a427dd2d5a04b87c66d38a0", null ], + [ "HIGHFIVE_LOG_INFO_IF", "_h5_utility_8hpp.html#a15521059b105b67127f790239ab149e5", null ], + [ "HIGHFIVE_LOG_LEVEL", "_h5_utility_8hpp.html#a8e389ca826af6e2e77d72db9fe9a71ee", null ], + [ "HIGHFIVE_LOG_LEVEL_DEBUG", "_h5_utility_8hpp.html#a89e04aa74828b90f31d3d12cf53d3347", null ], + [ "HIGHFIVE_LOG_LEVEL_ERROR", "_h5_utility_8hpp.html#a35fe0e7a0a4ea952af9ecaa18594ef7e", null ], + [ "HIGHFIVE_LOG_LEVEL_INFO", "_h5_utility_8hpp.html#ab7ac8b069d562c15b358763734b4aa07", null ], + [ "HIGHFIVE_LOG_LEVEL_WARN", "_h5_utility_8hpp.html#a233481164afb1c4337fb2c4501dadcb7", null ], + [ "HIGHFIVE_LOG_WARN", "_h5_utility_8hpp.html#a6512d9a30b5c76e13ec5f2756144c91a", null ], + [ "HIGHFIVE_LOG_WARN_IF", "_h5_utility_8hpp.html#a018b242d83052245f9f602f5bac1067f", null ], + [ "LogSeverity", "_h5_utility_8hpp.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246", [ + [ "Debug", "_h5_utility_8hpp.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246aa603905470e2a5b8c13e96b579ef0dba", null ], + [ "Info", "_h5_utility_8hpp.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246a4059b0251f66a18cb56f544728796875", null ], + [ "Warn", "_h5_utility_8hpp.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246a56525ae64d370c0b448ac0d60710ef17", null ], + [ "Error", "_h5_utility_8hpp.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246a902b0d55fddef6f8d651fe1035b7d4bd", null ] + ] ], + [ "default_logging_callback", "_h5_utility_8hpp.html#abf6fe5be71a00bfb4d6b5f65e6248132", null ], + [ "get_global_logger", "_h5_utility_8hpp.html#ad2f60aec2c40524b30248aac67f5eeb5", null ], + [ "register_logging_callback", "_h5_utility_8hpp.html#a4fc91cda37008aea40efbb20a39cf1c9", null ], + [ "to_string", "_h5_utility_8hpp.html#ace8358255410138c5e223747e2a06f36", null ] +]; \ No newline at end of file diff --git a/_h5_utility_8hpp__dep__incl.map b/_h5_utility_8hpp__dep__incl.map new file mode 100644 index 000000000..2b0129714 --- /dev/null +++ b/_h5_utility_8hpp__dep__incl.map @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_utility_8hpp__dep__incl.md5 b/_h5_utility_8hpp__dep__incl.md5 new file mode 100644 index 000000000..3749a25d1 --- /dev/null +++ b/_h5_utility_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +d0b5e85c9c9f0d8244d0bf152bb1061d \ No newline at end of file diff --git a/_h5_utility_8hpp__dep__incl.png b/_h5_utility_8hpp__dep__incl.png new file mode 100644 index 000000000..411432673 Binary files /dev/null and b/_h5_utility_8hpp__dep__incl.png differ diff --git a/_h5_utility_8hpp__incl.map b/_h5_utility_8hpp__incl.map new file mode 100644 index 000000000..2a4cf4af0 --- /dev/null +++ b/_h5_utility_8hpp__incl.map @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/_h5_utility_8hpp__incl.md5 b/_h5_utility_8hpp__incl.md5 new file mode 100644 index 000000000..46d3fe96e --- /dev/null +++ b/_h5_utility_8hpp__incl.md5 @@ -0,0 +1 @@ +11cec38a0b20f0e08b7250ea110766df \ No newline at end of file diff --git a/_h5_utility_8hpp__incl.png b/_h5_utility_8hpp__incl.png new file mode 100644 index 000000000..ec1a46ac4 Binary files /dev/null and b/_h5_utility_8hpp__incl.png differ diff --git a/_h5_utility_8hpp_source.html b/_h5_utility_8hpp_source.html new file mode 100644 index 000000000..febe9f592 --- /dev/null +++ b/_h5_utility_8hpp_source.html @@ -0,0 +1,375 @@ + + + + + + + +HighFive: highfive/H5Utility.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Utility.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Blue Brain Project - EPFL (CH)
+
3 *
+
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
+
10#pragma once
+
11
+
12#include <functional>
+
13#include <string>
+
14#include <iostream>
+
15
+
16#include "bits/h5e_wrapper.hpp"
+
17#include "bits/H5Friends.hpp"
+
18
+
19namespace HighFive {
+
20
+
+ +
25 public:
+
+
26 inline SilenceHDF5(bool enable = true)
+
27 : _client_data(nullptr) {
+
28 detail::nothrow::h5e_get_auto2(H5E_DEFAULT, &_func, &_client_data);
+
29
+
30 if (enable) {
+
31 detail::nothrow::h5e_set_auto2(H5E_DEFAULT, nullptr, nullptr);
+
32 }
+
33 }
+
+
34
+
+
35 inline ~SilenceHDF5() {
+
36 detail::nothrow::h5e_set_auto2(H5E_DEFAULT, _func, _client_data);
+
37 }
+
+
38
+
39 private:
+
40 H5E_auto2_t _func;
+
41 void* _client_data;
+
42};
+
+
43
+
44#define HIGHFIVE_LOG_LEVEL_DEBUG 10
+
45#define HIGHFIVE_LOG_LEVEL_INFO 20
+
46#define HIGHFIVE_LOG_LEVEL_WARN 30
+
47#define HIGHFIVE_LOG_LEVEL_ERROR 40
+
48
+
49#ifndef HIGHFIVE_LOG_LEVEL
+
50#define HIGHFIVE_LOG_LEVEL HIGHFIVE_LOG_LEVEL_WARN
+
51#endif
+
52
+ +
59
+
+
60inline std::string to_string(LogSeverity severity) {
+
61 switch (severity) {
+ +
63 return "DEBUG";
+ +
65 return "INFO";
+ +
67 return "WARN";
+ +
69 return "ERROR";
+
70 default:
+
71 return "??";
+
72 }
+
73}
+
+
74
+
+
89class Logger {
+
90 public:
+ +
92 std::function<void(LogSeverity, const std::string&, const std::string&, int)>;
+
93
+
94 public:
+
95 Logger() = delete;
+
96 Logger(const Logger&) = delete;
+
97 Logger(Logger&&) = delete;
+
98
+
+
99 explicit Logger(callback_type cb)
+
100 : _cb(std::move(cb)) {}
+
+
101
+
102 Logger& operator=(const Logger&) = delete;
+
103 Logger& operator=(Logger&&) = delete;
+
104
+
+
105 inline void log(LogSeverity severity,
+
106 const std::string& message,
+
107 const std::string& file,
+
108 int line) {
+
109 _cb(severity, message, file, line);
+
110 }
+
+
111
+
+ +
113 _cb = std::move(cb);
+
114 }
+
+
115
+
116 private:
+
117 callback_type _cb;
+
118};
+
+
119
+
+ +
121 const std::string& message,
+
122 const std::string& file,
+
123 int line) {
+
124 std::clog << file << ": " << line << " [" << to_string(severity) << "] " << message
+
125 << std::endl;
+
126}
+
+
127
+
+ +
136 static Logger logger(&default_logging_callback);
+
137 return logger;
+
138}
+
+
139
+
+ +
142 auto& logger = get_global_logger();
+
143 logger.set_logging_callback(std::move(cb));
+
144}
+
+
145
+
146namespace detail {
+
148inline void log(LogSeverity severity,
+
149 const std::string& message,
+
150 const std::string& file,
+
151 int line) {
+
152 auto& logger = get_global_logger();
+
153 logger.log(severity, message, file, line);
+
154}
+
155} // namespace detail
+
156
+
157#if HIGHFIVE_LOG_LEVEL <= HIGHFIVE_LOG_LEVEL_DEBUG
+
+
158#define HIGHFIVE_LOG_DEBUG(message) \
+
159 ::HighFive::detail::log(::HighFive::LogSeverity::Debug, (message), __FILE__, __LINE__);
+
+
160
+
161// Useful, for the common pattern: if ...; then log something.
+
+
162#define HIGHFIVE_LOG_DEBUG_IF(cond, message) \
+
163 if ((cond)) { \
+
164 HIGHFIVE_LOG_DEBUG((message)); \
+
165 }
+
+
166
+
167#else
+
168#define HIGHFIVE_LOG_DEBUG(message) ;
+
169#define HIGHFIVE_LOG_DEBUG_IF(cond, message) ;
+
170#endif
+
171
+
172#if HIGHFIVE_LOG_LEVEL <= HIGHFIVE_LOG_LEVEL_INFO
+
+
173#define HIGHFIVE_LOG_INFO(message) \
+
174 ::HighFive::detail::log(::HighFive::LogSeverity::Info, (message), __FILE__, __LINE__);
+
+
175
+
176// Useful, for the common pattern: if ...; then log something.
+
+
177#define HIGHFIVE_LOG_INFO_IF(cond, message) \
+
178 if ((cond)) { \
+
179 HIGHFIVE_LOG_INFO((message)); \
+
180 }
+
+
181
+
182#else
+
183#define HIGHFIVE_LOG_INFO(message) ;
+
184#define HIGHFIVE_LOG_INFO_IF(cond, message) ;
+
185#endif
+
186
+
187
+
188#if HIGHFIVE_LOG_LEVEL <= HIGHFIVE_LOG_LEVEL_WARN
+
+
189#define HIGHFIVE_LOG_WARN(message) \
+
190 ::HighFive::detail::log(::HighFive::LogSeverity::Warn, (message), __FILE__, __LINE__);
+
+
191
+
192// Useful, for the common pattern: if ...; then log something.
+
+
193#define HIGHFIVE_LOG_WARN_IF(cond, message) \
+
194 if ((cond)) { \
+
195 HIGHFIVE_LOG_WARN((message)); \
+
196 }
+
+
197
+
198#else
+
199#define HIGHFIVE_LOG_WARN(message) ;
+
200#define HIGHFIVE_LOG_WARN_IF(cond, message) ;
+
201#endif
+
202
+
203#if HIGHFIVE_LOG_LEVEL <= HIGHFIVE_LOG_LEVEL_ERROR
+
+
204#define HIGHFIVE_LOG_ERROR(message) \
+
205 ::HighFive::detail::log(::HighFive::LogSeverity::Error, (message), __FILE__, __LINE__);
+
+
206
+
207// Useful, for the common pattern: if ...; then log something.
+
+
208#define HIGHFIVE_LOG_ERROR_IF(cond, message) \
+
209 if ((cond)) { \
+
210 HIGHFIVE_LOG_ERROR((message)); \
+
211 }
+
+
212
+
213#else
+
214#define HIGHFIVE_LOG_ERROR(message) ;
+
215#define HIGHFIVE_LOG_ERROR_IF(cond, message) ;
+
216#endif
+
217
+
218} // namespace HighFive
+ +
#define HIGHFIVE_LOG_LEVEL_WARN
Definition H5Utility.hpp:46
+
#define HIGHFIVE_LOG_LEVEL_ERROR
Definition H5Utility.hpp:47
+
#define HIGHFIVE_LOG_LEVEL_DEBUG
Definition H5Utility.hpp:44
+
#define HIGHFIVE_LOG_LEVEL_INFO
Definition H5Utility.hpp:45
+
A logger with supporting basic functionality.
Definition H5Utility.hpp:89
+
Logger(const Logger &)=delete
+
std::function< void(LogSeverity, const std::string &, const std::string &, int)> callback_type
Definition H5Utility.hpp:91
+
Logger & operator=(const Logger &)=delete
+
void set_logging_callback(callback_type cb)
Definition H5Utility.hpp:112
+
Logger(Logger &&)=delete
+
Logger(callback_type cb)
Definition H5Utility.hpp:99
+ +
Logger & operator=(Logger &&)=delete
+
void log(LogSeverity severity, const std::string &message, const std::string &file, int line)
Definition H5Utility.hpp:105
+
Utility class to disable HDF5 stack printing inside a scope.
Definition H5Utility.hpp:24
+
~SilenceHDF5()
Definition H5Utility.hpp:35
+
SilenceHDF5(bool enable=true)
Definition H5Utility.hpp:26
+ +
Definition H5_definitions.hpp:22
+
void register_logging_callback(Logger::callback_type cb)
Sets the callback that's used by the logger.
Definition H5Utility.hpp:141
+
LogSeverity
Definition H5Utility.hpp:53
+ + + + +
void default_logging_callback(LogSeverity severity, const std::string &message, const std::string &file, int line)
Definition H5Utility.hpp:120
+
std::string to_string(LogSeverity severity)
Definition H5Utility.hpp:60
+
Logger & get_global_logger()
Obtain a reference to the logger used by HighFive.
Definition H5Utility.hpp:135
+
+
+ + + + diff --git a/_h5_utils_8hpp.html b/_h5_utils_8hpp.html new file mode 100644 index 000000000..180eebc42 --- /dev/null +++ b/_h5_utils_8hpp.html @@ -0,0 +1,300 @@ + + + + + + + +HighFive: highfive/bits/H5Utils.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Utils.hpp File Reference
+
+
+
#include <algorithm>
+#include <array>
+#include <cstddef>
+#include <exception>
+#include <string>
+#include <type_traits>
+#include <vector>
+#include <sstream>
+#include <H5public.h>
+#include "../H5Exception.hpp"
+#include "H5Friends.hpp"
+
+Include dependency graph for H5Utils.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + + + +

+Namespaces

namespace  HighFive
 
namespace  HighFive::deprecated
 
+
+
+ + + + diff --git a/_h5_utils_8hpp__dep__incl.map b/_h5_utils_8hpp__dep__incl.map new file mode 100644 index 000000000..d66f07ced --- /dev/null +++ b/_h5_utils_8hpp__dep__incl.map @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_utils_8hpp__dep__incl.md5 b/_h5_utils_8hpp__dep__incl.md5 new file mode 100644 index 000000000..bdee82ea4 --- /dev/null +++ b/_h5_utils_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +7821d42d868ffccb51ffb8d71dfe3ba4 \ No newline at end of file diff --git a/_h5_utils_8hpp__dep__incl.png b/_h5_utils_8hpp__dep__incl.png new file mode 100644 index 000000000..84fae0545 Binary files /dev/null and b/_h5_utils_8hpp__dep__incl.png differ diff --git a/_h5_utils_8hpp__incl.map b/_h5_utils_8hpp__incl.map new file mode 100644 index 000000000..2089bc89d --- /dev/null +++ b/_h5_utils_8hpp__incl.map @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_h5_utils_8hpp__incl.md5 b/_h5_utils_8hpp__incl.md5 new file mode 100644 index 000000000..4fcbe3649 --- /dev/null +++ b/_h5_utils_8hpp__incl.md5 @@ -0,0 +1 @@ +f6398acfb62847e51543e607a970fcd9 \ No newline at end of file diff --git a/_h5_utils_8hpp__incl.png b/_h5_utils_8hpp__incl.png new file mode 100644 index 000000000..825d2caa0 Binary files /dev/null and b/_h5_utils_8hpp__incl.png differ diff --git a/_h5_utils_8hpp_source.html b/_h5_utils_8hpp_source.html new file mode 100644 index 000000000..b662d70bb --- /dev/null +++ b/_h5_utils_8hpp_source.html @@ -0,0 +1,202 @@ + + + + + + + +HighFive: highfive/bits/H5Utils.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Utils.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
+
3 *
+
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// internal utilities functions
+
12#include <algorithm>
+
13#include <array>
+
14#include <cstddef> // __GLIBCXX__
+
15#include <exception>
+
16#include <string>
+
17#include <type_traits>
+
18#include <vector>
+
19#include <sstream>
+
20
+
21#include <H5public.h>
+
22
+
23#include "../H5Exception.hpp"
+
24#include "H5Friends.hpp"
+
25
+
26namespace HighFive {
+
27
+
28namespace deprecated {
+
29// If ever used, recognize dimensions of FixedLenStringArray
+
30template <std::size_t N>
+
31class FixedLenStringArray;
+
32} // namespace deprecated
+
33
+
34namespace details {
+
35// converter function for hsize_t -> size_t when hsize_t != size_t
+
36template <typename Size>
+
37inline std::vector<std::size_t> to_vector_size_t(const std::vector<Size>& vec) {
+
38 static_assert(std::is_same<Size, std::size_t>::value == false,
+
39 " hsize_t != size_t mandatory here");
+
40 std::vector<size_t> res(vec.size());
+
41 std::transform(vec.cbegin(), vec.cend(), res.begin(), [](Size e) {
+
42 return static_cast<size_t>(e);
+
43 });
+
44 return res;
+
45}
+
46
+
47// converter function for hsize_t -> size_t when size_t == hsize_t
+
48inline std::vector<std::size_t> to_vector_size_t(const std::vector<std::size_t>& vec) {
+
49 return vec;
+
50}
+
51
+
52// read name from a H5 object using the specified function
+
53template <typename T>
+
54inline std::string get_name(T fct) {
+
55 const size_t maxLength = 255;
+
56 char buffer[maxLength + 1];
+
57 ssize_t retcode = fct(buffer, static_cast<hsize_t>(maxLength) + 1);
+
58 if (retcode < 0) {
+
59 HDF5ErrMapper::ToException<GroupException>("Error accessing object name");
+
60 }
+
61 const size_t length = static_cast<std::size_t>(retcode);
+
62 if (length <= maxLength) {
+
63 return std::string(buffer, length);
+
64 }
+
65 std::vector<char> bigBuffer(length + 1, 0);
+
66 fct(bigBuffer.data(), length + 1);
+
67 return std::string(bigBuffer.data(), length);
+
68}
+
69
+
70template <class Container>
+
71inline std::string format_vector(const Container& container) {
+
72 auto sout = std::stringstream{};
+
73
+
74 sout << "[ ";
+
75 for (size_t i = 0; i < container.size(); ++i) {
+
76 sout << container[i] << (i == container.size() - 1 ? "" : ", ");
+
77 }
+
78 sout << "]";
+
79
+
80 return sout.str();
+
81}
+
82
+
83} // namespace details
+
84} // namespace HighFive
+ + +
Definition H5_definitions.hpp:22
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/_h5_version_8hpp.html b/_h5_version_8hpp.html new file mode 100644 index 000000000..0edeb5d2a --- /dev/null +++ b/_h5_version_8hpp.html @@ -0,0 +1,221 @@ + + + + + + + +HighFive: highfive/H5Version.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Version.hpp File Reference
+
+
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + +
+
+

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Macros

#define HIGHFIVE_VERSION_MAJOR   2
 
#define HIGHFIVE_VERSION_MINOR   9
 
#define HIGHFIVE_VERSION_PATCH   0
 
#define HIGHFIVE_VERSION   2.9.0
 Concatenated representation of the HighFive version.
 
#define HIGHFIVE_VERSION_STRING   "2.9.0"
 String representation of the HighFive version.
 
+

Macro Definition Documentation

+ +

◆ HIGHFIVE_VERSION

+ +
+
+ + + + +
#define HIGHFIVE_VERSION   2.9.0
+
+ +

Concatenated representation of the HighFive version.

+
Warning
The macro HIGHFIVE_VERSION by itself isn't valid C/C++.
+

However, it can be stringified with two layers of macros, e.g.,

#define STRINGIFY_VALUE(s) STRINGIFY_NAME(s)
+
#define STRINGIFY_NAME(s) #s
+
+
std::cout << STRINGIFY_VALUE(HIGHFIVE_VERSION) << "\n";
+
#define HIGHFIVE_VERSION
Concatenated representation of the HighFive version.
Definition H5Version.hpp:27
+
+
+
+ +

◆ HIGHFIVE_VERSION_MAJOR

+ +
+
+ + + + +
#define HIGHFIVE_VERSION_MAJOR   2
+
+ +
+
+ +

◆ HIGHFIVE_VERSION_MINOR

+ +
+
+ + + + +
#define HIGHFIVE_VERSION_MINOR   9
+
+ +
+
+ +

◆ HIGHFIVE_VERSION_PATCH

+ +
+
+ + + + +
#define HIGHFIVE_VERSION_PATCH   0
+
+ +
+
+ +

◆ HIGHFIVE_VERSION_STRING

+ +
+
+ + + + +
#define HIGHFIVE_VERSION_STRING   "2.9.0"
+
+ +

String representation of the HighFive version.

+
Warning
This macro only exists from 2.7.1 onwards.
+ +
+
+
+
+ + + + diff --git a/_h5_version_8hpp.js b/_h5_version_8hpp.js new file mode 100644 index 000000000..487e63c03 --- /dev/null +++ b/_h5_version_8hpp.js @@ -0,0 +1,8 @@ +var _h5_version_8hpp = +[ + [ "HIGHFIVE_VERSION", "_h5_version_8hpp.html#a34c5e47396e70779257b4db31ac7b842", null ], + [ "HIGHFIVE_VERSION_MAJOR", "_h5_version_8hpp.html#acbea9a5d26e85ae32c220007e9a8f4b2", null ], + [ "HIGHFIVE_VERSION_MINOR", "_h5_version_8hpp.html#ad6bd311c44f04b43f52c0e74cefc6e7a", null ], + [ "HIGHFIVE_VERSION_PATCH", "_h5_version_8hpp.html#ab47cd23c1c1cf25b17b14eacc9866d89", null ], + [ "HIGHFIVE_VERSION_STRING", "_h5_version_8hpp.html#aaa84ff2fb9a733a1dd79e654e0839702", null ] +]; \ No newline at end of file diff --git a/_h5_version_8hpp__dep__incl.map b/_h5_version_8hpp__dep__incl.map new file mode 100644 index 000000000..c9882da1f --- /dev/null +++ b/_h5_version_8hpp__dep__incl.map @@ -0,0 +1,5 @@ + + + + + diff --git a/_h5_version_8hpp__dep__incl.md5 b/_h5_version_8hpp__dep__incl.md5 new file mode 100644 index 000000000..1dd6306cb --- /dev/null +++ b/_h5_version_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +670b3c957d406b2b7a83b4ff5291cca4 \ No newline at end of file diff --git a/_h5_version_8hpp__dep__incl.png b/_h5_version_8hpp__dep__incl.png new file mode 100644 index 000000000..02c2d4cae Binary files /dev/null and b/_h5_version_8hpp__dep__incl.png differ diff --git a/_h5_version_8hpp_source.html b/_h5_version_8hpp_source.html new file mode 100644 index 000000000..90acd33b8 --- /dev/null +++ b/_h5_version_8hpp_source.html @@ -0,0 +1,131 @@ + + + + + + + +HighFive: highfive/H5Version.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Version.hpp
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c), 2020
+
3 *
+
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#define HIGHFIVE_VERSION_MAJOR 2
+
12#define HIGHFIVE_VERSION_MINOR 9
+
13#define HIGHFIVE_VERSION_PATCH 0
+
14
+
27#define HIGHFIVE_VERSION 2.9.0
+
28
+
33#define HIGHFIVE_VERSION_STRING "2.9.0"
+
+
+ + + + diff --git a/_r_e_a_d_m_e_8md.html b/_r_e_a_d_m_e_8md.html new file mode 100644 index 000000000..a8cf6f911 --- /dev/null +++ b/_r_e_a_d_m_e_8md.html @@ -0,0 +1,109 @@ + + + + + + + +HighFive: /home/runner/work/HighFive/HighFive/README.md File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
/home/runner/work/HighFive/HighFive/README.md File Reference
+
+
+
+
+ + + + diff --git a/annotated.html b/annotated.html new file mode 100644 index 000000000..12fe5300d --- /dev/null +++ b/annotated.html @@ -0,0 +1,181 @@ + + + + + + + +HighFive: Class List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Class List
+
+
+
Here are the classes, structs, unions and interfaces with brief descriptions:
+
[detail level 123]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 NH5EasyRead/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated, and accept:
 CCompressionSignal to set compression level for written DataSets
 CDumpOptionsDefine options for dumping data
 NHighFive
 Ndeprecated
 CFixedLenStringArrayA structure representing a set of fixed-length strings
 CAllocationTimeWhen are datasets allocated?
 CAnnotateTraits
 CAtomicTypeCreate an HDF5 DataType from a C++ type
 CAtomicType< char[StrLen]>
 CAtomicType< deprecated::FixedLenStringArray< StrLen > >
 CAtomicType< std::complex< T > >
 CAttributeClass representing an Attribute of a DataSet or Group
 CAttributeExceptionException specific to HighFive Attribute interface
 CAttributePhaseChangeSet threshold for attribute storage
 CCaching
 CChunking
 CCompoundTypeCreate a compound HDF5 datatype
 Cmember_defUse for defining a sub-type of compound type
 CCreateIntermediateGroup
 CCreationOrder
 CDataSetClass representing a dataset
 CDataSetExceptionException specific to HighFive DataSet interface
 CDataSpaceClass representing the space (dimensions) of a DataSet
 CDataSpaceExceptionException specific to HighFive DataSpace interface
 CDataTypeHDF5 Data Type
 CDataTypeExceptionException specific to HighFive DataType interface
 CDeflate
 CElementSet
 CEnumTypeCreate a enum HDF5 datatype
 Cmember_defUse for defining a member of enum type
 CEstimatedLinkInfoSet hints as to how many links to expect and their average length
 CExceptionBasic HighFive Exception class
 CFileFile class
 CFileDriverFile driver base concept
 CFileExceptionException specific to HighFive File interface
 CFileVersionBoundsConfigure the version bounds for the file
 CFixedLengthStringType
 CGroupRepresents an hdf5 group
 CGroupExceptionException specific to HighFive Group interface
 CHDF5ErrMapper
 CHyperSlab
 CLinkCreationOrderTrack and index creation order time
 CLoggerA logger with supporting basic functionality
 CMetadataBlockSizeConfigure the metadata block size to use writing to files
 CMPIOFileAccessConfigure MPI access for the file
 CMPIOFileDriverMPIIO Driver for Parallel HDF5
 CMpioNoCollectiveCauseThe cause for non-collective I/O
 CNodeTraitsNodeTraits: Base class for Group and File
 CObject
 CObjectExceptionException specific to HighFive Object interface
 CObjectInfoA class for accessing hdf5 objects info
 CPathTraits
 CPropertyExceptionException specific to HighFive Property interface
 CPropertyListHDF5 property Lists
 CPropertyListBaseBase Class for Property lists, providing global default
 CRawPropertyList
 CReferenceAn HDF5 (object) reference type
 CReferenceExceptionException specific to HighFive Reference interface
 CRegularHyperSlab
 CSelectionSelection: represent a view on a slice/part of a dataset
 CShuffle
 CSilenceHDF5Utility class to disable HDF5 stack printing inside a scope
 CSliceTraits
 CStringType
 CSzip
 CUseCollectiveIO
 CVariableLengthStringType
 CPropertyInterfaceHDF5 file property object
+
+
+
+ + + + diff --git a/annotated_dup.js b/annotated_dup.js new file mode 100644 index 000000000..d3e05356e --- /dev/null +++ b/annotated_dup.js @@ -0,0 +1,73 @@ +var annotated_dup = +[ + [ "H5Easy", "namespace_h5_easy.html", [ + [ "Compression", "class_h5_easy_1_1_compression.html", "class_h5_easy_1_1_compression" ], + [ "DumpOptions", "class_h5_easy_1_1_dump_options.html", "class_h5_easy_1_1_dump_options" ] + ] ], + [ "HighFive", "namespace_high_five.html", [ + [ "deprecated", "namespace_high_five_1_1deprecated.html", [ + [ "FixedLenStringArray", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html", "class_high_five_1_1deprecated_1_1_fixed_len_string_array" ] + ] ], + [ "AllocationTime", "class_high_five_1_1_allocation_time.html", "class_high_five_1_1_allocation_time" ], + [ "AnnotateTraits", "class_high_five_1_1_annotate_traits.html", "class_high_five_1_1_annotate_traits" ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html", "class_high_five_1_1_atomic_type" ], + [ "AtomicType< char[StrLen]>", "class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4.html", "class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4" ], + [ "AtomicType< deprecated::FixedLenStringArray< StrLen > >", "class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4.html", "class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4" ], + [ "AtomicType< std::complex< T > >", "class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4.html", "class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4" ], + [ "Attribute", "class_high_five_1_1_attribute.html", "class_high_five_1_1_attribute" ], + [ "AttributeException", "class_high_five_1_1_attribute_exception.html", "class_high_five_1_1_attribute_exception" ], + [ "AttributePhaseChange", "class_high_five_1_1_attribute_phase_change.html", "class_high_five_1_1_attribute_phase_change" ], + [ "Caching", "class_high_five_1_1_caching.html", "class_high_five_1_1_caching" ], + [ "Chunking", "class_high_five_1_1_chunking.html", "class_high_five_1_1_chunking" ], + [ "CompoundType", "class_high_five_1_1_compound_type.html", "class_high_five_1_1_compound_type" ], + [ "CreateIntermediateGroup", "class_high_five_1_1_create_intermediate_group.html", "class_high_five_1_1_create_intermediate_group" ], + [ "CreationOrder", "struct_high_five_1_1_creation_order.html", "struct_high_five_1_1_creation_order" ], + [ "DataSet", "class_high_five_1_1_data_set.html", "class_high_five_1_1_data_set" ], + [ "DataSetException", "class_high_five_1_1_data_set_exception.html", "class_high_five_1_1_data_set_exception" ], + [ "DataSpace", "class_high_five_1_1_data_space.html", "class_high_five_1_1_data_space" ], + [ "DataSpaceException", "class_high_five_1_1_data_space_exception.html", "class_high_five_1_1_data_space_exception" ], + [ "DataType", "class_high_five_1_1_data_type.html", "class_high_five_1_1_data_type" ], + [ "DataTypeException", "class_high_five_1_1_data_type_exception.html", "class_high_five_1_1_data_type_exception" ], + [ "Deflate", "class_high_five_1_1_deflate.html", "class_high_five_1_1_deflate" ], + [ "ElementSet", "class_high_five_1_1_element_set.html", "class_high_five_1_1_element_set" ], + [ "EnumType", "class_high_five_1_1_enum_type.html", "class_high_five_1_1_enum_type" ], + [ "EstimatedLinkInfo", "class_high_five_1_1_estimated_link_info.html", "class_high_five_1_1_estimated_link_info" ], + [ "Exception", "class_high_five_1_1_exception.html", "class_high_five_1_1_exception" ], + [ "File", "class_high_five_1_1_file.html", "class_high_five_1_1_file" ], + [ "FileDriver", "class_high_five_1_1_file_driver.html", null ], + [ "FileException", "class_high_five_1_1_file_exception.html", "class_high_five_1_1_file_exception" ], + [ "FileVersionBounds", "class_high_five_1_1_file_version_bounds.html", "class_high_five_1_1_file_version_bounds" ], + [ "FixedLengthStringType", "class_high_five_1_1_fixed_length_string_type.html", "class_high_five_1_1_fixed_length_string_type" ], + [ "Group", "class_high_five_1_1_group.html", "class_high_five_1_1_group" ], + [ "GroupException", "class_high_five_1_1_group_exception.html", "class_high_five_1_1_group_exception" ], + [ "HDF5ErrMapper", "struct_high_five_1_1_h_d_f5_err_mapper.html", null ], + [ "HyperSlab", "class_high_five_1_1_hyper_slab.html", "class_high_five_1_1_hyper_slab" ], + [ "LinkCreationOrder", "class_high_five_1_1_link_creation_order.html", "class_high_five_1_1_link_creation_order" ], + [ "Logger", "class_high_five_1_1_logger.html", "class_high_five_1_1_logger" ], + [ "MetadataBlockSize", "class_high_five_1_1_metadata_block_size.html", "class_high_five_1_1_metadata_block_size" ], + [ "MPIOFileAccess", "class_high_five_1_1_m_p_i_o_file_access.html", "class_high_five_1_1_m_p_i_o_file_access" ], + [ "MPIOFileDriver", "class_high_five_1_1_m_p_i_o_file_driver.html", "class_high_five_1_1_m_p_i_o_file_driver" ], + [ "MpioNoCollectiveCause", "class_high_five_1_1_mpio_no_collective_cause.html", "class_high_five_1_1_mpio_no_collective_cause" ], + [ "NodeTraits", "class_high_five_1_1_node_traits.html", "class_high_five_1_1_node_traits" ], + [ "Object", "class_high_five_1_1_object.html", "class_high_five_1_1_object" ], + [ "ObjectException", "class_high_five_1_1_object_exception.html", "class_high_five_1_1_object_exception" ], + [ "ObjectInfo", "class_high_five_1_1_object_info.html", "class_high_five_1_1_object_info" ], + [ "PathTraits", "class_high_five_1_1_path_traits.html", "class_high_five_1_1_path_traits" ], + [ "PropertyException", "class_high_five_1_1_property_exception.html", "class_high_five_1_1_property_exception" ], + [ "PropertyList", "class_high_five_1_1_property_list.html", "class_high_five_1_1_property_list" ], + [ "PropertyListBase", "class_high_five_1_1_property_list_base.html", "class_high_five_1_1_property_list_base" ], + [ "RawPropertyList", "class_high_five_1_1_raw_property_list.html", "class_high_five_1_1_raw_property_list" ], + [ "Reference", "class_high_five_1_1_reference.html", "class_high_five_1_1_reference" ], + [ "ReferenceException", "class_high_five_1_1_reference_exception.html", "class_high_five_1_1_reference_exception" ], + [ "RegularHyperSlab", "struct_high_five_1_1_regular_hyper_slab.html", "struct_high_five_1_1_regular_hyper_slab" ], + [ "Selection", "class_high_five_1_1_selection.html", "class_high_five_1_1_selection" ], + [ "Shuffle", "class_high_five_1_1_shuffle.html", "class_high_five_1_1_shuffle" ], + [ "SilenceHDF5", "class_high_five_1_1_silence_h_d_f5.html", "class_high_five_1_1_silence_h_d_f5" ], + [ "SliceTraits", "class_high_five_1_1_slice_traits.html", "class_high_five_1_1_slice_traits" ], + [ "StringType", "class_high_five_1_1_string_type.html", "class_high_five_1_1_string_type" ], + [ "Szip", "class_high_five_1_1_szip.html", "class_high_five_1_1_szip" ], + [ "UseCollectiveIO", "class_high_five_1_1_use_collective_i_o.html", "class_high_five_1_1_use_collective_i_o" ], + [ "VariableLengthStringType", "class_high_five_1_1_variable_length_string_type.html", "class_high_five_1_1_variable_length_string_type" ] + ] ], + [ "PropertyInterface", "interface_property_interface.html", null ] +]; \ No newline at end of file diff --git a/bc_s.png b/bc_s.png new file mode 100644 index 000000000..224b29aa9 Binary files /dev/null and b/bc_s.png differ diff --git a/bc_sd.png b/bc_sd.png new file mode 100644 index 000000000..31ca888dc Binary files /dev/null and b/bc_sd.png differ diff --git a/boost_8hpp.html b/boost_8hpp.html new file mode 100644 index 000000000..0f44f86e8 --- /dev/null +++ b/boost_8hpp.html @@ -0,0 +1,266 @@ + + + + + + + +HighFive: highfive/boost.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
boost.hpp File Reference
+
+
+
#include "bits/H5Inspector_decl.hpp"
+#include "H5Exception.hpp"
+#include <boost/multi_array.hpp>
+#include <boost/serialization/vector.hpp>
+#include <boost/numeric/ublas/matrix.hpp>
+
+Include dependency graph for boost.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/boost_8hpp__dep__incl.map b/boost_8hpp__dep__incl.map new file mode 100644 index 000000000..c7c5c1197 --- /dev/null +++ b/boost_8hpp__dep__incl.map @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/boost_8hpp__dep__incl.md5 b/boost_8hpp__dep__incl.md5 new file mode 100644 index 000000000..f1c9333a9 --- /dev/null +++ b/boost_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +3ee2d70a50ee69e113b66daf0d69f304 \ No newline at end of file diff --git a/boost_8hpp__dep__incl.png b/boost_8hpp__dep__incl.png new file mode 100644 index 000000000..341ec022f Binary files /dev/null and b/boost_8hpp__dep__incl.png differ diff --git a/boost_8hpp__incl.map b/boost_8hpp__incl.map new file mode 100644 index 000000000..485708943 --- /dev/null +++ b/boost_8hpp__incl.map @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/boost_8hpp__incl.md5 b/boost_8hpp__incl.md5 new file mode 100644 index 000000000..3c08da680 --- /dev/null +++ b/boost_8hpp__incl.md5 @@ -0,0 +1 @@ +063b296bb08f4e4e65fc8b50d2c727c4 \ No newline at end of file diff --git a/boost_8hpp__incl.png b/boost_8hpp__incl.png new file mode 100644 index 000000000..fff4cfb3b Binary files /dev/null and b/boost_8hpp__incl.png differ diff --git a/boost_8hpp_source.html b/boost_8hpp_source.html new file mode 100644 index 000000000..3bd3f997d --- /dev/null +++ b/boost_8hpp_source.html @@ -0,0 +1,283 @@ + + + + + + + +HighFive: highfive/boost.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
boost.hpp
+
+
+Go to the documentation of this file.
1#pragma once
+
2#ifdef H5_USE_BOOST
+
3
+ +
5#include "H5Exception.hpp"
+
6
+
7#include <boost/multi_array.hpp>
+
8// starting Boost 1.64, serialization header must come before ublas
+
9#include <boost/serialization/vector.hpp>
+
10#include <boost/numeric/ublas/matrix.hpp>
+
11
+
12namespace HighFive {
+
13namespace details {
+
14
+
15template <typename T, size_t Dims>
+
16struct inspector<boost::multi_array<T, Dims>> {
+
17 using type = boost::multi_array<T, Dims>;
+
18 using value_type = T;
+
19 using base_type = typename inspector<value_type>::base_type;
+
20 using hdf5_type = typename inspector<value_type>::hdf5_type;
+
21
+
22 static constexpr size_t ndim = Dims;
+
23 static constexpr size_t recursive_ndim = ndim + inspector<value_type>::recursive_ndim;
+
24 static constexpr bool is_trivially_copyable = std::is_trivially_copyable<value_type>::value &&
+
25 inspector<value_type>::is_trivially_copyable;
+
26
+
27 static std::vector<size_t> getDimensions(const type& val) {
+
28 std::vector<size_t> sizes;
+
29 for (size_t i = 0; i < ndim; ++i) {
+
30 sizes.push_back(val.shape()[i]);
+
31 }
+
32 auto s = inspector<value_type>::getDimensions(val.data()[0]);
+
33 sizes.insert(sizes.end(), s.begin(), s.end());
+
34 return sizes;
+
35 }
+
36
+
37 static size_t getSizeVal(const type& val) {
+
38 return compute_total_size(getDimensions(val));
+
39 }
+
40
+
41 static size_t getSize(const std::vector<size_t>& dims) {
+
42 return compute_total_size(dims);
+
43 }
+
44
+
45 static void prepare(type& val, const std::vector<size_t>& dims) {
+
46 if (dims.size() < ndim) {
+
47 std::ostringstream os;
+
48 os << "Only '" << dims.size() << "' given but boost::multi_array is of size '" << ndim
+
49 << "'.";
+
50 throw DataSpaceException(os.str());
+
51 }
+
52 boost::array<typename type::index, Dims> ext;
+
53 std::copy(dims.begin(), dims.begin() + ndim, ext.begin());
+
54 val.resize(ext);
+
55 std::vector<size_t> next_dims(dims.begin() + Dims, dims.end());
+
56 std::size_t size = std::accumulate(dims.begin(),
+
57 dims.begin() + Dims,
+
58 std::size_t{1},
+
59 std::multiplies<size_t>());
+
60 for (size_t i = 0; i < size; ++i) {
+
61 inspector<value_type>::prepare(*(val.origin() + i), next_dims);
+
62 }
+
63 }
+
64
+
65 static hdf5_type* data(type& val) {
+
66 return inspector<value_type>::data(*val.data());
+
67 }
+
68
+
69 static const hdf5_type* data(const type& val) {
+
70 return inspector<value_type>::data(*val.data());
+
71 }
+
72
+
73 template <class It>
+
74 static void serialize(const type& val, It m) {
+
75 size_t size = val.num_elements();
+
76 size_t subsize = inspector<value_type>::getSizeVal(*val.origin());
+
77 for (size_t i = 0; i < size; ++i) {
+
78 inspector<value_type>::serialize(*(val.origin() + i), m + i * subsize);
+
79 }
+
80 }
+
81
+
82 template <class It>
+
83 static void unserialize(It vec_align, const std::vector<size_t>& dims, type& val) {
+
84 std::vector<size_t> next_dims(dims.begin() + ndim, dims.end());
+
85 size_t subsize = compute_total_size(next_dims);
+
86 for (size_t i = 0; i < val.num_elements(); ++i) {
+
87 inspector<value_type>::unserialize(vec_align + i * subsize,
+
88 next_dims,
+
89 *(val.origin() + i));
+
90 }
+
91 }
+
92};
+
93
+
94template <typename T>
+
95struct inspector<boost::numeric::ublas::matrix<T>> {
+
96 using type = boost::numeric::ublas::matrix<T>;
+
97 using value_type = unqualified_t<T>;
+
98 using base_type = typename inspector<value_type>::base_type;
+
99 using hdf5_type = typename inspector<value_type>::hdf5_type;
+
100
+
101 static constexpr size_t ndim = 2;
+
102 static constexpr size_t recursive_ndim = ndim + inspector<value_type>::recursive_ndim;
+
103 static constexpr bool is_trivially_copyable = std::is_trivially_copyable<value_type>::value &&
+
104 inspector<value_type>::is_trivially_copyable;
+
105
+
106 static std::vector<size_t> getDimensions(const type& val) {
+
107 std::vector<size_t> sizes{val.size1(), val.size2()};
+
108 auto s = inspector<value_type>::getDimensions(val(0, 0));
+
109 sizes.insert(sizes.end(), s.begin(), s.end());
+
110 return sizes;
+
111 }
+
112
+
113 static size_t getSizeVal(const type& val) {
+
114 return compute_total_size(getDimensions(val));
+
115 }
+
116
+
117 static size_t getSize(const std::vector<size_t>& dims) {
+
118 return compute_total_size(dims);
+
119 }
+
120
+
121 static void prepare(type& val, const std::vector<size_t>& dims) {
+
122 if (dims.size() < ndim) {
+
123 std::ostringstream os;
+
124 os << "Impossible to pair DataSet with " << dims.size() << " dimensions into a " << ndim
+
125 << " boost::numeric::ublas::matrix";
+
126 throw DataSpaceException(os.str());
+
127 }
+
128 val.resize(dims[0], dims[1], false);
+
129 }
+
130
+
131 static hdf5_type* data(type& val) {
+
132 return inspector<value_type>::data(val(0, 0));
+
133 }
+
134
+
135 static const hdf5_type* data(const type& val) {
+
136 return inspector<value_type>::data(val(0, 0));
+
137 }
+
138
+
139 static void serialize(const type& val, hdf5_type* m) {
+
140 size_t size = val.size1() * val.size2();
+
141 size_t subsize = inspector<value_type>::getSizeVal(val(0, 0));
+
142 for (size_t i = 0; i < size; ++i) {
+
143 inspector<value_type>::serialize(*(&val(0, 0) + i), m + i * subsize);
+
144 }
+
145 }
+
146
+
147 static void unserialize(const hdf5_type* vec_align,
+
148 const std::vector<size_t>& dims,
+
149 type& val) {
+
150 std::vector<size_t> next_dims(dims.begin() + ndim, dims.end());
+
151 size_t subsize = compute_total_size(next_dims);
+
152 size_t size = val.size1() * val.size2();
+
153 for (size_t i = 0; i < size; ++i) {
+
154 inspector<value_type>::unserialize(vec_align + i * subsize,
+
155 next_dims,
+
156 *(&val(0, 0) + i));
+
157 }
+
158 }
+
159};
+
160
+
161} // namespace details
+
162} // namespace HighFive
+
163
+
164#endif
+ + +
size_t getSize(const File &file, const std::string &path)
Get the size of an existing DataSet in an open HDF5 file.
Definition H5Easy_public.hpp:82
+
Definition H5_definitions.hpp:22
+
size_t compute_total_size(const std::vector< size_t > &dims)
Definition H5Inspector_decl.hpp:10
+
+
+ + + + diff --git a/class_h5_easy_1_1_compression-members.html b/class_h5_easy_1_1_compression-members.html new file mode 100644 index 000000000..87d04da82 --- /dev/null +++ b/class_h5_easy_1_1_compression-members.html @@ -0,0 +1,114 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Easy::Compression Member List
+
+
+ +

This is the complete list of members for H5Easy::Compression, including all inherited members.

+ + + + +
Compression(bool enable=true)H5Easy::Compressioninlineexplicit
Compression(T level)H5Easy::Compressioninline
get() constH5Easy::Compressioninline
+
+ + + + diff --git a/class_h5_easy_1_1_compression.html b/class_h5_easy_1_1_compression.html new file mode 100644 index 000000000..3f73e8f99 --- /dev/null +++ b/class_h5_easy_1_1_compression.html @@ -0,0 +1,234 @@ + + + + + + + +HighFive: H5Easy::Compression Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Easy::Compression Class Reference
+
+
+ +

Signal to set compression level for written DataSets. + More...

+ +

#include <H5Easy.hpp>

+ + + + + + + + + + + + +

+Public Member Functions

 Compression (bool enable=true)
 Enable compression with the highest compression level (9). or disable compression (set compression level to 0).
 
template<class T >
 Compression (T level)
 Set compression level.
 
unsigned get () const
 Return compression level.
 
+

Detailed Description

+

Signal to set compression level for written DataSets.

+

Constructor & Destructor Documentation

+ +

◆ Compression() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
H5Easy::Compression::Compression (bool enable = true)
+
+inlineexplicit
+
+ +

Enable compression with the highest compression level (9). or disable compression (set compression level to 0).

+
Parameters
+ + +
enabletrue to enable with highest compression level
+
+
+ +
+
+ +

◆ Compression() [2/2]

+ +
+
+
+template<class T >
+ + + + + +
+ + + + + + + +
H5Easy::Compression::Compression (T level)
+
+inline
+
+ +

Set compression level.

+
Parameters
+ + +
levelthe compression level
+
+
+ +
+
+

Member Function Documentation

+ +

◆ get()

+ +
+
+ + + + + +
+ + + + + + + +
unsigned H5Easy::Compression::get () const
+
+inline
+
+ +

Return compression level.

+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_h5_easy_1_1_compression.js b/class_h5_easy_1_1_compression.js new file mode 100644 index 000000000..8d1e41945 --- /dev/null +++ b/class_h5_easy_1_1_compression.js @@ -0,0 +1,6 @@ +var class_h5_easy_1_1_compression = +[ + [ "Compression", "class_h5_easy_1_1_compression.html#af85134056dad9c8b46bb51835cba11d7", null ], + [ "Compression", "class_h5_easy_1_1_compression.html#aae59d202e4dfe95c53ee626d3439f6e4", null ], + [ "get", "class_h5_easy_1_1_compression.html#a925d2e96ddbc9fc459b81ecf31fc121e", null ] +]; \ No newline at end of file diff --git a/class_h5_easy_1_1_dump_options-members.html b/class_h5_easy_1_1_dump_options-members.html new file mode 100644 index 000000000..0236cdbfb --- /dev/null +++ b/class_h5_easy_1_1_dump_options-members.html @@ -0,0 +1,125 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
H5Easy::DumpOptions Member List
+
+
+ +

This is the complete list of members for H5Easy::DumpOptions, including all inherited members.

+ + + + + + + + + + + + + + + +
compress() constH5Easy::DumpOptionsinline
DumpOptions()=defaultH5Easy::DumpOptions
DumpOptions(Args... args)H5Easy::DumpOptionsinline
flush() constH5Easy::DumpOptionsinline
getChunkSize() constH5Easy::DumpOptionsinline
getCompressionLevel() constH5Easy::DumpOptionsinline
isChunked() constH5Easy::DumpOptionsinline
overwrite() constH5Easy::DumpOptionsinline
set(DumpMode mode)H5Easy::DumpOptionsinline
set(Flush mode)H5Easy::DumpOptionsinline
set(const Compression &level)H5Easy::DumpOptionsinline
set(T arg, Args... args)H5Easy::DumpOptionsinline
setChunkSize(const std::vector< T > &shape)H5Easy::DumpOptionsinline
setChunkSize(std::initializer_list< size_t > shape)H5Easy::DumpOptionsinline
+
+ + + + diff --git a/class_h5_easy_1_1_dump_options.html b/class_h5_easy_1_1_dump_options.html new file mode 100644 index 000000000..30e010995 --- /dev/null +++ b/class_h5_easy_1_1_dump_options.html @@ -0,0 +1,616 @@ + + + + + + + +HighFive: H5Easy::DumpOptions Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
H5Easy::DumpOptions Class Reference
+
+
+ +

Define options for dumping data. + More...

+ +

#include <H5Easy.hpp>

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 DumpOptions ()=default
 Constructor: accept all default settings.
 
template<class... Args>
 DumpOptions (Args... args)
 Constructor: overwrite (some of the) defaults.
 
void set (DumpMode mode)
 Overwrite H5Easy::DumpMode setting.
 
void set (Flush mode)
 Overwrite H5Easy::Flush setting.
 
void set (const Compression &level)
 Overwrite H5Easy::Compression setting.
 
template<class T , class... Args>
void set (T arg, Args... args)
 Overwrite any setting(s).
 
template<class T >
void setChunkSize (const std::vector< T > &shape)
 Set chunk-size. If the input is rank (size) zero, automatic chunking is enabled.
 
void setChunkSize (std::initializer_list< size_t > shape)
 Set chunk-size. If the input is rank (size) zero, automatic chunking is enabled.
 
bool overwrite () const
 Get overwrite-mode.
 
bool flush () const
 Get flush-mode.
 
bool compress () const
 Get compress-mode.
 
unsigned getCompressionLevel () const
 Get compression level.
 
bool isChunked () const
 Get chunking mode: true is manually set, false if chunk-size should be computed automatically.
 
std::vector< hsize_t > getChunkSize () const
 Get chunk size. Use DumpOptions::getChunkSize to check if chunk-size should be automatically computed.
 
+

Detailed Description

+

Define options for dumping data.

+

By default:

+

Constructor & Destructor Documentation

+ +

◆ DumpOptions() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
H5Easy::DumpOptions::DumpOptions ()
+
+default
+
+ +

Constructor: accept all default settings.

+ +
+
+ +

◆ DumpOptions() [2/2]

+ +
+
+
+template<class... Args>
+ + + + + +
+ + + + + + + +
H5Easy::DumpOptions::DumpOptions (Args... args)
+
+inline
+
+ +

Constructor: overwrite (some of the) defaults.

+
Parameters
+ + +
argsany of DumpMode(), Flush(), Compression() in arbitrary number and order.
+
+
+ +
+
+

Member Function Documentation

+ +

◆ compress()

+ +
+
+ + + + + +
+ + + + + + + +
bool H5Easy::DumpOptions::compress () const
+
+inline
+
+ +

Get compress-mode.

+
Returns
bool
+ +
+
+ +

◆ flush()

+ +
+
+ + + + + +
+ + + + + + + +
bool H5Easy::DumpOptions::flush () const
+
+inline
+
+ +

Get flush-mode.

+
Returns
bool
+ +
+
+ +

◆ getChunkSize()

+ +
+
+ + + + + +
+ + + + + + + +
std::vector< hsize_t > H5Easy::DumpOptions::getChunkSize () const
+
+inline
+
+ +

Get chunk size. Use DumpOptions::getChunkSize to check if chunk-size should be automatically computed.

+ +
+
+ +

◆ getCompressionLevel()

+ +
+
+ + + + + +
+ + + + + + + +
unsigned H5Easy::DumpOptions::getCompressionLevel () const
+
+inline
+
+ +

Get compression level.

+
Returns
[0..9]
+ +
+
+ +

◆ isChunked()

+ +
+
+ + + + + +
+ + + + + + + +
bool H5Easy::DumpOptions::isChunked () const
+
+inline
+
+ +

Get chunking mode: true is manually set, false if chunk-size should be computed automatically.

+
Returns
bool
+ +
+
+ +

◆ overwrite()

+ +
+
+ + + + + +
+ + + + + + + +
bool H5Easy::DumpOptions::overwrite () const
+
+inline
+
+ +

Get overwrite-mode.

+
Returns
bool
+ +
+
+ +

◆ set() [1/4]

+ +
+
+ + + + + +
+ + + + + + + +
void H5Easy::DumpOptions::set (const Compression & level)
+
+inline
+
+ +

Overwrite H5Easy::Compression setting.

+
Parameters
+ + +
levelCompression.
+
+
+ +
+
+ +

◆ set() [2/4]

+ +
+
+ + + + + +
+ + + + + + + +
void H5Easy::DumpOptions::set (DumpMode mode)
+
+inline
+
+ +

Overwrite H5Easy::DumpMode setting.

+
Parameters
+ + +
modeDumpMode.
+
+
+ +
+
+ +

◆ set() [3/4]

+ +
+
+ + + + + +
+ + + + + + + +
void H5Easy::DumpOptions::set (Flush mode)
+
+inline
+
+ +

Overwrite H5Easy::Flush setting.

+
Parameters
+ + +
modeFlush.
+
+
+ +
+
+ +

◆ set() [4/4]

+ +
+
+
+template<class T , class... Args>
+ + + + + +
+ + + + + + + + + + + +
void H5Easy::DumpOptions::set (T arg,
Args... args )
+
+inline
+
+ +

Overwrite any setting(s).

+
Parameters
+ + + +
argany of DumpMode(), Flush(), Compression in arbitrary number and order.
argsany of DumpMode(), Flush(), Compression in arbitrary number and order.
+
+
+ +
+
+ +

◆ setChunkSize() [1/2]

+ +
+
+
+template<class T >
+ + + + + +
+ + + + + + + +
void H5Easy::DumpOptions::setChunkSize (const std::vector< T > & shape)
+
+inline
+
+ +

Set chunk-size. If the input is rank (size) zero, automatic chunking is enabled.

+
Parameters
+ + +
shapeChunk size along each dimension.
+
+
+ +
+
+ +

◆ setChunkSize() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
void H5Easy::DumpOptions::setChunkSize (std::initializer_list< size_t > shape)
+
+inline
+
+ +

Set chunk-size. If the input is rank (size) zero, automatic chunking is enabled.

+
Parameters
+ + +
shapeChunk size along each dimension.
+
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_h5_easy_1_1_dump_options.js b/class_h5_easy_1_1_dump_options.js new file mode 100644 index 000000000..ff24466f0 --- /dev/null +++ b/class_h5_easy_1_1_dump_options.js @@ -0,0 +1,17 @@ +var class_h5_easy_1_1_dump_options = +[ + [ "DumpOptions", "class_h5_easy_1_1_dump_options.html#a692690dae0de400b885791b9ce1434b7", null ], + [ "DumpOptions", "class_h5_easy_1_1_dump_options.html#af2a89678a725e2cb33b4f4a824d102d3", null ], + [ "compress", "class_h5_easy_1_1_dump_options.html#aef7625dc82a01d05a1e2047f0325dcd1", null ], + [ "flush", "class_h5_easy_1_1_dump_options.html#a2ed02e1afc1926b7a58346b9bf2017f9", null ], + [ "getChunkSize", "class_h5_easy_1_1_dump_options.html#a68181f4e69da1dc455606d006864e088", null ], + [ "getCompressionLevel", "class_h5_easy_1_1_dump_options.html#a8c58af708cddcbaebb03fcfff6b6356c", null ], + [ "isChunked", "class_h5_easy_1_1_dump_options.html#a4329501c533ec014d987a202e09413c8", null ], + [ "overwrite", "class_h5_easy_1_1_dump_options.html#ab573397c2a0abb1dc1b9a17db6c34eb1", null ], + [ "set", "class_h5_easy_1_1_dump_options.html#ae1db6010b692e7a0c260ce86e80f5e28", null ], + [ "set", "class_h5_easy_1_1_dump_options.html#aca2b65d5fe5b5fa9bc74f62bb8c52871", null ], + [ "set", "class_h5_easy_1_1_dump_options.html#a026e6c7714cae7e1b9a93b0e39ca71d0", null ], + [ "set", "class_h5_easy_1_1_dump_options.html#aa242b2d0698060317ba538349b193656", null ], + [ "setChunkSize", "class_h5_easy_1_1_dump_options.html#af8cb0dc019344b41643cbcebb4c88f01", null ], + [ "setChunkSize", "class_h5_easy_1_1_dump_options.html#ac5fa831c573ee5a7f03aea5967cf3301", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_allocation_time-members.html b/class_high_five_1_1_allocation_time-members.html new file mode 100644 index 000000000..dd08b9460 --- /dev/null +++ b/class_high_five_1_1_allocation_time-members.html @@ -0,0 +1,114 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::AllocationTime Member List
+
+
+ +

This is the complete list of members for HighFive::AllocationTime, including all inherited members.

+ + + + +
AllocationTime(H5D_alloc_time_t alloc_time)HighFive::AllocationTimeinlineexplicit
AllocationTime(const DataSetCreateProps &dcpl)HighFive::AllocationTimeinlineexplicit
getAllocationTime()HighFive::AllocationTimeinline
+
+ + + + diff --git a/class_high_five_1_1_allocation_time.html b/class_high_five_1_1_allocation_time.html new file mode 100644 index 000000000..f2a59fbf5 --- /dev/null +++ b/class_high_five_1_1_allocation_time.html @@ -0,0 +1,231 @@ + + + + + + + +HighFive: HighFive::AllocationTime Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::AllocationTime Class Reference
+
+
+ +

When are datasets allocated? + More...

+ +

#include <H5PropertyList.hpp>

+
+Inheritance diagram for HighFive::AllocationTime:
+
+
Inheritance graph
+ + + + + +
[legend]
+
+Collaboration diagram for HighFive::AllocationTime:
+
+
Collaboration graph
+ + + + + +
[legend]
+ + + + + + + + +

+Public Member Functions

 AllocationTime (H5D_alloc_time_t alloc_time)
 
 AllocationTime (const DataSetCreateProps &dcpl)
 
H5D_alloc_time_t getAllocationTime ()
 
+

Detailed Description

+

When are datasets allocated?

+

The precise time of when HDF5 requests space to store the dataset can be configured. Please, consider the upstream documentation for H5Pset_alloc_time.

+

Constructor & Destructor Documentation

+ +

◆ AllocationTime() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AllocationTime::AllocationTime (H5D_alloc_time_t alloc_time)
+
+inlineexplicit
+
+ +
+
+ +

◆ AllocationTime() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AllocationTime::AllocationTime (const DataSetCreateProps & dcpl)
+
+inlineexplicit
+
+ +
+
+

Member Function Documentation

+ +

◆ getAllocationTime()

+ +
+
+ + + + + +
+ + + + + + + +
H5D_alloc_time_t HighFive::AllocationTime::getAllocationTime ()
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_allocation_time.js b/class_high_five_1_1_allocation_time.js new file mode 100644 index 000000000..696ed56f4 --- /dev/null +++ b/class_high_five_1_1_allocation_time.js @@ -0,0 +1,6 @@ +var class_high_five_1_1_allocation_time = +[ + [ "AllocationTime", "class_high_five_1_1_allocation_time.html#aa9b8f91669815c7579e952f1ab5d7c64", null ], + [ "AllocationTime", "class_high_five_1_1_allocation_time.html#a6855f0c3f6c66d4c1ec41d95aebb2ad3", null ], + [ "getAllocationTime", "class_high_five_1_1_allocation_time.html#a0fee45a52a542fedaa06300e177f7f01", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_allocation_time__coll__graph.map b/class_high_five_1_1_allocation_time__coll__graph.map new file mode 100644 index 000000000..d2a2a2d84 --- /dev/null +++ b/class_high_five_1_1_allocation_time__coll__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_allocation_time__coll__graph.md5 b/class_high_five_1_1_allocation_time__coll__graph.md5 new file mode 100644 index 000000000..f598da719 --- /dev/null +++ b/class_high_five_1_1_allocation_time__coll__graph.md5 @@ -0,0 +1 @@ +ab2e83a5da2561194bb61326d8b2b3bf \ No newline at end of file diff --git a/class_high_five_1_1_allocation_time__coll__graph.png b/class_high_five_1_1_allocation_time__coll__graph.png new file mode 100644 index 000000000..fd6d4aa62 Binary files /dev/null and b/class_high_five_1_1_allocation_time__coll__graph.png differ diff --git a/class_high_five_1_1_allocation_time__inherit__graph.map b/class_high_five_1_1_allocation_time__inherit__graph.map new file mode 100644 index 000000000..d2a2a2d84 --- /dev/null +++ b/class_high_five_1_1_allocation_time__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_allocation_time__inherit__graph.md5 b/class_high_five_1_1_allocation_time__inherit__graph.md5 new file mode 100644 index 000000000..f598da719 --- /dev/null +++ b/class_high_five_1_1_allocation_time__inherit__graph.md5 @@ -0,0 +1 @@ +ab2e83a5da2561194bb61326d8b2b3bf \ No newline at end of file diff --git a/class_high_five_1_1_allocation_time__inherit__graph.png b/class_high_five_1_1_allocation_time__inherit__graph.png new file mode 100644 index 000000000..fd6d4aa62 Binary files /dev/null and b/class_high_five_1_1_allocation_time__inherit__graph.png differ diff --git a/class_high_five_1_1_annotate_traits-members.html b/class_high_five_1_1_annotate_traits-members.html new file mode 100644 index 000000000..2c304a81e --- /dev/null +++ b/class_high_five_1_1_annotate_traits-members.html @@ -0,0 +1,119 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::AnnotateTraits< Derivate > Member List
+
+
+ +

This is the complete list of members for HighFive::AnnotateTraits< Derivate >, including all inherited members.

+ + + + + + + + + +
createAttribute(const std::string &attribute_name, const DataSpace &space, const DataType &type)HighFive::AnnotateTraits< Derivate >inline
createAttribute(const std::string &attribute_name, const DataSpace &space)HighFive::AnnotateTraits< Derivate >inline
createAttribute(const std::string &attribute_name, const T &data)HighFive::AnnotateTraits< Derivate >inline
deleteAttribute(const std::string &attribute_name)HighFive::AnnotateTraits< Derivate >inline
getAttribute(const std::string &attribute_name) constHighFive::AnnotateTraits< Derivate >inline
getNumberAttributes() constHighFive::AnnotateTraits< Derivate >inline
hasAttribute(const std::string &attr_name) constHighFive::AnnotateTraits< Derivate >inline
listAttributeNames() constHighFive::AnnotateTraits< Derivate >inline
+
+ + + + diff --git a/class_high_five_1_1_annotate_traits.html b/class_high_five_1_1_annotate_traits.html new file mode 100644 index 000000000..64a00b385 --- /dev/null +++ b/class_high_five_1_1_annotate_traits.html @@ -0,0 +1,444 @@ + + + + + + + +HighFive: HighFive::AnnotateTraits< Derivate > Class Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::AnnotateTraits< Derivate > Class Template Reference
+
+
+ +

#include <H5Annotate_traits.hpp>

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

Attribute createAttribute (const std::string &attribute_name, const DataSpace &space, const DataType &type)
 create a new attribute with the name attribute_name
 
template<typename Type >
Attribute createAttribute (const std::string &attribute_name, const DataSpace &space)
 createAttribute create a new attribute on the current dataset with size specified by space
 
template<typename T >
Attribute createAttribute (const std::string &attribute_name, const T &data)
 createAttribute create a new attribute on the current dataset and write to it, inferring the DataSpace from data.
 
void deleteAttribute (const std::string &attribute_name)
 deleteAttribute let you delete an attribute by its name.
 
Attribute getAttribute (const std::string &attribute_name) const
 open an existing attribute with the name attribute_name
 
size_t getNumberAttributes () const
 return the number of attributes of the node / group
 
std::vector< std::string > listAttributeNames () const
 list all attribute name of the node / group
 
bool hasAttribute (const std::string &attr_name) const
 checks an attribute exists
 
+

Member Function Documentation

+ +

◆ createAttribute() [1/3]

+ +
+
+
+template<typename Derivate >
+
+template<typename Type >
+ + + + + +
+ + + + + + + + + + + +
Attribute HighFive::AnnotateTraits< Derivate >::createAttribute (const std::string & attribute_name,
const DataSpace & space )
+
+inline
+
+ +

createAttribute create a new attribute on the current dataset with size specified by space

+
Parameters
+ + + +
attribute_nameidentifier of the attribute
spaceAssociated DataSpace informations
+
+
+
Returns
Attribute Object
+ +
+
+ +

◆ createAttribute() [2/3]

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + + + + + + + + + + +
Attribute HighFive::AnnotateTraits< Derivate >::createAttribute (const std::string & attribute_name,
const DataSpace & space,
const DataType & type )
+
+inline
+
+ +

create a new attribute with the name attribute_name

+
Parameters
+ + + + +
attribute_nameidentifier of the attribute
spaceAssociated DataSpace
type
+
+
+
Returns
the attribute object
+ +
+
+ +

◆ createAttribute() [3/3]

+ +
+
+
+template<typename Derivate >
+
+template<typename T >
+ + + + + +
+ + + + + + + + + + + +
Attribute HighFive::AnnotateTraits< Derivate >::createAttribute (const std::string & attribute_name,
const T & data )
+
+inline
+
+ +

createAttribute create a new attribute on the current dataset and write to it, inferring the DataSpace from data.

+
Parameters
+ + + +
attribute_nameidentifier of the attribute
dataAssociated data to write, must support DataSpace::From, see DataSpace for more information
+
+
+
Returns
Attribute Object
+ +
+
+ +

◆ deleteAttribute()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + +
void HighFive::AnnotateTraits< Derivate >::deleteAttribute (const std::string & attribute_name)
+
+inline
+
+ +

deleteAttribute let you delete an attribute by its name.

+
Parameters
+ + +
attribute_nameidentifier of the attribute
+
+
+ +
+
+ +

◆ getAttribute()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + +
Attribute HighFive::AnnotateTraits< Derivate >::getAttribute (const std::string & attribute_name) const
+
+inline
+
+ +

open an existing attribute with the name attribute_name

+
Parameters
+ + +
attribute_nameidentifier of the attribute
+
+
+
Returns
the attribute object
+ +
+
+ +

◆ getNumberAttributes()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + +
size_t HighFive::AnnotateTraits< Derivate >::getNumberAttributes () const
+
+inline
+
+ +

return the number of attributes of the node / group

+
Returns
number of attributes
+ +
+
+ +

◆ hasAttribute()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + +
bool HighFive::AnnotateTraits< Derivate >::hasAttribute (const std::string & attr_name) const
+
+inline
+
+ +

checks an attribute exists

+
Returns
number of attributes
+ +
+
+ +

◆ listAttributeNames()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + +
std::vector< std::string > HighFive::AnnotateTraits< Derivate >::listAttributeNames () const
+
+inline
+
+ +

list all attribute name of the node / group

+
Returns
number of attributes
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_annotate_traits.js b/class_high_five_1_1_annotate_traits.js new file mode 100644 index 000000000..5b01f07ea --- /dev/null +++ b/class_high_five_1_1_annotate_traits.js @@ -0,0 +1,11 @@ +var class_high_five_1_1_annotate_traits = +[ + [ "createAttribute", "class_high_five_1_1_annotate_traits.html#a7218895780698f2bbab4d029fdab0284", null ], + [ "createAttribute", "class_high_five_1_1_annotate_traits.html#a43db973fb33b6abbd8cc8cd7a6dc4bec", null ], + [ "createAttribute", "class_high_five_1_1_annotate_traits.html#ae4e2ba30f074187856b98bdc61bbd646", null ], + [ "deleteAttribute", "class_high_five_1_1_annotate_traits.html#a6aa353a99c57bc526da0b2f1a06318b3", null ], + [ "getAttribute", "class_high_five_1_1_annotate_traits.html#ad82448659b7a92cac2e7eeb5d8b974d6", null ], + [ "getNumberAttributes", "class_high_five_1_1_annotate_traits.html#ae35a70acace4c47935400398d4671d69", null ], + [ "hasAttribute", "class_high_five_1_1_annotate_traits.html#add90f8bddb79edc973aa70f967c92724", null ], + [ "listAttributeNames", "class_high_five_1_1_annotate_traits.html#a4f19dffbf3bb1be6ba8279fb49917f22", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_atomic_type-members.html b/class_high_five_1_1_atomic_type-members.html new file mode 100644 index 000000000..18930d4ce --- /dev/null +++ b/class_high_five_1_1_atomic_type-members.html @@ -0,0 +1,153 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::AtomicType< T > Member List
+
+
+ +

This is the complete list of members for HighFive::AtomicType< T >, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
_hidHighFive::Objectprotected
asStringType() constHighFive::DataTypeinline
AtomicType()HighFive::AtomicType< T >
AtomicType()HighFive::AtomicType< T >inline
AtomicType()HighFive::AtomicType< T >inline
AtomicType()HighFive::AtomicType< T >inline
AtomicType()HighFive::AtomicType< T >inline
AtomicType()HighFive::AtomicType< T >inline
AtomicType()HighFive::AtomicType< T >inline
AtomicType()HighFive::AtomicType< T >inline
AtomicType()HighFive::AtomicType< T >inline
AtomicType()HighFive::AtomicType< T >inline
AtomicType()HighFive::AtomicType< T >inline
AtomicType()HighFive::AtomicType< T >inline
AtomicType()HighFive::AtomicType< T >inline
AtomicType()HighFive::AtomicType< T >inline
AtomicType()HighFive::AtomicType< T >inline
AtomicType()HighFive::AtomicType< T >inline
AtomicType()HighFive::AtomicType< T >inline
AtomicType()HighFive::AtomicType< T >inline
basic_type typedefHighFive::AtomicType< T >
empty() const noexceptHighFive::DataTypeinline
getClass() constHighFive::DataTypeinline
getCreatePropertyList() constHighFive::DataTypeinline
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getSize() constHighFive::DataTypeinline
getType() constHighFive::Objectinline
isFixedLenStr() constHighFive::DataTypeinline
isReference() constHighFive::DataTypeinline
isValid() const noexceptHighFive::Objectinline
isVariableStr() constHighFive::DataTypeinline
Object(Object &&other) noexceptHighFive::DataTypeinlineprotected
Object()HighFive::DataTypeinlineprotected
Object(const Object &other)HighFive::DataTypeinlineprotected
Object(hid_t)HighFive::DataTypeinlineexplicitprotected
operator!=(const DataType &other) constHighFive::DataTypeinline
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const DataType &other) constHighFive::DataTypeinline
HighFive::Object::operator==(const Object &other) const noexceptHighFive::Objectinline
string() constHighFive::DataTypeinline
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_atomic_type.html b/class_high_five_1_1_atomic_type.html new file mode 100644 index 000000000..0468227e7 --- /dev/null +++ b/class_high_five_1_1_atomic_type.html @@ -0,0 +1,733 @@ + + + + + + + +HighFive: HighFive::AtomicType< T > Class Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::AtomicType< T > Class Template Reference
+
+
+ +

create an HDF5 DataType from a C++ type + More...

+ +

#include <H5DataType.hpp>

+
+Inheritance diagram for HighFive::AtomicType< T >:
+
+
Inheritance graph
+ + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::AtomicType< T >:
+
+
Collaboration graph
+ + + + + + + +
[legend]
+ + + + +

+Public Types

using basic_type = T
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 AtomicType ()
 
 AtomicType ()
 
 AtomicType ()
 
 AtomicType ()
 
 AtomicType ()
 
 AtomicType ()
 
 AtomicType ()
 
 AtomicType ()
 
 AtomicType ()
 
 AtomicType ()
 
 AtomicType ()
 
 AtomicType ()
 
 AtomicType ()
 
 AtomicType ()
 
 AtomicType ()
 
 AtomicType ()
 
 AtomicType ()
 
 AtomicType ()
 
- Public Member Functions inherited from HighFive::DataType
bool operator== (const DataType &other) const
 
bool operator!= (const DataType &other) const
 
DataTypeClass getClass () const
 Return the fundamental type.
 
size_t getSize () const
 Returns the length (in bytes) of this type elements.
 
std::string string () const
 Returns a friendly description of the type (e.g. Float32)
 
bool isVariableStr () const
 Returns whether the type is a variable-length string.
 
bool isFixedLenStr () const
 Returns whether the type is a fixed-length string.
 
StringType asStringType () const
 Returns this datatype as a StringType.
 
bool empty () const noexcept
 Check the DataType was default constructed.
 
bool isReference () const
 Returns whether the type is a Reference.
 
DataTypeCreateProps getCreatePropertyList () const
 Get the list of properties for creation of this DataType.
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
+ + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Protected Member Functions inherited from HighFive::DataType
 Object (Object &&other) noexcept
 
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
+

Detailed Description

+
template<typename T>
+class HighFive::AtomicType< T >

create an HDF5 DataType from a C++ type

+

Support only basic data type

+

Member Typedef Documentation

+ +

◆ basic_type

+ +
+
+
+template<typename T >
+ + + + +
using HighFive::AtomicType< T >::basic_type = T
+
+ +
+
+

Constructor & Destructor Documentation

+ +

◆ AtomicType() [1/18]

+ +
+
+
+template<typename T >
+ + + + + + + +
HighFive::AtomicType< T >::AtomicType ()
+
+ +
+
+ +

◆ AtomicType() [2/18]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< char >::AtomicType ()
+
+inline
+
+ +
+
+ +

◆ AtomicType() [3/18]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< signedchar >::AtomicType ()
+
+inline
+
+ +
+
+ +

◆ AtomicType() [4/18]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< unsignedchar >::AtomicType ()
+
+inline
+
+ +
+
+ +

◆ AtomicType() [5/18]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< short >::AtomicType ()
+
+inline
+
+ +
+
+ +

◆ AtomicType() [6/18]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< unsignedshort >::AtomicType ()
+
+inline
+
+ +
+
+ +

◆ AtomicType() [7/18]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< int >::AtomicType ()
+
+inline
+
+ +
+
+ +

◆ AtomicType() [8/18]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< unsigned >::AtomicType ()
+
+inline
+
+ +
+
+ +

◆ AtomicType() [9/18]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< long >::AtomicType ()
+
+inline
+
+ +
+
+ +

◆ AtomicType() [10/18]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< unsignedlong >::AtomicType ()
+
+inline
+
+ +
+
+ +

◆ AtomicType() [11/18]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< longlong >::AtomicType ()
+
+inline
+
+ +
+
+ +

◆ AtomicType() [12/18]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< unsignedlonglong >::AtomicType ()
+
+inline
+
+ +
+
+ +

◆ AtomicType() [13/18]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< float >::AtomicType ()
+
+inline
+
+ +
+
+ +

◆ AtomicType() [14/18]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< double >::AtomicType ()
+
+inline
+
+ +
+
+ +

◆ AtomicType() [15/18]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< longdouble >::AtomicType ()
+
+inline
+
+ +
+
+ +

◆ AtomicType() [16/18]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< std::string >::AtomicType ()
+
+inline
+
+ +
+
+ +

◆ AtomicType() [17/18]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< Reference >::AtomicType ()
+
+inline
+
+ +
+
+ +

◆ AtomicType() [18/18]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< float16_t >::AtomicType ()
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_atomic_type.js b/class_high_five_1_1_atomic_type.js new file mode 100644 index 000000000..804bc9e01 --- /dev/null +++ b/class_high_five_1_1_atomic_type.js @@ -0,0 +1,22 @@ +var class_high_five_1_1_atomic_type = +[ + [ "basic_type", "class_high_five_1_1_atomic_type.html#aec235e205643310cbfeb2438b17fdc4d", null ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html#ace690f26cabac4bd472f47e6629fe7ae", null ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html#af8b6e9ffdb076ecd7b9ea8e825b1d7c9", null ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html#a7e51e6773bb9934eb8d7fe9881fe4fe9", null ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html#a06c87a3e42844220d3f1acf7e220588f", null ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html#a7e64d2707996b3b03657c0be2172cbdb", null ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html#ae8cebf936468a862589b073db0d28d44", null ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html#a68a295d57afe890a26c49523ca06eceb", null ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html#a0b4d0f1d9c5b18020a460ac1591b0665", null ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html#a43016c14b0c4731802ff4468486a3f83", null ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html#aa6082308b8707466a329e02a59a92e0f", null ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html#ad7288e7c84ac324b4dea8169f071e4ee", null ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html#a82b6070cd38dd7456d29018765539d0f", null ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html#a0edf612da138154aa497d6a2706876ba", null ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html#a45b7187829cdc797fba98c530253b7fa", null ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html#ab17d941585baab34c224e0e448b824a6", null ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html#abaf0327b4db9b70f0aa922f92edaa76e", null ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html#a8291e490374e7584d5309b24a86f1615", null ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html#a9b68b644e1e8b20e36ab5098561590fd", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4-members.html b/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4-members.html new file mode 100644 index 000000000..d2255efe4 --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4-members.html @@ -0,0 +1,135 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::AtomicType< char[StrLen]> Member List
+
+
+ +

This is the complete list of members for HighFive::AtomicType< char[StrLen]>, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + +
_hidHighFive::Objectprotected
asStringType() constHighFive::DataTypeinline
AtomicType()HighFive::AtomicType< char[StrLen]>inline
empty() const noexceptHighFive::DataTypeinline
getClass() constHighFive::DataTypeinline
getCreatePropertyList() constHighFive::DataTypeinline
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getSize() constHighFive::DataTypeinline
getType() constHighFive::Objectinline
isFixedLenStr() constHighFive::DataTypeinline
isReference() constHighFive::DataTypeinline
isValid() const noexceptHighFive::Objectinline
isVariableStr() constHighFive::DataTypeinline
Object(Object &&other) noexceptHighFive::DataTypeinlineprotected
Object()HighFive::DataTypeinlineprotected
Object(const Object &other)HighFive::DataTypeinlineprotected
Object(hid_t)HighFive::DataTypeinlineexplicitprotected
operator!=(const DataType &other) constHighFive::DataTypeinline
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const DataType &other) constHighFive::DataTypeinline
HighFive::Object::operator==(const Object &other) const noexceptHighFive::Objectinline
string() constHighFive::DataTypeinline
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4.html b/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4.html new file mode 100644 index 000000000..35364472a --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4.html @@ -0,0 +1,250 @@ + + + + + + + +HighFive: HighFive::AtomicType< char[StrLen]> Class Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::AtomicType< char[StrLen]> Class Template Reference
+
+
+ +

#include <H5DataType_misc.hpp>

+
+Inheritance diagram for HighFive::AtomicType< char[StrLen]>:
+
+
Inheritance graph
+ + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::AtomicType< char[StrLen]>:
+
+
Collaboration graph
+ + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 AtomicType ()
 
- Public Member Functions inherited from HighFive::DataType
bool operator== (const DataType &other) const
 
bool operator!= (const DataType &other) const
 
DataTypeClass getClass () const
 Return the fundamental type.
 
size_t getSize () const
 Returns the length (in bytes) of this type elements.
 
std::string string () const
 Returns a friendly description of the type (e.g. Float32)
 
bool isVariableStr () const
 Returns whether the type is a variable-length string.
 
bool isFixedLenStr () const
 Returns whether the type is a fixed-length string.
 
StringType asStringType () const
 Returns this datatype as a StringType.
 
bool empty () const noexcept
 Check the DataType was default constructed.
 
bool isReference () const
 Returns whether the type is a Reference.
 
DataTypeCreateProps getCreatePropertyList () const
 Get the list of properties for creation of this DataType.
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
+ + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Protected Member Functions inherited from HighFive::DataType
 Object (Object &&other) noexcept
 
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
+

Constructor & Destructor Documentation

+ +

◆ AtomicType()

+ +
+
+
+template<size_t StrLen>
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< char[StrLen]>::AtomicType ()
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4.js b/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4.js new file mode 100644 index 000000000..14e76197c --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4 = +[ + [ "AtomicType", "class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4.html#a4ae18629788947cdb9c5f6893017376b", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4__coll__graph.map b/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4__coll__graph.map new file mode 100644 index 000000000..372fca97d --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4__coll__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4__coll__graph.md5 b/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4__coll__graph.md5 new file mode 100644 index 000000000..c89a9b5e2 --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4__coll__graph.md5 @@ -0,0 +1 @@ +f12ac2c5e937f675312347f49b78cf3d \ No newline at end of file diff --git a/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4__coll__graph.png b/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4__coll__graph.png new file mode 100644 index 000000000..b3cb91f42 Binary files /dev/null and b/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4__coll__graph.png differ diff --git a/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4__inherit__graph.map b/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4__inherit__graph.map new file mode 100644 index 000000000..372fca97d --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4__inherit__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4__inherit__graph.md5 b/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4__inherit__graph.md5 new file mode 100644 index 000000000..c89a9b5e2 --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4__inherit__graph.md5 @@ -0,0 +1 @@ +f12ac2c5e937f675312347f49b78cf3d \ No newline at end of file diff --git a/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4__inherit__graph.png b/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4__inherit__graph.png new file mode 100644 index 000000000..b3cb91f42 Binary files /dev/null and b/class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4__inherit__graph.png differ diff --git a/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4-members.html b/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4-members.html new file mode 100644 index 000000000..17d7e03c0 --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4-members.html @@ -0,0 +1,135 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::AtomicType< deprecated::FixedLenStringArray< StrLen > > Member List
+
+
+ +

This is the complete list of members for HighFive::AtomicType< deprecated::FixedLenStringArray< StrLen > >, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + +
_hidHighFive::Objectprotected
asStringType() constHighFive::DataTypeinline
AtomicType()HighFive::AtomicType< deprecated::FixedLenStringArray< StrLen > >inline
empty() const noexceptHighFive::DataTypeinline
getClass() constHighFive::DataTypeinline
getCreatePropertyList() constHighFive::DataTypeinline
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getSize() constHighFive::DataTypeinline
getType() constHighFive::Objectinline
isFixedLenStr() constHighFive::DataTypeinline
isReference() constHighFive::DataTypeinline
isValid() const noexceptHighFive::Objectinline
isVariableStr() constHighFive::DataTypeinline
Object(Object &&other) noexceptHighFive::DataTypeinlineprotected
Object()HighFive::DataTypeinlineprotected
Object(const Object &other)HighFive::DataTypeinlineprotected
Object(hid_t)HighFive::DataTypeinlineexplicitprotected
operator!=(const DataType &other) constHighFive::DataTypeinline
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const DataType &other) constHighFive::DataTypeinline
HighFive::Object::operator==(const Object &other) const noexceptHighFive::Objectinline
string() constHighFive::DataTypeinline
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4.html b/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4.html new file mode 100644 index 000000000..8c5818a3a --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4.html @@ -0,0 +1,250 @@ + + + + + + + +HighFive: HighFive::AtomicType< deprecated::FixedLenStringArray< StrLen > > Class Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::AtomicType< deprecated::FixedLenStringArray< StrLen > > Class Template Reference
+
+
+ +

#include <H5DataType_misc.hpp>

+
+Inheritance diagram for HighFive::AtomicType< deprecated::FixedLenStringArray< StrLen > >:
+
+
Inheritance graph
+ + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::AtomicType< deprecated::FixedLenStringArray< StrLen > >:
+
+
Collaboration graph
+ + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 AtomicType ()
 
- Public Member Functions inherited from HighFive::DataType
bool operator== (const DataType &other) const
 
bool operator!= (const DataType &other) const
 
DataTypeClass getClass () const
 Return the fundamental type.
 
size_t getSize () const
 Returns the length (in bytes) of this type elements.
 
std::string string () const
 Returns a friendly description of the type (e.g. Float32)
 
bool isVariableStr () const
 Returns whether the type is a variable-length string.
 
bool isFixedLenStr () const
 Returns whether the type is a fixed-length string.
 
StringType asStringType () const
 Returns this datatype as a StringType.
 
bool empty () const noexcept
 Check the DataType was default constructed.
 
bool isReference () const
 Returns whether the type is a Reference.
 
DataTypeCreateProps getCreatePropertyList () const
 Get the list of properties for creation of this DataType.
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
+ + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Protected Member Functions inherited from HighFive::DataType
 Object (Object &&other) noexcept
 
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
+

Constructor & Destructor Documentation

+ +

◆ AtomicType()

+ +
+
+
+template<size_t StrLen>
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< deprecated::FixedLenStringArray< StrLen > >::AtomicType ()
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4.js b/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4.js new file mode 100644 index 000000000..aafcc6b16 --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4 = +[ + [ "AtomicType", "class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4.html#a62b353ebfd6b54076599c08210c089b2", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4__coll__graph.map b/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4__coll__graph.map new file mode 100644 index 000000000..1e1a4829e --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4__coll__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4__coll__graph.md5 b/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4__coll__graph.md5 new file mode 100644 index 000000000..7cf4f01c4 --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4__coll__graph.md5 @@ -0,0 +1 @@ +534c7c61918b96d32af8f42340d89844 \ No newline at end of file diff --git a/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4__coll__graph.png b/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4__coll__graph.png new file mode 100644 index 000000000..7a5e034e9 Binary files /dev/null and b/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4__coll__graph.png differ diff --git a/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4__inherit__graph.map b/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4__inherit__graph.map new file mode 100644 index 000000000..1e1a4829e --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4__inherit__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4__inherit__graph.md5 b/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4__inherit__graph.md5 new file mode 100644 index 000000000..7cf4f01c4 --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4__inherit__graph.md5 @@ -0,0 +1 @@ +534c7c61918b96d32af8f42340d89844 \ No newline at end of file diff --git a/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4__inherit__graph.png b/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4__inherit__graph.png new file mode 100644 index 000000000..7a5e034e9 Binary files /dev/null and b/class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4__inherit__graph.png differ diff --git a/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4-members.html b/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4-members.html new file mode 100644 index 000000000..c0e4c7509 --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4-members.html @@ -0,0 +1,135 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::AtomicType< std::complex< T > > Member List
+
+
+ +

This is the complete list of members for HighFive::AtomicType< std::complex< T > >, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + +
_hidHighFive::Objectprotected
asStringType() constHighFive::DataTypeinline
AtomicType()HighFive::AtomicType< std::complex< T > >inline
empty() const noexceptHighFive::DataTypeinline
getClass() constHighFive::DataTypeinline
getCreatePropertyList() constHighFive::DataTypeinline
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getSize() constHighFive::DataTypeinline
getType() constHighFive::Objectinline
isFixedLenStr() constHighFive::DataTypeinline
isReference() constHighFive::DataTypeinline
isValid() const noexceptHighFive::Objectinline
isVariableStr() constHighFive::DataTypeinline
Object(Object &&other) noexceptHighFive::DataTypeinlineprotected
Object()HighFive::DataTypeinlineprotected
Object(const Object &other)HighFive::DataTypeinlineprotected
Object(hid_t)HighFive::DataTypeinlineexplicitprotected
operator!=(const DataType &other) constHighFive::DataTypeinline
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const DataType &other) constHighFive::DataTypeinline
HighFive::Object::operator==(const Object &other) const noexceptHighFive::Objectinline
string() constHighFive::DataTypeinline
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4.html b/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4.html new file mode 100644 index 000000000..b9f90ea2d --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4.html @@ -0,0 +1,250 @@ + + + + + + + +HighFive: HighFive::AtomicType< std::complex< T > > Class Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::AtomicType< std::complex< T > > Class Template Reference
+
+
+ +

#include <H5DataType_misc.hpp>

+
+Inheritance diagram for HighFive::AtomicType< std::complex< T > >:
+
+
Inheritance graph
+ + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::AtomicType< std::complex< T > >:
+
+
Collaboration graph
+ + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 AtomicType ()
 
- Public Member Functions inherited from HighFive::DataType
bool operator== (const DataType &other) const
 
bool operator!= (const DataType &other) const
 
DataTypeClass getClass () const
 Return the fundamental type.
 
size_t getSize () const
 Returns the length (in bytes) of this type elements.
 
std::string string () const
 Returns a friendly description of the type (e.g. Float32)
 
bool isVariableStr () const
 Returns whether the type is a variable-length string.
 
bool isFixedLenStr () const
 Returns whether the type is a fixed-length string.
 
StringType asStringType () const
 Returns this datatype as a StringType.
 
bool empty () const noexcept
 Check the DataType was default constructed.
 
bool isReference () const
 Returns whether the type is a Reference.
 
DataTypeCreateProps getCreatePropertyList () const
 Get the list of properties for creation of this DataType.
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
+ + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Protected Member Functions inherited from HighFive::DataType
 Object (Object &&other) noexcept
 
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
+

Constructor & Destructor Documentation

+ +

◆ AtomicType()

+ +
+
+
+template<typename T >
+ + + + + +
+ + + + + + + +
HighFive::AtomicType< std::complex< T > >::AtomicType ()
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4.js b/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4.js new file mode 100644 index 000000000..89de99b93 --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4 = +[ + [ "AtomicType", "class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4.html#afce941c6b3480ed7cfcf5a787396c500", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4__coll__graph.map b/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4__coll__graph.map new file mode 100644 index 000000000..ca6e34ac9 --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4__coll__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4__coll__graph.md5 b/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4__coll__graph.md5 new file mode 100644 index 000000000..0ab25fcc2 --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4__coll__graph.md5 @@ -0,0 +1 @@ +06c463fc980b001a36cf483e841df289 \ No newline at end of file diff --git a/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4__coll__graph.png b/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4__coll__graph.png new file mode 100644 index 000000000..aee656bc0 Binary files /dev/null and b/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4__coll__graph.png differ diff --git a/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4__inherit__graph.map b/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4__inherit__graph.map new file mode 100644 index 000000000..ca6e34ac9 --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4__inherit__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4__inherit__graph.md5 b/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4__inherit__graph.md5 new file mode 100644 index 000000000..0ab25fcc2 --- /dev/null +++ b/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4__inherit__graph.md5 @@ -0,0 +1 @@ +06c463fc980b001a36cf483e841df289 \ No newline at end of file diff --git a/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4__inherit__graph.png b/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4__inherit__graph.png new file mode 100644 index 000000000..aee656bc0 Binary files /dev/null and b/class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4__inherit__graph.png differ diff --git a/class_high_five_1_1_atomic_type__coll__graph.map b/class_high_five_1_1_atomic_type__coll__graph.map new file mode 100644 index 000000000..4c5e80195 --- /dev/null +++ b/class_high_five_1_1_atomic_type__coll__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_atomic_type__coll__graph.md5 b/class_high_five_1_1_atomic_type__coll__graph.md5 new file mode 100644 index 000000000..70c1dc180 --- /dev/null +++ b/class_high_five_1_1_atomic_type__coll__graph.md5 @@ -0,0 +1 @@ +348c95b7550488d0c98342f3b84de656 \ No newline at end of file diff --git a/class_high_five_1_1_atomic_type__coll__graph.png b/class_high_five_1_1_atomic_type__coll__graph.png new file mode 100644 index 000000000..530474198 Binary files /dev/null and b/class_high_five_1_1_atomic_type__coll__graph.png differ diff --git a/class_high_five_1_1_atomic_type__inherit__graph.map b/class_high_five_1_1_atomic_type__inherit__graph.map new file mode 100644 index 000000000..4c5e80195 --- /dev/null +++ b/class_high_five_1_1_atomic_type__inherit__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_atomic_type__inherit__graph.md5 b/class_high_five_1_1_atomic_type__inherit__graph.md5 new file mode 100644 index 000000000..70c1dc180 --- /dev/null +++ b/class_high_five_1_1_atomic_type__inherit__graph.md5 @@ -0,0 +1 @@ +348c95b7550488d0c98342f3b84de656 \ No newline at end of file diff --git a/class_high_five_1_1_atomic_type__inherit__graph.png b/class_high_five_1_1_atomic_type__inherit__graph.png new file mode 100644 index 000000000..530474198 Binary files /dev/null and b/class_high_five_1_1_atomic_type__inherit__graph.png differ diff --git a/class_high_five_1_1_attribute-members.html b/class_high_five_1_1_attribute-members.html new file mode 100644 index 000000000..c5e266340 --- /dev/null +++ b/class_high_five_1_1_attribute-members.html @@ -0,0 +1,144 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::Attribute Member List
+
+
+ +

This is the complete list of members for HighFive::Attribute, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
_file_objHighFive::PathTraits< Attribute >protected
_hidHighFive::Objectprotected
Attribute()=deleteHighFive::Attribute
getCreatePropertyList() constHighFive::Attributeinline
getDataType() constHighFive::Attributeinline
getFile() const noexceptHighFive::PathTraits< Attribute >inline
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getMemSpace() constHighFive::Attributeinline
getName() constHighFive::Attributeinline
getPath() constHighFive::PathTraits< Attribute >inline
getSpace() constHighFive::Attributeinline
getStorageSize() constHighFive::Attributeinline
getType() constHighFive::Objectinline
isValid() const noexceptHighFive::Objectinline
Object(Object &&other) noexceptHighFive::Attributeinlineprotected
Object()HighFive::Attributeinlineprotected
Object(const Object &other)HighFive::Attributeinlineprotected
Object(hid_t)HighFive::Attributeinlineexplicitprotected
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const Object &other) const noexceptHighFive::Objectinline
PathTraits()HighFive::PathTraits< Attribute >inline
read() constHighFive::Attributeinline
read(T &array) constHighFive::Attributeinline
read(T *array, const DataType &mem_datatype) constHighFive::Attributeinline
read(T *array) constHighFive::Attributeinline
read_raw(T *array, const DataType &mem_datatype) constHighFive::Attributeinline
read_raw(T *array) constHighFive::Attributeinline
typeHighFive::Attributestatic
write(const T &value)HighFive::Attributeinline
write_raw(const T *buffer, const DataType &mem_datatype)HighFive::Attributeinline
write_raw(const T *buffer)HighFive::Attributeinline
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_attribute.html b/class_high_five_1_1_attribute.html new file mode 100644 index 000000000..2fcf7733c --- /dev/null +++ b/class_high_five_1_1_attribute.html @@ -0,0 +1,974 @@ + + + + + + + +HighFive: HighFive::Attribute Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::Attribute Class Reference
+
+
+ +

Class representing an Attribute of a DataSet or Group. + More...

+ +

#include <H5Attribute.hpp>

+
+Inheritance diagram for HighFive::Attribute:
+
+
Inheritance graph
+ + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::Attribute:
+
+
Collaboration graph
+ + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

std::string getName () const
 Get the name of the current Attribute.
 
size_t getStorageSize () const
 The number of bytes required to store the attribute in the HDF5 file.
 
DataType getDataType () const
 Get the DataType of the Attribute.
 
DataSpace getSpace () const
 Get the DataSpace of the current Attribute.
 
DataSpace getMemSpace () const
 Get the DataSpace of the current Attribute.
 
template<typename T >
read () const
 Get the value of the Attribute.
 
template<typename T >
void read (T &array) const
 Get the value of the Attribute in a buffer.
 
template<typename T >
void read (T *array, const DataType &mem_datatype) const
 Read the attribute into a pre-allocated buffer.
 
template<typename T >
void read (T *array) const
 Read the attribute into a buffer.
 
template<typename T >
void read_raw (T *array, const DataType &mem_datatype) const
 Read the attribute into a pre-allocated buffer.
 
template<typename T >
void read_raw (T *array) const
 Read the attribute into a buffer. Behaves like Attribute::read(T*, const DataType&) const but additionally this overload deduces the memory datatype from T.
 
template<typename T >
void write (const T &value)
 Write the value into the Attribute.
 
template<typename T >
void write_raw (const T *buffer, const DataType &mem_datatype)
 Write from a raw pointer.
 
template<typename T >
void write_raw (const T *buffer)
 Write from a raw pointer.
 
AttributeCreateProps getCreatePropertyList () const
 The create property list used for this attribute.
 
 Attribute ()=delete
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
- Public Member Functions inherited from HighFive::PathTraits< Attribute >
 PathTraits ()
 
std::string getPath () const
 return the path to the current object
 
FilegetFile () const noexcept
 Return a reference to the File object this object belongs.
 
+ + + +

+Static Public Attributes

static const ObjectType type = ObjectType::Attribute
 
+ + + + + + + + + + + + + + + + + + +

+Protected Member Functions

 Object (Object &&other) noexcept
 
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
+ + + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
- Protected Attributes inherited from HighFive::PathTraits< Attribute >
std::shared_ptr< File_file_obj
 
+

Detailed Description

+

Constructor & Destructor Documentation

+ +

◆ Attribute()

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Attribute::Attribute ()
+
+delete
+
+ +
+
+

Member Function Documentation

+ +

◆ getCreatePropertyList()

+ +
+
+ + + + + +
+ + + + + + + +
AttributeCreateProps HighFive::Attribute::getCreatePropertyList () const
+
+inline
+
+ +

The create property list used for this attribute.

+

Some of HDF5 properties/setting of an attribute are defined by a create property list. This method returns a copy of the create property list used during creation of the attribute.

+
auto acpl = attr.getCreatePropertyList();
+
+
// For example to create another attribute with the same properties.
+
file.createAttribute("foo", 42, acpl);
+
Since
2.5.0
+ +
+
+ +

◆ getDataType()

+ +
+
+ + + + + +
+ + + + + + + +
DataType HighFive::Attribute::getDataType () const
+
+inline
+
+ +

Get the DataType of the Attribute.

+
Attribute attr = dset.createAttribute<int>("foo", DataSpace(1, 2));
+
auto dtype = attr.getDataType(); // Will be an hdf5 type deduced from int
+
Class representing an Attribute of a DataSet or Group.
Definition H5Attribute.hpp:46
+
DataType getDataType() const
Get the DataType of the Attribute.
Definition H5Attribute_misc.hpp:37
+ +
Since
1.0
+ +
+
+ +

◆ getMemSpace()

+ +
+
+ + + + + +
+ + + + + + + +
DataSpace HighFive::Attribute::getMemSpace () const
+
+inline
+
+ +

Get the DataSpace of the current Attribute.

+
Note
This is an alias of getSpace().
+
Since
1.0
+ +
+
+ +

◆ getName()

+ +
+
+ + + + + +
+ + + + + + + +
std::string HighFive::Attribute::getName () const
+
+inline
+
+ +

Get the name of the current Attribute.

+
auto attr = dset.createAttribute<std::string>("my_attribute", DataSpace::From(string_list));
+
std::cout << attr.getName() << std::endl; // Will print "my_attribute"
+
static DataSpace From(const T &value)
Automatically deduce the DataSpace from a container/value.
Definition H5Dataspace_misc.hpp:128
+
Since
2.2.2
+ +
+
+ +

◆ getSpace()

+ +
+
+ + + + + +
+ + + + + + + +
DataSpace HighFive::Attribute::getSpace () const
+
+inline
+
+ +

Get the DataSpace of the current Attribute.

+
Attribute attr = dset.createAttribute<int>("foo", DataSpace(1, 2));
+
auto dspace = attr.getSpace(); // This will be a DataSpace of dimension 1 * 2
+
DataSpace getSpace() const
Get the DataSpace of the current Attribute.
Definition H5Attribute_misc.hpp:43
+
Since
1.0
+ +
+
+ +

◆ getStorageSize()

+ +
+
+ + + + + +
+ + + + + + + +
size_t HighFive::Attribute::getStorageSize () const
+
+inline
+
+ +

The number of bytes required to store the attribute in the HDF5 file.

+
size_t size = dset.createAttribute<int>("foo", DataSpace(1, 2)).getStorageSize();
+
size_t getStorageSize() const
The number of bytes required to store the attribute in the HDF5 file.
Definition H5Attribute_misc.hpp:33
+
Since
1.0
+ +
+
+ +

◆ Object() [1/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object ()
+
+inlineprotected
+
+ +
+
+ +

◆ Object() [2/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object (const Object & other)
+
+inlineprotected
+
+ +
+
+ +

◆ Object() [3/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object (hid_t hid)
+
+inlineexplicitprotected
+
+ +
+
+ +

◆ Object() [4/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object (Object && other)
+
+inlineprotectednoexcept
+
+ +
+
+ +

◆ read() [1/4]

+ +
+
+
+template<typename T >
+ + + + + +
+ + + + + + + +
T HighFive::Attribute::read () const
+
+inline
+
+ +

Get the value of the Attribute.

+
Attribute attr = dset.getAttribute("foo");
+
// The value will contains what have been written in the attribute
+
std::vector<int> value = attr.read<std::vector<int>>();
+
T read() const
Get the value of the Attribute.
Definition H5Attribute_misc.hpp:54
+
Since
2.5.0
+ +
+
+ +

◆ read() [2/4]

+ +
+
+
+template<typename T >
+ + + + + +
+ + + + + + + +
void HighFive::Attribute::read (T & array) const
+
+inline
+
+ +

Get the value of the Attribute in a buffer.

+

Read the attribute into an existing object. Only available for supported types T. If array has preallocated the correct amount of memory, then this routine should not trigger reallocation. Otherwise, if supported, the object will be resized.

+

An exception is raised if the numbers of dimension of the buffer and of the attribute are different.

+
// Will read into `value` avoiding memory allocation if the dimensions
+
// match, i.e. if the attribute `"foo"` has three element.
+
std::vector<int> value(3);
+
file.getAttribute("foo").read(value);
+
Since
1.0
+ +
+
+ +

◆ read() [3/4]

+ +
+
+
+template<typename T >
+ + + + + +
+ + + + + + + +
void HighFive::Attribute::read (T * array) const
+
+inline
+
+ +

Read the attribute into a buffer.

+
Deprecated
use read(T& or read_raw.
+ +
+
+ +

◆ read() [4/4]

+ +
+
+
+template<typename T >
+ + + + + +
+ + + + + + + + + + + +
void HighFive::Attribute::read (T * array,
const DataType & mem_datatype ) const
+
+inline
+
+ +

Read the attribute into a pre-allocated buffer.

+
Deprecated
use read(T& or read_raw.
+ +
+
+ +

◆ read_raw() [1/2]

+ +
+
+
+template<typename T >
+ + + + + +
+ + + + + + + +
void HighFive::Attribute::read_raw (T * array) const
+
+inline
+
+ +

Read the attribute into a buffer. Behaves like Attribute::read(T*, const DataType&) const but additionally this overload deduces the memory datatype from T.

+
Parameters
+ + +
arrayPointer to the first byte of pre-allocated memory.
+
+
+
Note
If possible prefer either Attribute::read() const or Attribute::read(T&) const.
+
auto attr = file.getAttribute("foo");
+
+
// Simulate custom allocation by the application.
+
size_t n_elements = attr.getSpace().getElementCount();
+
int * ptr = (int*) malloc(n_elements*sizeof(int));
+
+
// Read into the pre-allocated memory.
+
attr.read(ptr);
+
Since
2.2.2
+ +
+
+ +

◆ read_raw() [2/2]

+ +
+
+
+template<typename T >
+ + + + + +
+ + + + + + + + + + + +
void HighFive::Attribute::read_raw (T * array,
const DataType & mem_datatype ) const
+
+inline
+
+ +

Read the attribute into a pre-allocated buffer.

+
Parameters
+ + + +
arrayA pointer to the first byte of sufficient pre-allocated memory.
mem_datatypeThe DataType of the array.
+
+
+
Note
This is the shallowest wrapper around H5Aread. If possible prefer either Attribute::read() const or Attribute::read(T&) const.
+
auto attr = file.getAttribute("foo");
+
+
// Simulate custom allocation by the application.
+
size_t n_elements = attr.getSpace().getElementCount();
+
int * ptr = (int*) malloc(n_elements*sizeof(int));
+
+
// Read into the pre-allocated memory.
+
attr.read(ptr, mem_datatype);
+
Since
2.2.2
+ +
+
+ +

◆ write()

+ +
+
+
+template<typename T >
+ + + + + +
+ + + + + + + +
void HighFive::Attribute::write (const T & value)
+
+inline
+
+ +

Write the value into the Attribute.

+

Write the value to the attribute. For supported types T, this overload will write the value to the attribute. The datatype and dataspace are deduced automatically. However, since the attribute has already been created, the dimensions of value must match those of the attribute.

+
// Prefer the fused version if creating and writing the attribute
+
// at the same time.
+
dset.createAttribute("foo", std::vector<int>{1, 2, 3});
+
+
// To overwrite the value:
+
std::vector<int> value{4, 5, 6};
+
dset.getAttribute<int>("foo").write(value);
+
void write(const T &value)
Write the value into the Attribute.
Definition H5Attribute_misc.hpp:131
+
Since
1.0
+ +
+
+ +

◆ write_raw() [1/2]

+ +
+
+
+template<typename T >
+ + + + + +
+ + + + + + + +
void HighFive::Attribute::write_raw (const T * buffer)
+
+inline
+
+ +

Write from a raw pointer.

+

Much like Attribute::write_raw(const T*, const DataType&). Additionally, this overload attempts to automatically deduce the datatype of the buffer. Note, that the file datatype is already set.

+
Parameters
+ + +
bufferPointer to the first byte.
+
+
+
Note
If possible prefer Attribute::write.
+
// Simulate the application creating `value` and only exposing access
+
// to the raw pointer `ptr`.
+
std::vector<std::array<int, 3>> value{{1, 2, 3}, {4, 5, 6}};
+
int * ptr = (int*) value.data();
+
+
// Simply write the bytes to disk.
+
attr.write(ptr);
+
Since
2.2.2
+ +
+
+ +

◆ write_raw() [2/2]

+ +
+
+
+template<typename T >
+ + + + + +
+ + + + + + + + + + + +
void HighFive::Attribute::write_raw (const T * buffer,
const DataType & mem_datatype )
+
+inline
+
+ +

Write from a raw pointer.

+

Values that have been correctly arranged memory, can be written directly by passing a raw pointer.

+
Parameters
+ + + +
bufferPointer to the first byte of the value.
mem_datatypeThe DataType of the buffer.
+
+
+
Note
This is the shallowest wrapper around H5Awrite. It's useful if you need full control. If possible prefer Attribute::write.
+
Attribute attr = dset.createAttribute<int>("foo", DataSpace(2, 3));
+
+
// Simulate the application creating `value` and only exposing access
+
// to the raw pointer `ptr`.
+
std::vector<std::array<int, 3>> value{{1, 2, 3}, {4, 5, 6}};
+
int * ptr = (int*) value.data();
+
+
// Simply write the bytes to disk.
+
attr.write(ptr, AtomicType<int>());
+
Since
2.2.2
+ +
+
+

Member Data Documentation

+ +

◆ type

+ +
+
+ + + + + +
+ + + + +
const ObjectType HighFive::Attribute::type = ObjectType::Attribute
+
+static
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_attribute.js b/class_high_five_1_1_attribute.js new file mode 100644 index 000000000..beff45b6b --- /dev/null +++ b/class_high_five_1_1_attribute.js @@ -0,0 +1,23 @@ +var class_high_five_1_1_attribute = +[ + [ "Attribute", "class_high_five_1_1_attribute.html#aa2ac0bfc7aa4f29ef5d32a6518cb40a3", null ], + [ "getCreatePropertyList", "class_high_five_1_1_attribute.html#acee2136593f83a803e4b000916d3020b", null ], + [ "getDataType", "class_high_five_1_1_attribute.html#a600131e681e98f5f03e64e662e3fa325", null ], + [ "getMemSpace", "class_high_five_1_1_attribute.html#a9a4f37c223c52078d91c843f2ba6d994", null ], + [ "getName", "class_high_five_1_1_attribute.html#a70021d5bf236c431d93013a4ae0ff910", null ], + [ "getSpace", "class_high_five_1_1_attribute.html#a4378b9e1603b22509c1495ac4362116d", null ], + [ "getStorageSize", "class_high_five_1_1_attribute.html#ab2ab807ffa3fc8cb6d72ac7ab75a58f1", null ], + [ "Object", "class_high_five_1_1_attribute.html#a6bae41d04f273d04d2914406ab79da32", null ], + [ "Object", "class_high_five_1_1_attribute.html#ab87ee7d5e2beee6a50d60dec20d3dfe5", null ], + [ "Object", "class_high_five_1_1_attribute.html#a9fe361bc0bd9662c1fd96a4a6ec1133a", null ], + [ "Object", "class_high_five_1_1_attribute.html#aa42052fa5ec4ee691f6a7dd6467199f2", null ], + [ "read", "class_high_five_1_1_attribute.html#a8f6d88e6dadb8e4449fec558e5e0f7ca", null ], + [ "read", "class_high_five_1_1_attribute.html#ae97ab038f6c58bc0dd1ea498d8e609ce", null ], + [ "read", "class_high_five_1_1_attribute.html#aa2d0eb2629833a33f3e1a3fbfc1e9f55", null ], + [ "read", "class_high_five_1_1_attribute.html#acb44e6457df7e57040e39cd4373f9d84", null ], + [ "read_raw", "class_high_five_1_1_attribute.html#aeb184a520213909e3e3dd5e64497467e", null ], + [ "read_raw", "class_high_five_1_1_attribute.html#a6c21f3a760651d9233ecf880f988c012", null ], + [ "write", "class_high_five_1_1_attribute.html#a9f7585585d281f09ab231df1637e29c7", null ], + [ "write_raw", "class_high_five_1_1_attribute.html#abb15f4324cc70aabaaaf9aaf9c7922c9", null ], + [ "write_raw", "class_high_five_1_1_attribute.html#aaf08f65d5477d96922aa257a2af86efa", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_attribute__coll__graph.map b/class_high_five_1_1_attribute__coll__graph.map new file mode 100644 index 000000000..0e8ef1b24 --- /dev/null +++ b/class_high_five_1_1_attribute__coll__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_attribute__coll__graph.md5 b/class_high_five_1_1_attribute__coll__graph.md5 new file mode 100644 index 000000000..509670bfc --- /dev/null +++ b/class_high_five_1_1_attribute__coll__graph.md5 @@ -0,0 +1 @@ +831e0ee77b867d315b963f014941b129 \ No newline at end of file diff --git a/class_high_five_1_1_attribute__coll__graph.png b/class_high_five_1_1_attribute__coll__graph.png new file mode 100644 index 000000000..4752535fe Binary files /dev/null and b/class_high_five_1_1_attribute__coll__graph.png differ diff --git a/class_high_five_1_1_attribute__inherit__graph.map b/class_high_five_1_1_attribute__inherit__graph.map new file mode 100644 index 000000000..0e8ef1b24 --- /dev/null +++ b/class_high_five_1_1_attribute__inherit__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_attribute__inherit__graph.md5 b/class_high_five_1_1_attribute__inherit__graph.md5 new file mode 100644 index 000000000..509670bfc --- /dev/null +++ b/class_high_five_1_1_attribute__inherit__graph.md5 @@ -0,0 +1 @@ +831e0ee77b867d315b963f014941b129 \ No newline at end of file diff --git a/class_high_five_1_1_attribute__inherit__graph.png b/class_high_five_1_1_attribute__inherit__graph.png new file mode 100644 index 000000000..4752535fe Binary files /dev/null and b/class_high_five_1_1_attribute__inherit__graph.png differ diff --git a/class_high_five_1_1_attribute_exception-members.html b/class_high_five_1_1_attribute_exception-members.html new file mode 100644 index 000000000..5d72b574f --- /dev/null +++ b/class_high_five_1_1_attribute_exception-members.html @@ -0,0 +1,123 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::AttributeException Member List
+
+
+ +

This is the complete list of members for HighFive::AttributeException, including all inherited members.

+ + + + + + + + + + + + + +
_err_majorHighFive::Exceptionprotected
_err_minorHighFive::Exceptionprotected
_errmsgHighFive::Exceptionprotected
_nextHighFive::Exceptionprotected
AttributeException(const std::string &err_msg)HighFive::AttributeExceptioninline
Exception(const std::string &err_msg)HighFive::Exceptioninline
getErrMajor() constHighFive::Exceptioninline
getErrMinor() constHighFive::Exceptioninline
nextException() constHighFive::Exceptioninline
setErrorMsg(const std::string &errmsg)HighFive::Exceptioninlinevirtual
what() const overrideHighFive::Exceptioninline
~Exception()HighFive::Exceptioninlinevirtual
+
+ + + + diff --git a/class_high_five_1_1_attribute_exception.html b/class_high_five_1_1_attribute_exception.html new file mode 100644 index 000000000..4a8604e42 --- /dev/null +++ b/class_high_five_1_1_attribute_exception.html @@ -0,0 +1,212 @@ + + + + + + + +HighFive: HighFive::AttributeException Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::AttributeException Class Reference
+
+
+ +

Exception specific to HighFive Attribute interface. + More...

+ +

#include <H5Exception.hpp>

+
+Inheritance diagram for HighFive::AttributeException:
+
+
Inheritance graph
+ + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::AttributeException:
+
+
Collaboration graph
+ + + + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 AttributeException (const std::string &err_msg)
 
- Public Member Functions inherited from HighFive::Exception
 Exception (const std::string &err_msg)
 
virtual ~Exception () throw ()
 
const char * what () const override throw ()
 get the current exception error message
 
virtual void setErrorMsg (const std::string &errmsg)
 define the error message
 
ExceptionnextException () const
 nextException
 
hid_t getErrMajor () const
 HDF5 library error mapper.
 
hid_t getErrMinor () const
 HDF5 library error mapper.
 
+ + + + + + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from HighFive::Exception
std::string _errmsg
 
std::shared_ptr< Exception_next
 
hid_t _err_major
 
hid_t _err_minor
 
+

Detailed Description

+

Exception specific to HighFive Attribute interface.

+

Constructor & Destructor Documentation

+ +

◆ AttributeException()

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AttributeException::AttributeException (const std::string & err_msg)
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/class_high_five_1_1_attribute_exception.js b/class_high_five_1_1_attribute_exception.js new file mode 100644 index 000000000..5f7ec70a7 --- /dev/null +++ b/class_high_five_1_1_attribute_exception.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_attribute_exception = +[ + [ "AttributeException", "class_high_five_1_1_attribute_exception.html#ade502f58024a58bea7454e8a4d58c4f0", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_attribute_exception__coll__graph.map b/class_high_five_1_1_attribute_exception__coll__graph.map new file mode 100644 index 000000000..eec8c204e --- /dev/null +++ b/class_high_five_1_1_attribute_exception__coll__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_attribute_exception__coll__graph.md5 b/class_high_five_1_1_attribute_exception__coll__graph.md5 new file mode 100644 index 000000000..648ffb246 --- /dev/null +++ b/class_high_five_1_1_attribute_exception__coll__graph.md5 @@ -0,0 +1 @@ +7c80d94b8793a34b37155028e5b95a97 \ No newline at end of file diff --git a/class_high_five_1_1_attribute_exception__coll__graph.png b/class_high_five_1_1_attribute_exception__coll__graph.png new file mode 100644 index 000000000..14df46488 Binary files /dev/null and b/class_high_five_1_1_attribute_exception__coll__graph.png differ diff --git a/class_high_five_1_1_attribute_exception__inherit__graph.map b/class_high_five_1_1_attribute_exception__inherit__graph.map new file mode 100644 index 000000000..eab3844ec --- /dev/null +++ b/class_high_five_1_1_attribute_exception__inherit__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_attribute_exception__inherit__graph.md5 b/class_high_five_1_1_attribute_exception__inherit__graph.md5 new file mode 100644 index 000000000..0136d8a85 --- /dev/null +++ b/class_high_five_1_1_attribute_exception__inherit__graph.md5 @@ -0,0 +1 @@ +ca591ef7233e5a592cff66a1a26472af \ No newline at end of file diff --git a/class_high_five_1_1_attribute_exception__inherit__graph.png b/class_high_five_1_1_attribute_exception__inherit__graph.png new file mode 100644 index 000000000..fe157b683 Binary files /dev/null and b/class_high_five_1_1_attribute_exception__inherit__graph.png differ diff --git a/class_high_five_1_1_attribute_phase_change-members.html b/class_high_five_1_1_attribute_phase_change-members.html new file mode 100644 index 000000000..d2b167341 --- /dev/null +++ b/class_high_five_1_1_attribute_phase_change-members.html @@ -0,0 +1,115 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::AttributePhaseChange Member List
+
+
+ +

This is the complete list of members for HighFive::AttributePhaseChange, including all inherited members.

+ + + + + +
AttributePhaseChange(unsigned max_compact, unsigned min_dense)HighFive::AttributePhaseChangeinline
AttributePhaseChange(const GroupCreateProps &gcpl)HighFive::AttributePhaseChangeinlineexplicit
max_compact() constHighFive::AttributePhaseChangeinline
min_dense() constHighFive::AttributePhaseChangeinline
+
+ + + + diff --git a/class_high_five_1_1_attribute_phase_change.html b/class_high_five_1_1_attribute_phase_change.html new file mode 100644 index 000000000..fdee76b4b --- /dev/null +++ b/class_high_five_1_1_attribute_phase_change.html @@ -0,0 +1,270 @@ + + + + + + + +HighFive: HighFive::AttributePhaseChange Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::AttributePhaseChange Class Reference
+
+
+ +

Set threshold for attribute storage. + More...

+ +

#include <H5PropertyList.hpp>

+
+Inheritance diagram for HighFive::AttributePhaseChange:
+
+
Inheritance graph
+ + + + + +
[legend]
+
+Collaboration diagram for HighFive::AttributePhaseChange:
+
+
Collaboration graph
+ + + + + +
[legend]
+ + + + + + + + + + + + +

+Public Member Functions

 AttributePhaseChange (unsigned max_compact, unsigned min_dense)
 Create the property from the threshold values.
 
 AttributePhaseChange (const GroupCreateProps &gcpl)
 Extract threshold values from property list.
 
unsigned max_compact () const
 
unsigned min_dense () const
 
+

Detailed Description

+

Set threshold for attribute storage.

+

HDF5 can store Attributes in the object header (compact) or in the B-tree (dense). This property sets the threshold when attributes are moved to one or the other storage format.

+

Please refer to the upstream documentation of H5Pset_attr_phase_change or Section 8 (Attributes) in the User Guide, in particular Subsection 8.5.

+

Constructor & Destructor Documentation

+ +

◆ AttributePhaseChange() [1/2]

+ +
+
+ + + + + +
+ + + + + + + + + + + +
HighFive::AttributePhaseChange::AttributePhaseChange (unsigned max_compact,
unsigned min_dense )
+
+inline
+
+ +

Create the property from the threshold values.

+

When the number of attributes hits max_compact the attributes are moved to dense storage, once the number drops to below min_dense the attributes are moved to compact storage.

+ +
+
+ +

◆ AttributePhaseChange() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::AttributePhaseChange::AttributePhaseChange (const GroupCreateProps & gcpl)
+
+inlineexplicit
+
+ +

Extract threshold values from property list.

+ +
+
+

Member Function Documentation

+ +

◆ max_compact()

+ +
+
+ + + + + +
+ + + + + + + +
unsigned HighFive::AttributePhaseChange::max_compact () const
+
+inline
+
+ +
+
+ +

◆ min_dense()

+ +
+
+ + + + + +
+ + + + + + + +
unsigned HighFive::AttributePhaseChange::min_dense () const
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_attribute_phase_change.js b/class_high_five_1_1_attribute_phase_change.js new file mode 100644 index 000000000..a713f3fe9 --- /dev/null +++ b/class_high_five_1_1_attribute_phase_change.js @@ -0,0 +1,7 @@ +var class_high_five_1_1_attribute_phase_change = +[ + [ "AttributePhaseChange", "class_high_five_1_1_attribute_phase_change.html#a979a5ef023e9c45b1d8b3de253fb69ef", null ], + [ "AttributePhaseChange", "class_high_five_1_1_attribute_phase_change.html#a06649e848cb2fe58934d2a750e853e9b", null ], + [ "max_compact", "class_high_five_1_1_attribute_phase_change.html#a4a01e8527aaecaffe2db1094f1e4b6c8", null ], + [ "min_dense", "class_high_five_1_1_attribute_phase_change.html#aa40d91cf6907a2013573e691c96d1bc7", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_attribute_phase_change__coll__graph.map b/class_high_five_1_1_attribute_phase_change__coll__graph.map new file mode 100644 index 000000000..f02912fe6 --- /dev/null +++ b/class_high_five_1_1_attribute_phase_change__coll__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_attribute_phase_change__coll__graph.md5 b/class_high_five_1_1_attribute_phase_change__coll__graph.md5 new file mode 100644 index 000000000..4d61716a6 --- /dev/null +++ b/class_high_five_1_1_attribute_phase_change__coll__graph.md5 @@ -0,0 +1 @@ +2ac6b0fab70f943ddc39fabec6749a57 \ No newline at end of file diff --git a/class_high_five_1_1_attribute_phase_change__coll__graph.png b/class_high_five_1_1_attribute_phase_change__coll__graph.png new file mode 100644 index 000000000..ae6608a97 Binary files /dev/null and b/class_high_five_1_1_attribute_phase_change__coll__graph.png differ diff --git a/class_high_five_1_1_attribute_phase_change__inherit__graph.map b/class_high_five_1_1_attribute_phase_change__inherit__graph.map new file mode 100644 index 000000000..f02912fe6 --- /dev/null +++ b/class_high_five_1_1_attribute_phase_change__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_attribute_phase_change__inherit__graph.md5 b/class_high_five_1_1_attribute_phase_change__inherit__graph.md5 new file mode 100644 index 000000000..4d61716a6 --- /dev/null +++ b/class_high_five_1_1_attribute_phase_change__inherit__graph.md5 @@ -0,0 +1 @@ +2ac6b0fab70f943ddc39fabec6749a57 \ No newline at end of file diff --git a/class_high_five_1_1_attribute_phase_change__inherit__graph.png b/class_high_five_1_1_attribute_phase_change__inherit__graph.png new file mode 100644 index 000000000..ae6608a97 Binary files /dev/null and b/class_high_five_1_1_attribute_phase_change__inherit__graph.png differ diff --git a/class_high_five_1_1_caching-members.html b/class_high_five_1_1_caching-members.html new file mode 100644 index 000000000..aa64a429f --- /dev/null +++ b/class_high_five_1_1_caching-members.html @@ -0,0 +1,116 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::Caching Member List
+
+
+ +

This is the complete list of members for HighFive::Caching, including all inherited members.

+ + + + + + +
Caching(const size_t numSlots, const size_t cacheSize, const double w0=static_cast< double >(H5D_CHUNK_CACHE_W0_DEFAULT))HighFive::Cachinginline
Caching(const DataSetCreateProps &dcpl)HighFive::Cachinginlineexplicit
getCacheSize() constHighFive::Cachinginline
getNumSlots() constHighFive::Cachinginline
getW0() constHighFive::Cachinginline
+
+ + + + diff --git a/class_high_five_1_1_caching.html b/class_high_five_1_1_caching.html new file mode 100644 index 000000000..4181372bb --- /dev/null +++ b/class_high_five_1_1_caching.html @@ -0,0 +1,291 @@ + + + + + + + +HighFive: HighFive::Caching Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::Caching Class Reference
+
+
+ +

#include <H5PropertyList.hpp>

+
+Inheritance diagram for HighFive::Caching:
+
+
Inheritance graph
+ + + + + +
[legend]
+
+Collaboration diagram for HighFive::Caching:
+
+
Collaboration graph
+ + + + + +
[legend]
+ + + + + + + + + + + + +

+Public Member Functions

 Caching (const size_t numSlots, const size_t cacheSize, const double w0=static_cast< double >(H5D_CHUNK_CACHE_W0_DEFAULT))
 
 Caching (const DataSetCreateProps &dcpl)
 
size_t getNumSlots () const
 
size_t getCacheSize () const
 
double getW0 () const
 
+

Detailed Description

+

Dataset access property to control chunk cache configuration. Do not confuse with the similar file access property for H5Pset_cache

+

Constructor & Destructor Documentation

+ +

◆ Caching() [1/2]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + +
HighFive::Caching::Caching (const size_t numSlots,
const size_t cacheSize,
const double w0 = static_cast<double>(H5D_CHUNK_CACHE_W0_DEFAULT) )
+
+inline
+
+
+ +

◆ Caching() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Caching::Caching (const DataSetCreateProps & dcpl)
+
+inlineexplicit
+
+ +
+
+

Member Function Documentation

+ +

◆ getCacheSize()

+ +
+
+ + + + + +
+ + + + + + + +
size_t HighFive::Caching::getCacheSize () const
+
+inline
+
+ +
+
+ +

◆ getNumSlots()

+ +
+
+ + + + + +
+ + + + + + + +
size_t HighFive::Caching::getNumSlots () const
+
+inline
+
+ +
+
+ +

◆ getW0()

+ +
+
+ + + + + +
+ + + + + + + +
double HighFive::Caching::getW0 () const
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_caching.js b/class_high_five_1_1_caching.js new file mode 100644 index 000000000..f8ece60f2 --- /dev/null +++ b/class_high_five_1_1_caching.js @@ -0,0 +1,8 @@ +var class_high_five_1_1_caching = +[ + [ "Caching", "class_high_five_1_1_caching.html#a4ad5bc32240ca22d19c154d6c7691e76", null ], + [ "Caching", "class_high_five_1_1_caching.html#a1103a422af4e81b1f4c044996d66d72b", null ], + [ "getCacheSize", "class_high_five_1_1_caching.html#a54d4f322493e56f22fd5d70b1f64ea26", null ], + [ "getNumSlots", "class_high_five_1_1_caching.html#a0de6bc2b09373107cd10a0fc6211d030", null ], + [ "getW0", "class_high_five_1_1_caching.html#ae8777cc455ef27d20d44f9aea32720b7", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_caching__coll__graph.map b/class_high_five_1_1_caching__coll__graph.map new file mode 100644 index 000000000..330db6052 --- /dev/null +++ b/class_high_five_1_1_caching__coll__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_caching__coll__graph.md5 b/class_high_five_1_1_caching__coll__graph.md5 new file mode 100644 index 000000000..d0a6a882e --- /dev/null +++ b/class_high_five_1_1_caching__coll__graph.md5 @@ -0,0 +1 @@ +66bafa67e89767c674c508cef030d3ba \ No newline at end of file diff --git a/class_high_five_1_1_caching__coll__graph.png b/class_high_five_1_1_caching__coll__graph.png new file mode 100644 index 000000000..d7d9f217a Binary files /dev/null and b/class_high_five_1_1_caching__coll__graph.png differ diff --git a/class_high_five_1_1_caching__inherit__graph.map b/class_high_five_1_1_caching__inherit__graph.map new file mode 100644 index 000000000..330db6052 --- /dev/null +++ b/class_high_five_1_1_caching__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_caching__inherit__graph.md5 b/class_high_five_1_1_caching__inherit__graph.md5 new file mode 100644 index 000000000..d0a6a882e --- /dev/null +++ b/class_high_five_1_1_caching__inherit__graph.md5 @@ -0,0 +1 @@ +66bafa67e89767c674c508cef030d3ba \ No newline at end of file diff --git a/class_high_five_1_1_caching__inherit__graph.png b/class_high_five_1_1_caching__inherit__graph.png new file mode 100644 index 000000000..d7d9f217a Binary files /dev/null and b/class_high_five_1_1_caching__inherit__graph.png differ diff --git a/class_high_five_1_1_chunking-members.html b/class_high_five_1_1_chunking-members.html new file mode 100644 index 000000000..8054d3f94 --- /dev/null +++ b/class_high_five_1_1_chunking-members.html @@ -0,0 +1,116 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::Chunking Member List
+
+
+ +

This is the complete list of members for HighFive::Chunking, including all inherited members.

+ + + + + + +
Chunking(const std::vector< hsize_t > &dims)HighFive::Chunkinginlineexplicit
Chunking(const std::initializer_list< hsize_t > &items)HighFive::Chunkinginline
Chunking(hsize_t item, Args... args)HighFive::Chunkinginlineexplicit
Chunking(DataSetCreateProps &plist, size_t max_dims=32)HighFive::Chunkinginlineexplicit
getDimensions() const noexceptHighFive::Chunkinginline
+
+ + + + diff --git a/class_high_five_1_1_chunking.html b/class_high_five_1_1_chunking.html new file mode 100644 index 000000000..1fcacea57 --- /dev/null +++ b/class_high_five_1_1_chunking.html @@ -0,0 +1,290 @@ + + + + + + + +HighFive: HighFive::Chunking Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::Chunking Class Reference
+
+
+ +

#include <H5PropertyList.hpp>

+
+Inheritance diagram for HighFive::Chunking:
+
+
Inheritance graph
+ + + + + +
[legend]
+
+Collaboration diagram for HighFive::Chunking:
+
+
Collaboration graph
+ + + + + +
[legend]
+ + + + + + + + + + + + + +

+Public Member Functions

 Chunking (const std::vector< hsize_t > &dims)
 
 Chunking (const std::initializer_list< hsize_t > &items)
 
template<typename... Args>
 Chunking (hsize_t item, Args... args)
 
 Chunking (DataSetCreateProps &plist, size_t max_dims=32)
 
const std::vector< hsize_t > & getDimensions () const noexcept
 
+

Constructor & Destructor Documentation

+ +

◆ Chunking() [1/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Chunking::Chunking (const std::vector< hsize_t > & dims)
+
+inlineexplicit
+
+ +
+
+ +

◆ Chunking() [2/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Chunking::Chunking (const std::initializer_list< hsize_t > & items)
+
+inline
+
+ +
+
+ +

◆ Chunking() [3/4]

+ +
+
+
+template<typename... Args>
+ + + + + +
+ + + + + + + + + + + +
HighFive::Chunking::Chunking (hsize_t item,
Args... args )
+
+inlineexplicit
+
+ +
+
+ +

◆ Chunking() [4/4]

+ +
+
+ + + + + +
+ + + + + + + + + + + +
HighFive::Chunking::Chunking (DataSetCreateProps & plist,
size_t max_dims = 32 )
+
+inlineexplicit
+
+ +
+
+

Member Function Documentation

+ +

◆ getDimensions()

+ +
+
+ + + + + +
+ + + + + + + +
const std::vector< hsize_t > & HighFive::Chunking::getDimensions () const
+
+inlinenoexcept
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_chunking.js b/class_high_five_1_1_chunking.js new file mode 100644 index 000000000..1d9eabdde --- /dev/null +++ b/class_high_five_1_1_chunking.js @@ -0,0 +1,8 @@ +var class_high_five_1_1_chunking = +[ + [ "Chunking", "class_high_five_1_1_chunking.html#abfd796a2842296cce52f56563d5e3f1b", null ], + [ "Chunking", "class_high_five_1_1_chunking.html#ae6f0394d31da862755c2a828b7340578", null ], + [ "Chunking", "class_high_five_1_1_chunking.html#a67ef8c92794bef91bb521dd1a8771034", null ], + [ "Chunking", "class_high_five_1_1_chunking.html#a3c16ed55527bf30ae056cb2f52adb3bc", null ], + [ "getDimensions", "class_high_five_1_1_chunking.html#ab7241caf43e07ff7bfdb192770270bf2", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_chunking__coll__graph.map b/class_high_five_1_1_chunking__coll__graph.map new file mode 100644 index 000000000..df4c3a476 --- /dev/null +++ b/class_high_five_1_1_chunking__coll__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_chunking__coll__graph.md5 b/class_high_five_1_1_chunking__coll__graph.md5 new file mode 100644 index 000000000..e2f44c64f --- /dev/null +++ b/class_high_five_1_1_chunking__coll__graph.md5 @@ -0,0 +1 @@ +06df4a3bc2c9e78d533e78e54ed6b417 \ No newline at end of file diff --git a/class_high_five_1_1_chunking__coll__graph.png b/class_high_five_1_1_chunking__coll__graph.png new file mode 100644 index 000000000..4d7d71c08 Binary files /dev/null and b/class_high_five_1_1_chunking__coll__graph.png differ diff --git a/class_high_five_1_1_chunking__inherit__graph.map b/class_high_five_1_1_chunking__inherit__graph.map new file mode 100644 index 000000000..df4c3a476 --- /dev/null +++ b/class_high_five_1_1_chunking__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_chunking__inherit__graph.md5 b/class_high_five_1_1_chunking__inherit__graph.md5 new file mode 100644 index 000000000..e2f44c64f --- /dev/null +++ b/class_high_five_1_1_chunking__inherit__graph.md5 @@ -0,0 +1 @@ +06df4a3bc2c9e78d533e78e54ed6b417 \ No newline at end of file diff --git a/class_high_five_1_1_chunking__inherit__graph.png b/class_high_five_1_1_chunking__inherit__graph.png new file mode 100644 index 000000000..4d7d71c08 Binary files /dev/null and b/class_high_five_1_1_chunking__inherit__graph.png differ diff --git a/class_high_five_1_1_compound_type-members.html b/class_high_five_1_1_compound_type-members.html new file mode 100644 index 000000000..aa2b8faf8 --- /dev/null +++ b/class_high_five_1_1_compound_type-members.html @@ -0,0 +1,141 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::CompoundType Member List
+
+
+ +

This is the complete list of members for HighFive::CompoundType, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
_hidHighFive::Objectprotected
asStringType() constHighFive::DataTypeinline
commit(const Object &object, const std::string &name) constHighFive::CompoundTypeinline
CompoundType(const CompoundType &other)=defaultHighFive::CompoundType
CompoundType(const std::vector< member_def > &t_members, size_t size=0)HighFive::CompoundTypeinline
CompoundType(std::vector< member_def > &&t_members, size_t size=0)HighFive::CompoundTypeinline
CompoundType(const std::initializer_list< member_def > &t_members, size_t size=0)HighFive::CompoundTypeinline
CompoundType(DataType &&type)HighFive::CompoundTypeinline
empty() const noexceptHighFive::DataTypeinline
getClass() constHighFive::DataTypeinline
getCreatePropertyList() constHighFive::DataTypeinline
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getMembers() const noexceptHighFive::CompoundTypeinline
getSize() constHighFive::DataTypeinline
getType() constHighFive::Objectinline
isFixedLenStr() constHighFive::DataTypeinline
isReference() constHighFive::DataTypeinline
isValid() const noexceptHighFive::Objectinline
isVariableStr() constHighFive::DataTypeinline
Object(Object &&other) noexceptHighFive::DataTypeinlineprotected
Object()HighFive::DataTypeinlineprotected
Object(const Object &other)HighFive::DataTypeinlineprotected
Object(hid_t)HighFive::DataTypeinlineexplicitprotected
operator!=(const DataType &other) constHighFive::DataTypeinline
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const DataType &other) constHighFive::DataTypeinline
HighFive::Object::operator==(const Object &other) const noexceptHighFive::Objectinline
string() constHighFive::DataTypeinline
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_compound_type.html b/class_high_five_1_1_compound_type.html new file mode 100644 index 000000000..850bda233 --- /dev/null +++ b/class_high_five_1_1_compound_type.html @@ -0,0 +1,472 @@ + + + + + + + +HighFive: HighFive::CompoundType Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::CompoundType Class Reference
+
+
+ +

Create a compound HDF5 datatype. + More...

+ +

#include <H5DataType.hpp>

+
+Inheritance diagram for HighFive::CompoundType:
+
+
Inheritance graph
+ + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::CompoundType:
+
+
Collaboration graph
+ + + + + + + +
[legend]
+ + + + + +

+Classes

struct  member_def
 Use for defining a sub-type of compound type. More...
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 CompoundType (const CompoundType &other)=default
 
 CompoundType (const std::vector< member_def > &t_members, size_t size=0)
 Initializes a compound type from a vector of member definitions.
 
 CompoundType (std::vector< member_def > &&t_members, size_t size=0)
 
 CompoundType (const std::initializer_list< member_def > &t_members, size_t size=0)
 
 CompoundType (DataType &&type)
 Initializes a compound type from a DataType.
 
void commit (const Object &object, const std::string &name) const
 Commit datatype into the given Object.
 
const std::vector< member_def > & getMembers () const noexcept
 Get read access to the CompoundType members.
 
- Public Member Functions inherited from HighFive::DataType
bool operator== (const DataType &other) const
 
bool operator!= (const DataType &other) const
 
DataTypeClass getClass () const
 Return the fundamental type.
 
size_t getSize () const
 Returns the length (in bytes) of this type elements.
 
std::string string () const
 Returns a friendly description of the type (e.g. Float32)
 
bool isVariableStr () const
 Returns whether the type is a variable-length string.
 
bool isFixedLenStr () const
 Returns whether the type is a fixed-length string.
 
StringType asStringType () const
 Returns this datatype as a StringType.
 
bool empty () const noexcept
 Check the DataType was default constructed.
 
bool isReference () const
 Returns whether the type is a Reference.
 
DataTypeCreateProps getCreatePropertyList () const
 Get the list of properties for creation of this DataType.
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
+ + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Protected Member Functions inherited from HighFive::DataType
 Object (Object &&other) noexcept
 
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
+

Detailed Description

+

Create a compound HDF5 datatype.

+

Constructor & Destructor Documentation

+ +

◆ CompoundType() [1/5]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::CompoundType::CompoundType (const CompoundType & other)
+
+default
+
+ +
+
+ +

◆ CompoundType() [2/5]

+ +
+
+ + + + + +
+ + + + + + + + + + + +
HighFive::CompoundType::CompoundType (const std::vector< member_def > & t_members,
size_t size = 0 )
+
+inline
+
+ +

Initializes a compound type from a vector of member definitions.

+
Parameters
+ + + +
t_members
size
+
+
+ +
+
+ +

◆ CompoundType() [3/5]

+ +
+
+ + + + + +
+ + + + + + + + + + + +
HighFive::CompoundType::CompoundType (std::vector< member_def > && t_members,
size_t size = 0 )
+
+inline
+
+ +
+
+ +

◆ CompoundType() [4/5]

+ +
+
+ + + + + +
+ + + + + + + + + + + +
HighFive::CompoundType::CompoundType (const std::initializer_list< member_def > & t_members,
size_t size = 0 )
+
+inline
+
+ +
+
+ +

◆ CompoundType() [5/5]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::CompoundType::CompoundType (DataType && type)
+
+inline
+
+ +

Initializes a compound type from a DataType.

+
Parameters
+ + +
type
+
+
+ +
+
+

Member Function Documentation

+ +

◆ commit()

+ +
+
+ + + + + +
+ + + + + + + + + + + +
void HighFive::CompoundType::commit (const Object & object,
const std::string & name ) const
+
+inline
+
+ +

Commit datatype into the given Object.

+
Parameters
+ + + +
objectLocation to commit object into
nameName to give the datatype
+
+
+ +
+
+ +

◆ getMembers()

+ +
+
+ + + + + +
+ + + + + + + +
const std::vector< member_def > & HighFive::CompoundType::getMembers () const
+
+inlinenoexcept
+
+ +

Get read access to the CompoundType members.

+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_compound_type.js b/class_high_five_1_1_compound_type.js new file mode 100644 index 000000000..bb09ba350 --- /dev/null +++ b/class_high_five_1_1_compound_type.js @@ -0,0 +1,11 @@ +var class_high_five_1_1_compound_type = +[ + [ "member_def", "struct_high_five_1_1_compound_type_1_1member__def.html", "struct_high_five_1_1_compound_type_1_1member__def" ], + [ "CompoundType", "class_high_five_1_1_compound_type.html#a7a9a5ba8596390d58597efe77c986282", null ], + [ "CompoundType", "class_high_five_1_1_compound_type.html#ac8f84671aaca1a6e4aadf599464f822d", null ], + [ "CompoundType", "class_high_five_1_1_compound_type.html#af41ef356cdeb6f369ea2c3f5c6acb317", null ], + [ "CompoundType", "class_high_five_1_1_compound_type.html#a928622671e9da1ffcc7df491b746680d", null ], + [ "CompoundType", "class_high_five_1_1_compound_type.html#ad8de9032c191ca6ca6221eb80dcf23da", null ], + [ "commit", "class_high_five_1_1_compound_type.html#a15cef864f40910add938415ffb8eeac1", null ], + [ "getMembers", "class_high_five_1_1_compound_type.html#a771d62eb1c025b13c511de6959816d95", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_compound_type__coll__graph.map b/class_high_five_1_1_compound_type__coll__graph.map new file mode 100644 index 000000000..e6a26977b --- /dev/null +++ b/class_high_five_1_1_compound_type__coll__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_compound_type__coll__graph.md5 b/class_high_five_1_1_compound_type__coll__graph.md5 new file mode 100644 index 000000000..2442d938c --- /dev/null +++ b/class_high_five_1_1_compound_type__coll__graph.md5 @@ -0,0 +1 @@ +7d104f0529de33f6e2a9f8d8cf946590 \ No newline at end of file diff --git a/class_high_five_1_1_compound_type__coll__graph.png b/class_high_five_1_1_compound_type__coll__graph.png new file mode 100644 index 000000000..a6b7d0e17 Binary files /dev/null and b/class_high_five_1_1_compound_type__coll__graph.png differ diff --git a/class_high_five_1_1_compound_type__inherit__graph.map b/class_high_five_1_1_compound_type__inherit__graph.map new file mode 100644 index 000000000..e6a26977b --- /dev/null +++ b/class_high_five_1_1_compound_type__inherit__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_compound_type__inherit__graph.md5 b/class_high_five_1_1_compound_type__inherit__graph.md5 new file mode 100644 index 000000000..2442d938c --- /dev/null +++ b/class_high_five_1_1_compound_type__inherit__graph.md5 @@ -0,0 +1 @@ +7d104f0529de33f6e2a9f8d8cf946590 \ No newline at end of file diff --git a/class_high_five_1_1_compound_type__inherit__graph.png b/class_high_five_1_1_compound_type__inherit__graph.png new file mode 100644 index 000000000..a6b7d0e17 Binary files /dev/null and b/class_high_five_1_1_compound_type__inherit__graph.png differ diff --git a/class_high_five_1_1_create_intermediate_group-members.html b/class_high_five_1_1_create_intermediate_group-members.html new file mode 100644 index 000000000..b3d4b27eb --- /dev/null +++ b/class_high_five_1_1_create_intermediate_group-members.html @@ -0,0 +1,116 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::CreateIntermediateGroup Member List
+
+
+ +

This is the complete list of members for HighFive::CreateIntermediateGroup, including all inherited members.

+ + + + + + +
CreateIntermediateGroup(bool create=true)HighFive::CreateIntermediateGroupinlineexplicit
CreateIntermediateGroup(const ObjectCreateProps &ocpl)HighFive::CreateIntermediateGroupinlineexplicit
CreateIntermediateGroup(const LinkCreateProps &lcpl)HighFive::CreateIntermediateGroupexplicit
fromPropertyList(hid_t hid)HighFive::CreateIntermediateGroupinlineprotected
isSet() constHighFive::CreateIntermediateGroupinline
+
+ + + + diff --git a/class_high_five_1_1_create_intermediate_group.html b/class_high_five_1_1_create_intermediate_group.html new file mode 100644 index 000000000..978f400f6 --- /dev/null +++ b/class_high_five_1_1_create_intermediate_group.html @@ -0,0 +1,283 @@ + + + + + + + +HighFive: HighFive::CreateIntermediateGroup Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::CreateIntermediateGroup Class Reference
+
+
+ +

#include <H5PropertyList.hpp>

+
+Inheritance diagram for HighFive::CreateIntermediateGroup:
+
+
Inheritance graph
+ + + + + +
[legend]
+
+Collaboration diagram for HighFive::CreateIntermediateGroup:
+
+
Collaboration graph
+ + + + + +
[legend]
+ + + + + + + + + + +

+Public Member Functions

 CreateIntermediateGroup (bool create=true)
 
 CreateIntermediateGroup (const ObjectCreateProps &ocpl)
 
 CreateIntermediateGroup (const LinkCreateProps &lcpl)
 
bool isSet () const
 
+ + + +

+Protected Member Functions

void fromPropertyList (hid_t hid)
 
+

Constructor & Destructor Documentation

+ +

◆ CreateIntermediateGroup() [1/3]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::CreateIntermediateGroup::CreateIntermediateGroup (bool create = true)
+
+inlineexplicit
+
+ +
+
+ +

◆ CreateIntermediateGroup() [2/3]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::CreateIntermediateGroup::CreateIntermediateGroup (const ObjectCreateProps & ocpl)
+
+inlineexplicit
+
+ +
+
+ +

◆ CreateIntermediateGroup() [3/3]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::CreateIntermediateGroup::CreateIntermediateGroup (const LinkCreateProps & lcpl)
+
+explicit
+
+ +
+
+

Member Function Documentation

+ +

◆ fromPropertyList()

+ +
+
+ + + + + +
+ + + + + + + +
void HighFive::CreateIntermediateGroup::fromPropertyList (hid_t hid)
+
+inlineprotected
+
+ +
+
+ +

◆ isSet()

+ +
+
+ + + + + +
+ + + + + + + +
bool HighFive::CreateIntermediateGroup::isSet () const
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_create_intermediate_group.js b/class_high_five_1_1_create_intermediate_group.js new file mode 100644 index 000000000..522a2f925 --- /dev/null +++ b/class_high_five_1_1_create_intermediate_group.js @@ -0,0 +1,8 @@ +var class_high_five_1_1_create_intermediate_group = +[ + [ "CreateIntermediateGroup", "class_high_five_1_1_create_intermediate_group.html#a05ff59987cddf8b82e3bd7a3eec0394f", null ], + [ "CreateIntermediateGroup", "class_high_five_1_1_create_intermediate_group.html#ab7b461991cf2489e2ec80c17c2a15462", null ], + [ "CreateIntermediateGroup", "class_high_five_1_1_create_intermediate_group.html#a5d3a1f7a0201c8735bb27493717b67a8", null ], + [ "fromPropertyList", "class_high_five_1_1_create_intermediate_group.html#a815c0e49561c0b4a774cc59a4aa017b7", null ], + [ "isSet", "class_high_five_1_1_create_intermediate_group.html#af4a9eb748f1c06199c9ad19daafd8632", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_create_intermediate_group__coll__graph.map b/class_high_five_1_1_create_intermediate_group__coll__graph.map new file mode 100644 index 000000000..a0801d460 --- /dev/null +++ b/class_high_five_1_1_create_intermediate_group__coll__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_create_intermediate_group__coll__graph.md5 b/class_high_five_1_1_create_intermediate_group__coll__graph.md5 new file mode 100644 index 000000000..22f19099f --- /dev/null +++ b/class_high_five_1_1_create_intermediate_group__coll__graph.md5 @@ -0,0 +1 @@ +227dd7f5225eeca8275b5cef6ce4249a \ No newline at end of file diff --git a/class_high_five_1_1_create_intermediate_group__coll__graph.png b/class_high_five_1_1_create_intermediate_group__coll__graph.png new file mode 100644 index 000000000..c7a04feb4 Binary files /dev/null and b/class_high_five_1_1_create_intermediate_group__coll__graph.png differ diff --git a/class_high_five_1_1_create_intermediate_group__inherit__graph.map b/class_high_five_1_1_create_intermediate_group__inherit__graph.map new file mode 100644 index 000000000..a0801d460 --- /dev/null +++ b/class_high_five_1_1_create_intermediate_group__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_create_intermediate_group__inherit__graph.md5 b/class_high_five_1_1_create_intermediate_group__inherit__graph.md5 new file mode 100644 index 000000000..22f19099f --- /dev/null +++ b/class_high_five_1_1_create_intermediate_group__inherit__graph.md5 @@ -0,0 +1 @@ +227dd7f5225eeca8275b5cef6ce4249a \ No newline at end of file diff --git a/class_high_five_1_1_create_intermediate_group__inherit__graph.png b/class_high_five_1_1_create_intermediate_group__inherit__graph.png new file mode 100644 index 000000000..c7a04feb4 Binary files /dev/null and b/class_high_five_1_1_create_intermediate_group__inherit__graph.png differ diff --git a/class_high_five_1_1_data_set-members.html b/class_high_five_1_1_data_set-members.html new file mode 100644 index 000000000..873064a8f --- /dev/null +++ b/class_high_five_1_1_data_set-members.html @@ -0,0 +1,164 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::DataSet Member List
+
+
+ +

This is the complete list of members for HighFive::DataSet, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
_file_objHighFive::PathTraits< DataSet >protected
_hidHighFive::Objectprotected
createAttribute(const std::string &attribute_name, const DataSpace &space, const DataType &type)HighFive::AnnotateTraits< DataSet >inline
createAttribute(const std::string &attribute_name, const DataSpace &space)HighFive::AnnotateTraits< DataSet >inline
createAttribute(const std::string &attribute_name, const T &data)HighFive::AnnotateTraits< DataSet >inline
DataSet()=defaultHighFive::DataSet
DataSet(Object &&o) noexceptHighFive::DataSetinlineprotected
deleteAttribute(const std::string &attribute_name)HighFive::AnnotateTraits< DataSet >inline
getAccessPropertyList() constHighFive::DataSetinline
getAttribute(const std::string &attribute_name) constHighFive::AnnotateTraits< DataSet >inline
getCreatePropertyList() constHighFive::DataSetinline
getDataType() constHighFive::DataSetinline
getDimensions() constHighFive::DataSetinline
getElementCount() constHighFive::DataSetinline
getFile() const noexceptHighFive::PathTraits< DataSet >inline
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getMemSpace() constHighFive::DataSetinline
getNumberAttributes() constHighFive::AnnotateTraits< DataSet >inline
getOffset() constHighFive::DataSetinline
getPath() constHighFive::PathTraits< DataSet >inline
getSpace() constHighFive::DataSetinline
getStorageSize() constHighFive::DataSetinline
getType() constHighFive::Objectinline
hasAttribute(const std::string &attr_name) constHighFive::AnnotateTraits< DataSet >inline
isValid() const noexceptHighFive::Objectinline
listAttributeNames() constHighFive::AnnotateTraits< DataSet >inline
NodeTraitsHighFive::DataSetfriend
Object(Object &&other) noexceptHighFive::DataSetinlineprotected
Object()HighFive::DataSetinlineprotected
Object(const Object &other)HighFive::DataSetinlineprotected
Object(hid_t)HighFive::DataSetinlineexplicitprotected
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const Object &other) const noexceptHighFive::Objectinline
PathTraits()HighFive::PathTraits< DataSet >inline
read(const DataTransferProps &xfer_props=DataTransferProps()) constHighFive::SliceTraits< DataSet >inline
read(T &array, const DataTransferProps &xfer_props=DataTransferProps()) constHighFive::SliceTraits< DataSet >inline
read(T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) constHighFive::SliceTraits< DataSet >inline
read(T *array, const DataTransferProps &xfer_props=DataTransferProps()) constHighFive::SliceTraits< DataSet >inline
read_raw(T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) constHighFive::SliceTraits< DataSet >inline
read_raw(T *array, const DataTransferProps &xfer_props=DataTransferProps()) constHighFive::SliceTraits< DataSet >inline
ReferenceHighFive::DataSetfriend
resize(const std::vector< size_t > &dims)HighFive::DataSetinline
select(const HyperSlab &hyperslab) constHighFive::SliceTraits< DataSet >inline
select(const HyperSlab &hyperslab, const DataSpace &memspace) constHighFive::SliceTraits< DataSet >inline
select(const std::vector< size_t > &offset, const std::vector< size_t > &count, const std::vector< size_t > &stride={}, const std::vector< size_t > &block={}) constHighFive::SliceTraits< DataSet >inline
select(const std::vector< size_t > &columns) constHighFive::SliceTraits< DataSet >inline
select(const ElementSet &elements) constHighFive::SliceTraits< DataSet >inline
typeHighFive::DataSetstatic
write(const T &buffer, const DataTransferProps &xfer_props=DataTransferProps())HighFive::SliceTraits< DataSet >inline
write_raw(const T *buffer, const DataType &mem_datatype, const DataTransferProps &xfer_props=DataTransferProps())HighFive::SliceTraits< DataSet >inline
write_raw(const T *buffer, const DataTransferProps &xfer_props=DataTransferProps())HighFive::SliceTraits< DataSet >inline
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_data_set.html b/class_high_five_1_1_data_set.html new file mode 100644 index 000000000..43a865df2 --- /dev/null +++ b/class_high_five_1_1_data_set.html @@ -0,0 +1,831 @@ + + + + + + + +HighFive: HighFive::DataSet Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::DataSet Class Reference
+
+
+ +

Class representing a dataset. + More...

+ +

#include <H5DataSet.hpp>

+
+Inheritance diagram for HighFive::DataSet:
+
+
Inheritance graph
+ + + + + + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::DataSet:
+
+
Collaboration graph
+ + + + + + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

uint64_t getStorageSize () const
 getStorageSize
 
uint64_t getOffset () const
 getOffset
 
DataType getDataType () const
 getDataType
 
DataSpace getSpace () const
 getSpace
 
DataSpace getMemSpace () const
 getMemSpace
 
void resize (const std::vector< size_t > &dims)
 Change the size of the dataset.
 
std::vector< size_t > getDimensions () const
 Get the dimensions of the whole DataSet. This is a shorthand for getSpace().getDimensions()
 
size_t getElementCount () const
 Get the total number of elements in the current dataset. E.g. 2x2x2 matrix has size 8. This is a shorthand for getSpace().getTotalCount()
 
DataSetCreateProps getCreatePropertyList () const
 Get the list of properties for creation of this dataset.
 
DataSetAccessProps getAccessPropertyList () const
 Get the list of properties for accession of this dataset.
 
 DataSet ()=default
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
- Public Member Functions inherited from HighFive::SliceTraits< DataSet >
Selection select (const HyperSlab &hyperslab) const
 Select an hyperslab in the current Slice/Dataset.
 
Selection select (const HyperSlab &hyperslab, const DataSpace &memspace) const
 Select an hyperslab in the current Slice/Dataset.
 
Selection select (const std::vector< size_t > &offset, const std::vector< size_t > &count, const std::vector< size_t > &stride={}, const std::vector< size_t > &block={}) const
 Select a region in the current Slice/Dataset of count points at offset separated by stride. If strides are not provided they will default to 1 in all dimensions.
 
Selection select (const std::vector< size_t > &columns) const
 Select a set of columns in the last dimension of this dataset.
 
Selection select (const ElementSet &elements) const
 Select a region in the current Slice/Dataset out of a list of elements.
 
read (const DataTransferProps &xfer_props=DataTransferProps()) const
 
void read (T &array, const DataTransferProps &xfer_props=DataTransferProps()) const
 
void read (T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) const
 
void read (T *array, const DataTransferProps &xfer_props=DataTransferProps()) const
 
void read_raw (T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) const
 
void read_raw (T *array, const DataTransferProps &xfer_props=DataTransferProps()) const
 
void write (const T &buffer, const DataTransferProps &xfer_props=DataTransferProps())
 
void write_raw (const T *buffer, const DataType &mem_datatype, const DataTransferProps &xfer_props=DataTransferProps())
 
void write_raw (const T *buffer, const DataTransferProps &xfer_props=DataTransferProps())
 
- Public Member Functions inherited from HighFive::AnnotateTraits< DataSet >
Attribute createAttribute (const std::string &attribute_name, const DataSpace &space, const DataType &type)
 create a new attribute with the name attribute_name
 
Attribute createAttribute (const std::string &attribute_name, const DataSpace &space)
 createAttribute create a new attribute on the current dataset with size specified by space
 
Attribute createAttribute (const std::string &attribute_name, const T &data)
 createAttribute create a new attribute on the current dataset and write to it, inferring the DataSpace from data.
 
void deleteAttribute (const std::string &attribute_name)
 deleteAttribute let you delete an attribute by its name.
 
Attribute getAttribute (const std::string &attribute_name) const
 open an existing attribute with the name attribute_name
 
size_t getNumberAttributes () const
 return the number of attributes of the node / group
 
std::vector< std::string > listAttributeNames () const
 list all attribute name of the node / group
 
bool hasAttribute (const std::string &attr_name) const
 checks an attribute exists
 
- Public Member Functions inherited from HighFive::PathTraits< DataSet >
 PathTraits ()
 
std::string getPath () const
 return the path to the current object
 
FilegetFile () const noexcept
 Return a reference to the File object this object belongs.
 
+ + + +

+Static Public Attributes

static const ObjectType type = ObjectType::Dataset
 
+ + + + + + + + + + + + + + + + + + + + +

+Protected Member Functions

 DataSet (Object &&o) noexcept
 
 Object (Object &&other) noexcept
 
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
+ + + + + + +

+Friends

class Reference
 
template<typename Derivate >
class NodeTraits
 
+ + + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
- Protected Attributes inherited from HighFive::PathTraits< DataSet >
std::shared_ptr< File_file_obj
 
+

Detailed Description

+

Class representing a dataset.

+

Constructor & Destructor Documentation

+ +

◆ DataSet() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::DataSet::DataSet ()
+
+default
+
+
Deprecated
Default constructor creates unsafe uninitialized objects
+ +
+
+ +

◆ DataSet() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::DataSet::DataSet (Object && o)
+
+inlineprotectednoexcept
+
+ +
+
+

Member Function Documentation

+ +

◆ getAccessPropertyList()

+ +
+
+ + + + + +
+ + + + + + + +
DataSetAccessProps HighFive::DataSet::getAccessPropertyList () const
+
+inline
+
+ +

Get the list of properties for accession of this dataset.

+ +
+
+ +

◆ getCreatePropertyList()

+ +
+
+ + + + + +
+ + + + + + + +
DataSetCreateProps HighFive::DataSet::getCreatePropertyList () const
+
+inline
+
+ +

Get the list of properties for creation of this dataset.

+ +
+
+ +

◆ getDataType()

+ +
+
+ + + + + +
+ + + + + + + +
DataType HighFive::DataSet::getDataType () const
+
+inline
+
+ +

getDataType

+
Returns
return the datatype associated with this dataset
+ +
+
+ +

◆ getDimensions()

+ +
+
+ + + + + +
+ + + + + + + +
std::vector< size_t > HighFive::DataSet::getDimensions () const
+
+inline
+
+ +

Get the dimensions of the whole DataSet. This is a shorthand for getSpace().getDimensions()

+
Returns
The shape of the current HighFive::DataSet
+ +
+
+ +

◆ getElementCount()

+ +
+
+ + + + + +
+ + + + + + + +
size_t HighFive::DataSet::getElementCount () const
+
+inline
+
+ +

Get the total number of elements in the current dataset. E.g. 2x2x2 matrix has size 8. This is a shorthand for getSpace().getTotalCount()

+
Returns
The shape of the current HighFive::DataSet
+ +
+
+ +

◆ getMemSpace()

+ +
+
+ + + + + +
+ + + + + + + +
DataSpace HighFive::DataSet::getMemSpace () const
+
+inline
+
+ +

getMemSpace

+
Returns
same than getSpace for DataSet, compatibility with Selection class
+ +
+
+ +

◆ getOffset()

+ +
+
+ + + + + +
+ + + + + + + +
uint64_t HighFive::DataSet::getOffset () const
+
+inline
+
+ +

getOffset

+
Returns
returns DataSet address in file
+ +
+
+ +

◆ getSpace()

+ +
+
+ + + + + +
+ + + + + + + +
DataSpace HighFive::DataSet::getSpace () const
+
+inline
+
+ +

getSpace

+
Returns
return the dataspace associated with this dataset
+ +
+
+ +

◆ getStorageSize()

+ +
+
+ + + + + +
+ + + + + + + +
uint64_t HighFive::DataSet::getStorageSize () const
+
+inline
+
+ +

getStorageSize

+
Returns
returns the amount of storage allocated for a dataset.
+ +
+
+ +

◆ Object() [1/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object ()
+
+inlineprotected
+
+ +
+
+ +

◆ Object() [2/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object (const Object & other)
+
+inlineprotected
+
+ +
+
+ +

◆ Object() [3/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object (hid_t hid)
+
+inlineexplicitprotected
+
+ +
+
+ +

◆ Object() [4/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object (Object && other)
+
+inlineprotectednoexcept
+
+ +
+
+ +

◆ resize()

+ +
+
+ + + + + +
+ + + + + + + +
void HighFive::DataSet::resize (const std::vector< size_t > & dims)
+
+inline
+
+ +

Change the size of the dataset.

+

This requires that the dataset was created with chunking, and you would generally want to have set a larger maxdims setting

Parameters
+ + +
dimsNew size of the dataset
+
+
+ +
+
+

Friends And Related Symbol Documentation

+ +

◆ NodeTraits

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + +
friend class NodeTraits
+
+friend
+
+ +
+
+ +

◆ Reference

+ +
+
+ + + + + +
+ + + + +
friend class Reference
+
+friend
+
+ +
+
+

Member Data Documentation

+ +

◆ type

+ +
+
+ + + + + +
+ + + + +
const ObjectType HighFive::DataSet::type = ObjectType::Dataset
+
+static
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_data_set.js b/class_high_five_1_1_data_set.js new file mode 100644 index 000000000..9135742c5 --- /dev/null +++ b/class_high_five_1_1_data_set.js @@ -0,0 +1,21 @@ +var class_high_five_1_1_data_set = +[ + [ "DataSet", "class_high_five_1_1_data_set.html#a1a43c3413fef0f376d85dbf47e38ad55", null ], + [ "DataSet", "class_high_five_1_1_data_set.html#a99bb1d77991fd975fb559372b4b0fb6b", null ], + [ "getAccessPropertyList", "class_high_five_1_1_data_set.html#ada59836ba9ddb3973fa80076e4242734", null ], + [ "getCreatePropertyList", "class_high_five_1_1_data_set.html#a565ee99d20689e662f17ab8ce3b57000", null ], + [ "getDataType", "class_high_five_1_1_data_set.html#a52b7938b1c7e48f7600fbc3be4a0f24e", null ], + [ "getDimensions", "class_high_five_1_1_data_set.html#af7b75de38d47c2c68d4f384ee611bc66", null ], + [ "getElementCount", "class_high_five_1_1_data_set.html#abd786ba50bb11b92c9d760f7f77e4ca7", null ], + [ "getMemSpace", "class_high_five_1_1_data_set.html#a37f31fc5f14192b9a9fcdc7707e0ceee", null ], + [ "getOffset", "class_high_five_1_1_data_set.html#a662e1f9f8d9dfbbf02e135f6be2ee471", null ], + [ "getSpace", "class_high_five_1_1_data_set.html#aa9405c8f1bdb72d28e971c8645fb47aa", null ], + [ "getStorageSize", "class_high_five_1_1_data_set.html#a9f1da81f89bdaa08561fb35779586f64", null ], + [ "Object", "class_high_five_1_1_data_set.html#a6bae41d04f273d04d2914406ab79da32", null ], + [ "Object", "class_high_five_1_1_data_set.html#ab87ee7d5e2beee6a50d60dec20d3dfe5", null ], + [ "Object", "class_high_five_1_1_data_set.html#a9fe361bc0bd9662c1fd96a4a6ec1133a", null ], + [ "Object", "class_high_five_1_1_data_set.html#aa42052fa5ec4ee691f6a7dd6467199f2", null ], + [ "resize", "class_high_five_1_1_data_set.html#a516b2f8f1e4ecca470d8c351749807e9", null ], + [ "NodeTraits", "class_high_five_1_1_data_set.html#a403d48867d005e936868de31b2281ae8", null ], + [ "Reference", "class_high_five_1_1_data_set.html#a75dfa92607f3d314070ecf242e028014", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_data_set__coll__graph.map b/class_high_five_1_1_data_set__coll__graph.map new file mode 100644 index 000000000..bf74e62c8 --- /dev/null +++ b/class_high_five_1_1_data_set__coll__graph.map @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/class_high_five_1_1_data_set__coll__graph.md5 b/class_high_five_1_1_data_set__coll__graph.md5 new file mode 100644 index 000000000..4a898d1f0 --- /dev/null +++ b/class_high_five_1_1_data_set__coll__graph.md5 @@ -0,0 +1 @@ +fe37550f6392e40f981628467bd09609 \ No newline at end of file diff --git a/class_high_five_1_1_data_set__coll__graph.png b/class_high_five_1_1_data_set__coll__graph.png new file mode 100644 index 000000000..fca63f23a Binary files /dev/null and b/class_high_five_1_1_data_set__coll__graph.png differ diff --git a/class_high_five_1_1_data_set__inherit__graph.map b/class_high_five_1_1_data_set__inherit__graph.map new file mode 100644 index 000000000..bf74e62c8 --- /dev/null +++ b/class_high_five_1_1_data_set__inherit__graph.map @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/class_high_five_1_1_data_set__inherit__graph.md5 b/class_high_five_1_1_data_set__inherit__graph.md5 new file mode 100644 index 000000000..4a898d1f0 --- /dev/null +++ b/class_high_five_1_1_data_set__inherit__graph.md5 @@ -0,0 +1 @@ +fe37550f6392e40f981628467bd09609 \ No newline at end of file diff --git a/class_high_five_1_1_data_set__inherit__graph.png b/class_high_five_1_1_data_set__inherit__graph.png new file mode 100644 index 000000000..fca63f23a Binary files /dev/null and b/class_high_five_1_1_data_set__inherit__graph.png differ diff --git a/class_high_five_1_1_data_set_exception-members.html b/class_high_five_1_1_data_set_exception-members.html new file mode 100644 index 000000000..564b9a17e --- /dev/null +++ b/class_high_five_1_1_data_set_exception-members.html @@ -0,0 +1,123 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::DataSetException Member List
+
+
+ +

This is the complete list of members for HighFive::DataSetException, including all inherited members.

+ + + + + + + + + + + + + +
_err_majorHighFive::Exceptionprotected
_err_minorHighFive::Exceptionprotected
_errmsgHighFive::Exceptionprotected
_nextHighFive::Exceptionprotected
DataSetException(const std::string &err_msg)HighFive::DataSetExceptioninline
Exception(const std::string &err_msg)HighFive::Exceptioninline
getErrMajor() constHighFive::Exceptioninline
getErrMinor() constHighFive::Exceptioninline
nextException() constHighFive::Exceptioninline
setErrorMsg(const std::string &errmsg)HighFive::Exceptioninlinevirtual
what() const overrideHighFive::Exceptioninline
~Exception()HighFive::Exceptioninlinevirtual
+
+ + + + diff --git a/class_high_five_1_1_data_set_exception.html b/class_high_five_1_1_data_set_exception.html new file mode 100644 index 000000000..9c2e90dca --- /dev/null +++ b/class_high_five_1_1_data_set_exception.html @@ -0,0 +1,212 @@ + + + + + + + +HighFive: HighFive::DataSetException Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::DataSetException Class Reference
+
+
+ +

Exception specific to HighFive DataSet interface. + More...

+ +

#include <H5Exception.hpp>

+
+Inheritance diagram for HighFive::DataSetException:
+
+
Inheritance graph
+ + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::DataSetException:
+
+
Collaboration graph
+ + + + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 DataSetException (const std::string &err_msg)
 
- Public Member Functions inherited from HighFive::Exception
 Exception (const std::string &err_msg)
 
virtual ~Exception () throw ()
 
const char * what () const override throw ()
 get the current exception error message
 
virtual void setErrorMsg (const std::string &errmsg)
 define the error message
 
ExceptionnextException () const
 nextException
 
hid_t getErrMajor () const
 HDF5 library error mapper.
 
hid_t getErrMinor () const
 HDF5 library error mapper.
 
+ + + + + + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from HighFive::Exception
std::string _errmsg
 
std::shared_ptr< Exception_next
 
hid_t _err_major
 
hid_t _err_minor
 
+

Detailed Description

+

Exception specific to HighFive DataSet interface.

+

Constructor & Destructor Documentation

+ +

◆ DataSetException()

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::DataSetException::DataSetException (const std::string & err_msg)
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/class_high_five_1_1_data_set_exception.js b/class_high_five_1_1_data_set_exception.js new file mode 100644 index 000000000..e3f59a2b8 --- /dev/null +++ b/class_high_five_1_1_data_set_exception.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_data_set_exception = +[ + [ "DataSetException", "class_high_five_1_1_data_set_exception.html#a12e2ef42d52a26486cbaa10ff9c02534", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_data_set_exception__coll__graph.map b/class_high_five_1_1_data_set_exception__coll__graph.map new file mode 100644 index 000000000..307c5ea20 --- /dev/null +++ b/class_high_five_1_1_data_set_exception__coll__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_data_set_exception__coll__graph.md5 b/class_high_five_1_1_data_set_exception__coll__graph.md5 new file mode 100644 index 000000000..b55b804e9 --- /dev/null +++ b/class_high_five_1_1_data_set_exception__coll__graph.md5 @@ -0,0 +1 @@ +33d7a89ad464c4bade54f2598eb0dbec \ No newline at end of file diff --git a/class_high_five_1_1_data_set_exception__coll__graph.png b/class_high_five_1_1_data_set_exception__coll__graph.png new file mode 100644 index 000000000..daf04b3ac Binary files /dev/null and b/class_high_five_1_1_data_set_exception__coll__graph.png differ diff --git a/class_high_five_1_1_data_set_exception__inherit__graph.map b/class_high_five_1_1_data_set_exception__inherit__graph.map new file mode 100644 index 000000000..924421037 --- /dev/null +++ b/class_high_five_1_1_data_set_exception__inherit__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_data_set_exception__inherit__graph.md5 b/class_high_five_1_1_data_set_exception__inherit__graph.md5 new file mode 100644 index 000000000..c8f93c300 --- /dev/null +++ b/class_high_five_1_1_data_set_exception__inherit__graph.md5 @@ -0,0 +1 @@ +d8f04e839210add8dcfcfcff2056aa98 \ No newline at end of file diff --git a/class_high_five_1_1_data_set_exception__inherit__graph.png b/class_high_five_1_1_data_set_exception__inherit__graph.png new file mode 100644 index 000000000..bbd82c391 Binary files /dev/null and b/class_high_five_1_1_data_set_exception__inherit__graph.png differ diff --git a/class_high_five_1_1_data_space-members.html b/class_high_five_1_1_data_space-members.html new file mode 100644 index 000000000..8d9a7fc06 --- /dev/null +++ b/class_high_five_1_1_data_space-members.html @@ -0,0 +1,149 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::DataSpace Member List
+
+
+ +

This is the complete list of members for HighFive::DataSpace, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
_hidHighFive::Objectprotected
AttributeHighFive::DataSpacefriend
clone() constHighFive::DataSpaceinline
DataSetHighFive::DataSpacefriend
DataSpace(const std::vector< size_t > &dims)HighFive::DataSpaceinlineexplicit
DataSpace(const std::array< size_t, N > &dims)HighFive::DataSpaceinlineexplicit
DataSpace(const std::initializer_list< size_t > &dims)HighFive::DataSpaceinline
DataSpace(size_t dim1, Args... dims)HighFive::DataSpaceinlineexplicit
DataSpace(const IT begin, const IT end)HighFive::DataSpaceinline
DataSpace(const std::vector< size_t > &dims, const std::vector< size_t > &maxdims)HighFive::DataSpaceinlineexplicit
DataSpace(DataspaceType space_type)HighFive::DataSpaceinlineexplicit
DataSpace()=defaultHighFive::DataSpaceprotected
dataspace_null enum valueHighFive::DataSpace
dataspace_scalar enum valueHighFive::DataSpace
DataspaceType enum nameHighFive::DataSpace
FileHighFive::DataSpacefriend
From(const T &value)HighFive::DataSpaceinlinestatic
FromCharArrayStrings(const char(&string_array)[N][Width])HighFive::DataSpaceinlinestatic
fromId(hid_t hid)HighFive::DataSpaceinlineprotectedstatic
getDimensions() constHighFive::DataSpaceinline
getElementCount() constHighFive::DataSpaceinline
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getMaxDimensions() constHighFive::DataSpaceinline
getNumberDimensions() constHighFive::DataSpaceinline
getType() constHighFive::Objectinline
isValid() const noexceptHighFive::Objectinline
Null()HighFive::DataSpaceinlinestatic
Object(Object &&other) noexceptHighFive::Objectinline
Object()HighFive::Objectinlineprotected
Object(const Object &other)HighFive::Objectinlineprotected
Object(hid_t)HighFive::Objectinlineexplicitprotected
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const Object &other) const noexceptHighFive::Objectinline
Scalar()HighFive::DataSpaceinlinestatic
typeHighFive::DataSpacestatic
UNLIMITEDHighFive::DataSpacestatic
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_data_space.html b/class_high_five_1_1_data_space.html new file mode 100644 index 000000000..b395cc2f6 --- /dev/null +++ b/class_high_five_1_1_data_space.html @@ -0,0 +1,1050 @@ + + + + + + + +HighFive: HighFive::DataSpace Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::DataSpace Class Reference
+
+
+ +

Class representing the space (dimensions) of a DataSet. + More...

+ +

#include <H5DataSpace.hpp>

+
+Inheritance diagram for HighFive::DataSpace:
+
+
Inheritance graph
+ + + + + +
[legend]
+
+Collaboration diagram for HighFive::DataSpace:
+
+
Collaboration graph
+ + + + + +
[legend]
+ + + + + +

+Public Types

enum  DataspaceType { dataspace_scalar +, dataspace_null + }
 An enum to create scalar and null DataSpace with DataSpace::DataSpace(DataspaceType dtype). More...
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 DataSpace (const std::vector< size_t > &dims)
 Create a DataSpace of N-dimensions from a std::vector<size_t>.
 
template<size_t N>
 DataSpace (const std::array< size_t, N > &dims)
 Create a DataSpace of N-dimensions from a std::array<size_t, N>.
 
 DataSpace (const std::initializer_list< size_t > &dims)
 Create a DataSpace of N-dimensions from an initializer list.
 
template<typename... Args>
 DataSpace (size_t dim1, Args... dims)
 Create a DataSpace of N-dimensions from direct values.
 
template<typename IT , typename = typename std::enable_if<!std::is_integral<IT>::value, IT>::type>
 DataSpace (const IT begin, const IT end)
 Create a DataSpace from a pair of iterators.
 
 DataSpace (const std::vector< size_t > &dims, const std::vector< size_t > &maxdims)
 Create a resizable N-dimensional DataSpace.
 
 DataSpace (DataspaceType space_type)
 Create a scalar or a null DataSpace.
 
DataSpace clone () const
 Create a copy of the DataSpace which will have different id.
 
size_t getNumberDimensions () const
 Returns the number of dimensions of a DataSpace.
 
std::vector< size_t > getDimensions () const
 Returns the size of the dataset in each dimension.
 
size_t getElementCount () const
 Return the number of elements in this DataSpace.
 
std::vector< size_t > getMaxDimensions () const
 Returns the maximum size of the dataset in each dimension.
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
+ + + + + + + + + + + + + + + +

+Static Public Member Functions

static DataSpace Scalar ()
 Create a scalar DataSpace.
 
static DataSpace Null ()
 Create a null DataSpace.
 
template<typename T >
static DataSpace From (const T &value)
 Automatically deduce the DataSpace from a container/value.
 
template<std::size_t N, std::size_t Width>
static DataSpace FromCharArrayStrings (const char(&string_array)[N][Width])
 Create a DataSpace from a value of type string array.
 
+ + + + + + +

+Static Public Attributes

static const ObjectType type = ObjectType::DataSpace
 
static const size_t UNLIMITED = SIZE_MAX
 Magic value to specify that a DataSpace can grow without limit.
 
+ + + + + + + + + + + + +

+Protected Member Functions

 DataSpace ()=default
 
- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
+ + + +

+Static Protected Member Functions

static DataSpace fromId (hid_t hid)
 
+ + + + + + + +

+Friends

class Attribute
 
class File
 
class DataSet
 
+ + + + +

+Additional Inherited Members

- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
+

Detailed Description

+

Class representing the space (dimensions) of a DataSet.

+
// Create a DataSpace of dimension 1 x 2 x 3
+
DataSpace dspace(1, 2, 3);
+
std::cout << dspace.getElementCount() << std::endl; // Print 1 * 2 * 3 = 6
+
std::cout << dspace.getNumberDimensions() << std::endl; // Print 3
+
std::vector<size_t> dims = dspace.getDimensions(); // dims is {1, 2, 3}
+
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
+

Member Enumeration Documentation

+ +

◆ DataspaceType

+ +
+
+ +

An enum to create scalar and null DataSpace with DataSpace::DataSpace(DataspaceType dtype).

+

This enum is needed otherwise we will not be able to distringuish between both with normal constructors. Both have a dimension of 0.

Since
1.3
+ + + +
Enumerator
dataspace_scalar 

Value to create scalar DataSpace.

+
dataspace_null 

Value to create null DataSpace.

+
+ +
+
+

Constructor & Destructor Documentation

+ +

◆ DataSpace() [1/8]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::DataSpace::DataSpace (const std::vector< size_t > & dims)
+
+inlineexplicit
+
+ +

Create a DataSpace of N-dimensions from a std::vector<size_t>.

+
Parameters
+ + +
dimsDimensions of the new DataSpace
+
+
+
// Create a DataSpace with 2 dimensions: 1 and 3
+
DataSpace(std::vector<size_t>{1, 3});
+ +
Since
1.0
+ +
+
+ +

◆ DataSpace() [2/8]

+ +
+
+
+template<size_t N>
+ + + + + +
+ + + + + + + +
HighFive::DataSpace::DataSpace (const std::array< size_t, N > & dims)
+
+inlineexplicit
+
+ +

Create a DataSpace of N-dimensions from a std::array<size_t, N>.

+
Parameters
+ + +
dimsDimensions of the new DataSpace
+
+
+
// Create a DataSpace with 2 dimensions: 1 and 3
+
DataSpace(std::array<size_t, 2>{1, 3});
+
Since
2.3
+ +
+
+ +

◆ DataSpace() [3/8]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::DataSpace::DataSpace (const std::initializer_list< size_t > & dims)
+
+inline
+
+ +

Create a DataSpace of N-dimensions from an initializer list.

+
Parameters
+ + +
dimsDimensions of the new DataSpace
+
+
+
// Create a DataSpace with 2 dimensions: 1 and 3
+
DataSpace{1, 3};
+
Since
2.1
+ +
+
+ +

◆ DataSpace() [4/8]

+ +
+
+
+template<typename... Args>
+ + + + + +
+ + + + + + + + + + + +
HighFive::DataSpace::DataSpace (size_t dim1,
Args... dims )
+
+inlineexplicit
+
+ +

Create a DataSpace of N-dimensions from direct values.

+
Parameters
+ + + +
dim1The first dimension
dimsThe following dimensions
+
+
+
// Create a DataSpace with 2 dimensions: 1 and 3
+
DataSpace(1, 3);
+
Since
2.1
+ +
+
+ +

◆ DataSpace() [5/8]

+ +
+
+
+template<class IT , typename >
+ + + + + +
+ + + + + + + + + + + +
HighFive::DataSpace::DataSpace (const IT begin,
const IT end )
+
+inline
+
+ +

Create a DataSpace from a pair of iterators.

+
Parameters
+ + + +
beginThe beginning of the container
endThe end of the container
+
+
+
// Create a DataSpace with 2 dimensions: 1 and 3
+
std::vector<int> v{1, 3};
+
DataSpace(v.begin(), v.end());
+
Since
2.0
+ +
+
+ +

◆ DataSpace() [6/8]

+ +
+
+ + + + + +
+ + + + + + + + + + + +
HighFive::DataSpace::DataSpace (const std::vector< size_t > & dims,
const std::vector< size_t > & maxdims )
+
+inlineexplicit
+
+ +

Create a resizable N-dimensional DataSpace.

+
Parameters
+ + + +
dimsInitial size of dataspace
maxdimsMaximum size of the dataspace
+
+
+
// Create a DataSpace with 2 dimensions: 1 and 3.
+
// It can later be resized up to a maximum of 10 x 10
+
DataSpace(std::vector<size_t>{1, 3}, std::vector<size_t>{10, 10});
+
See also
UNLIMITED for a DataSpace that can be resized without limit.
+
Since
2.0
+ +
+
+ +

◆ DataSpace() [7/8]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::DataSpace::DataSpace (DataSpace::DataspaceType space_type)
+
+inlineexplicit
+
+ +

Create a scalar or a null DataSpace.

+

This overload enables creating scalar or null data spaces, both have dimension 0.

+
Parameters
+ + +
space_typeThe value from the enum
+
+
+
+
@ dataspace_scalar
Value to create scalar DataSpace.
Definition H5DataSpace.hpp:57
+
Attention
Avoid braced intialization in these cases, i.e.
// This is not a scalar dataset:
+ +
+
Since
1.3
+ +
+
+ +

◆ DataSpace() [8/8]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::DataSpace::DataSpace ()
+
+protecteddefault
+
+ +
+
+

Member Function Documentation

+ +

◆ clone()

+ +
+
+ + + + + +
+ + + + + + + +
DataSpace HighFive::DataSpace::clone () const
+
+inline
+
+ +

Create a copy of the DataSpace which will have different id.

+
DataSpace dspace1(1, 3);
+
auto dspace2 = dspace.clone();
+
Since
1.0
+ +
+
+ +

◆ From()

+ +
+
+
+template<typename T >
+ + + + + +
+ + + + + + + +
DataSpace HighFive::DataSpace::From (const T & value)
+
+inlinestatic
+
+ +

Automatically deduce the DataSpace from a container/value.

+

Certain containers and scalar values are fully supported by HighFive. For these containers, HighFive can deduce the dimensions from value.

+
double d = 42.0;
+
std::vector<std::vector<int>> v = {{4, 5, 6}, {7, 8, 9}};
+
DataSpace::From(v); // A DataSpace of dimensions 2, 3.
+
DataSpace::From(d); // A scalar dataspace.
+
static DataSpace From(const T &value)
Automatically deduce the DataSpace from a container/value.
Definition H5Dataspace_misc.hpp:128
+
Since
1.0
+ +
+
+ +

◆ FromCharArrayStrings()

+ +
+
+
+template<std::size_t N, std::size_t Width>
+ + + + + +
+ + + + + + + +
DataSpace HighFive::DataSpace::FromCharArrayStrings (const char(&) string_array[N][Width])
+
+inlinestatic
+
+ +

Create a DataSpace from a value of type string array.

+
Parameters
+ + +
string_arrayAn C-array of C-string (null-terminated).
+
+
+
char string_array[2][10] = {"123456789", "abcdefghi"};
+
auto dspace = DataSpace::FromCharArrayStrings(string_array); // dspace is a DataSpace of
+
dimensions 2
+
static DataSpace FromCharArrayStrings(const char(&string_array)[N][Width])
Create a DataSpace from a value of type string array.
Definition H5Dataspace_misc.hpp:134
+
Since
2.2
+ +
+
+ +

◆ fromId()

+ +
+
+ + + + + +
+ + + + + + + +
static DataSpace HighFive::DataSpace::fromId (hid_t hid)
+
+inlinestaticprotected
+
+ +
+
+ +

◆ getDimensions()

+ +
+
+ + + + + +
+ + + + + + + +
std::vector< size_t > HighFive::DataSpace::getDimensions () const
+
+inline
+
+ +

Returns the size of the dataset in each dimension.

+

For zero-dimensional datasets (e.g. scalar or null datasets) an empty vector is returned.

+
DataSpace dspace(1, 3);
+
auto dims = dspace.getDimensions(); // returns {1, 3}
+
See also
DataSpace::getMaxDimensions
+
Since
1.0
+ +
+
+ +

◆ getElementCount()

+ +
+
+ + + + + +
+ + + + + + + +
size_t HighFive::DataSpace::getElementCount () const
+
+inline
+
+ +

Return the number of elements in this DataSpace.

+
DataSpace dspace(1, 3);
+
size_t elementcount = dspace.getElementCount(); // return 1 x 3 = 3
+
Since
2.1
+ +
+
+ +

◆ getMaxDimensions()

+ +
+
+ + + + + +
+ + + + + + + +
std::vector< size_t > HighFive::DataSpace::getMaxDimensions () const
+
+inline
+
+ +

Returns the maximum size of the dataset in each dimension.

+

This is the maximum size a dataset can be extended to, which may be different from the current size of the dataset.

+
DataSpace dspace(std::vector<size_t>{1, 3}, std::vector<size_t>{UNLIMITED, 10});
+
dspace.getMaxDimensions(); // Return {UNLIMITED, 10}
+
std::vector< size_t > getMaxDimensions() const
Returns the maximum size of the dataset in each dimension.
Definition H5Dataspace_misc.hpp:116
+
static const size_t UNLIMITED
Magic value to specify that a DataSpace can grow without limit.
Definition H5DataSpace.hpp:49
+
See also
DataSpace::getDimensions
+
Since
2.0
+ +
+
+ +

◆ getNumberDimensions()

+ +
+
+ + + + + +
+ + + + + + + +
size_t HighFive::DataSpace::getNumberDimensions () const
+
+inline
+
+ +

Returns the number of dimensions of a DataSpace.

+
DataSpace dspace(1, 3);
+
size_t number_of_dim = dspace.getNumberDimensions(); // returns 2
+
Since
1.0
+ +
+
+ +

◆ Null()

+ +
+
+ + + + + +
+ + + + + + + +
DataSpace HighFive::DataSpace::Null ()
+
+inlinestatic
+
+ +

Create a null DataSpace.

+
auto dataspace = DataSpace::Null();
+
static DataSpace Null()
Create a null DataSpace.
Definition H5Dataspace_misc.hpp:55
+
Since
2.9
+ +
+
+ +

◆ Scalar()

+ +
+
+ + + + + +
+ + + + + + + +
DataSpace HighFive::DataSpace::Scalar ()
+
+inlinestatic
+
+ +

Create a scalar DataSpace.

+
auto dataspace = DataSpace::Scalar();
+
static DataSpace Scalar()
Create a scalar DataSpace.
Definition H5Dataspace_misc.hpp:51
+
Since
2.9
+ +
+
+

Friends And Related Symbol Documentation

+ +

◆ Attribute

+ +
+
+ + + + + +
+ + + + +
friend class Attribute
+
+friend
+
+ +
+
+ +

◆ DataSet

+ +
+
+ + + + + +
+ + + + +
friend class DataSet
+
+friend
+
+ +
+
+ +

◆ File

+ +
+
+ + + + + +
+ + + + +
friend class File
+
+friend
+
+ +
+
+

Member Data Documentation

+ +

◆ type

+ +
+
+ + + + + +
+ + + + +
const ObjectType HighFive::DataSpace::type = ObjectType::DataSpace
+
+static
+
+ +
+
+ +

◆ UNLIMITED

+ +
+
+ + + + + +
+ + + + +
const size_t HighFive::DataSpace::UNLIMITED = SIZE_MAX
+
+static
+
+ +

Magic value to specify that a DataSpace can grow without limit.

+

This value should be used with DataSpace::DataSpace(const std::vector<size_t>& dims, const +std::vector<size_t>& maxdims);

+
Since
2.0
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_data_space.js b/class_high_five_1_1_data_space.js new file mode 100644 index 000000000..a3a394433 --- /dev/null +++ b/class_high_five_1_1_data_space.js @@ -0,0 +1,23 @@ +var class_high_five_1_1_data_space = +[ + [ "DataspaceType", "class_high_five_1_1_data_space.html#a7169f30770f2b72b4d28841da2d6c153", [ + [ "dataspace_scalar", "class_high_five_1_1_data_space.html#a7169f30770f2b72b4d28841da2d6c153a49388b6d4ad7831a6589af61d6e60409", null ], + [ "dataspace_null", "class_high_five_1_1_data_space.html#a7169f30770f2b72b4d28841da2d6c153ac1a4c13c2bac8e1679bf850e76ad6092", null ] + ] ], + [ "DataSpace", "class_high_five_1_1_data_space.html#a40b1526be36b7ebb536122f9c413feef", null ], + [ "DataSpace", "class_high_five_1_1_data_space.html#a978628751ce6f7ecf92961fa44e2a821", null ], + [ "DataSpace", "class_high_five_1_1_data_space.html#a6558726da6bff24df406751a4429e10b", null ], + [ "DataSpace", "class_high_five_1_1_data_space.html#a2771c3df1c0578278bfbd0e2263e7abf", null ], + [ "DataSpace", "class_high_five_1_1_data_space.html#a5d48bf7863b08eed90d4357ac476b4a1", null ], + [ "DataSpace", "class_high_five_1_1_data_space.html#a435085d2b1d06d54966c13d0d84a6e77", null ], + [ "DataSpace", "class_high_five_1_1_data_space.html#ab9230eeb6124dee3fbbc49c725e988ee", null ], + [ "DataSpace", "class_high_five_1_1_data_space.html#aaf4d7229b87d8175eaf0ab2314e9675a", null ], + [ "clone", "class_high_five_1_1_data_space.html#a902be8659c05c859158631230b78f3f4", null ], + [ "getDimensions", "class_high_five_1_1_data_space.html#a8c0f85ba275d1d61c332b164070493c8", null ], + [ "getElementCount", "class_high_five_1_1_data_space.html#a8b0fb67e77eed8e4b36b67bb352ec07b", null ], + [ "getMaxDimensions", "class_high_five_1_1_data_space.html#a6563a285d1078bdff32e6662835e7a7b", null ], + [ "getNumberDimensions", "class_high_five_1_1_data_space.html#a53c27afc9308d2c44fa6d0e09f1ede9a", null ], + [ "Attribute", "class_high_five_1_1_data_space.html#abd4bab8f7ee748d7ea63f7f9b6248611", null ], + [ "DataSet", "class_high_five_1_1_data_space.html#aef648af6c56fa8ee0738c93629e725dc", null ], + [ "File", "class_high_five_1_1_data_space.html#a68d15876ad188b7628261b12d0eac8aa", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_data_space__coll__graph.map b/class_high_five_1_1_data_space__coll__graph.map new file mode 100644 index 000000000..1367bca25 --- /dev/null +++ b/class_high_five_1_1_data_space__coll__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_data_space__coll__graph.md5 b/class_high_five_1_1_data_space__coll__graph.md5 new file mode 100644 index 000000000..1733ed251 --- /dev/null +++ b/class_high_five_1_1_data_space__coll__graph.md5 @@ -0,0 +1 @@ +1c62c2577c3cfaf46c95dc2bd4302bd8 \ No newline at end of file diff --git a/class_high_five_1_1_data_space__coll__graph.png b/class_high_five_1_1_data_space__coll__graph.png new file mode 100644 index 000000000..cedae2258 Binary files /dev/null and b/class_high_five_1_1_data_space__coll__graph.png differ diff --git a/class_high_five_1_1_data_space__inherit__graph.map b/class_high_five_1_1_data_space__inherit__graph.map new file mode 100644 index 000000000..1367bca25 --- /dev/null +++ b/class_high_five_1_1_data_space__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_data_space__inherit__graph.md5 b/class_high_five_1_1_data_space__inherit__graph.md5 new file mode 100644 index 000000000..1733ed251 --- /dev/null +++ b/class_high_five_1_1_data_space__inherit__graph.md5 @@ -0,0 +1 @@ +1c62c2577c3cfaf46c95dc2bd4302bd8 \ No newline at end of file diff --git a/class_high_five_1_1_data_space__inherit__graph.png b/class_high_five_1_1_data_space__inherit__graph.png new file mode 100644 index 000000000..cedae2258 Binary files /dev/null and b/class_high_five_1_1_data_space__inherit__graph.png differ diff --git a/class_high_five_1_1_data_space_exception-members.html b/class_high_five_1_1_data_space_exception-members.html new file mode 100644 index 000000000..4063feb8b --- /dev/null +++ b/class_high_five_1_1_data_space_exception-members.html @@ -0,0 +1,123 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::DataSpaceException Member List
+
+
+ +

This is the complete list of members for HighFive::DataSpaceException, including all inherited members.

+ + + + + + + + + + + + + +
_err_majorHighFive::Exceptionprotected
_err_minorHighFive::Exceptionprotected
_errmsgHighFive::Exceptionprotected
_nextHighFive::Exceptionprotected
DataSpaceException(const std::string &err_msg)HighFive::DataSpaceExceptioninline
Exception(const std::string &err_msg)HighFive::Exceptioninline
getErrMajor() constHighFive::Exceptioninline
getErrMinor() constHighFive::Exceptioninline
nextException() constHighFive::Exceptioninline
setErrorMsg(const std::string &errmsg)HighFive::Exceptioninlinevirtual
what() const overrideHighFive::Exceptioninline
~Exception()HighFive::Exceptioninlinevirtual
+
+ + + + diff --git a/class_high_five_1_1_data_space_exception.html b/class_high_five_1_1_data_space_exception.html new file mode 100644 index 000000000..32065b044 --- /dev/null +++ b/class_high_five_1_1_data_space_exception.html @@ -0,0 +1,212 @@ + + + + + + + +HighFive: HighFive::DataSpaceException Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::DataSpaceException Class Reference
+
+
+ +

Exception specific to HighFive DataSpace interface. + More...

+ +

#include <H5Exception.hpp>

+
+Inheritance diagram for HighFive::DataSpaceException:
+
+
Inheritance graph
+ + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::DataSpaceException:
+
+
Collaboration graph
+ + + + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 DataSpaceException (const std::string &err_msg)
 
- Public Member Functions inherited from HighFive::Exception
 Exception (const std::string &err_msg)
 
virtual ~Exception () throw ()
 
const char * what () const override throw ()
 get the current exception error message
 
virtual void setErrorMsg (const std::string &errmsg)
 define the error message
 
ExceptionnextException () const
 nextException
 
hid_t getErrMajor () const
 HDF5 library error mapper.
 
hid_t getErrMinor () const
 HDF5 library error mapper.
 
+ + + + + + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from HighFive::Exception
std::string _errmsg
 
std::shared_ptr< Exception_next
 
hid_t _err_major
 
hid_t _err_minor
 
+

Detailed Description

+

Exception specific to HighFive DataSpace interface.

+

Constructor & Destructor Documentation

+ +

◆ DataSpaceException()

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::DataSpaceException::DataSpaceException (const std::string & err_msg)
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/class_high_five_1_1_data_space_exception.js b/class_high_five_1_1_data_space_exception.js new file mode 100644 index 000000000..d74a5710b --- /dev/null +++ b/class_high_five_1_1_data_space_exception.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_data_space_exception = +[ + [ "DataSpaceException", "class_high_five_1_1_data_space_exception.html#a6838cd3e42fc092ed25594f8e4e98093", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_data_space_exception__coll__graph.map b/class_high_five_1_1_data_space_exception__coll__graph.map new file mode 100644 index 000000000..75d5d4201 --- /dev/null +++ b/class_high_five_1_1_data_space_exception__coll__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_data_space_exception__coll__graph.md5 b/class_high_five_1_1_data_space_exception__coll__graph.md5 new file mode 100644 index 000000000..f12f60390 --- /dev/null +++ b/class_high_five_1_1_data_space_exception__coll__graph.md5 @@ -0,0 +1 @@ +2462d55daf56a2ee4fd2cfef23080186 \ No newline at end of file diff --git a/class_high_five_1_1_data_space_exception__coll__graph.png b/class_high_five_1_1_data_space_exception__coll__graph.png new file mode 100644 index 000000000..26529c4bc Binary files /dev/null and b/class_high_five_1_1_data_space_exception__coll__graph.png differ diff --git a/class_high_five_1_1_data_space_exception__inherit__graph.map b/class_high_five_1_1_data_space_exception__inherit__graph.map new file mode 100644 index 000000000..9952f3b60 --- /dev/null +++ b/class_high_five_1_1_data_space_exception__inherit__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_data_space_exception__inherit__graph.md5 b/class_high_five_1_1_data_space_exception__inherit__graph.md5 new file mode 100644 index 000000000..1c1883335 --- /dev/null +++ b/class_high_five_1_1_data_space_exception__inherit__graph.md5 @@ -0,0 +1 @@ +992d0f85af780c8a39c84446e99631e2 \ No newline at end of file diff --git a/class_high_five_1_1_data_space_exception__inherit__graph.png b/class_high_five_1_1_data_space_exception__inherit__graph.png new file mode 100644 index 000000000..913a1a4bf Binary files /dev/null and b/class_high_five_1_1_data_space_exception__inherit__graph.png differ diff --git a/class_high_five_1_1_data_type-members.html b/class_high_five_1_1_data_type-members.html new file mode 100644 index 000000000..fe63d925d --- /dev/null +++ b/class_high_five_1_1_data_type-members.html @@ -0,0 +1,139 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::DataType Member List
+
+
+ +

This is the complete list of members for HighFive::DataType, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
_hidHighFive::Objectprotected
asStringType() constHighFive::DataTypeinline
AttributeHighFive::DataTypefriend
CompoundTypeHighFive::DataTypefriend
DataSetHighFive::DataTypefriend
empty() const noexceptHighFive::DataTypeinline
FileHighFive::DataTypefriend
getClass() constHighFive::DataTypeinline
getCreatePropertyList() constHighFive::DataTypeinline
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getSize() constHighFive::DataTypeinline
getType() constHighFive::Objectinline
isFixedLenStr() constHighFive::DataTypeinline
isReference() constHighFive::DataTypeinline
isValid() const noexceptHighFive::Objectinline
isVariableStr() constHighFive::DataTypeinline
NodeTraitsHighFive::DataTypefriend
Object(Object &&other) noexceptHighFive::DataTypeinlineprotected
Object()HighFive::DataTypeinlineprotected
Object(const Object &other)HighFive::DataTypeinlineprotected
Object(hid_t)HighFive::DataTypeinlineexplicitprotected
operator!=(const DataType &other) constHighFive::DataTypeinline
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const DataType &other) constHighFive::DataTypeinline
HighFive::Object::operator==(const Object &other) const noexceptHighFive::Objectinline
string() constHighFive::DataTypeinline
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_data_type.html b/class_high_five_1_1_data_type.html new file mode 100644 index 000000000..eb0f30c02 --- /dev/null +++ b/class_high_five_1_1_data_type.html @@ -0,0 +1,765 @@ + + + + + + + +HighFive: HighFive::DataType Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::DataType Class Reference
+
+
+ +

HDF5 Data Type. + More...

+ +

#include <H5DataType.hpp>

+
+Inheritance diagram for HighFive::DataType:
+
+
Inheritance graph
+ + + + + + + + + + + + + + + + + + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::DataType:
+
+
Collaboration graph
+ + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

bool operator== (const DataType &other) const
 
bool operator!= (const DataType &other) const
 
DataTypeClass getClass () const
 Return the fundamental type.
 
size_t getSize () const
 Returns the length (in bytes) of this type elements.
 
std::string string () const
 Returns a friendly description of the type (e.g. Float32)
 
bool isVariableStr () const
 Returns whether the type is a variable-length string.
 
bool isFixedLenStr () const
 Returns whether the type is a fixed-length string.
 
StringType asStringType () const
 Returns this datatype as a StringType.
 
bool empty () const noexcept
 Check the DataType was default constructed.
 
bool isReference () const
 Returns whether the type is a Reference.
 
DataTypeCreateProps getCreatePropertyList () const
 Get the list of properties for creation of this DataType.
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
+ + + + + + + + + + + + + + + + + + +

+Protected Member Functions

 Object (Object &&other) noexcept
 
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
+ + + + + + + + + + + + +

+Friends

class Attribute
 
class File
 
class DataSet
 
class CompoundType
 
template<typename Derivate >
class NodeTraits
 
+ + + + +

+Additional Inherited Members

- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
+

Detailed Description

+

HDF5 Data Type.

+

Member Function Documentation

+ +

◆ asStringType()

+ +
+
+ + + + + +
+ + + + + + + +
StringType HighFive::DataType::asStringType () const
+
+inline
+
+ +

Returns this datatype as a StringType.

+ +
+
+ +

◆ empty()

+ +
+
+ + + + + +
+ + + + + + + +
bool HighFive::DataType::empty () const
+
+inlinenoexcept
+
+ +

Check the DataType was default constructed.

+ +
+
+ +

◆ getClass()

+ +
+
+ + + + + +
+ + + + + + + +
DataTypeClass HighFive::DataType::getClass () const
+
+inline
+
+ +

Return the fundamental type.

+ +
+
+ +

◆ getCreatePropertyList()

+ +
+
+ + + + + +
+ + + + + + + +
DataTypeCreateProps HighFive::DataType::getCreatePropertyList () const
+
+inline
+
+ +

Get the list of properties for creation of this DataType.

+ +
+
+ +

◆ getSize()

+ +
+
+ + + + + +
+ + + + + + + +
size_t HighFive::DataType::getSize () const
+
+inline
+
+ +

Returns the length (in bytes) of this type elements.

+

Notice that the size of variable length sequences may have limited applicability given that it refers to the size of the control structure. For info see https://support.hdfgroup.org/HDF5/doc/RM/RM_H5T.html#Datatype-GetSize

+ +
+
+ +

◆ isFixedLenStr()

+ +
+
+ + + + + +
+ + + + + + + +
bool HighFive::DataType::isFixedLenStr () const
+
+inline
+
+ +

Returns whether the type is a fixed-length string.

+ +
+
+ +

◆ isReference()

+ +
+
+ + + + + +
+ + + + + + + +
bool HighFive::DataType::isReference () const
+
+inline
+
+ +

Returns whether the type is a Reference.

+ +
+
+ +

◆ isVariableStr()

+ +
+
+ + + + + +
+ + + + + + + +
bool HighFive::DataType::isVariableStr () const
+
+inline
+
+ +

Returns whether the type is a variable-length string.

+ +
+
+ +

◆ Object() [1/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object ()
+
+inlineprotected
+
+ +
+
+ +

◆ Object() [2/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object (const Object & other)
+
+inlineprotected
+
+ +
+
+ +

◆ Object() [3/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object (hid_t hid)
+
+inlineexplicitprotected
+
+ +
+
+ +

◆ Object() [4/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object (Object && other)
+
+inlineprotectednoexcept
+
+ +
+
+ +

◆ operator!=()

+ +
+
+ + + + + +
+ + + + + + + +
bool HighFive::DataType::operator!= (const DataType & other) const
+
+inline
+
+ +
+
+ +

◆ operator==()

+ +
+
+ + + + + +
+ + + + + + + +
bool HighFive::DataType::operator== (const DataType & other) const
+
+inline
+
+ +
+
+ +

◆ string()

+ +
+
+ + + + + +
+ + + + + + + +
std::string HighFive::DataType::string () const
+
+inline
+
+ +

Returns a friendly description of the type (e.g. Float32)

+ +
+
+

Friends And Related Symbol Documentation

+ +

◆ Attribute

+ +
+
+ + + + + +
+ + + + +
friend class Attribute
+
+friend
+
+ +
+
+ +

◆ CompoundType

+ +
+
+ + + + + +
+ + + + +
friend class CompoundType
+
+friend
+
+ +
+
+ +

◆ DataSet

+ +
+
+ + + + + +
+ + + + +
friend class DataSet
+
+friend
+
+ +
+
+ +

◆ File

+ +
+
+ + + + + +
+ + + + +
friend class File
+
+friend
+
+ +
+
+ +

◆ NodeTraits

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + +
friend class NodeTraits
+
+friend
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_data_type.js b/class_high_five_1_1_data_type.js new file mode 100644 index 000000000..8076764dc --- /dev/null +++ b/class_high_five_1_1_data_type.js @@ -0,0 +1,23 @@ +var class_high_five_1_1_data_type = +[ + [ "asStringType", "class_high_five_1_1_data_type.html#ab959e9cd8ccd474542bf220627ec7844", null ], + [ "empty", "class_high_five_1_1_data_type.html#a546aceb9cdbc45d5e471811b8e9cdce8", null ], + [ "getClass", "class_high_five_1_1_data_type.html#a98e6e07ff15a8e1b73673bc51a1a1339", null ], + [ "getCreatePropertyList", "class_high_five_1_1_data_type.html#a1a1b47fdec00d9814dd861fa51420c9e", null ], + [ "getSize", "class_high_five_1_1_data_type.html#a2658ec3c1c3c77dadeb0b1b053d3a7d3", null ], + [ "isFixedLenStr", "class_high_five_1_1_data_type.html#a0d74bf84217ed4b71818d53db9077d5f", null ], + [ "isReference", "class_high_five_1_1_data_type.html#a9c9656462b3b4442fd0a8ba7fb0ce93f", null ], + [ "isVariableStr", "class_high_five_1_1_data_type.html#a3f239e86eb8235d0cad445421f97af7c", null ], + [ "Object", "class_high_five_1_1_data_type.html#a6bae41d04f273d04d2914406ab79da32", null ], + [ "Object", "class_high_five_1_1_data_type.html#ab87ee7d5e2beee6a50d60dec20d3dfe5", null ], + [ "Object", "class_high_five_1_1_data_type.html#a9fe361bc0bd9662c1fd96a4a6ec1133a", null ], + [ "Object", "class_high_five_1_1_data_type.html#aa42052fa5ec4ee691f6a7dd6467199f2", null ], + [ "operator!=", "class_high_five_1_1_data_type.html#aba3b0bec1739ee7482a9d6f3c7464769", null ], + [ "operator==", "class_high_five_1_1_data_type.html#a00fa13324f13dc81bf52b385fc9d852b", null ], + [ "string", "class_high_five_1_1_data_type.html#a957ea4848ba76cab82d7b4cff7210c87", null ], + [ "Attribute", "class_high_five_1_1_data_type.html#abd4bab8f7ee748d7ea63f7f9b6248611", null ], + [ "CompoundType", "class_high_five_1_1_data_type.html#a9531936c7f60cc4739426e6a25f23e7e", null ], + [ "DataSet", "class_high_five_1_1_data_type.html#aef648af6c56fa8ee0738c93629e725dc", null ], + [ "File", "class_high_five_1_1_data_type.html#a68d15876ad188b7628261b12d0eac8aa", null ], + [ "NodeTraits", "class_high_five_1_1_data_type.html#a403d48867d005e936868de31b2281ae8", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_data_type__coll__graph.map b/class_high_five_1_1_data_type__coll__graph.map new file mode 100644 index 000000000..87191cd10 --- /dev/null +++ b/class_high_five_1_1_data_type__coll__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_data_type__coll__graph.md5 b/class_high_five_1_1_data_type__coll__graph.md5 new file mode 100644 index 000000000..88c2c9322 --- /dev/null +++ b/class_high_five_1_1_data_type__coll__graph.md5 @@ -0,0 +1 @@ +20262502c8a65df813f352c2f5713418 \ No newline at end of file diff --git a/class_high_five_1_1_data_type__coll__graph.png b/class_high_five_1_1_data_type__coll__graph.png new file mode 100644 index 000000000..76c4518c1 Binary files /dev/null and b/class_high_five_1_1_data_type__coll__graph.png differ diff --git a/class_high_five_1_1_data_type__inherit__graph.map b/class_high_five_1_1_data_type__inherit__graph.map new file mode 100644 index 000000000..58895e0c7 --- /dev/null +++ b/class_high_five_1_1_data_type__inherit__graph.map @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/class_high_five_1_1_data_type__inherit__graph.md5 b/class_high_five_1_1_data_type__inherit__graph.md5 new file mode 100644 index 000000000..8615bd591 --- /dev/null +++ b/class_high_five_1_1_data_type__inherit__graph.md5 @@ -0,0 +1 @@ +e71c0bd1902a3d775d5db4f809df9b88 \ No newline at end of file diff --git a/class_high_five_1_1_data_type__inherit__graph.png b/class_high_five_1_1_data_type__inherit__graph.png new file mode 100644 index 000000000..b6f9ae41b Binary files /dev/null and b/class_high_five_1_1_data_type__inherit__graph.png differ diff --git a/class_high_five_1_1_data_type_exception-members.html b/class_high_five_1_1_data_type_exception-members.html new file mode 100644 index 000000000..ebd0dc99a --- /dev/null +++ b/class_high_five_1_1_data_type_exception-members.html @@ -0,0 +1,123 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::DataTypeException Member List
+
+
+ +

This is the complete list of members for HighFive::DataTypeException, including all inherited members.

+ + + + + + + + + + + + + +
_err_majorHighFive::Exceptionprotected
_err_minorHighFive::Exceptionprotected
_errmsgHighFive::Exceptionprotected
_nextHighFive::Exceptionprotected
DataTypeException(const std::string &err_msg)HighFive::DataTypeExceptioninline
Exception(const std::string &err_msg)HighFive::Exceptioninline
getErrMajor() constHighFive::Exceptioninline
getErrMinor() constHighFive::Exceptioninline
nextException() constHighFive::Exceptioninline
setErrorMsg(const std::string &errmsg)HighFive::Exceptioninlinevirtual
what() const overrideHighFive::Exceptioninline
~Exception()HighFive::Exceptioninlinevirtual
+
+ + + + diff --git a/class_high_five_1_1_data_type_exception.html b/class_high_five_1_1_data_type_exception.html new file mode 100644 index 000000000..5528d7f39 --- /dev/null +++ b/class_high_five_1_1_data_type_exception.html @@ -0,0 +1,212 @@ + + + + + + + +HighFive: HighFive::DataTypeException Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::DataTypeException Class Reference
+
+
+ +

Exception specific to HighFive DataType interface. + More...

+ +

#include <H5Exception.hpp>

+
+Inheritance diagram for HighFive::DataTypeException:
+
+
Inheritance graph
+ + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::DataTypeException:
+
+
Collaboration graph
+ + + + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 DataTypeException (const std::string &err_msg)
 
- Public Member Functions inherited from HighFive::Exception
 Exception (const std::string &err_msg)
 
virtual ~Exception () throw ()
 
const char * what () const override throw ()
 get the current exception error message
 
virtual void setErrorMsg (const std::string &errmsg)
 define the error message
 
ExceptionnextException () const
 nextException
 
hid_t getErrMajor () const
 HDF5 library error mapper.
 
hid_t getErrMinor () const
 HDF5 library error mapper.
 
+ + + + + + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from HighFive::Exception
std::string _errmsg
 
std::shared_ptr< Exception_next
 
hid_t _err_major
 
hid_t _err_minor
 
+

Detailed Description

+

Exception specific to HighFive DataType interface.

+

Constructor & Destructor Documentation

+ +

◆ DataTypeException()

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::DataTypeException::DataTypeException (const std::string & err_msg)
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/class_high_five_1_1_data_type_exception.js b/class_high_five_1_1_data_type_exception.js new file mode 100644 index 000000000..af058f290 --- /dev/null +++ b/class_high_five_1_1_data_type_exception.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_data_type_exception = +[ + [ "DataTypeException", "class_high_five_1_1_data_type_exception.html#abfbd23381af62882f92fa1308f21948a", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_data_type_exception__coll__graph.map b/class_high_five_1_1_data_type_exception__coll__graph.map new file mode 100644 index 000000000..883922272 --- /dev/null +++ b/class_high_five_1_1_data_type_exception__coll__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_data_type_exception__coll__graph.md5 b/class_high_five_1_1_data_type_exception__coll__graph.md5 new file mode 100644 index 000000000..f9038cebb --- /dev/null +++ b/class_high_five_1_1_data_type_exception__coll__graph.md5 @@ -0,0 +1 @@ +0368673b5acc8b2ff112de1ed4f24995 \ No newline at end of file diff --git a/class_high_five_1_1_data_type_exception__coll__graph.png b/class_high_five_1_1_data_type_exception__coll__graph.png new file mode 100644 index 000000000..cd361c84e Binary files /dev/null and b/class_high_five_1_1_data_type_exception__coll__graph.png differ diff --git a/class_high_five_1_1_data_type_exception__inherit__graph.map b/class_high_five_1_1_data_type_exception__inherit__graph.map new file mode 100644 index 000000000..22797380f --- /dev/null +++ b/class_high_five_1_1_data_type_exception__inherit__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_data_type_exception__inherit__graph.md5 b/class_high_five_1_1_data_type_exception__inherit__graph.md5 new file mode 100644 index 000000000..d6fa13d42 --- /dev/null +++ b/class_high_five_1_1_data_type_exception__inherit__graph.md5 @@ -0,0 +1 @@ +db1817243a93e93319d55c303be714ec \ No newline at end of file diff --git a/class_high_five_1_1_data_type_exception__inherit__graph.png b/class_high_five_1_1_data_type_exception__inherit__graph.png new file mode 100644 index 000000000..43cfef7ee Binary files /dev/null and b/class_high_five_1_1_data_type_exception__inherit__graph.png differ diff --git a/class_high_five_1_1_deflate-members.html b/class_high_five_1_1_deflate-members.html new file mode 100644 index 000000000..b51577ab5 --- /dev/null +++ b/class_high_five_1_1_deflate-members.html @@ -0,0 +1,112 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::Deflate Member List
+
+
+ +

This is the complete list of members for HighFive::Deflate, including all inherited members.

+ + +
Deflate(unsigned level)HighFive::Deflateinlineexplicit
+
+ + + + diff --git a/class_high_five_1_1_deflate.html b/class_high_five_1_1_deflate.html new file mode 100644 index 000000000..1e99dc76e --- /dev/null +++ b/class_high_five_1_1_deflate.html @@ -0,0 +1,170 @@ + + + + + + + +HighFive: HighFive::Deflate Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::Deflate Class Reference
+
+
+ +

#include <H5PropertyList.hpp>

+
+Inheritance diagram for HighFive::Deflate:
+
+
Inheritance graph
+ + + + + +
[legend]
+
+Collaboration diagram for HighFive::Deflate:
+
+
Collaboration graph
+ + + + + +
[legend]
+ + + + +

+Public Member Functions

 Deflate (unsigned level)
 
+

Constructor & Destructor Documentation

+ +

◆ Deflate()

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Deflate::Deflate (unsigned level)
+
+inlineexplicit
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_deflate.js b/class_high_five_1_1_deflate.js new file mode 100644 index 000000000..edf72b59b --- /dev/null +++ b/class_high_five_1_1_deflate.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_deflate = +[ + [ "Deflate", "class_high_five_1_1_deflate.html#aec7e6cfb91ee39beb916c0a96921fd6b", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_deflate__coll__graph.map b/class_high_five_1_1_deflate__coll__graph.map new file mode 100644 index 000000000..c81fe3dd5 --- /dev/null +++ b/class_high_five_1_1_deflate__coll__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_deflate__coll__graph.md5 b/class_high_five_1_1_deflate__coll__graph.md5 new file mode 100644 index 000000000..5a2dc60d6 --- /dev/null +++ b/class_high_five_1_1_deflate__coll__graph.md5 @@ -0,0 +1 @@ +07574d42af807c0a4a5f87b3c26d19db \ No newline at end of file diff --git a/class_high_five_1_1_deflate__coll__graph.png b/class_high_five_1_1_deflate__coll__graph.png new file mode 100644 index 000000000..3b9d08109 Binary files /dev/null and b/class_high_five_1_1_deflate__coll__graph.png differ diff --git a/class_high_five_1_1_deflate__inherit__graph.map b/class_high_five_1_1_deflate__inherit__graph.map new file mode 100644 index 000000000..c81fe3dd5 --- /dev/null +++ b/class_high_five_1_1_deflate__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_deflate__inherit__graph.md5 b/class_high_five_1_1_deflate__inherit__graph.md5 new file mode 100644 index 000000000..5a2dc60d6 --- /dev/null +++ b/class_high_five_1_1_deflate__inherit__graph.md5 @@ -0,0 +1 @@ +07574d42af807c0a4a5f87b3c26d19db \ No newline at end of file diff --git a/class_high_five_1_1_deflate__inherit__graph.png b/class_high_five_1_1_deflate__inherit__graph.png new file mode 100644 index 000000000..3b9d08109 Binary files /dev/null and b/class_high_five_1_1_deflate__inherit__graph.png differ diff --git a/class_high_five_1_1_element_set-members.html b/class_high_five_1_1_element_set-members.html new file mode 100644 index 000000000..db488315d --- /dev/null +++ b/class_high_five_1_1_element_set-members.html @@ -0,0 +1,116 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::ElementSet Member List
+
+
+ +

This is the complete list of members for HighFive::ElementSet, including all inherited members.

+ + + + + + +
ElementSet(std::initializer_list< std::size_t > list)HighFive::ElementSetinlineexplicit
ElementSet(std::initializer_list< std::vector< std::size_t > > list)HighFive::ElementSetinlineexplicit
ElementSet(const std::vector< std::size_t > &element_ids)HighFive::ElementSetinlineexplicit
ElementSet(const std::vector< std::vector< std::size_t > > &element_ids)HighFive::ElementSetinlineexplicit
SliceTraitsHighFive::ElementSetfriend
+
+ + + + diff --git a/class_high_five_1_1_element_set.html b/class_high_five_1_1_element_set.html new file mode 100644 index 000000000..dee4a8f0d --- /dev/null +++ b/class_high_five_1_1_element_set.html @@ -0,0 +1,299 @@ + + + + + + + +HighFive: HighFive::ElementSet Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::ElementSet Class Reference
+
+
+ +

#include <H5Slice_traits.hpp>

+ + + + + + + + + + + + + + +

+Public Member Functions

 ElementSet (std::initializer_list< std::size_t > list)
 Create a list of points of N-dimension for selection.
 
 ElementSet (std::initializer_list< std::vector< std::size_t > > list)
 Create a list of points of N-dimension for selection.
 
 ElementSet (const std::vector< std::size_t > &element_ids)
 Create a list of points of N-dimension for selection.
 
 ElementSet (const std::vector< std::vector< std::size_t > > &element_ids)
 Create a list of points of N-dimension for selection.
 
+ + + + +

+Friends

template<typename Derivate >
class SliceTraits
 
+

Constructor & Destructor Documentation

+ +

◆ ElementSet() [1/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::ElementSet::ElementSet (std::initializer_list< std::size_t > list)
+
+inlineexplicit
+
+ +

Create a list of points of N-dimension for selection.

+
Parameters
+ + +
listList of continuous coordinates (e.g.: in 2 dimensions space ElementSet{1, 2, 3 ,4} creates points (1, 2) and (3, 4)).
+
+
+ +
+
+ +

◆ ElementSet() [2/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::ElementSet::ElementSet (std::initializer_list< std::vector< std::size_t > > list)
+
+inlineexplicit
+
+ +

Create a list of points of N-dimension for selection.

+
Parameters
+ + +
listList of N-dim points.
+
+
+ +
+
+ +

◆ ElementSet() [3/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::ElementSet::ElementSet (const std::vector< std::size_t > & element_ids)
+
+inlineexplicit
+
+ +

Create a list of points of N-dimension for selection.

+
Parameters
+ + +
element_idsList of continuous coordinates (e.g.: in 2 dimensions space ElementSet{1, 2, 3 ,4} creates points (1, 2) and (3, 4)).
+
+
+ +
+
+ +

◆ ElementSet() [4/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::ElementSet::ElementSet (const std::vector< std::vector< std::size_t > > & element_ids)
+
+inlineexplicit
+
+ +

Create a list of points of N-dimension for selection.

+
Parameters
+ + +
element_idsList of N-dim points.
+
+
+ +
+
+

Friends And Related Symbol Documentation

+ +

◆ SliceTraits

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + +
friend class SliceTraits
+
+friend
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_element_set.js b/class_high_five_1_1_element_set.js new file mode 100644 index 000000000..651b19890 --- /dev/null +++ b/class_high_five_1_1_element_set.js @@ -0,0 +1,8 @@ +var class_high_five_1_1_element_set = +[ + [ "ElementSet", "class_high_five_1_1_element_set.html#a1479938205bd9d66267a58a11651b04f", null ], + [ "ElementSet", "class_high_five_1_1_element_set.html#a294be4e23eff7d07faa08e128d4b0afc", null ], + [ "ElementSet", "class_high_five_1_1_element_set.html#aedd3703eec6465101d2eef43ddbb5788", null ], + [ "ElementSet", "class_high_five_1_1_element_set.html#afc31e0be89f28aea060d8482ea525996", null ], + [ "SliceTraits", "class_high_five_1_1_element_set.html#addb06cbd22277a5199483352358a5e4f", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_enum_type-members.html b/class_high_five_1_1_enum_type-members.html new file mode 100644 index 000000000..f3624d94e --- /dev/null +++ b/class_high_five_1_1_enum_type-members.html @@ -0,0 +1,138 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::EnumType< T > Member List
+
+
+ +

This is the complete list of members for HighFive::EnumType< T >, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
_hidHighFive::Objectprotected
asStringType() constHighFive::DataTypeinline
commit(const Object &object, const std::string &name) constHighFive::EnumType< T >inline
empty() const noexceptHighFive::DataTypeinline
EnumType(const EnumType &other)=defaultHighFive::EnumType< T >
EnumType(const std::vector< member_def > &t_members)HighFive::EnumType< T >inline
EnumType(std::initializer_list< member_def > t_members)HighFive::EnumType< T >inline
getClass() constHighFive::DataTypeinline
getCreatePropertyList() constHighFive::DataTypeinline
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getSize() constHighFive::DataTypeinline
getType() constHighFive::Objectinline
isFixedLenStr() constHighFive::DataTypeinline
isReference() constHighFive::DataTypeinline
isValid() const noexceptHighFive::Objectinline
isVariableStr() constHighFive::DataTypeinline
Object(Object &&other) noexceptHighFive::DataTypeinlineprotected
Object()HighFive::DataTypeinlineprotected
Object(const Object &other)HighFive::DataTypeinlineprotected
Object(hid_t)HighFive::DataTypeinlineexplicitprotected
operator!=(const DataType &other) constHighFive::DataTypeinline
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const DataType &other) constHighFive::DataTypeinline
HighFive::Object::operator==(const Object &other) const noexceptHighFive::Objectinline
string() constHighFive::DataTypeinline
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_enum_type.html b/class_high_five_1_1_enum_type.html new file mode 100644 index 000000000..b5ab19d1c --- /dev/null +++ b/class_high_five_1_1_enum_type.html @@ -0,0 +1,384 @@ + + + + + + + +HighFive: HighFive::EnumType< T > Class Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::EnumType< T > Class Template Reference
+
+
+ +

Create a enum HDF5 datatype. + More...

+ +

#include <H5DataType.hpp>

+
+Inheritance diagram for HighFive::EnumType< T >:
+
+
Inheritance graph
+ + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::EnumType< T >:
+
+
Collaboration graph
+ + + + + + + +
[legend]
+ + + + + +

+Classes

struct  member_def
 Use for defining a member of enum type. More...
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 EnumType (const EnumType &other)=default
 
 EnumType (const std::vector< member_def > &t_members)
 
 EnumType (std::initializer_list< member_def > t_members)
 
void commit (const Object &object, const std::string &name) const
 Commit datatype into the given Object.
 
- Public Member Functions inherited from HighFive::DataType
bool operator== (const DataType &other) const
 
bool operator!= (const DataType &other) const
 
DataTypeClass getClass () const
 Return the fundamental type.
 
size_t getSize () const
 Returns the length (in bytes) of this type elements.
 
std::string string () const
 Returns a friendly description of the type (e.g. Float32)
 
bool isVariableStr () const
 Returns whether the type is a variable-length string.
 
bool isFixedLenStr () const
 Returns whether the type is a fixed-length string.
 
StringType asStringType () const
 Returns this datatype as a StringType.
 
bool empty () const noexcept
 Check the DataType was default constructed.
 
bool isReference () const
 Returns whether the type is a Reference.
 
DataTypeCreateProps getCreatePropertyList () const
 Get the list of properties for creation of this DataType.
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
+ + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Protected Member Functions inherited from HighFive::DataType
 Object (Object &&other) noexcept
 
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
+

Detailed Description

+
template<typename T>
+class HighFive::EnumType< T >

Create a enum HDF5 datatype.

+
enum class Position {
+
FIRST = 1,
+
SECOND = 2,
+
};
+
+
EnumType<Position> create_enum_position() {
+
return {{"FIRST", Position::FIRST},
+
{"SECOND", Position::SECOND}};
+
}
+
+
// You have to register the type inside HighFive
+
HIGHFIVE_REGISTER_TYPE(Position, create_enum_position)
+
+
void write_first(H5::File& file) {
+
auto dataset = file.createDataSet("/foo", Position::FIRST);
+
}
+
#define HIGHFIVE_REGISTER_TYPE(type, function)
Macro to extend datatype of HighFive.
Definition H5DataType.hpp:488
+
Create a enum HDF5 datatype.
Definition H5DataType.hpp:296
+

Constructor & Destructor Documentation

+ +

◆ EnumType() [1/3]

+ +
+
+
+template<typename T >
+ + + + + +
+ + + + + + + +
HighFive::EnumType< T >::EnumType (const EnumType< T > & other)
+
+default
+
+ +
+
+ +

◆ EnumType() [2/3]

+ +
+
+
+template<typename T >
+ + + + + +
+ + + + + + + +
HighFive::EnumType< T >::EnumType (const std::vector< member_def > & t_members)
+
+inline
+
+ +
+
+ +

◆ EnumType() [3/3]

+ +
+
+
+template<typename T >
+ + + + + +
+ + + + + + + +
HighFive::EnumType< T >::EnumType (std::initializer_list< member_def > t_members)
+
+inline
+
+ +
+
+

Member Function Documentation

+ +

◆ commit()

+ +
+
+
+template<typename T >
+ + + + + +
+ + + + + + + + + + + +
void HighFive::EnumType< T >::commit (const Object & object,
const std::string & name ) const
+
+inline
+
+ +

Commit datatype into the given Object.

+
Parameters
+ + + +
objectLocation to commit object into
nameName to give the datatype
+
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_enum_type.js b/class_high_five_1_1_enum_type.js new file mode 100644 index 000000000..df02b414b --- /dev/null +++ b/class_high_five_1_1_enum_type.js @@ -0,0 +1,8 @@ +var class_high_five_1_1_enum_type = +[ + [ "member_def", "struct_high_five_1_1_enum_type_1_1member__def.html", "struct_high_five_1_1_enum_type_1_1member__def" ], + [ "EnumType", "class_high_five_1_1_enum_type.html#a7d2b0c5fd6d77ea600687d6536b8ecdb", null ], + [ "EnumType", "class_high_five_1_1_enum_type.html#aa1c30f28b5387421406e184c5f77b854", null ], + [ "EnumType", "class_high_five_1_1_enum_type.html#a36c34fffd466b4a2c0c4f3bdf9f6a1a3", null ], + [ "commit", "class_high_five_1_1_enum_type.html#a989ae33cd573624dcbdcaf0d5bed5eea", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_enum_type__coll__graph.map b/class_high_five_1_1_enum_type__coll__graph.map new file mode 100644 index 000000000..17b0c26be --- /dev/null +++ b/class_high_five_1_1_enum_type__coll__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_enum_type__coll__graph.md5 b/class_high_five_1_1_enum_type__coll__graph.md5 new file mode 100644 index 000000000..fced74641 --- /dev/null +++ b/class_high_five_1_1_enum_type__coll__graph.md5 @@ -0,0 +1 @@ +c4367927d5190fa23ba4977137319dc2 \ No newline at end of file diff --git a/class_high_five_1_1_enum_type__coll__graph.png b/class_high_five_1_1_enum_type__coll__graph.png new file mode 100644 index 000000000..d6e2f8f1d Binary files /dev/null and b/class_high_five_1_1_enum_type__coll__graph.png differ diff --git a/class_high_five_1_1_enum_type__inherit__graph.map b/class_high_five_1_1_enum_type__inherit__graph.map new file mode 100644 index 000000000..17b0c26be --- /dev/null +++ b/class_high_five_1_1_enum_type__inherit__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_enum_type__inherit__graph.md5 b/class_high_five_1_1_enum_type__inherit__graph.md5 new file mode 100644 index 000000000..fced74641 --- /dev/null +++ b/class_high_five_1_1_enum_type__inherit__graph.md5 @@ -0,0 +1 @@ +c4367927d5190fa23ba4977137319dc2 \ No newline at end of file diff --git a/class_high_five_1_1_enum_type__inherit__graph.png b/class_high_five_1_1_enum_type__inherit__graph.png new file mode 100644 index 000000000..d6e2f8f1d Binary files /dev/null and b/class_high_five_1_1_enum_type__inherit__graph.png differ diff --git a/class_high_five_1_1_estimated_link_info-members.html b/class_high_five_1_1_estimated_link_info-members.html new file mode 100644 index 000000000..1f5bbf134 --- /dev/null +++ b/class_high_five_1_1_estimated_link_info-members.html @@ -0,0 +1,115 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::EstimatedLinkInfo Member List
+
+
+ +

This is the complete list of members for HighFive::EstimatedLinkInfo, including all inherited members.

+ + + + + +
EstimatedLinkInfo(unsigned entries, unsigned length)HighFive::EstimatedLinkInfoinlineexplicit
EstimatedLinkInfo(const GroupCreateProps &gcpl)HighFive::EstimatedLinkInfoinlineexplicit
getEntries() constHighFive::EstimatedLinkInfoinline
getNameLength() constHighFive::EstimatedLinkInfoinline
+
+ + + + diff --git a/class_high_five_1_1_estimated_link_info.html b/class_high_five_1_1_estimated_link_info.html new file mode 100644 index 000000000..f5a3ec361 --- /dev/null +++ b/class_high_five_1_1_estimated_link_info.html @@ -0,0 +1,277 @@ + + + + + + + +HighFive: HighFive::EstimatedLinkInfo Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::EstimatedLinkInfo Class Reference
+
+
+ +

Set hints as to how many links to expect and their average length. + More...

+ +

#include <H5PropertyList.hpp>

+
+Inheritance diagram for HighFive::EstimatedLinkInfo:
+
+
Inheritance graph
+ + + + + +
[legend]
+
+Collaboration diagram for HighFive::EstimatedLinkInfo:
+
+
Collaboration graph
+ + + + + +
[legend]
+ + + + + + + + + + + + + +

+Public Member Functions

 EstimatedLinkInfo (unsigned entries, unsigned length)
 Create a property with the request parameters.
 
 EstimatedLinkInfo (const GroupCreateProps &gcpl)
 
unsigned getEntries () const
 The estimated number of links in a group.
 
unsigned getNameLength () const
 The estimated length of the names of links.
 
+

Detailed Description

+

Set hints as to how many links to expect and their average length.

+

Constructor & Destructor Documentation

+ +

◆ EstimatedLinkInfo() [1/2]

+ +
+
+ + + + + +
+ + + + + + + + + + + +
HighFive::EstimatedLinkInfo::EstimatedLinkInfo (unsigned entries,
unsigned length )
+
+inlineexplicit
+
+ +

Create a property with the request parameters.

+
Parameters
+ + + +
entriesThe estimated number of links in a group.
lengthThe estimated length of the names of links.
+
+
+ +
+
+ +

◆ EstimatedLinkInfo() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::EstimatedLinkInfo::EstimatedLinkInfo (const GroupCreateProps & gcpl)
+
+inlineexplicit
+
+ +
+
+

Member Function Documentation

+ +

◆ getEntries()

+ +
+
+ + + + + +
+ + + + + + + +
unsigned HighFive::EstimatedLinkInfo::getEntries () const
+
+inline
+
+ +

The estimated number of links in a group.

+ +
+
+ +

◆ getNameLength()

+ +
+
+ + + + + +
+ + + + + + + +
unsigned HighFive::EstimatedLinkInfo::getNameLength () const
+
+inline
+
+ +

The estimated length of the names of links.

+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_estimated_link_info.js b/class_high_five_1_1_estimated_link_info.js new file mode 100644 index 000000000..d2d490095 --- /dev/null +++ b/class_high_five_1_1_estimated_link_info.js @@ -0,0 +1,7 @@ +var class_high_five_1_1_estimated_link_info = +[ + [ "EstimatedLinkInfo", "class_high_five_1_1_estimated_link_info.html#a3c311eb0f98aaa4dc1c7a26fab57a43d", null ], + [ "EstimatedLinkInfo", "class_high_five_1_1_estimated_link_info.html#ae8d47670a7adee47bf69d0fc1a53ebf2", null ], + [ "getEntries", "class_high_five_1_1_estimated_link_info.html#a15fe39d3abcec1d56eae67246ed88848", null ], + [ "getNameLength", "class_high_five_1_1_estimated_link_info.html#ab41597c8411f3a4023d82ebd1323a5f7", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_estimated_link_info__coll__graph.map b/class_high_five_1_1_estimated_link_info__coll__graph.map new file mode 100644 index 000000000..ac134ead5 --- /dev/null +++ b/class_high_five_1_1_estimated_link_info__coll__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_estimated_link_info__coll__graph.md5 b/class_high_five_1_1_estimated_link_info__coll__graph.md5 new file mode 100644 index 000000000..599216d90 --- /dev/null +++ b/class_high_five_1_1_estimated_link_info__coll__graph.md5 @@ -0,0 +1 @@ +09a5c605c30319d9b033ab63a7aa0fcd \ No newline at end of file diff --git a/class_high_five_1_1_estimated_link_info__coll__graph.png b/class_high_five_1_1_estimated_link_info__coll__graph.png new file mode 100644 index 000000000..d4c4e06c7 Binary files /dev/null and b/class_high_five_1_1_estimated_link_info__coll__graph.png differ diff --git a/class_high_five_1_1_estimated_link_info__inherit__graph.map b/class_high_five_1_1_estimated_link_info__inherit__graph.map new file mode 100644 index 000000000..ac134ead5 --- /dev/null +++ b/class_high_five_1_1_estimated_link_info__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_estimated_link_info__inherit__graph.md5 b/class_high_five_1_1_estimated_link_info__inherit__graph.md5 new file mode 100644 index 000000000..599216d90 --- /dev/null +++ b/class_high_five_1_1_estimated_link_info__inherit__graph.md5 @@ -0,0 +1 @@ +09a5c605c30319d9b033ab63a7aa0fcd \ No newline at end of file diff --git a/class_high_five_1_1_estimated_link_info__inherit__graph.png b/class_high_five_1_1_estimated_link_info__inherit__graph.png new file mode 100644 index 000000000..d4c4e06c7 Binary files /dev/null and b/class_high_five_1_1_estimated_link_info__inherit__graph.png differ diff --git a/class_high_five_1_1_exception-members.html b/class_high_five_1_1_exception-members.html new file mode 100644 index 000000000..2e7514f6a --- /dev/null +++ b/class_high_five_1_1_exception-members.html @@ -0,0 +1,123 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::Exception Member List
+
+
+ +

This is the complete list of members for HighFive::Exception, including all inherited members.

+ + + + + + + + + + + + + +
_err_majorHighFive::Exceptionprotected
_err_minorHighFive::Exceptionprotected
_errmsgHighFive::Exceptionprotected
_nextHighFive::Exceptionprotected
Exception(const std::string &err_msg)HighFive::Exceptioninline
getErrMajor() constHighFive::Exceptioninline
getErrMinor() constHighFive::Exceptioninline
HDF5ErrMapperHighFive::Exceptionfriend
nextException() constHighFive::Exceptioninline
setErrorMsg(const std::string &errmsg)HighFive::Exceptioninlinevirtual
what() const overrideHighFive::Exceptioninline
~Exception()HighFive::Exceptioninlinevirtual
+
+ + + + diff --git a/class_high_five_1_1_exception.html b/class_high_five_1_1_exception.html new file mode 100644 index 000000000..daa626310 --- /dev/null +++ b/class_high_five_1_1_exception.html @@ -0,0 +1,518 @@ + + + + + + + +HighFive: HighFive::Exception Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::Exception Class Reference
+
+
+ +

Basic HighFive Exception class. + More...

+ +

#include <H5Exception.hpp>

+
+Inheritance diagram for HighFive::Exception:
+
+
Inheritance graph
+ + + + + + + + + + + + + + + + + + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::Exception:
+
+
Collaboration graph
+ + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 Exception (const std::string &err_msg)
 
virtual ~Exception () throw ()
 
const char * what () const override throw ()
 get the current exception error message
 
virtual void setErrorMsg (const std::string &errmsg)
 define the error message
 
ExceptionnextException () const
 nextException
 
hid_t getErrMajor () const
 HDF5 library error mapper.
 
hid_t getErrMinor () const
 HDF5 library error mapper.
 
+ + + + + + + + + +

+Protected Attributes

std::string _errmsg
 
std::shared_ptr< Exception_next
 
hid_t _err_major
 
hid_t _err_minor
 
+ + + +

+Friends

struct HDF5ErrMapper
 
+

Detailed Description

+

Basic HighFive Exception class.

+

Constructor & Destructor Documentation

+ +

◆ Exception()

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Exception::Exception (const std::string & err_msg)
+
+inline
+
+ +
+
+ +

◆ ~Exception()

+ +
+
+ + + + + +
+ + + + + + + + + + +
virtual HighFive::Exception::~Exception ()
throw ( )
+
+inlinevirtual
+
+ +
+
+

Member Function Documentation

+ +

◆ getErrMajor()

+ +
+
+ + + + + +
+ + + + + + + +
hid_t HighFive::Exception::getErrMajor () const
+
+inline
+
+ +

HDF5 library error mapper.

+
Returns
HDF5 major error number
+ +
+
+ +

◆ getErrMinor()

+ +
+
+ + + + + +
+ + + + + + + +
hid_t HighFive::Exception::getErrMinor () const
+
+inline
+
+ +

HDF5 library error mapper.

+
Returns
HDF5 minor error number
+ +
+
+ +

◆ nextException()

+ +
+
+ + + + + +
+ + + + + + + +
Exception * HighFive::Exception::nextException () const
+
+inline
+
+ +

nextException

+
Returns
pointer to the next exception in the chain, or NULL if not existing
+ +
+
+ +

◆ setErrorMsg()

+ +
+
+ + + + + +
+ + + + + + + +
virtual void HighFive::Exception::setErrorMsg (const std::string & errmsg)
+
+inlinevirtual
+
+ +

define the error message

+
Parameters
+ + +
errmsg
+
+
+ +
+
+ +

◆ what()

+ +
+
+ + + + + +
+ + + + + + + + + + +
const char * HighFive::Exception::what () const
throw ( )
+
+inlineoverride
+
+ +

get the current exception error message

+
Returns
+ +
+
+

Friends And Related Symbol Documentation

+ +

◆ HDF5ErrMapper

+ +
+
+ + + + + +
+ + + + +
friend struct HDF5ErrMapper
+
+friend
+
+ +
+
+

Member Data Documentation

+ +

◆ _err_major

+ +
+
+ + + + + +
+ + + + +
hid_t HighFive::Exception::_err_major
+
+protected
+
+ +
+
+ +

◆ _err_minor

+ +
+
+ + + + + +
+ + + + +
hid_t HighFive::Exception::_err_minor
+
+protected
+
+ +
+
+ +

◆ _errmsg

+ +
+
+ + + + + +
+ + + + +
std::string HighFive::Exception::_errmsg
+
+protected
+
+ +
+
+ +

◆ _next

+ +
+
+ + + + + +
+ + + + +
std::shared_ptr<Exception> HighFive::Exception::_next
+
+protected
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/class_high_five_1_1_exception.js b/class_high_five_1_1_exception.js new file mode 100644 index 000000000..d5b901eeb --- /dev/null +++ b/class_high_five_1_1_exception.js @@ -0,0 +1,15 @@ +var class_high_five_1_1_exception = +[ + [ "Exception", "class_high_five_1_1_exception.html#adbde3ec927a2402f5f1f23e50f02c155", null ], + [ "~Exception", "class_high_five_1_1_exception.html#a5b14aa4572f3e72eff27529413442f29", null ], + [ "getErrMajor", "class_high_five_1_1_exception.html#a9f29fccb5cbf3b5cb698cf7de68ba56c", null ], + [ "getErrMinor", "class_high_five_1_1_exception.html#ad19349814671c76249834ff802695145", null ], + [ "nextException", "class_high_five_1_1_exception.html#a32badf84ecfcceb0eb6d54f6a33d0989", null ], + [ "setErrorMsg", "class_high_five_1_1_exception.html#a7c9b65fc87cf1abfed6d24309c74f0cf", null ], + [ "what", "class_high_five_1_1_exception.html#ac68d010bb13e90124360fa0f7c0e6f53", null ], + [ "HDF5ErrMapper", "class_high_five_1_1_exception.html#a1f3f174381f90e2f63dc4dbd5eb62e52", null ], + [ "_err_major", "class_high_five_1_1_exception.html#a835aebf45a86bbd81bf59b5975d69608", null ], + [ "_err_minor", "class_high_five_1_1_exception.html#ad62a656089c5e551f258138b48a1eb6c", null ], + [ "_errmsg", "class_high_five_1_1_exception.html#aa2d52ba9b9f7ca9157d46569b13e8462", null ], + [ "_next", "class_high_five_1_1_exception.html#a45f55e73e6d6e5ba8187ba15c799d829", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_exception__coll__graph.map b/class_high_five_1_1_exception__coll__graph.map new file mode 100644 index 000000000..f70fcd89c --- /dev/null +++ b/class_high_five_1_1_exception__coll__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_exception__coll__graph.md5 b/class_high_five_1_1_exception__coll__graph.md5 new file mode 100644 index 000000000..8a9316d92 --- /dev/null +++ b/class_high_five_1_1_exception__coll__graph.md5 @@ -0,0 +1 @@ +301f4142e4f8eadd5ce1f269f89a4d11 \ No newline at end of file diff --git a/class_high_five_1_1_exception__coll__graph.png b/class_high_five_1_1_exception__coll__graph.png new file mode 100644 index 000000000..8f2407346 Binary files /dev/null and b/class_high_five_1_1_exception__coll__graph.png differ diff --git a/class_high_five_1_1_exception__inherit__graph.map b/class_high_five_1_1_exception__inherit__graph.map new file mode 100644 index 000000000..3ad2c4fdc --- /dev/null +++ b/class_high_five_1_1_exception__inherit__graph.map @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/class_high_five_1_1_exception__inherit__graph.md5 b/class_high_five_1_1_exception__inherit__graph.md5 new file mode 100644 index 000000000..ff275b533 --- /dev/null +++ b/class_high_five_1_1_exception__inherit__graph.md5 @@ -0,0 +1 @@ +92ee366c6db9f50b60d2c9f1e1524ec2 \ No newline at end of file diff --git a/class_high_five_1_1_exception__inherit__graph.png b/class_high_five_1_1_exception__inherit__graph.png new file mode 100644 index 000000000..c1d158b28 Binary files /dev/null and b/class_high_five_1_1_exception__inherit__graph.png differ diff --git a/class_high_five_1_1_file-members.html b/class_high_five_1_1_file-members.html new file mode 100644 index 000000000..9b55f43c1 --- /dev/null +++ b/class_high_five_1_1_file-members.html @@ -0,0 +1,174 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::File Member List
+
+
+ +

This is the complete list of members for HighFive::File, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
_hidHighFive::Objectprotected
Create enum valueHighFive::File
createAttribute(const std::string &attribute_name, const DataSpace &space, const DataType &type)HighFive::AnnotateTraits< File >inline
createAttribute(const std::string &attribute_name, const DataSpace &space)HighFive::AnnotateTraits< File >inline
createAttribute(const std::string &attribute_name, const T &data)HighFive::AnnotateTraits< File >inline
createDataSet(const std::string &dataset_name, const DataSpace &space, const DataType &type, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)HighFive::NodeTraits< File >inline
createDataSet(const std::string &dataset_name, const DataSpace &space, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)HighFive::NodeTraits< File >inline
createDataSet(const std::string &dataset_name, const T &data, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)HighFive::NodeTraits< File >inline
createDataSet(const std::string &dataset_name, const deprecated::FixedLenStringArray< N > &data, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)HighFive::NodeTraits< File >inline
createExternalLink(const std::string &link_name, const std::string &h5_file, const std::string &obj_path, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)HighFive::NodeTraits< File >inline
createGroup(const std::string &group_name, bool parents=true)HighFive::NodeTraits< File >inline
createGroup(const std::string &group_name, const GroupCreateProps &createProps, bool parents=true)HighFive::NodeTraits< File >inline
createHardLink(const std::string &link_name, const T &target_obj, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)HighFive::NodeTraits< File >inline
createSoftLink(const std::string &linkName, const T &obj)HighFive::NodeTraits< File >inline
createSoftLink(const std::string &link_name, const std::string &obj_path, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)HighFive::NodeTraits< File >inline
Debug enum valueHighFive::File
deleteAttribute(const std::string &attribute_name)HighFive::AnnotateTraits< File >inline
Excl enum valueHighFive::File
exist(const std::string &node_name) constHighFive::NodeTraits< File >inline
File(const std::string &filename, unsigned openFlags=ReadOnly, const FileAccessProps &fileAccessProps=FileAccessProps::Default())HighFive::Fileinlineexplicit
File(const std::string &filename, unsigned openFlags, const FileCreateProps &fileCreateProps, const FileAccessProps &fileAccessProps=FileAccessProps::Default())HighFive::Fileinline
File()=defaultHighFive::Fileprotected
flush()HighFive::Fileinline
getAccessPropertyList() constHighFive::Fileinline
getAttribute(const std::string &attribute_name) constHighFive::AnnotateTraits< File >inline
getCreatePropertyList() constHighFive::Fileinline
getDataSet(const std::string &dataset_name, const DataSetAccessProps &accessProps=DataSetAccessProps::Default()) constHighFive::NodeTraits< File >inline
getDataType(const std::string &type_name, const DataTypeAccessProps &accessProps=DataTypeAccessProps::Default()) constHighFive::NodeTraits< File >inline
getFileSize() constHighFive::Fileinline
getFreeSpace() constHighFive::Fileinline
getGroup(const std::string &group_name) constHighFive::NodeTraits< File >inline
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getLinkType(const std::string &node_name) constHighFive::NodeTraits< File >inline
getMetadataBlockSize() constHighFive::Fileinline
getName() const noexceptHighFive::Fileinline
getNumberAttributes() constHighFive::AnnotateTraits< File >inline
getNumberObjects() constHighFive::NodeTraits< File >inline
getObjectName(size_t index) constHighFive::NodeTraits< File >inline
getObjectType(const std::string &node_name) constHighFive::NodeTraits< File >inline
getPath() const noexceptHighFive::Fileinline
getType() constHighFive::Objectinline
getVersionBounds() constHighFive::Fileinline
hasAttribute(const std::string &attr_name) constHighFive::AnnotateTraits< File >inline
isValid() const noexceptHighFive::Objectinline
listAttributeNames() constHighFive::AnnotateTraits< File >inline
listObjectNames(IndexType idx_type=IndexType::NAME) constHighFive::NodeTraits< File >inline
Object(Object &&other) noexceptHighFive::Fileinlineprotected
Object()HighFive::Fileinlineprotected
Object(const Object &other)HighFive::Fileinlineprotected
Object(hid_t)HighFive::Fileinlineexplicitprotected
OpenOrCreate enum valueHighFive::File
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const Object &other) const noexceptHighFive::Objectinline
Overwrite enum valueHighFive::File
PathTraitsHighFive::Filefriend
ReadOnly enum valueHighFive::File
ReadWrite enum valueHighFive::File
rename(const std::string &src_path, const std::string &dest_path, bool parents=true) constHighFive::NodeTraits< File >inline
Truncate enum valueHighFive::File
typeHighFive::Filestatic
unlink(const std::string &node_name) constHighFive::NodeTraits< File >inline
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_file.html b/class_high_five_1_1_file.html new file mode 100644 index 000000000..226499662 --- /dev/null +++ b/class_high_five_1_1_file.html @@ -0,0 +1,902 @@ + + + + + + + +HighFive: HighFive::File Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::File Class Reference
+
+
+ +

File class. + More...

+ +

#include <H5File.hpp>

+
+Inheritance diagram for HighFive::File:
+
+
Inheritance graph
+ + + + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::File:
+
+
Collaboration graph
+ + + + + + + + + +
[legend]
+ + + + +

+Public Types

enum  : unsigned {
+  ReadOnly = 0x00u +, ReadWrite = 0x01u +, Truncate = 0x02u +, Excl = 0x04u +,
+  Debug = 0x08u +, Create = 0x10u +, Overwrite = Truncate +, OpenOrCreate = ReadWrite | Create +
+ }
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 File (const std::string &filename, unsigned openFlags=ReadOnly, const FileAccessProps &fileAccessProps=FileAccessProps::Default())
 File.
 
 File (const std::string &filename, unsigned openFlags, const FileCreateProps &fileCreateProps, const FileAccessProps &fileAccessProps=FileAccessProps::Default())
 File.
 
const std::string & getName () const noexcept
 Return the name of the file.
 
std::string getPath () const noexcept
 Object path of a File is always "/".
 
hsize_t getMetadataBlockSize () const
 Returns the block size for metadata in bytes.
 
std::pair< H5F_libver_t, H5F_libver_t > getVersionBounds () const
 Returns the HDF5 version compatibility bounds.
 
void flush ()
 flush
 
FileCreateProps getCreatePropertyList () const
 Get the list of properties for creation of this file.
 
FileAccessProps getAccessPropertyList () const
 Get the list of properties for accession of this file.
 
size_t getFileSize () const
 Get the size of this file in bytes.
 
size_t getFreeSpace () const
 Get the amount of tracked, unused space in bytes.
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
- Public Member Functions inherited from HighFive::NodeTraits< File >
DataSet createDataSet (const std::string &dataset_name, const DataSpace &space, const DataType &type, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)
 createDataSet Create a new dataset in the current file of datatype type and of size space
 
DataSet createDataSet (const std::string &dataset_name, const DataSpace &space, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)
 createDataSet create a new dataset in the current file with a size specified by space
 
DataSet createDataSet (const std::string &dataset_name, const T &data, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)
 createDataSet create a new dataset in the current file and write to it, inferring the DataSpace from the data.
 
DataSet createDataSet (const std::string &dataset_name, const deprecated::FixedLenStringArray< N > &data, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)
 
DataSet getDataSet (const std::string &dataset_name, const DataSetAccessProps &accessProps=DataSetAccessProps::Default()) const
 get an existing dataset in the current file
 
Group createGroup (const std::string &group_name, bool parents=true)
 create a new group, and eventually intermediate groups
 
Group createGroup (const std::string &group_name, const GroupCreateProps &createProps, bool parents=true)
 create a new group, and eventually intermediate groups
 
Group getGroup (const std::string &group_name) const
 open an existing group with the name group_name
 
DataType getDataType (const std::string &type_name, const DataTypeAccessProps &accessProps=DataTypeAccessProps::Default()) const
 open a commited datatype with the name type_name
 
size_t getNumberObjects () const
 return the number of leaf objects of the node / group
 
std::string getObjectName (size_t index) const
 return the name of the object with the given index
 
bool rename (const std::string &src_path, const std::string &dest_path, bool parents=true) const
 moves an object and its content within an HDF5 file.
 
std::vector< std::string > listObjectNames (IndexType idx_type=IndexType::NAME) const
 list all leaf objects name of the node / group
 
bool exist (const std::string &node_name) const
 check a dataset or group exists in the current node / group
 
void unlink (const std::string &node_name) const
 unlink the given dataset or group
 
LinkType getLinkType (const std::string &node_name) const
 Returns the kind of link of the given name (soft, hard...)
 
ObjectType getObjectType (const std::string &node_name) const
 A shorthand to get the kind of object pointed to (group, dataset, type...)
 
void createSoftLink (const std::string &linkName, const T &obj)
 A shorthand to create softlink to any object which provides getPath The link will be created with default properties along with required parent groups.
 
void createSoftLink (const std::string &link_name, const std::string &obj_path, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)
 Creates softlinks.
 
void createExternalLink (const std::string &link_name, const std::string &h5_file, const std::string &obj_path, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)
 
void createHardLink (const std::string &link_name, const T &target_obj, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)
 Creates hardlinks.
 
- Public Member Functions inherited from HighFive::AnnotateTraits< File >
Attribute createAttribute (const std::string &attribute_name, const DataSpace &space, const DataType &type)
 create a new attribute with the name attribute_name
 
Attribute createAttribute (const std::string &attribute_name, const DataSpace &space)
 createAttribute create a new attribute on the current dataset with size specified by space
 
Attribute createAttribute (const std::string &attribute_name, const T &data)
 createAttribute create a new attribute on the current dataset and write to it, inferring the DataSpace from data.
 
void deleteAttribute (const std::string &attribute_name)
 deleteAttribute let you delete an attribute by its name.
 
Attribute getAttribute (const std::string &attribute_name) const
 open an existing attribute with the name attribute_name
 
size_t getNumberAttributes () const
 return the number of attributes of the node / group
 
std::vector< std::string > listAttributeNames () const
 list all attribute name of the node / group
 
bool hasAttribute (const std::string &attr_name) const
 checks an attribute exists
 
+ + + +

+Static Public Attributes

static const ObjectType type = ObjectType::File
 
+ + + + + + + + + + + + + + + + + + + + +

+Protected Member Functions

 File ()=default
 
 Object (Object &&other) noexcept
 
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
+ + + + +

+Friends

template<typename >
class PathTraits
 
+ + + + +

+Additional Inherited Members

- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
+

Detailed Description

+

File class.

+

Member Enumeration Documentation

+ +

◆ anonymous enum

+ +
+
+ + + + +
anonymous enum : unsigned
+
+ + + + + + + + + +
Enumerator
ReadOnly 

Open flag: Read only access.

+
ReadWrite 

Open flag: Read Write access.

+
Truncate 

Open flag: Truncate a file if already existing.

+
Excl 

Open flag: Open will fail if file already exist.

+
Debug 

Open flag: Open in debug mode.

+
Create 

Open flag: Create non existing file.

+
Overwrite 

Derived open flag: common write mode (=ReadWrite|Create|Truncate)

+
OpenOrCreate 

Derived open flag: Opens RW or exclusively creates.

+
+ +
+
+

Constructor & Destructor Documentation

+ +

◆ File() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + +
HighFive::File::File (const std::string & filename,
unsigned openFlags = ReadOnly,
const FileAccessProps & fileAccessProps = FileAccessProps::Default() )
+
+inlineexplicit
+
+ +

File.

+
Parameters
+ + + + +
filenamefilepath of the HDF5 file
openFlagsOpen mode / flags ( ReadOnly, ReadWrite)
fileAccessPropsthe file access properties
+
+
+

Open or create a new HDF5 file

+ +
+
+ +

◆ File() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
HighFive::File::File (const std::string & filename,
unsigned openFlags,
const FileCreateProps & fileCreateProps,
const FileAccessProps & fileAccessProps = FileAccessProps::Default() )
+
+inline
+
+ +

File.

+
Parameters
+ + + + + +
filenamefilepath of the HDF5 file
openFlagsOpen mode / flags ( ReadOnly, ReadWrite)
fileCreatePropsthe file create properties
fileAccessPropsthe file access properties
+
+
+

Open or create a new HDF5 file

+ +
+
+ +

◆ File() [3/3]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::File::File ()
+
+protecteddefault
+
+ +
+
+

Member Function Documentation

+ +

◆ flush()

+ +
+
+ + + + + +
+ + + + + + + +
void HighFive::File::flush ()
+
+inline
+
+ +

flush

+

Flushes all buffers associated with a file to disk

+ +
+
+ +

◆ getAccessPropertyList()

+ +
+
+ + + + + +
+ + + + + + + +
FileAccessProps HighFive::File::getAccessPropertyList () const
+
+inline
+
+ +

Get the list of properties for accession of this file.

+ +
+
+ +

◆ getCreatePropertyList()

+ +
+
+ + + + + +
+ + + + + + + +
FileCreateProps HighFive::File::getCreatePropertyList () const
+
+inline
+
+ +

Get the list of properties for creation of this file.

+ +
+
+ +

◆ getFileSize()

+ +
+
+ + + + + +
+ + + + + + + +
size_t HighFive::File::getFileSize () const
+
+inline
+
+ +

Get the size of this file in bytes.

+ +
+
+ +

◆ getFreeSpace()

+ +
+
+ + + + + +
+ + + + + + + +
size_t HighFive::File::getFreeSpace () const
+
+inline
+
+ +

Get the amount of tracked, unused space in bytes.

+

Note, this is a wrapper for H5Fget_freespace and returns the number bytes in the free space manager. This might be different from the total amount of unused space in the HDF5 file, since the free space manager might not track everything or not track across open-close cycles.

+ +
+
+ +

◆ getMetadataBlockSize()

+ +
+
+ + + + + +
+ + + + + + + +
hsize_t HighFive::File::getMetadataBlockSize () const
+
+inline
+
+ +

Returns the block size for metadata in bytes.

+ +
+
+ +

◆ getName()

+ +
+
+ + + + + +
+ + + + + + + +
const std::string & HighFive::File::getName () const
+
+inlinenoexcept
+
+ +

Return the name of the file.

+ +
+
+ +

◆ getPath()

+ +
+
+ + + + + +
+ + + + + + + +
std::string HighFive::File::getPath () const
+
+inlinenoexcept
+
+ +

Object path of a File is always "/".

+ +
+
+ +

◆ getVersionBounds()

+ +
+
+ + + + + +
+ + + + + + + +
std::pair< H5F_libver_t, H5F_libver_t > HighFive::File::getVersionBounds () const
+
+inline
+
+ +

Returns the HDF5 version compatibility bounds.

+ +
+
+ +

◆ Object() [1/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object ()
+
+inlineprotected
+
+ +
+
+ +

◆ Object() [2/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object (const Object & other)
+
+inlineprotected
+
+ +
+
+ +

◆ Object() [3/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object (hid_t hid)
+
+inlineexplicitprotected
+
+ +
+
+ +

◆ Object() [4/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object (Object && other)
+
+inlineprotectednoexcept
+
+ +
+
+

Friends And Related Symbol Documentation

+ +

◆ PathTraits

+ +
+
+
+template<typename >
+ + + + + +
+ + + + +
friend class PathTraits
+
+friend
+
+ +
+
+

Member Data Documentation

+ +

◆ type

+ +
+
+ + + + + +
+ + + + +
const ObjectType HighFive::File::type = ObjectType::File
+
+static
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_file.js b/class_high_five_1_1_file.js new file mode 100644 index 000000000..279992b2a --- /dev/null +++ b/class_high_five_1_1_file.js @@ -0,0 +1,20 @@ +var class_high_five_1_1_file = +[ + [ "File", "class_high_five_1_1_file.html#a28ecd0313429c95671fe4baa6be076df", null ], + [ "File", "class_high_five_1_1_file.html#aae2430c3529c4896a207f6dbe64a943e", null ], + [ "File", "class_high_five_1_1_file.html#a8795099e29b71240c772e7c57d072a9d", null ], + [ "flush", "class_high_five_1_1_file.html#a1e607911df10307dd3cc75a0dd6c5158", null ], + [ "getAccessPropertyList", "class_high_five_1_1_file.html#a3a75e93bc3748614dff7e850d82ed495", null ], + [ "getCreatePropertyList", "class_high_five_1_1_file.html#a03938d3708dbafeaf6a83f982aee3909", null ], + [ "getFileSize", "class_high_five_1_1_file.html#a072b1759a2c8b033eea6d020a9ed1d08", null ], + [ "getFreeSpace", "class_high_five_1_1_file.html#a2cd2322084c2c60f5b07af3c3daf1c16", null ], + [ "getMetadataBlockSize", "class_high_five_1_1_file.html#a3e3772ae94caca4b2422b536a1cf2472", null ], + [ "getName", "class_high_five_1_1_file.html#af555f50958667264563b0cb17b8f902b", null ], + [ "getPath", "class_high_five_1_1_file.html#af141a4c6c9fe058b121646b2079f2c6b", null ], + [ "getVersionBounds", "class_high_five_1_1_file.html#a1c5b148c4e906bcde448b4eea1f66b91", null ], + [ "Object", "class_high_five_1_1_file.html#a6bae41d04f273d04d2914406ab79da32", null ], + [ "Object", "class_high_five_1_1_file.html#ab87ee7d5e2beee6a50d60dec20d3dfe5", null ], + [ "Object", "class_high_five_1_1_file.html#a9fe361bc0bd9662c1fd96a4a6ec1133a", null ], + [ "Object", "class_high_five_1_1_file.html#aa42052fa5ec4ee691f6a7dd6467199f2", null ], + [ "PathTraits", "class_high_five_1_1_file.html#a4fd65b8c85f680db6495b37b7a00594a", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_file__coll__graph.map b/class_high_five_1_1_file__coll__graph.map new file mode 100644 index 000000000..219ddeedf --- /dev/null +++ b/class_high_five_1_1_file__coll__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_file__coll__graph.md5 b/class_high_five_1_1_file__coll__graph.md5 new file mode 100644 index 000000000..5d7bd88fb --- /dev/null +++ b/class_high_five_1_1_file__coll__graph.md5 @@ -0,0 +1 @@ +3fc26af7e17634fe4f8e461ccb38c4b4 \ No newline at end of file diff --git a/class_high_five_1_1_file__coll__graph.png b/class_high_five_1_1_file__coll__graph.png new file mode 100644 index 000000000..c56fbf1b4 Binary files /dev/null and b/class_high_five_1_1_file__coll__graph.png differ diff --git a/class_high_five_1_1_file__inherit__graph.map b/class_high_five_1_1_file__inherit__graph.map new file mode 100644 index 000000000..219ddeedf --- /dev/null +++ b/class_high_five_1_1_file__inherit__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_file__inherit__graph.md5 b/class_high_five_1_1_file__inherit__graph.md5 new file mode 100644 index 000000000..5d7bd88fb --- /dev/null +++ b/class_high_five_1_1_file__inherit__graph.md5 @@ -0,0 +1 @@ +3fc26af7e17634fe4f8e461ccb38c4b4 \ No newline at end of file diff --git a/class_high_five_1_1_file__inherit__graph.png b/class_high_five_1_1_file__inherit__graph.png new file mode 100644 index 000000000..c56fbf1b4 Binary files /dev/null and b/class_high_five_1_1_file__inherit__graph.png differ diff --git a/class_high_five_1_1_file_driver-members.html b/class_high_five_1_1_file_driver-members.html new file mode 100644 index 000000000..efdb6713a --- /dev/null +++ b/class_high_five_1_1_file_driver-members.html @@ -0,0 +1,128 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::FileDriver Member List
+
+
+ +

This is the complete list of members for HighFive::FileDriver, including all inherited members.

+ + + + + + + + + + + + + + + + + + +
_hidHighFive::Objectprotected
_initializeIfNeeded()HighFive::PropertyList< T >inlineprotected
add(const P &property)HighFive::PropertyList< T >inline
Default() noexceptHighFive::PropertyList< T >inlinestatic
Empty()HighFive::PropertyList< T >inlinestatic
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getType() const noexceptHighFive::PropertyList< T >inline
isValid() const noexceptHighFive::Objectinline
Object(Object &&other) noexceptHighFive::Objectinline
Object()HighFive::Objectinlineprotected
Object(const Object &other)HighFive::Objectinlineprotected
Object(hid_t)HighFive::Objectinlineexplicitprotected
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const Object &other) const noexceptHighFive::Objectinline
PropertyListBase() noexceptHighFive::PropertyListBaseinline
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_file_driver.html b/class_high_five_1_1_file_driver.html new file mode 100644 index 000000000..9efe1a781 --- /dev/null +++ b/class_high_five_1_1_file_driver.html @@ -0,0 +1,207 @@ + + + + + + + +HighFive: HighFive::FileDriver Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::FileDriver Class Reference
+
+
+ +

file driver base concept + More...

+ +

#include <H5FileDriver.hpp>

+
+Inheritance diagram for HighFive::FileDriver:
+
+
Inheritance graph
+ + + + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::FileDriver:
+
+
Collaboration graph
+ + + + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Public Member Functions inherited from HighFive::PropertyList< T >
constexpr PropertyType getType () const noexcept
 return the type of this PropertyList
 
template<PropertyInterface P>
void add (const P &property)
 
- Public Member Functions inherited from HighFive::PropertyListBase
 PropertyListBase () noexcept
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
- Static Public Member Functions inherited from HighFive::PropertyList< T >
static const PropertyList< T > & Default () noexcept
 Return the Default property type object.
 
static PropertyList< T > Empty ()
 
- Static Public Member Functions inherited from HighFive::PropertyListBase
static const PropertyListBaseDefault () noexcept
 
- Protected Member Functions inherited from HighFive::PropertyList< T >
void _initializeIfNeeded ()
 
- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
+

Detailed Description

+

file driver base concept

+
Deprecated
Use FileAccessProps directly
+

The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/class_high_five_1_1_file_driver__coll__graph.map b/class_high_five_1_1_file_driver__coll__graph.map new file mode 100644 index 000000000..e9d0d932c --- /dev/null +++ b/class_high_five_1_1_file_driver__coll__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_file_driver__coll__graph.md5 b/class_high_five_1_1_file_driver__coll__graph.md5 new file mode 100644 index 000000000..f8475d1c5 --- /dev/null +++ b/class_high_five_1_1_file_driver__coll__graph.md5 @@ -0,0 +1 @@ +9d7e4303b58f2497553d1692a6ce5a10 \ No newline at end of file diff --git a/class_high_five_1_1_file_driver__coll__graph.png b/class_high_five_1_1_file_driver__coll__graph.png new file mode 100644 index 000000000..171dd3650 Binary files /dev/null and b/class_high_five_1_1_file_driver__coll__graph.png differ diff --git a/class_high_five_1_1_file_driver__inherit__graph.map b/class_high_five_1_1_file_driver__inherit__graph.map new file mode 100644 index 000000000..e9d0d932c --- /dev/null +++ b/class_high_five_1_1_file_driver__inherit__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_file_driver__inherit__graph.md5 b/class_high_five_1_1_file_driver__inherit__graph.md5 new file mode 100644 index 000000000..f8475d1c5 --- /dev/null +++ b/class_high_five_1_1_file_driver__inherit__graph.md5 @@ -0,0 +1 @@ +9d7e4303b58f2497553d1692a6ce5a10 \ No newline at end of file diff --git a/class_high_five_1_1_file_driver__inherit__graph.png b/class_high_five_1_1_file_driver__inherit__graph.png new file mode 100644 index 000000000..171dd3650 Binary files /dev/null and b/class_high_five_1_1_file_driver__inherit__graph.png differ diff --git a/class_high_five_1_1_file_exception-members.html b/class_high_five_1_1_file_exception-members.html new file mode 100644 index 000000000..aa0a45d83 --- /dev/null +++ b/class_high_five_1_1_file_exception-members.html @@ -0,0 +1,123 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::FileException Member List
+
+
+ +

This is the complete list of members for HighFive::FileException, including all inherited members.

+ + + + + + + + + + + + + +
_err_majorHighFive::Exceptionprotected
_err_minorHighFive::Exceptionprotected
_errmsgHighFive::Exceptionprotected
_nextHighFive::Exceptionprotected
Exception(const std::string &err_msg)HighFive::Exceptioninline
FileException(const std::string &err_msg)HighFive::FileExceptioninline
getErrMajor() constHighFive::Exceptioninline
getErrMinor() constHighFive::Exceptioninline
nextException() constHighFive::Exceptioninline
setErrorMsg(const std::string &errmsg)HighFive::Exceptioninlinevirtual
what() const overrideHighFive::Exceptioninline
~Exception()HighFive::Exceptioninlinevirtual
+
+ + + + diff --git a/class_high_five_1_1_file_exception.html b/class_high_five_1_1_file_exception.html new file mode 100644 index 000000000..9114d8322 --- /dev/null +++ b/class_high_five_1_1_file_exception.html @@ -0,0 +1,212 @@ + + + + + + + +HighFive: HighFive::FileException Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::FileException Class Reference
+
+
+ +

Exception specific to HighFive File interface. + More...

+ +

#include <H5Exception.hpp>

+
+Inheritance diagram for HighFive::FileException:
+
+
Inheritance graph
+ + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::FileException:
+
+
Collaboration graph
+ + + + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 FileException (const std::string &err_msg)
 
- Public Member Functions inherited from HighFive::Exception
 Exception (const std::string &err_msg)
 
virtual ~Exception () throw ()
 
const char * what () const override throw ()
 get the current exception error message
 
virtual void setErrorMsg (const std::string &errmsg)
 define the error message
 
ExceptionnextException () const
 nextException
 
hid_t getErrMajor () const
 HDF5 library error mapper.
 
hid_t getErrMinor () const
 HDF5 library error mapper.
 
+ + + + + + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from HighFive::Exception
std::string _errmsg
 
std::shared_ptr< Exception_next
 
hid_t _err_major
 
hid_t _err_minor
 
+

Detailed Description

+

Exception specific to HighFive File interface.

+

Constructor & Destructor Documentation

+ +

◆ FileException()

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::FileException::FileException (const std::string & err_msg)
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/class_high_five_1_1_file_exception.js b/class_high_five_1_1_file_exception.js new file mode 100644 index 000000000..c437769b0 --- /dev/null +++ b/class_high_five_1_1_file_exception.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_file_exception = +[ + [ "FileException", "class_high_five_1_1_file_exception.html#a68c676392c9ea3f7e5e7ecc1149609ee", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_file_exception__coll__graph.map b/class_high_five_1_1_file_exception__coll__graph.map new file mode 100644 index 000000000..ff402aa61 --- /dev/null +++ b/class_high_five_1_1_file_exception__coll__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_file_exception__coll__graph.md5 b/class_high_five_1_1_file_exception__coll__graph.md5 new file mode 100644 index 000000000..f6f212a6f --- /dev/null +++ b/class_high_five_1_1_file_exception__coll__graph.md5 @@ -0,0 +1 @@ +d98518d9d7fb44015bb234109a62d57a \ No newline at end of file diff --git a/class_high_five_1_1_file_exception__coll__graph.png b/class_high_five_1_1_file_exception__coll__graph.png new file mode 100644 index 000000000..e8d4f9879 Binary files /dev/null and b/class_high_five_1_1_file_exception__coll__graph.png differ diff --git a/class_high_five_1_1_file_exception__inherit__graph.map b/class_high_five_1_1_file_exception__inherit__graph.map new file mode 100644 index 000000000..d672c4f9c --- /dev/null +++ b/class_high_five_1_1_file_exception__inherit__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_file_exception__inherit__graph.md5 b/class_high_five_1_1_file_exception__inherit__graph.md5 new file mode 100644 index 000000000..83e1c2e17 --- /dev/null +++ b/class_high_five_1_1_file_exception__inherit__graph.md5 @@ -0,0 +1 @@ +a4307be3bc6cbdb2faa5b84862fb58e6 \ No newline at end of file diff --git a/class_high_five_1_1_file_exception__inherit__graph.png b/class_high_five_1_1_file_exception__inherit__graph.png new file mode 100644 index 000000000..454b4bc82 Binary files /dev/null and b/class_high_five_1_1_file_exception__inherit__graph.png differ diff --git a/class_high_five_1_1_file_version_bounds-members.html b/class_high_five_1_1_file_version_bounds-members.html new file mode 100644 index 000000000..5d1e6b2f9 --- /dev/null +++ b/class_high_five_1_1_file_version_bounds-members.html @@ -0,0 +1,114 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::FileVersionBounds Member List
+
+
+ +

This is the complete list of members for HighFive::FileVersionBounds, including all inherited members.

+ + + + +
FileVersionBounds(H5F_libver_t low, H5F_libver_t high)HighFive::FileVersionBoundsinline
FileVersionBounds(const FileAccessProps &fapl)HighFive::FileVersionBoundsinlineexplicit
getVersion() constHighFive::FileVersionBoundsinline
+
+ + + + diff --git a/class_high_five_1_1_file_version_bounds.html b/class_high_five_1_1_file_version_bounds.html new file mode 100644 index 000000000..6e6e93965 --- /dev/null +++ b/class_high_five_1_1_file_version_bounds.html @@ -0,0 +1,223 @@ + + + + + + + +HighFive: HighFive::FileVersionBounds Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::FileVersionBounds Class Reference
+
+
+ +

Configure the version bounds for the file. + More...

+ +

#include <H5PropertyList.hpp>

+ + + + + + + + +

+Public Member Functions

 FileVersionBounds (H5F_libver_t low, H5F_libver_t high)
 
 FileVersionBounds (const FileAccessProps &fapl)
 
std::pair< H5F_libver_t, H5F_libver_t > getVersion () const
 
+

Detailed Description

+

Configure the version bounds for the file.

+

Used to define the compatibility of objects created within HDF5 files, and affects the format of groups stored in the file.

+

See also the documentation of H5P_SET_LIBVER_BOUNDS in HDF5.

+

Possible values for low and high are:

    +
  • H5F_LIBVER_EARLIEST
  • +
  • H5F_LIBVER_V18
  • +
  • H5F_LIBVER_V110
  • +
  • H5F_LIBVER_NBOUNDS
  • +
  • H5F_LIBVER_LATEST currently defined as H5F_LIBVER_V110 within HDF5
  • +
+

Constructor & Destructor Documentation

+ +

◆ FileVersionBounds() [1/2]

+ +
+
+ + + + + +
+ + + + + + + + + + + +
HighFive::FileVersionBounds::FileVersionBounds (H5F_libver_t low,
H5F_libver_t high )
+
+inline
+
+ +
+
+ +

◆ FileVersionBounds() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::FileVersionBounds::FileVersionBounds (const FileAccessProps & fapl)
+
+inlineexplicit
+
+ +
+
+

Member Function Documentation

+ +

◆ getVersion()

+ +
+
+ + + + + +
+ + + + + + + +
std::pair< H5F_libver_t, H5F_libver_t > HighFive::FileVersionBounds::getVersion () const
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_file_version_bounds.js b/class_high_five_1_1_file_version_bounds.js new file mode 100644 index 000000000..2a8b9ac23 --- /dev/null +++ b/class_high_five_1_1_file_version_bounds.js @@ -0,0 +1,6 @@ +var class_high_five_1_1_file_version_bounds = +[ + [ "FileVersionBounds", "class_high_five_1_1_file_version_bounds.html#aff11691ee13ebbd765d9c1f18e379b4b", null ], + [ "FileVersionBounds", "class_high_five_1_1_file_version_bounds.html#a9517df3be7e25b4a6770165ffe07430d", null ], + [ "getVersion", "class_high_five_1_1_file_version_bounds.html#a6d55273a22fb8ecbba0079cc08ae9c79", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_fixed_length_string_type-members.html b/class_high_five_1_1_fixed_length_string_type-members.html new file mode 100644 index 000000000..b816a30c2 --- /dev/null +++ b/class_high_five_1_1_fixed_length_string_type-members.html @@ -0,0 +1,137 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::FixedLengthStringType Member List
+
+
+ +

This is the complete list of members for HighFive::FixedLengthStringType, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
_hidHighFive::Objectprotected
asStringType() constHighFive::DataTypeinline
empty() const noexceptHighFive::DataTypeinline
FixedLengthStringType(size_t size, StringPadding padding, CharacterSet character_set=CharacterSet::Ascii)HighFive::FixedLengthStringTypeinline
getCharacterSet() constHighFive::StringTypeinline
getClass() constHighFive::DataTypeinline
getCreatePropertyList() constHighFive::DataTypeinline
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getPadding() constHighFive::StringTypeinline
getSize() constHighFive::DataTypeinline
getType() constHighFive::Objectinline
isFixedLenStr() constHighFive::DataTypeinline
isReference() constHighFive::DataTypeinline
isValid() const noexceptHighFive::Objectinline
isVariableStr() constHighFive::DataTypeinline
Object(Object &&other) noexceptHighFive::DataTypeinlineprotected
Object()HighFive::DataTypeinlineprotected
Object(const Object &other)HighFive::DataTypeinlineprotected
Object(hid_t)HighFive::DataTypeinlineexplicitprotected
operator!=(const DataType &other) constHighFive::DataTypeinline
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const DataType &other) constHighFive::DataTypeinline
HighFive::Object::operator==(const Object &other) const noexceptHighFive::Objectinline
string() constHighFive::DataTypeinline
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_fixed_length_string_type.html b/class_high_five_1_1_fixed_length_string_type.html new file mode 100644 index 000000000..7055d9a1c --- /dev/null +++ b/class_high_five_1_1_fixed_length_string_type.html @@ -0,0 +1,275 @@ + + + + + + + +HighFive: HighFive::FixedLengthStringType Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::FixedLengthStringType Class Reference
+
+
+ +

#include <H5DataType.hpp>

+
+Inheritance diagram for HighFive::FixedLengthStringType:
+
+
Inheritance graph
+ + + + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::FixedLengthStringType:
+
+
Collaboration graph
+ + + + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 FixedLengthStringType (size_t size, StringPadding padding, CharacterSet character_set=CharacterSet::Ascii)
 Create a fixed length string datatype.
 
- Public Member Functions inherited from HighFive::StringType
CharacterSet getCharacterSet () const
 For stings return the character set.
 
StringPadding getPadding () const
 For fixed length stings return the padding.
 
- Public Member Functions inherited from HighFive::DataType
bool operator== (const DataType &other) const
 
bool operator!= (const DataType &other) const
 
DataTypeClass getClass () const
 Return the fundamental type.
 
size_t getSize () const
 Returns the length (in bytes) of this type elements.
 
std::string string () const
 Returns a friendly description of the type (e.g. Float32)
 
bool isVariableStr () const
 Returns whether the type is a variable-length string.
 
bool isFixedLenStr () const
 Returns whether the type is a fixed-length string.
 
StringType asStringType () const
 Returns this datatype as a StringType.
 
bool empty () const noexcept
 Check the DataType was default constructed.
 
bool isReference () const
 Returns whether the type is a Reference.
 
DataTypeCreateProps getCreatePropertyList () const
 Get the list of properties for creation of this DataType.
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
+ + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Protected Member Functions inherited from HighFive::DataType
 Object (Object &&other) noexcept
 
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
+

Constructor & Destructor Documentation

+ +

◆ FixedLengthStringType()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + +
HighFive::FixedLengthStringType::FixedLengthStringType (size_t size,
StringPadding padding,
CharacterSet character_set = CharacterSet::Ascii )
+
+inline
+
+ +

Create a fixed length string datatype.

+

The string will be size bytes long, regardless whether it's ASCII or UTF8. In particular, a string with n UFT8 characters in general requires 4*n bytes.

+

The string padding is subtle, essentially it's just a hint. A null-terminated string is guaranteed to have one ‘’\0'which marks the semantic end of the string. The length of the buffer must be at least sizebytes regardless. HDF5 will read or writesizebytes, irrespective of the when the\0` occurs.

+

Note that when writing passing StringPadding::NullTerminated is a guarantee to the reader that it contains a \0. Therefore, make sure that the string really is nullterminated. Otherwise prefer a null-padded string which only means states that the buffer is filled up with 0 or more \0.

+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_fixed_length_string_type.js b/class_high_five_1_1_fixed_length_string_type.js new file mode 100644 index 000000000..8eb9d6fd9 --- /dev/null +++ b/class_high_five_1_1_fixed_length_string_type.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_fixed_length_string_type = +[ + [ "FixedLengthStringType", "class_high_five_1_1_fixed_length_string_type.html#a861eb3227c2387d3c0754b795cde204e", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_fixed_length_string_type__coll__graph.map b/class_high_five_1_1_fixed_length_string_type__coll__graph.map new file mode 100644 index 000000000..2a8d7e911 --- /dev/null +++ b/class_high_five_1_1_fixed_length_string_type__coll__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_fixed_length_string_type__coll__graph.md5 b/class_high_five_1_1_fixed_length_string_type__coll__graph.md5 new file mode 100644 index 000000000..df40798e3 --- /dev/null +++ b/class_high_five_1_1_fixed_length_string_type__coll__graph.md5 @@ -0,0 +1 @@ +f147c706097a0fa7e26a64ea3c83a348 \ No newline at end of file diff --git a/class_high_five_1_1_fixed_length_string_type__coll__graph.png b/class_high_five_1_1_fixed_length_string_type__coll__graph.png new file mode 100644 index 000000000..876ad5ef4 Binary files /dev/null and b/class_high_five_1_1_fixed_length_string_type__coll__graph.png differ diff --git a/class_high_five_1_1_fixed_length_string_type__inherit__graph.map b/class_high_five_1_1_fixed_length_string_type__inherit__graph.map new file mode 100644 index 000000000..2a8d7e911 --- /dev/null +++ b/class_high_five_1_1_fixed_length_string_type__inherit__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_fixed_length_string_type__inherit__graph.md5 b/class_high_five_1_1_fixed_length_string_type__inherit__graph.md5 new file mode 100644 index 000000000..df40798e3 --- /dev/null +++ b/class_high_five_1_1_fixed_length_string_type__inherit__graph.md5 @@ -0,0 +1 @@ +f147c706097a0fa7e26a64ea3c83a348 \ No newline at end of file diff --git a/class_high_five_1_1_fixed_length_string_type__inherit__graph.png b/class_high_five_1_1_fixed_length_string_type__inherit__graph.png new file mode 100644 index 000000000..876ad5ef4 Binary files /dev/null and b/class_high_five_1_1_fixed_length_string_type__inherit__graph.png differ diff --git a/class_high_five_1_1_group-members.html b/class_high_five_1_1_group-members.html new file mode 100644 index 000000000..f8f59255c --- /dev/null +++ b/class_high_five_1_1_group-members.html @@ -0,0 +1,163 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::Group Member List
+
+
+ +

This is the complete list of members for HighFive::Group, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
_file_objHighFive::PathTraits< Group >protected
_hidHighFive::Objectprotected
createAttribute(const std::string &attribute_name, const DataSpace &space, const DataType &type)HighFive::AnnotateTraits< Group >inline
createAttribute(const std::string &attribute_name, const DataSpace &space)HighFive::AnnotateTraits< Group >inline
createAttribute(const std::string &attribute_name, const T &data)HighFive::AnnotateTraits< Group >inline
createDataSet(const std::string &dataset_name, const DataSpace &space, const DataType &type, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)HighFive::NodeTraits< Group >inline
createDataSet(const std::string &dataset_name, const DataSpace &space, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)HighFive::NodeTraits< Group >inline
createDataSet(const std::string &dataset_name, const T &data, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)HighFive::NodeTraits< Group >inline
createDataSet(const std::string &dataset_name, const deprecated::FixedLenStringArray< N > &data, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)HighFive::NodeTraits< Group >inline
createExternalLink(const std::string &link_name, const std::string &h5_file, const std::string &obj_path, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)HighFive::NodeTraits< Group >inline
createGroup(const std::string &group_name, bool parents=true)HighFive::NodeTraits< Group >inline
createGroup(const std::string &group_name, const GroupCreateProps &createProps, bool parents=true)HighFive::NodeTraits< Group >inline
createHardLink(const std::string &link_name, const T &target_obj, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)HighFive::NodeTraits< Group >inline
createSoftLink(const std::string &linkName, const T &obj)HighFive::NodeTraits< Group >inline
createSoftLink(const std::string &link_name, const std::string &obj_path, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)HighFive::NodeTraits< Group >inline
deleteAttribute(const std::string &attribute_name)HighFive::AnnotateTraits< Group >inline
exist(const std::string &node_name) constHighFive::NodeTraits< Group >inline
FileHighFive::Groupfriend
getAttribute(const std::string &attribute_name) constHighFive::AnnotateTraits< Group >inline
getCreatePropertyList() constHighFive::Groupinline
getDataSet(const std::string &dataset_name, const DataSetAccessProps &accessProps=DataSetAccessProps::Default()) constHighFive::NodeTraits< Group >inline
getDataType(const std::string &type_name, const DataTypeAccessProps &accessProps=DataTypeAccessProps::Default()) constHighFive::NodeTraits< Group >inline
getEstimatedLinkInfo() constHighFive::Groupinline
getFile() const noexceptHighFive::PathTraits< Group >inline
getGroup(const std::string &group_name) constHighFive::NodeTraits< Group >inline
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getLinkType(const std::string &node_name) constHighFive::NodeTraits< Group >inline
getNumberAttributes() constHighFive::AnnotateTraits< Group >inline
getNumberObjects() constHighFive::NodeTraits< Group >inline
getObjectName(size_t index) constHighFive::NodeTraits< Group >inline
getObjectType(const std::string &node_name) constHighFive::NodeTraits< Group >inline
getPath() constHighFive::PathTraits< Group >inline
getType() constHighFive::Objectinline
Group()=defaultHighFive::Group
Group(Object &&o) noexceptHighFive::Groupinline
hasAttribute(const std::string &attr_name) constHighFive::AnnotateTraits< Group >inline
isValid() const noexceptHighFive::Objectinline
listAttributeNames() constHighFive::AnnotateTraits< Group >inline
listObjectNames(IndexType idx_type=IndexType::NAME) constHighFive::NodeTraits< Group >inline
Object(Object &&other) noexceptHighFive::Groupinlineprotected
Object()HighFive::Groupinlineprotected
Object(const Object &other)HighFive::Groupinlineprotected
Object(hid_t)HighFive::Groupinlineexplicitprotected
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const Object &other) const noexceptHighFive::Objectinline
PathTraits()HighFive::PathTraits< Group >inline
ReferenceHighFive::Groupfriend
rename(const std::string &src_path, const std::string &dest_path, bool parents=true) constHighFive::NodeTraits< Group >inline
typeHighFive::Groupstatic
unlink(const std::string &node_name) constHighFive::NodeTraits< Group >inline
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_group.html b/class_high_five_1_1_group.html new file mode 100644 index 000000000..1611b944e --- /dev/null +++ b/class_high_five_1_1_group.html @@ -0,0 +1,599 @@ + + + + + + + +HighFive: HighFive::Group Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::Group Class Reference
+
+
+ +

Represents an hdf5 group. + More...

+ +

#include <H5Group.hpp>

+
+Inheritance diagram for HighFive::Group:
+
+
Inheritance graph
+ + + + + + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::Group:
+
+
Collaboration graph
+ + + + + + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 Group ()=default
 
std::pair< unsigned int, unsigned int > getEstimatedLinkInfo () const
 
GroupCreateProps getCreatePropertyList () const
 Get the list of properties for creation of this group.
 
 Group (Object &&o) noexcept
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
- Public Member Functions inherited from HighFive::NodeTraits< Group >
DataSet createDataSet (const std::string &dataset_name, const DataSpace &space, const DataType &type, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)
 createDataSet Create a new dataset in the current file of datatype type and of size space
 
DataSet createDataSet (const std::string &dataset_name, const DataSpace &space, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)
 createDataSet create a new dataset in the current file with a size specified by space
 
DataSet createDataSet (const std::string &dataset_name, const T &data, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)
 createDataSet create a new dataset in the current file and write to it, inferring the DataSpace from the data.
 
DataSet createDataSet (const std::string &dataset_name, const deprecated::FixedLenStringArray< N > &data, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)
 
DataSet getDataSet (const std::string &dataset_name, const DataSetAccessProps &accessProps=DataSetAccessProps::Default()) const
 get an existing dataset in the current file
 
Group createGroup (const std::string &group_name, bool parents=true)
 create a new group, and eventually intermediate groups
 
Group createGroup (const std::string &group_name, const GroupCreateProps &createProps, bool parents=true)
 create a new group, and eventually intermediate groups
 
Group getGroup (const std::string &group_name) const
 open an existing group with the name group_name
 
DataType getDataType (const std::string &type_name, const DataTypeAccessProps &accessProps=DataTypeAccessProps::Default()) const
 open a commited datatype with the name type_name
 
size_t getNumberObjects () const
 return the number of leaf objects of the node / group
 
std::string getObjectName (size_t index) const
 return the name of the object with the given index
 
bool rename (const std::string &src_path, const std::string &dest_path, bool parents=true) const
 moves an object and its content within an HDF5 file.
 
std::vector< std::string > listObjectNames (IndexType idx_type=IndexType::NAME) const
 list all leaf objects name of the node / group
 
bool exist (const std::string &node_name) const
 check a dataset or group exists in the current node / group
 
void unlink (const std::string &node_name) const
 unlink the given dataset or group
 
LinkType getLinkType (const std::string &node_name) const
 Returns the kind of link of the given name (soft, hard...)
 
ObjectType getObjectType (const std::string &node_name) const
 A shorthand to get the kind of object pointed to (group, dataset, type...)
 
void createSoftLink (const std::string &linkName, const T &obj)
 A shorthand to create softlink to any object which provides getPath The link will be created with default properties along with required parent groups.
 
void createSoftLink (const std::string &link_name, const std::string &obj_path, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)
 Creates softlinks.
 
void createExternalLink (const std::string &link_name, const std::string &h5_file, const std::string &obj_path, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)
 
void createHardLink (const std::string &link_name, const T &target_obj, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)
 Creates hardlinks.
 
- Public Member Functions inherited from HighFive::AnnotateTraits< Group >
Attribute createAttribute (const std::string &attribute_name, const DataSpace &space, const DataType &type)
 create a new attribute with the name attribute_name
 
Attribute createAttribute (const std::string &attribute_name, const DataSpace &space)
 createAttribute create a new attribute on the current dataset with size specified by space
 
Attribute createAttribute (const std::string &attribute_name, const T &data)
 createAttribute create a new attribute on the current dataset and write to it, inferring the DataSpace from data.
 
void deleteAttribute (const std::string &attribute_name)
 deleteAttribute let you delete an attribute by its name.
 
Attribute getAttribute (const std::string &attribute_name) const
 open an existing attribute with the name attribute_name
 
size_t getNumberAttributes () const
 return the number of attributes of the node / group
 
std::vector< std::string > listAttributeNames () const
 list all attribute name of the node / group
 
bool hasAttribute (const std::string &attr_name) const
 checks an attribute exists
 
- Public Member Functions inherited from HighFive::PathTraits< Group >
 PathTraits ()
 
std::string getPath () const
 return the path to the current object
 
FilegetFile () const noexcept
 Return a reference to the File object this object belongs.
 
+ + + +

+Static Public Attributes

static const ObjectType type = ObjectType::Group
 
+ + + + + + + + + + + + + + + + + + +

+Protected Member Functions

 Object (Object &&other) noexcept
 
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
+ + + + + +

+Friends

class File
 
class Reference
 
+ + + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
- Protected Attributes inherited from HighFive::PathTraits< Group >
std::shared_ptr< File_file_obj
 
+

Detailed Description

+

Represents an hdf5 group.

+

Constructor & Destructor Documentation

+ +

◆ Group() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Group::Group ()
+
+default
+
+
Deprecated
Default constructor creates unsafe uninitialized objects
+ +
+
+ +

◆ Group() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Group::Group (Object && o)
+
+inlinenoexcept
+
+ +
+
+

Member Function Documentation

+ +

◆ getCreatePropertyList()

+ +
+
+ + + + + +
+ + + + + + + +
GroupCreateProps HighFive::Group::getCreatePropertyList () const
+
+inline
+
+ +

Get the list of properties for creation of this group.

+ +
+
+ +

◆ getEstimatedLinkInfo()

+ +
+
+ + + + + +
+ + + + + + + +
std::pair< unsigned int, unsigned int > HighFive::Group::getEstimatedLinkInfo () const
+
+inline
+
+ +
+
+ +

◆ Object() [1/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object ()
+
+inlineprotected
+
+ +
+
+ +

◆ Object() [2/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object (const Object & other)
+
+inlineprotected
+
+ +
+
+ +

◆ Object() [3/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object (hid_t hid)
+
+inlineexplicitprotected
+
+ +
+
+ +

◆ Object() [4/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object (Object && other)
+
+inlineprotectednoexcept
+
+ +
+
+

Friends And Related Symbol Documentation

+ +

◆ File

+ +
+
+ + + + + +
+ + + + +
friend class File
+
+friend
+
+ +
+
+ +

◆ Reference

+ +
+
+ + + + + +
+ + + + +
friend class Reference
+
+friend
+
+ +
+
+

Member Data Documentation

+ +

◆ type

+ +
+
+ + + + + +
+ + + + +
const ObjectType HighFive::Group::type = ObjectType::Group
+
+static
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/class_high_five_1_1_group.js b/class_high_five_1_1_group.js new file mode 100644 index 000000000..954b996dc --- /dev/null +++ b/class_high_five_1_1_group.js @@ -0,0 +1,13 @@ +var class_high_five_1_1_group = +[ + [ "Group", "class_high_five_1_1_group.html#a64f8b882c1f7844570be07bb7b012f04", null ], + [ "Group", "class_high_five_1_1_group.html#aa5a251bd5db04d9f05b8c1df4c989b18", null ], + [ "getCreatePropertyList", "class_high_five_1_1_group.html#a74f31ef804cbebe13b36db113ef5f235", null ], + [ "getEstimatedLinkInfo", "class_high_five_1_1_group.html#aeca9409bc3a21e9934728293bc24d960", null ], + [ "Object", "class_high_five_1_1_group.html#a6bae41d04f273d04d2914406ab79da32", null ], + [ "Object", "class_high_five_1_1_group.html#ab87ee7d5e2beee6a50d60dec20d3dfe5", null ], + [ "Object", "class_high_five_1_1_group.html#a9fe361bc0bd9662c1fd96a4a6ec1133a", null ], + [ "Object", "class_high_five_1_1_group.html#aa42052fa5ec4ee691f6a7dd6467199f2", null ], + [ "File", "class_high_five_1_1_group.html#a68d15876ad188b7628261b12d0eac8aa", null ], + [ "Reference", "class_high_five_1_1_group.html#a75dfa92607f3d314070ecf242e028014", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_group__coll__graph.map b/class_high_five_1_1_group__coll__graph.map new file mode 100644 index 000000000..2acceac73 --- /dev/null +++ b/class_high_five_1_1_group__coll__graph.map @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/class_high_five_1_1_group__coll__graph.md5 b/class_high_five_1_1_group__coll__graph.md5 new file mode 100644 index 000000000..bd89e8ce6 --- /dev/null +++ b/class_high_five_1_1_group__coll__graph.md5 @@ -0,0 +1 @@ +e387ecdfaad17d6328a1c1aff9a6d4de \ No newline at end of file diff --git a/class_high_five_1_1_group__coll__graph.png b/class_high_five_1_1_group__coll__graph.png new file mode 100644 index 000000000..456a266b2 Binary files /dev/null and b/class_high_five_1_1_group__coll__graph.png differ diff --git a/class_high_five_1_1_group__inherit__graph.map b/class_high_five_1_1_group__inherit__graph.map new file mode 100644 index 000000000..2acceac73 --- /dev/null +++ b/class_high_five_1_1_group__inherit__graph.map @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/class_high_five_1_1_group__inherit__graph.md5 b/class_high_five_1_1_group__inherit__graph.md5 new file mode 100644 index 000000000..bd89e8ce6 --- /dev/null +++ b/class_high_five_1_1_group__inherit__graph.md5 @@ -0,0 +1 @@ +e387ecdfaad17d6328a1c1aff9a6d4de \ No newline at end of file diff --git a/class_high_five_1_1_group__inherit__graph.png b/class_high_five_1_1_group__inherit__graph.png new file mode 100644 index 000000000..456a266b2 Binary files /dev/null and b/class_high_five_1_1_group__inherit__graph.png differ diff --git a/class_high_five_1_1_group_exception-members.html b/class_high_five_1_1_group_exception-members.html new file mode 100644 index 000000000..d683309ef --- /dev/null +++ b/class_high_five_1_1_group_exception-members.html @@ -0,0 +1,123 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::GroupException Member List
+
+
+ +

This is the complete list of members for HighFive::GroupException, including all inherited members.

+ + + + + + + + + + + + + +
_err_majorHighFive::Exceptionprotected
_err_minorHighFive::Exceptionprotected
_errmsgHighFive::Exceptionprotected
_nextHighFive::Exceptionprotected
Exception(const std::string &err_msg)HighFive::Exceptioninline
getErrMajor() constHighFive::Exceptioninline
getErrMinor() constHighFive::Exceptioninline
GroupException(const std::string &err_msg)HighFive::GroupExceptioninline
nextException() constHighFive::Exceptioninline
setErrorMsg(const std::string &errmsg)HighFive::Exceptioninlinevirtual
what() const overrideHighFive::Exceptioninline
~Exception()HighFive::Exceptioninlinevirtual
+
+ + + + diff --git a/class_high_five_1_1_group_exception.html b/class_high_five_1_1_group_exception.html new file mode 100644 index 000000000..63f166a1c --- /dev/null +++ b/class_high_five_1_1_group_exception.html @@ -0,0 +1,212 @@ + + + + + + + +HighFive: HighFive::GroupException Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::GroupException Class Reference
+
+
+ +

Exception specific to HighFive Group interface. + More...

+ +

#include <H5Exception.hpp>

+
+Inheritance diagram for HighFive::GroupException:
+
+
Inheritance graph
+ + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::GroupException:
+
+
Collaboration graph
+ + + + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 GroupException (const std::string &err_msg)
 
- Public Member Functions inherited from HighFive::Exception
 Exception (const std::string &err_msg)
 
virtual ~Exception () throw ()
 
const char * what () const override throw ()
 get the current exception error message
 
virtual void setErrorMsg (const std::string &errmsg)
 define the error message
 
ExceptionnextException () const
 nextException
 
hid_t getErrMajor () const
 HDF5 library error mapper.
 
hid_t getErrMinor () const
 HDF5 library error mapper.
 
+ + + + + + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from HighFive::Exception
std::string _errmsg
 
std::shared_ptr< Exception_next
 
hid_t _err_major
 
hid_t _err_minor
 
+

Detailed Description

+

Exception specific to HighFive Group interface.

+

Constructor & Destructor Documentation

+ +

◆ GroupException()

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::GroupException::GroupException (const std::string & err_msg)
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/class_high_five_1_1_group_exception.js b/class_high_five_1_1_group_exception.js new file mode 100644 index 000000000..dd7981d1a --- /dev/null +++ b/class_high_five_1_1_group_exception.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_group_exception = +[ + [ "GroupException", "class_high_five_1_1_group_exception.html#a3230fc495c7c0bbcab847dc12fbf09df", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_group_exception__coll__graph.map b/class_high_five_1_1_group_exception__coll__graph.map new file mode 100644 index 000000000..4ecb75c57 --- /dev/null +++ b/class_high_five_1_1_group_exception__coll__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_group_exception__coll__graph.md5 b/class_high_five_1_1_group_exception__coll__graph.md5 new file mode 100644 index 000000000..af1eb51ca --- /dev/null +++ b/class_high_five_1_1_group_exception__coll__graph.md5 @@ -0,0 +1 @@ +8476a8438998b4ff4e3a88aa741ad25d \ No newline at end of file diff --git a/class_high_five_1_1_group_exception__coll__graph.png b/class_high_five_1_1_group_exception__coll__graph.png new file mode 100644 index 000000000..4ae313971 Binary files /dev/null and b/class_high_five_1_1_group_exception__coll__graph.png differ diff --git a/class_high_five_1_1_group_exception__inherit__graph.map b/class_high_five_1_1_group_exception__inherit__graph.map new file mode 100644 index 000000000..b2ef7bff3 --- /dev/null +++ b/class_high_five_1_1_group_exception__inherit__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_group_exception__inherit__graph.md5 b/class_high_five_1_1_group_exception__inherit__graph.md5 new file mode 100644 index 000000000..fe5e36385 --- /dev/null +++ b/class_high_five_1_1_group_exception__inherit__graph.md5 @@ -0,0 +1 @@ +a6a236d9dab05a85a2a8a2dfa208fc30 \ No newline at end of file diff --git a/class_high_five_1_1_group_exception__inherit__graph.png b/class_high_five_1_1_group_exception__inherit__graph.png new file mode 100644 index 000000000..dab5b80ea Binary files /dev/null and b/class_high_five_1_1_group_exception__inherit__graph.png differ diff --git a/class_high_five_1_1_hyper_slab-members.html b/class_high_five_1_1_hyper_slab-members.html new file mode 100644 index 000000000..fd3893b4a --- /dev/null +++ b/class_high_five_1_1_hyper_slab-members.html @@ -0,0 +1,122 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::HyperSlab Member List
+
+
+ +

This is the complete list of members for HighFive::HyperSlab, including all inherited members.

+ + + + + + + + + + + + +
apply(const DataSpace &space_) constHighFive::HyperSlabinline
HyperSlab()HighFive::HyperSlabinline
HyperSlab(const RegularHyperSlab &sel)HighFive::HyperSlabinlineexplicit
notA(const RegularHyperSlab &sel)HighFive::HyperSlabinline
notB(const RegularHyperSlab &sel)HighFive::HyperSlabinline
operator&(const RegularHyperSlab &sel) constHighFive::HyperSlabinline
operator&=(const RegularHyperSlab &sel)HighFive::HyperSlabinline
operator^(const RegularHyperSlab &sel) constHighFive::HyperSlabinline
operator^=(const RegularHyperSlab &sel)HighFive::HyperSlabinline
operator|(const RegularHyperSlab &sel) constHighFive::HyperSlabinline
operator|=(const RegularHyperSlab &sel)HighFive::HyperSlabinline
+
+ + + + diff --git a/class_high_five_1_1_hyper_slab.html b/class_high_five_1_1_hyper_slab.html new file mode 100644 index 000000000..14b3949bf --- /dev/null +++ b/class_high_five_1_1_hyper_slab.html @@ -0,0 +1,420 @@ + + + + + + + +HighFive: HighFive::HyperSlab Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::HyperSlab Class Reference
+
+
+ +

#include <H5Slice_traits.hpp>

+ + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 HyperSlab ()
 
 HyperSlab (const RegularHyperSlab &sel)
 
HyperSlab operator| (const RegularHyperSlab &sel) const
 
HyperSlaboperator|= (const RegularHyperSlab &sel)
 
HyperSlab operator& (const RegularHyperSlab &sel) const
 
HyperSlaboperator&= (const RegularHyperSlab &sel)
 
HyperSlab operator^ (const RegularHyperSlab &sel) const
 
HyperSlaboperator^= (const RegularHyperSlab &sel)
 
HyperSlabnotA (const RegularHyperSlab &sel)
 
HyperSlabnotB (const RegularHyperSlab &sel)
 
DataSpace apply (const DataSpace &space_) const
 
+

Constructor & Destructor Documentation

+ +

◆ HyperSlab() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::HyperSlab::HyperSlab ()
+
+inline
+
+ +
+
+ +

◆ HyperSlab() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::HyperSlab::HyperSlab (const RegularHyperSlab & sel)
+
+inlineexplicit
+
+ +
+
+

Member Function Documentation

+ +

◆ apply()

+ +
+
+ + + + + +
+ + + + + + + +
DataSpace HighFive::HyperSlab::apply (const DataSpace & space_) const
+
+inline
+
+ +
+
+ +

◆ notA()

+ +
+
+ + + + + +
+ + + + + + + +
HyperSlab & HighFive::HyperSlab::notA (const RegularHyperSlab & sel)
+
+inline
+
+ +
+
+ +

◆ notB()

+ +
+
+ + + + + +
+ + + + + + + +
HyperSlab & HighFive::HyperSlab::notB (const RegularHyperSlab & sel)
+
+inline
+
+ +
+
+ +

◆ operator&()

+ +
+
+ + + + + +
+ + + + + + + +
HyperSlab HighFive::HyperSlab::operator& (const RegularHyperSlab & sel) const
+
+inline
+
+ +
+
+ +

◆ operator&=()

+ +
+
+ + + + + +
+ + + + + + + +
HyperSlab & HighFive::HyperSlab::operator&= (const RegularHyperSlab & sel)
+
+inline
+
+ +
+
+ +

◆ operator^()

+ +
+
+ + + + + +
+ + + + + + + +
HyperSlab HighFive::HyperSlab::operator^ (const RegularHyperSlab & sel) const
+
+inline
+
+ +
+
+ +

◆ operator^=()

+ +
+
+ + + + + +
+ + + + + + + +
HyperSlab & HighFive::HyperSlab::operator^= (const RegularHyperSlab & sel)
+
+inline
+
+ +
+
+ +

◆ operator|()

+ +
+
+ + + + + +
+ + + + + + + +
HyperSlab HighFive::HyperSlab::operator| (const RegularHyperSlab & sel) const
+
+inline
+
+ +
+
+ +

◆ operator|=()

+ +
+
+ + + + + +
+ + + + + + + +
HyperSlab & HighFive::HyperSlab::operator|= (const RegularHyperSlab & sel)
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/class_high_five_1_1_hyper_slab.js b/class_high_five_1_1_hyper_slab.js new file mode 100644 index 000000000..a150d77e1 --- /dev/null +++ b/class_high_five_1_1_hyper_slab.js @@ -0,0 +1,14 @@ +var class_high_five_1_1_hyper_slab = +[ + [ "HyperSlab", "class_high_five_1_1_hyper_slab.html#a906f51584d65e1b6fc777d4bc2022553", null ], + [ "HyperSlab", "class_high_five_1_1_hyper_slab.html#adf8bf61c7a39ea30b73f0409c034e4aa", null ], + [ "apply", "class_high_five_1_1_hyper_slab.html#afecb4503d3ce92815710f03b3d0a85b8", null ], + [ "notA", "class_high_five_1_1_hyper_slab.html#a24205d10982c3affd39635caa090bf39", null ], + [ "notB", "class_high_five_1_1_hyper_slab.html#a429775b972d7d5eda1b4f6b63da982c8", null ], + [ "operator&", "class_high_five_1_1_hyper_slab.html#a4fbf1287c34074ca11b3da08c5d0e287", null ], + [ "operator&=", "class_high_five_1_1_hyper_slab.html#a8be464e1993e66453881fe9adb1a0d72", null ], + [ "operator^", "class_high_five_1_1_hyper_slab.html#a65b63a6b8ee96c0b3db1448f133d4208", null ], + [ "operator^=", "class_high_five_1_1_hyper_slab.html#ac18231b7d002a5497626d3cfe7f818e3", null ], + [ "operator|", "class_high_five_1_1_hyper_slab.html#a7fc861f1f4042fae034b358e63e8db71", null ], + [ "operator|=", "class_high_five_1_1_hyper_slab.html#afb1196fb8cfeaff643d4160046092ab6", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_link_creation_order-members.html b/class_high_five_1_1_link_creation_order-members.html new file mode 100644 index 000000000..6c149d50a --- /dev/null +++ b/class_high_five_1_1_link_creation_order-members.html @@ -0,0 +1,116 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::LinkCreationOrder Member List
+
+
+ +

This is the complete list of members for HighFive::LinkCreationOrder, including all inherited members.

+ + + + + + +
fromPropertyList(hid_t hid)HighFive::LinkCreationOrderinlineprotected
getFlags() constHighFive::LinkCreationOrderinline
LinkCreationOrder(unsigned flags)HighFive::LinkCreationOrderinlineexplicit
LinkCreationOrder(const FileCreateProps &fcpl)HighFive::LinkCreationOrderinlineexplicit
LinkCreationOrder(const GroupCreateProps &gcpl)HighFive::LinkCreationOrderexplicit
+
+ + + + diff --git a/class_high_five_1_1_link_creation_order.html b/class_high_five_1_1_link_creation_order.html new file mode 100644 index 000000000..51b5c7911 --- /dev/null +++ b/class_high_five_1_1_link_creation_order.html @@ -0,0 +1,298 @@ + + + + + + + +HighFive: HighFive::LinkCreationOrder Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::LinkCreationOrder Class Reference
+
+
+ +

Track and index creation order time. + More...

+ +

#include <H5PropertyList.hpp>

+
+Inheritance diagram for HighFive::LinkCreationOrder:
+
+
Inheritance graph
+ + + + + +
[legend]
+
+Collaboration diagram for HighFive::LinkCreationOrder:
+
+
Collaboration graph
+ + + + + +
[legend]
+ + + + + + + + + + + +

+Public Member Functions

 LinkCreationOrder (unsigned flags)
 Create the property.
 
 LinkCreationOrder (const FileCreateProps &fcpl)
 
 LinkCreationOrder (const GroupCreateProps &gcpl)
 
unsigned getFlags () const
 
+ + + +

+Protected Member Functions

void fromPropertyList (hid_t hid)
 
+

Detailed Description

+

Track and index creation order time.

+

Let user retrieve objects by creation order time instead of name.

+

Constructor & Destructor Documentation

+ +

◆ LinkCreationOrder() [1/3]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::LinkCreationOrder::LinkCreationOrder (unsigned flags)
+
+inlineexplicit
+
+ +

Create the property.

+
Parameters
+ + +
flagsShould be a composition of HighFive::CreationOrder.
+
+
+ +
+
+ +

◆ LinkCreationOrder() [2/3]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::LinkCreationOrder::LinkCreationOrder (const FileCreateProps & fcpl)
+
+inlineexplicit
+
+ +
+
+ +

◆ LinkCreationOrder() [3/3]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::LinkCreationOrder::LinkCreationOrder (const GroupCreateProps & gcpl)
+
+explicit
+
+ +
+
+

Member Function Documentation

+ +

◆ fromPropertyList()

+ +
+
+ + + + + +
+ + + + + + + +
void HighFive::LinkCreationOrder::fromPropertyList (hid_t hid)
+
+inlineprotected
+
+ +
+
+ +

◆ getFlags()

+ +
+
+ + + + + +
+ + + + + + + +
unsigned HighFive::LinkCreationOrder::getFlags () const
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_link_creation_order.js b/class_high_five_1_1_link_creation_order.js new file mode 100644 index 000000000..8243aad47 --- /dev/null +++ b/class_high_five_1_1_link_creation_order.js @@ -0,0 +1,8 @@ +var class_high_five_1_1_link_creation_order = +[ + [ "LinkCreationOrder", "class_high_five_1_1_link_creation_order.html#a5a0c8614e72358c1723153a06d2c11e6", null ], + [ "LinkCreationOrder", "class_high_five_1_1_link_creation_order.html#aff78af3c9313f37f86bb9aa172440377", null ], + [ "LinkCreationOrder", "class_high_five_1_1_link_creation_order.html#a1048f06282af8a1a5441e359fc5944f3", null ], + [ "fromPropertyList", "class_high_five_1_1_link_creation_order.html#a6bcc5d01c7a4aa1630b192aa62ff3dd9", null ], + [ "getFlags", "class_high_five_1_1_link_creation_order.html#ae4f83f749697446de9d56e593bc78a1a", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_link_creation_order__coll__graph.map b/class_high_five_1_1_link_creation_order__coll__graph.map new file mode 100644 index 000000000..d10088acf --- /dev/null +++ b/class_high_five_1_1_link_creation_order__coll__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_link_creation_order__coll__graph.md5 b/class_high_five_1_1_link_creation_order__coll__graph.md5 new file mode 100644 index 000000000..edeee5136 --- /dev/null +++ b/class_high_five_1_1_link_creation_order__coll__graph.md5 @@ -0,0 +1 @@ +ce37f98e383a609115802afcadcb6932 \ No newline at end of file diff --git a/class_high_five_1_1_link_creation_order__coll__graph.png b/class_high_five_1_1_link_creation_order__coll__graph.png new file mode 100644 index 000000000..2b3b8824f Binary files /dev/null and b/class_high_five_1_1_link_creation_order__coll__graph.png differ diff --git a/class_high_five_1_1_link_creation_order__inherit__graph.map b/class_high_five_1_1_link_creation_order__inherit__graph.map new file mode 100644 index 000000000..d10088acf --- /dev/null +++ b/class_high_five_1_1_link_creation_order__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_link_creation_order__inherit__graph.md5 b/class_high_five_1_1_link_creation_order__inherit__graph.md5 new file mode 100644 index 000000000..edeee5136 --- /dev/null +++ b/class_high_five_1_1_link_creation_order__inherit__graph.md5 @@ -0,0 +1 @@ +ce37f98e383a609115802afcadcb6932 \ No newline at end of file diff --git a/class_high_five_1_1_link_creation_order__inherit__graph.png b/class_high_five_1_1_link_creation_order__inherit__graph.png new file mode 100644 index 000000000..2b3b8824f Binary files /dev/null and b/class_high_five_1_1_link_creation_order__inherit__graph.png differ diff --git a/class_high_five_1_1_logger-members.html b/class_high_five_1_1_logger-members.html new file mode 100644 index 000000000..75a8e9325 --- /dev/null +++ b/class_high_five_1_1_logger-members.html @@ -0,0 +1,120 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::Logger Member List
+
+
+ +

This is the complete list of members for HighFive::Logger, including all inherited members.

+ + + + + + + + + + +
callback_type typedefHighFive::Logger
log(LogSeverity severity, const std::string &message, const std::string &file, int line)HighFive::Loggerinline
Logger()=deleteHighFive::Logger
Logger(const Logger &)=deleteHighFive::Logger
Logger(Logger &&)=deleteHighFive::Logger
Logger(callback_type cb)HighFive::Loggerinlineexplicit
operator=(const Logger &)=deleteHighFive::Logger
operator=(Logger &&)=deleteHighFive::Logger
set_logging_callback(callback_type cb)HighFive::Loggerinline
+
+ + + + diff --git a/class_high_five_1_1_logger.html b/class_high_five_1_1_logger.html new file mode 100644 index 000000000..4b2c5ddfb --- /dev/null +++ b/class_high_five_1_1_logger.html @@ -0,0 +1,390 @@ + + + + + + + +HighFive: HighFive::Logger Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::Logger Class Reference
+
+
+ +

A logger with supporting basic functionality. + More...

+ +

#include <H5Utility.hpp>

+ + + + +

+Public Types

using callback_type
 
+ + + + + + + + + + + + + + + + + +

+Public Member Functions

 Logger ()=delete
 
 Logger (const Logger &)=delete
 
 Logger (Logger &&)=delete
 
 Logger (callback_type cb)
 
Loggeroperator= (const Logger &)=delete
 
Loggeroperator= (Logger &&)=delete
 
void log (LogSeverity severity, const std::string &message, const std::string &file, int line)
 
void set_logging_callback (callback_type cb)
 
+

Detailed Description

+

A logger with supporting basic functionality.

+

This logger delegates the logging task to a callback. This level of indirection enables using the default Python logger from C++; or integrating HighFive into some custom logging solution.

+

Using this class directly to log is not intended. Rather you should use

    +
  • HIGHFIVE_LOG_DEBUG{,_IF}
  • +
  • HIGHFIVE_LOG_INFO{,_IF}
  • +
  • HIGHFIVE_LOG_WARNING{,_IF}
  • +
  • HIGHFIVE_LOG_ERROR{,_IF}
  • +
+

This is intended to used as a singleton, via get_global_logger().

+

Member Typedef Documentation

+ +

◆ callback_type

+ +
+
+Initial value:
+
std::function<void(LogSeverity, const std::string&, const std::string&, int)>
+
LogSeverity
Definition H5Utility.hpp:53
+
+
+
+

Constructor & Destructor Documentation

+ +

◆ Logger() [1/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Logger::Logger ()
+
+delete
+
+ +
+
+ +

◆ Logger() [2/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Logger::Logger (const Logger & )
+
+delete
+
+ +
+
+ +

◆ Logger() [3/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Logger::Logger (Logger && )
+
+delete
+
+ +
+
+ +

◆ Logger() [4/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Logger::Logger (callback_type cb)
+
+inlineexplicit
+
+ +
+
+

Member Function Documentation

+ +

◆ log()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
void HighFive::Logger::log (LogSeverity severity,
const std::string & message,
const std::string & file,
int line )
+
+inline
+
+ +
+
+ +

◆ operator=() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
Logger & HighFive::Logger::operator= (const Logger & )
+
+delete
+
+ +
+
+ +

◆ operator=() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
Logger & HighFive::Logger::operator= (Logger && )
+
+delete
+
+ +
+
+ +

◆ set_logging_callback()

+ +
+
+ + + + + +
+ + + + + + + +
void HighFive::Logger::set_logging_callback (callback_type cb)
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/class_high_five_1_1_logger.js b/class_high_five_1_1_logger.js new file mode 100644 index 000000000..41258dbad --- /dev/null +++ b/class_high_five_1_1_logger.js @@ -0,0 +1,12 @@ +var class_high_five_1_1_logger = +[ + [ "callback_type", "class_high_five_1_1_logger.html#a224d32b77bfb713e190d2699aaee4527", null ], + [ "Logger", "class_high_five_1_1_logger.html#ac6a56a0dea78afb911374249840cc01a", null ], + [ "Logger", "class_high_five_1_1_logger.html#a202182c21665e372d6e4585484fccae5", null ], + [ "Logger", "class_high_five_1_1_logger.html#aac5d99393c23b4f206a743864e80f7c8", null ], + [ "Logger", "class_high_five_1_1_logger.html#ac5aff73990e80aab9f83c798462115c3", null ], + [ "log", "class_high_five_1_1_logger.html#ae9138a12937186d1ebea1900a488b13c", null ], + [ "operator=", "class_high_five_1_1_logger.html#a3e8a6cd1370289fe31e268eeda19d271", null ], + [ "operator=", "class_high_five_1_1_logger.html#ad1fea19d9a24a52b09c3bdaf4e8a4288", null ], + [ "set_logging_callback", "class_high_five_1_1_logger.html#a9b42228f1091409f5fc4b09a25fed4fc", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_m_p_i_o_file_access-members.html b/class_high_five_1_1_m_p_i_o_file_access-members.html new file mode 100644 index 000000000..dd0da69b4 --- /dev/null +++ b/class_high_five_1_1_m_p_i_o_file_access-members.html @@ -0,0 +1,112 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::MPIOFileAccess Member List
+
+
+ +

This is the complete list of members for HighFive::MPIOFileAccess, including all inherited members.

+ + +
MPIOFileAccess(MPI_Comm comm, MPI_Info info)HighFive::MPIOFileAccessinline
+
+ + + + diff --git a/class_high_five_1_1_m_p_i_o_file_access.html b/class_high_five_1_1_m_p_i_o_file_access.html new file mode 100644 index 000000000..8855b4664 --- /dev/null +++ b/class_high_five_1_1_m_p_i_o_file_access.html @@ -0,0 +1,160 @@ + + + + + + + +HighFive: HighFive::MPIOFileAccess Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::MPIOFileAccess Class Reference
+
+
+ +

Configure MPI access for the file. + More...

+ +

#include <H5PropertyList.hpp>

+ + + + +

+Public Member Functions

 MPIOFileAccess (MPI_Comm comm, MPI_Info info)
 
+

Detailed Description

+

Configure MPI access for the file.

+

All further modifications to the structure of the file will have to be done with collective operations

+

Constructor & Destructor Documentation

+ +

◆ MPIOFileAccess()

+ +
+
+ + + + + +
+ + + + + + + + + + + +
HighFive::MPIOFileAccess::MPIOFileAccess (MPI_Comm comm,
MPI_Info info )
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_m_p_i_o_file_access.js b/class_high_five_1_1_m_p_i_o_file_access.js new file mode 100644 index 000000000..fcd1fb74a --- /dev/null +++ b/class_high_five_1_1_m_p_i_o_file_access.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_m_p_i_o_file_access = +[ + [ "MPIOFileAccess", "class_high_five_1_1_m_p_i_o_file_access.html#a45ed3e2138f4fcf8292a8f5bb01434c8", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_m_p_i_o_file_driver-members.html b/class_high_five_1_1_m_p_i_o_file_driver-members.html new file mode 100644 index 000000000..ff2fae178 --- /dev/null +++ b/class_high_five_1_1_m_p_i_o_file_driver-members.html @@ -0,0 +1,129 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::MPIOFileDriver Member List
+
+
+ +

This is the complete list of members for HighFive::MPIOFileDriver, including all inherited members.

+ + + + + + + + + + + + + + + + + + + +
_hidHighFive::Objectprotected
_initializeIfNeeded()HighFive::PropertyList< T >inlineprotected
add(const P &property)HighFive::PropertyList< T >inline
Default() noexceptHighFive::PropertyList< T >inlinestatic
Empty()HighFive::PropertyList< T >inlinestatic
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getType() const noexceptHighFive::PropertyList< T >inline
isValid() const noexceptHighFive::Objectinline
MPIOFileDriver(MPI_Comm mpi_comm, MPI_Info mpi_info)HighFive::MPIOFileDriverinline
Object(Object &&other) noexceptHighFive::Objectinline
Object()HighFive::Objectinlineprotected
Object(const Object &other)HighFive::Objectinlineprotected
Object(hid_t)HighFive::Objectinlineexplicitprotected
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const Object &other) const noexceptHighFive::Objectinline
PropertyListBase() noexceptHighFive::PropertyListBaseinline
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_m_p_i_o_file_driver.html b/class_high_five_1_1_m_p_i_o_file_driver.html new file mode 100644 index 000000000..996fb346d --- /dev/null +++ b/class_high_five_1_1_m_p_i_o_file_driver.html @@ -0,0 +1,244 @@ + + + + + + + +HighFive: HighFive::MPIOFileDriver Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::MPIOFileDriver Class Reference
+
+
+ +

MPIIO Driver for Parallel HDF5. + More...

+ +

#include <H5FileDriver.hpp>

+
+Inheritance diagram for HighFive::MPIOFileDriver:
+
+
Inheritance graph
+ + + + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::MPIOFileDriver:
+
+
Collaboration graph
+ + + + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 MPIOFileDriver (MPI_Comm mpi_comm, MPI_Info mpi_info)
 
- Public Member Functions inherited from HighFive::PropertyList< T >
constexpr PropertyType getType () const noexcept
 return the type of this PropertyList
 
template<PropertyInterface P>
void add (const P &property)
 
- Public Member Functions inherited from HighFive::PropertyListBase
 PropertyListBase () noexcept
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
+ + + + + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Static Public Member Functions inherited from HighFive::PropertyList< T >
static const PropertyList< T > & Default () noexcept
 Return the Default property type object.
 
static PropertyList< T > Empty ()
 
- Static Public Member Functions inherited from HighFive::PropertyListBase
static const PropertyListBaseDefault () noexcept
 
- Protected Member Functions inherited from HighFive::PropertyList< T >
void _initializeIfNeeded ()
 
- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
+

Detailed Description

+

MPIIO Driver for Parallel HDF5.

+
Deprecated
Add MPIOFileAccess directly to FileAccessProps
+

Constructor & Destructor Documentation

+ +

◆ MPIOFileDriver()

+ +
+
+ + + + + +
+ + + + + + + + + + + +
HighFive::MPIOFileDriver::MPIOFileDriver (MPI_Comm mpi_comm,
MPI_Info mpi_info )
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_m_p_i_o_file_driver.js b/class_high_five_1_1_m_p_i_o_file_driver.js new file mode 100644 index 000000000..7973c8a7b --- /dev/null +++ b/class_high_five_1_1_m_p_i_o_file_driver.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_m_p_i_o_file_driver = +[ + [ "MPIOFileDriver", "class_high_five_1_1_m_p_i_o_file_driver.html#a4659563e3c44c0361429df270b03e778", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_m_p_i_o_file_driver__coll__graph.map b/class_high_five_1_1_m_p_i_o_file_driver__coll__graph.map new file mode 100644 index 000000000..dbff0b924 --- /dev/null +++ b/class_high_five_1_1_m_p_i_o_file_driver__coll__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_m_p_i_o_file_driver__coll__graph.md5 b/class_high_five_1_1_m_p_i_o_file_driver__coll__graph.md5 new file mode 100644 index 000000000..067bb7039 --- /dev/null +++ b/class_high_five_1_1_m_p_i_o_file_driver__coll__graph.md5 @@ -0,0 +1 @@ +eca2b40405e6181333bb3a05af190c33 \ No newline at end of file diff --git a/class_high_five_1_1_m_p_i_o_file_driver__coll__graph.png b/class_high_five_1_1_m_p_i_o_file_driver__coll__graph.png new file mode 100644 index 000000000..d01fefa0d Binary files /dev/null and b/class_high_five_1_1_m_p_i_o_file_driver__coll__graph.png differ diff --git a/class_high_five_1_1_m_p_i_o_file_driver__inherit__graph.map b/class_high_five_1_1_m_p_i_o_file_driver__inherit__graph.map new file mode 100644 index 000000000..dbff0b924 --- /dev/null +++ b/class_high_five_1_1_m_p_i_o_file_driver__inherit__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_m_p_i_o_file_driver__inherit__graph.md5 b/class_high_five_1_1_m_p_i_o_file_driver__inherit__graph.md5 new file mode 100644 index 000000000..067bb7039 --- /dev/null +++ b/class_high_five_1_1_m_p_i_o_file_driver__inherit__graph.md5 @@ -0,0 +1 @@ +eca2b40405e6181333bb3a05af190c33 \ No newline at end of file diff --git a/class_high_five_1_1_m_p_i_o_file_driver__inherit__graph.png b/class_high_five_1_1_m_p_i_o_file_driver__inherit__graph.png new file mode 100644 index 000000000..d01fefa0d Binary files /dev/null and b/class_high_five_1_1_m_p_i_o_file_driver__inherit__graph.png differ diff --git a/class_high_five_1_1_metadata_block_size-members.html b/class_high_five_1_1_metadata_block_size-members.html new file mode 100644 index 000000000..2b84688b0 --- /dev/null +++ b/class_high_five_1_1_metadata_block_size-members.html @@ -0,0 +1,114 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::MetadataBlockSize Member List
+
+
+ +

This is the complete list of members for HighFive::MetadataBlockSize, including all inherited members.

+ + + + +
getSize() constHighFive::MetadataBlockSizeinline
MetadataBlockSize(hsize_t size)HighFive::MetadataBlockSizeinlineexplicit
MetadataBlockSize(const FileAccessProps &fapl)HighFive::MetadataBlockSizeinlineexplicit
+
+ + + + diff --git a/class_high_five_1_1_metadata_block_size.html b/class_high_five_1_1_metadata_block_size.html new file mode 100644 index 000000000..5fc86febe --- /dev/null +++ b/class_high_five_1_1_metadata_block_size.html @@ -0,0 +1,216 @@ + + + + + + + +HighFive: HighFive::MetadataBlockSize Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::MetadataBlockSize Class Reference
+
+
+ +

Configure the metadata block size to use writing to files. + More...

+ +

#include <H5PropertyList.hpp>

+ + + + + + + + +

+Public Member Functions

 MetadataBlockSize (hsize_t size)
 
 MetadataBlockSize (const FileAccessProps &fapl)
 
hsize_t getSize () const
 
+

Detailed Description

+

Configure the metadata block size to use writing to files.

+
Parameters
+ + +
sizeMetadata block size in bytes
+
+
+

Constructor & Destructor Documentation

+ +

◆ MetadataBlockSize() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::MetadataBlockSize::MetadataBlockSize (hsize_t size)
+
+inlineexplicit
+
+ +
+
+ +

◆ MetadataBlockSize() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::MetadataBlockSize::MetadataBlockSize (const FileAccessProps & fapl)
+
+inlineexplicit
+
+ +
+
+

Member Function Documentation

+ +

◆ getSize()

+ +
+
+ + + + + +
+ + + + + + + +
hsize_t HighFive::MetadataBlockSize::getSize () const
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_metadata_block_size.js b/class_high_five_1_1_metadata_block_size.js new file mode 100644 index 000000000..00fc7162d --- /dev/null +++ b/class_high_five_1_1_metadata_block_size.js @@ -0,0 +1,6 @@ +var class_high_five_1_1_metadata_block_size = +[ + [ "MetadataBlockSize", "class_high_five_1_1_metadata_block_size.html#a02efd5d5aa5311ecc74f44c4b8b82d78", null ], + [ "MetadataBlockSize", "class_high_five_1_1_metadata_block_size.html#a23661a48122522263bd7f3ec3f245101", null ], + [ "getSize", "class_high_five_1_1_metadata_block_size.html#aee2a49ebdc426f1794c154e3d1b2f871", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_mpio_no_collective_cause-members.html b/class_high_five_1_1_mpio_no_collective_cause-members.html new file mode 100644 index 000000000..fd29ccd0e --- /dev/null +++ b/class_high_five_1_1_mpio_no_collective_cause-members.html @@ -0,0 +1,116 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::MpioNoCollectiveCause Member List
+
+
+ +

This is the complete list of members for HighFive::MpioNoCollectiveCause, including all inherited members.

+ + + + + + +
getCause() constHighFive::MpioNoCollectiveCauseinline
getGlobalCause() constHighFive::MpioNoCollectiveCauseinline
getLocalCause() constHighFive::MpioNoCollectiveCauseinline
MpioNoCollectiveCause(const DataTransferProps &dxpl)HighFive::MpioNoCollectiveCauseinlineexplicit
wasCollective() constHighFive::MpioNoCollectiveCauseinline
+
+ + + + diff --git a/class_high_five_1_1_mpio_no_collective_cause.html b/class_high_five_1_1_mpio_no_collective_cause.html new file mode 100644 index 000000000..aa04d14c7 --- /dev/null +++ b/class_high_five_1_1_mpio_no_collective_cause.html @@ -0,0 +1,297 @@ + + + + + + + +HighFive: HighFive::MpioNoCollectiveCause Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::MpioNoCollectiveCause Class Reference
+
+
+ +

The cause for non-collective I/O. + More...

+ +

#include <H5PropertyList.hpp>

+
+Inheritance diagram for HighFive::MpioNoCollectiveCause:
+
+
Inheritance graph
+ + + + + +
[legend]
+
+Collaboration diagram for HighFive::MpioNoCollectiveCause:
+
+
Collaboration graph
+ + + + + +
[legend]
+ + + + + + + + + + + + + + + + +

+Public Member Functions

 MpioNoCollectiveCause (const DataTransferProps &dxpl)
 
bool wasCollective () const
 Was the datatransfer collective?
 
uint32_t getLocalCause () const
 The local cause for a non-collective I/O.
 
uint32_t getGlobalCause () const
 The global cause for a non-collective I/O.
 
std::pair< uint32_t, uint32_t > getCause () const
 A pair of the local and global cause for non-collective I/O.
 
+

Detailed Description

+

The cause for non-collective I/O.

+

The cause refers to the most recent I/O with data transfer property list dxpl at time of creation of this object. This object will not update automatically for later data transfers, i.e. H5Pget_mpio_no_collective_cause is called in the constructor, and not when fetching a value, such as wasCollective.

+

Constructor & Destructor Documentation

+ +

◆ MpioNoCollectiveCause()

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::MpioNoCollectiveCause::MpioNoCollectiveCause (const DataTransferProps & dxpl)
+
+inlineexplicit
+
+ +
+
+

Member Function Documentation

+ +

◆ getCause()

+ +
+
+ + + + + +
+ + + + + + + +
std::pair< uint32_t, uint32_t > HighFive::MpioNoCollectiveCause::getCause () const
+
+inline
+
+ +

A pair of the local and global cause for non-collective I/O.

+ +
+
+ +

◆ getGlobalCause()

+ +
+
+ + + + + +
+ + + + + + + +
uint32_t HighFive::MpioNoCollectiveCause::getGlobalCause () const
+
+inline
+
+ +

The global cause for a non-collective I/O.

+ +
+
+ +

◆ getLocalCause()

+ +
+
+ + + + + +
+ + + + + + + +
uint32_t HighFive::MpioNoCollectiveCause::getLocalCause () const
+
+inline
+
+ +

The local cause for a non-collective I/O.

+ +
+
+ +

◆ wasCollective()

+ +
+
+ + + + + +
+ + + + + + + +
bool HighFive::MpioNoCollectiveCause::wasCollective () const
+
+inline
+
+ +

Was the datatransfer collective?

+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_mpio_no_collective_cause.js b/class_high_five_1_1_mpio_no_collective_cause.js new file mode 100644 index 000000000..b3753035e --- /dev/null +++ b/class_high_five_1_1_mpio_no_collective_cause.js @@ -0,0 +1,8 @@ +var class_high_five_1_1_mpio_no_collective_cause = +[ + [ "MpioNoCollectiveCause", "class_high_five_1_1_mpio_no_collective_cause.html#a902c6632085083f0404d1542a1c267ca", null ], + [ "getCause", "class_high_five_1_1_mpio_no_collective_cause.html#a7b1b28211a950b4652a0336559f4be6d", null ], + [ "getGlobalCause", "class_high_five_1_1_mpio_no_collective_cause.html#a4b3a653e043b86ea0dfb3a7afdff2cb7", null ], + [ "getLocalCause", "class_high_five_1_1_mpio_no_collective_cause.html#affcbf437d343b3442cfda7da969f4d37", null ], + [ "wasCollective", "class_high_five_1_1_mpio_no_collective_cause.html#a6d388115bac6e233bec17c6833206425", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_mpio_no_collective_cause__coll__graph.map b/class_high_five_1_1_mpio_no_collective_cause__coll__graph.map new file mode 100644 index 000000000..44d174cdd --- /dev/null +++ b/class_high_five_1_1_mpio_no_collective_cause__coll__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_mpio_no_collective_cause__coll__graph.md5 b/class_high_five_1_1_mpio_no_collective_cause__coll__graph.md5 new file mode 100644 index 000000000..ef5f86890 --- /dev/null +++ b/class_high_five_1_1_mpio_no_collective_cause__coll__graph.md5 @@ -0,0 +1 @@ +e46ca092c846a70719a29dd5e6052a71 \ No newline at end of file diff --git a/class_high_five_1_1_mpio_no_collective_cause__coll__graph.png b/class_high_five_1_1_mpio_no_collective_cause__coll__graph.png new file mode 100644 index 000000000..e686409cc Binary files /dev/null and b/class_high_five_1_1_mpio_no_collective_cause__coll__graph.png differ diff --git a/class_high_five_1_1_mpio_no_collective_cause__inherit__graph.map b/class_high_five_1_1_mpio_no_collective_cause__inherit__graph.map new file mode 100644 index 000000000..44d174cdd --- /dev/null +++ b/class_high_five_1_1_mpio_no_collective_cause__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_mpio_no_collective_cause__inherit__graph.md5 b/class_high_five_1_1_mpio_no_collective_cause__inherit__graph.md5 new file mode 100644 index 000000000..ef5f86890 --- /dev/null +++ b/class_high_five_1_1_mpio_no_collective_cause__inherit__graph.md5 @@ -0,0 +1 @@ +e46ca092c846a70719a29dd5e6052a71 \ No newline at end of file diff --git a/class_high_five_1_1_mpio_no_collective_cause__inherit__graph.png b/class_high_five_1_1_mpio_no_collective_cause__inherit__graph.png new file mode 100644 index 000000000..e686409cc Binary files /dev/null and b/class_high_five_1_1_mpio_no_collective_cause__inherit__graph.png differ diff --git a/class_high_five_1_1_node_traits-members.html b/class_high_five_1_1_node_traits-members.html new file mode 100644 index 000000000..26d024ba3 --- /dev/null +++ b/class_high_five_1_1_node_traits-members.html @@ -0,0 +1,132 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::NodeTraits< Derivate > Member List
+
+
+ +

This is the complete list of members for HighFive::NodeTraits< Derivate >, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + +
createDataSet(const std::string &dataset_name, const DataSpace &space, const DataType &type, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)HighFive::NodeTraits< Derivate >inline
createDataSet(const std::string &dataset_name, const DataSpace &space, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)HighFive::NodeTraits< Derivate >inline
createDataSet(const std::string &dataset_name, const T &data, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)HighFive::NodeTraits< Derivate >inline
createDataSet(const std::string &dataset_name, const deprecated::FixedLenStringArray< N > &data, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)HighFive::NodeTraits< Derivate >inline
createExternalLink(const std::string &link_name, const std::string &h5_file, const std::string &obj_path, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)HighFive::NodeTraits< Derivate >inline
createGroup(const std::string &group_name, bool parents=true)HighFive::NodeTraits< Derivate >inline
createGroup(const std::string &group_name, const GroupCreateProps &createProps, bool parents=true)HighFive::NodeTraits< Derivate >inline
createHardLink(const std::string &link_name, const T &target_obj, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)HighFive::NodeTraits< Derivate >inline
createSoftLink(const std::string &linkName, const T &obj)HighFive::NodeTraits< Derivate >inline
createSoftLink(const std::string &link_name, const std::string &obj_path, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)HighFive::NodeTraits< Derivate >inline
exist(const std::string &node_name) constHighFive::NodeTraits< Derivate >inline
getDataSet(const std::string &dataset_name, const DataSetAccessProps &accessProps=DataSetAccessProps::Default()) constHighFive::NodeTraits< Derivate >inline
getDataType(const std::string &type_name, const DataTypeAccessProps &accessProps=DataTypeAccessProps::Default()) constHighFive::NodeTraits< Derivate >inline
getGroup(const std::string &group_name) constHighFive::NodeTraits< Derivate >inline
getLinkType(const std::string &node_name) constHighFive::NodeTraits< Derivate >inline
getNumberObjects() constHighFive::NodeTraits< Derivate >inline
getObjectName(size_t index) constHighFive::NodeTraits< Derivate >inline
getObjectType(const std::string &node_name) constHighFive::NodeTraits< Derivate >inline
listObjectNames(IndexType idx_type=IndexType::NAME) constHighFive::NodeTraits< Derivate >inline
rename(const std::string &src_path, const std::string &dest_path, bool parents=true) constHighFive::NodeTraits< Derivate >inline
unlink(const std::string &node_name) constHighFive::NodeTraits< Derivate >inline
+
+ + + + diff --git a/class_high_five_1_1_node_traits.html b/class_high_five_1_1_node_traits.html new file mode 100644 index 000000000..7ed719bb1 --- /dev/null +++ b/class_high_five_1_1_node_traits.html @@ -0,0 +1,1124 @@ + + + + + + + +HighFive: HighFive::NodeTraits< Derivate > Class Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::NodeTraits< Derivate > Class Template Reference
+
+
+ +

NodeTraits: Base class for Group and File. + More...

+ +

#include <H5Node_traits.hpp>

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

DataSet createDataSet (const std::string &dataset_name, const DataSpace &space, const DataType &type, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)
 createDataSet Create a new dataset in the current file of datatype type and of size space
 
template<typename T >
DataSet createDataSet (const std::string &dataset_name, const DataSpace &space, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)
 createDataSet create a new dataset in the current file with a size specified by space
 
template<typename T >
DataSet createDataSet (const std::string &dataset_name, const T &data, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)
 createDataSet create a new dataset in the current file and write to it, inferring the DataSpace from the data.
 
template<std::size_t N>
DataSet createDataSet (const std::string &dataset_name, const deprecated::FixedLenStringArray< N > &data, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)
 
DataSet getDataSet (const std::string &dataset_name, const DataSetAccessProps &accessProps=DataSetAccessProps::Default()) const
 get an existing dataset in the current file
 
Group createGroup (const std::string &group_name, bool parents=true)
 create a new group, and eventually intermediate groups
 
Group createGroup (const std::string &group_name, const GroupCreateProps &createProps, bool parents=true)
 create a new group, and eventually intermediate groups
 
Group getGroup (const std::string &group_name) const
 open an existing group with the name group_name
 
DataType getDataType (const std::string &type_name, const DataTypeAccessProps &accessProps=DataTypeAccessProps::Default()) const
 open a commited datatype with the name type_name
 
size_t getNumberObjects () const
 return the number of leaf objects of the node / group
 
std::string getObjectName (size_t index) const
 return the name of the object with the given index
 
bool rename (const std::string &src_path, const std::string &dest_path, bool parents=true) const
 moves an object and its content within an HDF5 file.
 
std::vector< std::string > listObjectNames (IndexType idx_type=IndexType::NAME) const
 list all leaf objects name of the node / group
 
bool exist (const std::string &node_name) const
 check a dataset or group exists in the current node / group
 
void unlink (const std::string &node_name) const
 unlink the given dataset or group
 
LinkType getLinkType (const std::string &node_name) const
 Returns the kind of link of the given name (soft, hard...)
 
ObjectType getObjectType (const std::string &node_name) const
 A shorthand to get the kind of object pointed to (group, dataset, type...)
 
template<typename T , typename = decltype(&T::getPath)>
void createSoftLink (const std::string &linkName, const T &obj)
 A shorthand to create softlink to any object which provides getPath The link will be created with default properties along with required parent groups.
 
void createSoftLink (const std::string &link_name, const std::string &obj_path, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)
 Creates softlinks.
 
void createExternalLink (const std::string &link_name, const std::string &h5_file, const std::string &obj_path, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)
 
template<typename T , typename = decltype(&T::getPath)>
void createHardLink (const std::string &link_name, const T &target_obj, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)
 Creates hardlinks.
 
+

Detailed Description

+
template<typename Derivate>
+class HighFive::NodeTraits< Derivate >

NodeTraits: Base class for Group and File.

+

Member Function Documentation

+ +

◆ createDataSet() [1/4]

+ +
+
+
+template<typename Derivate >
+
+template<typename T >
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
DataSet HighFive::NodeTraits< Derivate >::createDataSet (const std::string & dataset_name,
const DataSpace & space,
const DataSetCreateProps & createProps = DataSetCreateProps::Default(),
const DataSetAccessProps & accessProps = DataSetAccessProps::Default(),
bool parents = true )
+
+inline
+
+ +

createDataSet create a new dataset in the current file with a size specified by space

+
Parameters
+ + + + + + +
dataset_nameidentifier of the dataset
spaceAssociated DataSpace, see DataSpace for more information
createPropsA property list with data set creation properties
accessPropsA property list with data set access properties
parentsCreate intermediate groups if needed. Default: true.
+
+
+
Returns
DataSet Object
+ +
+
+ +

◆ createDataSet() [2/4]

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
DataSet HighFive::NodeTraits< Derivate >::createDataSet (const std::string & dataset_name,
const DataSpace & space,
const DataType & type,
const DataSetCreateProps & createProps = DataSetCreateProps::Default(),
const DataSetAccessProps & accessProps = DataSetAccessProps::Default(),
bool parents = true )
+
+inline
+
+ +

createDataSet Create a new dataset in the current file of datatype type and of size space

+
Parameters
+ + + + + + + +
dataset_nameidentifier of the dataset
spaceAssociated DataSpace, see DataSpace for more information
typeType of Data
createPropsA property list with data set creation properties
accessPropsA property list with data set access properties
parentsCreate intermediate groups if needed. Default: true.
+
+
+
Returns
DataSet Object
+ +
+
+ +

◆ createDataSet() [3/4]

+ +
+
+
+template<typename Derivate >
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
DataSet HighFive::NodeTraits< Derivate >::createDataSet (const std::string & dataset_name,
const deprecated::FixedLenStringArray< N > & data,
const DataSetCreateProps & createProps = DataSetCreateProps::Default(),
const DataSetAccessProps & accessProps = DataSetAccessProps::Default(),
bool parents = true )
+
+inline
+
+ +
+
+ +

◆ createDataSet() [4/4]

+ +
+
+
+template<typename Derivate >
+
+template<typename T >
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
DataSet HighFive::NodeTraits< Derivate >::createDataSet (const std::string & dataset_name,
const T & data,
const DataSetCreateProps & createProps = DataSetCreateProps::Default(),
const DataSetAccessProps & accessProps = DataSetAccessProps::Default(),
bool parents = true )
+
+inline
+
+ +

createDataSet create a new dataset in the current file and write to it, inferring the DataSpace from the data.

+
Parameters
+ + + + + + +
dataset_nameidentifier of the dataset
dataAssociated data, must support DataSpace::From, see DataSpace for more information
createPropsA property list with data set creation properties
accessPropsA property list with data set access properties
parentsCreate intermediate groups if needed. Default: true.
+
+
+
Returns
DataSet Object
+ +
+
+ +

◆ createExternalLink()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
void HighFive::NodeTraits< Derivate >::createExternalLink (const std::string & link_name,
const std::string & h5_file,
const std::string & obj_path,
LinkCreateProps linkCreateProps = LinkCreateProps(),
const LinkAccessProps & linkAccessProps = LinkAccessProps(),
const bool parents = true )
+
+inline
+
+ +
+
+ +

◆ createGroup() [1/2]

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + + + + + +
Group HighFive::NodeTraits< Derivate >::createGroup (const std::string & group_name,
bool parents = true )
+
+inline
+
+ +

create a new group, and eventually intermediate groups

+
Parameters
+ + + +
group_name
parentsCreate intermediate groups if needed. Default: true.
+
+
+
Returns
the group object
+ +
+
+ +

◆ createGroup() [2/2]

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + + + + + + + + + + +
Group HighFive::NodeTraits< Derivate >::createGroup (const std::string & group_name,
const GroupCreateProps & createProps,
bool parents = true )
+
+inline
+
+ +

create a new group, and eventually intermediate groups

+
Parameters
+ + + + +
group_name
createPropsA property list with group creation properties
parentsCreate intermediate groups if needed. Default: true.
+
+
+
Returns
the group object
+ +
+
+ +

◆ createHardLink()

+ +
+
+
+template<typename Derivate >
+
+template<typename T , typename >
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
void HighFive::NodeTraits< Derivate >::createHardLink (const std::string & link_name,
const T & target_obj,
LinkCreateProps linkCreateProps = LinkCreateProps(),
const LinkAccessProps & linkAccessProps = LinkAccessProps(),
const bool parents = true )
+
+inline
+
+ +

Creates hardlinks.

+
Parameters
+ + + + + + +
link_nameThe name of the link
target_objThe target object
linkCreatePropsA Link_Create property list. Notice "parents=true" overrides
linkAccessPropsThe Link_Access property list
parentsWhether parent groups should be created: Default: true
+
+
+ +
+
+ +

◆ createSoftLink() [1/2]

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
void HighFive::NodeTraits< Derivate >::createSoftLink (const std::string & link_name,
const std::string & obj_path,
LinkCreateProps linkCreateProps = LinkCreateProps(),
const LinkAccessProps & linkAccessProps = LinkAccessProps(),
const bool parents = true )
+
+inline
+
+ +

Creates softlinks.

+
Parameters
+ + + + + + +
link_nameThe name of the link
obj_pathThe target object path
linkCreatePropsA Link_Create property list. Notice "parents=true" overrides
linkAccessPropsThe Link_Access property list
parentsWhether parent groups should be created: Default: true
+
+
+ +
+
+ +

◆ createSoftLink() [2/2]

+ +
+
+
+template<typename Derivate >
+
+template<typename T , typename = decltype(&T::getPath)>
+ + + + + +
+ + + + + + + + + + + +
void HighFive::NodeTraits< Derivate >::createSoftLink (const std::string & linkName,
const T & obj )
+
+inline
+
+ +

A shorthand to create softlink to any object which provides getPath The link will be created with default properties along with required parent groups.

+ +
+
+ +

◆ exist()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + +
bool HighFive::NodeTraits< Derivate >::exist (const std::string & node_name) const
+
+inline
+
+ +

check a dataset or group exists in the current node / group

+
Parameters
+ + +
node_namedataset/group name to check
+
+
+
Returns
true if a dataset/group with the associated name exists, or false
+ +
+
+ +

◆ getDataSet()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + + + + + +
DataSet HighFive::NodeTraits< Derivate >::getDataSet (const std::string & dataset_name,
const DataSetAccessProps & accessProps = DataSetAccessProps::Default() ) const
+
+inline
+
+ +

get an existing dataset in the current file

+
Parameters
+ + + +
dataset_name
accessPropsproperty list to configure dataset chunk cache
+
+
+
Returns
return the named dataset, or throw exception if not found
+ +
+
+ +

◆ getDataType()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + + + + + +
DataType HighFive::NodeTraits< Derivate >::getDataType (const std::string & type_name,
const DataTypeAccessProps & accessProps = DataTypeAccessProps::Default() ) const
+
+inline
+
+ +

open a commited datatype with the name type_name

+
Parameters
+ + +
type_name
+
+
+
Returns
the datatype object
+ +
+
+ +

◆ getGroup()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + +
Group HighFive::NodeTraits< Derivate >::getGroup (const std::string & group_name) const
+
+inline
+
+ +

open an existing group with the name group_name

+
Parameters
+ + +
group_name
+
+
+
Returns
the group object
+ +
+
+ +

◆ getLinkType()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + +
LinkType HighFive::NodeTraits< Derivate >::getLinkType (const std::string & node_name) const
+
+inline
+
+ +

Returns the kind of link of the given name (soft, hard...)

+
Parameters
+ + +
node_nameThe entry to check, path relative to the current group
+
+
+ +
+
+ +

◆ getNumberObjects()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + +
size_t HighFive::NodeTraits< Derivate >::getNumberObjects () const
+
+inline
+
+ +

return the number of leaf objects of the node / group

+
Returns
number of leaf objects
+ +
+
+ +

◆ getObjectName()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + +
std::string HighFive::NodeTraits< Derivate >::getObjectName (size_t index) const
+
+inline
+
+ +

return the name of the object with the given index

+
Returns
the name of the object
+ +
+
+ +

◆ getObjectType()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + +
ObjectType HighFive::NodeTraits< Derivate >::getObjectType (const std::string & node_name) const
+
+inline
+
+ +

A shorthand to get the kind of object pointed to (group, dataset, type...)

+
Parameters
+ + +
node_nameThe entry to check, path relative to the current group
+
+
+ +
+
+ +

◆ listObjectNames()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + +
std::vector< std::string > HighFive::NodeTraits< Derivate >::listObjectNames (IndexType idx_type = IndexType::NAME) const
+
+inline
+
+ +

list all leaf objects name of the node / group

+
Parameters
+ + +
idx_typetell if the list should be ordered by Name or CreationOrderTime. CreationOrderTime can be use only if the file/group has been created with the HighFive::LinkCreationTime property.
+
+
+
Returns
number of leaf objects
+ +
+
+ +

◆ rename()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + + + + + + + + + + +
bool HighFive::NodeTraits< Derivate >::rename (const std::string & src_path,
const std::string & dest_path,
bool parents = true ) const
+
+inline
+
+ +

moves an object and its content within an HDF5 file.

+
Parameters
+ + + + +
src_pathrelative path of the object to current File/Group
dest_pathnew relative path of the object to current File/Group
parentsCreate intermediate groups if needed. Default: true.
+
+
+
Returns
boolean that is true if the move was successful
+ +
+
+ +

◆ unlink()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + +
void HighFive::NodeTraits< Derivate >::unlink (const std::string & node_name) const
+
+inline
+
+ +

unlink the given dataset or group

+
Parameters
+ + +
node_namedataset/group name to unlink
+
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_node_traits.js b/class_high_five_1_1_node_traits.js new file mode 100644 index 000000000..131e3ad69 --- /dev/null +++ b/class_high_five_1_1_node_traits.js @@ -0,0 +1,24 @@ +var class_high_five_1_1_node_traits = +[ + [ "createDataSet", "class_high_five_1_1_node_traits.html#ae0bcaf33a07487be71fc62d7a40d6a60", null ], + [ "createDataSet", "class_high_five_1_1_node_traits.html#a941a8deb4c9971d27af7b7b73a534709", null ], + [ "createDataSet", "class_high_five_1_1_node_traits.html#a36fc9e014e52d0bb6350865ffb28e8a4", null ], + [ "createDataSet", "class_high_five_1_1_node_traits.html#ac53402ee0dc01b86ac475dfa8db172c3", null ], + [ "createExternalLink", "class_high_five_1_1_node_traits.html#a4f63ab185617fac1597087e8079a0989", null ], + [ "createGroup", "class_high_five_1_1_node_traits.html#a8b966c4e5ee90aa9d86421646f2ecb99", null ], + [ "createGroup", "class_high_five_1_1_node_traits.html#a3da8ee379234a7d0d18e0abbd6019196", null ], + [ "createHardLink", "class_high_five_1_1_node_traits.html#a7f11136752f9a2ec632e0b2f94fb475e", null ], + [ "createSoftLink", "class_high_five_1_1_node_traits.html#a44f7cc437ed68cb9d534f2fe2ffe3c79", null ], + [ "createSoftLink", "class_high_five_1_1_node_traits.html#a6f4f9127e6626fdc9d3456a77899217b", null ], + [ "exist", "class_high_five_1_1_node_traits.html#aa3c8c4e09ebba6d997768ad72bc3bf82", null ], + [ "getDataSet", "class_high_five_1_1_node_traits.html#a6d42bb7aa92a8be5567a42a2f134115f", null ], + [ "getDataType", "class_high_five_1_1_node_traits.html#a5b618ebe1b03f24194b5a8ed1b9c59b6", null ], + [ "getGroup", "class_high_five_1_1_node_traits.html#a286d9f9c2232c25abc5876bdc9d66edd", null ], + [ "getLinkType", "class_high_five_1_1_node_traits.html#aeab19b9f1fef90db036e1ea6238ef4eb", null ], + [ "getNumberObjects", "class_high_five_1_1_node_traits.html#ad90f036b55bd3e155c73ece61233210e", null ], + [ "getObjectName", "class_high_five_1_1_node_traits.html#ae10cb4bd9e20c651c136b284f3d8cd46", null ], + [ "getObjectType", "class_high_five_1_1_node_traits.html#abc2c385a18e2caaae71366139b57d8f2", null ], + [ "listObjectNames", "class_high_five_1_1_node_traits.html#a30bd43382f4e1f77bc6358ad5f7ed7ce", null ], + [ "rename", "class_high_five_1_1_node_traits.html#a9732221be5949023649d2d5af9305a30", null ], + [ "unlink", "class_high_five_1_1_node_traits.html#a37ed4a7bc21f02b14d1f71e097b3d4bf", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_object-members.html b/class_high_five_1_1_object-members.html new file mode 100644 index 000000000..876ee1f8c --- /dev/null +++ b/class_high_five_1_1_object-members.html @@ -0,0 +1,125 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::Object Member List
+
+
+ +

This is the complete list of members for HighFive::Object, including all inherited members.

+ + + + + + + + + + + + + + + +
_hidHighFive::Objectprotected
CompoundTypeHighFive::Objectfriend
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getType() constHighFive::Objectinline
isValid() const noexceptHighFive::Objectinline
Object(Object &&other) noexceptHighFive::Objectinline
Object()HighFive::Objectinlineprotected
Object(const Object &other)HighFive::Objectinlineprotected
Object(hid_t)HighFive::Objectinlineexplicitprotected
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const Object &other) const noexceptHighFive::Objectinline
ReferenceHighFive::Objectfriend
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_object.html b/class_high_five_1_1_object.html new file mode 100644 index 000000000..c1511039c --- /dev/null +++ b/class_high_five_1_1_object.html @@ -0,0 +1,575 @@ + + + + + + + +HighFive: HighFive::Object Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::Object Class Reference
+
+
+ +

#include <H5Object.hpp>

+
+Inheritance diagram for HighFive::Object:
+
+
Inheritance graph
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
+ + + + + + + + + +

+Protected Member Functions

 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
+ + + +

+Protected Attributes

hid_t _hid
 
+ + + + + +

+Friends

class Reference
 
class CompoundType
 
+

Constructor & Destructor Documentation

+ +

◆ Object() [1/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object (Object && other)
+
+inlinenoexcept
+
+ +
+
+ +

◆ ~Object()

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::~Object ()
+
+inline
+
+ +
+
+ +

◆ Object() [2/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object ()
+
+inlineprotected
+
+ +
+
+ +

◆ Object() [3/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object (const Object & other)
+
+inlineprotected
+
+ +
+
+ +

◆ Object() [4/4]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Object::Object (hid_t hid)
+
+inlineexplicitprotected
+
+ +
+
+

Member Function Documentation

+ +

◆ getId()

+ +
+
+ + + + + +
+ + + + + + + +
hid_t HighFive::Object::getId () const
+
+inlinenoexcept
+
+ +

getId

+
Returns
internal HDF5 id to the object provided for C API compatibility
+ +
+
+ +

◆ getInfo()

+ +
+
+ + + + + +
+ + + + + + + +
ObjectInfo HighFive::Object::getInfo () const
+
+inline
+
+ +

Retrieve several infos about the current object (address, dates, etc)

+ +
+
+ +

◆ getType()

+ +
+
+ + + + + +
+ + + + + + + +
ObjectType HighFive::Object::getType () const
+
+inline
+
+ +

Gets the fundamental type of the object (dataset, group, etc)

+
Exceptions
+ + +
ObjectExceptionwhen the _hid is negative or the type is custom and not registered yet
+
+
+ +
+
+ +

◆ isValid()

+ +
+
+ + + + + +
+ + + + + + + +
bool HighFive::Object::isValid () const
+
+inlinenoexcept
+
+ +

isValid

+
Returns
true if current Object is a valid HDF5Object
+ +
+
+ +

◆ operator=()

+ +
+
+ + + + + +
+ + + + + + + +
Object & HighFive::Object::operator= (const Object & other)
+
+inlineprotected
+
+ +
+
+ +

◆ operator==()

+ +
+
+ + + + + +
+ + + + + + + +
bool HighFive::Object::operator== (const Object & other) const
+
+inlinenoexcept
+
+ +
+
+

Friends And Related Symbol Documentation

+ +

◆ CompoundType

+ +
+
+ + + + + +
+ + + + +
friend class CompoundType
+
+friend
+
+ +
+
+ +

◆ Reference

+ +
+
+ + + + + +
+ + + + +
friend class Reference
+
+friend
+
+ +
+
+

Member Data Documentation

+ +

◆ _hid

+ +
+
+ + + + + +
+ + + + +
hid_t HighFive::Object::_hid
+
+protected
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_object.js b/class_high_five_1_1_object.js new file mode 100644 index 000000000..4a7f76779 --- /dev/null +++ b/class_high_five_1_1_object.js @@ -0,0 +1,17 @@ +var class_high_five_1_1_object = +[ + [ "Object", "class_high_five_1_1_object.html#aa42052fa5ec4ee691f6a7dd6467199f2", null ], + [ "~Object", "class_high_five_1_1_object.html#a26aecd6a0812960b13eff054fe3a78aa", null ], + [ "Object", "class_high_five_1_1_object.html#a6bae41d04f273d04d2914406ab79da32", null ], + [ "Object", "class_high_five_1_1_object.html#ab87ee7d5e2beee6a50d60dec20d3dfe5", null ], + [ "Object", "class_high_five_1_1_object.html#a9fe361bc0bd9662c1fd96a4a6ec1133a", null ], + [ "getId", "class_high_five_1_1_object.html#a0efb623a7ceb36777ce81e215995a3bc", null ], + [ "getInfo", "class_high_five_1_1_object.html#a134549df53c4c0a04f728db983b2f947", null ], + [ "getType", "class_high_five_1_1_object.html#a60a33f44d524aae5936131770811bd58", null ], + [ "isValid", "class_high_five_1_1_object.html#a7b4b75cd26da783a0ad21ca7f2a593d3", null ], + [ "operator=", "class_high_five_1_1_object.html#acbdb7087cba8bb804f7ec82c56c28ace", null ], + [ "operator==", "class_high_five_1_1_object.html#ad838f47662c1b9d240bd26d8710aa7d9", null ], + [ "CompoundType", "class_high_five_1_1_object.html#a9531936c7f60cc4739426e6a25f23e7e", null ], + [ "Reference", "class_high_five_1_1_object.html#a75dfa92607f3d314070ecf242e028014", null ], + [ "_hid", "class_high_five_1_1_object.html#a8e28f684d63a33646aa107a41d9cf521", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_object__inherit__graph.map b/class_high_five_1_1_object__inherit__graph.map new file mode 100644 index 000000000..6f43f1a84 --- /dev/null +++ b/class_high_five_1_1_object__inherit__graph.map @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/class_high_five_1_1_object__inherit__graph.md5 b/class_high_five_1_1_object__inherit__graph.md5 new file mode 100644 index 000000000..ec4ed7e9d --- /dev/null +++ b/class_high_five_1_1_object__inherit__graph.md5 @@ -0,0 +1 @@ +e88b2e65c37c0fc13aa0eca19f6ae3ad \ No newline at end of file diff --git a/class_high_five_1_1_object__inherit__graph.png b/class_high_five_1_1_object__inherit__graph.png new file mode 100644 index 000000000..e42cce78c Binary files /dev/null and b/class_high_five_1_1_object__inherit__graph.png differ diff --git a/class_high_five_1_1_object_exception-members.html b/class_high_five_1_1_object_exception-members.html new file mode 100644 index 000000000..81ca9d039 --- /dev/null +++ b/class_high_five_1_1_object_exception-members.html @@ -0,0 +1,123 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::ObjectException Member List
+
+
+ +

This is the complete list of members for HighFive::ObjectException, including all inherited members.

+ + + + + + + + + + + + + +
_err_majorHighFive::Exceptionprotected
_err_minorHighFive::Exceptionprotected
_errmsgHighFive::Exceptionprotected
_nextHighFive::Exceptionprotected
Exception(const std::string &err_msg)HighFive::Exceptioninline
getErrMajor() constHighFive::Exceptioninline
getErrMinor() constHighFive::Exceptioninline
nextException() constHighFive::Exceptioninline
ObjectException(const std::string &err_msg)HighFive::ObjectExceptioninline
setErrorMsg(const std::string &errmsg)HighFive::Exceptioninlinevirtual
what() const overrideHighFive::Exceptioninline
~Exception()HighFive::Exceptioninlinevirtual
+
+ + + + diff --git a/class_high_five_1_1_object_exception.html b/class_high_five_1_1_object_exception.html new file mode 100644 index 000000000..99c5c3b36 --- /dev/null +++ b/class_high_five_1_1_object_exception.html @@ -0,0 +1,212 @@ + + + + + + + +HighFive: HighFive::ObjectException Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::ObjectException Class Reference
+
+
+ +

Exception specific to HighFive Object interface. + More...

+ +

#include <H5Exception.hpp>

+
+Inheritance diagram for HighFive::ObjectException:
+
+
Inheritance graph
+ + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::ObjectException:
+
+
Collaboration graph
+ + + + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 ObjectException (const std::string &err_msg)
 
- Public Member Functions inherited from HighFive::Exception
 Exception (const std::string &err_msg)
 
virtual ~Exception () throw ()
 
const char * what () const override throw ()
 get the current exception error message
 
virtual void setErrorMsg (const std::string &errmsg)
 define the error message
 
ExceptionnextException () const
 nextException
 
hid_t getErrMajor () const
 HDF5 library error mapper.
 
hid_t getErrMinor () const
 HDF5 library error mapper.
 
+ + + + + + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from HighFive::Exception
std::string _errmsg
 
std::shared_ptr< Exception_next
 
hid_t _err_major
 
hid_t _err_minor
 
+

Detailed Description

+

Exception specific to HighFive Object interface.

+

Constructor & Destructor Documentation

+ +

◆ ObjectException()

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::ObjectException::ObjectException (const std::string & err_msg)
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/class_high_five_1_1_object_exception.js b/class_high_five_1_1_object_exception.js new file mode 100644 index 000000000..1376dfcdc --- /dev/null +++ b/class_high_five_1_1_object_exception.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_object_exception = +[ + [ "ObjectException", "class_high_five_1_1_object_exception.html#aa9d63e59797518ba24516336d562041e", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_object_exception__coll__graph.map b/class_high_five_1_1_object_exception__coll__graph.map new file mode 100644 index 000000000..271a74093 --- /dev/null +++ b/class_high_five_1_1_object_exception__coll__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_object_exception__coll__graph.md5 b/class_high_five_1_1_object_exception__coll__graph.md5 new file mode 100644 index 000000000..a3b538c5c --- /dev/null +++ b/class_high_five_1_1_object_exception__coll__graph.md5 @@ -0,0 +1 @@ +cfcc54ccebf3c40265cee50b1c67893f \ No newline at end of file diff --git a/class_high_five_1_1_object_exception__coll__graph.png b/class_high_five_1_1_object_exception__coll__graph.png new file mode 100644 index 000000000..9cb298ded Binary files /dev/null and b/class_high_five_1_1_object_exception__coll__graph.png differ diff --git a/class_high_five_1_1_object_exception__inherit__graph.map b/class_high_five_1_1_object_exception__inherit__graph.map new file mode 100644 index 000000000..7c9fdc9b9 --- /dev/null +++ b/class_high_five_1_1_object_exception__inherit__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_object_exception__inherit__graph.md5 b/class_high_five_1_1_object_exception__inherit__graph.md5 new file mode 100644 index 000000000..a2204844a --- /dev/null +++ b/class_high_five_1_1_object_exception__inherit__graph.md5 @@ -0,0 +1 @@ +610d90db1fc665df997febd026206bf5 \ No newline at end of file diff --git a/class_high_five_1_1_object_exception__inherit__graph.png b/class_high_five_1_1_object_exception__inherit__graph.png new file mode 100644 index 000000000..04d965b2a Binary files /dev/null and b/class_high_five_1_1_object_exception__inherit__graph.png differ diff --git a/class_high_five_1_1_object_info-members.html b/class_high_five_1_1_object_info-members.html new file mode 100644 index 000000000..ba47f773a --- /dev/null +++ b/class_high_five_1_1_object_info-members.html @@ -0,0 +1,117 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::ObjectInfo Member List
+
+
+ +

This is the complete list of members for HighFive::ObjectInfo, including all inherited members.

+ + + + + + + +
getAddress() const noexceptHighFive::ObjectInfoinline
getCreationTime() const noexceptHighFive::ObjectInfoinline
getModificationTime() const noexceptHighFive::ObjectInfoinline
getRefCount() const noexceptHighFive::ObjectInfoinline
ObjectHighFive::ObjectInfofriend
raw_infoHighFive::ObjectInfoprotected
+
+ + + + diff --git a/class_high_five_1_1_object_info.html b/class_high_five_1_1_object_info.html new file mode 100644 index 000000000..64eef7a2d --- /dev/null +++ b/class_high_five_1_1_object_info.html @@ -0,0 +1,307 @@ + + + + + + + +HighFive: HighFive::ObjectInfo Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::ObjectInfo Class Reference
+
+
+ +

A class for accessing hdf5 objects info. + More...

+ +

#include <H5Object.hpp>

+ + + + + + + + + + + + + + +

+Public Member Functions

haddr_t getAddress () const noexcept
 Retrieve the address of the object (within its file)
 
size_t getRefCount () const noexcept
 Retrieve the number of references to this object.
 
time_t getCreationTime () const noexcept
 Retrieve the object's creation time.
 
time_t getModificationTime () const noexcept
 Retrieve the object's last modification time.
 
+ + + +

+Protected Attributes

H5O_info_t raw_info
 
+ + + +

+Friends

class Object
 
+

Detailed Description

+

A class for accessing hdf5 objects info.

+

Member Function Documentation

+ +

◆ getAddress()

+ +
+
+ + + + + +
+ + + + + + + +
haddr_t HighFive::ObjectInfo::getAddress () const
+
+inlinenoexcept
+
+ +

Retrieve the address of the object (within its file)

+
Deprecated
Deprecated since HighFive 2.2. Soon supporting VOL tokens
+ +
+
+ +

◆ getCreationTime()

+ +
+
+ + + + + +
+ + + + + + + +
time_t HighFive::ObjectInfo::getCreationTime () const
+
+inlinenoexcept
+
+ +

Retrieve the object's creation time.

+ +
+
+ +

◆ getModificationTime()

+ +
+
+ + + + + +
+ + + + + + + +
time_t HighFive::ObjectInfo::getModificationTime () const
+
+inlinenoexcept
+
+ +

Retrieve the object's last modification time.

+ +
+
+ +

◆ getRefCount()

+ +
+
+ + + + + +
+ + + + + + + +
size_t HighFive::ObjectInfo::getRefCount () const
+
+inlinenoexcept
+
+ +

Retrieve the number of references to this object.

+ +
+
+

Friends And Related Symbol Documentation

+ +

◆ Object

+ +
+
+ + + + + +
+ + + + +
friend class Object
+
+friend
+
+ +
+
+

Member Data Documentation

+ +

◆ raw_info

+ +
+
+ + + + + +
+ + + + +
H5O_info_t HighFive::ObjectInfo::raw_info
+
+protected
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_object_info.js b/class_high_five_1_1_object_info.js new file mode 100644 index 000000000..c7bbb30c1 --- /dev/null +++ b/class_high_five_1_1_object_info.js @@ -0,0 +1,9 @@ +var class_high_five_1_1_object_info = +[ + [ "getAddress", "class_high_five_1_1_object_info.html#a9275887ab016ce89fc24938f8d86aa11", null ], + [ "getCreationTime", "class_high_five_1_1_object_info.html#a3afa78a1134a890934ade597a171b482", null ], + [ "getModificationTime", "class_high_five_1_1_object_info.html#ad9e7a6bfd1b5f046745fab423f40750e", null ], + [ "getRefCount", "class_high_five_1_1_object_info.html#aa43efa7e90bebf6f39769d7cd56f8bbe", null ], + [ "Object", "class_high_five_1_1_object_info.html#a0720b5f434e636e22a3ed34f847eec57", null ], + [ "raw_info", "class_high_five_1_1_object_info.html#ac39a80ef1e2113268e6bb20f9145a204", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_path_traits-members.html b/class_high_five_1_1_path_traits-members.html new file mode 100644 index 000000000..444e5a198 --- /dev/null +++ b/class_high_five_1_1_path_traits-members.html @@ -0,0 +1,115 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::PathTraits< Derivate > Member List
+
+
+ +

This is the complete list of members for HighFive::PathTraits< Derivate >, including all inherited members.

+ + + + + +
_file_objHighFive::PathTraits< Derivate >protected
getFile() const noexceptHighFive::PathTraits< Derivate >inline
getPath() constHighFive::PathTraits< Derivate >inline
PathTraits()HighFive::PathTraits< Derivate >inline
+
+ + + + diff --git a/class_high_five_1_1_path_traits.html b/class_high_five_1_1_path_traits.html new file mode 100644 index 000000000..2184d76c8 --- /dev/null +++ b/class_high_five_1_1_path_traits.html @@ -0,0 +1,250 @@ + + + + + + + +HighFive: HighFive::PathTraits< Derivate > Class Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::PathTraits< Derivate > Class Template Reference
+
+
+ +

#include <H5Path_traits.hpp>

+ + + + + + + + + + +

+Public Member Functions

 PathTraits ()
 
std::string getPath () const
 return the path to the current object
 
FilegetFile () const noexcept
 Return a reference to the File object this object belongs.
 
+ + + +

+Protected Attributes

std::shared_ptr< File_file_obj
 
+

Constructor & Destructor Documentation

+ +

◆ PathTraits()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + +
HighFive::PathTraits< Derivate >::PathTraits ()
+
+inline
+
+ +
+
+

Member Function Documentation

+ +

◆ getFile()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + +
File & HighFive::PathTraits< Derivate >::getFile () const
+
+inlinenoexcept
+
+ +

Return a reference to the File object this object belongs.

+
Returns
the File object ref
+ +
+
+ +

◆ getPath()

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + +
std::string HighFive::PathTraits< Derivate >::getPath () const
+
+inline
+
+ +

return the path to the current object

+
Returns
the path to the object
+ +
+
+

Member Data Documentation

+ +

◆ _file_obj

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + +
std::shared_ptr<File> HighFive::PathTraits< Derivate >::_file_obj
+
+protected
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_path_traits.js b/class_high_five_1_1_path_traits.js new file mode 100644 index 000000000..9120e0b62 --- /dev/null +++ b/class_high_five_1_1_path_traits.js @@ -0,0 +1,7 @@ +var class_high_five_1_1_path_traits = +[ + [ "PathTraits", "class_high_five_1_1_path_traits.html#a49601ba2947e519784814a9d7a90f7f5", null ], + [ "getFile", "class_high_five_1_1_path_traits.html#a9d741a5f2d404314287b18b119136abf", null ], + [ "getPath", "class_high_five_1_1_path_traits.html#aca32b01b8c7eb54d398daeaac0b64399", null ], + [ "_file_obj", "class_high_five_1_1_path_traits.html#a9d0db67d0c4a3d1afacdb4fc9f17a302", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_property_exception-members.html b/class_high_five_1_1_property_exception-members.html new file mode 100644 index 000000000..1f5d3114d --- /dev/null +++ b/class_high_five_1_1_property_exception-members.html @@ -0,0 +1,123 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::PropertyException Member List
+
+
+ +

This is the complete list of members for HighFive::PropertyException, including all inherited members.

+ + + + + + + + + + + + + +
_err_majorHighFive::Exceptionprotected
_err_minorHighFive::Exceptionprotected
_errmsgHighFive::Exceptionprotected
_nextHighFive::Exceptionprotected
Exception(const std::string &err_msg)HighFive::Exceptioninline
getErrMajor() constHighFive::Exceptioninline
getErrMinor() constHighFive::Exceptioninline
nextException() constHighFive::Exceptioninline
PropertyException(const std::string &err_msg)HighFive::PropertyExceptioninline
setErrorMsg(const std::string &errmsg)HighFive::Exceptioninlinevirtual
what() const overrideHighFive::Exceptioninline
~Exception()HighFive::Exceptioninlinevirtual
+
+ + + + diff --git a/class_high_five_1_1_property_exception.html b/class_high_five_1_1_property_exception.html new file mode 100644 index 000000000..4e47fdcac --- /dev/null +++ b/class_high_five_1_1_property_exception.html @@ -0,0 +1,212 @@ + + + + + + + +HighFive: HighFive::PropertyException Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::PropertyException Class Reference
+
+
+ +

Exception specific to HighFive Property interface. + More...

+ +

#include <H5Exception.hpp>

+
+Inheritance diagram for HighFive::PropertyException:
+
+
Inheritance graph
+ + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::PropertyException:
+
+
Collaboration graph
+ + + + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 PropertyException (const std::string &err_msg)
 
- Public Member Functions inherited from HighFive::Exception
 Exception (const std::string &err_msg)
 
virtual ~Exception () throw ()
 
const char * what () const override throw ()
 get the current exception error message
 
virtual void setErrorMsg (const std::string &errmsg)
 define the error message
 
ExceptionnextException () const
 nextException
 
hid_t getErrMajor () const
 HDF5 library error mapper.
 
hid_t getErrMinor () const
 HDF5 library error mapper.
 
+ + + + + + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from HighFive::Exception
std::string _errmsg
 
std::shared_ptr< Exception_next
 
hid_t _err_major
 
hid_t _err_minor
 
+

Detailed Description

+

Exception specific to HighFive Property interface.

+

Constructor & Destructor Documentation

+ +

◆ PropertyException()

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::PropertyException::PropertyException (const std::string & err_msg)
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/class_high_five_1_1_property_exception.js b/class_high_five_1_1_property_exception.js new file mode 100644 index 000000000..085faafec --- /dev/null +++ b/class_high_five_1_1_property_exception.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_property_exception = +[ + [ "PropertyException", "class_high_five_1_1_property_exception.html#a3b98bbf8140308b1b76305eb5fa86ba0", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_property_exception__coll__graph.map b/class_high_five_1_1_property_exception__coll__graph.map new file mode 100644 index 000000000..358d89812 --- /dev/null +++ b/class_high_five_1_1_property_exception__coll__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_property_exception__coll__graph.md5 b/class_high_five_1_1_property_exception__coll__graph.md5 new file mode 100644 index 000000000..9d55e2c16 --- /dev/null +++ b/class_high_five_1_1_property_exception__coll__graph.md5 @@ -0,0 +1 @@ +e14f93136590cae0befde7f6692b3694 \ No newline at end of file diff --git a/class_high_five_1_1_property_exception__coll__graph.png b/class_high_five_1_1_property_exception__coll__graph.png new file mode 100644 index 000000000..4319d5d8f Binary files /dev/null and b/class_high_five_1_1_property_exception__coll__graph.png differ diff --git a/class_high_five_1_1_property_exception__inherit__graph.map b/class_high_five_1_1_property_exception__inherit__graph.map new file mode 100644 index 000000000..19ae496e1 --- /dev/null +++ b/class_high_five_1_1_property_exception__inherit__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_property_exception__inherit__graph.md5 b/class_high_five_1_1_property_exception__inherit__graph.md5 new file mode 100644 index 000000000..4a85d3b30 --- /dev/null +++ b/class_high_five_1_1_property_exception__inherit__graph.md5 @@ -0,0 +1 @@ +f7665890c3bdd0bd353cbda25a3e2a88 \ No newline at end of file diff --git a/class_high_five_1_1_property_exception__inherit__graph.png b/class_high_five_1_1_property_exception__inherit__graph.png new file mode 100644 index 000000000..0d6c23254 Binary files /dev/null and b/class_high_five_1_1_property_exception__inherit__graph.png differ diff --git a/class_high_five_1_1_property_list-members.html b/class_high_five_1_1_property_list-members.html new file mode 100644 index 000000000..e9c26cd8b --- /dev/null +++ b/class_high_five_1_1_property_list-members.html @@ -0,0 +1,128 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::PropertyList< T > Member List
+
+
+ +

This is the complete list of members for HighFive::PropertyList< T >, including all inherited members.

+ + + + + + + + + + + + + + + + + + +
_hidHighFive::Objectprotected
_initializeIfNeeded()HighFive::PropertyList< T >inlineprotected
add(const P &property)HighFive::PropertyList< T >inline
Default() noexceptHighFive::PropertyList< T >inlinestatic
Empty()HighFive::PropertyList< T >inlinestatic
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getType() const noexceptHighFive::PropertyList< T >inline
isValid() const noexceptHighFive::Objectinline
Object(Object &&other) noexceptHighFive::Objectinline
Object()HighFive::Objectinlineprotected
Object(const Object &other)HighFive::Objectinlineprotected
Object(hid_t)HighFive::Objectinlineexplicitprotected
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const Object &other) const noexceptHighFive::Objectinline
PropertyListBase() noexceptHighFive::PropertyListBaseinline
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_property_list.html b/class_high_five_1_1_property_list.html new file mode 100644 index 000000000..271365b08 --- /dev/null +++ b/class_high_five_1_1_property_list.html @@ -0,0 +1,370 @@ + + + + + + + +HighFive: HighFive::PropertyList< T > Class Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::PropertyList< T > Class Template Reference
+
+
+ +

HDF5 property Lists. + More...

+ +

#include <H5PropertyList.hpp>

+
+Inheritance diagram for HighFive::PropertyList< T >:
+
+
Inheritance graph
+ + + + + + + + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::PropertyList< T >:
+
+
Collaboration graph
+ + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

constexpr PropertyType getType () const noexcept
 return the type of this PropertyList
 
template<PropertyInterface P>
void add (const P &property)
 
- Public Member Functions inherited from HighFive::PropertyListBase
 PropertyListBase () noexcept
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
+ + + + + + + + + +

+Static Public Member Functions

static const PropertyList< T > & Default () noexcept
 Return the Default property type object.
 
static PropertyList< T > Empty ()
 
- Static Public Member Functions inherited from HighFive::PropertyListBase
static const PropertyListBaseDefault () noexcept
 
+ + + + + + + + + + + + +

+Protected Member Functions

void _initializeIfNeeded ()
 
- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
+ + + + +

+Additional Inherited Members

- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
+

Detailed Description

+
template<PropertyType T>
+class HighFive::PropertyList< T >

HDF5 property Lists.

+

Member Function Documentation

+ +

◆ _initializeIfNeeded()

+ +
+
+
+template<PropertyType T>
+ + + + + +
+ + + + + + + +
void HighFive::PropertyList< T >::_initializeIfNeeded ()
+
+inlineprotected
+
+ +
+
+ +

◆ add()

+ +
+
+
+template<PropertyType T>
+
+template<PropertyInterface P>
+ + + + + +
+ + + + + + + +
void HighFive::PropertyList< T >::add (const P & property)
+
+inline
+
+

Add a property to this property list. A property is an object which is expected to have a method with the following signature void apply(hid_t hid) const

Template Parameters
+ + +
PropertyInterface
+
+
+ +
+
+ +

◆ Default()

+ +
+
+
+template<PropertyType T>
+ + + + + +
+ + + + + + + +
static const PropertyList< T > & HighFive::PropertyList< T >::Default ()
+
+inlinestaticnoexcept
+
+ +

Return the Default property type object.

+ +
+
+ +

◆ Empty()

+ +
+
+
+template<PropertyType T>
+ + + + + +
+ + + + + + + +
static PropertyList< T > HighFive::PropertyList< T >::Empty ()
+
+inlinestatic
+
+

Return a property list created via a call to H5Pcreate.

+

An empty property is needed when one wants getId() to immediately point at a valid HID. This is important when interfacing directly with HDF5 to set properties that haven't been wrapped by HighFive.

+ +
+
+ +

◆ getType()

+ +
+
+
+template<PropertyType T>
+ + + + + +
+ + + + + + + +
constexpr PropertyType HighFive::PropertyList< T >::getType () const
+
+inlineconstexprnoexcept
+
+ +

return the type of this PropertyList

+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_property_list.js b/class_high_five_1_1_property_list.js new file mode 100644 index 000000000..b6803c96f --- /dev/null +++ b/class_high_five_1_1_property_list.js @@ -0,0 +1,6 @@ +var class_high_five_1_1_property_list = +[ + [ "_initializeIfNeeded", "class_high_five_1_1_property_list.html#a532f2e881eb1cb05da42d687c1d5e97e", null ], + [ "add", "class_high_five_1_1_property_list.html#af982152b36c4216bdcdf60dbf10f0a1d", null ], + [ "getType", "class_high_five_1_1_property_list.html#ac5be2be6430f56234db215589ebdee5e", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_property_list__coll__graph.map b/class_high_five_1_1_property_list__coll__graph.map new file mode 100644 index 000000000..d18d1043a --- /dev/null +++ b/class_high_five_1_1_property_list__coll__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_property_list__coll__graph.md5 b/class_high_five_1_1_property_list__coll__graph.md5 new file mode 100644 index 000000000..9eeae8c72 --- /dev/null +++ b/class_high_five_1_1_property_list__coll__graph.md5 @@ -0,0 +1 @@ +8dc78c15dce001d31f253afc33a2bf1e \ No newline at end of file diff --git a/class_high_five_1_1_property_list__coll__graph.png b/class_high_five_1_1_property_list__coll__graph.png new file mode 100644 index 000000000..ace9bdfc6 Binary files /dev/null and b/class_high_five_1_1_property_list__coll__graph.png differ diff --git a/class_high_five_1_1_property_list__inherit__graph.map b/class_high_five_1_1_property_list__inherit__graph.map new file mode 100644 index 000000000..caf9bd966 --- /dev/null +++ b/class_high_five_1_1_property_list__inherit__graph.map @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/class_high_five_1_1_property_list__inherit__graph.md5 b/class_high_five_1_1_property_list__inherit__graph.md5 new file mode 100644 index 000000000..0ab55d977 --- /dev/null +++ b/class_high_five_1_1_property_list__inherit__graph.md5 @@ -0,0 +1 @@ +090c03278f95b5b5759c9539cf089fad \ No newline at end of file diff --git a/class_high_five_1_1_property_list__inherit__graph.png b/class_high_five_1_1_property_list__inherit__graph.png new file mode 100644 index 000000000..ef8ee447d Binary files /dev/null and b/class_high_five_1_1_property_list__inherit__graph.png differ diff --git a/class_high_five_1_1_property_list_base-members.html b/class_high_five_1_1_property_list_base-members.html new file mode 100644 index 000000000..2b00f870f --- /dev/null +++ b/class_high_five_1_1_property_list_base-members.html @@ -0,0 +1,125 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::PropertyListBase Member List
+
+
+ +

This is the complete list of members for HighFive::PropertyListBase, including all inherited members.

+ + + + + + + + + + + + + + + +
_hidHighFive::Objectprotected
Default() noexceptHighFive::PropertyListBaseinlinestatic
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getType() constHighFive::Objectinline
isValid() const noexceptHighFive::Objectinline
Object(Object &&other) noexceptHighFive::Objectinline
Object()HighFive::Objectinlineprotected
Object(const Object &other)HighFive::Objectinlineprotected
Object(hid_t)HighFive::Objectinlineexplicitprotected
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const Object &other) const noexceptHighFive::Objectinline
PropertyListBase() noexceptHighFive::PropertyListBaseinline
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_property_list_base.html b/class_high_five_1_1_property_list_base.html new file mode 100644 index 000000000..866f97d07 --- /dev/null +++ b/class_high_five_1_1_property_list_base.html @@ -0,0 +1,249 @@ + + + + + + + +HighFive: HighFive::PropertyListBase Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::PropertyListBase Class Reference
+
+
+ +

Base Class for Property lists, providing global default. + More...

+ +

#include <H5PropertyList.hpp>

+
+Inheritance diagram for HighFive::PropertyListBase:
+
+
Inheritance graph
+ + + + + + + + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::PropertyListBase:
+
+
Collaboration graph
+ + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 PropertyListBase () noexcept
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
+ + + +

+Static Public Member Functions

static const PropertyListBaseDefault () noexcept
 
+ + + + + + + + + + + + + +

+Additional Inherited Members

- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
+

Detailed Description

+

Base Class for Property lists, providing global default.

+

Constructor & Destructor Documentation

+ +

◆ PropertyListBase()

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::PropertyListBase::PropertyListBase ()
+
+inlinenoexcept
+
+ +
+
+

Member Function Documentation

+ +

◆ Default()

+ +
+
+ + + + + +
+ + + + + + + +
static const PropertyListBase & HighFive::PropertyListBase::Default ()
+
+inlinestaticnoexcept
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_property_list_base.js b/class_high_five_1_1_property_list_base.js new file mode 100644 index 000000000..67a8bed40 --- /dev/null +++ b/class_high_five_1_1_property_list_base.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_property_list_base = +[ + [ "PropertyListBase", "class_high_five_1_1_property_list_base.html#a3dc12a0e8dc4dedbeea62b626d13e13a", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_property_list_base__coll__graph.map b/class_high_five_1_1_property_list_base__coll__graph.map new file mode 100644 index 000000000..08f43dc00 --- /dev/null +++ b/class_high_five_1_1_property_list_base__coll__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_property_list_base__coll__graph.md5 b/class_high_five_1_1_property_list_base__coll__graph.md5 new file mode 100644 index 000000000..fc5dc1e2f --- /dev/null +++ b/class_high_five_1_1_property_list_base__coll__graph.md5 @@ -0,0 +1 @@ +709f4ce5721a2cf5edbe10896c0a1bd4 \ No newline at end of file diff --git a/class_high_five_1_1_property_list_base__coll__graph.png b/class_high_five_1_1_property_list_base__coll__graph.png new file mode 100644 index 000000000..5cfae11ce Binary files /dev/null and b/class_high_five_1_1_property_list_base__coll__graph.png differ diff --git a/class_high_five_1_1_property_list_base__inherit__graph.map b/class_high_five_1_1_property_list_base__inherit__graph.map new file mode 100644 index 000000000..cba148c43 --- /dev/null +++ b/class_high_five_1_1_property_list_base__inherit__graph.map @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/class_high_five_1_1_property_list_base__inherit__graph.md5 b/class_high_five_1_1_property_list_base__inherit__graph.md5 new file mode 100644 index 000000000..d66f4ab36 --- /dev/null +++ b/class_high_five_1_1_property_list_base__inherit__graph.md5 @@ -0,0 +1 @@ +51a27baecac4a65cb61fa4831e478ced \ No newline at end of file diff --git a/class_high_five_1_1_property_list_base__inherit__graph.png b/class_high_five_1_1_property_list_base__inherit__graph.png new file mode 100644 index 000000000..d4950eca3 Binary files /dev/null and b/class_high_five_1_1_property_list_base__inherit__graph.png differ diff --git a/class_high_five_1_1_raw_property_list-members.html b/class_high_five_1_1_raw_property_list-members.html new file mode 100644 index 000000000..141a890ce --- /dev/null +++ b/class_high_five_1_1_raw_property_list-members.html @@ -0,0 +1,129 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::RawPropertyList< T > Member List
+
+
+ +

This is the complete list of members for HighFive::RawPropertyList< T >, including all inherited members.

+ + + + + + + + + + + + + + + + + + + +
_hidHighFive::Objectprotected
_initializeIfNeeded()HighFive::PropertyList< T >inlineprotected
add(const F &funct, const Args &... args)HighFive::RawPropertyList< T >inline
HighFive::PropertyList::add(const P &property)HighFive::PropertyList< T >inline
Default() noexceptHighFive::PropertyList< T >inlinestatic
Empty()HighFive::PropertyList< T >inlinestatic
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getType() const noexceptHighFive::PropertyList< T >inline
isValid() const noexceptHighFive::Objectinline
Object(Object &&other) noexceptHighFive::Objectinline
Object()HighFive::Objectinlineprotected
Object(const Object &other)HighFive::Objectinlineprotected
Object(hid_t)HighFive::Objectinlineexplicitprotected
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const Object &other) const noexceptHighFive::Objectinline
PropertyListBase() noexceptHighFive::PropertyListBaseinline
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_raw_property_list.html b/class_high_five_1_1_raw_property_list.html new file mode 100644 index 000000000..93389d7f3 --- /dev/null +++ b/class_high_five_1_1_raw_property_list.html @@ -0,0 +1,246 @@ + + + + + + + +HighFive: HighFive::RawPropertyList< T > Class Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::RawPropertyList< T > Class Template Reference
+
+
+ +

#include <H5PropertyList.hpp>

+
+Inheritance diagram for HighFive::RawPropertyList< T >:
+
+
Inheritance graph
+ + + + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::RawPropertyList< T >:
+
+
Collaboration graph
+ + + + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

template<typename F , typename... Args>
void add (const F &funct, const Args &... args)
 
- Public Member Functions inherited from HighFive::PropertyList< T >
constexpr PropertyType getType () const noexcept
 return the type of this PropertyList
 
template<PropertyInterface P>
void add (const P &property)
 
- Public Member Functions inherited from HighFive::PropertyListBase
 PropertyListBase () noexcept
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
+ + + + + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Static Public Member Functions inherited from HighFive::PropertyList< T >
static const PropertyList< T > & Default () noexcept
 Return the Default property type object.
 
static PropertyList< T > Empty ()
 
- Static Public Member Functions inherited from HighFive::PropertyListBase
static const PropertyListBaseDefault () noexcept
 
- Protected Member Functions inherited from HighFive::PropertyList< T >
void _initializeIfNeeded ()
 
- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
+

Detailed Description

+
template<PropertyType T>
+class HighFive::RawPropertyList< T >

RawPropertyLists are to be used when advanced H5 properties are desired and are not part of the HighFive API. Therefore this class is mainly for internal use.

+

Member Function Documentation

+ +

◆ add()

+ +
+
+
+template<PropertyType T>
+
+template<typename F , typename... Args>
+ + + + + +
+ + + + + + + + + + + +
void HighFive::RawPropertyList< T >::add (const F & funct,
const Args &... args )
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_raw_property_list.js b/class_high_five_1_1_raw_property_list.js new file mode 100644 index 000000000..00e0eb163 --- /dev/null +++ b/class_high_five_1_1_raw_property_list.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_raw_property_list = +[ + [ "add", "class_high_five_1_1_raw_property_list.html#a7f1ab49326895254c10c8d39724aa944", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_raw_property_list__coll__graph.map b/class_high_five_1_1_raw_property_list__coll__graph.map new file mode 100644 index 000000000..5cbfb67c9 --- /dev/null +++ b/class_high_five_1_1_raw_property_list__coll__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_raw_property_list__coll__graph.md5 b/class_high_five_1_1_raw_property_list__coll__graph.md5 new file mode 100644 index 000000000..53adb8f74 --- /dev/null +++ b/class_high_five_1_1_raw_property_list__coll__graph.md5 @@ -0,0 +1 @@ +f565206baa46e63327e074900a7a80b5 \ No newline at end of file diff --git a/class_high_five_1_1_raw_property_list__coll__graph.png b/class_high_five_1_1_raw_property_list__coll__graph.png new file mode 100644 index 000000000..f4d099445 Binary files /dev/null and b/class_high_five_1_1_raw_property_list__coll__graph.png differ diff --git a/class_high_five_1_1_raw_property_list__inherit__graph.map b/class_high_five_1_1_raw_property_list__inherit__graph.map new file mode 100644 index 000000000..5cbfb67c9 --- /dev/null +++ b/class_high_five_1_1_raw_property_list__inherit__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_raw_property_list__inherit__graph.md5 b/class_high_five_1_1_raw_property_list__inherit__graph.md5 new file mode 100644 index 000000000..53adb8f74 --- /dev/null +++ b/class_high_five_1_1_raw_property_list__inherit__graph.md5 @@ -0,0 +1 @@ +f565206baa46e63327e074900a7a80b5 \ No newline at end of file diff --git a/class_high_five_1_1_raw_property_list__inherit__graph.png b/class_high_five_1_1_raw_property_list__inherit__graph.png new file mode 100644 index 000000000..f4d099445 Binary files /dev/null and b/class_high_five_1_1_raw_property_list__inherit__graph.png differ diff --git a/class_high_five_1_1_reference-members.html b/class_high_five_1_1_reference-members.html new file mode 100644 index 000000000..ec32b307e --- /dev/null +++ b/class_high_five_1_1_reference-members.html @@ -0,0 +1,117 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::Reference Member List
+
+
+ +

This is the complete list of members for HighFive::Reference, including all inherited members.

+ + + + + + + +
create_ref(hobj_ref_t *refptr) constHighFive::Referenceinlineprotected
dereference(const Object &location) constHighFive::Referenceinline
getType(const Object &location) constHighFive::Referenceinline
Reference()=defaultHighFive::Reference
Reference(const Object &location, const Object &object)HighFive::Referenceinline
Reference(const hobj_ref_t h5_ref)HighFive::Referenceinlineexplicitprotected
+
+ + + + diff --git a/class_high_five_1_1_reference.html b/class_high_five_1_1_reference.html new file mode 100644 index 000000000..ef7a410b7 --- /dev/null +++ b/class_high_five_1_1_reference.html @@ -0,0 +1,354 @@ + + + + + + + +HighFive: HighFive::Reference Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::Reference Class Reference
+
+
+ +

An HDF5 (object) reference type. + More...

+ +

#include <H5Reference.hpp>

+ + + + + + + + + + + + + + + +

+Public Member Functions

 Reference ()=default
 Create an empty Reference to be initialized later.
 
 Reference (const Object &location, const Object &object)
 Create a Reference to an object residing at a given location.
 
template<typename T >
dereference (const Object &location) const
 Retrieve the Object being referenced by the Reference.
 
ObjectType getType (const Object &location) const
 Get only the type of the referenced Object.
 
+ + + + + + + +

+Protected Member Functions

 Reference (const hobj_ref_t h5_ref)
 Create a Reference from a low-level HDF5 object reference.
 
void create_ref (hobj_ref_t *refptr) const
 Create the low-level reference and store it at refptr.
 
+

Detailed Description

+

An HDF5 (object) reference type.

+

HDF5 object references allow pointing to groups, datasets (and compound types). They differ from links in their ability to be stored and retrieved as data from the HDF5 file in datasets themselves.

+

Constructor & Destructor Documentation

+ +

◆ Reference() [1/3]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Reference::Reference ()
+
+default
+
+ +

Create an empty Reference to be initialized later.

+ +
+
+ +

◆ Reference() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + + + + +
HighFive::Reference::Reference (const Object & location,
const Object & object )
+
+inline
+
+ +

Create a Reference to an object residing at a given location.

+
Parameters
+ + + +
locationA File or Group where the object being referenced to resides
objectA Dataset or Group to be referenced
+
+
+ +
+
+ +

◆ Reference() [3/3]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Reference::Reference (const hobj_ref_t h5_ref)
+
+inlineexplicitprotected
+
+ +

Create a Reference from a low-level HDF5 object reference.

+ +
+
+

Member Function Documentation

+ +

◆ create_ref()

+ +
+
+ + + + + +
+ + + + + + + +
void HighFive::Reference::create_ref (hobj_ref_t * refptr) const
+
+inlineprotected
+
+ +

Create the low-level reference and store it at refptr.

+
Parameters
+ + +
refptrPointer to a memory location where the created HDF5 reference will be stored
+
+
+ +
+
+ +

◆ dereference()

+ +
+
+
+template<typename T >
+ + + + + +
+ + + + + + + +
T HighFive::Reference::dereference (const Object & location) const
+
+inline
+
+ +

Retrieve the Object being referenced by the Reference.

+
Template Parameters
+ + +
Tthe appropriate HighFive Container (either DataSet or Group)
+
+
+
Parameters
+ + +
locationthe location where the referenced object is to be found (a File)
+
+
+
Returns
the dereferenced Object (either a Group or DataSet)
+ +
+
+ +

◆ getType()

+ +
+
+ + + + + +
+ + + + + + + +
ObjectType HighFive::Reference::getType (const Object & location) const
+
+inline
+
+ +

Get only the type of the referenced Object.

+
Parameters
+ + +
locationthe location where the referenced object is to be found (a File)
+
+
+
Returns
the ObjectType of the referenced object
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_reference.js b/class_high_five_1_1_reference.js new file mode 100644 index 000000000..3e5a6b61c --- /dev/null +++ b/class_high_five_1_1_reference.js @@ -0,0 +1,9 @@ +var class_high_five_1_1_reference = +[ + [ "Reference", "class_high_five_1_1_reference.html#a8130903e051ab98f6affbb36627bcfda", null ], + [ "Reference", "class_high_five_1_1_reference.html#a68e53f37f2b5975e23e0fd78b57f0533", null ], + [ "Reference", "class_high_five_1_1_reference.html#a0eebda40272f370b15111fe2f88fd495", null ], + [ "create_ref", "class_high_five_1_1_reference.html#af33dd1870b37db8c90287df4f0c7d622", null ], + [ "dereference", "class_high_five_1_1_reference.html#a083d46fbe580304f8416f73e57a5b414", null ], + [ "getType", "class_high_five_1_1_reference.html#ab5596af0210db020de67f3e04a22da31", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_reference_exception-members.html b/class_high_five_1_1_reference_exception-members.html new file mode 100644 index 000000000..22fc216c2 --- /dev/null +++ b/class_high_five_1_1_reference_exception-members.html @@ -0,0 +1,123 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::ReferenceException Member List
+
+
+ +

This is the complete list of members for HighFive::ReferenceException, including all inherited members.

+ + + + + + + + + + + + + +
_err_majorHighFive::Exceptionprotected
_err_minorHighFive::Exceptionprotected
_errmsgHighFive::Exceptionprotected
_nextHighFive::Exceptionprotected
Exception(const std::string &err_msg)HighFive::Exceptioninline
getErrMajor() constHighFive::Exceptioninline
getErrMinor() constHighFive::Exceptioninline
nextException() constHighFive::Exceptioninline
ReferenceException(const std::string &err_msg)HighFive::ReferenceExceptioninline
setErrorMsg(const std::string &errmsg)HighFive::Exceptioninlinevirtual
what() const overrideHighFive::Exceptioninline
~Exception()HighFive::Exceptioninlinevirtual
+
+ + + + diff --git a/class_high_five_1_1_reference_exception.html b/class_high_five_1_1_reference_exception.html new file mode 100644 index 000000000..ab7ad3281 --- /dev/null +++ b/class_high_five_1_1_reference_exception.html @@ -0,0 +1,212 @@ + + + + + + + +HighFive: HighFive::ReferenceException Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::ReferenceException Class Reference
+
+
+ +

Exception specific to HighFive Reference interface. + More...

+ +

#include <H5Exception.hpp>

+
+Inheritance diagram for HighFive::ReferenceException:
+
+
Inheritance graph
+ + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::ReferenceException:
+
+
Collaboration graph
+ + + + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 ReferenceException (const std::string &err_msg)
 
- Public Member Functions inherited from HighFive::Exception
 Exception (const std::string &err_msg)
 
virtual ~Exception () throw ()
 
const char * what () const override throw ()
 get the current exception error message
 
virtual void setErrorMsg (const std::string &errmsg)
 define the error message
 
ExceptionnextException () const
 nextException
 
hid_t getErrMajor () const
 HDF5 library error mapper.
 
hid_t getErrMinor () const
 HDF5 library error mapper.
 
+ + + + + + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from HighFive::Exception
std::string _errmsg
 
std::shared_ptr< Exception_next
 
hid_t _err_major
 
hid_t _err_minor
 
+

Detailed Description

+

Exception specific to HighFive Reference interface.

+

Constructor & Destructor Documentation

+ +

◆ ReferenceException()

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::ReferenceException::ReferenceException (const std::string & err_msg)
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/class_high_five_1_1_reference_exception.js b/class_high_five_1_1_reference_exception.js new file mode 100644 index 000000000..fd7ca7b0d --- /dev/null +++ b/class_high_five_1_1_reference_exception.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_reference_exception = +[ + [ "ReferenceException", "class_high_five_1_1_reference_exception.html#a345ca1ae87323f0e8af38a6e59921890", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_reference_exception__coll__graph.map b/class_high_five_1_1_reference_exception__coll__graph.map new file mode 100644 index 000000000..6a9d74e84 --- /dev/null +++ b/class_high_five_1_1_reference_exception__coll__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_reference_exception__coll__graph.md5 b/class_high_five_1_1_reference_exception__coll__graph.md5 new file mode 100644 index 000000000..91f849b79 --- /dev/null +++ b/class_high_five_1_1_reference_exception__coll__graph.md5 @@ -0,0 +1 @@ +72c29be268b4a76b05efdac49cfdcbba \ No newline at end of file diff --git a/class_high_five_1_1_reference_exception__coll__graph.png b/class_high_five_1_1_reference_exception__coll__graph.png new file mode 100644 index 000000000..508741c06 Binary files /dev/null and b/class_high_five_1_1_reference_exception__coll__graph.png differ diff --git a/class_high_five_1_1_reference_exception__inherit__graph.map b/class_high_five_1_1_reference_exception__inherit__graph.map new file mode 100644 index 000000000..e03f09187 --- /dev/null +++ b/class_high_five_1_1_reference_exception__inherit__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_reference_exception__inherit__graph.md5 b/class_high_five_1_1_reference_exception__inherit__graph.md5 new file mode 100644 index 000000000..fc9625124 --- /dev/null +++ b/class_high_five_1_1_reference_exception__inherit__graph.md5 @@ -0,0 +1 @@ +7a02afc343582669980133e94c98dc98 \ No newline at end of file diff --git a/class_high_five_1_1_reference_exception__inherit__graph.png b/class_high_five_1_1_reference_exception__inherit__graph.png new file mode 100644 index 000000000..1af730348 Binary files /dev/null and b/class_high_five_1_1_reference_exception__inherit__graph.png differ diff --git a/class_high_five_1_1_selection-members.html b/class_high_five_1_1_selection-members.html new file mode 100644 index 000000000..a131cc2a9 --- /dev/null +++ b/class_high_five_1_1_selection-members.html @@ -0,0 +1,131 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::Selection Member List
+
+
+ +

This is the complete list of members for HighFive::Selection, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + +
getDataset() noexceptHighFive::Selectioninline
getDataset() const noexceptHighFive::Selectioninline
getDataType() constHighFive::Selectioninline
getMemSpace() const noexceptHighFive::Selectioninline
getSpace() const noexceptHighFive::Selectioninline
read(const DataTransferProps &xfer_props=DataTransferProps()) constHighFive::SliceTraits< Selection >inline
read(T &array, const DataTransferProps &xfer_props=DataTransferProps()) constHighFive::SliceTraits< Selection >inline
read(T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) constHighFive::SliceTraits< Selection >inline
read(T *array, const DataTransferProps &xfer_props=DataTransferProps()) constHighFive::SliceTraits< Selection >inline
read_raw(T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) constHighFive::SliceTraits< Selection >inline
read_raw(T *array, const DataTransferProps &xfer_props=DataTransferProps()) constHighFive::SliceTraits< Selection >inline
select(const HyperSlab &hyperslab) constHighFive::SliceTraits< Selection >inline
select(const HyperSlab &hyperslab, const DataSpace &memspace) constHighFive::SliceTraits< Selection >inline
select(const std::vector< size_t > &offset, const std::vector< size_t > &count, const std::vector< size_t > &stride={}, const std::vector< size_t > &block={}) constHighFive::SliceTraits< Selection >inline
select(const std::vector< size_t > &columns) constHighFive::SliceTraits< Selection >inline
select(const ElementSet &elements) constHighFive::SliceTraits< Selection >inline
Selection(const DataSpace &memspace, const DataSpace &file_space, const DataSet &set)HighFive::Selectioninlineprotected
write(const T &buffer, const DataTransferProps &xfer_props=DataTransferProps())HighFive::SliceTraits< Selection >inline
write_raw(const T *buffer, const DataType &mem_datatype, const DataTransferProps &xfer_props=DataTransferProps())HighFive::SliceTraits< Selection >inline
write_raw(const T *buffer, const DataTransferProps &xfer_props=DataTransferProps())HighFive::SliceTraits< Selection >inline
+
+ + + + diff --git a/class_high_five_1_1_selection.html b/class_high_five_1_1_selection.html new file mode 100644 index 000000000..1b2400f24 --- /dev/null +++ b/class_high_five_1_1_selection.html @@ -0,0 +1,375 @@ + + + + + + + +HighFive: HighFive::Selection Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::Selection Class Reference
+
+
+ +

Selection: represent a view on a slice/part of a dataset. + More...

+ +

#include <H5Selection.hpp>

+
+Inheritance diagram for HighFive::Selection:
+
+
Inheritance graph
+ + + + + +
[legend]
+
+Collaboration diagram for HighFive::Selection:
+
+
Collaboration graph
+ + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

DataSpace getSpace () const noexcept
 getSpace
 
DataSpace getMemSpace () const noexcept
 getMemSpace
 
DataSetgetDataset () noexcept
 getDataSet
 
const DataSetgetDataset () const noexcept
 
const DataType getDataType () const
 return the datatype of the selection
 
- Public Member Functions inherited from HighFive::SliceTraits< Selection >
Selection select (const HyperSlab &hyperslab) const
 Select an hyperslab in the current Slice/Dataset.
 
Selection select (const HyperSlab &hyperslab, const DataSpace &memspace) const
 Select an hyperslab in the current Slice/Dataset.
 
Selection select (const std::vector< size_t > &offset, const std::vector< size_t > &count, const std::vector< size_t > &stride={}, const std::vector< size_t > &block={}) const
 Select a region in the current Slice/Dataset of count points at offset separated by stride. If strides are not provided they will default to 1 in all dimensions.
 
Selection select (const std::vector< size_t > &columns) const
 Select a set of columns in the last dimension of this dataset.
 
Selection select (const ElementSet &elements) const
 Select a region in the current Slice/Dataset out of a list of elements.
 
read (const DataTransferProps &xfer_props=DataTransferProps()) const
 
void read (T &array, const DataTransferProps &xfer_props=DataTransferProps()) const
 
void read (T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) const
 
void read (T *array, const DataTransferProps &xfer_props=DataTransferProps()) const
 
void read_raw (T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) const
 
void read_raw (T *array, const DataTransferProps &xfer_props=DataTransferProps()) const
 
void write (const T &buffer, const DataTransferProps &xfer_props=DataTransferProps())
 
void write_raw (const T *buffer, const DataType &mem_datatype, const DataTransferProps &xfer_props=DataTransferProps())
 
void write_raw (const T *buffer, const DataTransferProps &xfer_props=DataTransferProps())
 
+ + + +

+Protected Member Functions

 Selection (const DataSpace &memspace, const DataSpace &file_space, const DataSet &set)
 
+

Detailed Description

+

Selection: represent a view on a slice/part of a dataset.

+

A Selection is valid only if its parent dataset is valid

+

Constructor & Destructor Documentation

+ +

◆ Selection()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + +
HighFive::Selection::Selection (const DataSpace & memspace,
const DataSpace & file_space,
const DataSet & set )
+
+inlineprotected
+
+ +
+
+

Member Function Documentation

+ +

◆ getDataset() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
const DataSet & HighFive::Selection::getDataset () const
+
+inlinenoexcept
+
+ +
+
+ +

◆ getDataset() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
DataSet & HighFive::Selection::getDataset ()
+
+inlinenoexcept
+
+ +

getDataSet

+
Returns
parent dataset of this selection
+ +
+
+ +

◆ getDataType()

+ +
+
+ + + + + +
+ + + + + + + +
const DataType HighFive::Selection::getDataType () const
+
+inline
+
+ +

return the datatype of the selection

+
Returns
return the datatype of the selection
+ +
+
+ +

◆ getMemSpace()

+ +
+
+ + + + + +
+ + + + + + + +
DataSpace HighFive::Selection::getMemSpace () const
+
+inlinenoexcept
+
+ +

getMemSpace

+
Returns
Dataspace associated with the memory representation of this selection
+ +
+
+ +

◆ getSpace()

+ +
+
+ + + + + +
+ + + + + + + +
DataSpace HighFive::Selection::getSpace () const
+
+inlinenoexcept
+
+ +

getSpace

+
Returns
Dataspace associated with this selection
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_selection.js b/class_high_five_1_1_selection.js new file mode 100644 index 000000000..32f112754 --- /dev/null +++ b/class_high_five_1_1_selection.js @@ -0,0 +1,9 @@ +var class_high_five_1_1_selection = +[ + [ "Selection", "class_high_five_1_1_selection.html#ae5ffe93f0e0a4d6e04d531420fd63e29", null ], + [ "getDataset", "class_high_five_1_1_selection.html#a883952cb62d668308d875bfbcc121fc8", null ], + [ "getDataset", "class_high_five_1_1_selection.html#a99180045db6986a3aa99aa19b0b97c07", null ], + [ "getDataType", "class_high_five_1_1_selection.html#a32e87dff815356a9fa9546a0c09f1d39", null ], + [ "getMemSpace", "class_high_five_1_1_selection.html#a0a1461d53a4d91d265a696a6da0fc57c", null ], + [ "getSpace", "class_high_five_1_1_selection.html#ae9f659387f72554c7747fc80ddfce280", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_selection__coll__graph.map b/class_high_five_1_1_selection__coll__graph.map new file mode 100644 index 000000000..e74d631af --- /dev/null +++ b/class_high_five_1_1_selection__coll__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_selection__coll__graph.md5 b/class_high_five_1_1_selection__coll__graph.md5 new file mode 100644 index 000000000..5038eb57f --- /dev/null +++ b/class_high_five_1_1_selection__coll__graph.md5 @@ -0,0 +1 @@ +862297664c9b5e46ce8f7003550775e1 \ No newline at end of file diff --git a/class_high_five_1_1_selection__coll__graph.png b/class_high_five_1_1_selection__coll__graph.png new file mode 100644 index 000000000..8a147ad99 Binary files /dev/null and b/class_high_five_1_1_selection__coll__graph.png differ diff --git a/class_high_five_1_1_selection__inherit__graph.map b/class_high_five_1_1_selection__inherit__graph.map new file mode 100644 index 000000000..e74d631af --- /dev/null +++ b/class_high_five_1_1_selection__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_selection__inherit__graph.md5 b/class_high_five_1_1_selection__inherit__graph.md5 new file mode 100644 index 000000000..5038eb57f --- /dev/null +++ b/class_high_five_1_1_selection__inherit__graph.md5 @@ -0,0 +1 @@ +862297664c9b5e46ce8f7003550775e1 \ No newline at end of file diff --git a/class_high_five_1_1_selection__inherit__graph.png b/class_high_five_1_1_selection__inherit__graph.png new file mode 100644 index 000000000..8a147ad99 Binary files /dev/null and b/class_high_five_1_1_selection__inherit__graph.png differ diff --git a/class_high_five_1_1_shuffle-members.html b/class_high_five_1_1_shuffle-members.html new file mode 100644 index 000000000..7c350a221 --- /dev/null +++ b/class_high_five_1_1_shuffle-members.html @@ -0,0 +1,112 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::Shuffle Member List
+
+
+ +

This is the complete list of members for HighFive::Shuffle, including all inherited members.

+ + +
Shuffle()=defaultHighFive::Shuffle
+
+ + + + diff --git a/class_high_five_1_1_shuffle.html b/class_high_five_1_1_shuffle.html new file mode 100644 index 000000000..8c1522b76 --- /dev/null +++ b/class_high_five_1_1_shuffle.html @@ -0,0 +1,170 @@ + + + + + + + +HighFive: HighFive::Shuffle Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::Shuffle Class Reference
+
+
+ +

#include <H5PropertyList.hpp>

+
+Inheritance diagram for HighFive::Shuffle:
+
+
Inheritance graph
+ + + + + +
[legend]
+
+Collaboration diagram for HighFive::Shuffle:
+
+
Collaboration graph
+ + + + + +
[legend]
+ + + + +

+Public Member Functions

 Shuffle ()=default
 
+

Constructor & Destructor Documentation

+ +

◆ Shuffle()

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::Shuffle::Shuffle ()
+
+default
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_shuffle.js b/class_high_five_1_1_shuffle.js new file mode 100644 index 000000000..313ed1ffc --- /dev/null +++ b/class_high_five_1_1_shuffle.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_shuffle = +[ + [ "Shuffle", "class_high_five_1_1_shuffle.html#a7fc2632a04860fee90b30867afb43f46", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_shuffle__coll__graph.map b/class_high_five_1_1_shuffle__coll__graph.map new file mode 100644 index 000000000..7d8a08734 --- /dev/null +++ b/class_high_five_1_1_shuffle__coll__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_shuffle__coll__graph.md5 b/class_high_five_1_1_shuffle__coll__graph.md5 new file mode 100644 index 000000000..cd5ae645b --- /dev/null +++ b/class_high_five_1_1_shuffle__coll__graph.md5 @@ -0,0 +1 @@ +f665ca39ee22384fd4ed1fbb3f4459ef \ No newline at end of file diff --git a/class_high_five_1_1_shuffle__coll__graph.png b/class_high_five_1_1_shuffle__coll__graph.png new file mode 100644 index 000000000..a0c83e573 Binary files /dev/null and b/class_high_five_1_1_shuffle__coll__graph.png differ diff --git a/class_high_five_1_1_shuffle__inherit__graph.map b/class_high_five_1_1_shuffle__inherit__graph.map new file mode 100644 index 000000000..7d8a08734 --- /dev/null +++ b/class_high_five_1_1_shuffle__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_shuffle__inherit__graph.md5 b/class_high_five_1_1_shuffle__inherit__graph.md5 new file mode 100644 index 000000000..cd5ae645b --- /dev/null +++ b/class_high_five_1_1_shuffle__inherit__graph.md5 @@ -0,0 +1 @@ +f665ca39ee22384fd4ed1fbb3f4459ef \ No newline at end of file diff --git a/class_high_five_1_1_shuffle__inherit__graph.png b/class_high_five_1_1_shuffle__inherit__graph.png new file mode 100644 index 000000000..a0c83e573 Binary files /dev/null and b/class_high_five_1_1_shuffle__inherit__graph.png differ diff --git a/class_high_five_1_1_silence_h_d_f5-members.html b/class_high_five_1_1_silence_h_d_f5-members.html new file mode 100644 index 000000000..ea1223da5 --- /dev/null +++ b/class_high_five_1_1_silence_h_d_f5-members.html @@ -0,0 +1,113 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::SilenceHDF5 Member List
+
+
+ +

This is the complete list of members for HighFive::SilenceHDF5, including all inherited members.

+ + + +
SilenceHDF5(bool enable=true)HighFive::SilenceHDF5inline
~SilenceHDF5()HighFive::SilenceHDF5inline
+
+ + + + diff --git a/class_high_five_1_1_silence_h_d_f5.html b/class_high_five_1_1_silence_h_d_f5.html new file mode 100644 index 000000000..9cca68340 --- /dev/null +++ b/class_high_five_1_1_silence_h_d_f5.html @@ -0,0 +1,181 @@ + + + + + + + +HighFive: HighFive::SilenceHDF5 Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::SilenceHDF5 Class Reference
+
+
+ +

Utility class to disable HDF5 stack printing inside a scope. + More...

+ +

#include <H5Utility.hpp>

+ + + + + + +

+Public Member Functions

 SilenceHDF5 (bool enable=true)
 
 ~SilenceHDF5 ()
 
+

Detailed Description

+

Utility class to disable HDF5 stack printing inside a scope.

+

Constructor & Destructor Documentation

+ +

◆ SilenceHDF5()

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::SilenceHDF5::SilenceHDF5 (bool enable = true)
+
+inline
+
+ +
+
+ +

◆ ~SilenceHDF5()

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::SilenceHDF5::~SilenceHDF5 ()
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/class_high_five_1_1_silence_h_d_f5.js b/class_high_five_1_1_silence_h_d_f5.js new file mode 100644 index 000000000..bb4addb30 --- /dev/null +++ b/class_high_five_1_1_silence_h_d_f5.js @@ -0,0 +1,5 @@ +var class_high_five_1_1_silence_h_d_f5 = +[ + [ "SilenceHDF5", "class_high_five_1_1_silence_h_d_f5.html#a87e3b628feb913044cf4859fce72e9b5", null ], + [ "~SilenceHDF5", "class_high_five_1_1_silence_h_d_f5.html#a56bfc9798ec749255cdd7960a73409a0", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_slice_traits-members.html b/class_high_five_1_1_slice_traits-members.html new file mode 100644 index 000000000..4f3b3f977 --- /dev/null +++ b/class_high_five_1_1_slice_traits-members.html @@ -0,0 +1,125 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::SliceTraits< Derivate > Member List
+
+
+ +

This is the complete list of members for HighFive::SliceTraits< Derivate >, including all inherited members.

+ + + + + + + + + + + + + + + +
read(const DataTransferProps &xfer_props=DataTransferProps()) constHighFive::SliceTraits< Derivate >inline
read(T &array, const DataTransferProps &xfer_props=DataTransferProps()) constHighFive::SliceTraits< Derivate >inline
read(T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) constHighFive::SliceTraits< Derivate >inline
read(T *array, const DataTransferProps &xfer_props=DataTransferProps()) constHighFive::SliceTraits< Derivate >inline
read_raw(T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) constHighFive::SliceTraits< Derivate >inline
read_raw(T *array, const DataTransferProps &xfer_props=DataTransferProps()) constHighFive::SliceTraits< Derivate >inline
select(const HyperSlab &hyperslab) constHighFive::SliceTraits< Derivate >inline
select(const HyperSlab &hyperslab, const DataSpace &memspace) constHighFive::SliceTraits< Derivate >inline
select(const std::vector< size_t > &offset, const std::vector< size_t > &count, const std::vector< size_t > &stride={}, const std::vector< size_t > &block={}) constHighFive::SliceTraits< Derivate >inline
select(const std::vector< size_t > &columns) constHighFive::SliceTraits< Derivate >inline
select(const ElementSet &elements) constHighFive::SliceTraits< Derivate >inline
write(const T &buffer, const DataTransferProps &xfer_props=DataTransferProps())HighFive::SliceTraits< Derivate >inline
write_raw(const T *buffer, const DataType &mem_datatype, const DataTransferProps &xfer_props=DataTransferProps())HighFive::SliceTraits< Derivate >inline
write_raw(const T *buffer, const DataTransferProps &xfer_props=DataTransferProps())HighFive::SliceTraits< Derivate >inline
+
+ + + + diff --git a/class_high_five_1_1_slice_traits.html b/class_high_five_1_1_slice_traits.html new file mode 100644 index 000000000..496675cc4 --- /dev/null +++ b/class_high_five_1_1_slice_traits.html @@ -0,0 +1,697 @@ + + + + + + + +HighFive: HighFive::SliceTraits< Derivate > Class Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::SliceTraits< Derivate > Class Template Reference
+
+
+ +

#include <H5Slice_traits.hpp>

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

Selection select (const HyperSlab &hyperslab) const
 Select an hyperslab in the current Slice/Dataset.
 
Selection select (const HyperSlab &hyperslab, const DataSpace &memspace) const
 Select an hyperslab in the current Slice/Dataset.
 
Selection select (const std::vector< size_t > &offset, const std::vector< size_t > &count, const std::vector< size_t > &stride={}, const std::vector< size_t > &block={}) const
 Select a region in the current Slice/Dataset of count points at offset separated by stride. If strides are not provided they will default to 1 in all dimensions.
 
Selection select (const std::vector< size_t > &columns) const
 Select a set of columns in the last dimension of this dataset.
 
Selection select (const ElementSet &elements) const
 Select a region in the current Slice/Dataset out of a list of elements.
 
template<typename T >
read (const DataTransferProps &xfer_props=DataTransferProps()) const
 
template<typename T >
void read (T &array, const DataTransferProps &xfer_props=DataTransferProps()) const
 
template<typename T >
void read (T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) const
 
template<typename T >
void read (T *array, const DataTransferProps &xfer_props=DataTransferProps()) const
 
template<typename T >
void read_raw (T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) const
 
template<typename T >
void read_raw (T *array, const DataTransferProps &xfer_props=DataTransferProps()) const
 
template<typename T >
void write (const T &buffer, const DataTransferProps &xfer_props=DataTransferProps())
 
template<typename T >
void write_raw (const T *buffer, const DataType &mem_datatype, const DataTransferProps &xfer_props=DataTransferProps())
 
template<typename T >
void write_raw (const T *buffer, const DataTransferProps &xfer_props=DataTransferProps())
 
+

Member Function Documentation

+ +

◆ read() [1/4]

+ +
+
+
+template<typename Derivate >
+
+template<typename T >
+ + + + + +
+ + + + + + + +
T HighFive::SliceTraits< Derivate >::read (const DataTransferProps & xfer_props = DataTransferProps()) const
+
+inline
+
+ +
+
+ +

◆ read() [2/4]

+ +
+
+
+template<typename Derivate >
+
+template<typename T >
+ + + + + +
+ + + + + + + + + + + +
void HighFive::SliceTraits< Derivate >::read (T & array,
const DataTransferProps & xfer_props = DataTransferProps() ) const
+
+inline
+
+

Read the entire dataset into a buffer

+

An exception is raised is if the numbers of dimension of the buffer and of the dataset are different.

+

The array type can be a N-pointer or a N-vector. For plain pointers not dimensionality checking will be performed, it is the user's responsibility to ensure that the right amount of space has been allocated.

+ +
+
+ +

◆ read() [3/4]

+ +
+
+
+template<typename Derivate >
+
+template<typename T >
+ + + + + +
+ + + + + + + + + + + +
void HighFive::SliceTraits< Derivate >::read (T * array,
const DataTransferProps & xfer_props = DataTransferProps() ) const
+
+inline
+
+

Read the entire dataset into a raw buffer

+
Deprecated
Use read_raw instead.
+

Same as read(T*, const DataType&, const DataTransferProps&). However, this overload deduces the HDF5 datatype of the element of array from T. Note, that the file datatype is already fixed.

+
Parameters
+ + + +
arrayA buffer containing enough space for the data
xfer_propsData Transfer properties
+
+
+ +
+
+ +

◆ read() [4/4]

+ +
+
+
+template<typename Derivate >
+
+template<typename T >
+ + + + + +
+ + + + + + + + + + + + + + + + +
void HighFive::SliceTraits< Derivate >::read (T * array,
const DataType & dtype,
const DataTransferProps & xfer_props = DataTransferProps() ) const
+
+inline
+
+

Read the entire dataset into a raw buffer

+
Deprecated
Use read_raw instead.
+

No dimensionality checks will be performed, it is the user's responsibility to ensure that the right amount of space has been allocated.

Parameters
+ + + + +
arrayA buffer containing enough space for the data
dtypeThe datatype of elements of the in memory buffer.
xfer_propsData Transfer properties
+
+
+ +
+
+ +

◆ read_raw() [1/2]

+ +
+
+
+template<typename Derivate >
+
+template<typename T >
+ + + + + +
+ + + + + + + + + + + +
void HighFive::SliceTraits< Derivate >::read_raw (T * array,
const DataTransferProps & xfer_props = DataTransferProps() ) const
+
+inline
+
+

Read the entire dataset into a raw buffer

+

Same as read(T*, const DataType&, const DataTransferProps&). However, this overload deduces the HDF5 datatype of the element of array from T. Note, that the file datatype is already fixed.

+
Parameters
+ + + +
arrayA buffer containing enough space for the data
xfer_propsData Transfer properties
+
+
+ +
+
+ +

◆ read_raw() [2/2]

+ +
+
+
+template<typename Derivate >
+
+template<typename T >
+ + + + + +
+ + + + + + + + + + + + + + + + +
void HighFive::SliceTraits< Derivate >::read_raw (T * array,
const DataType & dtype,
const DataTransferProps & xfer_props = DataTransferProps() ) const
+
+inline
+
+

Read the entire dataset into a raw buffer

+

No dimensionality checks will be performed, it is the user's responsibility to ensure that the right amount of space has been allocated.

Parameters
+ + + + +
arrayA buffer containing enough space for the data
dtypeThe type of the data, in case it cannot be automatically guessed
xfer_propsData Transfer properties
+
+
+ +
+
+ +

◆ select() [1/5]

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + +
Selection HighFive::SliceTraits< Derivate >::select (const ElementSet & elements) const
+
+inline
+
+ +

Select a region in the current Slice/Dataset out of a list of elements.

+ +
+
+ +

◆ select() [2/5]

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + +
Selection HighFive::SliceTraits< Derivate >::select (const HyperSlab & hyperslab) const
+
+inline
+
+ +

Select an hyperslab in the current Slice/Dataset.

+

HyperSlabs can be either regular or irregular. Irregular hyperslabs are typically generated by taking the union of regular hyperslabs. An irregular hyperslab, in general, does not fit nicely into a multi-dimensional array, but only a subset of such an array.

+

Therefore, the only memspaces supported for general hyperslabs are one-dimensional arrays.

+ +
+
+ +

◆ select() [3/5]

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + + + + + +
Selection HighFive::SliceTraits< Derivate >::select (const HyperSlab & hyperslab,
const DataSpace & memspace ) const
+
+inline
+
+ +

Select an hyperslab in the current Slice/Dataset.

+

If the selection can be read into a simple, multi-dimensional dataspace, then this overload enable specifying the shape of the memory dataspace with memspace. Note, that simple implies no offsets, strides or number of blocks, just the size of the block in each dimension.

+ +
+
+ +

◆ select() [4/5]

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + +
Selection HighFive::SliceTraits< Derivate >::select (const std::vector< size_t > & columns) const
+
+inline
+
+ +

Select a set of columns in the last dimension of this dataset.

+

The column indices must be smaller than the dimension size.

+ +
+
+ +

◆ select() [5/5]

+ +
+
+
+template<typename Derivate >
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
Selection HighFive::SliceTraits< Derivate >::select (const std::vector< size_t > & offset,
const std::vector< size_t > & count,
const std::vector< size_t > & stride = {},
const std::vector< size_t > & block = {} ) const
+
+inline
+
+ +

Select a region in the current Slice/Dataset of count points at offset separated by stride. If strides are not provided they will default to 1 in all dimensions.

+

vector offset and count have to be from the same dimension

+ +
+
+ +

◆ write()

+ +
+
+
+template<typename Derivate >
+
+template<typename T >
+ + + + + +
+ + + + + + + + + + + +
void HighFive::SliceTraits< Derivate >::write (const T & buffer,
const DataTransferProps & xfer_props = DataTransferProps() )
+
+inline
+
+

Write the integrality N-dimension buffer to this dataset An exception is raised is if the numbers of dimension of the buffer and of the dataset are different

+

The array type can be a N-pointer or a N-vector ( e.g int** integer two dimensional array )

+ +
+
+ +

◆ write_raw() [1/2]

+ +
+
+
+template<typename Derivate >
+
+template<typename T >
+ + + + + +
+ + + + + + + + + + + +
void HighFive::SliceTraits< Derivate >::write_raw (const T * buffer,
const DataTransferProps & xfer_props = DataTransferProps() )
+
+inline
+
+

Write from a raw pointer into this dataset.

+

Same as write_raw(const T*, const DataTransferProps&). However, this overload attempts to guess the data type of buffer, i.e. the memory datatype. Note that the file datatype is already fixed.

+ +
+
+ +

◆ write_raw() [2/2]

+ +
+
+
+template<typename Derivate >
+
+template<typename T >
+ + + + + +
+ + + + + + + + + + + + + + + + +
void HighFive::SliceTraits< Derivate >::write_raw (const T * buffer,
const DataType & mem_datatype,
const DataTransferProps & xfer_props = DataTransferProps() )
+
+inline
+
+

Write from a raw pointer into this dataset.

+

No dimensionality checks will be performed, it is the user's responsibility to ensure that the buffer holds the right amount of elements. For n-dimensional matrices the buffer layout follows H5 default conventions.

+

Note, this is the shallowest wrapper around H5Dwrite and should be used if full control is needed. Generally prefer write.

+
Parameters
+ + + + +
bufferA buffer containing the data to be written
dtypeThe datatype of buffer, i.e. the memory data type.
xfer_propsThe HDF5 data transfer properties, e.g. collective MPI-IO.
+
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_slice_traits.js b/class_high_five_1_1_slice_traits.js new file mode 100644 index 000000000..41135ac7f --- /dev/null +++ b/class_high_five_1_1_slice_traits.js @@ -0,0 +1,17 @@ +var class_high_five_1_1_slice_traits = +[ + [ "read", "class_high_five_1_1_slice_traits.html#a1301abe3b9745470576986a1cbf7f0c9", null ], + [ "read", "class_high_five_1_1_slice_traits.html#af62a6a1f6c52da1c8ef501067ed948c8", null ], + [ "read", "class_high_five_1_1_slice_traits.html#a8c5a039f4728158ae7ea39b806660090", null ], + [ "read", "class_high_five_1_1_slice_traits.html#a308151100e49985c077608619302c6c0", null ], + [ "read_raw", "class_high_five_1_1_slice_traits.html#ae38617ce6af575539f0e50422197ee93", null ], + [ "read_raw", "class_high_five_1_1_slice_traits.html#abd941746a239acc6086ed84411ce78b0", null ], + [ "select", "class_high_five_1_1_slice_traits.html#aa67c235ff1633d91f77b4f3fd911da75", null ], + [ "select", "class_high_five_1_1_slice_traits.html#aa11ef45e433e18ce8f4706f17a8d7463", null ], + [ "select", "class_high_five_1_1_slice_traits.html#a71175dfcf7e9fa5ca5d5e2919163dece", null ], + [ "select", "class_high_five_1_1_slice_traits.html#a52c44cc1bdfac24890b999e902099c83", null ], + [ "select", "class_high_five_1_1_slice_traits.html#a6a76a20247d0e8f8629b81c17425d73c", null ], + [ "write", "class_high_five_1_1_slice_traits.html#a307d4d8539a69feda2bbf11bf8622e60", null ], + [ "write_raw", "class_high_five_1_1_slice_traits.html#a4396e0774fd015f081dcc3eb12efe97c", null ], + [ "write_raw", "class_high_five_1_1_slice_traits.html#aeac937f71ee942fafac7d19fb658721a", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_string_type-members.html b/class_high_five_1_1_string_type-members.html new file mode 100644 index 000000000..fd7e6c50f --- /dev/null +++ b/class_high_five_1_1_string_type-members.html @@ -0,0 +1,137 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::StringType Member List
+
+
+ +

This is the complete list of members for HighFive::StringType, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
_hidHighFive::Objectprotected
asStringType() constHighFive::DataTypeinline
DataTypeHighFive::StringTypefriend
empty() const noexceptHighFive::DataTypeinline
getCharacterSet() constHighFive::StringTypeinline
getClass() constHighFive::DataTypeinline
getCreatePropertyList() constHighFive::DataTypeinline
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getPadding() constHighFive::StringTypeinline
getSize() constHighFive::DataTypeinline
getType() constHighFive::Objectinline
isFixedLenStr() constHighFive::DataTypeinline
isReference() constHighFive::DataTypeinline
isValid() const noexceptHighFive::Objectinline
isVariableStr() constHighFive::DataTypeinline
Object(Object &&other) noexceptHighFive::DataTypeinlineprotected
Object()HighFive::DataTypeinlineprotected
Object(const Object &other)HighFive::DataTypeinlineprotected
Object(hid_t)HighFive::DataTypeinlineexplicitprotected
operator!=(const DataType &other) constHighFive::DataTypeinline
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const DataType &other) constHighFive::DataTypeinline
HighFive::Object::operator==(const Object &other) const noexceptHighFive::Objectinline
string() constHighFive::DataTypeinline
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_string_type.html b/class_high_five_1_1_string_type.html new file mode 100644 index 000000000..73606cbdc --- /dev/null +++ b/class_high_five_1_1_string_type.html @@ -0,0 +1,315 @@ + + + + + + + +HighFive: HighFive::StringType Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::StringType Class Reference
+
+
+ +

#include <H5DataType.hpp>

+
+Inheritance diagram for HighFive::StringType:
+
+
Inheritance graph
+ + + + + + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::StringType:
+
+
Collaboration graph
+ + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

CharacterSet getCharacterSet () const
 For stings return the character set.
 
StringPadding getPadding () const
 For fixed length stings return the padding.
 
- Public Member Functions inherited from HighFive::DataType
bool operator== (const DataType &other) const
 
bool operator!= (const DataType &other) const
 
DataTypeClass getClass () const
 Return the fundamental type.
 
size_t getSize () const
 Returns the length (in bytes) of this type elements.
 
std::string string () const
 Returns a friendly description of the type (e.g. Float32)
 
bool isVariableStr () const
 Returns whether the type is a variable-length string.
 
bool isFixedLenStr () const
 Returns whether the type is a fixed-length string.
 
StringType asStringType () const
 Returns this datatype as a StringType.
 
bool empty () const noexcept
 Check the DataType was default constructed.
 
bool isReference () const
 Returns whether the type is a Reference.
 
DataTypeCreateProps getCreatePropertyList () const
 Get the list of properties for creation of this DataType.
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
+ + + +

+Friends

class DataType
 
+ + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Protected Member Functions inherited from HighFive::DataType
 Object (Object &&other) noexcept
 
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
+

Member Function Documentation

+ +

◆ getCharacterSet()

+ +
+
+ + + + + +
+ + + + + + + +
CharacterSet HighFive::StringType::getCharacterSet () const
+
+inline
+
+ +

For stings return the character set.

+ +
+
+ +

◆ getPadding()

+ +
+
+ + + + + +
+ + + + + + + +
StringPadding HighFive::StringType::getPadding () const
+
+inline
+
+ +

For fixed length stings return the padding.

+ +
+
+

Friends And Related Symbol Documentation

+ +

◆ DataType

+ +
+
+ + + + + +
+ + + + +
friend class DataType
+
+friend
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_string_type.js b/class_high_five_1_1_string_type.js new file mode 100644 index 000000000..f46e48d07 --- /dev/null +++ b/class_high_five_1_1_string_type.js @@ -0,0 +1,6 @@ +var class_high_five_1_1_string_type = +[ + [ "getCharacterSet", "class_high_five_1_1_string_type.html#a81ae2382aeeccb15d53d70d04496fcab", null ], + [ "getPadding", "class_high_five_1_1_string_type.html#a4f914467563cab045807517baee82c2d", null ], + [ "DataType", "class_high_five_1_1_string_type.html#a3891af67cf0b0e58640245a7ba31176f", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_string_type__coll__graph.map b/class_high_five_1_1_string_type__coll__graph.map new file mode 100644 index 000000000..f20d70f81 --- /dev/null +++ b/class_high_five_1_1_string_type__coll__graph.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/class_high_five_1_1_string_type__coll__graph.md5 b/class_high_five_1_1_string_type__coll__graph.md5 new file mode 100644 index 000000000..f7096d912 --- /dev/null +++ b/class_high_five_1_1_string_type__coll__graph.md5 @@ -0,0 +1 @@ +202951c97a97e5c8cda56ae6736dce65 \ No newline at end of file diff --git a/class_high_five_1_1_string_type__coll__graph.png b/class_high_five_1_1_string_type__coll__graph.png new file mode 100644 index 000000000..9be33feed Binary files /dev/null and b/class_high_five_1_1_string_type__coll__graph.png differ diff --git a/class_high_five_1_1_string_type__inherit__graph.map b/class_high_five_1_1_string_type__inherit__graph.map new file mode 100644 index 000000000..bcf470a33 --- /dev/null +++ b/class_high_five_1_1_string_type__inherit__graph.map @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/class_high_five_1_1_string_type__inherit__graph.md5 b/class_high_five_1_1_string_type__inherit__graph.md5 new file mode 100644 index 000000000..52ad0fc7f --- /dev/null +++ b/class_high_five_1_1_string_type__inherit__graph.md5 @@ -0,0 +1 @@ +f24ce487ff30470a5f23d3fc940954c9 \ No newline at end of file diff --git a/class_high_five_1_1_string_type__inherit__graph.png b/class_high_five_1_1_string_type__inherit__graph.png new file mode 100644 index 000000000..5458d9f6d Binary files /dev/null and b/class_high_five_1_1_string_type__inherit__graph.png differ diff --git a/class_high_five_1_1_szip-members.html b/class_high_five_1_1_szip-members.html new file mode 100644 index 000000000..39bea58b1 --- /dev/null +++ b/class_high_five_1_1_szip-members.html @@ -0,0 +1,114 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::Szip Member List
+
+
+ +

This is the complete list of members for HighFive::Szip, including all inherited members.

+ + + + +
getOptionsMask() constHighFive::Szipinline
getPixelsPerBlock() constHighFive::Szipinline
Szip(unsigned options_mask=H5_SZIP_EC_OPTION_MASK, unsigned pixels_per_block=H5_SZIP_MAX_PIXELS_PER_BLOCK)HighFive::Szipinlineexplicit
+
+ + + + diff --git a/class_high_five_1_1_szip.html b/class_high_five_1_1_szip.html new file mode 100644 index 000000000..499553c97 --- /dev/null +++ b/class_high_five_1_1_szip.html @@ -0,0 +1,229 @@ + + + + + + + +HighFive: HighFive::Szip Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::Szip Class Reference
+
+
+ +

#include <H5PropertyList.hpp>

+
+Inheritance diagram for HighFive::Szip:
+
+
Inheritance graph
+ + + + + +
[legend]
+
+Collaboration diagram for HighFive::Szip:
+
+
Collaboration graph
+ + + + + +
[legend]
+ + + + + + + + +

+Public Member Functions

 Szip (unsigned options_mask=H5_SZIP_EC_OPTION_MASK, unsigned pixels_per_block=H5_SZIP_MAX_PIXELS_PER_BLOCK)
 
unsigned getOptionsMask () const
 
unsigned getPixelsPerBlock () const
 
+

Constructor & Destructor Documentation

+ +

◆ Szip()

+ +
+
+ + + + + +
+ + + + + + + + + + + +
HighFive::Szip::Szip (unsigned options_mask = H5_SZIP_EC_OPTION_MASK,
unsigned pixels_per_block = H5_SZIP_MAX_PIXELS_PER_BLOCK )
+
+inlineexplicit
+
+ +
+
+

Member Function Documentation

+ +

◆ getOptionsMask()

+ +
+
+ + + + + +
+ + + + + + + +
unsigned HighFive::Szip::getOptionsMask () const
+
+inline
+
+ +
+
+ +

◆ getPixelsPerBlock()

+ +
+
+ + + + + +
+ + + + + + + +
unsigned HighFive::Szip::getPixelsPerBlock () const
+
+inline
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_szip.js b/class_high_five_1_1_szip.js new file mode 100644 index 000000000..3f105f455 --- /dev/null +++ b/class_high_five_1_1_szip.js @@ -0,0 +1,6 @@ +var class_high_five_1_1_szip = +[ + [ "Szip", "class_high_five_1_1_szip.html#a2857efb608427dbfcea9356fbd0f1cea", null ], + [ "getOptionsMask", "class_high_five_1_1_szip.html#ae2a9cc8055aad910598e3f03c4bba3c0", null ], + [ "getPixelsPerBlock", "class_high_five_1_1_szip.html#a9ad6b7b8022b89ac1a30bf2cfdbd7cf0", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_szip__coll__graph.map b/class_high_five_1_1_szip__coll__graph.map new file mode 100644 index 000000000..e09e19728 --- /dev/null +++ b/class_high_five_1_1_szip__coll__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_szip__coll__graph.md5 b/class_high_five_1_1_szip__coll__graph.md5 new file mode 100644 index 000000000..3e617b139 --- /dev/null +++ b/class_high_five_1_1_szip__coll__graph.md5 @@ -0,0 +1 @@ +dcc61507a84edc2d2de97159677174c4 \ No newline at end of file diff --git a/class_high_five_1_1_szip__coll__graph.png b/class_high_five_1_1_szip__coll__graph.png new file mode 100644 index 000000000..16d0ad5f4 Binary files /dev/null and b/class_high_five_1_1_szip__coll__graph.png differ diff --git a/class_high_five_1_1_szip__inherit__graph.map b/class_high_five_1_1_szip__inherit__graph.map new file mode 100644 index 000000000..e09e19728 --- /dev/null +++ b/class_high_five_1_1_szip__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_szip__inherit__graph.md5 b/class_high_five_1_1_szip__inherit__graph.md5 new file mode 100644 index 000000000..3e617b139 --- /dev/null +++ b/class_high_five_1_1_szip__inherit__graph.md5 @@ -0,0 +1 @@ +dcc61507a84edc2d2de97159677174c4 \ No newline at end of file diff --git a/class_high_five_1_1_szip__inherit__graph.png b/class_high_five_1_1_szip__inherit__graph.png new file mode 100644 index 000000000..16d0ad5f4 Binary files /dev/null and b/class_high_five_1_1_szip__inherit__graph.png differ diff --git a/class_high_five_1_1_use_collective_i_o-members.html b/class_high_five_1_1_use_collective_i_o-members.html new file mode 100644 index 000000000..17583fb7a --- /dev/null +++ b/class_high_five_1_1_use_collective_i_o-members.html @@ -0,0 +1,114 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::UseCollectiveIO Member List
+
+
+ +

This is the complete list of members for HighFive::UseCollectiveIO, including all inherited members.

+ + + + +
isCollective() constHighFive::UseCollectiveIOinline
UseCollectiveIO(bool enable=true)HighFive::UseCollectiveIOinlineexplicit
UseCollectiveIO(const DataTransferProps &dxpl)HighFive::UseCollectiveIOinlineexplicit
+
+ + + + diff --git a/class_high_five_1_1_use_collective_i_o.html b/class_high_five_1_1_use_collective_i_o.html new file mode 100644 index 000000000..8a152b420 --- /dev/null +++ b/class_high_five_1_1_use_collective_i_o.html @@ -0,0 +1,228 @@ + + + + + + + +HighFive: HighFive::UseCollectiveIO Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::UseCollectiveIO Class Reference
+
+
+ +

#include <H5PropertyList.hpp>

+
+Inheritance diagram for HighFive::UseCollectiveIO:
+
+
Inheritance graph
+ + + + + +
[legend]
+
+Collaboration diagram for HighFive::UseCollectiveIO:
+
+
Collaboration graph
+ + + + + +
[legend]
+ + + + + + + + + +

+Public Member Functions

 UseCollectiveIO (bool enable=true)
 
 UseCollectiveIO (const DataTransferProps &dxpl)
 
bool isCollective () const
 Does the property request collective IO?
 
+

Constructor & Destructor Documentation

+ +

◆ UseCollectiveIO() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::UseCollectiveIO::UseCollectiveIO (bool enable = true)
+
+inlineexplicit
+
+ +
+
+ +

◆ UseCollectiveIO() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::UseCollectiveIO::UseCollectiveIO (const DataTransferProps & dxpl)
+
+inlineexplicit
+
+ +
+
+

Member Function Documentation

+ +

◆ isCollective()

+ +
+
+ + + + + +
+ + + + + + + +
bool HighFive::UseCollectiveIO::isCollective () const
+
+inline
+
+ +

Does the property request collective IO?

+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_use_collective_i_o.js b/class_high_five_1_1_use_collective_i_o.js new file mode 100644 index 000000000..33d90aa7e --- /dev/null +++ b/class_high_five_1_1_use_collective_i_o.js @@ -0,0 +1,6 @@ +var class_high_five_1_1_use_collective_i_o = +[ + [ "UseCollectiveIO", "class_high_five_1_1_use_collective_i_o.html#a2e69f2c3f51af01f979094e5f8624327", null ], + [ "UseCollectiveIO", "class_high_five_1_1_use_collective_i_o.html#a91ea36587502d39431c7fbb565e9debe", null ], + [ "isCollective", "class_high_five_1_1_use_collective_i_o.html#a2c5a378080dd17e736bd0f6b0ae81e1c", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_use_collective_i_o__coll__graph.map b/class_high_five_1_1_use_collective_i_o__coll__graph.map new file mode 100644 index 000000000..09361afa4 --- /dev/null +++ b/class_high_five_1_1_use_collective_i_o__coll__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_use_collective_i_o__coll__graph.md5 b/class_high_five_1_1_use_collective_i_o__coll__graph.md5 new file mode 100644 index 000000000..e4186200b --- /dev/null +++ b/class_high_five_1_1_use_collective_i_o__coll__graph.md5 @@ -0,0 +1 @@ +a01179a873a1cfd0cc02ea424eff26b0 \ No newline at end of file diff --git a/class_high_five_1_1_use_collective_i_o__coll__graph.png b/class_high_five_1_1_use_collective_i_o__coll__graph.png new file mode 100644 index 000000000..a03ae9809 Binary files /dev/null and b/class_high_five_1_1_use_collective_i_o__coll__graph.png differ diff --git a/class_high_five_1_1_use_collective_i_o__inherit__graph.map b/class_high_five_1_1_use_collective_i_o__inherit__graph.map new file mode 100644 index 000000000..09361afa4 --- /dev/null +++ b/class_high_five_1_1_use_collective_i_o__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_high_five_1_1_use_collective_i_o__inherit__graph.md5 b/class_high_five_1_1_use_collective_i_o__inherit__graph.md5 new file mode 100644 index 000000000..e4186200b --- /dev/null +++ b/class_high_five_1_1_use_collective_i_o__inherit__graph.md5 @@ -0,0 +1 @@ +a01179a873a1cfd0cc02ea424eff26b0 \ No newline at end of file diff --git a/class_high_five_1_1_use_collective_i_o__inherit__graph.png b/class_high_five_1_1_use_collective_i_o__inherit__graph.png new file mode 100644 index 000000000..a03ae9809 Binary files /dev/null and b/class_high_five_1_1_use_collective_i_o__inherit__graph.png differ diff --git a/class_high_five_1_1_variable_length_string_type-members.html b/class_high_five_1_1_variable_length_string_type-members.html new file mode 100644 index 000000000..b28e283f5 --- /dev/null +++ b/class_high_five_1_1_variable_length_string_type-members.html @@ -0,0 +1,137 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::VariableLengthStringType Member List
+
+
+ +

This is the complete list of members for HighFive::VariableLengthStringType, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
_hidHighFive::Objectprotected
asStringType() constHighFive::DataTypeinline
empty() const noexceptHighFive::DataTypeinline
getCharacterSet() constHighFive::StringTypeinline
getClass() constHighFive::DataTypeinline
getCreatePropertyList() constHighFive::DataTypeinline
getId() const noexceptHighFive::Objectinline
getInfo() constHighFive::Objectinline
getPadding() constHighFive::StringTypeinline
getSize() constHighFive::DataTypeinline
getType() constHighFive::Objectinline
isFixedLenStr() constHighFive::DataTypeinline
isReference() constHighFive::DataTypeinline
isValid() const noexceptHighFive::Objectinline
isVariableStr() constHighFive::DataTypeinline
Object(Object &&other) noexceptHighFive::DataTypeinlineprotected
Object()HighFive::DataTypeinlineprotected
Object(const Object &other)HighFive::DataTypeinlineprotected
Object(hid_t)HighFive::DataTypeinlineexplicitprotected
operator!=(const DataType &other) constHighFive::DataTypeinline
operator=(const Object &other)HighFive::Objectinlineprotected
operator==(const DataType &other) constHighFive::DataTypeinline
HighFive::Object::operator==(const Object &other) const noexceptHighFive::Objectinline
string() constHighFive::DataTypeinline
VariableLengthStringType(CharacterSet character_set=CharacterSet::Ascii)HighFive::VariableLengthStringTypeinline
~Object()HighFive::Objectinline
+
+ + + + diff --git a/class_high_five_1_1_variable_length_string_type.html b/class_high_five_1_1_variable_length_string_type.html new file mode 100644 index 000000000..d2686f91a --- /dev/null +++ b/class_high_five_1_1_variable_length_string_type.html @@ -0,0 +1,263 @@ + + + + + + + +HighFive: HighFive::VariableLengthStringType Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::VariableLengthStringType Class Reference
+
+
+ +

#include <H5DataType.hpp>

+
+Inheritance diagram for HighFive::VariableLengthStringType:
+
+
Inheritance graph
+ + + + + + + + + +
[legend]
+
+Collaboration diagram for HighFive::VariableLengthStringType:
+
+
Collaboration graph
+ + + + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 VariableLengthStringType (CharacterSet character_set=CharacterSet::Ascii)
 Create a variable length string HDF5 datatype.
 
- Public Member Functions inherited from HighFive::StringType
CharacterSet getCharacterSet () const
 For stings return the character set.
 
StringPadding getPadding () const
 For fixed length stings return the padding.
 
- Public Member Functions inherited from HighFive::DataType
bool operator== (const DataType &other) const
 
bool operator!= (const DataType &other) const
 
DataTypeClass getClass () const
 Return the fundamental type.
 
size_t getSize () const
 Returns the length (in bytes) of this type elements.
 
std::string string () const
 Returns a friendly description of the type (e.g. Float32)
 
bool isVariableStr () const
 Returns whether the type is a variable-length string.
 
bool isFixedLenStr () const
 Returns whether the type is a fixed-length string.
 
StringType asStringType () const
 Returns this datatype as a StringType.
 
bool empty () const noexcept
 Check the DataType was default constructed.
 
bool isReference () const
 Returns whether the type is a Reference.
 
DataTypeCreateProps getCreatePropertyList () const
 Get the list of properties for creation of this DataType.
 
- Public Member Functions inherited from HighFive::Object
 Object (Object &&other) noexcept
 
 ~Object ()
 
bool isValid () const noexcept
 isValid
 
hid_t getId () const noexcept
 getId
 
ObjectInfo getInfo () const
 Retrieve several infos about the current object (address, dates, etc)
 
ObjectType getType () const
 Gets the fundamental type of the object (dataset, group, etc)
 
bool operator== (const Object &other) const noexcept
 
+ + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Protected Member Functions inherited from HighFive::DataType
 Object (Object &&other) noexcept
 
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
- Protected Member Functions inherited from HighFive::Object
 Object ()
 
 Object (const Object &other)
 
 Object (hid_t)
 
Objectoperator= (const Object &other)
 
- Protected Attributes inherited from HighFive::Object
hid_t _hid
 
+

Constructor & Destructor Documentation

+ +

◆ VariableLengthStringType()

+ +
+
+ + + + + +
+ + + + + + + +
HighFive::VariableLengthStringType::VariableLengthStringType (CharacterSet character_set = CharacterSet::Ascii)
+
+inline
+
+ +

Create a variable length string HDF5 datatype.

+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1_variable_length_string_type.js b/class_high_five_1_1_variable_length_string_type.js new file mode 100644 index 000000000..ae0e71504 --- /dev/null +++ b/class_high_five_1_1_variable_length_string_type.js @@ -0,0 +1,4 @@ +var class_high_five_1_1_variable_length_string_type = +[ + [ "VariableLengthStringType", "class_high_five_1_1_variable_length_string_type.html#acc03c514d450d31741a103765de509de", null ] +]; \ No newline at end of file diff --git a/class_high_five_1_1_variable_length_string_type__coll__graph.map b/class_high_five_1_1_variable_length_string_type__coll__graph.map new file mode 100644 index 000000000..5340ddbf0 --- /dev/null +++ b/class_high_five_1_1_variable_length_string_type__coll__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_variable_length_string_type__coll__graph.md5 b/class_high_five_1_1_variable_length_string_type__coll__graph.md5 new file mode 100644 index 000000000..f539c7dff --- /dev/null +++ b/class_high_five_1_1_variable_length_string_type__coll__graph.md5 @@ -0,0 +1 @@ +9e04830acc3f84acd256a79595fd48f8 \ No newline at end of file diff --git a/class_high_five_1_1_variable_length_string_type__coll__graph.png b/class_high_five_1_1_variable_length_string_type__coll__graph.png new file mode 100644 index 000000000..1e0e33fae Binary files /dev/null and b/class_high_five_1_1_variable_length_string_type__coll__graph.png differ diff --git a/class_high_five_1_1_variable_length_string_type__inherit__graph.map b/class_high_five_1_1_variable_length_string_type__inherit__graph.map new file mode 100644 index 000000000..5340ddbf0 --- /dev/null +++ b/class_high_five_1_1_variable_length_string_type__inherit__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/class_high_five_1_1_variable_length_string_type__inherit__graph.md5 b/class_high_five_1_1_variable_length_string_type__inherit__graph.md5 new file mode 100644 index 000000000..f539c7dff --- /dev/null +++ b/class_high_five_1_1_variable_length_string_type__inherit__graph.md5 @@ -0,0 +1 @@ +9e04830acc3f84acd256a79595fd48f8 \ No newline at end of file diff --git a/class_high_five_1_1_variable_length_string_type__inherit__graph.png b/class_high_five_1_1_variable_length_string_type__inherit__graph.png new file mode 100644 index 000000000..1e0e33fae Binary files /dev/null and b/class_high_five_1_1_variable_length_string_type__inherit__graph.png differ diff --git a/class_high_five_1_1deprecated_1_1_fixed_len_string_array-members.html b/class_high_five_1_1deprecated_1_1_fixed_len_string_array-members.html new file mode 100644 index 000000000..3150e0dda --- /dev/null +++ b/class_high_five_1_1deprecated_1_1_fixed_len_string_array-members.html @@ -0,0 +1,143 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive::deprecated::FixedLenStringArray< N > Member List
+
+
+ +

This is the complete list of members for HighFive::deprecated::FixedLenStringArray< N >, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
at(std::size_t i) constHighFive::deprecated::FixedLenStringArray< N >inline
back() constHighFive::deprecated::FixedLenStringArray< N >inline
begin() noexceptHighFive::deprecated::FixedLenStringArray< N >inline
begin() const noexceptHighFive::deprecated::FixedLenStringArray< N >inline
cbegin() const noexceptHighFive::deprecated::FixedLenStringArray< N >inline
cend() const noexceptHighFive::deprecated::FixedLenStringArray< N >inline
const_iterator typedefHighFive::deprecated::FixedLenStringArray< N >
const_reverse_iterator typedefHighFive::deprecated::FixedLenStringArray< N >
data() noexceptHighFive::deprecated::FixedLenStringArray< N >inline
data() const noexceptHighFive::deprecated::FixedLenStringArray< N >inline
empty() const noexceptHighFive::deprecated::FixedLenStringArray< N >inline
end() noexceptHighFive::deprecated::FixedLenStringArray< N >inline
end() const noexceptHighFive::deprecated::FixedLenStringArray< N >inline
FixedLenStringArray()=defaultHighFive::deprecated::FixedLenStringArray< N >
FixedLenStringArray(const char array[][N], std::size_t n_strings)HighFive::deprecated::FixedLenStringArray< N >inline
FixedLenStringArray(const std::vector< std::string > &vec)HighFive::deprecated::FixedLenStringArray< N >inlineexplicit
FixedLenStringArray(const std::string *iter_begin, const std::string *iter_end)HighFive::deprecated::FixedLenStringArray< N >inline
FixedLenStringArray(const std::initializer_list< std::string > &)HighFive::deprecated::FixedLenStringArray< N >inline
front() constHighFive::deprecated::FixedLenStringArray< N >inline
getString(std::size_t index) constHighFive::deprecated::FixedLenStringArray< N >inline
iterator typedefHighFive::deprecated::FixedLenStringArray< N >
operator[](std::size_t i) const noexceptHighFive::deprecated::FixedLenStringArray< N >inline
push_back(const std::string &)HighFive::deprecated::FixedLenStringArray< N >inline
push_back(const std::array< char, N > &)HighFive::deprecated::FixedLenStringArray< N >inline
rbegin() noexceptHighFive::deprecated::FixedLenStringArray< N >inline
rbegin() const noexceptHighFive::deprecated::FixedLenStringArray< N >inline
rend() noexceptHighFive::deprecated::FixedLenStringArray< N >inline
rend() const noexceptHighFive::deprecated::FixedLenStringArray< N >inline
resize(std::size_t n)HighFive::deprecated::FixedLenStringArray< N >inline
reverse_iterator typedefHighFive::deprecated::FixedLenStringArray< N >
size() const noexceptHighFive::deprecated::FixedLenStringArray< N >inline
value_type typedefHighFive::deprecated::FixedLenStringArray< N >
+
+ + + + diff --git a/class_high_five_1_1deprecated_1_1_fixed_len_string_array.html b/class_high_five_1_1deprecated_1_1_fixed_len_string_array.html new file mode 100644 index 000000000..0084dd94a --- /dev/null +++ b/class_high_five_1_1deprecated_1_1_fixed_len_string_array.html @@ -0,0 +1,1038 @@ + + + + + + + +HighFive: HighFive::deprecated::FixedLenStringArray< N > Class Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
HighFive::deprecated::FixedLenStringArray< N > Class Template Reference
+
+
+ +

A structure representing a set of fixed-length strings. + More...

+ +

#include <H5DataType.hpp>

+ + + + + + + + + + + + +

+Public Types

using iterator = typename vector_t::iterator
 
using const_iterator = typename vector_t::const_iterator
 
using reverse_iterator = typename vector_t::reverse_iterator
 
using const_reverse_iterator = typename vector_t::const_reverse_iterator
 
using value_type = typename vector_t::value_type
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 FixedLenStringArray ()=default
 
 FixedLenStringArray (const char array[][N], std::size_t n_strings)
 Create a FixedStringArray from a raw contiguous buffer.
 
 FixedLenStringArray (const std::vector< std::string > &vec)
 Create a FixedStringArray from a sequence of strings.
 
 FixedLenStringArray (const std::string *iter_begin, const std::string *iter_end)
 
 FixedLenStringArray (const std::initializer_list< std::string > &)
 
void push_back (const std::string &)
 Append an std::string to the buffer structure.
 
void push_back (const std::array< char, N > &)
 
std::string getString (std::size_t index) const
 Retrieve a string from the structure as std::string.
 
const char * operator[] (std::size_t i) const noexcept
 
const char * at (std::size_t i) const
 
bool empty () const noexcept
 
std::size_t size () const noexcept
 
void resize (std::size_t n)
 
const char * front () const
 
const char * back () const
 
char * data () noexcept
 
const char * data () const noexcept
 
iterator begin () noexcept
 
iterator end () noexcept
 
const_iterator begin () const noexcept
 
const_iterator cbegin () const noexcept
 
const_iterator end () const noexcept
 
const_iterator cend () const noexcept
 
reverse_iterator rbegin () noexcept
 
reverse_iterator rend () noexcept
 
const_reverse_iterator rbegin () const noexcept
 
const_reverse_iterator rend () const noexcept
 
+

Detailed Description

+
template<std::size_t N>
+class HighFive::deprecated::FixedLenStringArray< N >

A structure representing a set of fixed-length strings.

+

Although fixed-len arrays can be created 'raw' without the need for this structure, to retrieve results efficiently it must be used.

+
Template Parameters
+ + +
NSize of the string in bytes, including the null character. Note, that all string must be null-terminated.
+
+
+

Member Typedef Documentation

+ +

◆ const_iterator

+ +
+
+
+template<std::size_t N>
+ + + + +
using HighFive::deprecated::FixedLenStringArray< N >::const_iterator = typename vector_t::const_iterator
+
+ +
+
+ +

◆ const_reverse_iterator

+ +
+
+
+template<std::size_t N>
+ + + + +
using HighFive::deprecated::FixedLenStringArray< N >::const_reverse_iterator = typename vector_t::const_reverse_iterator
+
+ +
+
+ +

◆ iterator

+ +
+
+
+template<std::size_t N>
+ + + + +
using HighFive::deprecated::FixedLenStringArray< N >::iterator = typename vector_t::iterator
+
+ +
+
+ +

◆ reverse_iterator

+ +
+
+
+template<std::size_t N>
+ + + + +
using HighFive::deprecated::FixedLenStringArray< N >::reverse_iterator = typename vector_t::reverse_iterator
+
+ +
+
+ +

◆ value_type

+ +
+
+
+template<std::size_t N>
+ + + + +
using HighFive::deprecated::FixedLenStringArray< N >::value_type = typename vector_t::value_type
+
+ +
+
+

Constructor & Destructor Documentation

+ +

◆ FixedLenStringArray() [1/5]

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
HighFive::deprecated::FixedLenStringArray< N >::FixedLenStringArray ()
+
+default
+
+ +
+
+ +

◆ FixedLenStringArray() [2/5]

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + + + + + +
HighFive::deprecated::FixedLenStringArray< N >::FixedLenStringArray (const char array[][N],
std::size_t n_strings )
+
+inline
+
+ +

Create a FixedStringArray from a raw contiguous buffer.

+

The argument n_strings specifies the number of strings.

+ +
+
+ +

◆ FixedLenStringArray() [3/5]

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
HighFive::deprecated::FixedLenStringArray< N >::FixedLenStringArray (const std::vector< std::string > & vec)
+
+inlineexplicit
+
+ +

Create a FixedStringArray from a sequence of strings.

+

Such conversion involves a copy, original vector is not modified

+ +
+
+ +

◆ FixedLenStringArray() [4/5]

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + + + + + +
HighFive::deprecated::FixedLenStringArray< N >::FixedLenStringArray (const std::string * iter_begin,
const std::string * iter_end )
+
+inline
+
+ +
+
+ +

◆ FixedLenStringArray() [5/5]

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
HighFive::deprecated::FixedLenStringArray< N >::FixedLenStringArray (const std::initializer_list< std::string > & init_list)
+
+inline
+
+ +
+
+

Member Function Documentation

+ +

◆ at()

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
const char * HighFive::deprecated::FixedLenStringArray< N >::at (std::size_t i) const
+
+inline
+
+ +
+
+ +

◆ back()

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
const char * HighFive::deprecated::FixedLenStringArray< N >::back () const
+
+inline
+
+ +
+
+ +

◆ begin() [1/2]

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
const_iterator HighFive::deprecated::FixedLenStringArray< N >::begin () const
+
+inlinenoexcept
+
+ +
+
+ +

◆ begin() [2/2]

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
iterator HighFive::deprecated::FixedLenStringArray< N >::begin ()
+
+inlinenoexcept
+
+ +
+
+ +

◆ cbegin()

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
const_iterator HighFive::deprecated::FixedLenStringArray< N >::cbegin () const
+
+inlinenoexcept
+
+ +
+
+ +

◆ cend()

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
const_iterator HighFive::deprecated::FixedLenStringArray< N >::cend () const
+
+inlinenoexcept
+
+ +
+
+ +

◆ data() [1/2]

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
const char * HighFive::deprecated::FixedLenStringArray< N >::data () const
+
+inlinenoexcept
+
+ +
+
+ +

◆ data() [2/2]

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
char * HighFive::deprecated::FixedLenStringArray< N >::data ()
+
+inlinenoexcept
+
+ +
+
+ +

◆ empty()

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
bool HighFive::deprecated::FixedLenStringArray< N >::empty () const
+
+inlinenoexcept
+
+ +
+
+ +

◆ end() [1/2]

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
const_iterator HighFive::deprecated::FixedLenStringArray< N >::end () const
+
+inlinenoexcept
+
+ +
+
+ +

◆ end() [2/2]

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
iterator HighFive::deprecated::FixedLenStringArray< N >::end ()
+
+inlinenoexcept
+
+ +
+
+ +

◆ front()

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
const char * HighFive::deprecated::FixedLenStringArray< N >::front () const
+
+inline
+
+ +
+
+ +

◆ getString()

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
std::string HighFive::deprecated::FixedLenStringArray< N >::getString (std::size_t index) const
+
+inline
+
+ +

Retrieve a string from the structure as std::string.

+ +
+
+ +

◆ operator[]()

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
const char * HighFive::deprecated::FixedLenStringArray< N >::operator[] (std::size_t i) const
+
+inlinenoexcept
+
+ +
+
+ +

◆ push_back() [1/2]

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
void HighFive::deprecated::FixedLenStringArray< N >::push_back (const std::array< char, N > & src)
+
+inline
+
+ +
+
+ +

◆ push_back() [2/2]

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
void HighFive::deprecated::FixedLenStringArray< N >::push_back (const std::string & src)
+
+inline
+
+ +

Append an std::string to the buffer structure.

+ +
+
+ +

◆ rbegin() [1/2]

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
const_reverse_iterator HighFive::deprecated::FixedLenStringArray< N >::rbegin () const
+
+inlinenoexcept
+
+ +
+
+ +

◆ rbegin() [2/2]

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
reverse_iterator HighFive::deprecated::FixedLenStringArray< N >::rbegin ()
+
+inlinenoexcept
+
+ +
+
+ +

◆ rend() [1/2]

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
const_reverse_iterator HighFive::deprecated::FixedLenStringArray< N >::rend () const
+
+inlinenoexcept
+
+ +
+
+ +

◆ rend() [2/2]

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
reverse_iterator HighFive::deprecated::FixedLenStringArray< N >::rend ()
+
+inlinenoexcept
+
+ +
+
+ +

◆ resize()

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
void HighFive::deprecated::FixedLenStringArray< N >::resize (std::size_t n)
+
+inline
+
+ +
+
+ +

◆ size()

+ +
+
+
+template<std::size_t N>
+ + + + + +
+ + + + + + + +
std::size_t HighFive::deprecated::FixedLenStringArray< N >::size () const
+
+inlinenoexcept
+
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_high_five_1_1deprecated_1_1_fixed_len_string_array.js b/class_high_five_1_1deprecated_1_1_fixed_len_string_array.js new file mode 100644 index 000000000..397ea985e --- /dev/null +++ b/class_high_five_1_1deprecated_1_1_fixed_len_string_array.js @@ -0,0 +1,35 @@ +var class_high_five_1_1deprecated_1_1_fixed_len_string_array = +[ + [ "const_iterator", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a19671be1dbcf028f6205af74d5788401", null ], + [ "const_reverse_iterator", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a8f25777ccda9f7478dbadf7c41d1506c", null ], + [ "iterator", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#aeaf378839154ee61447437776d2958a2", null ], + [ "reverse_iterator", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a61c05d560045fa3f6588743e2d5893db", null ], + [ "value_type", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#abeb3846ce0ff500609b90daaf77580b5", null ], + [ "FixedLenStringArray", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#aa913375abb83a7ef03c2b0ba53f7abc4", null ], + [ "FixedLenStringArray", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#abe23e3558d76298d621d4a4b011bfb55", null ], + [ "FixedLenStringArray", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#af0de3010329cfdd2dbe6e874e5111a59", null ], + [ "FixedLenStringArray", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#afe40ad8759b9ff2ecaf40e897baecafb", null ], + [ "FixedLenStringArray", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a32db457a4f2fdf923467533f3eabd556", null ], + [ "at", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a69d615d326ffd680832e6d1e16c3ef30", null ], + [ "back", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a5944f3fd0a833c36ce59bc2db76f9a3c", null ], + [ "begin", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a9d9516d876a63b6f6e881720c15c25fc", null ], + [ "begin", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#ab27a11d14640741a320aab179bca1f36", null ], + [ "cbegin", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a49f114243a95386618335e91aad6dacd", null ], + [ "cend", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a2f5a7880b71178c0a064f49f01ca966b", null ], + [ "data", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#af7f1fbfe4942c7039deead6c481da802", null ], + [ "data", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#abd859d160e3b5a53741a73ea80a991e2", null ], + [ "empty", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a3ec69eb4a8361d8da30100970377870b", null ], + [ "end", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a198f617755dab79c7fdf0bf9dcb6f489", null ], + [ "end", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#ad3dc286012bd53390ca15cce9bd72fc5", null ], + [ "front", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a3f1811f5d3e5bee60091cf45d4fe0c9b", null ], + [ "getString", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a70cfdd3324d4c476a5cce1133417a1e4", null ], + [ "operator[]", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a6c5027b8f786762a3622f33f52be65bc", null ], + [ "push_back", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#ab66e6617a80330e35f17ad31a1d66e85", null ], + [ "push_back", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a54b243b4c98f6847d34bb40ac2e3cad4", null ], + [ "rbegin", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#ab0fca94e9a760128879f56ba8fba2f15", null ], + [ "rbegin", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#ac3d580382ef2b420a9020542ea94222c", null ], + [ "rend", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#ad4b2e4577af489c7813d8e88efbf6f41", null ], + [ "rend", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a7ea8ea191047d9d6a4114ba4d0152299", null ], + [ "resize", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a30e747411aa45f229e8562d04577142d", null ], + [ "size", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#aec436d056f8f3ee80e934de60ab61e0d", null ] +]; \ No newline at end of file diff --git a/classes.html b/classes.html new file mode 100644 index 000000000..af8fee9b0 --- /dev/null +++ b/classes.html @@ -0,0 +1,159 @@ + + + + + + + +HighFive: Class Index + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Class Index
+
+
+
A | C | D | E | F | G | H | L | M | N | O | P | R | S | U | V
+
+
+
A
+
AllocationTime (HighFive)
AnnotateTraits (HighFive)
AtomicType (HighFive)
AtomicType< char[StrLen]> (HighFive)
AtomicType< deprecated::FixedLenStringArray< StrLen > > (HighFive)
AtomicType< std::complex< T > > (HighFive)
Attribute (HighFive)
AttributeException (HighFive)
AttributePhaseChange (HighFive)
+
+
C
+
Caching (HighFive)
Chunking (HighFive)
CompoundType (HighFive)
Compression (H5Easy)
CreateIntermediateGroup (HighFive)
CreationOrder (HighFive)
+
+
D
+
DataSet (HighFive)
DataSetException (HighFive)
DataSpace (HighFive)
DataSpaceException (HighFive)
DataType (HighFive)
DataTypeException (HighFive)
Deflate (HighFive)
DumpOptions (H5Easy)
+
+
E
+
ElementSet (HighFive)
EnumType (HighFive)
EstimatedLinkInfo (HighFive)
Exception (HighFive)
+
+
F
+
File (HighFive)
FileDriver (HighFive)
FileException (HighFive)
FileVersionBounds (HighFive)
FixedLengthStringType (HighFive)
FixedLenStringArray (HighFive::deprecated)
+
+
G
+
Group (HighFive)
GroupException (HighFive)
+
+
H
+
HDF5ErrMapper (HighFive)
HyperSlab (HighFive)
+
+
L
+
LinkCreationOrder (HighFive)
Logger (HighFive)
+
+
M
+
CompoundType::member_def (HighFive)
EnumType::member_def (HighFive)
MetadataBlockSize (HighFive)
MPIOFileAccess (HighFive)
MPIOFileDriver (HighFive)
MpioNoCollectiveCause (HighFive)
+
+
N
+
NodeTraits (HighFive)
+
+
O
+
Object (HighFive)
ObjectException (HighFive)
ObjectInfo (HighFive)
+
+
P
+
PathTraits (HighFive)
PropertyException (HighFive)
PropertyInterface
PropertyList (HighFive)
PropertyListBase (HighFive)
+
+
R
+
RawPropertyList (HighFive)
Reference (HighFive)
ReferenceException (HighFive)
RegularHyperSlab (HighFive)
+
+
S
+
Selection (HighFive)
Shuffle (HighFive)
SilenceHDF5 (HighFive)
SliceTraits (HighFive)
StringType (HighFive)
Szip (HighFive)
+
+
U
+
UseCollectiveIO (HighFive)
+
+
V
+
VariableLengthStringType (HighFive)
+
+
+
+ + + + diff --git a/clipboard.js b/clipboard.js new file mode 100644 index 000000000..42c1fb0e0 --- /dev/null +++ b/clipboard.js @@ -0,0 +1,61 @@ +/** + +The code below is based on the Doxygen Awesome project, see +https://github.com/jothepro/doxygen-awesome-css + +MIT License + +Copyright (c) 2021 - 2022 jothepro + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +*/ + +let clipboard_title = "Copy to clipboard" +let clipboard_icon = `` +let clipboard_successIcon = `` +let clipboard_successDuration = 1000 + +$(function() { + if(navigator.clipboard) { + const fragments = document.getElementsByClassName("fragment") + for(const fragment of fragments) { + const clipboard_div = document.createElement("div") + clipboard_div.classList.add("clipboard") + clipboard_div.innerHTML = clipboard_icon + clipboard_div.title = clipboard_title + $(clipboard_div).click(function() { + const content = this.parentNode.cloneNode(true) + // filter out line number and folded fragments from file listings + content.querySelectorAll(".lineno, .ttc, .foldclosed").forEach((node) => { node.remove() }) + let text = content.textContent + // remove trailing newlines and trailing spaces from empty lines + text = text.replace(/^\s*\n/gm,'\n').replace(/\n*$/,'') + navigator.clipboard.writeText(text); + this.classList.add("success") + this.innerHTML = clipboard_successIcon + window.setTimeout(() => { // switch back to normal icon after timeout + this.classList.remove("success") + this.innerHTML = clipboard_icon + }, clipboard_successDuration); + }) + fragment.insertBefore(clipboard_div, fragment.firstChild) + } + } +}) diff --git a/closed.png b/closed.png new file mode 100644 index 000000000..98cc2c909 Binary files /dev/null and b/closed.png differ diff --git a/cookie.js b/cookie.js new file mode 100644 index 000000000..53ad21d98 --- /dev/null +++ b/cookie.js @@ -0,0 +1,58 @@ +/*! + Cookie helper functions + Copyright (c) 2023 Dimitri van Heesch + Released under MIT license. +*/ +let Cookie = { + cookie_namespace: 'doxygen_', + + readSetting(cookie,defVal) { + if (window.chrome) { + const val = localStorage.getItem(this.cookie_namespace+cookie) || + sessionStorage.getItem(this.cookie_namespace+cookie); + if (val) return val; + } else { + let myCookie = this.cookie_namespace+cookie+"="; + if (document.cookie) { + const index = document.cookie.indexOf(myCookie); + if (index != -1) { + const valStart = index + myCookie.length; + let valEnd = document.cookie.indexOf(";", valStart); + if (valEnd == -1) { + valEnd = document.cookie.length; + } + return document.cookie.substring(valStart, valEnd); + } + } + } + return defVal; + }, + + writeSetting(cookie,val,days=10*365) { // default days='forever', 0=session cookie, -1=delete + if (window.chrome) { + if (days==0) { + sessionStorage.setItem(this.cookie_namespace+cookie,val); + } else { + localStorage.setItem(this.cookie_namespace+cookie,val); + } + } else { + let date = new Date(); + date.setTime(date.getTime()+(days*24*60*60*1000)); + const expiration = days!=0 ? "expires="+date.toGMTString()+";" : ""; + document.cookie = this.cookie_namespace + cookie + "=" + + val + "; SameSite=Lax;" + expiration + "path=/"; + } + }, + + eraseSetting(cookie) { + if (window.chrome) { + if (localStorage.getItem(this.cookie_namespace+cookie)) { + localStorage.removeItem(this.cookie_namespace+cookie); + } else if (sessionStorage.getItem(this.cookie_namespace+cookie)) { + sessionStorage.removeItem(this.cookie_namespace+cookie); + } + } else { + this.writeSetting(cookie,'',-1); + } + }, +} diff --git a/deprecated.html b/deprecated.html new file mode 100644 index 000000000..fa9c3f859 --- /dev/null +++ b/deprecated.html @@ -0,0 +1,129 @@ + + + + + + + +HighFive: Deprecated List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Deprecated List
+
+
+
+
Member HighFive::Attribute::read (T *array, const DataType &mem_datatype) const
+
use read(T& or read_raw.
+
Member HighFive::Attribute::read (T *array) const
+
use read(T& or read_raw.
+
Member HighFive::DataSet::DataSet ()=default
+
Default constructor creates unsafe uninitialized objects
+
Class HighFive::FileDriver
+
Use FileAccessProps directly
+
Member HighFive::Group::Group ()=default
+
Default constructor creates unsafe uninitialized objects
+
Class HighFive::MPIOFileDriver
+
Add MPIOFileAccess directly to FileAccessProps
+
Member HighFive::ObjectInfo::getAddress () const noexcept
+
Deprecated since HighFive 2.2. Soon supporting VOL tokens
+
Member HighFive::SliceTraits< Derivate >::read (T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) const
+
Use read_raw instead.
+
Member HighFive::SliceTraits< Derivate >::read (T *array, const DataTransferProps &xfer_props=DataTransferProps()) const
+
Use read_raw instead.
+
+
+
+
+ + + + diff --git a/developer__guide_8md.html b/developer__guide_8md.html new file mode 100644 index 000000000..25f96854c --- /dev/null +++ b/developer__guide_8md.html @@ -0,0 +1,109 @@ + + + + + + + +HighFive: /home/runner/work/HighFive/HighFive/doc/developer_guide.md File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
/home/runner/work/HighFive/HighFive/doc/developer_guide.md File Reference
+
+
+
+
+ + + + diff --git a/dir_000003_000000.html b/dir_000003_000000.html new file mode 100644 index 000000000..271d93d32 --- /dev/null +++ b/dir_000003_000000.html @@ -0,0 +1,106 @@ + + + + + + + +HighFive: highfive -> bits Relation + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+

highfive → bits Relation

File in highfiveIncludes file in highfive/bits
boost.hppH5Inspector_decl.hpp
eigen.hppH5Inspector_decl.hpp
H5Attribute.hppH5Friends.hpp
H5Attribute.hppH5Path_traits.hpp
H5DataSet.hppH5_definitions.hpp
H5DataSet.hppH5Annotate_traits.hpp
H5DataSet.hppH5Path_traits.hpp
H5DataSet.hppH5Slice_traits.hpp
H5DataSpace.hppH5_definitions.hpp
H5DataSpace.hppH5Dataspace_misc.hpp
H5DataType.hpph5_wrapper.hpp
H5DataType.hppH5DataType_misc.hpp
H5DataType.hpph5t_wrapper.hpp
H5DataType.hppH5Utils.hpp
H5DataType.hppstring_padding.hpp
H5Exception.hppH5Exception_misc.hpp
H5File.hppH5Annotate_traits.hpp
H5File.hppH5Annotate_traits_misc.hpp
H5File.hppH5File_misc.hpp
H5File.hppH5Node_traits.hpp
H5File.hppH5Node_traits_misc.hpp
H5File.hppH5Path_traits_misc.hpp
H5FileDriver.hppH5_definitions.hpp
H5FileDriver.hppH5FileDriver_misc.hpp
H5Group.hppH5_definitions.hpp
H5Group.hppH5Annotate_traits.hpp
H5Group.hppH5Friends.hpp
H5Group.hppH5Node_traits.hpp
H5Group.hppH5Path_traits.hpp
H5Object.hppH5_definitions.hpp
H5Object.hppH5Friends.hpp
H5Object.hppH5Object_misc.hpp
H5PropertyList.hppH5PropertyList_misc.hpp
H5Reference.hppH5_definitions.hpp
H5Reference.hppH5Reference_misc.hpp
H5Selection.hppH5Friends.hpp
H5Selection.hppH5Slice_traits.hpp
H5Utility.hpph5e_wrapper.hpp
H5Utility.hppH5Friends.hpp
+
+ + + + diff --git a/dir_000003_000002.html b/dir_000003_000002.html new file mode 100644 index 000000000..33a9d27af --- /dev/null +++ b/dir_000003_000002.html @@ -0,0 +1,106 @@ + + + + + + + +HighFive: highfive -> h5easy_bits Relation + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+

highfive → h5easy_bits Relation

File in highfiveIncludes file in highfive/h5easy_bits
H5Easy.hppH5Easy_Eigen.hpp
H5Easy.hppH5Easy_misc.hpp
H5Easy.hppH5Easy_opencv.hpp
H5Easy.hppH5Easy_public.hpp
H5Easy.hppH5Easy_scalar.hpp
H5Easy.hppH5Easy_vector.hpp
H5Easy.hppH5Easy_xtensor.hpp
+
+ + + + diff --git a/dir_1d6aeb27bb4ae09e14bf6b9e21ff19e0.html b/dir_1d6aeb27bb4ae09e14bf6b9e21ff19e0.html new file mode 100644 index 000000000..1d650741a --- /dev/null +++ b/dir_1d6aeb27bb4ae09e14bf6b9e21ff19e0.html @@ -0,0 +1,204 @@ + + + + + + + +HighFive: highfive/bits Directory Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
bits Directory Reference
+
+
+
+Directory dependency graph for bits:
+
+
highfive/bits
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Files

 H5_definitions.hpp
 
 h5_wrapper.hpp
 
 h5a_wrapper.hpp
 
 H5Annotate_traits.hpp
 
 H5Annotate_traits_misc.hpp
 
 H5Attribute_misc.hpp
 
 H5Converter_misc.hpp
 
 h5d_wrapper.hpp
 
 H5DataSet_misc.hpp
 
 H5Dataspace_misc.hpp
 
 H5DataType_misc.hpp
 
 h5e_wrapper.hpp
 
 H5Exception_misc.hpp
 
 h5f_wrapper.hpp
 
 H5File_misc.hpp
 
 H5FileDriver_misc.hpp
 
 H5Friends.hpp
 
 h5g_wrapper.hpp
 
 h5i_wrapper.hpp
 
 H5Inspector_decl.hpp
 
 H5Inspector_misc.hpp
 
 H5Iterables_misc.hpp
 
 h5l_wrapper.hpp
 
 H5Node_traits.hpp
 
 H5Node_traits_misc.hpp
 
 h5o_wrapper.hpp
 
 H5Object_misc.hpp
 
 h5p_wrapper.hpp
 
 H5Path_traits.hpp
 
 H5Path_traits_misc.hpp
 
 H5PropertyList_misc.hpp
 
 h5r_wrapper.hpp
 
 H5ReadWrite_misc.hpp
 
 H5Reference_misc.hpp
 
 h5s_wrapper.hpp
 
 H5Selection_misc.hpp
 
 H5Slice_traits.hpp
 
 H5Slice_traits_misc.hpp
 
 h5t_wrapper.hpp
 
 H5Utils.hpp
 
 string_padding.hpp
 
+
+
+ + + + diff --git a/dir_1d6aeb27bb4ae09e14bf6b9e21ff19e0.js b/dir_1d6aeb27bb4ae09e14bf6b9e21ff19e0.js new file mode 100644 index 000000000..107ec40be --- /dev/null +++ b/dir_1d6aeb27bb4ae09e14bf6b9e21ff19e0.js @@ -0,0 +1,44 @@ +var dir_1d6aeb27bb4ae09e14bf6b9e21ff19e0 = +[ + [ "H5_definitions.hpp", "_h5__definitions_8hpp.html", "_h5__definitions_8hpp" ], + [ "h5_wrapper.hpp", "h5__wrapper_8hpp.html", null ], + [ "h5a_wrapper.hpp", "h5a__wrapper_8hpp.html", null ], + [ "H5Annotate_traits.hpp", "_h5_annotate__traits_8hpp.html", "_h5_annotate__traits_8hpp" ], + [ "H5Annotate_traits_misc.hpp", "_h5_annotate__traits__misc_8hpp.html", null ], + [ "H5Attribute_misc.hpp", "_h5_attribute__misc_8hpp.html", null ], + [ "H5Converter_misc.hpp", "_h5_converter__misc_8hpp.html", null ], + [ "h5d_wrapper.hpp", "h5d__wrapper_8hpp.html", null ], + [ "H5DataSet_misc.hpp", "_h5_data_set__misc_8hpp.html", null ], + [ "H5Dataspace_misc.hpp", "_h5_dataspace__misc_8hpp.html", null ], + [ "H5DataType_misc.hpp", "_h5_data_type__misc_8hpp.html", "_h5_data_type__misc_8hpp" ], + [ "h5e_wrapper.hpp", "h5e__wrapper_8hpp.html", null ], + [ "H5Exception_misc.hpp", "_h5_exception__misc_8hpp.html", "_h5_exception__misc_8hpp" ], + [ "h5f_wrapper.hpp", "h5f__wrapper_8hpp.html", null ], + [ "H5File_misc.hpp", "_h5_file__misc_8hpp.html", null ], + [ "H5FileDriver_misc.hpp", "_h5_file_driver__misc_8hpp.html", null ], + [ "H5Friends.hpp", "_h5_friends_8hpp.html", null ], + [ "h5g_wrapper.hpp", "h5g__wrapper_8hpp.html", null ], + [ "h5i_wrapper.hpp", "h5i__wrapper_8hpp.html", null ], + [ "H5Inspector_decl.hpp", "_h5_inspector__decl_8hpp.html", "_h5_inspector__decl_8hpp" ], + [ "H5Inspector_misc.hpp", "_h5_inspector__misc_8hpp.html", null ], + [ "H5Iterables_misc.hpp", "_h5_iterables__misc_8hpp.html", null ], + [ "h5l_wrapper.hpp", "h5l__wrapper_8hpp.html", null ], + [ "H5Node_traits.hpp", "_h5_node__traits_8hpp.html", "_h5_node__traits_8hpp" ], + [ "H5Node_traits_misc.hpp", "_h5_node__traits__misc_8hpp.html", null ], + [ "h5o_wrapper.hpp", "h5o__wrapper_8hpp.html", null ], + [ "H5Object_misc.hpp", "_h5_object__misc_8hpp.html", null ], + [ "h5p_wrapper.hpp", "h5p__wrapper_8hpp.html", null ], + [ "H5Path_traits.hpp", "_h5_path__traits_8hpp.html", "_h5_path__traits_8hpp" ], + [ "H5Path_traits_misc.hpp", "_h5_path__traits__misc_8hpp.html", null ], + [ "H5PropertyList_misc.hpp", "_h5_property_list__misc_8hpp.html", null ], + [ "h5r_wrapper.hpp", "h5r__wrapper_8hpp.html", null ], + [ "H5ReadWrite_misc.hpp", "_h5_read_write__misc_8hpp.html", null ], + [ "H5Reference_misc.hpp", "_h5_reference__misc_8hpp.html", null ], + [ "h5s_wrapper.hpp", "h5s__wrapper_8hpp.html", null ], + [ "H5Selection_misc.hpp", "_h5_selection__misc_8hpp.html", null ], + [ "H5Slice_traits.hpp", "_h5_slice__traits_8hpp.html", "_h5_slice__traits_8hpp" ], + [ "H5Slice_traits_misc.hpp", "_h5_slice__traits__misc_8hpp.html", null ], + [ "h5t_wrapper.hpp", "h5t__wrapper_8hpp.html", null ], + [ "H5Utils.hpp", "_h5_utils_8hpp.html", null ], + [ "string_padding.hpp", "string__padding_8hpp.html", "string__padding_8hpp" ] +]; \ No newline at end of file diff --git a/dir_1d6aeb27bb4ae09e14bf6b9e21ff19e0_dep.map b/dir_1d6aeb27bb4ae09e14bf6b9e21ff19e0_dep.map new file mode 100644 index 000000000..3d76e4b15 --- /dev/null +++ b/dir_1d6aeb27bb4ae09e14bf6b9e21ff19e0_dep.map @@ -0,0 +1,4 @@ + + + + diff --git a/dir_1d6aeb27bb4ae09e14bf6b9e21ff19e0_dep.md5 b/dir_1d6aeb27bb4ae09e14bf6b9e21ff19e0_dep.md5 new file mode 100644 index 000000000..e52f3c092 --- /dev/null +++ b/dir_1d6aeb27bb4ae09e14bf6b9e21ff19e0_dep.md5 @@ -0,0 +1 @@ +60fbe5ccc688039b36f27f587f2ce3b2 \ No newline at end of file diff --git a/dir_1d6aeb27bb4ae09e14bf6b9e21ff19e0_dep.png b/dir_1d6aeb27bb4ae09e14bf6b9e21ff19e0_dep.png new file mode 100644 index 000000000..ed1427d99 Binary files /dev/null and b/dir_1d6aeb27bb4ae09e14bf6b9e21ff19e0_dep.png differ diff --git a/dir_59f157d0a2e2d139c92ad8277d62d3e2.html b/dir_59f157d0a2e2d139c92ad8277d62d3e2.html new file mode 100644 index 000000000..657c3ad59 --- /dev/null +++ b/dir_59f157d0a2e2d139c92ad8277d62d3e2.html @@ -0,0 +1,172 @@ + + + + + + + +HighFive: highfive Directory Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
highfive Directory Reference
+
+
+
+Directory dependency graph for highfive:
+
+
highfive
+ + + + + + + + + +
+ + + + + + +

+Directories

 bits
 
 h5easy_bits
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Files

 boost.hpp
 
 eigen.hpp
 
 H5Attribute.hpp
 
 H5DataSet.hpp
 
 H5DataSpace.hpp
 
 H5DataType.hpp
 
 H5Easy.hpp
 
 H5Exception.hpp
 
 H5File.hpp
 
 H5FileDriver.hpp
 
 H5Group.hpp
 
 H5Object.hpp
 
 H5PropertyList.hpp
 
 H5Reference.hpp
 
 H5Selection.hpp
 
 H5Utility.hpp
 
 H5Version.hpp
 
 half_float.hpp
 
 highfive.hpp
 
+
+
+ + + + diff --git a/dir_59f157d0a2e2d139c92ad8277d62d3e2.js b/dir_59f157d0a2e2d139c92ad8277d62d3e2.js new file mode 100644 index 000000000..bf177d9ff --- /dev/null +++ b/dir_59f157d0a2e2d139c92ad8277d62d3e2.js @@ -0,0 +1,24 @@ +var dir_59f157d0a2e2d139c92ad8277d62d3e2 = +[ + [ "bits", "dir_1d6aeb27bb4ae09e14bf6b9e21ff19e0.html", "dir_1d6aeb27bb4ae09e14bf6b9e21ff19e0" ], + [ "h5easy_bits", "dir_eced565d6e1e1da7c55d194ee737dc53.html", "dir_eced565d6e1e1da7c55d194ee737dc53" ], + [ "boost.hpp", "boost_8hpp.html", null ], + [ "eigen.hpp", "eigen_8hpp.html", null ], + [ "H5Attribute.hpp", "_h5_attribute_8hpp.html", "_h5_attribute_8hpp" ], + [ "H5DataSet.hpp", "_h5_data_set_8hpp.html", "_h5_data_set_8hpp" ], + [ "H5DataSpace.hpp", "_h5_data_space_8hpp.html", "_h5_data_space_8hpp" ], + [ "H5DataType.hpp", "_h5_data_type_8hpp.html", "_h5_data_type_8hpp" ], + [ "H5Easy.hpp", "_h5_easy_8hpp.html", "_h5_easy_8hpp" ], + [ "H5Exception.hpp", "_h5_exception_8hpp.html", "_h5_exception_8hpp" ], + [ "H5File.hpp", "_h5_file_8hpp.html", "_h5_file_8hpp" ], + [ "H5FileDriver.hpp", "_h5_file_driver_8hpp.html", "_h5_file_driver_8hpp" ], + [ "H5Group.hpp", "_h5_group_8hpp.html", "_h5_group_8hpp" ], + [ "H5Object.hpp", "_h5_object_8hpp.html", "_h5_object_8hpp" ], + [ "H5PropertyList.hpp", "_h5_property_list_8hpp.html", "_h5_property_list_8hpp" ], + [ "H5Reference.hpp", "_h5_reference_8hpp.html", "_h5_reference_8hpp" ], + [ "H5Selection.hpp", "_h5_selection_8hpp.html", "_h5_selection_8hpp" ], + [ "H5Utility.hpp", "_h5_utility_8hpp.html", "_h5_utility_8hpp" ], + [ "H5Version.hpp", "_h5_version_8hpp.html", "_h5_version_8hpp" ], + [ "half_float.hpp", "half__float_8hpp.html", "half__float_8hpp" ], + [ "highfive.hpp", "highfive_8hpp.html", null ] +]; \ No newline at end of file diff --git a/dir_59f157d0a2e2d139c92ad8277d62d3e2_dep.map b/dir_59f157d0a2e2d139c92ad8277d62d3e2_dep.map new file mode 100644 index 000000000..5b5544722 --- /dev/null +++ b/dir_59f157d0a2e2d139c92ad8277d62d3e2_dep.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/dir_59f157d0a2e2d139c92ad8277d62d3e2_dep.md5 b/dir_59f157d0a2e2d139c92ad8277d62d3e2_dep.md5 new file mode 100644 index 000000000..827824817 --- /dev/null +++ b/dir_59f157d0a2e2d139c92ad8277d62d3e2_dep.md5 @@ -0,0 +1 @@ +f2c7665840354648c541335c58619f29 \ No newline at end of file diff --git a/dir_59f157d0a2e2d139c92ad8277d62d3e2_dep.png b/dir_59f157d0a2e2d139c92ad8277d62d3e2_dep.png new file mode 100644 index 000000000..6bdbc8c03 Binary files /dev/null and b/dir_59f157d0a2e2d139c92ad8277d62d3e2_dep.png differ diff --git a/dir_e68e8157741866f444e17edd764ebbae.html b/dir_e68e8157741866f444e17edd764ebbae.html new file mode 100644 index 000000000..99aa2864b --- /dev/null +++ b/dir_e68e8157741866f444e17edd764ebbae.html @@ -0,0 +1,109 @@ + + + + + + + +HighFive: /home/runner/work/HighFive/HighFive/doc Directory Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
doc Directory Reference
+
+
+
+
+ + + + diff --git a/dir_eced565d6e1e1da7c55d194ee737dc53.html b/dir_eced565d6e1e1da7c55d194ee737dc53.html new file mode 100644 index 000000000..b2e5c9da7 --- /dev/null +++ b/dir_eced565d6e1e1da7c55d194ee737dc53.html @@ -0,0 +1,136 @@ + + + + + + + +HighFive: highfive/h5easy_bits Directory Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
h5easy_bits Directory Reference
+
+
+
+Directory dependency graph for h5easy_bits:
+
+
highfive/h5easy_bits
+ + + + +
+ + + + + + + + + + + + + + + + +

+Files

 H5Easy_Eigen.hpp
 
 H5Easy_misc.hpp
 
 H5Easy_opencv.hpp
 
 H5Easy_public.hpp
 
 H5Easy_scalar.hpp
 
 H5Easy_vector.hpp
 
 H5Easy_xtensor.hpp
 
+
+
+ + + + diff --git a/dir_eced565d6e1e1da7c55d194ee737dc53.js b/dir_eced565d6e1e1da7c55d194ee737dc53.js new file mode 100644 index 000000000..ceaabf6be --- /dev/null +++ b/dir_eced565d6e1e1da7c55d194ee737dc53.js @@ -0,0 +1,10 @@ +var dir_eced565d6e1e1da7c55d194ee737dc53 = +[ + [ "H5Easy_Eigen.hpp", "_h5_easy___eigen_8hpp.html", null ], + [ "H5Easy_misc.hpp", "_h5_easy__misc_8hpp.html", null ], + [ "H5Easy_opencv.hpp", "_h5_easy__opencv_8hpp.html", null ], + [ "H5Easy_public.hpp", "_h5_easy__public_8hpp.html", "_h5_easy__public_8hpp" ], + [ "H5Easy_scalar.hpp", "_h5_easy__scalar_8hpp.html", null ], + [ "H5Easy_vector.hpp", "_h5_easy__vector_8hpp.html", null ], + [ "H5Easy_xtensor.hpp", "_h5_easy__xtensor_8hpp.html", null ] +]; \ No newline at end of file diff --git a/dir_eced565d6e1e1da7c55d194ee737dc53_dep.map b/dir_eced565d6e1e1da7c55d194ee737dc53_dep.map new file mode 100644 index 000000000..60dabb9d2 --- /dev/null +++ b/dir_eced565d6e1e1da7c55d194ee737dc53_dep.map @@ -0,0 +1,4 @@ + + + + diff --git a/dir_eced565d6e1e1da7c55d194ee737dc53_dep.md5 b/dir_eced565d6e1e1da7c55d194ee737dc53_dep.md5 new file mode 100644 index 000000000..99d6b77ee --- /dev/null +++ b/dir_eced565d6e1e1da7c55d194ee737dc53_dep.md5 @@ -0,0 +1 @@ +83e4f2aac7ab7d7095b1a8652b5b84b4 \ No newline at end of file diff --git a/dir_eced565d6e1e1da7c55d194ee737dc53_dep.png b/dir_eced565d6e1e1da7c55d194ee737dc53_dep.png new file mode 100644 index 000000000..78d257ba7 Binary files /dev/null and b/dir_eced565d6e1e1da7c55d194ee737dc53_dep.png differ diff --git a/doc.svg b/doc.svg new file mode 100644 index 000000000..0b928a531 --- /dev/null +++ b/doc.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/docd.svg b/docd.svg new file mode 100644 index 000000000..ac18b2755 --- /dev/null +++ b/docd.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/doxygen-awesome.css b/doxygen-awesome.css new file mode 100644 index 000000000..ac7f0608e --- /dev/null +++ b/doxygen-awesome.css @@ -0,0 +1,2669 @@ +/** + +Doxygen Awesome +https://github.com/jothepro/doxygen-awesome-css + +MIT License + +Copyright (c) 2021 - 2023 jothepro + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +*/ + +html { + /* primary theme color. This will affect the entire websites color scheme: links, arrows, labels, ... */ + --primary-color: #1779c4; + --primary-dark-color: #335c80; + --primary-light-color: #70b1e9; + + /* page base colors */ + --page-background-color: #ffffff; + --page-foreground-color: #2f4153; + --page-secondary-foreground-color: #6f7e8e; + + /* color for all separators on the website: hr, borders, ... */ + --separator-color: #dedede; + + /* border radius for all rounded components. Will affect many components, like dropdowns, memitems, codeblocks, ... */ + --border-radius-large: 8px; + --border-radius-small: 4px; + --border-radius-medium: 6px; + + /* default spacings. Most components reference these values for spacing, to provide uniform spacing on the page. */ + --spacing-small: 5px; + --spacing-medium: 10px; + --spacing-large: 16px; + + /* default box shadow used for raising an element above the normal content. Used in dropdowns, search result, ... */ + --box-shadow: 0 2px 8px 0 rgba(0,0,0,.075); + + --odd-color: rgba(0,0,0,.028); + + /* font-families. will affect all text on the website + * font-family: the normal font for text, headlines, menus + * font-family-monospace: used for preformatted text in memtitle, code, fragments + */ + --font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif; + --font-family-monospace: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; + + /* font sizes */ + --page-font-size: 15.6px; + --navigation-font-size: 14.4px; + --toc-font-size: 13.4px; + --code-font-size: 14px; /* affects code, fragment */ + --title-font-size: 22px; + + /* content text properties. These only affect the page content, not the navigation or any other ui elements */ + --content-line-height: 27px; + /* The content is centered and constraint in it's width. To make the content fill the whole page, set the variable to auto.*/ + --content-maxwidth: 1050px; + --table-line-height: 24px; + --toc-sticky-top: var(--spacing-medium); + --toc-width: 200px; + --toc-max-height: calc(100vh - 2 * var(--spacing-medium) - 85px); + + /* colors for various content boxes: @warning, @note, @deprecated @bug */ + --warning-color: #faf3d8; + --warning-color-dark: #f3a600; + --warning-color-darker: #5f4204; + --note-color: #e4f3ff; + --note-color-dark: #1879C4; + --note-color-darker: #274a5c; + --todo-color: #e4dafd; + --todo-color-dark: #5b2bdd; + --todo-color-darker: #2a0d72; + --deprecated-color: #ecf0f3; + --deprecated-color-dark: #5b6269; + --deprecated-color-darker: #43454a; + --bug-color: #f8d1cc; + --bug-color-dark: #b61825; + --bug-color-darker: #75070f; + --invariant-color: #d8f1e3; + --invariant-color-dark: #44b86f; + --invariant-color-darker: #265532; + + /* blockquote colors */ + --blockquote-background: #f8f9fa; + --blockquote-foreground: #636568; + + /* table colors */ + --tablehead-background: #f1f1f1; + --tablehead-foreground: var(--page-foreground-color); + + /* menu-display: block | none + * Visibility of the top navigation on screens >= 768px. On smaller screen the menu is always visible. + * `GENERATE_TREEVIEW` MUST be enabled! + */ + --menu-display: block; + + --menu-focus-foreground: var(--page-background-color); + --menu-focus-background: var(--primary-color); + --menu-selected-background: rgba(0,0,0,.05); + + + --header-background: var(--page-background-color); + --header-foreground: var(--page-foreground-color); + + /* searchbar colors */ + --searchbar-background: var(--side-nav-background); + --searchbar-foreground: var(--page-foreground-color); + + /* searchbar size + * (`searchbar-width` is only applied on screens >= 768px. + * on smaller screens the searchbar will always fill the entire screen width) */ + --searchbar-height: 33px; + --searchbar-width: 210px; + --searchbar-border-radius: var(--searchbar-height); + + /* code block colors */ + --code-background: #f5f5f5; + --code-foreground: var(--page-foreground-color); + + /* fragment colors */ + --fragment-background: #F8F9FA; + --fragment-foreground: #37474F; + --fragment-keyword: #bb6bb2; + --fragment-keywordtype: #8258b3; + --fragment-keywordflow: #d67c3b; + --fragment-token: #438a59; + --fragment-comment: #969696; + --fragment-link: #5383d6; + --fragment-preprocessor: #46aaa5; + --fragment-linenumber-color: #797979; + --fragment-linenumber-background: #f4f4f5; + --fragment-linenumber-border: #e3e5e7; + --fragment-lineheight: 20px; + + /* sidebar navigation (treeview) colors */ + --side-nav-background: #fbfbfb; + --side-nav-foreground: var(--page-foreground-color); + --side-nav-arrow-opacity: 0; + --side-nav-arrow-hover-opacity: 0.9; + + --toc-background: var(--side-nav-background); + --toc-foreground: var(--side-nav-foreground); + + /* height of an item in any tree / collapsible table */ + --tree-item-height: 30px; + + --memname-font-size: var(--code-font-size); + --memtitle-font-size: 18px; + + --webkit-scrollbar-size: 7px; + --webkit-scrollbar-padding: 4px; + --webkit-scrollbar-color: var(--separator-color); + + --animation-duration: .12s +} + +@media screen and (max-width: 767px) { + html { + --page-font-size: 16px; + --navigation-font-size: 16px; + --toc-font-size: 15px; + --code-font-size: 15px; /* affects code, fragment */ + --title-font-size: 22px; + } +} + +@media (prefers-color-scheme: dark) { + html:not(.light-mode) { + color-scheme: dark; + + --primary-color: #1982d2; + --primary-dark-color: #86a9c4; + --primary-light-color: #4779ac; + + --box-shadow: 0 2px 8px 0 rgba(0,0,0,.35); + + --odd-color: rgba(100,100,100,.06); + + --menu-selected-background: rgba(0,0,0,.4); + + --page-background-color: #1C1D1F; + --page-foreground-color: #d2dbde; + --page-secondary-foreground-color: #859399; + --separator-color: #38393b; + --side-nav-background: #252628; + + --code-background: #2a2c2f; + + --tablehead-background: #2a2c2f; + + --blockquote-background: #222325; + --blockquote-foreground: #7e8c92; + + --warning-color: #3b2e04; + --warning-color-dark: #f1b602; + --warning-color-darker: #ceb670; + --note-color: #163750; + --note-color-dark: #1982D2; + --note-color-darker: #dcf0fa; + --todo-color: #2a2536; + --todo-color-dark: #7661b3; + --todo-color-darker: #ae9ed6; + --deprecated-color: #2e323b; + --deprecated-color-dark: #738396; + --deprecated-color-darker: #abb0bd; + --bug-color: #2e1917; + --bug-color-dark: #ad2617; + --bug-color-darker: #f5b1aa; + --invariant-color: #303a35; + --invariant-color-dark: #76ce96; + --invariant-color-darker: #cceed5; + + --fragment-background: #282c34; + --fragment-foreground: #dbe4eb; + --fragment-keyword: #cc99cd; + --fragment-keywordtype: #ab99cd; + --fragment-keywordflow: #e08000; + --fragment-token: #7ec699; + --fragment-comment: #999999; + --fragment-link: #98c0e3; + --fragment-preprocessor: #65cabe; + --fragment-linenumber-color: #cccccc; + --fragment-linenumber-background: #35393c; + --fragment-linenumber-border: #1f1f1f; + } +} + +/* dark mode variables are defined twice, to support both the dark-mode without and with doxygen-awesome-darkmode-toggle.js */ +html.dark-mode { + color-scheme: dark; + + --primary-color: #1982d2; + --primary-dark-color: #86a9c4; + --primary-light-color: #4779ac; + + --box-shadow: 0 2px 8px 0 rgba(0,0,0,.30); + + --odd-color: rgba(100,100,100,.06); + + --menu-selected-background: rgba(0,0,0,.4); + + --page-background-color: #1C1D1F; + --page-foreground-color: #d2dbde; + --page-secondary-foreground-color: #859399; + --separator-color: #38393b; + --side-nav-background: #252628; + + --code-background: #2a2c2f; + + --tablehead-background: #2a2c2f; + + --blockquote-background: #222325; + --blockquote-foreground: #7e8c92; + + --warning-color: #3b2e04; + --warning-color-dark: #f1b602; + --warning-color-darker: #ceb670; + --note-color: #163750; + --note-color-dark: #1982D2; + --note-color-darker: #dcf0fa; + --todo-color: #2a2536; + --todo-color-dark: #7661b3; + --todo-color-darker: #ae9ed6; + --deprecated-color: #2e323b; + --deprecated-color-dark: #738396; + --deprecated-color-darker: #abb0bd; + --bug-color: #2e1917; + --bug-color-dark: #ad2617; + --bug-color-darker: #f5b1aa; + --invariant-color: #303a35; + --invariant-color-dark: #76ce96; + --invariant-color-darker: #cceed5; + + --fragment-background: #282c34; + --fragment-foreground: #dbe4eb; + --fragment-keyword: #cc99cd; + --fragment-keywordtype: #ab99cd; + --fragment-keywordflow: #e08000; + --fragment-token: #7ec699; + --fragment-comment: #999999; + --fragment-link: #98c0e3; + --fragment-preprocessor: #65cabe; + --fragment-linenumber-color: #cccccc; + --fragment-linenumber-background: #35393c; + --fragment-linenumber-border: #1f1f1f; +} + +body { + color: var(--page-foreground-color); + background-color: var(--page-background-color); + font-size: var(--page-font-size); +} + +body, table, div, p, dl, #nav-tree .label, .title, +.sm-dox a, .sm-dox a:hover, .sm-dox a:focus, #projectname, +.SelectItem, #MSearchField, .navpath li.navelem a, +.navpath li.navelem a:hover, p.reference, p.definition { + font-family: var(--font-family); +} + +h1, h2, h3, h4, h5 { + margin-top: 1em; + font-weight: 600; + line-height: initial; +} + +p, div, table, dl, p.reference, p.definition { + font-size: var(--page-font-size); +} + +p.reference, p.definition { + color: var(--page-secondary-foreground-color); +} + +a:link, a:visited, a:hover, a:focus, a:active { + color: var(--primary-color) !important; + font-weight: 500; +} + +a.anchor { + scroll-margin-top: var(--spacing-large); + display: block; +} + +/* + Title and top navigation + */ + +#top { + background: var(--header-background); + border-bottom: 1px solid var(--separator-color); +} + +@media screen and (min-width: 768px) { + #top { + display: flex; + flex-wrap: wrap; + justify-content: space-between; + align-items: center; + } +} + +#main-nav { + flex-grow: 5; + padding: var(--spacing-small) var(--spacing-medium); +} + +#titlearea { + width: auto; + padding: var(--spacing-medium) var(--spacing-large); + background: none; + color: var(--header-foreground); + border-bottom: none; +} + +@media screen and (max-width: 767px) { + #titlearea { + padding-bottom: var(--spacing-small); + } +} + +#titlearea table tbody tr { + height: auto !important; +} + +#projectname { + font-size: var(--title-font-size); + font-weight: 600; +} + +#projectnumber { + font-family: inherit; + font-size: 60%; +} + +#projectbrief { + font-family: inherit; + font-size: 80%; +} + +#projectlogo { + vertical-align: middle; +} + +#projectlogo img { + max-height: calc(var(--title-font-size) * 2); + margin-right: var(--spacing-small); +} + +.sm-dox, .tabs, .tabs2, .tabs3 { + background: none; + padding: 0; +} + +.tabs, .tabs2, .tabs3 { + border-bottom: 1px solid var(--separator-color); + margin-bottom: -1px; +} + +.main-menu-btn-icon, .main-menu-btn-icon:before, .main-menu-btn-icon:after { + background: var(--page-secondary-foreground-color); +} + +@media screen and (max-width: 767px) { + .sm-dox a span.sub-arrow { + background: var(--code-background); + } + + #main-menu a.has-submenu span.sub-arrow { + color: var(--page-secondary-foreground-color); + border-radius: var(--border-radius-medium); + } + + #main-menu a.has-submenu:hover span.sub-arrow { + color: var(--page-foreground-color); + } +} + +@media screen and (min-width: 768px) { + .sm-dox li, .tablist li { + display: var(--menu-display); + } + + .sm-dox a span.sub-arrow { + border-color: var(--header-foreground) transparent transparent transparent; + } + + .sm-dox a:hover span.sub-arrow { + border-color: var(--menu-focus-foreground) transparent transparent transparent; + } + + .sm-dox ul a span.sub-arrow { + border-color: transparent transparent transparent var(--page-foreground-color); + } + + .sm-dox ul a:hover span.sub-arrow { + border-color: transparent transparent transparent var(--menu-focus-foreground); + } +} + +.sm-dox ul { + background: var(--page-background-color); + box-shadow: var(--box-shadow); + border: 1px solid var(--separator-color); + border-radius: var(--border-radius-medium) !important; + padding: var(--spacing-small); + animation: ease-out 150ms slideInMenu; +} + +@keyframes slideInMenu { + from { + opacity: 0; + transform: translate(0px, -2px); + } + + to { + opacity: 1; + transform: translate(0px, 0px); + } +} + +.sm-dox ul a { + color: var(--page-foreground-color) !important; + background: var(--page-background-color); + font-size: var(--navigation-font-size); +} + +.sm-dox>li>ul:after { + border-bottom-color: var(--page-background-color) !important; +} + +.sm-dox>li>ul:before { + border-bottom-color: var(--separator-color) !important; +} + +.sm-dox ul a:hover, .sm-dox ul a:active, .sm-dox ul a:focus { + font-size: var(--navigation-font-size) !important; + color: var(--menu-focus-foreground) !important; + text-shadow: none; + background-color: var(--menu-focus-background); + border-radius: var(--border-radius-small) !important; +} + +.sm-dox a, .sm-dox a:focus, .tablist li, .tablist li a, .tablist li.current a { + text-shadow: none; + background: transparent; + background-image: none !important; + color: var(--header-foreground) !important; + font-weight: normal; + font-size: var(--navigation-font-size); + border-radius: var(--border-radius-small) !important; +} + +.sm-dox a:focus { + outline: auto; +} + +.sm-dox a:hover, .sm-dox a:active, .tablist li a:hover { + text-shadow: none; + font-weight: normal; + background: var(--menu-focus-background); + color: var(--menu-focus-foreground) !important; + border-radius: var(--border-radius-small) !important; + font-size: var(--navigation-font-size); +} + +.tablist li.current { + border-radius: var(--border-radius-small); + background: var(--menu-selected-background); +} + +.tablist li { + margin: var(--spacing-small) 0 var(--spacing-small) var(--spacing-small); +} + +.tablist a { + padding: 0 var(--spacing-large); +} + + +/* + Search box + */ + +#MSearchBox { + height: var(--searchbar-height); + background: var(--searchbar-background); + border-radius: var(--searchbar-border-radius); + border: 1px solid var(--separator-color); + overflow: hidden; + width: var(--searchbar-width); + position: relative; + box-shadow: none; + display: block; + margin-top: 0; +} + +/* until Doxygen 1.9.4 */ +.left img#MSearchSelect { + left: 0; + user-select: none; + padding-left: 8px; +} + +/* Doxygen 1.9.5 */ +.left span#MSearchSelect { + left: 0; + user-select: none; + margin-left: 8px; + padding: 0; +} + +.left #MSearchSelect[src$=".png"] { + padding-left: 0 +} + +.SelectionMark { + user-select: none; +} + +.tabs .left #MSearchSelect { + padding-left: 0; +} + +.tabs #MSearchBox { + position: absolute; + right: var(--spacing-medium); +} + +@media screen and (max-width: 767px) { + .tabs #MSearchBox { + position: relative; + right: 0; + margin-left: var(--spacing-medium); + margin-top: 0; + } +} + +#MSearchSelectWindow, #MSearchResultsWindow { + z-index: 9999; +} + +#MSearchBox.MSearchBoxActive { + border-color: var(--primary-color); + box-shadow: inset 0 0 0 1px var(--primary-color); +} + +#main-menu > li:last-child { + margin-right: 0; +} + +@media screen and (max-width: 767px) { + #main-menu > li:last-child { + height: 50px; + } +} + +#MSearchField { + font-size: var(--navigation-font-size); + height: calc(var(--searchbar-height) - 2px); + background: transparent; + width: calc(var(--searchbar-width) - 64px); +} + +.MSearchBoxActive #MSearchField { + color: var(--searchbar-foreground); +} + +#MSearchSelect { + top: calc(calc(var(--searchbar-height) / 2) - 11px); +} + +#MSearchBox span.left, #MSearchBox span.right { + background: none; + background-image: none; +} + +#MSearchBox span.right { + padding-top: calc(calc(var(--searchbar-height) / 2) - 12px); + position: absolute; + right: var(--spacing-small); +} + +.tabs #MSearchBox span.right { + top: calc(calc(var(--searchbar-height) / 2) - 12px); +} + +@keyframes slideInSearchResults { + from { + opacity: 0; + transform: translate(0, 15px); + } + + to { + opacity: 1; + transform: translate(0, 20px); + } +} + +#MSearchResultsWindow { + left: auto !important; + right: var(--spacing-medium); + border-radius: var(--border-radius-large); + border: 1px solid var(--separator-color); + transform: translate(0, 20px); + box-shadow: var(--box-shadow); + animation: ease-out 280ms slideInSearchResults; + background: var(--page-background-color); +} + +iframe#MSearchResults { + margin: 4px; +} + +iframe { + color-scheme: normal; +} + +@media (prefers-color-scheme: dark) { + html:not(.light-mode) iframe#MSearchResults { + filter: invert() hue-rotate(180deg); + } +} + +html.dark-mode iframe#MSearchResults { + filter: invert() hue-rotate(180deg); +} + +#MSearchResults .SRPage { + background-color: transparent; +} + +#MSearchResults .SRPage .SREntry { + font-size: 10pt; + padding: var(--spacing-small) var(--spacing-medium); +} + +#MSearchSelectWindow { + border: 1px solid var(--separator-color); + border-radius: var(--border-radius-medium); + box-shadow: var(--box-shadow); + background: var(--page-background-color); + padding-top: var(--spacing-small); + padding-bottom: var(--spacing-small); +} + +#MSearchSelectWindow a.SelectItem { + font-size: var(--navigation-font-size); + line-height: var(--content-line-height); + margin: 0 var(--spacing-small); + border-radius: var(--border-radius-small); + color: var(--page-foreground-color) !important; + font-weight: normal; +} + +#MSearchSelectWindow a.SelectItem:hover { + background: var(--menu-focus-background); + color: var(--menu-focus-foreground) !important; +} + +@media screen and (max-width: 767px) { + #MSearchBox { + margin-top: var(--spacing-medium); + margin-bottom: var(--spacing-medium); + width: calc(100vw - 30px); + } + + #main-menu > li:last-child { + float: none !important; + } + + #MSearchField { + width: calc(100vw - 110px); + } + + @keyframes slideInSearchResultsMobile { + from { + opacity: 0; + transform: translate(0, 15px); + } + + to { + opacity: 1; + transform: translate(0, 20px); + } + } + + #MSearchResultsWindow { + left: var(--spacing-medium) !important; + right: var(--spacing-medium); + overflow: auto; + transform: translate(0, 20px); + animation: ease-out 280ms slideInSearchResultsMobile; + width: auto !important; + } + + /* + * Overwrites for fixing the searchbox on mobile in doxygen 1.9.2 + */ + label.main-menu-btn ~ #searchBoxPos1 { + top: 3px !important; + right: 6px !important; + left: 45px; + display: flex; + } + + label.main-menu-btn ~ #searchBoxPos1 > #MSearchBox { + margin-top: 0; + margin-bottom: 0; + flex-grow: 2; + float: left; + } +} + +/* + Tree view + */ + +#side-nav { + padding: 0 !important; + background: var(--side-nav-background); + min-width: 8px; + max-width: 50vw; +} + +@media screen and (max-width: 767px) { + #side-nav { + display: none; + } + + #doc-content { + margin-left: 0 !important; + } +} + +#nav-tree { + background: transparent; + margin-right: 1px; +} + +#nav-tree .label { + font-size: var(--navigation-font-size); +} + +#nav-tree .item { + height: var(--tree-item-height); + line-height: var(--tree-item-height); +} + +#nav-sync { + bottom: 12px; + right: 12px; + top: auto !important; + user-select: none; +} + +#nav-tree .selected { + text-shadow: none; + background-image: none; + background-color: transparent; + position: relative; +} + +#nav-tree .selected::after { + content: ""; + position: absolute; + top: 1px; + bottom: 1px; + left: 0; + width: 4px; + border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0; + background: var(--primary-color); +} + + +#nav-tree a { + color: var(--side-nav-foreground) !important; + font-weight: normal; +} + +#nav-tree a:focus { + outline-style: auto; +} + +#nav-tree .arrow { + opacity: var(--side-nav-arrow-opacity); +} + +.arrow { + color: inherit; + cursor: pointer; + font-size: 45%; + vertical-align: middle; + margin-right: 2px; + font-family: serif; + height: auto; + text-align: right; +} + +#nav-tree div.item:hover .arrow, #nav-tree a:focus .arrow { + opacity: var(--side-nav-arrow-hover-opacity); +} + +#nav-tree .selected a { + color: var(--primary-color) !important; + font-weight: bolder; + font-weight: 600; +} + +.ui-resizable-e { + width: 4px; + background: transparent; + box-shadow: inset -1px 0 0 0 var(--separator-color); +} + +/* + Contents + */ + +div.header { + border-bottom: 1px solid var(--separator-color); + background-color: var(--page-background-color); + background-image: none; +} + +@media screen and (min-width: 1000px) { + #doc-content > div > div.contents, + .PageDoc > div.contents { + display: flex; + flex-direction: row-reverse; + flex-wrap: nowrap; + align-items: flex-start; + } + + div.contents .textblock { + min-width: 200px; + flex-grow: 1; + } +} + +div.contents, div.header .title, div.header .summary { + max-width: var(--content-maxwidth); +} + +div.contents, div.header .title { + line-height: initial; + margin: calc(var(--spacing-medium) + .2em) auto var(--spacing-medium) auto; +} + +div.header .summary { + margin: var(--spacing-medium) auto 0 auto; +} + +div.headertitle { + padding: 0; +} + +div.header .title { + font-weight: 600; + font-size: 225%; + padding: var(--spacing-medium) var(--spacing-large); + word-break: break-word; +} + +div.header .summary { + width: auto; + display: block; + float: none; + padding: 0 var(--spacing-large); +} + +td.memSeparator { + border-color: var(--separator-color); +} + +span.mlabel { + background: var(--primary-color); + border: none; + padding: 4px 9px; + border-radius: 12px; + margin-right: var(--spacing-medium); +} + +span.mlabel:last-of-type { + margin-right: 2px; +} + +div.contents { + padding: 0 var(--spacing-large); +} + +div.contents p, div.contents li { + line-height: var(--content-line-height); +} + +div.contents div.dyncontent { + margin: var(--spacing-medium) 0; +} + +@media (prefers-color-scheme: dark) { + html:not(.light-mode) div.contents div.dyncontent img, + html:not(.light-mode) div.contents center img, + html:not(.light-mode) div.contents > table img, + html:not(.light-mode) div.contents div.dyncontent iframe, + html:not(.light-mode) div.contents center iframe, + html:not(.light-mode) div.contents table iframe, + html:not(.light-mode) div.contents .dotgraph iframe { + filter: brightness(89%) hue-rotate(180deg) invert(); + } +} + +html.dark-mode div.contents div.dyncontent img, +html.dark-mode div.contents center img, +html.dark-mode div.contents > table img, +html.dark-mode div.contents div.dyncontent iframe, +html.dark-mode div.contents center iframe, +html.dark-mode div.contents table iframe, +html.dark-mode div.contents .dotgraph iframe + { + filter: brightness(89%) hue-rotate(180deg) invert(); +} + +h2.groupheader { + border-bottom: 0px; + color: var(--page-foreground-color); + box-shadow: + 100px 0 var(--page-background-color), + -100px 0 var(--page-background-color), + 100px 0.75px var(--separator-color), + -100px 0.75px var(--separator-color), + 500px 0 var(--page-background-color), + -500px 0 var(--page-background-color), + 500px 0.75px var(--separator-color), + -500px 0.75px var(--separator-color), + 900px 0 var(--page-background-color), + -900px 0 var(--page-background-color), + 900px 0.75px var(--separator-color), + -900px 0.75px var(--separator-color), + 1400px 0 var(--page-background-color), + -1400px 0 var(--page-background-color), + 1400px 0.75px var(--separator-color), + -1400px 0.75px var(--separator-color), + 1900px 0 var(--page-background-color), + -1900px 0 var(--page-background-color), + 1900px 0.75px var(--separator-color), + -1900px 0.75px var(--separator-color); +} + +blockquote { + margin: 0 var(--spacing-medium) 0 var(--spacing-medium); + padding: var(--spacing-small) var(--spacing-large); + background: var(--blockquote-background); + color: var(--blockquote-foreground); + border-left: 0; + overflow: visible; + border-radius: var(--border-radius-medium); + overflow: visible; + position: relative; +} + +blockquote::before, blockquote::after { + font-weight: bold; + font-family: serif; + font-size: 360%; + opacity: .15; + position: absolute; +} + +blockquote::before { + content: "“"; + left: -10px; + top: 4px; +} + +blockquote::after { + content: "”"; + right: -8px; + bottom: -25px; +} + +blockquote p { + margin: var(--spacing-small) 0 var(--spacing-medium) 0; +} +.paramname { + font-weight: 600; + color: var(--primary-dark-color); +} + +.paramname > code { + border: 0; +} + +table.params .paramname { + font-weight: 600; + font-family: var(--font-family-monospace); + font-size: var(--code-font-size); + padding-right: var(--spacing-small); + line-height: var(--table-line-height); +} + +h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { + text-shadow: 0 0 15px var(--primary-light-color); +} + +.alphachar a { + color: var(--page-foreground-color); +} + +.dotgraph { + max-width: 100%; + overflow-x: scroll; +} + +.dotgraph .caption { + position: sticky; + left: 0; +} + +/* Wrap Graphviz graphs with the `interactive_dotgraph` class if `INTERACTIVE_SVG = YES` */ +.interactive_dotgraph .dotgraph iframe { + max-width: 100%; +} + +/* + Table of Contents + */ + +div.contents .toc { + max-height: var(--toc-max-height); + min-width: var(--toc-width); + border: 0; + border-left: 1px solid var(--separator-color); + border-radius: 0; + background-color: transparent; + box-shadow: none; + position: sticky; + top: var(--toc-sticky-top); + padding: 0 var(--spacing-large); + margin: var(--spacing-small) 0 var(--spacing-large) var(--spacing-large); +} + +div.toc h3 { + color: var(--toc-foreground); + font-size: var(--navigation-font-size); + margin: var(--spacing-large) 0 var(--spacing-medium) 0; +} + +div.toc li { + padding: 0; + background: none; + line-height: var(--toc-font-size); + margin: var(--toc-font-size) 0 0 0; +} + +div.toc li::before { + display: none; +} + +div.toc ul { + margin-top: 0 +} + +div.toc li a { + font-size: var(--toc-font-size); + color: var(--page-foreground-color) !important; + text-decoration: none; +} + +div.toc li a:hover, div.toc li a.active { + color: var(--primary-color) !important; +} + +div.toc li a.aboveActive { + color: var(--page-secondary-foreground-color) !important; +} + + +@media screen and (max-width: 999px) { + div.contents .toc { + max-height: 45vh; + float: none; + width: auto; + margin: 0 0 var(--spacing-medium) 0; + position: relative; + top: 0; + position: relative; + border: 1px solid var(--separator-color); + border-radius: var(--border-radius-medium); + background-color: var(--toc-background); + box-shadow: var(--box-shadow); + } + + div.contents .toc.interactive { + max-height: calc(var(--navigation-font-size) + 2 * var(--spacing-large)); + overflow: hidden; + } + + div.contents .toc > h3 { + -webkit-tap-highlight-color: transparent; + cursor: pointer; + position: sticky; + top: 0; + background-color: var(--toc-background); + margin: 0; + padding: var(--spacing-large) 0; + display: block; + } + + div.contents .toc.interactive > h3::before { + content: ""; + width: 0; + height: 0; + border-left: 4px solid transparent; + border-right: 4px solid transparent; + border-top: 5px solid var(--primary-color); + display: inline-block; + margin-right: var(--spacing-small); + margin-bottom: calc(var(--navigation-font-size) / 4); + transform: rotate(-90deg); + transition: transform var(--animation-duration) ease-out; + } + + div.contents .toc.interactive.open > h3::before { + transform: rotate(0deg); + } + + div.contents .toc.interactive.open { + max-height: 45vh; + overflow: auto; + transition: max-height 0.2s ease-in-out; + } + + div.contents .toc a, div.contents .toc a.active { + color: var(--primary-color) !important; + } + + div.contents .toc a:hover { + text-decoration: underline; + } +} + +/* + Code & Fragments + */ + +code, div.fragment, pre.fragment { + border-radius: var(--border-radius-small); + border: 1px solid var(--separator-color); + overflow: hidden; +} + +code { + display: inline; + background: var(--code-background); + color: var(--code-foreground); + padding: 2px 6px; +} + +div.fragment, pre.fragment { + margin: var(--spacing-medium) 0; + padding: calc(var(--spacing-large) - (var(--spacing-large) / 6)) var(--spacing-large); + background: var(--fragment-background); + color: var(--fragment-foreground); + overflow-x: auto; +} + +@media screen and (max-width: 767px) { + div.fragment, pre.fragment { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right: 0; + } + + .contents > div.fragment, + .textblock > div.fragment, + .textblock > pre.fragment, + .textblock > .tabbed > ul > li > div.fragment, + .textblock > .tabbed > ul > li > pre.fragment, + .contents > .doxygen-awesome-fragment-wrapper > div.fragment, + .textblock > .doxygen-awesome-fragment-wrapper > div.fragment, + .textblock > .doxygen-awesome-fragment-wrapper > pre.fragment, + .textblock > .tabbed > ul > li > .doxygen-awesome-fragment-wrapper > div.fragment, + .textblock > .tabbed > ul > li > .doxygen-awesome-fragment-wrapper > pre.fragment { + margin: var(--spacing-medium) calc(0px - var(--spacing-large)); + border-radius: 0; + border-left: 0; + } + + .textblock li > .fragment, + .textblock li > .doxygen-awesome-fragment-wrapper > .fragment { + margin: var(--spacing-medium) calc(0px - var(--spacing-large)); + } + + .memdoc li > .fragment, + .memdoc li > .doxygen-awesome-fragment-wrapper > .fragment { + margin: var(--spacing-medium) calc(0px - var(--spacing-medium)); + } + + .textblock ul, .memdoc ul { + overflow: initial; + } + + .memdoc > div.fragment, + .memdoc > pre.fragment, + dl dd > div.fragment, + dl dd pre.fragment, + .memdoc > .doxygen-awesome-fragment-wrapper > div.fragment, + .memdoc > .doxygen-awesome-fragment-wrapper > pre.fragment, + dl dd > .doxygen-awesome-fragment-wrapper > div.fragment, + dl dd .doxygen-awesome-fragment-wrapper > pre.fragment { + margin: var(--spacing-medium) calc(0px - var(--spacing-medium)); + border-radius: 0; + border-left: 0; + } +} + +code, code a, pre.fragment, div.fragment, div.fragment .line, div.fragment span, div.fragment .line a, div.fragment .line span { + font-family: var(--font-family-monospace); + font-size: var(--code-font-size) !important; +} + +div.line:after { + margin-right: var(--spacing-medium); +} + +div.fragment .line, pre.fragment { + white-space: pre; + word-wrap: initial; + line-height: var(--fragment-lineheight); +} + +div.fragment span.keyword { + color: var(--fragment-keyword); +} + +div.fragment span.keywordtype { + color: var(--fragment-keywordtype); +} + +div.fragment span.keywordflow { + color: var(--fragment-keywordflow); +} + +div.fragment span.stringliteral { + color: var(--fragment-token) +} + +div.fragment span.comment { + color: var(--fragment-comment); +} + +div.fragment a.code { + color: var(--fragment-link) !important; +} + +div.fragment span.preprocessor { + color: var(--fragment-preprocessor); +} + +div.fragment span.lineno { + display: inline-block; + width: 27px; + border-right: none; + background: var(--fragment-linenumber-background); + color: var(--fragment-linenumber-color); +} + +div.fragment span.lineno a { + background: none; + color: var(--fragment-link) !important; +} + +div.fragment > .line:first-child .lineno { + box-shadow: -999999px 0px 0 999999px var(--fragment-linenumber-background), -999998px 0px 0 999999px var(--fragment-linenumber-border); + background-color: var(--fragment-linenumber-background) !important; +} + +div.line { + border-radius: var(--border-radius-small); +} + +div.line.glow { + background-color: var(--primary-light-color); + box-shadow: none; +} + +/* + dl warning, attention, note, deprecated, bug, ... + */ + +dl.bug dt a, dl.deprecated dt a, dl.todo dt a { + font-weight: bold !important; +} + +dl.warning, dl.attention, dl.note, dl.deprecated, dl.bug, dl.invariant, dl.pre, dl.post, dl.todo, dl.remark { + padding: var(--spacing-medium); + margin: var(--spacing-medium) 0; + color: var(--page-background-color); + overflow: hidden; + margin-left: 0; + border-radius: var(--border-radius-small); +} + +dl.section dd { + margin-bottom: 2px; +} + +dl.warning, dl.attention { + background: var(--warning-color); + border-left: 8px solid var(--warning-color-dark); + color: var(--warning-color-darker); +} + +dl.warning dt, dl.attention dt { + color: var(--warning-color-dark); +} + +dl.note, dl.remark { + background: var(--note-color); + border-left: 8px solid var(--note-color-dark); + color: var(--note-color-darker); +} + +dl.note dt, dl.remark dt { + color: var(--note-color-dark); +} + +dl.todo { + background: var(--todo-color); + border-left: 8px solid var(--todo-color-dark); + color: var(--todo-color-darker); +} + +dl.todo dt a { + color: var(--todo-color-dark) !important; +} + +dl.bug dt a { + color: var(--todo-color-dark) !important; +} + +dl.bug { + background: var(--bug-color); + border-left: 8px solid var(--bug-color-dark); + color: var(--bug-color-darker); +} + +dl.bug dt a { + color: var(--bug-color-dark) !important; +} + +dl.deprecated { + background: var(--deprecated-color); + border-left: 8px solid var(--deprecated-color-dark); + color: var(--deprecated-color-darker); +} + +dl.deprecated dt a { + color: var(--deprecated-color-dark) !important; +} + +dl.section dd, dl.bug dd, dl.deprecated dd, dl.todo dd { + margin-inline-start: 0px; +} + +dl.invariant, dl.pre, dl.post { + background: var(--invariant-color); + border-left: 8px solid var(--invariant-color-dark); + color: var(--invariant-color-darker); +} + +dl.invariant dt, dl.pre dt, dl.post dt { + color: var(--invariant-color-dark); +} + +/* + memitem + */ + +div.memdoc, div.memproto, h2.memtitle { + box-shadow: none; + background-image: none; + border: none; +} + +div.memdoc { + padding: 0 var(--spacing-medium); + background: var(--page-background-color); +} + +h2.memtitle, div.memitem { + border: 1px solid var(--separator-color); + box-shadow: var(--box-shadow); +} + +h2.memtitle { + box-shadow: 0px var(--spacing-medium) 0 -1px var(--fragment-background), var(--box-shadow); +} + +div.memitem { + transition: none; +} + +div.memproto, h2.memtitle { + background: var(--fragment-background); +} + +h2.memtitle { + font-weight: 500; + font-size: var(--memtitle-font-size); + font-family: var(--font-family-monospace); + border-bottom: none; + border-top-left-radius: var(--border-radius-medium); + border-top-right-radius: var(--border-radius-medium); + word-break: break-all; + position: relative; +} + +h2.memtitle:after { + content: ""; + display: block; + background: var(--fragment-background); + height: var(--spacing-medium); + bottom: calc(0px - var(--spacing-medium)); + left: 0; + right: -14px; + position: absolute; + border-top-right-radius: var(--border-radius-medium); +} + +h2.memtitle > span.permalink { + font-size: inherit; +} + +h2.memtitle > span.permalink > a { + text-decoration: none; + padding-left: 3px; + margin-right: -4px; + user-select: none; + display: inline-block; + margin-top: -6px; +} + +h2.memtitle > span.permalink > a:hover { + color: var(--primary-dark-color) !important; +} + +a:target + h2.memtitle, a:target + h2.memtitle + div.memitem { + border-color: var(--primary-light-color); +} + +div.memitem { + border-top-right-radius: var(--border-radius-medium); + border-bottom-right-radius: var(--border-radius-medium); + border-bottom-left-radius: var(--border-radius-medium); + overflow: hidden; + display: block !important; +} + +div.memdoc { + border-radius: 0; +} + +div.memproto { + border-radius: 0 var(--border-radius-small) 0 0; + overflow: auto; + border-bottom: 1px solid var(--separator-color); + padding: var(--spacing-medium); + margin-bottom: -1px; +} + +div.memtitle { + border-top-right-radius: var(--border-radius-medium); + border-top-left-radius: var(--border-radius-medium); +} + +div.memproto table.memname { + font-family: var(--font-family-monospace); + color: var(--page-foreground-color); + font-size: var(--memname-font-size); + text-shadow: none; +} + +div.memproto div.memtemplate { + font-family: var(--font-family-monospace); + color: var(--primary-dark-color); + font-size: var(--memname-font-size); + margin-left: 2px; + text-shadow: none; +} + +table.mlabels, table.mlabels > tbody { + display: block; +} + +td.mlabels-left { + width: auto; +} + +td.mlabels-right { + margin-top: 3px; + position: sticky; + left: 0; +} + +table.mlabels > tbody > tr:first-child { + display: flex; + justify-content: space-between; + flex-wrap: wrap; +} + +.memname, .memitem span.mlabels { + margin: 0 +} + +/* + reflist + */ + +dl.reflist { + box-shadow: var(--box-shadow); + border-radius: var(--border-radius-medium); + border: 1px solid var(--separator-color); + overflow: hidden; + padding: 0; +} + + +dl.reflist dt, dl.reflist dd { + box-shadow: none; + text-shadow: none; + background-image: none; + border: none; + padding: 12px; +} + + +dl.reflist dt { + font-weight: 500; + border-radius: 0; + background: var(--code-background); + border-bottom: 1px solid var(--separator-color); + color: var(--page-foreground-color) +} + + +dl.reflist dd { + background: none; +} + +/* + Table + */ + +.contents table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname), +.contents table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname) tbody { + display: inline-block; + max-width: 100%; +} + +.contents > table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname):not(.classindex) { + margin-left: calc(0px - var(--spacing-large)); + margin-right: calc(0px - var(--spacing-large)); + max-width: calc(100% + 2 * var(--spacing-large)); +} + +table.fieldtable, +table.markdownTable tbody, +table.doxtable tbody { + border: none; + margin: var(--spacing-medium) 0; + box-shadow: 0 0 0 1px var(--separator-color); + border-radius: var(--border-radius-small); +} + +table.markdownTable, table.doxtable, table.fieldtable { + padding: 1px; +} + +table.doxtable caption { + display: block; +} + +table.fieldtable { + border-collapse: collapse; + width: 100%; +} + +th.markdownTableHeadLeft, +th.markdownTableHeadRight, +th.markdownTableHeadCenter, +th.markdownTableHeadNone, +table.doxtable th { + background: var(--tablehead-background); + color: var(--tablehead-foreground); + font-weight: 600; + font-size: var(--page-font-size); +} + +th.markdownTableHeadLeft:first-child, +th.markdownTableHeadRight:first-child, +th.markdownTableHeadCenter:first-child, +th.markdownTableHeadNone:first-child, +table.doxtable tr th:first-child { + border-top-left-radius: var(--border-radius-small); +} + +th.markdownTableHeadLeft:last-child, +th.markdownTableHeadRight:last-child, +th.markdownTableHeadCenter:last-child, +th.markdownTableHeadNone:last-child, +table.doxtable tr th:last-child { + border-top-right-radius: var(--border-radius-small); +} + +table.markdownTable td, +table.markdownTable th, +table.fieldtable td, +table.fieldtable th, +table.doxtable td, +table.doxtable th { + border: 1px solid var(--separator-color); + padding: var(--spacing-small) var(--spacing-medium); +} + +table.markdownTable td:last-child, +table.markdownTable th:last-child, +table.fieldtable td:last-child, +table.fieldtable th:last-child, +table.doxtable td:last-child, +table.doxtable th:last-child { + border-right: none; +} + +table.markdownTable td:first-child, +table.markdownTable th:first-child, +table.fieldtable td:first-child, +table.fieldtable th:first-child, +table.doxtable td:first-child, +table.doxtable th:first-child { + border-left: none; +} + +table.markdownTable tr:first-child td, +table.markdownTable tr:first-child th, +table.fieldtable tr:first-child td, +table.fieldtable tr:first-child th, +table.doxtable tr:first-child td, +table.doxtable tr:first-child th { + border-top: none; +} + +table.markdownTable tr:last-child td, +table.markdownTable tr:last-child th, +table.fieldtable tr:last-child td, +table.fieldtable tr:last-child th, +table.doxtable tr:last-child td, +table.doxtable tr:last-child th { + border-bottom: none; +} + +table.markdownTable tr, table.doxtable tr { + border-bottom: 1px solid var(--separator-color); +} + +table.markdownTable tr:last-child, table.doxtable tr:last-child { + border-bottom: none; +} + +.full_width_table table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname) { + display: block; +} + +.full_width_table table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname) tbody { + display: table; + width: 100%; +} + +table.fieldtable th { + font-size: var(--page-font-size); + font-weight: 600; + background-image: none; + background-color: var(--tablehead-background); + color: var(--tablehead-foreground); +} + +table.fieldtable td.fieldtype, .fieldtable td.fieldname, .fieldtable td.fielddoc, .fieldtable th { + border-bottom: 1px solid var(--separator-color); + border-right: 1px solid var(--separator-color); +} + +table.fieldtable tr:last-child td:first-child { + border-bottom-left-radius: var(--border-radius-small); +} + +table.fieldtable tr:last-child td:last-child { + border-bottom-right-radius: var(--border-radius-small); +} + +.memberdecls td.glow, .fieldtable tr.glow { + background-color: var(--primary-light-color); + box-shadow: none; +} + +table.memberdecls { + display: block; + -webkit-tap-highlight-color: transparent; +} + +table.memberdecls tr[class^='memitem'] { + font-family: var(--font-family-monospace); + font-size: var(--code-font-size); +} + +table.memberdecls tr[class^='memitem'] .memTemplParams { + font-family: var(--font-family-monospace); + font-size: var(--code-font-size); + color: var(--primary-dark-color); + white-space: normal; +} + +table.memberdecls .memItemLeft, +table.memberdecls .memItemRight, +table.memberdecls .memTemplItemLeft, +table.memberdecls .memTemplItemRight, +table.memberdecls .memTemplParams { + transition: none; + padding-top: var(--spacing-small); + padding-bottom: var(--spacing-small); + border-top: 1px solid var(--separator-color); + border-bottom: 1px solid var(--separator-color); + background-color: var(--fragment-background); +} + +table.memberdecls .memTemplItemLeft, +table.memberdecls .memTemplItemRight { + padding-top: 2px; +} + +table.memberdecls .memTemplParams { + border-bottom: 0; + border-left: 1px solid var(--separator-color); + border-right: 1px solid var(--separator-color); + border-radius: var(--border-radius-small) var(--border-radius-small) 0 0; + padding-bottom: var(--spacing-small); +} + +table.memberdecls .memTemplItemLeft { + border-radius: 0 0 0 var(--border-radius-small); + border-left: 1px solid var(--separator-color); + border-top: 0; +} + +table.memberdecls .memTemplItemRight { + border-radius: 0 0 var(--border-radius-small) 0; + border-right: 1px solid var(--separator-color); + padding-left: 0; + border-top: 0; +} + +table.memberdecls .memItemLeft { + border-radius: var(--border-radius-small) 0 0 var(--border-radius-small); + border-left: 1px solid var(--separator-color); + padding-left: var(--spacing-medium); + padding-right: 0; +} + +table.memberdecls .memItemRight { + border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0; + border-right: 1px solid var(--separator-color); + padding-right: var(--spacing-medium); + padding-left: 0; + +} + +table.memberdecls .mdescLeft, table.memberdecls .mdescRight { + background: none; + color: var(--page-foreground-color); + padding: var(--spacing-small) 0; +} + +table.memberdecls .memItemLeft, +table.memberdecls .memTemplItemLeft { + padding-right: var(--spacing-medium); +} + +table.memberdecls .memSeparator { + background: var(--page-background-color); + height: var(--spacing-large); + border: 0; + transition: none; +} + +table.memberdecls .groupheader { + margin-bottom: var(--spacing-large); +} + +table.memberdecls .inherit_header td { + padding: 0 0 var(--spacing-medium) 0; + text-indent: -12px; + color: var(--page-secondary-foreground-color); +} + +table.memberdecls img[src="closed.png"], +table.memberdecls img[src="open.png"], +div.dynheader img[src="open.png"], +div.dynheader img[src="closed.png"] { + width: 0; + height: 0; + border-left: 4px solid transparent; + border-right: 4px solid transparent; + border-top: 5px solid var(--primary-color); + margin-top: 8px; + display: block; + float: left; + margin-left: -10px; + transition: transform var(--animation-duration) ease-out; +} + +table.memberdecls img { + margin-right: 10px; +} + +table.memberdecls img[src="closed.png"], +div.dynheader img[src="closed.png"] { + transform: rotate(-90deg); + +} + +.compoundTemplParams { + font-family: var(--font-family-monospace); + color: var(--primary-dark-color); + font-size: var(--code-font-size); +} + +@media screen and (max-width: 767px) { + + table.memberdecls .memItemLeft, + table.memberdecls .memItemRight, + table.memberdecls .mdescLeft, + table.memberdecls .mdescRight, + table.memberdecls .memTemplItemLeft, + table.memberdecls .memTemplItemRight, + table.memberdecls .memTemplParams { + display: block; + text-align: left; + padding-left: var(--spacing-large); + margin: 0 calc(0px - var(--spacing-large)) 0 calc(0px - var(--spacing-large)); + border-right: none; + border-left: none; + border-radius: 0; + white-space: normal; + } + + table.memberdecls .memItemLeft, + table.memberdecls .mdescLeft, + table.memberdecls .memTemplItemLeft { + border-bottom: 0; + padding-bottom: 0; + } + + table.memberdecls .memTemplItemLeft { + padding-top: 0; + } + + table.memberdecls .mdescLeft { + margin-bottom: calc(0px - var(--page-font-size)); + } + + table.memberdecls .memItemRight, + table.memberdecls .mdescRight, + table.memberdecls .memTemplItemRight { + border-top: 0; + padding-top: 0; + padding-right: var(--spacing-large); + overflow-x: auto; + } + + table.memberdecls tr[class^='memitem']:not(.inherit) { + display: block; + width: calc(100vw - 2 * var(--spacing-large)); + } + + table.memberdecls .mdescRight { + color: var(--page-foreground-color); + } + + table.memberdecls tr.inherit { + visibility: hidden; + } + + table.memberdecls tr[style="display: table-row;"] { + display: block !important; + visibility: visible; + width: calc(100vw - 2 * var(--spacing-large)); + animation: fade .5s; + } + + @keyframes fade { + 0% { + opacity: 0; + max-height: 0; + } + + 100% { + opacity: 1; + max-height: 200px; + } + } +} + + +/* + Horizontal Rule + */ + +hr { + margin-top: var(--spacing-large); + margin-bottom: var(--spacing-large); + height: 1px; + background-color: var(--separator-color); + border: 0; +} + +.contents hr { + box-shadow: 100px 0 0 var(--separator-color), + -100px 0 0 var(--separator-color), + 500px 0 0 var(--separator-color), + -500px 0 0 var(--separator-color), + 1500px 0 0 var(--separator-color), + -1500px 0 0 var(--separator-color), + 2000px 0 0 var(--separator-color), + -2000px 0 0 var(--separator-color); +} + +.contents img, .contents .center, .contents center, .contents div.image object { + max-width: 100%; + overflow: auto; +} + +@media screen and (max-width: 767px) { + .contents .dyncontent > .center, .contents > center { + margin-left: calc(0px - var(--spacing-large)); + margin-right: calc(0px - var(--spacing-large)); + max-width: calc(100% + 2 * var(--spacing-large)); + } +} + +/* + Directories + */ +div.directory { + border-top: 1px solid var(--separator-color); + border-bottom: 1px solid var(--separator-color); + width: auto; +} + +table.directory { + font-family: var(--font-family); + font-size: var(--page-font-size); + font-weight: normal; + width: 100%; +} + +table.directory td.entry, table.directory td.desc { + padding: calc(var(--spacing-small) / 2) var(--spacing-small); + line-height: var(--table-line-height); +} + +table.directory tr.even td:last-child { + border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0; +} + +table.directory tr.even td:first-child { + border-radius: var(--border-radius-small) 0 0 var(--border-radius-small); +} + +table.directory tr.even:last-child td:last-child { + border-radius: 0 var(--border-radius-small) 0 0; +} + +table.directory tr.even:last-child td:first-child { + border-radius: var(--border-radius-small) 0 0 0; +} + +table.directory td.desc { + min-width: 250px; +} + +table.directory tr.even { + background-color: var(--odd-color); +} + +table.directory tr.odd { + background-color: transparent; +} + +.icona { + width: auto; + height: auto; + margin: 0 var(--spacing-small); +} + +.icon { + background: var(--primary-color); + border-radius: var(--border-radius-small); + font-size: var(--page-font-size); + padding: calc(var(--page-font-size) / 5); + line-height: var(--page-font-size); + transform: scale(0.8); + height: auto; + width: var(--page-font-size); + user-select: none; +} + +.iconfopen, .icondoc, .iconfclosed { + background-position: center; + margin-bottom: 0; + height: var(--table-line-height); +} + +.icondoc { + filter: saturate(0.2); +} + +@media screen and (max-width: 767px) { + div.directory { + margin-left: calc(0px - var(--spacing-large)); + margin-right: calc(0px - var(--spacing-large)); + } +} + +@media (prefers-color-scheme: dark) { + html:not(.light-mode) .iconfopen, html:not(.light-mode) .iconfclosed { + filter: hue-rotate(180deg) invert(); + } +} + +html.dark-mode .iconfopen, html.dark-mode .iconfclosed { + filter: hue-rotate(180deg) invert(); +} + +/* + Class list + */ + +.classindex dl.odd { + background: var(--odd-color); + border-radius: var(--border-radius-small); +} + +.classindex dl.even { + background-color: transparent; +} + +/* + Class Index Doxygen 1.8 +*/ + +table.classindex { + margin-left: 0; + margin-right: 0; + width: 100%; +} + +table.classindex table div.ah { + background-image: none; + background-color: initial; + border-color: var(--separator-color); + color: var(--page-foreground-color); + box-shadow: var(--box-shadow); + border-radius: var(--border-radius-large); + padding: var(--spacing-small); +} + +div.qindex { + background-color: var(--odd-color); + border-radius: var(--border-radius-small); + border: 1px solid var(--separator-color); + padding: var(--spacing-small) 0; +} + +/* + Footer and nav-path + */ + +#nav-path { + width: 100%; +} + +#nav-path ul { + background-image: none; + background: var(--page-background-color); + border: none; + border-top: 1px solid var(--separator-color); + border-bottom: 1px solid var(--separator-color); + border-bottom: 0; + box-shadow: 0 0.75px 0 var(--separator-color); + font-size: var(--navigation-font-size); +} + +img.footer { + width: 60px; +} + +.navpath li.footer { + color: var(--page-secondary-foreground-color); +} + +address.footer { + color: var(--page-secondary-foreground-color); + margin-bottom: var(--spacing-large); +} + +#nav-path li.navelem { + background-image: none; + display: flex; + align-items: center; +} + +.navpath li.navelem a { + text-shadow: none; + display: inline-block; + color: var(--primary-color) !important; +} + +.navpath li.navelem b { + color: var(--primary-dark-color); + font-weight: 500; +} + +li.navelem { + padding: 0; + margin-left: -8px; +} + +li.navelem:first-child { + margin-left: var(--spacing-large); +} + +li.navelem:first-child:before { + display: none; +} + +#nav-path li.navelem:after { + content: ''; + border: 5px solid var(--page-background-color); + border-bottom-color: transparent; + border-right-color: transparent; + border-top-color: transparent; + transform: translateY(-1px) scaleY(4.2); + z-index: 10; + margin-left: 6px; +} + +#nav-path li.navelem:before { + content: ''; + border: 5px solid var(--separator-color); + border-bottom-color: transparent; + border-right-color: transparent; + border-top-color: transparent; + transform: translateY(-1px) scaleY(3.2); + margin-right: var(--spacing-small); +} + +.navpath li.navelem a:hover { + color: var(--primary-color); +} + +/* + Scrollbars for Webkit +*/ + +#nav-tree::-webkit-scrollbar, +div.fragment::-webkit-scrollbar, +pre.fragment::-webkit-scrollbar, +div.memproto::-webkit-scrollbar, +.contents center::-webkit-scrollbar, +.contents .center::-webkit-scrollbar, +.contents table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname) tbody::-webkit-scrollbar, +div.contents .toc::-webkit-scrollbar, +.contents .dotgraph::-webkit-scrollbar, +.contents .tabs-overview-container::-webkit-scrollbar { + background: transparent; + width: calc(var(--webkit-scrollbar-size) + var(--webkit-scrollbar-padding) + var(--webkit-scrollbar-padding)); + height: calc(var(--webkit-scrollbar-size) + var(--webkit-scrollbar-padding) + var(--webkit-scrollbar-padding)); +} + +#nav-tree::-webkit-scrollbar-thumb, +div.fragment::-webkit-scrollbar-thumb, +pre.fragment::-webkit-scrollbar-thumb, +div.memproto::-webkit-scrollbar-thumb, +.contents center::-webkit-scrollbar-thumb, +.contents .center::-webkit-scrollbar-thumb, +.contents table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname) tbody::-webkit-scrollbar-thumb, +div.contents .toc::-webkit-scrollbar-thumb, +.contents .dotgraph::-webkit-scrollbar-thumb, +.contents .tabs-overview-container::-webkit-scrollbar-thumb { + background-color: transparent; + border: var(--webkit-scrollbar-padding) solid transparent; + border-radius: calc(var(--webkit-scrollbar-padding) + var(--webkit-scrollbar-padding)); + background-clip: padding-box; +} + +#nav-tree:hover::-webkit-scrollbar-thumb, +div.fragment:hover::-webkit-scrollbar-thumb, +pre.fragment:hover::-webkit-scrollbar-thumb, +div.memproto:hover::-webkit-scrollbar-thumb, +.contents center:hover::-webkit-scrollbar-thumb, +.contents .center:hover::-webkit-scrollbar-thumb, +.contents table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname) tbody:hover::-webkit-scrollbar-thumb, +div.contents .toc:hover::-webkit-scrollbar-thumb, +.contents .dotgraph:hover::-webkit-scrollbar-thumb, +.contents .tabs-overview-container:hover::-webkit-scrollbar-thumb { + background-color: var(--webkit-scrollbar-color); +} + +#nav-tree::-webkit-scrollbar-track, +div.fragment::-webkit-scrollbar-track, +pre.fragment::-webkit-scrollbar-track, +div.memproto::-webkit-scrollbar-track, +.contents center::-webkit-scrollbar-track, +.contents .center::-webkit-scrollbar-track, +.contents table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname) tbody::-webkit-scrollbar-track, +div.contents .toc::-webkit-scrollbar-track, +.contents .dotgraph::-webkit-scrollbar-track, +.contents .tabs-overview-container::-webkit-scrollbar-track { + background: transparent; +} + +#nav-tree::-webkit-scrollbar-corner { + background-color: var(--side-nav-background); +} + +#nav-tree, +div.fragment, +pre.fragment, +div.memproto, +.contents center, +.contents .center, +.contents table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname) tbody, +div.contents .toc { + overflow-x: auto; + overflow-x: overlay; +} + +#nav-tree { + overflow-x: auto; + overflow-y: auto; + overflow-y: overlay; +} + +/* + Scrollbars for Firefox +*/ + +#nav-tree, +div.fragment, +pre.fragment, +div.memproto, +.contents center, +.contents .center, +.contents table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname) tbody, +div.contents .toc, +.contents .dotgraph, +.contents .tabs-overview-container { + scrollbar-width: thin; +} + +/* + Optional Dark mode toggle button +*/ + +doxygen-awesome-dark-mode-toggle { + display: inline-block; + margin: 0 0 0 var(--spacing-small); + padding: 0; + width: var(--searchbar-height); + height: var(--searchbar-height); + background: none; + border: none; + border-radius: var(--searchbar-height); + vertical-align: middle; + text-align: center; + line-height: var(--searchbar-height); + font-size: 22px; + display: flex; + align-items: center; + justify-content: center; + user-select: none; + cursor: pointer; +} + +doxygen-awesome-dark-mode-toggle > svg { + transition: transform var(--animation-duration) ease-in-out; +} + +doxygen-awesome-dark-mode-toggle:active > svg { + transform: scale(.5); +} + +doxygen-awesome-dark-mode-toggle:hover { + background-color: rgba(0,0,0,.03); +} + +html.dark-mode doxygen-awesome-dark-mode-toggle:hover { + background-color: rgba(0,0,0,.18); +} + +/* + Optional fragment copy button +*/ +.doxygen-awesome-fragment-wrapper { + position: relative; +} + +doxygen-awesome-fragment-copy-button { + opacity: 0; + background: var(--fragment-background); + width: 28px; + height: 28px; + position: absolute; + right: calc(var(--spacing-large) - (var(--spacing-large) / 2.5)); + top: calc(var(--spacing-large) - (var(--spacing-large) / 2.5)); + border: 1px solid var(--fragment-foreground); + cursor: pointer; + border-radius: var(--border-radius-small); + display: flex; + justify-content: center; + align-items: center; +} + +.doxygen-awesome-fragment-wrapper:hover doxygen-awesome-fragment-copy-button, doxygen-awesome-fragment-copy-button.success { + opacity: .28; +} + +doxygen-awesome-fragment-copy-button:hover, doxygen-awesome-fragment-copy-button.success { + opacity: 1 !important; +} + +doxygen-awesome-fragment-copy-button:active:not([class~=success]) svg { + transform: scale(.91); +} + +doxygen-awesome-fragment-copy-button svg { + fill: var(--fragment-foreground); + width: 18px; + height: 18px; +} + +doxygen-awesome-fragment-copy-button.success svg { + fill: rgb(14, 168, 14); +} + +doxygen-awesome-fragment-copy-button.success { + border-color: rgb(14, 168, 14); +} + +@media screen and (max-width: 767px) { + .textblock > .doxygen-awesome-fragment-wrapper > doxygen-awesome-fragment-copy-button, + .textblock li > .doxygen-awesome-fragment-wrapper > doxygen-awesome-fragment-copy-button, + .memdoc li > .doxygen-awesome-fragment-wrapper > doxygen-awesome-fragment-copy-button, + .memdoc > .doxygen-awesome-fragment-wrapper > doxygen-awesome-fragment-copy-button, + dl dd > .doxygen-awesome-fragment-wrapper > doxygen-awesome-fragment-copy-button { + right: 0; + } +} + +/* + Optional paragraph link button +*/ + +a.anchorlink { + font-size: 90%; + margin-left: var(--spacing-small); + color: var(--page-foreground-color) !important; + text-decoration: none; + opacity: .15; + display: none; + transition: opacity var(--animation-duration) ease-in-out, color var(--animation-duration) ease-in-out; +} + +a.anchorlink svg { + fill: var(--page-foreground-color); +} + +h3 a.anchorlink svg, h4 a.anchorlink svg { + margin-bottom: -3px; + margin-top: -4px; +} + +a.anchorlink:hover { + opacity: .45; +} + +h2:hover a.anchorlink, h1:hover a.anchorlink, h3:hover a.anchorlink, h4:hover a.anchorlink { + display: inline-block; +} + +/* + Optional tab feature +*/ + +.tabbed ul { + padding-inline-start: 0px; + margin: 0; + padding: var(--spacing-small) 0; +} + +.tabbed li { + display: none; +} + +.tabbed li.selected { + display: block; +} + +.tabs-overview-container { + overflow-x: auto; + display: block; + overflow-y: visible; +} + +.tabs-overview { + border-bottom: 1px solid var(--separator-color); + display: flex; + flex-direction: row; +} + +@media screen and (max-width: 767px) { + .tabs-overview-container { + margin: 0 calc(0px - var(--spacing-large)); + } + .tabs-overview { + padding: 0 var(--spacing-large) + } +} + +.tabs-overview button.tab-button { + color: var(--page-foreground-color); + margin: 0; + border: none; + background: transparent; + padding: calc(var(--spacing-large) / 2) 0; + display: inline-block; + font-size: var(--page-font-size); + cursor: pointer; + box-shadow: 0 1px 0 0 var(--separator-color); + position: relative; + + -webkit-tap-highlight-color: transparent; +} + +.tabs-overview button.tab-button .tab-title::before { + display: block; + content: attr(title); + font-weight: 600; + height: 0; + overflow: hidden; + visibility: hidden; +} + +.tabs-overview button.tab-button .tab-title { + float: left; + white-space: nowrap; + font-weight: normal; + padding: calc(var(--spacing-large) / 2) var(--spacing-large); + border-radius: var(--border-radius-medium); + transition: background-color var(--animation-duration) ease-in-out, font-weight var(--animation-duration) ease-in-out; +} + +.tabs-overview button.tab-button:not(:last-child) .tab-title { + box-shadow: 8px 0 0 -7px var(--separator-color); +} + +.tabs-overview button.tab-button:hover .tab-title { + background: var(--separator-color); + box-shadow: none; +} + +.tabs-overview button.tab-button.active .tab-title { + font-weight: 600; +} + +.tabs-overview button.tab-button::after { + content: ''; + display: block; + position: absolute; + left: 0; + bottom: 0; + right: 0; + height: 0; + width: 0%; + margin: 0 auto; + border-radius: var(--border-radius-small) var(--border-radius-small) 0 0; + background-color: var(--primary-color); + transition: width var(--animation-duration) ease-in-out, height var(--animation-duration) ease-in-out; +} + +.tabs-overview button.tab-button.active::after { + width: 100%; + box-sizing: border-box; + height: 3px; +} + + +/* + Navigation Buttons +*/ + +.section_buttons:not(:empty) { + margin-top: calc(var(--spacing-large) * 3); +} + +.section_buttons table.markdownTable { + display: block; + width: 100%; +} + +.section_buttons table.markdownTable tbody { + display: table !important; + width: 100%; + box-shadow: none; + border-spacing: 10px; +} + +.section_buttons table.markdownTable td { + padding: 0; +} + +.section_buttons table.markdownTable th { + display: none; +} + +.section_buttons table.markdownTable tr.markdownTableHead { + border: none; +} + +.section_buttons tr th, .section_buttons tr td { + background: none; + border: none; + padding: var(--spacing-large) 0 var(--spacing-small); +} + +.section_buttons a { + display: inline-block; + border: 1px solid var(--separator-color); + border-radius: var(--border-radius-medium); + color: var(--page-secondary-foreground-color) !important; + text-decoration: none; + transition: color var(--animation-duration) ease-in-out, background-color var(--animation-duration) ease-in-out; +} + +.section_buttons a:hover { + color: var(--page-foreground-color) !important; + background-color: var(--odd-color); +} + +.section_buttons tr td.markdownTableBodyLeft a { + padding: var(--spacing-medium) var(--spacing-large) var(--spacing-medium) calc(var(--spacing-large) / 2); +} + +.section_buttons tr td.markdownTableBodyRight a { + padding: var(--spacing-medium) calc(var(--spacing-large) / 2) var(--spacing-medium) var(--spacing-large); +} + +.section_buttons tr td.markdownTableBodyLeft a::before, +.section_buttons tr td.markdownTableBodyRight a::after { + color: var(--page-secondary-foreground-color) !important; + display: inline-block; + transition: color .08s ease-in-out, transform .09s ease-in-out; +} + +.section_buttons tr td.markdownTableBodyLeft a::before { + content: '〈'; + padding-right: var(--spacing-large); +} + + +.section_buttons tr td.markdownTableBodyRight a::after { + content: '〉'; + padding-left: var(--spacing-large); +} + + +.section_buttons tr td.markdownTableBodyLeft a:hover::before { + color: var(--page-foreground-color) !important; + transform: translateX(-3px); +} + +.section_buttons tr td.markdownTableBodyRight a:hover::after { + color: var(--page-foreground-color) !important; + transform: translateX(3px); +} + +@media screen and (max-width: 450px) { + .section_buttons a { + width: 100%; + box-sizing: border-box; + } + + .section_buttons tr td:nth-of-type(1).markdownTableBodyLeft a { + border-radius: var(--border-radius-medium) 0 0 var(--border-radius-medium); + border-right: none; + } + + .section_buttons tr td:nth-of-type(2).markdownTableBodyRight a { + border-radius: 0 var(--border-radius-medium) var(--border-radius-medium) 0; + } +} diff --git a/doxygen.css b/doxygen.css new file mode 100644 index 000000000..cdde8d784 --- /dev/null +++ b/doxygen.css @@ -0,0 +1,2207 @@ +/* The standard CSS for doxygen 1.10.0*/ + +html { +/* page base colors */ +--page-background-color: white; +--page-foreground-color: black; +--page-link-color: #3D578C; +--page-visited-link-color: #4665A2; + +/* index */ +--index-odd-item-bg-color: #F8F9FC; +--index-even-item-bg-color: white; +--index-header-color: black; +--index-separator-color: #A0A0A0; + +/* header */ +--header-background-color: #F9FAFC; +--header-separator-color: #C4CFE5; +--header-gradient-image: url('nav_h.png'); +--group-header-separator-color: #879ECB; +--group-header-color: #354C7B; +--inherit-header-color: gray; + +--footer-foreground-color: #2A3D61; +--footer-logo-width: 104px; +--citation-label-color: #334975; +--glow-color: cyan; + +--title-background-color: white; +--title-separator-color: #5373B4; +--directory-separator-color: #9CAFD4; +--separator-color: #4A6AAA; + +--blockquote-background-color: #F7F8FB; +--blockquote-border-color: #9CAFD4; + +--scrollbar-thumb-color: #9CAFD4; +--scrollbar-background-color: #F9FAFC; + +--icon-background-color: #728DC1; +--icon-foreground-color: white; +--icon-doc-image: url('doc.svg'); +--icon-folder-open-image: url('folderopen.svg'); +--icon-folder-closed-image: url('folderclosed.svg'); + +/* brief member declaration list */ +--memdecl-background-color: #F9FAFC; +--memdecl-separator-color: #DEE4F0; +--memdecl-foreground-color: #555; +--memdecl-template-color: #4665A2; + +/* detailed member list */ +--memdef-border-color: #A8B8D9; +--memdef-title-background-color: #E2E8F2; +--memdef-title-gradient-image: url('nav_f.png'); +--memdef-proto-background-color: #DFE5F1; +--memdef-proto-text-color: #253555; +--memdef-proto-text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); +--memdef-doc-background-color: white; +--memdef-param-name-color: #602020; +--memdef-template-color: #4665A2; + +/* tables */ +--table-cell-border-color: #2D4068; +--table-header-background-color: #374F7F; +--table-header-foreground-color: #FFFFFF; + +/* labels */ +--label-background-color: #728DC1; +--label-left-top-border-color: #5373B4; +--label-right-bottom-border-color: #C4CFE5; +--label-foreground-color: white; + +/** navigation bar/tree/menu */ +--nav-background-color: #F9FAFC; +--nav-foreground-color: #364D7C; +--nav-gradient-image: url('tab_b.png'); +--nav-gradient-hover-image: url('tab_h.png'); +--nav-gradient-active-image: url('tab_a.png'); +--nav-gradient-active-image-parent: url("../tab_a.png"); +--nav-separator-image: url('tab_s.png'); +--nav-breadcrumb-image: url('bc_s.png'); +--nav-breadcrumb-border-color: #C2CDE4; +--nav-splitbar-image: url('splitbar.png'); +--nav-font-size-level1: 13px; +--nav-font-size-level2: 10px; +--nav-font-size-level3: 9px; +--nav-text-normal-color: #283A5D; +--nav-text-hover-color: white; +--nav-text-active-color: white; +--nav-text-normal-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); +--nav-text-hover-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +--nav-text-active-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +--nav-menu-button-color: #364D7C; +--nav-menu-background-color: white; +--nav-menu-foreground-color: #555555; +--nav-menu-toggle-color: rgba(255, 255, 255, 0.5); +--nav-arrow-color: #9CAFD4; +--nav-arrow-selected-color: #9CAFD4; + +/* table of contents */ +--toc-background-color: #F4F6FA; +--toc-border-color: #D8DFEE; +--toc-header-color: #4665A2; +--toc-down-arrow-image: url("data:image/svg+xml;utf8,&%238595;"); + +/** search field */ +--search-background-color: white; +--search-foreground-color: #909090; +--search-magnification-image: url('mag.svg'); +--search-magnification-select-image: url('mag_sel.svg'); +--search-active-color: black; +--search-filter-background-color: #F9FAFC; +--search-filter-foreground-color: black; +--search-filter-border-color: #90A5CE; +--search-filter-highlight-text-color: white; +--search-filter-highlight-bg-color: #3D578C; +--search-results-foreground-color: #425E97; +--search-results-background-color: #EEF1F7; +--search-results-border-color: black; +--search-box-shadow: inset 0.5px 0.5px 3px 0px #555; + +/** code fragments */ +--code-keyword-color: #008000; +--code-type-keyword-color: #604020; +--code-flow-keyword-color: #E08000; +--code-comment-color: #800000; +--code-preprocessor-color: #806020; +--code-string-literal-color: #002080; +--code-char-literal-color: #008080; +--code-xml-cdata-color: black; +--code-vhdl-digit-color: #FF00FF; +--code-vhdl-char-color: #000000; +--code-vhdl-keyword-color: #700070; +--code-vhdl-logic-color: #FF0000; +--code-link-color: #4665A2; +--code-external-link-color: #4665A2; +--fragment-foreground-color: black; +--fragment-background-color: #FBFCFD; +--fragment-border-color: #C4CFE5; +--fragment-lineno-border-color: #00FF00; +--fragment-lineno-background-color: #E8E8E8; +--fragment-lineno-foreground-color: black; +--fragment-lineno-link-fg-color: #4665A2; +--fragment-lineno-link-bg-color: #D8D8D8; +--fragment-lineno-link-hover-fg-color: #4665A2; +--fragment-lineno-link-hover-bg-color: #C8C8C8; +--fragment-copy-ok-color: #2EC82E; +--tooltip-foreground-color: black; +--tooltip-background-color: white; +--tooltip-border-color: gray; +--tooltip-doc-color: grey; +--tooltip-declaration-color: #006318; +--tooltip-link-color: #4665A2; +--tooltip-shadow: 1px 1px 7px gray; +--fold-line-color: #808080; +--fold-minus-image: url('minus.svg'); +--fold-plus-image: url('plus.svg'); +--fold-minus-image-relpath: url('../../minus.svg'); +--fold-plus-image-relpath: url('../../plus.svg'); + +/** font-family */ +--font-family-normal: Roboto,sans-serif; +--font-family-monospace: 'JetBrains Mono',Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace,fixed; +--font-family-nav: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; +--font-family-title: Tahoma,Arial,sans-serif; +--font-family-toc: Verdana,'DejaVu Sans',Geneva,sans-serif; +--font-family-search: Arial,Verdana,sans-serif; +--font-family-icon: Arial,Helvetica; +--font-family-tooltip: Roboto,sans-serif; + +/** special sections */ +--warning-color-bg: #f8d1cc; +--warning-color-hl: #b61825; +--warning-color-text: #75070f; +--note-color-bg: #faf3d8; +--note-color-hl: #f3a600; +--note-color-text: #5f4204; +--todo-color-bg: #e4f3ff; +--todo-color-hl: #1879C4; +--todo-color-text: #274a5c; +--test-color-bg: #e8e8ff; +--test-color-hl: #3939C4; +--test-color-text: #1a1a5c; +--deprecated-color-bg: #ecf0f3; +--deprecated-color-hl: #5b6269; +--deprecated-color-text: #43454a; +--bug-color-bg: #e4dafd; +--bug-color-hl: #5b2bdd; +--bug-color-text: #2a0d72; +--invariant-color-bg: #d8f1e3; +--invariant-color-hl: #44b86f; +--invariant-color-text: #265532; +} + +@media (prefers-color-scheme: dark) { + html:not(.dark-mode) { + color-scheme: dark; + +/* page base colors */ +--page-background-color: black; +--page-foreground-color: #C9D1D9; +--page-link-color: #90A5CE; +--page-visited-link-color: #A3B4D7; + +/* index */ +--index-odd-item-bg-color: #0B101A; +--index-even-item-bg-color: black; +--index-header-color: #C4CFE5; +--index-separator-color: #334975; + +/* header */ +--header-background-color: #070B11; +--header-separator-color: #141C2E; +--header-gradient-image: url('nav_hd.png'); +--group-header-separator-color: #283A5D; +--group-header-color: #90A5CE; +--inherit-header-color: #A0A0A0; + +--footer-foreground-color: #5B7AB7; +--footer-logo-width: 60px; +--citation-label-color: #90A5CE; +--glow-color: cyan; + +--title-background-color: #090D16; +--title-separator-color: #354C79; +--directory-separator-color: #283A5D; +--separator-color: #283A5D; + +--blockquote-background-color: #101826; +--blockquote-border-color: #283A5D; + +--scrollbar-thumb-color: #283A5D; +--scrollbar-background-color: #070B11; + +--icon-background-color: #334975; +--icon-foreground-color: #C4CFE5; +--icon-doc-image: url('docd.svg'); +--icon-folder-open-image: url('folderopend.svg'); +--icon-folder-closed-image: url('folderclosedd.svg'); + +/* brief member declaration list */ +--memdecl-background-color: #0B101A; +--memdecl-separator-color: #2C3F65; +--memdecl-foreground-color: #BBB; +--memdecl-template-color: #7C95C6; + +/* detailed member list */ +--memdef-border-color: #233250; +--memdef-title-background-color: #1B2840; +--memdef-title-gradient-image: url('nav_fd.png'); +--memdef-proto-background-color: #19243A; +--memdef-proto-text-color: #9DB0D4; +--memdef-proto-text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.9); +--memdef-doc-background-color: black; +--memdef-param-name-color: #D28757; +--memdef-template-color: #7C95C6; + +/* tables */ +--table-cell-border-color: #283A5D; +--table-header-background-color: #283A5D; +--table-header-foreground-color: #C4CFE5; + +/* labels */ +--label-background-color: #354C7B; +--label-left-top-border-color: #4665A2; +--label-right-bottom-border-color: #283A5D; +--label-foreground-color: #CCCCCC; + +/** navigation bar/tree/menu */ +--nav-background-color: #101826; +--nav-foreground-color: #364D7C; +--nav-gradient-image: url('tab_bd.png'); +--nav-gradient-hover-image: url('tab_hd.png'); +--nav-gradient-active-image: url('tab_ad.png'); +--nav-gradient-active-image-parent: url("../tab_ad.png"); +--nav-separator-image: url('tab_sd.png'); +--nav-breadcrumb-image: url('bc_sd.png'); +--nav-breadcrumb-border-color: #2A3D61; +--nav-splitbar-image: url('splitbard.png'); +--nav-font-size-level1: 13px; +--nav-font-size-level2: 10px; +--nav-font-size-level3: 9px; +--nav-text-normal-color: #B6C4DF; +--nav-text-hover-color: #DCE2EF; +--nav-text-active-color: #DCE2EF; +--nav-text-normal-shadow: 0px 1px 1px black; +--nav-text-hover-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +--nav-text-active-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +--nav-menu-button-color: #B6C4DF; +--nav-menu-background-color: #05070C; +--nav-menu-foreground-color: #BBBBBB; +--nav-menu-toggle-color: rgba(255, 255, 255, 0.2); +--nav-arrow-color: #334975; +--nav-arrow-selected-color: #90A5CE; + +/* table of contents */ +--toc-background-color: #151E30; +--toc-border-color: #202E4A; +--toc-header-color: #A3B4D7; +--toc-down-arrow-image: url("data:image/svg+xml;utf8,&%238595;"); + +/** search field */ +--search-background-color: black; +--search-foreground-color: #C5C5C5; +--search-magnification-image: url('mag_d.svg'); +--search-magnification-select-image: url('mag_seld.svg'); +--search-active-color: #C5C5C5; +--search-filter-background-color: #101826; +--search-filter-foreground-color: #90A5CE; +--search-filter-border-color: #7C95C6; +--search-filter-highlight-text-color: #BCC9E2; +--search-filter-highlight-bg-color: #283A5D; +--search-results-background-color: #101826; +--search-results-foreground-color: #90A5CE; +--search-results-border-color: #7C95C6; +--search-box-shadow: inset 0.5px 0.5px 3px 0px #2F436C; + +/** code fragments */ +--code-keyword-color: #CC99CD; +--code-type-keyword-color: #AB99CD; +--code-flow-keyword-color: #E08000; +--code-comment-color: #717790; +--code-preprocessor-color: #65CABE; +--code-string-literal-color: #7EC699; +--code-char-literal-color: #00E0F0; +--code-xml-cdata-color: #C9D1D9; +--code-vhdl-digit-color: #FF00FF; +--code-vhdl-char-color: #C0C0C0; +--code-vhdl-keyword-color: #CF53C9; +--code-vhdl-logic-color: #FF0000; +--code-link-color: #79C0FF; +--code-external-link-color: #79C0FF; +--fragment-foreground-color: #C9D1D9; +--fragment-background-color: #090D16; +--fragment-border-color: #30363D; +--fragment-lineno-border-color: #30363D; +--fragment-lineno-background-color: black; +--fragment-lineno-foreground-color: #6E7681; +--fragment-lineno-link-fg-color: #6E7681; +--fragment-lineno-link-bg-color: #303030; +--fragment-lineno-link-hover-fg-color: #8E96A1; +--fragment-lineno-link-hover-bg-color: #505050; +--fragment-copy-ok-color: #0EA80E; +--tooltip-foreground-color: #C9D1D9; +--tooltip-background-color: #202020; +--tooltip-border-color: #C9D1D9; +--tooltip-doc-color: #D9E1E9; +--tooltip-declaration-color: #20C348; +--tooltip-link-color: #79C0FF; +--tooltip-shadow: none; +--fold-line-color: #808080; +--fold-minus-image: url('minusd.svg'); +--fold-plus-image: url('plusd.svg'); +--fold-minus-image-relpath: url('../../minusd.svg'); +--fold-plus-image-relpath: url('../../plusd.svg'); + +/** font-family */ +--font-family-normal: Roboto,sans-serif; +--font-family-monospace: 'JetBrains Mono',Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace,fixed; +--font-family-nav: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; +--font-family-title: Tahoma,Arial,sans-serif; +--font-family-toc: Verdana,'DejaVu Sans',Geneva,sans-serif; +--font-family-search: Arial,Verdana,sans-serif; +--font-family-icon: Arial,Helvetica; +--font-family-tooltip: Roboto,sans-serif; + +/** special sections */ +--warning-color-bg: #2e1917; +--warning-color-hl: #ad2617; +--warning-color-text: #f5b1aa; +--note-color-bg: #3b2e04; +--note-color-hl: #f1b602; +--note-color-text: #ceb670; +--todo-color-bg: #163750; +--todo-color-hl: #1982D2; +--todo-color-text: #dcf0fa; +--test-color-bg: #121258; +--test-color-hl: #4242cf; +--test-color-text: #c0c0da; +--deprecated-color-bg: #2e323b; +--deprecated-color-hl: #738396; +--deprecated-color-text: #abb0bd; +--bug-color-bg: #2a2536; +--bug-color-hl: #7661b3; +--bug-color-text: #ae9ed6; +--invariant-color-bg: #303a35; +--invariant-color-hl: #76ce96; +--invariant-color-text: #cceed5; +}} +body { + background-color: var(--page-background-color); + color: var(--page-foreground-color); +} + +body, table, div, p, dl { + font-weight: 400; + font-size: 14px; + font-family: var(--font-family-normal); + line-height: 22px; +} + +/* @group Heading Levels */ + +.title { + font-family: var(--font-family-normal); + line-height: 28px; + font-size: 150%; + font-weight: bold; + margin: 10px 2px; +} + +h1.groupheader { + font-size: 150%; +} + +h2.groupheader { + border-bottom: 1px solid var(--group-header-separator-color); + color: var(--group-header-color); + font-size: 150%; + font-weight: normal; + margin-top: 1.75em; + padding-top: 8px; + padding-bottom: 4px; + width: 100%; +} + +h3.groupheader { + font-size: 100%; +} + +h1, h2, h3, h4, h5, h6 { + -webkit-transition: text-shadow 0.5s linear; + -moz-transition: text-shadow 0.5s linear; + -ms-transition: text-shadow 0.5s linear; + -o-transition: text-shadow 0.5s linear; + transition: text-shadow 0.5s linear; + margin-right: 15px; +} + +h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { + text-shadow: 0 0 15px var(--glow-color); +} + +dt { + font-weight: bold; +} + +p.startli, p.startdd { + margin-top: 2px; +} + +th p.starttd, th p.intertd, th p.endtd { + font-size: 100%; + font-weight: 700; +} + +p.starttd { + margin-top: 0px; +} + +p.endli { + margin-bottom: 0px; +} + +p.enddd { + margin-bottom: 4px; +} + +p.endtd { + margin-bottom: 2px; +} + +p.interli { +} + +p.interdd { +} + +p.intertd { +} + +/* @end */ + +caption { + font-weight: bold; +} + +span.legend { + font-size: 70%; + text-align: center; +} + +h3.version { + font-size: 90%; + text-align: center; +} + +div.navtab { + padding-right: 15px; + text-align: right; + line-height: 110%; +} + +div.navtab table { + border-spacing: 0; +} + +td.navtab { + padding-right: 6px; + padding-left: 6px; +} + +td.navtabHL { + background-image: var(--nav-gradient-active-image); + background-repeat:repeat-x; + padding-right: 6px; + padding-left: 6px; +} + +td.navtabHL a, td.navtabHL a:visited { + color: var(--nav-text-hover-color); + text-shadow: var(--nav-text-hover-shadow); +} + +a.navtab { + font-weight: bold; +} + +div.qindex{ + text-align: center; + width: 100%; + line-height: 140%; + font-size: 130%; + color: var(--index-separator-color); +} + +#main-menu a:focus { + outline: auto; + z-index: 10; + position: relative; +} + +dt.alphachar{ + font-size: 180%; + font-weight: bold; +} + +.alphachar a{ + color: var(--index-header-color); +} + +.alphachar a:hover, .alphachar a:visited{ + text-decoration: none; +} + +.classindex dl { + padding: 25px; + column-count:1 +} + +.classindex dd { + display:inline-block; + margin-left: 50px; + width: 90%; + line-height: 1.15em; +} + +.classindex dl.even { + background-color: var(--index-even-item-bg-color); +} + +.classindex dl.odd { + background-color: var(--index-odd-item-bg-color); +} + +@media(min-width: 1120px) { + .classindex dl { + column-count:2 + } +} + +@media(min-width: 1320px) { + .classindex dl { + column-count:3 + } +} + + +/* @group Link Styling */ + +a { + color: var(--page-link-color); + font-weight: normal; + text-decoration: none; +} + +.contents a:visited { + color: var(--page-visited-link-color); +} + +a:hover { + text-decoration: none; + background: linear-gradient(to bottom, transparent 0,transparent calc(100% - 1px), currentColor 100%); +} + +a:hover > span.arrow { + text-decoration: none; + background : var(--nav-background-color); +} + +a.el { + font-weight: bold; +} + +a.elRef { +} + +a.code, a.code:visited, a.line, a.line:visited { + color: var(--code-link-color); +} + +a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited { + color: var(--code-external-link-color); +} + +a.code.hl_class { /* style for links to class names in code snippets */ } +a.code.hl_struct { /* style for links to struct names in code snippets */ } +a.code.hl_union { /* style for links to union names in code snippets */ } +a.code.hl_interface { /* style for links to interface names in code snippets */ } +a.code.hl_protocol { /* style for links to protocol names in code snippets */ } +a.code.hl_category { /* style for links to category names in code snippets */ } +a.code.hl_exception { /* style for links to exception names in code snippets */ } +a.code.hl_service { /* style for links to service names in code snippets */ } +a.code.hl_singleton { /* style for links to singleton names in code snippets */ } +a.code.hl_concept { /* style for links to concept names in code snippets */ } +a.code.hl_namespace { /* style for links to namespace names in code snippets */ } +a.code.hl_package { /* style for links to package names in code snippets */ } +a.code.hl_define { /* style for links to macro names in code snippets */ } +a.code.hl_function { /* style for links to function names in code snippets */ } +a.code.hl_variable { /* style for links to variable names in code snippets */ } +a.code.hl_typedef { /* style for links to typedef names in code snippets */ } +a.code.hl_enumvalue { /* style for links to enum value names in code snippets */ } +a.code.hl_enumeration { /* style for links to enumeration names in code snippets */ } +a.code.hl_signal { /* style for links to Qt signal names in code snippets */ } +a.code.hl_slot { /* style for links to Qt slot names in code snippets */ } +a.code.hl_friend { /* style for links to friend names in code snippets */ } +a.code.hl_dcop { /* style for links to KDE3 DCOP names in code snippets */ } +a.code.hl_property { /* style for links to property names in code snippets */ } +a.code.hl_event { /* style for links to event names in code snippets */ } +a.code.hl_sequence { /* style for links to sequence names in code snippets */ } +a.code.hl_dictionary { /* style for links to dictionary names in code snippets */ } + +/* @end */ + +dl.el { + margin-left: -1cm; +} + +ul { + overflow: visible; +} + +ul.multicol { + -moz-column-gap: 1em; + -webkit-column-gap: 1em; + column-gap: 1em; + -moz-column-count: 3; + -webkit-column-count: 3; + column-count: 3; + list-style-type: none; +} + +#side-nav ul { + overflow: visible; /* reset ul rule for scroll bar in GENERATE_TREEVIEW window */ +} + +#main-nav ul { + overflow: visible; /* reset ul rule for the navigation bar drop down lists */ +} + +.fragment { + text-align: left; + direction: ltr; + overflow-x: auto; + overflow-y: hidden; + position: relative; + min-height: 12px; + margin: 10px 0px; + padding: 10px 10px; + border: 1px solid var(--fragment-border-color); + border-radius: 4px; + background-color: var(--fragment-background-color); + color: var(--fragment-foreground-color); +} + +pre.fragment { + word-wrap: break-word; + font-size: 10pt; + line-height: 125%; + font-family: var(--font-family-monospace); +} + +.clipboard { + width: 24px; + height: 24px; + right: 5px; + top: 5px; + opacity: 0; + position: absolute; + display: inline; + overflow: auto; + fill: var(--fragment-foreground-color); + justify-content: center; + align-items: center; + cursor: pointer; +} + +.clipboard.success { + border: 1px solid var(--fragment-foreground-color); + border-radius: 4px; +} + +.fragment:hover .clipboard, .clipboard.success { + opacity: .28; +} + +.clipboard:hover, .clipboard.success { + opacity: 1 !important; +} + +.clipboard:active:not([class~=success]) svg { + transform: scale(.91); +} + +.clipboard.success svg { + fill: var(--fragment-copy-ok-color); +} + +.clipboard.success { + border-color: var(--fragment-copy-ok-color); +} + +div.line { + font-family: var(--font-family-monospace); + font-size: 13px; + min-height: 13px; + line-height: 1.2; + text-wrap: unrestricted; + white-space: -moz-pre-wrap; /* Moz */ + white-space: -pre-wrap; /* Opera 4-6 */ + white-space: -o-pre-wrap; /* Opera 7 */ + white-space: pre-wrap; /* CSS3 */ + word-wrap: break-word; /* IE 5.5+ */ + text-indent: -53px; + padding-left: 53px; + padding-bottom: 0px; + margin: 0px; + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +div.line:after { + content:"\000A"; + white-space: pre; +} + +div.line.glow { + background-color: var(--glow-color); + box-shadow: 0 0 10px var(--glow-color); +} + +span.fold { + margin-left: 5px; + margin-right: 1px; + margin-top: 0px; + margin-bottom: 0px; + padding: 0px; + display: inline-block; + width: 12px; + height: 12px; + background-repeat:no-repeat; + background-position:center; +} + +span.lineno { + padding-right: 4px; + margin-right: 9px; + text-align: right; + border-right: 2px solid var(--fragment-lineno-border-color); + color: var(--fragment-lineno-foreground-color); + background-color: var(--fragment-lineno-background-color); + white-space: pre; +} +span.lineno a, span.lineno a:visited { + color: var(--fragment-lineno-link-fg-color); + background-color: var(--fragment-lineno-link-bg-color); +} + +span.lineno a:hover { + color: var(--fragment-lineno-link-hover-fg-color); + background-color: var(--fragment-lineno-link-hover-bg-color); +} + +.lineno { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +div.classindex ul { + list-style: none; + padding-left: 0; +} + +div.classindex span.ai { + display: inline-block; +} + +div.groupHeader { + margin-left: 16px; + margin-top: 12px; + font-weight: bold; +} + +div.groupText { + margin-left: 16px; + font-style: italic; +} + +body { + color: var(--page-foreground-color); + margin: 0; +} + +div.contents { + margin-top: 10px; + margin-left: 12px; + margin-right: 8px; +} + +p.formulaDsp { + text-align: center; +} + +img.dark-mode-visible { + display: none; +} +img.light-mode-visible { + display: none; +} + +img.formulaInl, img.inline { + vertical-align: middle; +} + +div.center { + text-align: center; + margin-top: 0px; + margin-bottom: 0px; + padding: 0px; +} + +div.center img { + border: 0px; +} + +address.footer { + text-align: right; + padding-right: 12px; +} + +img.footer { + border: 0px; + vertical-align: middle; + width: var(--footer-logo-width); +} + +.compoundTemplParams { + color: var(--memdecl-template-color); + font-size: 80%; + line-height: 120%; +} + +/* @group Code Colorization */ + +span.keyword { + color: var(--code-keyword-color); +} + +span.keywordtype { + color: var(--code-type-keyword-color); +} + +span.keywordflow { + color: var(--code-flow-keyword-color); +} + +span.comment { + color: var(--code-comment-color); +} + +span.preprocessor { + color: var(--code-preprocessor-color); +} + +span.stringliteral { + color: var(--code-string-literal-color); +} + +span.charliteral { + color: var(--code-char-literal-color); +} + +span.xmlcdata { + color: var(--code-xml-cdata-color); +} + +span.vhdldigit { + color: var(--code-vhdl-digit-color); +} + +span.vhdlchar { + color: var(--code-vhdl-char-color); +} + +span.vhdlkeyword { + color: var(--code-vhdl-keyword-color); +} + +span.vhdllogic { + color: var(--code-vhdl-logic-color); +} + +blockquote { + background-color: var(--blockquote-background-color); + border-left: 2px solid var(--blockquote-border-color); + margin: 0 24px 0 4px; + padding: 0 12px 0 16px; +} + +/* @end */ + +td.tiny { + font-size: 75%; +} + +.dirtab { + padding: 4px; + border-collapse: collapse; + border: 1px solid var(--table-cell-border-color); +} + +th.dirtab { + background-color: var(--table-header-background-color); + color: var(--table-header-foreground-color); + font-weight: bold; +} + +hr { + height: 0px; + border: none; + border-top: 1px solid var(--separator-color); +} + +hr.footer { + height: 1px; +} + +/* @group Member Descriptions */ + +table.memberdecls { + border-spacing: 0px; + padding: 0px; +} + +.memberdecls td, .fieldtable tr { + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +.memberdecls td.glow, .fieldtable tr.glow { + background-color: var(--glow-color); + box-shadow: 0 0 15px var(--glow-color); +} + +.mdescLeft, .mdescRight, +.memItemLeft, .memItemRight, +.memTemplItemLeft, .memTemplItemRight, .memTemplParams { + background-color: var(--memdecl-background-color); + border: none; + margin: 4px; + padding: 1px 0 0 8px; +} + +.mdescLeft, .mdescRight { + padding: 0px 8px 4px 8px; + color: var(--memdecl-foreground-color); +} + +.memSeparator { + border-bottom: 1px solid var(--memdecl-separator-color); + line-height: 1px; + margin: 0px; + padding: 0px; +} + +.memItemLeft, .memTemplItemLeft { + white-space: nowrap; +} + +.memItemRight, .memTemplItemRight { + width: 100%; +} + +.memTemplParams { + color: var(--memdecl-template-color); + white-space: nowrap; + font-size: 80%; +} + +/* @end */ + +/* @group Member Details */ + +/* Styles for detailed member documentation */ + +.memtitle { + padding: 8px; + border-top: 1px solid var(--memdef-border-color); + border-left: 1px solid var(--memdef-border-color); + border-right: 1px solid var(--memdef-border-color); + border-top-right-radius: 4px; + border-top-left-radius: 4px; + margin-bottom: -1px; + background-image: var(--memdef-title-gradient-image); + background-repeat: repeat-x; + background-color: var(--memdef-title-background-color); + line-height: 1.25; + font-weight: 300; + float:left; +} + +.permalink +{ + font-size: 65%; + display: inline-block; + vertical-align: middle; +} + +.memtemplate { + font-size: 80%; + color: var(--memdef-template-color); + font-weight: normal; + margin-left: 9px; +} + +.mempage { + width: 100%; +} + +.memitem { + padding: 0; + margin-bottom: 10px; + margin-right: 5px; + -webkit-transition: box-shadow 0.5s linear; + -moz-transition: box-shadow 0.5s linear; + -ms-transition: box-shadow 0.5s linear; + -o-transition: box-shadow 0.5s linear; + transition: box-shadow 0.5s linear; + display: table !important; + width: 100%; +} + +.memitem.glow { + box-shadow: 0 0 15px var(--glow-color); +} + +.memname { + font-weight: 400; + margin-left: 6px; +} + +.memname td { + vertical-align: bottom; +} + +.memproto, dl.reflist dt { + border-top: 1px solid var(--memdef-border-color); + border-left: 1px solid var(--memdef-border-color); + border-right: 1px solid var(--memdef-border-color); + padding: 6px 0px 6px 0px; + color: var(--memdef-proto-text-color); + font-weight: bold; + text-shadow: var(--memdef-proto-text-shadow); + background-color: var(--memdef-proto-background-color); + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + border-top-right-radius: 4px; +} + +.overload { + font-family: var(--font-family-monospace); + font-size: 65%; +} + +.memdoc, dl.reflist dd { + border-bottom: 1px solid var(--memdef-border-color); + border-left: 1px solid var(--memdef-border-color); + border-right: 1px solid var(--memdef-border-color); + padding: 6px 10px 2px 10px; + border-top-width: 0; + background-image:url('nav_g.png'); + background-repeat:repeat-x; + background-color: var(--memdef-doc-background-color); + /* opera specific markup */ + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + /* firefox specific markup */ + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-bottomright: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + /* webkit specific markup */ + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +dl.reflist dt { + padding: 5px; +} + +dl.reflist dd { + margin: 0px 0px 10px 0px; + padding: 5px; +} + +.paramkey { + text-align: right; +} + +.paramtype { + white-space: nowrap; + padding: 0px; + padding-bottom: 1px; +} + +.paramname { + white-space: nowrap; + padding: 0px; + padding-bottom: 1px; + margin-left: 2px; +} + +.paramname em { + color: var(--memdef-param-name-color); + font-style: normal; + margin-right: 1px; +} + +.paramname .paramdefval { + font-family: var(--font-family-monospace); +} + +.params, .retval, .exception, .tparams { + margin-left: 0px; + padding-left: 0px; +} + +.params .paramname, .retval .paramname, .tparams .paramname, .exception .paramname { + font-weight: bold; + vertical-align: top; +} + +.params .paramtype, .tparams .paramtype { + font-style: italic; + vertical-align: top; +} + +.params .paramdir, .tparams .paramdir { + font-family: var(--font-family-monospace); + vertical-align: top; +} + +table.mlabels { + border-spacing: 0px; +} + +td.mlabels-left { + width: 100%; + padding: 0px; +} + +td.mlabels-right { + vertical-align: bottom; + padding: 0px; + white-space: nowrap; +} + +span.mlabels { + margin-left: 8px; +} + +span.mlabel { + background-color: var(--label-background-color); + border-top:1px solid var(--label-left-top-border-color); + border-left:1px solid var(--label-left-top-border-color); + border-right:1px solid var(--label-right-bottom-border-color); + border-bottom:1px solid var(--label-right-bottom-border-color); + text-shadow: none; + color: var(--label-foreground-color); + margin-right: 4px; + padding: 2px 3px; + border-radius: 3px; + font-size: 7pt; + white-space: nowrap; + vertical-align: middle; +} + + + +/* @end */ + +/* these are for tree view inside a (index) page */ + +div.directory { + margin: 10px 0px; + border-top: 1px solid var(--directory-separator-color); + border-bottom: 1px solid var(--directory-separator-color); + width: 100%; +} + +.directory table { + border-collapse:collapse; +} + +.directory td { + margin: 0px; + padding: 0px; + vertical-align: top; +} + +.directory td.entry { + white-space: nowrap; + padding-right: 6px; + padding-top: 3px; +} + +.directory td.entry a { + outline:none; +} + +.directory td.entry a img { + border: none; +} + +.directory td.desc { + width: 100%; + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + border-left: 1px solid rgba(0,0,0,0.05); +} + +.directory tr.odd { + padding-left: 6px; + background-color: var(--index-odd-item-bg-color); +} + +.directory tr.even { + padding-left: 6px; + background-color: var(--index-even-item-bg-color); +} + +.directory img { + vertical-align: -30%; +} + +.directory .levels { + white-space: nowrap; + width: 100%; + text-align: right; + font-size: 9pt; +} + +.directory .levels span { + cursor: pointer; + padding-left: 2px; + padding-right: 2px; + color: var(--page-link-color); +} + +.arrow { + color: var(--nav-arrow-color); + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + cursor: pointer; + font-size: 80%; + display: inline-block; + width: 16px; + height: 22px; +} + +.icon { + font-family: var(--font-family-icon); + line-height: normal; + font-weight: bold; + font-size: 12px; + height: 14px; + width: 16px; + display: inline-block; + background-color: var(--icon-background-color); + color: var(--icon-foreground-color); + text-align: center; + border-radius: 4px; + margin-left: 2px; + margin-right: 2px; +} + +.icona { + width: 24px; + height: 22px; + display: inline-block; +} + +.iconfopen { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:var(--icon-folder-open-image); + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.iconfclosed { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:var(--icon-folder-closed-image); + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.icondoc { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:var(--icon-doc-image); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +/* @end */ + +div.dynheader { + margin-top: 8px; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +address { + font-style: normal; + color: var(--footer-foreground-color); +} + +table.doxtable caption { + caption-side: top; +} + +table.doxtable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.doxtable td, table.doxtable th { + border: 1px solid var(--table-cell-border-color); + padding: 3px 7px 2px; +} + +table.doxtable th { + background-color: var(--table-header-background-color); + color: var(--table-header-foreground-color); + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +table.fieldtable { + margin-bottom: 10px; + border: 1px solid var(--memdef-border-color); + border-spacing: 0px; + border-radius: 4px; + box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); +} + +.fieldtable td, .fieldtable th { + padding: 3px 7px 2px; +} + +.fieldtable td.fieldtype, .fieldtable td.fieldname { + white-space: nowrap; + border-right: 1px solid var(--memdef-border-color); + border-bottom: 1px solid var(--memdef-border-color); + vertical-align: top; +} + +.fieldtable td.fieldname { + padding-top: 3px; +} + +.fieldtable td.fielddoc { + border-bottom: 1px solid var(--memdef-border-color); +} + +.fieldtable td.fielddoc p:first-child { + margin-top: 0px; +} + +.fieldtable td.fielddoc p:last-child { + margin-bottom: 2px; +} + +.fieldtable tr:last-child td { + border-bottom: none; +} + +.fieldtable th { + background-image: var(--memdef-title-gradient-image); + background-repeat:repeat-x; + background-color: var(--memdef-title-background-color); + font-size: 90%; + color: var(--memdef-proto-text-color); + padding-bottom: 4px; + padding-top: 5px; + text-align:left; + font-weight: 400; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom: 1px solid var(--memdef-border-color); +} + + +.tabsearch { + top: 0px; + left: 10px; + height: 36px; + background-image: var(--nav-gradient-image); + z-index: 101; + overflow: hidden; + font-size: 13px; +} + +.navpath ul +{ + font-size: 11px; + background-image: var(--nav-gradient-image); + background-repeat:repeat-x; + background-position: 0 -5px; + height:30px; + line-height:30px; + color:var(--nav-text-normal-color); + border:solid 1px var(--nav-breadcrumb-border-color); + overflow:hidden; + margin:0px; + padding:0px; +} + +.navpath li +{ + list-style-type:none; + float:left; + padding-left:10px; + padding-right:15px; + background-image:var(--nav-breadcrumb-image); + background-repeat:no-repeat; + background-position:right; + color: var(--nav-foreground-color); +} + +.navpath li.navelem a +{ + height:32px; + display:block; + outline: none; + color: var(--nav-text-normal-color); + font-family: var(--font-family-nav); + text-shadow: var(--nav-text-normal-shadow); + text-decoration: none; +} + +.navpath li.navelem a:hover +{ + color: var(--nav-text-hover-color); + text-shadow: var(--nav-text-hover-shadow); +} + +.navpath li.footer +{ + list-style-type:none; + float:right; + padding-left:10px; + padding-right:15px; + background-image:none; + background-repeat:no-repeat; + background-position:right; + color: var(--footer-foreground-color); + font-size: 8pt; +} + + +div.summary +{ + float: right; + font-size: 8pt; + padding-right: 5px; + width: 50%; + text-align: right; +} + +div.summary a +{ + white-space: nowrap; +} + +table.classindex +{ + margin: 10px; + white-space: nowrap; + margin-left: 3%; + margin-right: 3%; + width: 94%; + border: 0; + border-spacing: 0; + padding: 0; +} + +div.ingroups +{ + font-size: 8pt; + width: 50%; + text-align: left; +} + +div.ingroups a +{ + white-space: nowrap; +} + +div.header +{ + background-image: var(--header-gradient-image); + background-repeat:repeat-x; + background-color: var(--header-background-color); + margin: 0px; + border-bottom: 1px solid var(--header-separator-color); +} + +div.headertitle +{ + padding: 5px 5px 5px 10px; +} + +.PageDocRTL-title div.headertitle { + text-align: right; + direction: rtl; +} + +dl { + padding: 0 0 0 0; +} + +/* + +dl.section { + margin-left: 0px; + padding-left: 0px; +} + +dl.note { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #D0C000; +} + +dl.warning, dl.attention { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #FF0000; +} + +dl.pre, dl.post, dl.invariant { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #00D000; +} + +dl.deprecated { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #505050; +} + +dl.todo { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #00C0E0; +} + +dl.test { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #3030E0; +} + +dl.bug { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #C08050; +} + +*/ + +dl.bug dt a, dl.deprecated dt a, dl.todo dt a, dl.test a { + font-weight: bold !important; +} + +dl.warning, dl.attention, dl.note, dl.deprecated, dl.bug, +dl.invariant, dl.pre, dl.post, dl.todo, dl.test, dl.remark { + padding: 10px; + margin: 10px 0px; + overflow: hidden; + margin-left: 0; + border-radius: 4px; +} + +dl.section dd { + margin-bottom: 2px; +} + +dl.warning, dl.attention { + background: var(--warning-color-bg); + border-left: 8px solid var(--warning-color-hl); + color: var(--warning-color-text); +} + +dl.warning dt, dl.attention dt { + color: var(--warning-color-hl); +} + +dl.note, dl.remark { + background: var(--note-color-bg); + border-left: 8px solid var(--note-color-hl); + color: var(--note-color-text); +} + +dl.note dt, dl.remark dt { + color: var(--note-color-hl); +} + +dl.todo { + background: var(--todo-color-bg); + border-left: 8px solid var(--todo-color-hl); + color: var(--todo-color-text); +} + +dl.todo dt { + color: var(--todo-color-hl); +} + +dl.test { + background: var(--test-color-bg); + border-left: 8px solid var(--test-color-hl); + color: var(--test-color-text); +} + +dl.test dt { + color: var(--test-color-hl); +} + +dl.bug dt a { + color: var(--bug-color-hl) !important; +} + +dl.bug { + background: var(--bug-color-bg); + border-left: 8px solid var(--bug-color-hl); + color: var(--bug-color-text); +} + +dl.bug dt a { + color: var(--bug-color-hl) !important; +} + +dl.deprecated { + background: var(--deprecated-color-bg); + border-left: 8px solid var(--deprecated-color-hl); + color: var(--deprecated-color-text); +} + +dl.deprecated dt a { + color: var(--deprecated-color-hl) !important; +} + +dl.section dd, dl.bug dd, dl.deprecated dd, dl.todo dd, dl.test dd { + margin-inline-start: 0px; +} + +dl.invariant, dl.pre, dl.post { + background: var(--invariant-color-bg); + border-left: 8px solid var(--invariant-color-hl); + color: var(--invariant-color-text); +} + +dl.invariant dt, dl.pre dt, dl.post dt { + color: var(--invariant-color-hl); +} + + +#projectrow +{ + height: 56px; +} + +#projectlogo +{ + text-align: center; + vertical-align: bottom; + border-collapse: separate; +} + +#projectlogo img +{ + border: 0px none; +} + +#projectalign +{ + vertical-align: middle; + padding-left: 0.5em; +} + +#projectname +{ + font-size: 200%; + font-family: var(--font-family-title); + margin: 0px; + padding: 2px 0px; +} + +#projectbrief +{ + font-size: 90%; + font-family: var(--font-family-title); + margin: 0px; + padding: 0px; +} + +#projectnumber +{ + font-size: 50%; + font-family: 50% var(--font-family-title); + margin: 0px; + padding: 0px; +} + +#titlearea +{ + padding: 0px; + margin: 0px; + width: 100%; + border-bottom: 1px solid var(--title-separator-color); + background-color: var(--title-background-color); +} + +.image +{ + text-align: center; +} + +.dotgraph +{ + text-align: center; +} + +.mscgraph +{ + text-align: center; +} + +.plantumlgraph +{ + text-align: center; +} + +.diagraph +{ + text-align: center; +} + +.caption +{ + font-weight: bold; +} + +dl.citelist { + margin-bottom:50px; +} + +dl.citelist dt { + color:var(--citation-label-color); + float:left; + font-weight:bold; + margin-right:10px; + padding:5px; + text-align:right; + width:52px; +} + +dl.citelist dd { + margin:2px 0 2px 72px; + padding:5px 0; +} + +div.toc { + padding: 14px 25px; + background-color: var(--toc-background-color); + border: 1px solid var(--toc-border-color); + border-radius: 7px 7px 7px 7px; + float: right; + height: auto; + margin: 0 8px 10px 10px; + width: 200px; +} + +div.toc li { + background: var(--toc-down-arrow-image) no-repeat scroll 0 5px transparent; + font: 10px/1.2 var(--font-family-toc); + margin-top: 5px; + padding-left: 10px; + padding-top: 2px; +} + +div.toc h3 { + font: bold 12px/1.2 var(--font-family-toc); + color: var(--toc-header-color); + border-bottom: 0 none; + margin: 0; +} + +div.toc ul { + list-style: none outside none; + border: medium none; + padding: 0px; +} + +div.toc li.level1 { + margin-left: 0px; +} + +div.toc li.level2 { + margin-left: 15px; +} + +div.toc li.level3 { + margin-left: 15px; +} + +div.toc li.level4 { + margin-left: 15px; +} + +span.emoji { + /* font family used at the site: https://unicode.org/emoji/charts/full-emoji-list.html + * font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", Times, Symbola, Aegyptus, Code2000, Code2001, Code2002, Musica, serif, LastResort; + */ +} + +span.obfuscator { + display: none; +} + +.inherit_header { + font-weight: bold; + color: var(--inherit-header-color); + cursor: pointer; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.inherit_header td { + padding: 6px 0px 2px 5px; +} + +.inherit { + display: none; +} + +tr.heading h2 { + margin-top: 12px; + margin-bottom: 4px; +} + +/* tooltip related style info */ + +.ttc { + position: absolute; + display: none; +} + +#powerTip { + cursor: default; + /*white-space: nowrap;*/ + color: var(--tooltip-foreground-color); + background-color: var(--tooltip-background-color); + border: 1px solid var(--tooltip-border-color); + border-radius: 4px 4px 4px 4px; + box-shadow: var(--tooltip-shadow); + display: none; + font-size: smaller; + max-width: 80%; + opacity: 0.9; + padding: 1ex 1em 1em; + position: absolute; + z-index: 2147483647; +} + +#powerTip div.ttdoc { + color: var(--tooltip-doc-color); + font-style: italic; +} + +#powerTip div.ttname a { + font-weight: bold; +} + +#powerTip a { + color: var(--tooltip-link-color); +} + +#powerTip div.ttname { + font-weight: bold; +} + +#powerTip div.ttdeci { + color: var(--tooltip-declaration-color); +} + +#powerTip div { + margin: 0px; + padding: 0px; + font-size: 12px; + font-family: var(--font-family-tooltip); + line-height: 16px; +} + +#powerTip:before, #powerTip:after { + content: ""; + position: absolute; + margin: 0px; +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.s:after, #powerTip.s:before, +#powerTip.w:after, #powerTip.w:before, +#powerTip.e:after, #powerTip.e:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.nw:after, #powerTip.nw:before, +#powerTip.sw:after, #powerTip.sw:before { + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; +} + +#powerTip.n:after, #powerTip.s:after, +#powerTip.w:after, #powerTip.e:after, +#powerTip.nw:after, #powerTip.ne:after, +#powerTip.sw:after, #powerTip.se:after { + border-color: rgba(255, 255, 255, 0); +} + +#powerTip.n:before, #powerTip.s:before, +#powerTip.w:before, #powerTip.e:before, +#powerTip.nw:before, #powerTip.ne:before, +#powerTip.sw:before, #powerTip.se:before { + border-color: rgba(128, 128, 128, 0); +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.nw:after, #powerTip.nw:before { + top: 100%; +} + +#powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after { + border-top-color: var(--tooltip-background-color); + border-width: 10px; + margin: 0px -10px; +} +#powerTip.n:before, #powerTip.ne:before, #powerTip.nw:before { + border-top-color: var(--tooltip-border-color); + border-width: 11px; + margin: 0px -11px; +} +#powerTip.n:after, #powerTip.n:before { + left: 50%; +} + +#powerTip.nw:after, #powerTip.nw:before { + right: 14px; +} + +#powerTip.ne:after, #powerTip.ne:before { + left: 14px; +} + +#powerTip.s:after, #powerTip.s:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.sw:after, #powerTip.sw:before { + bottom: 100%; +} + +#powerTip.s:after, #powerTip.se:after, #powerTip.sw:after { + border-bottom-color: var(--tooltip-background-color); + border-width: 10px; + margin: 0px -10px; +} + +#powerTip.s:before, #powerTip.se:before, #powerTip.sw:before { + border-bottom-color: var(--tooltip-border-color); + border-width: 11px; + margin: 0px -11px; +} + +#powerTip.s:after, #powerTip.s:before { + left: 50%; +} + +#powerTip.sw:after, #powerTip.sw:before { + right: 14px; +} + +#powerTip.se:after, #powerTip.se:before { + left: 14px; +} + +#powerTip.e:after, #powerTip.e:before { + left: 100%; +} +#powerTip.e:after { + border-left-color: var(--tooltip-border-color); + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.e:before { + border-left-color: var(--tooltip-border-color); + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +#powerTip.w:after, #powerTip.w:before { + right: 100%; +} +#powerTip.w:after { + border-right-color: var(--tooltip-border-color); + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.w:before { + border-right-color: var(--tooltip-border-color); + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +@media print +{ + #top { display: none; } + #side-nav { display: none; } + #nav-path { display: none; } + body { overflow:visible; } + h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } + .summary { display: none; } + .memitem { page-break-inside: avoid; } + #doc-content + { + margin-left:0 !important; + height:auto !important; + width:auto !important; + overflow:inherit; + display:inline; + } +} + +/* @group Markdown */ + +table.markdownTable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.markdownTable td, table.markdownTable th { + border: 1px solid var(--table-cell-border-color); + padding: 3px 7px 2px; +} + +table.markdownTable tr { +} + +th.markdownTableHeadLeft, th.markdownTableHeadRight, th.markdownTableHeadCenter, th.markdownTableHeadNone { + background-color: var(--table-header-background-color); + color: var(--table-header-foreground-color); + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +th.markdownTableHeadLeft, td.markdownTableBodyLeft { + text-align: left +} + +th.markdownTableHeadRight, td.markdownTableBodyRight { + text-align: right +} + +th.markdownTableHeadCenter, td.markdownTableBodyCenter { + text-align: center +} + +tt, code, kbd, samp +{ + display: inline-block; +} +/* @end */ + +u { + text-decoration: underline; +} + +details>summary { + list-style-type: none; +} + +details > summary::-webkit-details-marker { + display: none; +} + +details>summary::before { + content: "\25ba"; + padding-right:4px; + font-size: 80%; +} + +details[open]>summary::before { + content: "\25bc"; + padding-right:4px; + font-size: 80%; +} + diff --git a/doxygen.svg b/doxygen.svg new file mode 100644 index 000000000..79a763540 --- /dev/null +++ b/doxygen.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doxygen_crawl.html b/doxygen_crawl.html new file mode 100644 index 000000000..34516bd88 --- /dev/null +++ b/doxygen_crawl.html @@ -0,0 +1,426 @@ + + + +Validator / crawler helper + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dynsections.js b/dynsections.js new file mode 100644 index 000000000..8f493264f --- /dev/null +++ b/dynsections.js @@ -0,0 +1,194 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ + +let dynsection = { + + // helper function + updateStripes : function() { + $('table.directory tr'). + removeClass('even').filter(':visible:even').addClass('even'); + $('table.directory tr'). + removeClass('odd').filter(':visible:odd').addClass('odd'); + }, + + toggleVisibility : function(linkObj) { + const base = $(linkObj).attr('id'); + const summary = $('#'+base+'-summary'); + const content = $('#'+base+'-content'); + const trigger = $('#'+base+'-trigger'); + const src=$(trigger).attr('src'); + if (content.is(':visible')===true) { + content.hide(); + summary.show(); + $(linkObj).addClass('closed').removeClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); + } else { + content.show(); + summary.hide(); + $(linkObj).removeClass('closed').addClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); + } + return false; + }, + + toggleLevel : function(level) { + $('table.directory tr').each(function() { + const l = this.id.split('_').length-1; + const i = $('#img'+this.id.substring(3)); + const a = $('#arr'+this.id.substring(3)); + if (l'); + // add vertical lines to other rows + $('span[class=lineno]').not(':eq(0)').append(''); + // add toggle controls to lines with fold divs + $('div[class=foldopen]').each(function() { + // extract specific id to use + const id = $(this).attr('id').replace('foldopen',''); + // extract start and end foldable fragment attributes + const start = $(this).attr('data-start'); + const end = $(this).attr('data-end'); + // replace normal fold span with controls for the first line of a foldable fragment + $(this).find('span[class=fold]:first').replaceWith(''); + // append div for folded (closed) representation + $(this).after(''); + // extract the first line from the "open" section to represent closed content + const line = $(this).children().first().clone(); + // remove any glow that might still be active on the original line + $(line).removeClass('glow'); + if (start) { + // if line already ends with a start marker (e.g. trailing {), remove it + $(line).html($(line).html().replace(new RegExp('\\s*'+start+'\\s*$','g'),'')); + } + // replace minus with plus symbol + $(line).find('span[class=fold]').css('background-image',codefold.plusImg[relPath]); + // append ellipsis + $(line).append(' '+start+''+end); + // insert constructed line into closed div + $('#foldclosed'+id).html(line); + }); + }, +}; +/* @license-end */ diff --git a/eigen_8hpp.html b/eigen_8hpp.html new file mode 100644 index 000000000..252a7d4ad --- /dev/null +++ b/eigen_8hpp.html @@ -0,0 +1,260 @@ + + + + + + + +HighFive: highfive/eigen.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
eigen.hpp File Reference
+
+
+
#include "bits/H5Inspector_decl.hpp"
+#include "H5Exception.hpp"
+#include <Eigen/Eigen>
+
+Include dependency graph for eigen.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/eigen_8hpp__dep__incl.map b/eigen_8hpp__dep__incl.map new file mode 100644 index 000000000..cd839b147 --- /dev/null +++ b/eigen_8hpp__dep__incl.map @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eigen_8hpp__dep__incl.md5 b/eigen_8hpp__dep__incl.md5 new file mode 100644 index 000000000..e2722aba3 --- /dev/null +++ b/eigen_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +47bca23e6bba480484ebf7465f479b69 \ No newline at end of file diff --git a/eigen_8hpp__dep__incl.png b/eigen_8hpp__dep__incl.png new file mode 100644 index 000000000..78cc27bb9 Binary files /dev/null and b/eigen_8hpp__dep__incl.png differ diff --git a/eigen_8hpp__incl.map b/eigen_8hpp__incl.map new file mode 100644 index 000000000..c3f88aac0 --- /dev/null +++ b/eigen_8hpp__incl.map @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eigen_8hpp__incl.md5 b/eigen_8hpp__incl.md5 new file mode 100644 index 000000000..f18792b22 --- /dev/null +++ b/eigen_8hpp__incl.md5 @@ -0,0 +1 @@ +f9649409fca02b6a427cfcddd56baaa4 \ No newline at end of file diff --git a/eigen_8hpp__incl.png b/eigen_8hpp__incl.png new file mode 100644 index 000000000..e5e202b95 Binary files /dev/null and b/eigen_8hpp__incl.png differ diff --git a/eigen_8hpp_source.html b/eigen_8hpp_source.html new file mode 100644 index 000000000..b35c1b8b7 --- /dev/null +++ b/eigen_8hpp_source.html @@ -0,0 +1,212 @@ + + + + + + + +HighFive: highfive/eigen.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
eigen.hpp
+
+
+Go to the documentation of this file.
1#pragma once
+
2#ifdef H5_USE_EIGEN
+
3
+ +
5#include "H5Exception.hpp"
+
6
+
7#include <Eigen/Eigen>
+
8
+
9
+
10namespace HighFive {
+
11namespace details {
+
12
+
13template <typename T, int M, int N>
+
14struct inspector<Eigen::Matrix<T, M, N>> {
+
15 using type = Eigen::Matrix<T, M, N>;
+
16 using value_type = T;
+
17 using base_type = typename inspector<value_type>::base_type;
+
18 using hdf5_type = base_type;
+
19
+
20 static constexpr size_t ndim = 2;
+
21 static constexpr size_t recursive_ndim = ndim + inspector<value_type>::recursive_ndim;
+
22 static constexpr bool is_trivially_copyable = std::is_trivially_copyable<value_type>::value &&
+
23 inspector<value_type>::is_trivially_copyable;
+
24
+
25
+
26 static void assert_not_buggy(Eigen::Index nrows, Eigen::Index ncols) {
+
27 if (nrows > 1 && ncols > 1) {
+
28 throw std::runtime_error(
+
29 "HighFive has been broken for Eigen::Matrix. Please check "
+
30 "https://github.com/BlueBrain/HighFive/issues/532.");
+
31 }
+
32 }
+
33
+
34 static std::vector<size_t> getDimensions(const type& val) {
+
35 assert_not_buggy(val.rows(), val.cols());
+
36
+
37 std::vector<size_t> sizes{static_cast<size_t>(val.rows()), static_cast<size_t>(val.cols())};
+
38 auto s = inspector<value_type>::getDimensions(val.data()[0]);
+
39 sizes.insert(sizes.end(), s.begin(), s.end());
+
40 return sizes;
+
41 }
+
42
+
43 static size_t getSizeVal(const type& val) {
+
44 return compute_total_size(getDimensions(val));
+
45 }
+
46
+
47 static size_t getSize(const std::vector<size_t>& dims) {
+
48 return compute_total_size(dims);
+
49 }
+
50
+
51 static void prepare(type& val, const std::vector<size_t>& dims) {
+
52 if (dims[0] != static_cast<size_t>(val.rows()) ||
+
53 dims[1] != static_cast<size_t>(val.cols())) {
+
54 val.resize(static_cast<typename type::Index>(dims[0]),
+
55 static_cast<typename type::Index>(dims[1]));
+
56 }
+
57
+
58 assert_not_buggy(val.rows(), val.cols());
+
59 }
+
60
+
61 static hdf5_type* data(type& val) {
+
62 assert_not_buggy(val.rows(), val.cols());
+
63 return inspector<value_type>::data(*val.data());
+
64 }
+
65
+
66 static const hdf5_type* data(const type& val) {
+
67 assert_not_buggy(val.rows(), val.cols());
+
68 return inspector<value_type>::data(*val.data());
+
69 }
+
70
+
71 static void serialize(const type& val, hdf5_type* m) {
+
72 assert_not_buggy(val.rows(), val.cols());
+
73 std::memcpy(m, val.data(), static_cast<size_t>(val.size()) * sizeof(hdf5_type));
+
74 }
+
75
+
76 static void unserialize(const hdf5_type* vec_align,
+
77 const std::vector<size_t>& dims,
+
78 type& val) {
+
79 assert_not_buggy(val.rows(), val.cols());
+
80 if (dims.size() < 2) {
+
81 std::ostringstream os;
+
82 os << "Impossible to pair DataSet with " << dims.size()
+
83 << " dimensions into an eigen-matrix.";
+
84 throw DataSpaceException(os.str());
+
85 }
+
86 std::memcpy(val.data(), vec_align, compute_total_size(dims) * sizeof(hdf5_type));
+
87 }
+
88};
+
89
+
90} // namespace details
+
91} // namespace HighFive
+
92
+
93#endif
+ + +
size_t getSize(const File &file, const std::string &path)
Get the size of an existing DataSet in an open HDF5 file.
Definition H5Easy_public.hpp:82
+
Definition H5_definitions.hpp:22
+
size_t compute_total_size(const std::vector< size_t > &dims)
Definition H5Inspector_decl.hpp:10
+
+
+ + + + diff --git a/files.html b/files.html new file mode 100644 index 000000000..3bc95be4b --- /dev/null +++ b/files.html @@ -0,0 +1,183 @@ + + + + + + + +HighFive: File List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
File List
+
+
+
Here is a list of all files with brief descriptions:
+
+
+ + + + diff --git a/files_dup.js b/files_dup.js new file mode 100644 index 000000000..68b1e33e5 --- /dev/null +++ b/files_dup.js @@ -0,0 +1,5 @@ +var files_dup = +[ + [ "doc", "dir_e68e8157741866f444e17edd764ebbae.html", null ], + [ "highfive", "dir_59f157d0a2e2d139c92ad8277d62d3e2.html", "dir_59f157d0a2e2d139c92ad8277d62d3e2" ] +]; \ No newline at end of file diff --git a/folderclosed.svg b/folderclosed.svg new file mode 100644 index 000000000..b04bed2e7 --- /dev/null +++ b/folderclosed.svg @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/folderclosedd.svg b/folderclosedd.svg new file mode 100644 index 000000000..52f0166a2 --- /dev/null +++ b/folderclosedd.svg @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/folderopen.svg b/folderopen.svg new file mode 100644 index 000000000..f6896dd25 --- /dev/null +++ b/folderopen.svg @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/folderopend.svg b/folderopend.svg new file mode 100644 index 000000000..2d1f06e7b --- /dev/null +++ b/folderopend.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/functions.html b/functions.html new file mode 100644 index 000000000..84a4c8890 --- /dev/null +++ b/functions.html @@ -0,0 +1,117 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- _ -

+
+
+ + + + diff --git a/functions_a.html b/functions_a.html new file mode 100644 index 000000000..d63be5c97 --- /dev/null +++ b/functions_a.html @@ -0,0 +1,118 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- a -

+
+
+ + + + diff --git a/functions_b.html b/functions_b.html new file mode 100644 index 000000000..191b4f662 --- /dev/null +++ b/functions_b.html @@ -0,0 +1,114 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- b -

+
+
+ + + + diff --git a/functions_c.html b/functions_c.html new file mode 100644 index 000000000..18cd2468e --- /dev/null +++ b/functions_c.html @@ -0,0 +1,131 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- c -

+
+
+ + + + diff --git a/functions_d.html b/functions_d.html new file mode 100644 index 000000000..0a46640ac --- /dev/null +++ b/functions_d.html @@ -0,0 +1,125 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- d -

+
+
+ + + + diff --git a/functions_dup.js b/functions_dup.js new file mode 100644 index 000000000..56c9830d4 --- /dev/null +++ b/functions_dup.js @@ -0,0 +1,25 @@ +var functions_dup = +[ + [ "_", "functions.html", null ], + [ "a", "functions_a.html", null ], + [ "b", "functions_b.html", null ], + [ "c", "functions_c.html", null ], + [ "d", "functions_d.html", null ], + [ "e", "functions_e.html", null ], + [ "f", "functions_f.html", null ], + [ "g", "functions_g.html", null ], + [ "h", "functions_h.html", null ], + [ "i", "functions_i.html", null ], + [ "l", "functions_l.html", null ], + [ "m", "functions_m.html", null ], + [ "n", "functions_n.html", null ], + [ "o", "functions_o.html", null ], + [ "p", "functions_p.html", null ], + [ "r", "functions_r.html", null ], + [ "s", "functions_s.html", null ], + [ "t", "functions_t.html", null ], + [ "u", "functions_u.html", null ], + [ "v", "functions_v.html", null ], + [ "w", "functions_w.html", null ], + [ "~", "functions_~.html", null ] +]; \ No newline at end of file diff --git a/functions_e.html b/functions_e.html new file mode 100644 index 000000000..5299523ee --- /dev/null +++ b/functions_e.html @@ -0,0 +1,118 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- e -

+
+
+ + + + diff --git a/functions_enum.html b/functions_enum.html new file mode 100644 index 000000000..0be751600 --- /dev/null +++ b/functions_enum.html @@ -0,0 +1,109 @@ + + + + + + + +HighFive: Class Members - Enumerations + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all enums with links to the classes they belong to:
+
+
+ + + + diff --git a/functions_eval.html b/functions_eval.html new file mode 100644 index 000000000..2b908385b --- /dev/null +++ b/functions_eval.html @@ -0,0 +1,119 @@ + + + + + + + +HighFive: Class Members - Enumerator + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all enum values with links to the classes they belong to:
+
+
+ + + + diff --git a/functions_f.html b/functions_f.html new file mode 100644 index 000000000..e8f4ce605 --- /dev/null +++ b/functions_f.html @@ -0,0 +1,121 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- f -

+
+
+ + + + diff --git a/functions_func.html b/functions_func.html new file mode 100644 index 000000000..c1cbc81f5 --- /dev/null +++ b/functions_func.html @@ -0,0 +1,110 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- _ -

+
+
+ + + + diff --git a/functions_func.js b/functions_func.js new file mode 100644 index 000000000..84693b417 --- /dev/null +++ b/functions_func.js @@ -0,0 +1,25 @@ +var functions_func = +[ + [ "_", "functions_func.html", null ], + [ "a", "functions_func_a.html", null ], + [ "b", "functions_func_b.html", null ], + [ "c", "functions_func_c.html", null ], + [ "d", "functions_func_d.html", null ], + [ "e", "functions_func_e.html", null ], + [ "f", "functions_func_f.html", null ], + [ "g", "functions_func_g.html", null ], + [ "h", "functions_func_h.html", null ], + [ "i", "functions_func_i.html", null ], + [ "l", "functions_func_l.html", null ], + [ "m", "functions_func_m.html", null ], + [ "n", "functions_func_n.html", null ], + [ "o", "functions_func_o.html", null ], + [ "p", "functions_func_p.html", null ], + [ "r", "functions_func_r.html", null ], + [ "s", "functions_func_s.html", null ], + [ "t", "functions_func_t.html", null ], + [ "u", "functions_func_u.html", null ], + [ "v", "functions_func_v.html", null ], + [ "w", "functions_func_w.html", null ], + [ "~", "functions_func_~.html", null ] +]; \ No newline at end of file diff --git a/functions_func_a.html b/functions_func_a.html new file mode 100644 index 000000000..96f22cfbb --- /dev/null +++ b/functions_func_a.html @@ -0,0 +1,118 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- a -

+
+
+ + + + diff --git a/functions_func_b.html b/functions_func_b.html new file mode 100644 index 000000000..99b6c4f1b --- /dev/null +++ b/functions_func_b.html @@ -0,0 +1,111 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- b -

+
+
+ + + + diff --git a/functions_func_c.html b/functions_func_c.html new file mode 100644 index 000000000..e68521908 --- /dev/null +++ b/functions_func_c.html @@ -0,0 +1,126 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- c -

+
+
+ + + + diff --git a/functions_func_d.html b/functions_func_d.html new file mode 100644 index 000000000..9b31f694f --- /dev/null +++ b/functions_func_d.html @@ -0,0 +1,120 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- d -

+
+
+ + + + diff --git a/functions_func_e.html b/functions_func_e.html new file mode 100644 index 000000000..d7294b8b4 --- /dev/null +++ b/functions_func_e.html @@ -0,0 +1,117 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- e -

+
+
+ + + + diff --git a/functions_func_f.html b/functions_func_f.html new file mode 100644 index 000000000..6a9e98210 --- /dev/null +++ b/functions_func_f.html @@ -0,0 +1,121 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- f -

+
+
+ + + + diff --git a/functions_func_g.html b/functions_func_g.html new file mode 100644 index 000000000..cfabff577 --- /dev/null +++ b/functions_func_g.html @@ -0,0 +1,170 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- g -

+
+
+ + + + diff --git a/functions_func_h.html b/functions_func_h.html new file mode 100644 index 000000000..73d741471 --- /dev/null +++ b/functions_func_h.html @@ -0,0 +1,111 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- h -

+
+
+ + + + diff --git a/functions_func_i.html b/functions_func_i.html new file mode 100644 index 000000000..97345dd3f --- /dev/null +++ b/functions_func_i.html @@ -0,0 +1,116 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- i -

+
+
+ + + + diff --git a/functions_func_l.html b/functions_func_l.html new file mode 100644 index 000000000..67abc42f1 --- /dev/null +++ b/functions_func_l.html @@ -0,0 +1,114 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- l -

+
+
+ + + + diff --git a/functions_func_m.html b/functions_func_m.html new file mode 100644 index 000000000..7885e067e --- /dev/null +++ b/functions_func_m.html @@ -0,0 +1,116 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- m -

+
+
+ + + + diff --git a/functions_func_n.html b/functions_func_n.html new file mode 100644 index 000000000..54888bf8f --- /dev/null +++ b/functions_func_n.html @@ -0,0 +1,113 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- n -

+
+
+ + + + diff --git a/functions_func_o.html b/functions_func_o.html new file mode 100644 index 000000000..2c4ba7d2c --- /dev/null +++ b/functions_func_o.html @@ -0,0 +1,122 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- o -

+
+
+ + + + diff --git a/functions_func_p.html b/functions_func_p.html new file mode 100644 index 000000000..5a97d798d --- /dev/null +++ b/functions_func_p.html @@ -0,0 +1,114 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- p -

+
+
+ + + + diff --git a/functions_func_r.html b/functions_func_r.html new file mode 100644 index 000000000..309ff01ea --- /dev/null +++ b/functions_func_r.html @@ -0,0 +1,119 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- r -

+
+
+ + + + diff --git a/functions_func_s.html b/functions_func_s.html new file mode 100644 index 000000000..ac3051d4f --- /dev/null +++ b/functions_func_s.html @@ -0,0 +1,122 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- s -

+
+
+ + + + diff --git a/functions_func_t.html b/functions_func_t.html new file mode 100644 index 000000000..1832a77f3 --- /dev/null +++ b/functions_func_t.html @@ -0,0 +1,110 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- t -

+
+
+ + + + diff --git a/functions_func_u.html b/functions_func_u.html new file mode 100644 index 000000000..b81fb1eb9 --- /dev/null +++ b/functions_func_u.html @@ -0,0 +1,111 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- u -

+
+
+ + + + diff --git a/functions_func_v.html b/functions_func_v.html new file mode 100644 index 000000000..2d6e6ec6c --- /dev/null +++ b/functions_func_v.html @@ -0,0 +1,110 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- v -

+
+
+ + + + diff --git a/functions_func_w.html b/functions_func_w.html new file mode 100644 index 000000000..b550406d4 --- /dev/null +++ b/functions_func_w.html @@ -0,0 +1,113 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- w -

+
+
+ + + + diff --git a/functions_func_~.html b/functions_func_~.html new file mode 100644 index 000000000..35da36593 --- /dev/null +++ b/functions_func_~.html @@ -0,0 +1,112 @@ + + + + + + + +HighFive: Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all functions with links to the classes they belong to:
+ +

- ~ -

+
+
+ + + + diff --git a/functions_g.html b/functions_g.html new file mode 100644 index 000000000..5692c7060 --- /dev/null +++ b/functions_g.html @@ -0,0 +1,170 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- g -

+
+
+ + + + diff --git a/functions_h.html b/functions_h.html new file mode 100644 index 000000000..1f4ea5e3d --- /dev/null +++ b/functions_h.html @@ -0,0 +1,112 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- h -

+
+
+ + + + diff --git a/functions_i.html b/functions_i.html new file mode 100644 index 000000000..4c5b8d16a --- /dev/null +++ b/functions_i.html @@ -0,0 +1,118 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- i -

+
+
+ + + + diff --git a/functions_l.html b/functions_l.html new file mode 100644 index 000000000..59b553fcc --- /dev/null +++ b/functions_l.html @@ -0,0 +1,114 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- l -

+
+
+ + + + diff --git a/functions_m.html b/functions_m.html new file mode 100644 index 000000000..e89e78bb3 --- /dev/null +++ b/functions_m.html @@ -0,0 +1,116 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- m -

+
+
+ + + + diff --git a/functions_n.html b/functions_n.html new file mode 100644 index 000000000..804e6df39 --- /dev/null +++ b/functions_n.html @@ -0,0 +1,115 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- n -

+
+
+ + + + diff --git a/functions_o.html b/functions_o.html new file mode 100644 index 000000000..582369621 --- /dev/null +++ b/functions_o.html @@ -0,0 +1,125 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- o -

+
+
+ + + + diff --git a/functions_p.html b/functions_p.html new file mode 100644 index 000000000..42b3983a7 --- /dev/null +++ b/functions_p.html @@ -0,0 +1,114 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- p -

+
+
+ + + + diff --git a/functions_r.html b/functions_r.html new file mode 100644 index 000000000..e1737b4bd --- /dev/null +++ b/functions_r.html @@ -0,0 +1,123 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- r -

+
+
+ + + + diff --git a/functions_rela.html b/functions_rela.html new file mode 100644 index 000000000..af58130f0 --- /dev/null +++ b/functions_rela.html @@ -0,0 +1,118 @@ + + + + + + + +HighFive: Class Members - Related Symbols + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all related symbols with links to the classes they belong to:
+
+
+ + + + diff --git a/functions_s.html b/functions_s.html new file mode 100644 index 000000000..0d1570c50 --- /dev/null +++ b/functions_s.html @@ -0,0 +1,124 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- s -

+
+
+ + + + diff --git a/functions_t.html b/functions_t.html new file mode 100644 index 000000000..51b5f630c --- /dev/null +++ b/functions_t.html @@ -0,0 +1,113 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- t -

+
+
+ + + + diff --git a/functions_type.html b/functions_type.html new file mode 100644 index 000000000..12ff9b4e5 --- /dev/null +++ b/functions_type.html @@ -0,0 +1,114 @@ + + + + + + + +HighFive: Class Members - Typedefs + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all typedefs with links to the classes they belong to:
+
+
+ + + + diff --git a/functions_u.html b/functions_u.html new file mode 100644 index 000000000..6be964a8a --- /dev/null +++ b/functions_u.html @@ -0,0 +1,112 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- u -

+
+
+ + + + diff --git a/functions_v.html b/functions_v.html new file mode 100644 index 000000000..51238a73e --- /dev/null +++ b/functions_v.html @@ -0,0 +1,112 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- v -

+
+
+ + + + diff --git a/functions_vars.html b/functions_vars.html new file mode 100644 index 000000000..5430e211b --- /dev/null +++ b/functions_vars.html @@ -0,0 +1,123 @@ + + + + + + + +HighFive: Class Members - Variables + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all variables with links to the classes they belong to:
+
+
+ + + + diff --git a/functions_w.html b/functions_w.html new file mode 100644 index 000000000..b4992307f --- /dev/null +++ b/functions_w.html @@ -0,0 +1,113 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- w -

+
+
+ + + + diff --git a/functions_~.html b/functions_~.html new file mode 100644 index 000000000..503e8baad --- /dev/null +++ b/functions_~.html @@ -0,0 +1,112 @@ + + + + + + + +HighFive: Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- ~ -

+
+
+ + + + diff --git a/globals.html b/globals.html new file mode 100644 index 000000000..1fa22ba20 --- /dev/null +++ b/globals.html @@ -0,0 +1,129 @@ + + + + + + + +HighFive: File Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all file members with links to the files they belong to:
+
+
+ + + + diff --git a/globals_defs.html b/globals_defs.html new file mode 100644 index 000000000..8aba69ac7 --- /dev/null +++ b/globals_defs.html @@ -0,0 +1,129 @@ + + + + + + + +HighFive: File Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all macros with links to the files they belong to:
+
+
+ + + + diff --git a/graph_legend.html b/graph_legend.html new file mode 100644 index 000000000..bce5a7232 --- /dev/null +++ b/graph_legend.html @@ -0,0 +1,168 @@ + + + + + + + +HighFive: Graph Legend + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Graph Legend
+
+
+

This page explains how to interpret the graphs that are generated by doxygen.

+

Consider the following example:

/*! Invisible class because of truncation */
+
class Invisible { };
+
+
/*! Truncated class, inheritance relation is hidden */
+
class Truncated : public Invisible { };
+
+
/* Class not documented with doxygen comments */
+
class Undocumented { };
+
+
/*! Class that is inherited using public inheritance */
+
class PublicBase : public Truncated { };
+
+
/*! A template class */
+
template<class T> class Templ { };
+
+
/*! Class that is inherited using protected inheritance */
+
class ProtectedBase { };
+
+
/*! Class that is inherited using private inheritance */
+
class PrivateBase { };
+
+
/*! Class that is used by the Inherited class */
+
class Used { };
+
+
/*! Super class that inherits a number of other classes */
+
class Inherited : public PublicBase,
+
protected ProtectedBase,
+
private PrivateBase,
+
public Undocumented,
+
public Templ<int>
+
{
+
private:
+
Used *m_usedClass;
+
};
+

This will result in the following graph:

+

The boxes in the above graph have the following meaning:

+ +

The arrows have the following meaning:

+ +
+
+ + + + diff --git a/graph_legend.md5 b/graph_legend.md5 new file mode 100644 index 000000000..da515da9d --- /dev/null +++ b/graph_legend.md5 @@ -0,0 +1 @@ +f74606a252eb303675caf37987d0b7af \ No newline at end of file diff --git a/graph_legend.png b/graph_legend.png new file mode 100644 index 000000000..28ec9c3e7 Binary files /dev/null and b/graph_legend.png differ diff --git a/group___property_lists.html b/group___property_lists.html new file mode 100644 index 000000000..31abbd148 --- /dev/null +++ b/group___property_lists.html @@ -0,0 +1,513 @@ + + + + + + + +HighFive: Property Lists + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
Property Lists
+
+
+

Detailed Description

+

HDF5 is configured through what they call property lists. In HDF5 the process has four steps:

+
    +
  1. Create a property list. As users we now have an hid_t identifying the property list.
  2. +
  3. Set properties as desired.
  4. +
  5. Pass the HID to the HDF5 function to be configured.
  6. +
  7. Free the property list.
  8. +
+

Note that the mental picture is that one creates a settings object, and then passes those settings to a function such as H5Dwrite. In and of themselves the settings don't change the behaviour of HDF5. Rather they need to be used to take affect.

+

The second aspect is that property lists represent any number of related settings, e.g. there's property lists anything related to creating files and another for accessing files, same for creating and accessing datasets, etc. Settings that affect creating files, must be passed a file creation property list, while settings that affect file access require a file access property list.

+

In HighFive the PropertyList works similar in that it's a object representing the settings, i.e. internally it's just the property lists HID. Just like in HDF5 one adds the settings to the settings object; and then passes the settings object to the respective method. Example:

+
// Create an object which contains the setting to
+// open files with MPI-IO.
+auto fapl = FileAccessProps();
+fapl.add(MPIOFileAccess(MPI_COMM_WORLD, MPI_INFO_NULL);
+
+// To open a specific file with MPI-IO, we do:
+auto file = File("foo.h5", File::ReadOnly, fapl);
+

Note that the MPIOFileAccess object by itself doesn't affect the FileAccessProps. Rather it needs to be explicitly added to the fapl (the group of file access related settings), and then the fapl needs to be passed to the constructor of File for the settings to take affect.

+

This is important to understand when reading properties. Example:

// Obtain the file access property list:
+auto fapl = file.getAccessPropertyList()
+
+// Extracts a copy of the collective MPI-IO metadata settings from
+// the group of file access related setting, i.e. the `fapl`:
+auto mpio_metadata = MPIOCollectiveMetadata(fapl);
+
+if(mpio_metadata.isCollectiveRead()) {
+  // something specific if meta data is read collectively.
+}
+
+// Careful, this only affects the `mpio_metadata` object, but not the
+//  `fapl`, and also not whether `file` uses collective MPI-IO for
+// metadata.
+mpio_metadata = MPIOCollectiveMetadata(false, false);
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Classes

class  HighFive::PropertyListBase
 Base Class for Property lists, providing global default. More...
 
class  HighFive::PropertyList< T >
 HDF5 property Lists. More...
 
class  HighFive::RawPropertyList< T >
 
class  HighFive::MPIOFileAccess
 Configure MPI access for the file. More...
 
class  HighFive::FileVersionBounds
 Configure the version bounds for the file. More...
 
class  HighFive::MetadataBlockSize
 Configure the metadata block size to use writing to files. More...
 
class  HighFive::EstimatedLinkInfo
 Set hints as to how many links to expect and their average length. More...
 
class  HighFive::Chunking
 
class  HighFive::Deflate
 
class  HighFive::Szip
 
class  HighFive::Shuffle
 
class  HighFive::AllocationTime
 When are datasets allocated? More...
 
class  HighFive::Caching
 
class  HighFive::CreateIntermediateGroup
 
class  HighFive::UseCollectiveIO
 
class  HighFive::MpioNoCollectiveCause
 The cause for non-collective I/O. More...
 
struct  HighFive::CreationOrder
 
class  HighFive::LinkCreationOrder
 Track and index creation order time. More...
 
class  HighFive::AttributePhaseChange
 Set threshold for attribute storage. More...
 
interface  PropertyInterface
 HDF5 file property object. More...
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

using HighFive::ObjectCreateProps = PropertyList<PropertyType::OBJECT_CREATE>
 
using HighFive::FileCreateProps = PropertyList<PropertyType::FILE_CREATE>
 
using HighFive::FileAccessProps = PropertyList<PropertyType::FILE_ACCESS>
 
using HighFive::DataSetCreateProps = PropertyList<PropertyType::DATASET_CREATE>
 
using HighFive::DataSetAccessProps = PropertyList<PropertyType::DATASET_ACCESS>
 
using HighFive::DataTransferProps = PropertyList<PropertyType::DATASET_XFER>
 
using HighFive::GroupCreateProps = PropertyList<PropertyType::GROUP_CREATE>
 
using HighFive::GroupAccessProps = PropertyList<PropertyType::GROUP_ACCESS>
 
using HighFive::DataTypeCreateProps = PropertyList<PropertyType::DATATYPE_CREATE>
 
using HighFive::DataTypeAccessProps = PropertyList<PropertyType::DATATYPE_ACCESS>
 
using HighFive::StringCreateProps = PropertyList<PropertyType::STRING_CREATE>
 
using HighFive::AttributeCreateProps = PropertyList<PropertyType::ATTRIBUTE_CREATE>
 
using HighFive::ObjectCopyProps = PropertyList<PropertyType::OBJECT_COPY>
 
using HighFive::LinkCreateProps = PropertyList<PropertyType::LINK_CREATE>
 
using HighFive::LinkAccessProps = PropertyList<PropertyType::LINK_ACCESS>
 
+ + + + +

+Enumerations

enum class  HighFive::PropertyType : int {
+  HighFive::PropertyType::OBJECT_CREATE +, HighFive::PropertyType::FILE_CREATE +, HighFive::PropertyType::FILE_ACCESS +, HighFive::PropertyType::DATASET_CREATE +,
+  HighFive::PropertyType::DATASET_ACCESS +, HighFive::PropertyType::DATASET_XFER +, HighFive::PropertyType::GROUP_CREATE +, HighFive::PropertyType::GROUP_ACCESS +,
+  HighFive::PropertyType::DATATYPE_CREATE +, HighFive::PropertyType::DATATYPE_ACCESS +, HighFive::PropertyType::STRING_CREATE +, HighFive::PropertyType::ATTRIBUTE_CREATE +,
+  HighFive::PropertyType::OBJECT_COPY +, HighFive::PropertyType::LINK_CREATE +, HighFive::PropertyType::LINK_ACCESS +
+ }
 Types of property lists. More...
 
+

Typedef Documentation

+ +

◆ AttributeCreateProps

+ + + +

◆ DataSetAccessProps

+ + + +

◆ DataSetCreateProps

+ + + +

◆ DataTransferProps

+ + + +

◆ DataTypeAccessProps

+ + + +

◆ DataTypeCreateProps

+ + + +

◆ FileAccessProps

+ + + +

◆ FileCreateProps

+ + + +

◆ GroupAccessProps

+ + + +

◆ GroupCreateProps

+ + + +

◆ LinkAccessProps

+ + + +

◆ LinkCreateProps

+ + + +

◆ ObjectCopyProps

+ + + +

◆ ObjectCreateProps

+ + + +

◆ StringCreateProps

+ + +

Enumeration Type Documentation

+ +

◆ PropertyType

+ +
+
+ + + + + +
+ + + + +
enum class HighFive::PropertyType : int
+
+strong
+
+ +

Types of property lists.

+ + + + + + + + + + + + + + + + +
Enumerator
OBJECT_CREATE 
FILE_CREATE 
FILE_ACCESS 
DATASET_CREATE 
DATASET_ACCESS 
DATASET_XFER 
GROUP_CREATE 
GROUP_ACCESS 
DATATYPE_CREATE 
DATATYPE_ACCESS 
STRING_CREATE 
ATTRIBUTE_CREATE 
OBJECT_COPY 
LINK_CREATE 
LINK_ACCESS 
+ +
+
+
+
+ + + + diff --git a/h5__wrapper_8hpp.html b/h5__wrapper_8hpp.html new file mode 100644 index 000000000..a5a761394 --- /dev/null +++ b/h5__wrapper_8hpp.html @@ -0,0 +1,288 @@ + + + + + + + +HighFive: highfive/bits/h5_wrapper.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
h5_wrapper.hpp File Reference
+
+
+
#include <H5public.h>
+
+Include dependency graph for h5_wrapper.hpp:
+
+
+ + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/h5__wrapper_8hpp__dep__incl.map b/h5__wrapper_8hpp__dep__incl.map new file mode 100644 index 000000000..e8f5dd067 --- /dev/null +++ b/h5__wrapper_8hpp__dep__incl.map @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/h5__wrapper_8hpp__dep__incl.md5 b/h5__wrapper_8hpp__dep__incl.md5 new file mode 100644 index 000000000..a78862afc --- /dev/null +++ b/h5__wrapper_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +084c1fda9bb5a9ef98f74ad60563fc36 \ No newline at end of file diff --git a/h5__wrapper_8hpp__dep__incl.png b/h5__wrapper_8hpp__dep__incl.png new file mode 100644 index 000000000..fa33bd3d9 Binary files /dev/null and b/h5__wrapper_8hpp__dep__incl.png differ diff --git a/h5__wrapper_8hpp__incl.map b/h5__wrapper_8hpp__incl.map new file mode 100644 index 000000000..f33c68fcf --- /dev/null +++ b/h5__wrapper_8hpp__incl.map @@ -0,0 +1,5 @@ + + + + + diff --git a/h5__wrapper_8hpp__incl.md5 b/h5__wrapper_8hpp__incl.md5 new file mode 100644 index 000000000..46653db6c --- /dev/null +++ b/h5__wrapper_8hpp__incl.md5 @@ -0,0 +1 @@ +1feee9900cf0b626df56bf11e2c41498 \ No newline at end of file diff --git a/h5__wrapper_8hpp__incl.png b/h5__wrapper_8hpp__incl.png new file mode 100644 index 000000000..1ade7acfe Binary files /dev/null and b/h5__wrapper_8hpp__incl.png differ diff --git a/h5__wrapper_8hpp_source.html b/h5__wrapper_8hpp_source.html new file mode 100644 index 000000000..30eec1a74 --- /dev/null +++ b/h5__wrapper_8hpp_source.html @@ -0,0 +1,134 @@ + + + + + + + +HighFive: highfive/bits/h5_wrapper.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
h5_wrapper.hpp
+
+
+Go to the documentation of this file.
1#pragma once
+
2#include <H5public.h>
+
3
+
4namespace HighFive {
+
5namespace detail {
+
6inline void h5_free_memory(void* mem) {
+
7 if (H5free_memory(mem) < 0) {
+
8 throw DataTypeException("Could not free memory allocated by HDF5");
+
9 }
+
10}
+
11
+
12namespace nothrow {
+
13inline herr_t h5_free_memory(void* mem) {
+
14 return H5free_memory(mem);
+
15}
+
16} // namespace nothrow
+
17
+
18} // namespace detail
+
19} // namespace HighFive
+
Definition H5_definitions.hpp:22
+
+
+ + + + diff --git a/h5a__wrapper_8hpp.html b/h5a__wrapper_8hpp.html new file mode 100644 index 000000000..64968e429 --- /dev/null +++ b/h5a__wrapper_8hpp.html @@ -0,0 +1,182 @@ + + + + + + + +HighFive: highfive/bits/h5a_wrapper.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
h5a_wrapper.hpp File Reference
+
+
+
#include <H5Apublic.h>
+#include <H5Ipublic.h>
+
+Include dependency graph for h5a_wrapper.hpp:
+
+
+ + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/h5a__wrapper_8hpp__dep__incl.map b/h5a__wrapper_8hpp__dep__incl.map new file mode 100644 index 000000000..43d7e9349 --- /dev/null +++ b/h5a__wrapper_8hpp__dep__incl.map @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/h5a__wrapper_8hpp__dep__incl.md5 b/h5a__wrapper_8hpp__dep__incl.md5 new file mode 100644 index 000000000..7af90e1e2 --- /dev/null +++ b/h5a__wrapper_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +a5e066fb54ca410a37f8d4b463f31810 \ No newline at end of file diff --git a/h5a__wrapper_8hpp__dep__incl.png b/h5a__wrapper_8hpp__dep__incl.png new file mode 100644 index 000000000..11f35bda6 Binary files /dev/null and b/h5a__wrapper_8hpp__dep__incl.png differ diff --git a/h5a__wrapper_8hpp__incl.map b/h5a__wrapper_8hpp__incl.map new file mode 100644 index 000000000..5da5511ee --- /dev/null +++ b/h5a__wrapper_8hpp__incl.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/h5a__wrapper_8hpp__incl.md5 b/h5a__wrapper_8hpp__incl.md5 new file mode 100644 index 000000000..b84cf5e13 --- /dev/null +++ b/h5a__wrapper_8hpp__incl.md5 @@ -0,0 +1 @@ +6943f96521a4fcd0c0e5a4b1147bd9ec \ No newline at end of file diff --git a/h5a__wrapper_8hpp__incl.png b/h5a__wrapper_8hpp__incl.png new file mode 100644 index 000000000..598c0d8fd Binary files /dev/null and b/h5a__wrapper_8hpp__incl.png differ diff --git a/h5a__wrapper_8hpp_source.html b/h5a__wrapper_8hpp_source.html new file mode 100644 index 000000000..f7e4bf119 --- /dev/null +++ b/h5a__wrapper_8hpp_source.html @@ -0,0 +1,247 @@ + + + + + + + +HighFive: highfive/bits/h5a_wrapper.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
h5a_wrapper.hpp
+
+
+Go to the documentation of this file.
1#pragma once
+
2
+
3#include <H5Apublic.h>
+
4#include <H5Ipublic.h>
+
5
+
6namespace HighFive {
+
7namespace detail {
+
8
+
9inline hid_t h5a_create2(hid_t loc_id,
+
10 char const* const attr_name,
+
11 hid_t type_id,
+
12 hid_t space_id,
+
13 hid_t acpl_id,
+
14 hid_t aapl_id) {
+
15 auto attr_id = H5Acreate2(loc_id, attr_name, type_id, space_id, acpl_id, aapl_id);
+
16 if (attr_id < 0) {
+ +
18 std::string("Unable to create the attribute \"") + attr_name + "\":");
+
19 }
+
20
+
21 return attr_id;
+
22}
+
23
+
24inline void h5a_delete(hid_t loc_id, char const* const attr_name) {
+
25 if (H5Adelete(loc_id, attr_name) < 0) {
+ +
27 std::string("Unable to delete attribute \"") + attr_name + "\":");
+
28 }
+
29}
+
30
+
31inline hid_t h5a_open(hid_t loc_id, char const* const attr_name, hid_t aapl_id) {
+
32 const auto attr_id = H5Aopen(loc_id, attr_name, aapl_id);
+
33 if (attr_id < 0) {
+ +
35 std::string("Unable to open the attribute \"") + attr_name + "\":");
+
36 }
+
37
+
38 return attr_id;
+
39}
+
40
+
41
+
42inline int h5a_get_num_attrs(hid_t loc_id) {
+
43 int res = H5Aget_num_attrs(loc_id);
+
44 if (res < 0) {
+ +
46 std::string("Unable to count attributes in existing group or file"));
+
47 }
+
48
+
49 return res;
+
50}
+
51
+
52
+
53inline void h5a_iterate2(hid_t loc_id,
+
54 H5_index_t idx_type,
+
55 H5_iter_order_t order,
+
56 hsize_t* idx,
+
57 H5A_operator2_t op,
+
58 void* op_data) {
+
59 if (H5Aiterate2(loc_id, idx_type, order, idx, op, op_data) < 0) {
+
60 HDF5ErrMapper::ToException<AttributeException>(std::string("Failed H5Aiterate2."));
+
61 }
+
62}
+
63
+
64inline int h5a_exists(hid_t obj_id, char const* const attr_name) {
+
65 int res = H5Aexists(obj_id, attr_name);
+
66 if (res < 0) {
+ +
68 std::string("Unable to check for attribute in group"));
+
69 }
+
70
+
71 return res;
+
72}
+
73
+
74inline ssize_t h5a_get_name(hid_t attr_id, size_t buf_size, char* buf) {
+
75 ssize_t name_length = H5Aget_name(attr_id, buf_size, buf);
+
76 if (name_length < 0) {
+ +
78 std::string("Unable to get name of attribute"));
+
79 }
+
80
+
81 return name_length;
+
82}
+
83
+
84
+
85inline hid_t h5a_get_space(hid_t attr_id) {
+
86 hid_t attr = H5Aget_space(attr_id);
+
87 if (attr < 0) {
+ +
89 std::string("Unable to get dataspace of attribute"));
+
90 }
+
91
+
92 return attr;
+
93}
+
94
+
95inline hsize_t h5a_get_storage_size(hid_t attr_id) {
+
96 // Docs:
+
97 // Returns the amount of storage size allocated for the attribute;
+
98 // otherwise returns 0 (zero).
+
99 return H5Aget_storage_size(attr_id);
+
100}
+
101
+
102inline hid_t h5a_get_type(hid_t attr_id) {
+
103 hid_t type_id = H5Aget_type(attr_id);
+
104 if (type_id == H5I_INVALID_HID) {
+ +
106 std::string("Unable to get datatype of attribute"));
+
107 }
+
108
+
109 return type_id;
+
110}
+
111
+
112inline herr_t h5a_read(hid_t attr_id, hid_t type_id, void* buf) {
+
113 herr_t err = H5Aread(attr_id, type_id, buf);
+
114 if (err < 0) {
+
115 HDF5ErrMapper::ToException<AttributeException>(std::string("Unable to read attribute"));
+
116 }
+
117
+
118 return err;
+
119}
+
120
+
121inline herr_t h5a_write(hid_t attr_id, hid_t type_id, void const* buf) {
+
122 herr_t err = H5Awrite(attr_id, type_id, buf);
+
123 if (err < 0) {
+
124 HDF5ErrMapper::ToException<AttributeException>(std::string("Unable to write attribute"));
+
125 }
+
126
+
127 return err;
+
128}
+
129
+
130} // namespace detail
+
131} // namespace HighFive
+
Definition H5_definitions.hpp:22
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/h5d__wrapper_8hpp.html b/h5d__wrapper_8hpp.html new file mode 100644 index 000000000..d790c4c34 --- /dev/null +++ b/h5d__wrapper_8hpp.html @@ -0,0 +1,189 @@ + + + + + + + +HighFive: highfive/bits/h5d_wrapper.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
h5d_wrapper.hpp File Reference
+
+
+
#include <H5Dpublic.h>
+#include <H5Ipublic.h>
+
+Include dependency graph for h5d_wrapper.hpp:
+
+
+ + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/h5d__wrapper_8hpp__dep__incl.map b/h5d__wrapper_8hpp__dep__incl.map new file mode 100644 index 000000000..8dc7054f7 --- /dev/null +++ b/h5d__wrapper_8hpp__dep__incl.map @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/h5d__wrapper_8hpp__dep__incl.md5 b/h5d__wrapper_8hpp__dep__incl.md5 new file mode 100644 index 000000000..2d5bcb0dc --- /dev/null +++ b/h5d__wrapper_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +ae6d463c669b02d44990fbd82a72894e \ No newline at end of file diff --git a/h5d__wrapper_8hpp__dep__incl.png b/h5d__wrapper_8hpp__dep__incl.png new file mode 100644 index 000000000..5bf79d095 Binary files /dev/null and b/h5d__wrapper_8hpp__dep__incl.png differ diff --git a/h5d__wrapper_8hpp__incl.map b/h5d__wrapper_8hpp__incl.map new file mode 100644 index 000000000..efe6502dd --- /dev/null +++ b/h5d__wrapper_8hpp__incl.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/h5d__wrapper_8hpp__incl.md5 b/h5d__wrapper_8hpp__incl.md5 new file mode 100644 index 000000000..ba668f0e9 --- /dev/null +++ b/h5d__wrapper_8hpp__incl.md5 @@ -0,0 +1 @@ +524531a5e2bd583329477f2a0e950ad7 \ No newline at end of file diff --git a/h5d__wrapper_8hpp__incl.png b/h5d__wrapper_8hpp__incl.png new file mode 100644 index 000000000..3bf63cbb0 Binary files /dev/null and b/h5d__wrapper_8hpp__incl.png differ diff --git a/h5d__wrapper_8hpp_source.html b/h5d__wrapper_8hpp_source.html new file mode 100644 index 000000000..dd80b0f1d --- /dev/null +++ b/h5d__wrapper_8hpp_source.html @@ -0,0 +1,241 @@ + + + + + + + +HighFive: highfive/bits/h5d_wrapper.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
h5d_wrapper.hpp
+
+
+Go to the documentation of this file.
1#pragma once
+
2
+
3#include <H5Dpublic.h>
+
4#include <H5Ipublic.h>
+
5
+
6namespace HighFive {
+
7namespace detail {
+
8
+
9
+
10#if !H5_VERSION_GE(1, 12, 0)
+
11inline herr_t h5d_vlen_reclaim(hid_t type_id, hid_t space_id, hid_t dxpl_id, void* buf) {
+
12 herr_t err = H5Dvlen_reclaim(type_id, space_id, dxpl_id, buf);
+
13 if (err < 0) {
+
14 throw DataSetException("Failed to reclaim HDF5 internal memory");
+
15 }
+
16
+
17 return err;
+
18}
+
19#endif
+
20
+
21inline hsize_t h5d_get_storage_size(hid_t dset_id) {
+
22 // Docs:
+
23 // H5Dget_storage_size() does not differentiate between 0 (zero), the
+
24 // value returned for the storage size of a dataset with no stored values,
+
25 // and 0 (zero), the value returned to indicate an error.
+
26 return H5Dget_storage_size(dset_id);
+
27}
+
28
+
29inline hid_t h5d_get_space(hid_t dset_id) {
+
30 hid_t dset = H5Dget_space(dset_id);
+
31 if (dset == H5I_INVALID_HID) {
+ +
33 std::string("Unable to get dataspace of the dataset"));
+
34 }
+
35
+
36 return dset;
+
37}
+
38
+
39inline hid_t h5d_get_type(hid_t dset_id) {
+
40 hid_t type_id = H5Dget_type(dset_id);
+
41 if (type_id == H5I_INVALID_HID) {
+ +
43 std::string("Unable to get datatype of the dataset"));
+
44 }
+
45
+
46 return type_id;
+
47}
+
48
+
49inline herr_t h5d_read(hid_t dset_id,
+
50 hid_t mem_type_id,
+
51 hid_t mem_space_id,
+
52 hid_t file_space_id,
+
53 hid_t dxpl_id,
+
54 void* buf) {
+
55 herr_t err = H5Dread(dset_id, mem_type_id, mem_space_id, file_space_id, dxpl_id, buf);
+
56 if (err < 0) {
+
57 HDF5ErrMapper::ToException<DataSetException>(std::string("Unable to read the dataset"));
+
58 }
+
59
+
60 return err;
+
61}
+
62
+
63inline herr_t h5d_write(hid_t dset_id,
+
64 hid_t mem_type_id,
+
65 hid_t mem_space_id,
+
66 hid_t file_space_id,
+
67 hid_t dxpl_id,
+
68 const void* buf) {
+
69 herr_t err = H5Dwrite(dset_id, mem_type_id, mem_space_id, file_space_id, dxpl_id, buf);
+
70 if (err < 0) {
+
71 HDF5ErrMapper::ToException<DataSetException>(std::string("Unable to write the dataset"));
+
72 }
+
73
+
74 return err;
+
75}
+
76
+
77inline haddr_t h5d_get_offset(hid_t dset_id) {
+
78 uint64_t addr = H5Dget_offset(dset_id);
+
79 if (addr == HADDR_UNDEF) {
+
80 HDF5ErrMapper::ToException<DataSetException>("Cannot get offset of DataSet.");
+
81 }
+
82 return addr;
+
83}
+
84
+
85
+
86inline herr_t h5d_set_extent(hid_t dset_id, const hsize_t size[]) {
+
87 herr_t err = H5Dset_extent(dset_id, size);
+
88 if (H5Dset_extent(dset_id, size) < 0) {
+
89 HDF5ErrMapper::ToException<DataSetException>("Could not resize dataset.");
+
90 }
+
91
+
92 return err;
+
93}
+
94
+
95inline hid_t h5d_create2(hid_t loc_id,
+
96 const char* name,
+
97 hid_t type_id,
+
98 hid_t space_id,
+
99 hid_t lcpl_id,
+
100 hid_t dcpl_id,
+
101 hid_t dapl_id) {
+
102 hid_t dataset_id = H5Dcreate2(loc_id, name, type_id, space_id, lcpl_id, dcpl_id, dapl_id);
+
103
+
104 if (dataset_id == H5I_INVALID_HID) {
+ +
106 std::string("Failed to create the dataset \"") + name + "\":");
+
107 }
+
108
+
109 return dataset_id;
+
110}
+
111
+
112inline hid_t h5d_open2(hid_t loc_id, const char* name, hid_t dapl_id) {
+
113 hid_t dataset_id = H5Dopen2(loc_id, name, dapl_id);
+
114
+
115 if (dataset_id == H5I_INVALID_HID) {
+
116 HDF5ErrMapper::ToException<DataSetException>(std::string("Unable to open the dataset \"") +
+
117 name + "\":");
+
118 }
+
119
+
120 return dataset_id;
+
121}
+
122
+
123
+
124} // namespace detail
+
125} // namespace HighFive
+
Definition H5_definitions.hpp:22
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/h5e__wrapper_8hpp.html b/h5e__wrapper_8hpp.html new file mode 100644 index 000000000..1bae839eb --- /dev/null +++ b/h5e__wrapper_8hpp.html @@ -0,0 +1,293 @@ + + + + + + + +HighFive: highfive/bits/h5e_wrapper.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
h5e_wrapper.hpp File Reference
+
+
+
#include <H5Epublic.h>
+
+Include dependency graph for h5e_wrapper.hpp:
+
+
+ + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/h5e__wrapper_8hpp__dep__incl.map b/h5e__wrapper_8hpp__dep__incl.map new file mode 100644 index 000000000..7c7762604 --- /dev/null +++ b/h5e__wrapper_8hpp__dep__incl.map @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/h5e__wrapper_8hpp__dep__incl.md5 b/h5e__wrapper_8hpp__dep__incl.md5 new file mode 100644 index 000000000..682ce91dc --- /dev/null +++ b/h5e__wrapper_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +e0b8f2b7a7fe45edbfa31403ca69a1fe \ No newline at end of file diff --git a/h5e__wrapper_8hpp__dep__incl.png b/h5e__wrapper_8hpp__dep__incl.png new file mode 100644 index 000000000..0248440ef Binary files /dev/null and b/h5e__wrapper_8hpp__dep__incl.png differ diff --git a/h5e__wrapper_8hpp__incl.map b/h5e__wrapper_8hpp__incl.map new file mode 100644 index 000000000..852dbddfb --- /dev/null +++ b/h5e__wrapper_8hpp__incl.map @@ -0,0 +1,5 @@ + + + + + diff --git a/h5e__wrapper_8hpp__incl.md5 b/h5e__wrapper_8hpp__incl.md5 new file mode 100644 index 000000000..ef3048da5 --- /dev/null +++ b/h5e__wrapper_8hpp__incl.md5 @@ -0,0 +1 @@ +dfcb70f5557234af47ef6d9a216a1a0e \ No newline at end of file diff --git a/h5e__wrapper_8hpp__incl.png b/h5e__wrapper_8hpp__incl.png new file mode 100644 index 000000000..06a3eb0ce Binary files /dev/null and b/h5e__wrapper_8hpp__incl.png differ diff --git a/h5e__wrapper_8hpp_source.html b/h5e__wrapper_8hpp_source.html new file mode 100644 index 000000000..e155cfb9f --- /dev/null +++ b/h5e__wrapper_8hpp_source.html @@ -0,0 +1,154 @@ + + + + + + + +HighFive: highfive/bits/h5e_wrapper.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
h5e_wrapper.hpp
+
+
+Go to the documentation of this file.
1#pragma once
+
2
+
3#include <H5Epublic.h>
+
4namespace HighFive {
+
5namespace detail {
+
6namespace nothrow {
+
7
+
8
+
9inline void h5e_get_auto2(hid_t estack_id, H5E_auto2_t* func, void** client_data) {
+
10 H5Eget_auto2(estack_id, func, client_data);
+
11}
+
12
+
13inline void h5e_set_auto2(hid_t estack_id, H5E_auto2_t func, void* client_data) {
+
14 H5Eset_auto2(estack_id, func, client_data);
+
15}
+
16
+
17inline char* h5e_get_major(H5E_major_t maj) {
+
18 return H5Eget_major(maj);
+
19}
+
20
+
21inline char* h5e_get_minor(H5E_minor_t min) {
+
22 return H5Eget_minor(min);
+
23}
+
24
+
25inline herr_t h5e_walk2(hid_t err_stack,
+
26 H5E_direction_t direction,
+
27 H5E_walk2_t func,
+
28 void* client_data) {
+
29 return H5Ewalk2(err_stack, direction, func, client_data);
+
30}
+
31
+
32inline herr_t h5e_clear2(hid_t err_stack) {
+
33 return H5Eclear2(err_stack);
+
34}
+
35
+
36
+
37} // namespace nothrow
+
38} // namespace detail
+
39} // namespace HighFive
+
Definition H5_definitions.hpp:22
+
+
+ + + + diff --git a/h5f__wrapper_8hpp.html b/h5f__wrapper_8hpp.html new file mode 100644 index 000000000..83c5d9096 --- /dev/null +++ b/h5f__wrapper_8hpp.html @@ -0,0 +1,176 @@ + + + + + + + +HighFive: highfive/bits/h5f_wrapper.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
h5f_wrapper.hpp File Reference
+
+
+
#include <H5Fpublic.h>
+
+Include dependency graph for h5f_wrapper.hpp:
+
+
+ + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/h5f__wrapper_8hpp__dep__incl.map b/h5f__wrapper_8hpp__dep__incl.map new file mode 100644 index 000000000..63e1fa8d2 --- /dev/null +++ b/h5f__wrapper_8hpp__dep__incl.map @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/h5f__wrapper_8hpp__dep__incl.md5 b/h5f__wrapper_8hpp__dep__incl.md5 new file mode 100644 index 000000000..1baa35ae1 --- /dev/null +++ b/h5f__wrapper_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +e9938b4ff269659eeee0823d2461303d \ No newline at end of file diff --git a/h5f__wrapper_8hpp__dep__incl.png b/h5f__wrapper_8hpp__dep__incl.png new file mode 100644 index 000000000..9e7e91d5e Binary files /dev/null and b/h5f__wrapper_8hpp__dep__incl.png differ diff --git a/h5f__wrapper_8hpp__incl.map b/h5f__wrapper_8hpp__incl.map new file mode 100644 index 000000000..54c41803d --- /dev/null +++ b/h5f__wrapper_8hpp__incl.map @@ -0,0 +1,5 @@ + + + + + diff --git a/h5f__wrapper_8hpp__incl.md5 b/h5f__wrapper_8hpp__incl.md5 new file mode 100644 index 000000000..31e3bebc2 --- /dev/null +++ b/h5f__wrapper_8hpp__incl.md5 @@ -0,0 +1 @@ +947d75730ffbd45801583835019be764 \ No newline at end of file diff --git a/h5f__wrapper_8hpp__incl.png b/h5f__wrapper_8hpp__incl.png new file mode 100644 index 000000000..d016b1486 Binary files /dev/null and b/h5f__wrapper_8hpp__incl.png differ diff --git a/h5f__wrapper_8hpp_source.html b/h5f__wrapper_8hpp_source.html new file mode 100644 index 000000000..f314916d6 --- /dev/null +++ b/h5f__wrapper_8hpp_source.html @@ -0,0 +1,174 @@ + + + + + + + +HighFive: highfive/bits/h5f_wrapper.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
h5f_wrapper.hpp
+
+
+Go to the documentation of this file.
1#pragma once
+
2
+
3#include <H5Fpublic.h>
+
4namespace HighFive {
+
5namespace detail {
+
6namespace nothrow {
+
7inline hid_t h5f_open(const char* filename, unsigned flags, hid_t fapl_id) {
+
8 return H5Fopen(filename, flags, fapl_id);
+
9}
+
10} // namespace nothrow
+
11
+
12inline hid_t h5f_create(const char* filename, unsigned flags, hid_t fcpl_id, hid_t fapl_id) {
+
13 hid_t file_id = H5Fcreate(filename, flags, fcpl_id, fapl_id);
+
14
+
15 if (file_id == H5I_INVALID_HID) {
+
16 HDF5ErrMapper::ToException<FileException>(std::string("Failed to create file ") + filename);
+
17 }
+
18 return file_id;
+
19}
+
20
+
21inline ssize_t h5f_get_name(hid_t obj_id, char* name, size_t size) {
+
22 ssize_t nread = H5Fget_name(obj_id, name, size);
+
23 if (nread < 0) {
+
24 HDF5ErrMapper::ToException<FileException>(std::string("Failed to get file from id"));
+
25 }
+
26
+
27 return nread;
+
28}
+
29
+
30inline herr_t h5f_flush(hid_t object_id, H5F_scope_t scope) {
+
31 herr_t err = H5Fflush(object_id, scope);
+
32 if (err < 0) {
+
33 HDF5ErrMapper::ToException<FileException>(std::string("Failed to flush file"));
+
34 }
+
35
+
36 return err;
+
37}
+
38
+
39inline herr_t h5f_get_filesize(hid_t file_id, hsize_t* size) {
+
40 herr_t err = H5Fget_filesize(file_id, size);
+
41 if (err < 0) {
+
42 HDF5ErrMapper::ToException<FileException>(std::string("Unable to retrieve size of file"));
+
43 }
+
44
+
45 return err;
+
46}
+
47
+
48inline hssize_t h5f_get_freespace(hid_t file_id) {
+
49 hssize_t free_space = H5Fget_freespace(file_id);
+
50 if (free_space < 0) {
+ +
52 std::string("Unable to retrieve unused space of file "));
+
53 }
+
54 return free_space;
+
55}
+
56
+
57} // namespace detail
+
58} // namespace HighFive
+
Definition H5_definitions.hpp:22
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/h5g__wrapper_8hpp.html b/h5g__wrapper_8hpp.html new file mode 100644 index 000000000..243bdf936 --- /dev/null +++ b/h5g__wrapper_8hpp.html @@ -0,0 +1,203 @@ + + + + + + + +HighFive: highfive/bits/h5g_wrapper.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
h5g_wrapper.hpp File Reference
+
+
+
#include <H5Dpublic.h>
+#include <H5Ipublic.h>
+#include <highfive/H5Exception.hpp>
+
+Include dependency graph for h5g_wrapper.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/h5g__wrapper_8hpp__dep__incl.map b/h5g__wrapper_8hpp__dep__incl.map new file mode 100644 index 000000000..793af8d23 --- /dev/null +++ b/h5g__wrapper_8hpp__dep__incl.map @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/h5g__wrapper_8hpp__dep__incl.md5 b/h5g__wrapper_8hpp__dep__incl.md5 new file mode 100644 index 000000000..948823e2b --- /dev/null +++ b/h5g__wrapper_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +9e0c0097b79bdaf0890f6918203718fe \ No newline at end of file diff --git a/h5g__wrapper_8hpp__dep__incl.png b/h5g__wrapper_8hpp__dep__incl.png new file mode 100644 index 000000000..cd8cab2f0 Binary files /dev/null and b/h5g__wrapper_8hpp__dep__incl.png differ diff --git a/h5g__wrapper_8hpp__incl.map b/h5g__wrapper_8hpp__incl.map new file mode 100644 index 000000000..ba67a4d6b --- /dev/null +++ b/h5g__wrapper_8hpp__incl.map @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/h5g__wrapper_8hpp__incl.md5 b/h5g__wrapper_8hpp__incl.md5 new file mode 100644 index 000000000..f0765784d --- /dev/null +++ b/h5g__wrapper_8hpp__incl.md5 @@ -0,0 +1 @@ +a70d5deabcd94cabf108464deece85e8 \ No newline at end of file diff --git a/h5g__wrapper_8hpp__incl.png b/h5g__wrapper_8hpp__incl.png new file mode 100644 index 000000000..014e6ae93 Binary files /dev/null and b/h5g__wrapper_8hpp__incl.png differ diff --git a/h5g__wrapper_8hpp_source.html b/h5g__wrapper_8hpp_source.html new file mode 100644 index 000000000..350d3b672 --- /dev/null +++ b/h5g__wrapper_8hpp_source.html @@ -0,0 +1,163 @@ + + + + + + + +HighFive: highfive/bits/h5g_wrapper.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
h5g_wrapper.hpp
+
+
+Go to the documentation of this file.
1#pragma once
+
2
+
3#include <H5Dpublic.h>
+
4#include <H5Ipublic.h>
+
5
+ +
7
+
8namespace HighFive {
+
9namespace detail {
+
10
+
11inline hid_t h5g_create2(hid_t loc_id,
+
12 const char* name,
+
13 hid_t lcpl_id,
+
14 hid_t gcpl_id,
+
15 hid_t gapl_id) {
+
16 hid_t group_id = H5Gcreate2(loc_id, name, lcpl_id, gcpl_id, gapl_id);
+
17 if (group_id == H5I_INVALID_HID) {
+
18 HDF5ErrMapper::ToException<GroupException>(std::string("Unable to create the group \"") +
+
19 name + "\":");
+
20 }
+
21
+
22 return group_id;
+
23}
+
24
+
25inline hid_t h5g_open2(hid_t loc_id, const char* name, hid_t gapl_id) {
+
26 hid_t group_id = H5Gopen2(loc_id, name, gapl_id);
+
27 if (group_id == H5I_INVALID_HID) {
+
28 HDF5ErrMapper::ToException<GroupException>(std::string("Unable to open the group \"") +
+
29 name + "\":");
+
30 }
+
31 return group_id;
+
32}
+
33
+
34inline herr_t h5g_get_num_objs(hid_t loc_id, hsize_t* num_objs) {
+
35 herr_t err = H5Gget_num_objs(loc_id, num_objs);
+
36 if (err < 0) {
+ +
38 std::string("Unable to count objects in existing group or file"));
+
39 }
+
40
+
41 return err;
+
42}
+
43
+
44
+
45} // namespace detail
+
46} // namespace HighFive
+ +
Definition H5_definitions.hpp:22
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/h5i__wrapper_8hpp.html b/h5i__wrapper_8hpp.html new file mode 100644 index 000000000..3177b1f3a --- /dev/null +++ b/h5i__wrapper_8hpp.html @@ -0,0 +1,254 @@ + + + + + + + +HighFive: highfive/bits/h5i_wrapper.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
h5i_wrapper.hpp File Reference
+
+
+
#include <H5Ipublic.h>
+
+Include dependency graph for h5i_wrapper.hpp:
+
+
+ + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/h5i__wrapper_8hpp__dep__incl.map b/h5i__wrapper_8hpp__dep__incl.map new file mode 100644 index 000000000..6b65d6a26 --- /dev/null +++ b/h5i__wrapper_8hpp__dep__incl.map @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/h5i__wrapper_8hpp__dep__incl.md5 b/h5i__wrapper_8hpp__dep__incl.md5 new file mode 100644 index 000000000..f16eb5638 --- /dev/null +++ b/h5i__wrapper_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +b61bb99a4c575fdab25972643043ce11 \ No newline at end of file diff --git a/h5i__wrapper_8hpp__dep__incl.png b/h5i__wrapper_8hpp__dep__incl.png new file mode 100644 index 000000000..68e43a047 Binary files /dev/null and b/h5i__wrapper_8hpp__dep__incl.png differ diff --git a/h5i__wrapper_8hpp__incl.map b/h5i__wrapper_8hpp__incl.map new file mode 100644 index 000000000..ba194f4fb --- /dev/null +++ b/h5i__wrapper_8hpp__incl.map @@ -0,0 +1,5 @@ + + + + + diff --git a/h5i__wrapper_8hpp__incl.md5 b/h5i__wrapper_8hpp__incl.md5 new file mode 100644 index 000000000..9e0fb8b8b --- /dev/null +++ b/h5i__wrapper_8hpp__incl.md5 @@ -0,0 +1 @@ +b055f6a6e2c7740f729d987b192eabb0 \ No newline at end of file diff --git a/h5i__wrapper_8hpp__incl.png b/h5i__wrapper_8hpp__incl.png new file mode 100644 index 000000000..9d9f4fe2a Binary files /dev/null and b/h5i__wrapper_8hpp__incl.png differ diff --git a/h5i__wrapper_8hpp_source.html b/h5i__wrapper_8hpp_source.html new file mode 100644 index 000000000..4c2ce9d2f --- /dev/null +++ b/h5i__wrapper_8hpp_source.html @@ -0,0 +1,195 @@ + + + + + + + +HighFive: highfive/bits/h5i_wrapper.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
h5i_wrapper.hpp
+
+
+Go to the documentation of this file.
1#pragma once
+
2
+
3#include <H5Ipublic.h>
+
4
+
5namespace HighFive {
+
6namespace detail {
+
7inline int h5i_inc_ref(hid_t id) {
+
8 auto count = H5Iinc_ref(id);
+
9
+
10 if (count < 0) {
+
11 throw ObjectException("Failed to increase reference count of HID");
+
12 }
+
13
+
14 return count;
+
15}
+
16
+
17namespace nothrow {
+
18
+
19inline int h5i_dec_ref(hid_t id) {
+
20 return H5Idec_ref(id);
+
21}
+
22
+
23} // namespace nothrow
+
24
+
25inline int h5i_dec_ref(hid_t id) {
+
26 int count = H5Idec_ref(id);
+
27 if (count < 0) {
+
28 throw ObjectException("Failed to decrease reference count of HID");
+
29 }
+
30
+
31 return count;
+
32}
+
33
+
34namespace nothrow {
+
35inline htri_t h5i_is_valid(hid_t id) {
+
36 return H5Iis_valid(id);
+
37}
+
38
+
39} // namespace nothrow
+
40
+
41inline htri_t h5i_is_valid(hid_t id) {
+
42 htri_t tri = H5Iis_valid(id);
+
43 if (tri < 0) {
+
44 throw ObjectException("Failed to check if HID is valid");
+
45 }
+
46
+
47 return tri;
+
48}
+
49
+
50inline H5I_type_t h5i_get_type(hid_t id) {
+
51 H5I_type_t type = H5Iget_type(id);
+
52 if (type == H5I_BADID) {
+
53 HDF5ErrMapper::ToException<ObjectException>("Failed to get type of HID");
+
54 }
+
55
+
56 return type;
+
57}
+
58
+
59template <class Exception>
+
60inline hid_t h5i_get_file_id(hid_t id) {
+
61 hid_t file_id = H5Iget_file_id(id);
+
62 if (file_id < 0) {
+
63 HDF5ErrMapper::ToException<Exception>("Failed not obtain file HID of object");
+
64 }
+
65
+
66 return file_id;
+
67}
+
68
+
69inline ssize_t h5i_get_name(hid_t id, char* name, size_t size) {
+
70 ssize_t n_chars = H5Iget_name(id, name, size);
+
71 if (n_chars < 0) {
+
72 HDF5ErrMapper::ToException<ObjectException>("Failed to get name of HID.");
+
73 }
+
74
+
75 return n_chars;
+
76}
+
77
+
78} // namespace detail
+
79} // namespace HighFive
+
Definition H5_definitions.hpp:22
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/h5l__wrapper_8hpp.html b/h5l__wrapper_8hpp.html new file mode 100644 index 000000000..6e04505e4 --- /dev/null +++ b/h5l__wrapper_8hpp.html @@ -0,0 +1,176 @@ + + + + + + + +HighFive: highfive/bits/h5l_wrapper.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
h5l_wrapper.hpp File Reference
+
+
+
#include <H5Lpublic.h>
+
+Include dependency graph for h5l_wrapper.hpp:
+
+
+ + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/h5l__wrapper_8hpp__dep__incl.map b/h5l__wrapper_8hpp__dep__incl.map new file mode 100644 index 000000000..88caea7a7 --- /dev/null +++ b/h5l__wrapper_8hpp__dep__incl.map @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/h5l__wrapper_8hpp__dep__incl.md5 b/h5l__wrapper_8hpp__dep__incl.md5 new file mode 100644 index 000000000..f4a1a4059 --- /dev/null +++ b/h5l__wrapper_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +2fde595adb8594877221aa24093d6517 \ No newline at end of file diff --git a/h5l__wrapper_8hpp__dep__incl.png b/h5l__wrapper_8hpp__dep__incl.png new file mode 100644 index 000000000..2e53fb6f4 Binary files /dev/null and b/h5l__wrapper_8hpp__dep__incl.png differ diff --git a/h5l__wrapper_8hpp__incl.map b/h5l__wrapper_8hpp__incl.map new file mode 100644 index 000000000..605103cfb --- /dev/null +++ b/h5l__wrapper_8hpp__incl.map @@ -0,0 +1,5 @@ + + + + + diff --git a/h5l__wrapper_8hpp__incl.md5 b/h5l__wrapper_8hpp__incl.md5 new file mode 100644 index 000000000..30a6e9095 --- /dev/null +++ b/h5l__wrapper_8hpp__incl.md5 @@ -0,0 +1 @@ +1e3145ab5f99a75b337a06eb6746cda1 \ No newline at end of file diff --git a/h5l__wrapper_8hpp__incl.png b/h5l__wrapper_8hpp__incl.png new file mode 100644 index 000000000..d3d272513 Binary files /dev/null and b/h5l__wrapper_8hpp__incl.png differ diff --git a/h5l__wrapper_8hpp_source.html b/h5l__wrapper_8hpp_source.html new file mode 100644 index 000000000..764e29118 --- /dev/null +++ b/h5l__wrapper_8hpp_source.html @@ -0,0 +1,248 @@ + + + + + + + +HighFive: highfive/bits/h5l_wrapper.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
h5l_wrapper.hpp
+
+
+Go to the documentation of this file.
1#pragma once
+
2
+
3#include <H5Lpublic.h>
+
4
+
5namespace HighFive {
+
6namespace detail {
+
7
+
8inline herr_t h5l_create_external(const char* file_name,
+
9 const char* obj_name,
+
10 hid_t link_loc_id,
+
11 const char* link_name,
+
12 hid_t lcpl_id,
+
13 hid_t lapl_id) {
+
14 herr_t err = H5Lcreate_external(file_name, obj_name, link_loc_id, link_name, lcpl_id, lapl_id);
+
15 if (err < 0) {
+
16 HDF5ErrMapper::ToException<GroupException>(std::string("Unable to create external link: "));
+
17 }
+
18
+
19 return err;
+
20}
+
21
+
22inline herr_t h5l_create_soft(const char* link_target,
+
23 hid_t link_loc_id,
+
24 const char* link_name,
+
25 hid_t lcpl_id,
+
26 hid_t lapl_id) {
+
27 herr_t err = H5Lcreate_soft(link_target, link_loc_id, link_name, lcpl_id, lapl_id);
+
28 if (err < 0) {
+
29 HDF5ErrMapper::ToException<GroupException>(std::string("Unable to create soft link: "));
+
30 }
+
31
+
32 return err;
+
33}
+
34
+
35inline herr_t h5l_create_hard(hid_t cur_loc,
+
36 const char* cur_name,
+
37 hid_t dst_loc,
+
38 const char* dst_name,
+
39 hid_t lcpl_id,
+
40 hid_t lapl_id) {
+
41 herr_t err = H5Lcreate_hard(cur_loc, cur_name, dst_loc, dst_name, lcpl_id, lapl_id);
+
42 if (err < 0) {
+
43 HDF5ErrMapper::ToException<GroupException>(std::string("Unable to create hard link: "));
+
44 }
+
45
+
46 return err;
+
47}
+
48
+
49inline herr_t h5l_get_info(hid_t loc_id, const char* name, H5L_info_t* linfo, hid_t lapl_id) {
+
50 herr_t err = H5Lget_info(loc_id, name, linfo, lapl_id);
+
51 if (err < 0) {
+
52 HDF5ErrMapper::ToException<GroupException>(std::string("Unable to obtain info for link "));
+
53 }
+
54
+
55 return err;
+
56}
+
57
+
58inline herr_t h5l_delete(hid_t loc_id, const char* name, hid_t lapl_id) {
+
59 herr_t err = H5Ldelete(loc_id, name, lapl_id);
+
60 if (err < 0) {
+
61 HDF5ErrMapper::ToException<GroupException>(std::string("Invalid name for unlink() "));
+
62 }
+
63
+
64 return err;
+
65}
+
66
+
67inline htri_t h5l_exists(hid_t loc_id, const char* name, hid_t lapl_id) {
+
68 htri_t tri = H5Lexists(loc_id, name, lapl_id);
+
69 if (tri < 0) {
+
70 HDF5ErrMapper::ToException<GroupException>("Invalid link for exist()");
+
71 }
+
72
+
73 return tri;
+
74}
+
75
+
76namespace nothrow {
+
77
+
78inline htri_t h5l_exists(hid_t loc_id, const char* name, hid_t lapl_id) {
+
79 return H5Lexists(loc_id, name, lapl_id);
+
80}
+
81
+
82} // namespace nothrow
+
83
+
84inline herr_t h5l_iterate(hid_t grp_id,
+
85 H5_index_t idx_type,
+
86 H5_iter_order_t order,
+
87 hsize_t* idx,
+
88 H5L_iterate_t op,
+
89 void* op_data) {
+
90 herr_t err = H5Literate(grp_id, idx_type, order, idx, op, op_data);
+
91 if (err < 0) {
+
92 HDF5ErrMapper::ToException<GroupException>(std::string("Unable to list objects in group"));
+
93 }
+
94 return err;
+
95}
+
96
+
97inline herr_t h5l_move(hid_t src_loc,
+
98 const char* src_name,
+
99 hid_t dst_loc,
+
100 const char* dst_name,
+
101 hid_t lcpl_id,
+
102 hid_t lapl_id) {
+
103 herr_t err = H5Lmove(src_loc, src_name, dst_loc, dst_name, lcpl_id, lapl_id);
+
104
+
105 if (err < 0) {
+
106 HDF5ErrMapper::ToException<GroupException>(std::string("Unable to move link to \"") +
+
107 dst_name + "\":");
+
108 }
+
109 return err;
+
110}
+
111
+
112inline ssize_t h5l_get_name_by_idx(hid_t loc_id,
+
113 const char* group_name,
+
114 H5_index_t idx_type,
+
115 H5_iter_order_t order,
+
116 hsize_t n,
+
117 char* name,
+
118 size_t size,
+
119 hid_t lapl_id) {
+
120 ssize_t n_chars =
+
121 H5Lget_name_by_idx(loc_id, group_name, idx_type, order, n, name, size, lapl_id);
+
122
+
123 if (n_chars < 0) {
+ +
125 std::string("Unable to obtain link name from index."));
+
126 }
+
127
+
128 return n_chars;
+
129}
+
130
+
131} // namespace detail
+
132} // namespace HighFive
+
Definition H5_definitions.hpp:22
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/h5o__wrapper_8hpp.html b/h5o__wrapper_8hpp.html new file mode 100644 index 000000000..c60c24cd8 --- /dev/null +++ b/h5o__wrapper_8hpp.html @@ -0,0 +1,179 @@ + + + + + + + +HighFive: highfive/bits/h5o_wrapper.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
h5o_wrapper.hpp File Reference
+
+
+
#include <H5Ipublic.h>
+#include <H5Tpublic.h>
+
+Include dependency graph for h5o_wrapper.hpp:
+
+
+ + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/h5o__wrapper_8hpp__dep__incl.map b/h5o__wrapper_8hpp__dep__incl.map new file mode 100644 index 000000000..65951217e --- /dev/null +++ b/h5o__wrapper_8hpp__dep__incl.map @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/h5o__wrapper_8hpp__dep__incl.md5 b/h5o__wrapper_8hpp__dep__incl.md5 new file mode 100644 index 000000000..c412a1d5b --- /dev/null +++ b/h5o__wrapper_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +0295d2f1e1a4f46d6346938a1c56dc82 \ No newline at end of file diff --git a/h5o__wrapper_8hpp__dep__incl.png b/h5o__wrapper_8hpp__dep__incl.png new file mode 100644 index 000000000..c843dcb60 Binary files /dev/null and b/h5o__wrapper_8hpp__dep__incl.png differ diff --git a/h5o__wrapper_8hpp__incl.map b/h5o__wrapper_8hpp__incl.map new file mode 100644 index 000000000..ebed9793f --- /dev/null +++ b/h5o__wrapper_8hpp__incl.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/h5o__wrapper_8hpp__incl.md5 b/h5o__wrapper_8hpp__incl.md5 new file mode 100644 index 000000000..1a362c2d0 --- /dev/null +++ b/h5o__wrapper_8hpp__incl.md5 @@ -0,0 +1 @@ +be312eb395f893ed1b4793d5a8becbca \ No newline at end of file diff --git a/h5o__wrapper_8hpp__incl.png b/h5o__wrapper_8hpp__incl.png new file mode 100644 index 000000000..f71357ef1 Binary files /dev/null and b/h5o__wrapper_8hpp__incl.png differ diff --git a/h5o__wrapper_8hpp_source.html b/h5o__wrapper_8hpp_source.html new file mode 100644 index 000000000..dd71bc70e --- /dev/null +++ b/h5o__wrapper_8hpp_source.html @@ -0,0 +1,135 @@ + + + + + + + +HighFive: highfive/bits/h5o_wrapper.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
h5o_wrapper.hpp
+
+
+Go to the documentation of this file.
1#pragma once
+
2
+
3#include <H5Ipublic.h>
+
4#include <H5Tpublic.h>
+
5
+
6namespace HighFive {
+
7namespace detail {
+
8
+
9inline hid_t h5o_open(hid_t loc_id, const char* name, hid_t lapl_id) {
+
10 hid_t hid = H5Oopen(loc_id, name, lapl_id);
+
11 if (hid < 0) {
+
12 HDF5ErrMapper::ToException<GroupException>(std::string("Unable to open \"") + name + "\":");
+
13 }
+
14
+
15 return hid;
+
16}
+
17
+
18} // namespace detail
+
19} // namespace HighFive
+
Definition H5_definitions.hpp:22
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/h5p__wrapper_8hpp.html b/h5p__wrapper_8hpp.html new file mode 100644 index 000000000..c75a8ac74 --- /dev/null +++ b/h5p__wrapper_8hpp.html @@ -0,0 +1,237 @@ + + + + + + + +HighFive: highfive/bits/h5p_wrapper.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
h5p_wrapper.hpp File Reference
+
+
+
#include <H5Ipublic.h>
+#include <H5Ppublic.h>
+
+Include dependency graph for h5p_wrapper.hpp:
+
+
+ + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/h5p__wrapper_8hpp__dep__incl.map b/h5p__wrapper_8hpp__dep__incl.map new file mode 100644 index 000000000..355831991 --- /dev/null +++ b/h5p__wrapper_8hpp__dep__incl.map @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/h5p__wrapper_8hpp__dep__incl.md5 b/h5p__wrapper_8hpp__dep__incl.md5 new file mode 100644 index 000000000..df5994edf --- /dev/null +++ b/h5p__wrapper_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +f66482f31ee19365ca066351711884c6 \ No newline at end of file diff --git a/h5p__wrapper_8hpp__dep__incl.png b/h5p__wrapper_8hpp__dep__incl.png new file mode 100644 index 000000000..4424ae909 Binary files /dev/null and b/h5p__wrapper_8hpp__dep__incl.png differ diff --git a/h5p__wrapper_8hpp__incl.map b/h5p__wrapper_8hpp__incl.map new file mode 100644 index 000000000..739594515 --- /dev/null +++ b/h5p__wrapper_8hpp__incl.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/h5p__wrapper_8hpp__incl.md5 b/h5p__wrapper_8hpp__incl.md5 new file mode 100644 index 000000000..56dcd05bb --- /dev/null +++ b/h5p__wrapper_8hpp__incl.md5 @@ -0,0 +1 @@ +9bc21f4324bb180671459988ef076562 \ No newline at end of file diff --git a/h5p__wrapper_8hpp__incl.png b/h5p__wrapper_8hpp__incl.png new file mode 100644 index 000000000..b17519532 Binary files /dev/null and b/h5p__wrapper_8hpp__incl.png differ diff --git a/h5p__wrapper_8hpp_source.html b/h5p__wrapper_8hpp_source.html new file mode 100644 index 000000000..2fd94476e --- /dev/null +++ b/h5p__wrapper_8hpp_source.html @@ -0,0 +1,492 @@ + + + + + + + +HighFive: highfive/bits/h5p_wrapper.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
h5p_wrapper.hpp
+
+
+Go to the documentation of this file.
1#pragma once
+
2
+
3#include <H5Ipublic.h>
+
4#include <H5Ppublic.h>
+
5
+
6namespace HighFive {
+
7namespace detail {
+
8inline hid_t h5p_create(hid_t cls_id) {
+
9 hid_t plist_id = H5Pcreate(cls_id);
+
10 if (plist_id == H5I_INVALID_HID) {
+
11 HDF5ErrMapper::ToException<PropertyException>("Failed to create property list");
+
12 }
+
13
+
14 return plist_id;
+
15}
+
16
+
17#if H5_VERSION_GE(1, 10, 1)
+
18inline herr_t h5p_set_file_space_strategy(hid_t plist_id,
+
19 H5F_fspace_strategy_t strategy,
+
20 hbool_t persist,
+
21 hsize_t threshold) {
+
22 herr_t err = H5Pset_file_space_strategy(plist_id, strategy, persist, threshold);
+
23 if (err < 0) {
+
24 HDF5ErrMapper::ToException<PropertyException>("Unable to get file space strategy");
+
25 }
+
26
+
27 return err;
+
28}
+
29
+
30inline herr_t h5p_get_file_space_strategy(hid_t plist_id,
+
31 H5F_fspace_strategy_t* strategy,
+
32 hbool_t* persist,
+
33 hsize_t* threshold) {
+
34 herr_t err = H5Pget_file_space_strategy(plist_id, strategy, persist, threshold);
+
35 if (err) {
+
36 HDF5ErrMapper::ToException<PropertyException>("Error setting file space strategy.");
+
37 }
+
38
+
39 return err;
+
40}
+
41
+
42inline herr_t h5p_set_file_space_page_size(hid_t plist_id, hsize_t fsp_size) {
+
43 herr_t err = H5Pset_file_space_page_size(plist_id, fsp_size);
+
44 if (err < 0) {
+
45 HDF5ErrMapper::ToException<PropertyException>("Error setting file space page size.");
+
46 }
+
47
+
48 return err;
+
49}
+
50
+
51inline herr_t h5p_get_file_space_page_size(hid_t plist_id, hsize_t* fsp_size) {
+
52 herr_t err = H5Pget_file_space_page_size(plist_id, fsp_size);
+
53 if (err < 0) {
+
54 HDF5ErrMapper::ToException<PropertyException>("Unable to get file space page size");
+
55 }
+
56
+
57 return err;
+
58}
+
59
+
60#ifndef H5_HAVE_PARALLEL
+
61inline herr_t h5p_get_page_buffer_size(hid_t plist_id,
+
62 size_t* buf_size,
+
63 unsigned* min_meta_perc,
+
64 unsigned* min_raw_perc) {
+
65 herr_t err = H5Pget_page_buffer_size(plist_id, buf_size, min_meta_perc, min_raw_perc);
+
66
+
67 if (err < 0) {
+
68 HDF5ErrMapper::ToException<PropertyException>("Error setting page buffer size.");
+
69 }
+
70
+
71 return err;
+
72}
+
73
+
74inline herr_t h5p_set_page_buffer_size(hid_t plist_id,
+
75 size_t buf_size,
+
76 unsigned min_meta_per,
+
77 unsigned min_raw_per) {
+
78 herr_t err = H5Pset_page_buffer_size(plist_id, buf_size, min_meta_per, min_raw_per);
+
79 if (err < 0) {
+
80 HDF5ErrMapper::ToException<PropertyException>("Error setting page buffer size.");
+
81 }
+
82
+
83 return err;
+
84}
+
85#endif
+
86#endif
+
87
+
88#ifdef H5_HAVE_PARALLEL
+
89inline herr_t h5p_set_fapl_mpio(hid_t fapl_id, MPI_Comm comm, MPI_Info info) {
+
90 herr_t err = H5Pset_fapl_mpio(fapl_id, comm, info);
+
91 if (err < 0) {
+
92 HDF5ErrMapper::ToException<FileException>("Unable to set-up MPIO Driver configuration");
+
93 }
+
94
+
95 return err;
+
96}
+
97
+
98#if H5_VERSION_GE(1, 10, 0)
+
99inline herr_t h5p_set_all_coll_metadata_ops(hid_t plist_id, hbool_t is_collective) {
+
100 herr_t err = H5Pset_all_coll_metadata_ops(plist_id, is_collective);
+
101 if (err < 0) {
+
102 HDF5ErrMapper::ToException<FileException>("Unable to request collective metadata reads");
+
103 }
+
104
+
105 return err;
+
106}
+
107
+
108inline herr_t h5p_get_all_coll_metadata_ops(hid_t plist_id, hbool_t* is_collective) {
+
109 herr_t err = H5Pget_all_coll_metadata_ops(plist_id, is_collective);
+
110 if (err < 0) {
+
111 HDF5ErrMapper::ToException<PropertyException>("Error loading MPI metadata read.");
+
112 }
+
113
+
114 return err;
+
115}
+
116
+
117inline herr_t h5p_set_coll_metadata_write(hid_t plist_id, hbool_t is_collective) {
+
118 herr_t err = H5Pset_coll_metadata_write(plist_id, is_collective);
+
119
+
120 if (err < 0) {
+
121 HDF5ErrMapper::ToException<FileException>("Unable to request collective metadata writes");
+
122 }
+
123
+
124 return err;
+
125}
+
126
+
127inline herr_t h5p_get_coll_metadata_write(hid_t plist_id, hbool_t* is_collective) {
+
128 herr_t err = H5Pget_coll_metadata_write(plist_id, is_collective);
+
129
+
130 if (err < 0) {
+
131 HDF5ErrMapper::ToException<PropertyException>("Error loading MPI metadata write.");
+
132 }
+
133
+
134 return err;
+
135}
+
136#endif
+
137#endif
+
138
+
139inline herr_t h5p_get_libver_bounds(hid_t plist_id, H5F_libver_t* low, H5F_libver_t* high) {
+
140 herr_t err = H5Pget_libver_bounds(plist_id, low, high);
+
141 if (err < 0) {
+
142 HDF5ErrMapper::ToException<PropertyException>("Unable to access file version bounds");
+
143 }
+
144
+
145 return err;
+
146}
+
147
+
148inline herr_t h5p_set_libver_bounds(hid_t plist_id, H5F_libver_t low, H5F_libver_t high) {
+
149 herr_t err = H5Pset_libver_bounds(plist_id, low, high);
+
150
+
151 if (err < 0) {
+
152 HDF5ErrMapper::ToException<PropertyException>("Error setting file version bounds");
+
153 }
+
154
+
155 return err;
+
156}
+
157
+
158inline herr_t h5p_get_meta_block_size(hid_t fapl_id, hsize_t* size) {
+
159 herr_t err = H5Pget_meta_block_size(fapl_id, size);
+
160 if (err < 0) {
+
161 HDF5ErrMapper::ToException<PropertyException>("Unable to access file metadata block size");
+
162 }
+
163
+
164 return err;
+
165}
+
166
+
167inline herr_t h5p_set_meta_block_size(hid_t fapl_id, hsize_t size) {
+
168 herr_t err = H5Pset_meta_block_size(fapl_id, size);
+
169
+
170 if (err < 0) {
+
171 HDF5ErrMapper::ToException<PropertyException>("Error setting metadata block size");
+
172 }
+
173
+
174 return err;
+
175}
+
176
+
177inline herr_t h5p_set_est_link_info(hid_t plist_id,
+
178 unsigned est_num_entries,
+
179 unsigned est_name_len) {
+
180 herr_t err = H5Pset_est_link_info(plist_id, est_num_entries, est_name_len);
+
181 if (err < 0) {
+
182 HDF5ErrMapper::ToException<PropertyException>("Error setting estimated link info");
+
183 }
+
184
+
185 return err;
+
186}
+
187
+
188inline herr_t h5p_get_est_link_info(hid_t plist_id,
+
189 unsigned* est_num_entries,
+
190 unsigned* est_name_len) {
+
191 herr_t err = H5Pget_est_link_info(plist_id, est_num_entries, est_name_len);
+
192
+
193 if (err < 0) {
+
194 HDF5ErrMapper::ToException<PropertyException>("Unable to access group link size property");
+
195 }
+
196
+
197 return err;
+
198}
+
199
+
200inline herr_t h5p_set_chunk(hid_t plist_id, int ndims, const hsize_t dim[]) {
+
201 herr_t err = H5Pset_chunk(plist_id, ndims, dim);
+
202
+
203 if (err < 0) {
+
204 HDF5ErrMapper::ToException<PropertyException>("Error setting chunk property");
+
205 }
+
206
+
207 return err;
+
208}
+
209
+
210inline int h5p_get_chunk(hid_t plist_id, int max_ndims, hsize_t dim[]) {
+
211 int chunk_dims = H5Pget_chunk(plist_id, max_ndims, dim);
+
212 if (chunk_dims < 0) {
+
213 HDF5ErrMapper::ToException<PropertyException>("Error getting chunk size");
+
214 }
+
215 return chunk_dims;
+
216}
+
217
+
218inline htri_t h5z_filter_avail(H5Z_filter_t id) {
+
219 htri_t tri = H5Zfilter_avail(id);
+
220 if (tri < 0) {
+
221 HDF5ErrMapper::ToException<PropertyException>("Error checking filter availability");
+
222 }
+
223 return tri;
+
224}
+
225
+
226inline herr_t h5p_set_deflate(hid_t plist_id, unsigned level) {
+
227 herr_t err = H5Pset_deflate(plist_id, level);
+
228 if (err < 0) {
+
229 HDF5ErrMapper::ToException<PropertyException>("Error setting deflate property");
+
230 }
+
231 return err;
+
232}
+
233
+
234inline herr_t h5p_set_szip(hid_t plist_id, unsigned options_mask, unsigned pixels_per_block) {
+
235 herr_t err = H5Pset_szip(plist_id, options_mask, pixels_per_block);
+
236 if (err < 0) {
+
237 HDF5ErrMapper::ToException<PropertyException>("Error setting szip property");
+
238 }
+
239 return err;
+
240}
+
241
+
242inline herr_t h5p_set_shuffle(hid_t plist_id) {
+
243 herr_t err = H5Pset_shuffle(plist_id);
+
244 if (err < 0) {
+
245 HDF5ErrMapper::ToException<PropertyException>("Error setting shuffle property");
+
246 }
+
247 return err;
+
248}
+
249
+
250inline herr_t h5p_get_alloc_time(hid_t plist_id, H5D_alloc_time_t* alloc_time) {
+
251 herr_t err = H5Pget_alloc_time(plist_id, alloc_time);
+
252 if (err < 0) {
+
253 HDF5ErrMapper::ToException<PropertyException>("Error getting allocation time");
+
254 }
+
255 return err;
+
256}
+
257
+
258inline herr_t h5p_set_alloc_time(hid_t plist_id, H5D_alloc_time_t alloc_time) {
+
259 herr_t err = H5Pset_alloc_time(plist_id, alloc_time);
+
260 if (err < 0) {
+
261 HDF5ErrMapper::ToException<PropertyException>("Error setting allocation time");
+
262 }
+
263 return err;
+
264}
+
265
+
266inline herr_t h5p_get_chunk_cache(hid_t dapl_id,
+
267 size_t* rdcc_nslots,
+
268 size_t* rdcc_nbytes,
+
269 double* rdcc_w0) {
+
270 herr_t err = H5Pget_chunk_cache(dapl_id, rdcc_nslots, rdcc_nbytes, rdcc_w0);
+
271 if (err < 0) {
+
272 HDF5ErrMapper::ToException<PropertyException>("Error getting dataset cache parameters");
+
273 }
+
274 return err;
+
275}
+
276
+
277inline herr_t h5p_set_chunk_cache(hid_t dapl_id,
+
278 size_t rdcc_nslots,
+
279 size_t rdcc_nbytes,
+
280 double rdcc_w0) {
+
281 herr_t err = H5Pset_chunk_cache(dapl_id, rdcc_nslots, rdcc_nbytes, rdcc_w0);
+
282 if (err < 0) {
+
283 HDF5ErrMapper::ToException<PropertyException>("Error setting dataset cache parameters");
+
284 }
+
285 return err;
+
286}
+
287
+
288inline herr_t h5p_set_create_intermediate_group(hid_t plist_id, unsigned crt_intmd) {
+
289 herr_t err = H5Pset_create_intermediate_group(plist_id, crt_intmd);
+
290 if (err < 0) {
+ +
292 "Error setting property for create intermediate groups");
+
293 }
+
294 return err;
+
295}
+
296
+
297inline herr_t h5p_get_create_intermediate_group(hid_t plist_id, unsigned* crt_intmd) {
+
298 herr_t err = H5Pget_create_intermediate_group(plist_id, crt_intmd);
+
299 if (err < 0) {
+ +
301 "Error getting property for create intermediate groups");
+
302 }
+
303 return err;
+
304}
+
305
+
306#ifdef H5_HAVE_PARALLEL
+
307inline herr_t h5p_set_dxpl_mpio(hid_t dxpl_id, H5FD_mpio_xfer_t xfer_mode) {
+
308 herr_t err = H5Pset_dxpl_mpio(dxpl_id, xfer_mode);
+
309 if (err < 0) {
+
310 HDF5ErrMapper::ToException<PropertyException>("Error setting H5Pset_dxpl_mpio.");
+
311 }
+
312 return err;
+
313}
+
314
+
315inline herr_t h5p_get_dxpl_mpio(hid_t dxpl_id, H5FD_mpio_xfer_t* xfer_mode) {
+
316 herr_t err = H5Pget_dxpl_mpio(dxpl_id, xfer_mode);
+
317 if (err < 0) {
+
318 HDF5ErrMapper::ToException<PropertyException>("Error getting H5Pset_dxpl_mpio.");
+
319 }
+
320 return err;
+
321}
+
322
+
323inline herr_t h5p_get_mpio_no_collective_cause(hid_t plist_id,
+
324 uint32_t* local_no_collective_cause,
+
325 uint32_t* global_no_collective_cause) {
+
326 herr_t err = H5Pget_mpio_no_collective_cause(plist_id,
+
327 local_no_collective_cause,
+
328 global_no_collective_cause);
+
329 if (err < 0) {
+
330 HDF5ErrMapper::ToException<PropertyException>("Failed to check mpio_no_collective_cause.");
+
331 }
+
332 return err;
+
333}
+
334
+
335#endif
+
336
+
337inline herr_t h5p_set_link_creation_order(hid_t plist_id, unsigned crt_order_flags) {
+
338 herr_t err = H5Pset_link_creation_order(plist_id, crt_order_flags);
+
339 if (err < 0) {
+
340 HDF5ErrMapper::ToException<PropertyException>("Error setting LinkCreationOrder.");
+
341 }
+
342 return err;
+
343}
+
344
+
345inline herr_t h5p_get_link_creation_order(hid_t plist_id, unsigned* crt_order_flags) {
+
346 herr_t err = H5Pget_link_creation_order(plist_id, crt_order_flags);
+
347 if (err < 0) {
+ +
349 "Error getting property for link creation order");
+
350 }
+
351 return err;
+
352}
+
353
+
354inline herr_t h5p_get_attr_phase_change(hid_t plist_id,
+
355 unsigned* max_compact,
+
356 unsigned* min_dense) {
+
357 herr_t err = H5Pget_attr_phase_change(plist_id, max_compact, min_dense);
+
358 if (err < 0) {
+ +
360 "Error getting property for attribute phase change");
+
361 }
+
362 return err;
+
363}
+
364
+
365inline herr_t h5p_set_attr_phase_change(hid_t plist_id, unsigned max_compact, unsigned min_dense) {
+
366 herr_t err = H5Pset_attr_phase_change(plist_id, max_compact, min_dense);
+
367 if (err < 0) {
+ +
369 "Error getting property for attribute phase change");
+
370 }
+
371 return err;
+
372}
+
373
+
374
+
375} // namespace detail
+
376} // namespace HighFive
+
Definition H5_definitions.hpp:22
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/h5r__wrapper_8hpp.html b/h5r__wrapper_8hpp.html new file mode 100644 index 000000000..fd689ceaa --- /dev/null +++ b/h5r__wrapper_8hpp.html @@ -0,0 +1,229 @@ + + + + + + + +HighFive: highfive/bits/h5r_wrapper.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
h5r_wrapper.hpp File Reference
+
+
+
#include <H5Rpublic.h>
+
+Include dependency graph for h5r_wrapper.hpp:
+
+
+ + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/h5r__wrapper_8hpp__dep__incl.map b/h5r__wrapper_8hpp__dep__incl.map new file mode 100644 index 000000000..dd5b8fece --- /dev/null +++ b/h5r__wrapper_8hpp__dep__incl.map @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/h5r__wrapper_8hpp__dep__incl.md5 b/h5r__wrapper_8hpp__dep__incl.md5 new file mode 100644 index 000000000..050a12280 --- /dev/null +++ b/h5r__wrapper_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +74a6af1c6d43e0420e2ba7a29ac3b04e \ No newline at end of file diff --git a/h5r__wrapper_8hpp__dep__incl.png b/h5r__wrapper_8hpp__dep__incl.png new file mode 100644 index 000000000..f5919a818 Binary files /dev/null and b/h5r__wrapper_8hpp__dep__incl.png differ diff --git a/h5r__wrapper_8hpp__incl.map b/h5r__wrapper_8hpp__incl.map new file mode 100644 index 000000000..24cba088b --- /dev/null +++ b/h5r__wrapper_8hpp__incl.map @@ -0,0 +1,5 @@ + + + + + diff --git a/h5r__wrapper_8hpp__incl.md5 b/h5r__wrapper_8hpp__incl.md5 new file mode 100644 index 000000000..149bc6447 --- /dev/null +++ b/h5r__wrapper_8hpp__incl.md5 @@ -0,0 +1 @@ +c24bc3134c0b65033d83afd672610e1c \ No newline at end of file diff --git a/h5r__wrapper_8hpp__incl.png b/h5r__wrapper_8hpp__incl.png new file mode 100644 index 000000000..4d596b5f8 Binary files /dev/null and b/h5r__wrapper_8hpp__incl.png differ diff --git a/h5r__wrapper_8hpp_source.html b/h5r__wrapper_8hpp_source.html new file mode 100644 index 000000000..e12a42400 --- /dev/null +++ b/h5r__wrapper_8hpp_source.html @@ -0,0 +1,158 @@ + + + + + + + +HighFive: highfive/bits/h5r_wrapper.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
h5r_wrapper.hpp
+
+
+Go to the documentation of this file.
1#pragma once
+
2
+
3#include <H5Rpublic.h>
+
4
+
5namespace HighFive {
+
6namespace detail {
+
7inline herr_t h5r_create(void* ref,
+
8 hid_t loc_id,
+
9 const char* name,
+
10 H5R_type_t ref_type,
+
11 hid_t space_id) {
+
12 herr_t err = H5Rcreate(ref, loc_id, name, ref_type, space_id);
+
13 if (err < 0) {
+ +
15 std::string("Unable to create the reference for \"") + name + "\":");
+
16 }
+
17
+
18 return err;
+
19}
+
20
+
21#if (H5Rdereference_vers == 2)
+
22inline hid_t h5r_dereference(hid_t obj_id, hid_t oapl_id, H5R_type_t ref_type, const void* ref) {
+
23 hid_t hid = H5Rdereference(obj_id, oapl_id, ref_type, ref);
+
24 if (hid < 0) {
+
25 HDF5ErrMapper::ToException<ReferenceException>("Unable to dereference.");
+
26 }
+
27
+
28 return hid;
+
29}
+
30#else
+
31inline hid_t h5r_dereference(hid_t dataset, H5R_type_t ref_type, const void* ref) {
+
32 hid_t hid = H5Rdereference(dataset, ref_type, ref);
+
33 if (hid < 0) {
+
34 HDF5ErrMapper::ToException<ReferenceException>("Unable to dereference.");
+
35 }
+
36
+
37 return hid;
+
38}
+
39#endif
+
40
+
41} // namespace detail
+
42} // namespace HighFive
+
Definition H5_definitions.hpp:22
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/h5s__wrapper_8hpp.html b/h5s__wrapper_8hpp.html new file mode 100644 index 000000000..72ae61710 --- /dev/null +++ b/h5s__wrapper_8hpp.html @@ -0,0 +1,201 @@ + + + + + + + +HighFive: highfive/bits/h5s_wrapper.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
h5s_wrapper.hpp File Reference
+
+
+
#include <H5Spublic.h>
+
+Include dependency graph for h5s_wrapper.hpp:
+
+
+ + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/h5s__wrapper_8hpp__dep__incl.map b/h5s__wrapper_8hpp__dep__incl.map new file mode 100644 index 000000000..f2907e4fe --- /dev/null +++ b/h5s__wrapper_8hpp__dep__incl.map @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/h5s__wrapper_8hpp__dep__incl.md5 b/h5s__wrapper_8hpp__dep__incl.md5 new file mode 100644 index 000000000..a6ccb03a9 --- /dev/null +++ b/h5s__wrapper_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +2a2fceb38f804033fc9c2403f26d663e \ No newline at end of file diff --git a/h5s__wrapper_8hpp__dep__incl.png b/h5s__wrapper_8hpp__dep__incl.png new file mode 100644 index 000000000..d4e655657 Binary files /dev/null and b/h5s__wrapper_8hpp__dep__incl.png differ diff --git a/h5s__wrapper_8hpp__incl.map b/h5s__wrapper_8hpp__incl.map new file mode 100644 index 000000000..e32edb7e4 --- /dev/null +++ b/h5s__wrapper_8hpp__incl.map @@ -0,0 +1,5 @@ + + + + + diff --git a/h5s__wrapper_8hpp__incl.md5 b/h5s__wrapper_8hpp__incl.md5 new file mode 100644 index 000000000..2f2a2b1d8 --- /dev/null +++ b/h5s__wrapper_8hpp__incl.md5 @@ -0,0 +1 @@ +657e0fad1f042427a9f74af643f4d5e6 \ No newline at end of file diff --git a/h5s__wrapper_8hpp__incl.png b/h5s__wrapper_8hpp__incl.png new file mode 100644 index 000000000..4fb2440e6 Binary files /dev/null and b/h5s__wrapper_8hpp__incl.png differ diff --git a/h5s__wrapper_8hpp_source.html b/h5s__wrapper_8hpp_source.html new file mode 100644 index 000000000..cd1913429 --- /dev/null +++ b/h5s__wrapper_8hpp_source.html @@ -0,0 +1,231 @@ + + + + + + + +HighFive: highfive/bits/h5s_wrapper.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
h5s_wrapper.hpp
+
+
+Go to the documentation of this file.
1#pragma once
+
2
+
3#include <H5Spublic.h>
+
4namespace HighFive {
+
5namespace detail {
+
6
+
7inline hid_t h5s_create_simple(int rank, const hsize_t dims[], const hsize_t maxdims[]) {
+
8 hid_t space_id = H5Screate_simple(rank, dims, maxdims);
+
9 if (space_id == H5I_INVALID_HID) {
+
10 throw DataSpaceException("Unable to create simple dataspace");
+
11 }
+
12
+
13 return space_id;
+
14}
+
15
+
16inline hid_t h5s_create(H5S_class_t type) {
+
17 hid_t space_id = H5Screate(type);
+
18
+
19 if (space_id == H5I_INVALID_HID) {
+
20 throw DataSpaceException("Unable to create dataspace");
+
21 }
+
22
+
23 return space_id;
+
24}
+
25
+
26inline hid_t h5s_copy(hid_t space_id) {
+
27 hid_t copy_id = H5Scopy(space_id);
+
28
+
29 if (copy_id < 0) {
+
30 throw DataSpaceException("Unable to copy dataspace");
+
31 }
+
32
+
33 return copy_id;
+
34}
+
35
+
36inline herr_t h5s_select_none(hid_t spaceid) {
+
37 herr_t err = H5Sselect_none(spaceid);
+
38 if (err < 0) {
+
39 HDF5ErrMapper::ToException<DataSpaceException>("Unable to select None space");
+
40 }
+
41 return err;
+
42}
+
43
+
44inline herr_t h5s_select_hyperslab(hid_t space_id,
+
45 H5S_seloper_t op,
+
46 const hsize_t start[],
+
47 const hsize_t stride[],
+
48 const hsize_t count[],
+
49 const hsize_t block[]) {
+
50 herr_t err = H5Sselect_hyperslab(space_id, op, start, stride, count, block);
+
51 if (err < 0) {
+
52 HDF5ErrMapper::ToException<DataSpaceException>("Unable to select hyperslab");
+
53 }
+
54 return err;
+
55}
+
56
+
57inline hssize_t h5s_get_select_npoints(hid_t spaceid) {
+
58 hssize_t n_points = H5Sget_select_npoints(spaceid);
+
59 if (n_points < 0) {
+ +
61 "Unable to get number of points in selection");
+
62 }
+
63 return n_points;
+
64}
+
65
+
66inline herr_t h5s_select_elements(hid_t space_id,
+
67 H5S_seloper_t op,
+
68 size_t num_elem,
+
69 const hsize_t* coord) {
+
70 herr_t err = H5Sselect_elements(space_id, op, num_elem, coord);
+
71 if (err < 0) {
+
72 HDF5ErrMapper::ToException<DataSpaceException>("Unable to select elements");
+
73 }
+
74 return err;
+
75}
+
76
+
77inline int h5s_get_simple_extent_ndims(hid_t space_id) {
+
78 int ndim = H5Sget_simple_extent_ndims(space_id);
+
79 if (ndim < 0) {
+ +
81 "Unable to get number of dimensions of dataspace");
+
82 }
+
83 return ndim;
+
84}
+
85
+
86inline herr_t h5s_get_simple_extent_dims(hid_t space_id, hsize_t dims[], hsize_t maxdims[]) {
+
87 herr_t err = H5Sget_simple_extent_dims(space_id, dims, maxdims);
+
88 if (err < 0) {
+
89 HDF5ErrMapper::ToException<DataSetException>("Unable to get dimensions of dataspace");
+
90 }
+
91 return err;
+
92}
+
93
+
94inline hssize_t h5s_get_simple_extent_npoints(hid_t space_id) {
+
95 hssize_t nelements = H5Sget_simple_extent_npoints(space_id);
+
96 if (nelements < 0) {
+ +
98 "Unable to get number of elements in dataspace");
+
99 }
+
100
+
101 return nelements;
+
102}
+
103
+
104inline H5S_class_t h5s_get_simple_extent_type(hid_t space_id) {
+
105 H5S_class_t cls = H5Sget_simple_extent_type(space_id);
+
106 if (cls == H5S_NO_CLASS) {
+
107 HDF5ErrMapper::ToException<DataSpaceException>("Unable to get class of simple dataspace.");
+
108 }
+
109
+
110 return cls;
+
111}
+
112
+
113
+
114} // namespace detail
+
115} // namespace HighFive
+
Definition H5_definitions.hpp:22
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/h5t__wrapper_8hpp.html b/h5t__wrapper_8hpp.html new file mode 100644 index 000000000..26b76c4cb --- /dev/null +++ b/h5t__wrapper_8hpp.html @@ -0,0 +1,225 @@ + + + + + + + +HighFive: highfive/bits/h5t_wrapper.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
h5t_wrapper.hpp File Reference
+
+
+
#include <H5Ipublic.h>
+#include <H5Tpublic.h>
+
+Include dependency graph for h5t_wrapper.hpp:
+
+
+ + + + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+
+
+ + + + diff --git a/h5t__wrapper_8hpp__dep__incl.map b/h5t__wrapper_8hpp__dep__incl.map new file mode 100644 index 000000000..31eb36eee --- /dev/null +++ b/h5t__wrapper_8hpp__dep__incl.map @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/h5t__wrapper_8hpp__dep__incl.md5 b/h5t__wrapper_8hpp__dep__incl.md5 new file mode 100644 index 000000000..eaab56ec6 --- /dev/null +++ b/h5t__wrapper_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +6e2d6cb6695ca14468efbaaf7c8e28d7 \ No newline at end of file diff --git a/h5t__wrapper_8hpp__dep__incl.png b/h5t__wrapper_8hpp__dep__incl.png new file mode 100644 index 000000000..42ed302b9 Binary files /dev/null and b/h5t__wrapper_8hpp__dep__incl.png differ diff --git a/h5t__wrapper_8hpp__incl.map b/h5t__wrapper_8hpp__incl.map new file mode 100644 index 000000000..ee7eb6bdb --- /dev/null +++ b/h5t__wrapper_8hpp__incl.map @@ -0,0 +1,7 @@ + + + + + + + diff --git a/h5t__wrapper_8hpp__incl.md5 b/h5t__wrapper_8hpp__incl.md5 new file mode 100644 index 000000000..acc229a71 --- /dev/null +++ b/h5t__wrapper_8hpp__incl.md5 @@ -0,0 +1 @@ +f87caccb581fe07abb17c3a7c28df63c \ No newline at end of file diff --git a/h5t__wrapper_8hpp__incl.png b/h5t__wrapper_8hpp__incl.png new file mode 100644 index 000000000..c6d91661f Binary files /dev/null and b/h5t__wrapper_8hpp__incl.png differ diff --git a/h5t__wrapper_8hpp_source.html b/h5t__wrapper_8hpp_source.html new file mode 100644 index 000000000..bc5307997 --- /dev/null +++ b/h5t__wrapper_8hpp_source.html @@ -0,0 +1,346 @@ + + + + + + + +HighFive: highfive/bits/h5t_wrapper.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
h5t_wrapper.hpp
+
+
+Go to the documentation of this file.
1#pragma once
+
2
+
3#include <H5Ipublic.h>
+
4#include <H5Tpublic.h>
+
5
+
6namespace HighFive {
+
7namespace detail {
+
8
+
9inline hid_t h5t_copy(hid_t original) {
+
10 auto copy = H5Tcopy(original);
+
11 if (copy == H5I_INVALID_HID) {
+
12 HDF5ErrMapper::ToException<DataTypeException>("Error copying datatype.");
+
13 }
+
14
+
15 return copy;
+
16}
+
17
+
18inline hsize_t h5t_get_size(hid_t hid) {
+
19 hsize_t size = H5Tget_size(hid);
+
20 if (size == 0) {
+
21 HDF5ErrMapper::ToException<DataTypeException>("Error getting size of datatype.");
+
22 }
+
23
+
24 return size;
+
25}
+
26
+
27inline H5T_cset_t h5t_get_cset(hid_t hid) {
+
28 auto cset = H5Tget_cset(hid);
+
29 if (cset == H5T_CSET_ERROR) {
+
30 HDF5ErrMapper::ToException<DataTypeException>("Error getting cset of datatype.");
+
31 }
+
32
+
33 return cset;
+
34}
+
35
+
36inline H5T_str_t h5t_get_strpad(hid_t hid) {
+
37 auto strpad = H5Tget_strpad(hid);
+
38 if (strpad == H5T_STR_ERROR) {
+
39 HDF5ErrMapper::ToException<DataTypeException>("Error getting strpad of datatype.");
+
40 }
+
41
+
42 return strpad;
+
43}
+
44
+
45inline void h5t_set_size(hid_t hid, hsize_t size) {
+
46 if (H5Tset_size(hid, size) < 0) {
+
47 HDF5ErrMapper::ToException<DataTypeException>("Error setting size of datatype.");
+
48 }
+
49}
+
50
+
51inline void h5t_set_cset(hid_t hid, H5T_cset_t cset) {
+
52 if (H5Tset_cset(hid, cset) < 0) {
+
53 HDF5ErrMapper::ToException<DataTypeException>("Error setting cset of datatype.");
+
54 }
+
55}
+
56
+
57inline void h5t_set_strpad(hid_t hid, H5T_str_t strpad) {
+
58 if (H5Tset_strpad(hid, strpad) < 0) {
+
59 HDF5ErrMapper::ToException<DataTypeException>("Error setting strpad of datatype.");
+
60 }
+
61}
+
62
+
63inline int h5t_get_nmembers(hid_t hid) {
+
64 auto result = H5Tget_nmembers(hid);
+
65
+
66 if (result < 0) {
+
67 throw DataTypeException("Could not get members of compound datatype");
+
68 }
+
69
+
70 return result;
+
71}
+
72
+
73inline char* h5t_get_member_name(hid_t type_id, unsigned membno) {
+
74 char* name = H5Tget_member_name(type_id, membno);
+
75 if (name == nullptr) {
+
76 throw DataTypeException("Failed to get member names of compound datatype");
+
77 }
+
78
+
79 return name;
+
80}
+
81
+
82
+
83inline size_t h5t_get_member_offset(hid_t type_id, unsigned membno) {
+
84 // Note, this function is peculiar. On failure it returns 0, yet 0 is also
+
85 // what's returned on failure.
+
86 return H5Tget_member_offset(type_id, membno);
+
87}
+
88
+
89inline hid_t h5t_get_member_type(hid_t type_id, unsigned membno) {
+
90 hid_t member_id = H5Tget_member_type(type_id, membno);
+
91
+
92 if (member_id < 0) {
+
93 throw DataTypeException("Failed to get member type of compound datatype");
+
94 }
+
95
+
96 return member_id;
+
97}
+
98
+
99#if H5_VERSION_GE(1, 12, 0)
+
100inline herr_t h5t_reclaim(hid_t type_id, hid_t space_id, hid_t plist_id, void* buf) {
+
101 herr_t err = H5Treclaim(type_id, space_id, plist_id, buf);
+
102 if (err < 0) {
+
103 throw DataTypeException("Failed to reclaim HDF5 internal memory");
+
104 }
+
105
+
106 return err;
+
107}
+
108#endif
+
109
+
110inline H5T_class_t h5t_get_class(hid_t type_id) {
+
111 H5T_class_t class_id = H5Tget_class(type_id);
+
112 if (class_id == H5T_NO_CLASS) {
+
113 throw DataTypeException("Failed to get class of type");
+
114 }
+
115
+
116 return class_id;
+
117}
+
118
+
119inline htri_t h5t_equal(hid_t type1_id, hid_t type2_id) {
+
120 htri_t equal = H5Tequal(type1_id, type2_id);
+
121 if (equal < 0) {
+
122 throw DataTypeException("Failed to compare two datatypes");
+
123 }
+
124
+
125 return equal;
+
126}
+
127
+
128inline htri_t h5t_is_variable_str(hid_t type_id) {
+
129 htri_t is_variable = H5Tis_variable_str(type_id);
+
130 if (is_variable < 0) {
+ +
132 "Failed to check if string is variable length");
+
133 }
+
134 return is_variable;
+
135}
+
136
+
137inline herr_t h5t_set_fields(hid_t type_id,
+
138 size_t spos,
+
139 size_t epos,
+
140 size_t esize,
+
141 size_t mpos,
+
142 size_t msize) {
+
143 herr_t err = H5Tset_fields(type_id, spos, epos, esize, mpos, msize);
+
144 if (err < 0) {
+ +
146 "Failed to create custom floating point data type");
+
147 }
+
148 return err;
+
149}
+
150
+
151inline herr_t h5t_set_ebias(hid_t type_id, size_t ebias) {
+
152 herr_t err = H5Tset_ebias(type_id, ebias);
+
153 if (err < 0) {
+ +
155 "Failed to exponent bias of floating point data type");
+
156 }
+
157
+
158 return err;
+
159}
+
160
+
161inline hid_t h5t_create(H5T_class_t type, size_t size) {
+
162 hid_t type_id = H5Tcreate(type, size);
+
163 if (type_id == H5I_INVALID_HID) {
+ +
165 }
+
166
+
167 return type_id;
+
168}
+
169
+
170inline herr_t h5t_insert(hid_t parent_id, const char* name, size_t offset, hid_t member_id) {
+
171 herr_t err = H5Tinsert(parent_id, name, offset, member_id);
+
172 if (err < 0) {
+
173 HDF5ErrMapper::ToException<DataTypeException>("Failed to not add new member to datatype");
+
174 }
+
175
+
176 return err;
+
177}
+
178
+
179inline herr_t h5t_commit2(hid_t loc_id,
+
180 const char* name,
+
181 hid_t type_id,
+
182 hid_t lcpl_id,
+
183 hid_t tcpl_id,
+
184 hid_t tapl_id) {
+
185 herr_t err = H5Tcommit2(loc_id, name, type_id, lcpl_id, tcpl_id, tapl_id);
+
186 if (err < 0) {
+
187 HDF5ErrMapper::ToException<DataTypeException>("Failed to commit datatype");
+
188 }
+
189
+
190 return err;
+
191}
+
192
+
193inline herr_t h5t_close(hid_t type_id) {
+
194 auto err = H5Tclose(type_id);
+
195 if (err < 0) {
+
196 HDF5ErrMapper::ToException<DataTypeException>("Failed to close datatype");
+
197 }
+
198
+
199 return err;
+
200}
+
201
+
202inline hid_t h5t_enum_create(hid_t base_id) {
+
203 hid_t type_id = H5Tenum_create(base_id);
+
204 if (type_id == H5I_INVALID_HID) {
+
205 HDF5ErrMapper::ToException<DataTypeException>("Failed to create new enum datatype");
+
206 }
+
207 return type_id;
+
208}
+
209
+
210inline herr_t h5t_enum_insert(hid_t type, const char* name, const void* value) {
+
211 herr_t err = H5Tenum_insert(type, name, value);
+
212 if (err < 0) {
+ +
214 "Failed to add new member to this enum datatype");
+
215 }
+
216 return err;
+
217}
+
218
+
219inline hid_t h5t_open2(hid_t loc_id, const char* name, hid_t tapl_id) {
+
220 hid_t datatype_id = H5Topen2(loc_id, name, tapl_id);
+
221 if (datatype_id == H5I_INVALID_HID) {
+ +
223 std::string("Unable to open the datatype \"") + name + "\":");
+
224 }
+
225
+
226 return datatype_id;
+
227}
+
228
+
229} // namespace detail
+
230} // namespace HighFive
+
Definition H5_definitions.hpp:22
+
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43
+
+
+ + + + diff --git a/half__float_8hpp.html b/half__float_8hpp.html new file mode 100644 index 000000000..580d58e64 --- /dev/null +++ b/half__float_8hpp.html @@ -0,0 +1,227 @@ + + + + + + + +HighFive: highfive/half_float.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
half_float.hpp File Reference
+
+
+
#include <half.hpp>
+
+Include dependency graph for half_float.hpp:
+
+
+ + + + + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

namespace  HighFive
 
+ + + +

+Typedefs

using HighFive::float16_t = half_float::half
 
+
+
+ + + + diff --git a/half__float_8hpp.js b/half__float_8hpp.js new file mode 100644 index 000000000..e056a1ad2 --- /dev/null +++ b/half__float_8hpp.js @@ -0,0 +1,4 @@ +var half__float_8hpp = +[ + [ "float16_t", "half__float_8hpp.html#aadbc34acfa3c496dbcb2eb3992fac573", null ] +]; \ No newline at end of file diff --git a/half__float_8hpp__dep__incl.map b/half__float_8hpp__dep__incl.map new file mode 100644 index 000000000..48023dda2 --- /dev/null +++ b/half__float_8hpp__dep__incl.map @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/half__float_8hpp__dep__incl.md5 b/half__float_8hpp__dep__incl.md5 new file mode 100644 index 000000000..7af1bd588 --- /dev/null +++ b/half__float_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +3ab6a5d499b0d239a53ea18ef491a0d6 \ No newline at end of file diff --git a/half__float_8hpp__dep__incl.png b/half__float_8hpp__dep__incl.png new file mode 100644 index 000000000..407d76ba5 Binary files /dev/null and b/half__float_8hpp__dep__incl.png differ diff --git a/half__float_8hpp__incl.map b/half__float_8hpp__incl.map new file mode 100644 index 000000000..831fde8f9 --- /dev/null +++ b/half__float_8hpp__incl.map @@ -0,0 +1,5 @@ + + + + + diff --git a/half__float_8hpp__incl.md5 b/half__float_8hpp__incl.md5 new file mode 100644 index 000000000..37edc9517 --- /dev/null +++ b/half__float_8hpp__incl.md5 @@ -0,0 +1 @@ +771ddca9ea6fcfefc835f6a5de16227a \ No newline at end of file diff --git a/half__float_8hpp__incl.png b/half__float_8hpp__incl.png new file mode 100644 index 000000000..fb4d8f665 Binary files /dev/null and b/half__float_8hpp__incl.png differ diff --git a/half__float_8hpp_source.html b/half__float_8hpp_source.html new file mode 100644 index 000000000..c01afe924 --- /dev/null +++ b/half__float_8hpp_source.html @@ -0,0 +1,140 @@ + + + + + + + +HighFive: highfive/half_float.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
half_float.hpp
+
+
+Go to the documentation of this file.
1#pragma once
+
2#ifdef H5_USE_HALF_FLOAT
+
3
+
4#include <half.hpp>
+
5
+
6namespace HighFive {
+
7using float16_t = half_float::half;
+
8
+
9template <>
+
+ +
11 _hid = detail::h5t_copy(H5T_NATIVE_FLOAT);
+
12 // Sign position, exponent position, exponent size, mantissa position, mantissa size
+
13 detail::h5t_set_fields(_hid, 15, 10, 5, 0, 10);
+
14 // Total datatype size (in bytes)
+
15 detail::h5t_set_size(_hid, 2);
+
16 // Floating point exponent bias
+
17 detail::h5t_set_ebias(_hid, 15);
+
18}
+
+
19} // namespace HighFive
+
20
+
21#endif
+
AtomicType()
Definition H5DataType_misc.hpp:235
+
Definition H5_definitions.hpp:22
+
half_float::half float16_t
Definition half_float.hpp:7
+
+
+ + + + diff --git a/hierarchy.html b/hierarchy.html new file mode 100644 index 000000000..ee67a4c4e --- /dev/null +++ b/hierarchy.html @@ -0,0 +1,200 @@ + + + + + + + +HighFive: Class Hierarchy + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Class Hierarchy
+
+
+
+

Go to the graphical class hierarchy

+This inheritance list is sorted roughly, but not completely, alphabetically:
+
[detail level 1234]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 CHighFive::AnnotateTraits< Derivate >
 CHighFive::AnnotateTraits< DataSet >
 CHighFive::DataSetClass representing a dataset
 CHighFive::AnnotateTraits< File >
 CHighFive::FileFile class
 CHighFive::AnnotateTraits< Group >
 CHighFive::GroupRepresents an hdf5 group
 CH5Easy::CompressionSignal to set compression level for written DataSets
 CHighFive::CreationOrder
 CH5Easy::DumpOptionsDefine options for dumping data
 CHighFive::ElementSet
 Cstd::exception
 CHighFive::ExceptionBasic HighFive Exception class
 CHighFive::AttributeExceptionException specific to HighFive Attribute interface
 CHighFive::DataSetExceptionException specific to HighFive DataSet interface
 CHighFive::DataSpaceExceptionException specific to HighFive DataSpace interface
 CHighFive::DataTypeExceptionException specific to HighFive DataType interface
 CHighFive::FileExceptionException specific to HighFive File interface
 CHighFive::GroupExceptionException specific to HighFive Group interface
 CHighFive::ObjectExceptionException specific to HighFive Object interface
 CHighFive::PropertyExceptionException specific to HighFive Property interface
 CHighFive::ReferenceExceptionException specific to HighFive Reference interface
 CHighFive::FileVersionBoundsConfigure the version bounds for the file
 CHighFive::deprecated::FixedLenStringArray< N >A structure representing a set of fixed-length strings
 CHighFive::HDF5ErrMapper
 CHighFive::HyperSlab
 CHighFive::LoggerA logger with supporting basic functionality
 CHighFive::CompoundType::member_defUse for defining a sub-type of compound type
 CHighFive::EnumType< T >::member_defUse for defining a member of enum type
 CHighFive::MetadataBlockSizeConfigure the metadata block size to use writing to files
 CHighFive::MPIOFileAccessConfigure MPI access for the file
 CHighFive::NodeTraits< Derivate >NodeTraits: Base class for Group and File
 CHighFive::NodeTraits< File >
 CHighFive::FileFile class
 CHighFive::NodeTraits< Group >
 CHighFive::GroupRepresents an hdf5 group
 CHighFive::Object
 CHighFive::AttributeClass representing an Attribute of a DataSet or Group
 CHighFive::DataSetClass representing a dataset
 CHighFive::DataSpaceClass representing the space (dimensions) of a DataSet
 CHighFive::DataTypeHDF5 Data Type
 CHighFive::AtomicType< T >Create an HDF5 DataType from a C++ type
 CHighFive::AtomicType< char[StrLen]>
 CHighFive::AtomicType< deprecated::FixedLenStringArray< StrLen > >
 CHighFive::AtomicType< std::complex< T > >
 CHighFive::CompoundTypeCreate a compound HDF5 datatype
 CHighFive::EnumType< T >Create a enum HDF5 datatype
 CHighFive::StringType
 CHighFive::FixedLengthStringType
 CHighFive::VariableLengthStringType
 CHighFive::FileFile class
 CHighFive::GroupRepresents an hdf5 group
 CHighFive::PropertyListBaseBase Class for Property lists, providing global default
 CHighFive::PropertyList< T >HDF5 property Lists
 CHighFive::FileDriverFile driver base concept
 CHighFive::MPIOFileDriverMPIIO Driver for Parallel HDF5
 CHighFive::RawPropertyList< T >
 CHighFive::ObjectInfoA class for accessing hdf5 objects info
 CHighFive::PathTraits< Derivate >
 CHighFive::PathTraits< Attribute >
 CHighFive::AttributeClass representing an Attribute of a DataSet or Group
 CHighFive::PathTraits< DataSet >
 CHighFive::DataSetClass representing a dataset
 CHighFive::PathTraits< Group >
 CHighFive::GroupRepresents an hdf5 group
 CPropertyInterfaceHDF5 file property object
 CHighFive::AllocationTimeWhen are datasets allocated?
 CHighFive::AttributePhaseChangeSet threshold for attribute storage
 CHighFive::Caching
 CHighFive::Chunking
 CHighFive::CreateIntermediateGroup
 CHighFive::Deflate
 CHighFive::EstimatedLinkInfoSet hints as to how many links to expect and their average length
 CHighFive::LinkCreationOrderTrack and index creation order time
 CHighFive::MpioNoCollectiveCauseThe cause for non-collective I/O
 CHighFive::Shuffle
 CHighFive::Szip
 CHighFive::UseCollectiveIO
 CHighFive::ReferenceAn HDF5 (object) reference type
 CHighFive::RegularHyperSlab
 CHighFive::SilenceHDF5Utility class to disable HDF5 stack printing inside a scope
 CHighFive::SliceTraits< Derivate >
 CHighFive::SliceTraits< DataSet >
 CHighFive::DataSetClass representing a dataset
 CHighFive::SliceTraits< Selection >
 CHighFive::SelectionSelection: represent a view on a slice/part of a dataset
+
+
+
+ + + + diff --git a/hierarchy.js b/hierarchy.js new file mode 100644 index 000000000..026795f16 --- /dev/null +++ b/hierarchy.js @@ -0,0 +1,107 @@ +var hierarchy = +[ + [ "HighFive::AnnotateTraits< Derivate >", "class_high_five_1_1_annotate_traits.html", null ], + [ "HighFive::AnnotateTraits< DataSet >", "class_high_five_1_1_annotate_traits.html", [ + [ "HighFive::DataSet", "class_high_five_1_1_data_set.html", null ] + ] ], + [ "HighFive::AnnotateTraits< File >", "class_high_five_1_1_annotate_traits.html", [ + [ "HighFive::File", "class_high_five_1_1_file.html", null ] + ] ], + [ "HighFive::AnnotateTraits< Group >", "class_high_five_1_1_annotate_traits.html", [ + [ "HighFive::Group", "class_high_five_1_1_group.html", null ] + ] ], + [ "H5Easy::Compression", "class_h5_easy_1_1_compression.html", null ], + [ "HighFive::CreationOrder", "struct_high_five_1_1_creation_order.html", null ], + [ "H5Easy::DumpOptions", "class_h5_easy_1_1_dump_options.html", null ], + [ "HighFive::ElementSet", "class_high_five_1_1_element_set.html", null ], + [ "std::exception", null, [ + [ "HighFive::Exception", "class_high_five_1_1_exception.html", [ + [ "HighFive::AttributeException", "class_high_five_1_1_attribute_exception.html", null ], + [ "HighFive::DataSetException", "class_high_five_1_1_data_set_exception.html", null ], + [ "HighFive::DataSpaceException", "class_high_five_1_1_data_space_exception.html", null ], + [ "HighFive::DataTypeException", "class_high_five_1_1_data_type_exception.html", null ], + [ "HighFive::FileException", "class_high_five_1_1_file_exception.html", null ], + [ "HighFive::GroupException", "class_high_five_1_1_group_exception.html", null ], + [ "HighFive::ObjectException", "class_high_five_1_1_object_exception.html", null ], + [ "HighFive::PropertyException", "class_high_five_1_1_property_exception.html", null ], + [ "HighFive::ReferenceException", "class_high_five_1_1_reference_exception.html", null ] + ] ] + ] ], + [ "HighFive::FileVersionBounds", "class_high_five_1_1_file_version_bounds.html", null ], + [ "HighFive::deprecated::FixedLenStringArray< N >", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html", null ], + [ "HighFive::HDF5ErrMapper", "struct_high_five_1_1_h_d_f5_err_mapper.html", null ], + [ "HighFive::HyperSlab", "class_high_five_1_1_hyper_slab.html", null ], + [ "HighFive::Logger", "class_high_five_1_1_logger.html", null ], + [ "HighFive::CompoundType::member_def", "struct_high_five_1_1_compound_type_1_1member__def.html", null ], + [ "HighFive::EnumType< T >::member_def", "struct_high_five_1_1_enum_type_1_1member__def.html", null ], + [ "HighFive::MetadataBlockSize", "class_high_five_1_1_metadata_block_size.html", null ], + [ "HighFive::MPIOFileAccess", "class_high_five_1_1_m_p_i_o_file_access.html", null ], + [ "HighFive::NodeTraits< Derivate >", "class_high_five_1_1_node_traits.html", null ], + [ "HighFive::NodeTraits< File >", "class_high_five_1_1_node_traits.html", [ + [ "HighFive::File", "class_high_five_1_1_file.html", null ] + ] ], + [ "HighFive::NodeTraits< Group >", "class_high_five_1_1_node_traits.html", [ + [ "HighFive::Group", "class_high_five_1_1_group.html", null ] + ] ], + [ "HighFive::Object", "class_high_five_1_1_object.html", [ + [ "HighFive::Attribute", "class_high_five_1_1_attribute.html", null ], + [ "HighFive::DataSet", "class_high_five_1_1_data_set.html", null ], + [ "HighFive::DataSpace", "class_high_five_1_1_data_space.html", null ], + [ "HighFive::DataType", "class_high_five_1_1_data_type.html", [ + [ "HighFive::AtomicType< T >", "class_high_five_1_1_atomic_type.html", null ], + [ "HighFive::AtomicType< char[StrLen]>", "class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4.html", null ], + [ "HighFive::AtomicType< deprecated::FixedLenStringArray< StrLen > >", "class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4.html", null ], + [ "HighFive::AtomicType< std::complex< T > >", "class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4.html", null ], + [ "HighFive::CompoundType", "class_high_five_1_1_compound_type.html", null ], + [ "HighFive::EnumType< T >", "class_high_five_1_1_enum_type.html", null ], + [ "HighFive::StringType", "class_high_five_1_1_string_type.html", [ + [ "HighFive::FixedLengthStringType", "class_high_five_1_1_fixed_length_string_type.html", null ], + [ "HighFive::VariableLengthStringType", "class_high_five_1_1_variable_length_string_type.html", null ] + ] ] + ] ], + [ "HighFive::File", "class_high_five_1_1_file.html", null ], + [ "HighFive::Group", "class_high_five_1_1_group.html", null ], + [ "HighFive::PropertyListBase", "class_high_five_1_1_property_list_base.html", [ + [ "HighFive::PropertyList< T >", "class_high_five_1_1_property_list.html", [ + [ "HighFive::FileDriver", "class_high_five_1_1_file_driver.html", null ], + [ "HighFive::MPIOFileDriver", "class_high_five_1_1_m_p_i_o_file_driver.html", null ], + [ "HighFive::RawPropertyList< T >", "class_high_five_1_1_raw_property_list.html", null ] + ] ] + ] ] + ] ], + [ "HighFive::ObjectInfo", "class_high_five_1_1_object_info.html", null ], + [ "HighFive::PathTraits< Derivate >", "class_high_five_1_1_path_traits.html", null ], + [ "HighFive::PathTraits< Attribute >", "class_high_five_1_1_path_traits.html", [ + [ "HighFive::Attribute", "class_high_five_1_1_attribute.html", null ] + ] ], + [ "HighFive::PathTraits< DataSet >", "class_high_five_1_1_path_traits.html", [ + [ "HighFive::DataSet", "class_high_five_1_1_data_set.html", null ] + ] ], + [ "HighFive::PathTraits< Group >", "class_high_five_1_1_path_traits.html", [ + [ "HighFive::Group", "class_high_five_1_1_group.html", null ] + ] ], + [ "PropertyInterface", "interface_property_interface.html", [ + [ "HighFive::AllocationTime", "class_high_five_1_1_allocation_time.html", null ], + [ "HighFive::AttributePhaseChange", "class_high_five_1_1_attribute_phase_change.html", null ], + [ "HighFive::Caching", "class_high_five_1_1_caching.html", null ], + [ "HighFive::Chunking", "class_high_five_1_1_chunking.html", null ], + [ "HighFive::CreateIntermediateGroup", "class_high_five_1_1_create_intermediate_group.html", null ], + [ "HighFive::Deflate", "class_high_five_1_1_deflate.html", null ], + [ "HighFive::EstimatedLinkInfo", "class_high_five_1_1_estimated_link_info.html", null ], + [ "HighFive::LinkCreationOrder", "class_high_five_1_1_link_creation_order.html", null ], + [ "HighFive::MpioNoCollectiveCause", "class_high_five_1_1_mpio_no_collective_cause.html", null ], + [ "HighFive::Shuffle", "class_high_five_1_1_shuffle.html", null ], + [ "HighFive::Szip", "class_high_five_1_1_szip.html", null ], + [ "HighFive::UseCollectiveIO", "class_high_five_1_1_use_collective_i_o.html", null ] + ] ], + [ "HighFive::Reference", "class_high_five_1_1_reference.html", null ], + [ "HighFive::RegularHyperSlab", "struct_high_five_1_1_regular_hyper_slab.html", null ], + [ "HighFive::SilenceHDF5", "class_high_five_1_1_silence_h_d_f5.html", null ], + [ "HighFive::SliceTraits< Derivate >", "class_high_five_1_1_slice_traits.html", null ], + [ "HighFive::SliceTraits< DataSet >", "class_high_five_1_1_slice_traits.html", [ + [ "HighFive::DataSet", "class_high_five_1_1_data_set.html", null ] + ] ], + [ "HighFive::SliceTraits< Selection >", "class_high_five_1_1_slice_traits.html", [ + [ "HighFive::Selection", "class_high_five_1_1_selection.html", null ] + ] ] +]; \ No newline at end of file diff --git a/highfive_8hpp.html b/highfive_8hpp.html new file mode 100644 index 000000000..f6dfffca9 --- /dev/null +++ b/highfive_8hpp.html @@ -0,0 +1,319 @@ + + + + + + + +HighFive: highfive/highfive.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
highfive.hpp File Reference
+
+
+
+Include dependency graph for highfive.hpp:
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Go to the source code of this file.

+
+
+ + + + diff --git a/highfive_8hpp__incl.map b/highfive_8hpp__incl.map new file mode 100644 index 000000000..6e91c8372 --- /dev/null +++ b/highfive_8hpp__incl.map @@ -0,0 +1,191 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/highfive_8hpp__incl.md5 b/highfive_8hpp__incl.md5 new file mode 100644 index 000000000..c35a0d998 --- /dev/null +++ b/highfive_8hpp__incl.md5 @@ -0,0 +1 @@ +40339e30fcdebb70a95e2aff63a257e3 \ No newline at end of file diff --git a/highfive_8hpp__incl.png b/highfive_8hpp__incl.png new file mode 100644 index 000000000..c75f519d7 Binary files /dev/null and b/highfive_8hpp__incl.png differ diff --git a/highfive_8hpp_source.html b/highfive_8hpp_source.html new file mode 100644 index 000000000..07dfd3843 --- /dev/null +++ b/highfive_8hpp_source.html @@ -0,0 +1,140 @@ + + + + + + + +HighFive: highfive/highfive.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
highfive.hpp
+
+
+Go to the documentation of this file.
+
+ + + + diff --git a/index.html b/index.html new file mode 100644 index 000000000..47b6b1a98 --- /dev/null +++ b/index.html @@ -0,0 +1,282 @@ + + + + + + + +HighFive: HighFive - HDF5 header-only C++ Library + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
HighFive - HDF5 header-only C++ Library
+
+
+

Doxygen -> gh-pages codecov HighFive_Integration_tests

+

Documentation: https://bluebrain.github.io/HighFive/

+

Brief

+

HighFive is a modern header-only C++11 friendly interface for libhdf5.

+

HighFive supports STL vector/string, Boost::UBLAS, Boost::Multi-array and Xtensor. It handles C++ from/to HDF5 with automatic type mapping. HighFive does not require additional libraries (see dependencies).

+

It integrates nicely with other CMake projects by defining (and exporting) a HighFive target.

+

Design

+
    +
  • Simple C++-ish minimalist interface
  • +
  • No other dependency than libhdf5
  • +
  • Zero overhead
  • +
  • Support C++11
  • +
+

Feature support

+
    +
  • create/read/write files, datasets, attributes, groups, dataspaces.
  • +
  • automatic memory management / ref counting
  • +
  • automatic conversion of std::vector and nested std::vector from/to any dataset with basic types
  • +
  • automatic conversion of std::string to/from variable length string dataset
  • +
  • selection() / slice support
  • +
  • parallel Read/Write operations from several nodes with Parallel HDF5
  • +
  • Advanced types: Compound, Enum, Arrays of Fixed-length strings, References
  • +
  • half-precision (16-bit) floating-point datasets
  • +
  • std::byte in C++17 mode (with -DCMAKE_CXX_STANDARD=17 or higher)
  • +
  • etc... (see ChangeLog)
  • +
+

Dependencies

+
    +
  • hdf5 (dev)
  • +
  • hdf5-mpi (optional, opt-in with -D*HIGHFIVE_PARALLEL_HDF5*=ON)
  • +
  • boost >= 1.41 (recommended, opt-out with -D*HIGHFIVE_USE_BOOST*=OFF)
  • +
  • eigen3 (optional, opt-in with -D*HIGHFIVE_USE_EIGEN*=ON)
  • +
  • xtensor (optional, opt-in with -D*HIGHFIVE_USE_XTENSOR*=ON)
  • +
  • half (optional, opt-in with -D*HIGHFIVE_USE_HALF_FLOAT*=ON)
  • +
+

Known flaws

+ +

Examples

+

Write a std::vector<int> to 1D HDF5 dataset and read it back

+
++
+ +
+
using namespace HighFive;
+
+
std::string filename = "/tmp/new_file.h5";
+
+
{
+
// We create an empty HDF55 file, by truncating an existing
+
// file if required:
+
File file(filename, File::Truncate);
+
+
std::vector<int> data(50, 1);
+
file.createDataSet("grp/data", data);
+
}
+
+
{
+
// We open the file as read-only:
+
File file(filename, File::ReadOnly);
+
auto dataset = file.getDataSet("grp/data");
+
+
// Read back, with allocating:
+
auto data = dataset.read<std::vector<int>>();
+
+
// Because `data` has the correct size, this will
+
// not cause `data` to be reallocated:
+
dataset.read(data);
+
}
+
File class.
Definition H5File.hpp:24
+ +
Definition H5_definitions.hpp:22
+

Note: As of 2.8.0, one can use highfive/highfive.hpp to include everything HighFive. Prior to 2.8.0 one would include highfive/H5File.hpp.

+

Note: For advanced usecases the dataset can be created without immediately writing to it. This is common in MPI-IO related patterns, or when growing a dataset over the course of a simulation.

+

Write a 2 dimensional C double float array to a 2D HDF5 dataset

+

See create_dataset_double.cpp

+

Write and read a matrix of double float (boost::ublas) to a 2D HDF5 dataset

+

See boost_ublas_double.cpp

+

Write and read a subset of a 2D double dataset

+

See select_partial_dataset_cpp11.cpp

+

Create, write and list HDF5 attributes

+

See create_attribute_string_integer.cpp

+

And others

+

See src/examples/ subdirectory for more info.

+

H5Easy

+

For several 'standard' use cases the highfive/H5Easy.hpp interface is available. It allows:

+
    +
  • Reading/writing in a single line of:
      +
    • scalars (to/from an extendible DataSet),
    • +
    • strings,
    • +
    • vectors (of standard types),
    • +
    • Eigen::Matrix (optional, enable CMake option HIGHFIVE_USE_EIGEN),
    • +
    • xt::xarray and xt::xtensor (optional, enable CMake option HIGHFIVE_USE_XTENSOR).
    • +
    • cv::Mat_ (optional, enable CMake option HIGHFIVE_USE_OPENCV).
    • +
    +
  • +
  • Getting in a single line:
      +
    • the size of a DataSet,
    • +
    • the shape of a DataSet.
    • +
    +
  • +
+

Example

+
+
+
int main() {
+ +
+
int A = ...;
+
H5Easy::dump(file, "/path/to/A", A);
+
+
A = H5Easy::load<int>(file, "/path/to/A");
+
}
+ +
@ Overwrite
Derived open flag: common write mode (=ReadWrite|Create|Truncate)
Definition H5File.hpp:42
+
DataSet dump(File &file, const std::string &path, const T &data, DumpMode mode=DumpMode::Create)
Write object (templated) to a (new) DataSet in an open HDF5 file.
Definition H5Easy_public.hpp:99
+

whereby the int type of this example can be replaced by any of the above types. See easy_load_dump.cpp for more details.

+

Note: Classes such as H5Easy::File are just short for the regular HighFive classes (in this case HighFive::File). They can thus be used interchangeably.

+

CMake integration

+

There's two common paths of integrating HighFive into a CMake based project. The first is to "vendor" HighFive, the second is to install HighFive as a normal C++ library. Due to how HighFive CMake code works, sometimes following the third Bailout Approach is needed.

+

Vendoring HighFive

+

In this approach the HighFive sources are included in a subdirectory of the project (typically as a git submodule), for example in third_party/HighFive.

+

The projects CMakeLists.txt add the following lines

add_executable(foo foo.cpp)
+
+
# You might want to turn off Boost support:
+
if(NOT DEFINED HIGHFIVE_USE_BOOST)
+
set(HIGHFIVE_USE_BOOST Off)
+
endif()
+
+
# Include the subdirectory and use the target HighFive.
+
add_subdirectory(third_party/HighFive)
+
target_link_libraries(foo HighFive)
+

Note: add_subdirectory(third_party/HighFive) will search and "link" HDF5 and optional dependencies such as Boost.

+

Regular Installation of HighFive

+

Alternatively you can install HighFive once and use it in several projects via find_package(). First one should clone the sources:

git clone --recursive https://github.com/BlueBrain/HighFive.git HighFive-src
+

By default CMake will install systemwide, which is likely not appropriate. The instruction below allow users to select a custom path where HighFive will be installed, e.g. HIGHFIVE_INSTALL_PREFIX=${HOME}/third_party/HighFive or some other location. The CMake invocations would be

cmake -DHIGHFIVE_EXAMPLES=Off \
+
-DHIGHFIVE_USE_BOOST=Off \
+
-DHIGHFIVE_UNIT_TESTS=Off \
+
-DCMAKE_INSTALL_PREFIX=${HIGHFIVE_INSTALL_PREFIX} \
+
-B HighFive-src/build \
+
HighFive-src
+
+
cmake --build HighFive-src/build
+
cmake --install HighFive-src/build
+

This will install (i.e. copy) the headers to ${HIGHFIVE_INSTALL_PREFIX}/include and some CMake files into an appropriate subfolder of ${HIGHFIVE_INSTALL_PREFIX}.

+

The projects CMakeLists.txt should add the following:

# ...
+
add_executable(foo foo.cpp)
+
+
find_package(HighFive REQUIRED)
+
target_link_libraries(foo HighFive)
+

Note: If HighFive hasn't been installed in a default location, CMake needs to be told where to find it which can be done by adding -DCMAKE_PREFIX_PATH=${HIGHFIVE_INSTALL_PREFIX} to the CMake command for building the project using HighFive. The variable CMAKE_PREFIX_PATH is a semi-colon ; separated list of directories.

+

Note: find_package(HighFive) will search and "link" HDF5 and optional dependencies such as Boost.

+

The Bailout Approach

+

Since both add_subdirectory and find_package will trigger finding HDF5 and other optional dependencies of HighFive as well as the target_link_libraries code for "linking" with the dependencies, things can go wrong.

+

Fortunately, HighFive is a header only library and all that's needed is the headers. Preferably, the version obtained by installing HighFive, since those include H5Version.hpp. Let's assume they've been copied to third_party/HighFive. Then one could create a target:

+
add_library(HighFive INTERFACE)
+
target_include_directory(HighFive INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/third_party/HighFive/include)
+
+
+
add_executable(foo foo.cpp)
+
target_link_libraries(foo HighFive)
+

One known case where this is required is when vendoring the optional dependencies of HighFive.

+

Questions?

+

Do you have questions on how to use HighFive? Would you like to share an interesting example or discuss HighFive features? Head over to the Discussions forum and join the community.

+

For bugs and issues please use Issues.

+

Funding & Acknowledgment

+

The development of this software was supported by funding to the Blue Brain Project, a research center of the École polytechnique fédérale de Lausanne (EPFL), from the Swiss government's ETH Board of the Swiss Federal Institutes of Technology.

+

Copyright © 2015-2022 Blue Brain Project/EPFL

+

License

+

Boost Software License 1.0

+
+ +
+
+ + + + diff --git a/inherit_graph_0.map b/inherit_graph_0.map new file mode 100644 index 000000000..39900d2ad --- /dev/null +++ b/inherit_graph_0.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_0.md5 b/inherit_graph_0.md5 new file mode 100644 index 000000000..5a7b11f8e --- /dev/null +++ b/inherit_graph_0.md5 @@ -0,0 +1 @@ +8676e442c6d2c754c1d705bb5c242ac6 \ No newline at end of file diff --git a/inherit_graph_0.png b/inherit_graph_0.png new file mode 100644 index 000000000..196254621 Binary files /dev/null and b/inherit_graph_0.png differ diff --git a/inherit_graph_1.map b/inherit_graph_1.map new file mode 100644 index 000000000..aa519a4b6 --- /dev/null +++ b/inherit_graph_1.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_1.md5 b/inherit_graph_1.md5 new file mode 100644 index 000000000..529de84e9 --- /dev/null +++ b/inherit_graph_1.md5 @@ -0,0 +1 @@ +684dc5d65a2458540d6988399bd8ffbe \ No newline at end of file diff --git a/inherit_graph_1.png b/inherit_graph_1.png new file mode 100644 index 000000000..5a280203c Binary files /dev/null and b/inherit_graph_1.png differ diff --git a/inherit_graph_10.map b/inherit_graph_10.map new file mode 100644 index 000000000..e306a9303 --- /dev/null +++ b/inherit_graph_10.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_10.md5 b/inherit_graph_10.md5 new file mode 100644 index 000000000..a62c4aceb --- /dev/null +++ b/inherit_graph_10.md5 @@ -0,0 +1 @@ +a9b02d40e4d313fa781958cac0be3730 \ No newline at end of file diff --git a/inherit_graph_10.png b/inherit_graph_10.png new file mode 100644 index 000000000..fff00dfec Binary files /dev/null and b/inherit_graph_10.png differ diff --git a/inherit_graph_11.map b/inherit_graph_11.map new file mode 100644 index 000000000..7e5deabe4 --- /dev/null +++ b/inherit_graph_11.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_11.md5 b/inherit_graph_11.md5 new file mode 100644 index 000000000..ebd05236a --- /dev/null +++ b/inherit_graph_11.md5 @@ -0,0 +1 @@ +030dd4aa3d9d23d930aafada7e92ea1b \ No newline at end of file diff --git a/inherit_graph_11.png b/inherit_graph_11.png new file mode 100644 index 000000000..ecdec2e2c Binary files /dev/null and b/inherit_graph_11.png differ diff --git a/inherit_graph_12.map b/inherit_graph_12.map new file mode 100644 index 000000000..2598f2823 --- /dev/null +++ b/inherit_graph_12.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_12.md5 b/inherit_graph_12.md5 new file mode 100644 index 000000000..cbc8b0d33 --- /dev/null +++ b/inherit_graph_12.md5 @@ -0,0 +1 @@ +336d4e515f3d2ec4e2810f9755fa4f61 \ No newline at end of file diff --git a/inherit_graph_12.png b/inherit_graph_12.png new file mode 100644 index 000000000..832c10a3c Binary files /dev/null and b/inherit_graph_12.png differ diff --git a/inherit_graph_13.map b/inherit_graph_13.map new file mode 100644 index 000000000..e787dd1e1 --- /dev/null +++ b/inherit_graph_13.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_13.md5 b/inherit_graph_13.md5 new file mode 100644 index 000000000..bd2c23da7 --- /dev/null +++ b/inherit_graph_13.md5 @@ -0,0 +1 @@ +bf60f21977eb35842deeb18d3034d750 \ No newline at end of file diff --git a/inherit_graph_13.png b/inherit_graph_13.png new file mode 100644 index 000000000..80bdafee8 Binary files /dev/null and b/inherit_graph_13.png differ diff --git a/inherit_graph_14.map b/inherit_graph_14.map new file mode 100644 index 000000000..057037bc9 --- /dev/null +++ b/inherit_graph_14.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_14.md5 b/inherit_graph_14.md5 new file mode 100644 index 000000000..6974ba754 --- /dev/null +++ b/inherit_graph_14.md5 @@ -0,0 +1 @@ +1df81577f8954545a29fd2f0f65f6a6f \ No newline at end of file diff --git a/inherit_graph_14.png b/inherit_graph_14.png new file mode 100644 index 000000000..8819d227a Binary files /dev/null and b/inherit_graph_14.png differ diff --git a/inherit_graph_15.map b/inherit_graph_15.map new file mode 100644 index 000000000..0b06a5a4f --- /dev/null +++ b/inherit_graph_15.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_15.md5 b/inherit_graph_15.md5 new file mode 100644 index 000000000..e82505552 --- /dev/null +++ b/inherit_graph_15.md5 @@ -0,0 +1 @@ +02caf605988950f1af6691b7466f70d3 \ No newline at end of file diff --git a/inherit_graph_15.png b/inherit_graph_15.png new file mode 100644 index 000000000..d2b2fed65 Binary files /dev/null and b/inherit_graph_15.png differ diff --git a/inherit_graph_16.map b/inherit_graph_16.map new file mode 100644 index 000000000..7f8ceb3d9 --- /dev/null +++ b/inherit_graph_16.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_16.md5 b/inherit_graph_16.md5 new file mode 100644 index 000000000..29d382629 --- /dev/null +++ b/inherit_graph_16.md5 @@ -0,0 +1 @@ +b418606c4786eec0c6c988581802ec9a \ No newline at end of file diff --git a/inherit_graph_16.png b/inherit_graph_16.png new file mode 100644 index 000000000..52c95aeb3 Binary files /dev/null and b/inherit_graph_16.png differ diff --git a/inherit_graph_17.map b/inherit_graph_17.map new file mode 100644 index 000000000..4665f4348 --- /dev/null +++ b/inherit_graph_17.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_17.md5 b/inherit_graph_17.md5 new file mode 100644 index 000000000..661064fbd --- /dev/null +++ b/inherit_graph_17.md5 @@ -0,0 +1 @@ +32c9073de25e1a7946ffde57d299ef2f \ No newline at end of file diff --git a/inherit_graph_17.png b/inherit_graph_17.png new file mode 100644 index 000000000..1ab5b4128 Binary files /dev/null and b/inherit_graph_17.png differ diff --git a/inherit_graph_18.map b/inherit_graph_18.map new file mode 100644 index 000000000..d43d085f2 --- /dev/null +++ b/inherit_graph_18.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_18.md5 b/inherit_graph_18.md5 new file mode 100644 index 000000000..1941721eb --- /dev/null +++ b/inherit_graph_18.md5 @@ -0,0 +1 @@ +7bdd9e0f22bc7ca1004308ed9e595428 \ No newline at end of file diff --git a/inherit_graph_18.png b/inherit_graph_18.png new file mode 100644 index 000000000..b7a9dc73e Binary files /dev/null and b/inherit_graph_18.png differ diff --git a/inherit_graph_19.map b/inherit_graph_19.map new file mode 100644 index 000000000..7a715a72a --- /dev/null +++ b/inherit_graph_19.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_19.md5 b/inherit_graph_19.md5 new file mode 100644 index 000000000..605452d28 --- /dev/null +++ b/inherit_graph_19.md5 @@ -0,0 +1 @@ +cc62bf13425515283450e6320125f832 \ No newline at end of file diff --git a/inherit_graph_19.png b/inherit_graph_19.png new file mode 100644 index 000000000..bd1db2127 Binary files /dev/null and b/inherit_graph_19.png differ diff --git a/inherit_graph_2.map b/inherit_graph_2.map new file mode 100644 index 000000000..c584857c4 --- /dev/null +++ b/inherit_graph_2.map @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inherit_graph_2.md5 b/inherit_graph_2.md5 new file mode 100644 index 000000000..e1cfac9c0 --- /dev/null +++ b/inherit_graph_2.md5 @@ -0,0 +1 @@ +2ef9f03e091f4d87ffc5ef1981fcebf2 \ No newline at end of file diff --git a/inherit_graph_2.png b/inherit_graph_2.png new file mode 100644 index 000000000..3df5a8349 Binary files /dev/null and b/inherit_graph_2.png differ diff --git a/inherit_graph_20.map b/inherit_graph_20.map new file mode 100644 index 000000000..fd9328683 --- /dev/null +++ b/inherit_graph_20.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_20.md5 b/inherit_graph_20.md5 new file mode 100644 index 000000000..ddafe603d --- /dev/null +++ b/inherit_graph_20.md5 @@ -0,0 +1 @@ +b369195cda0e5e93e724a26f51728432 \ No newline at end of file diff --git a/inherit_graph_20.png b/inherit_graph_20.png new file mode 100644 index 000000000..b1c66e18f Binary files /dev/null and b/inherit_graph_20.png differ diff --git a/inherit_graph_21.map b/inherit_graph_21.map new file mode 100644 index 000000000..3be725ed6 --- /dev/null +++ b/inherit_graph_21.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_21.md5 b/inherit_graph_21.md5 new file mode 100644 index 000000000..dedb9aa61 --- /dev/null +++ b/inherit_graph_21.md5 @@ -0,0 +1 @@ +fede7fd4f16d9c843bd342b6139518c7 \ No newline at end of file diff --git a/inherit_graph_21.png b/inherit_graph_21.png new file mode 100644 index 000000000..9814743f6 Binary files /dev/null and b/inherit_graph_21.png differ diff --git a/inherit_graph_22.map b/inherit_graph_22.map new file mode 100644 index 000000000..736eb9723 --- /dev/null +++ b/inherit_graph_22.map @@ -0,0 +1,5 @@ + + + + + diff --git a/inherit_graph_22.md5 b/inherit_graph_22.md5 new file mode 100644 index 000000000..46b0e0373 --- /dev/null +++ b/inherit_graph_22.md5 @@ -0,0 +1 @@ +2713132e86ee218e373debe3e9f3404d \ No newline at end of file diff --git a/inherit_graph_22.png b/inherit_graph_22.png new file mode 100644 index 000000000..f903f5c0f Binary files /dev/null and b/inherit_graph_22.png differ diff --git a/inherit_graph_23.map b/inherit_graph_23.map new file mode 100644 index 000000000..22e589bde --- /dev/null +++ b/inherit_graph_23.map @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inherit_graph_23.md5 b/inherit_graph_23.md5 new file mode 100644 index 000000000..17ed568ba --- /dev/null +++ b/inherit_graph_23.md5 @@ -0,0 +1 @@ +a4b7d5690713570a5762a47f1ef461a9 \ No newline at end of file diff --git a/inherit_graph_23.png b/inherit_graph_23.png new file mode 100644 index 000000000..2482c5bd8 Binary files /dev/null and b/inherit_graph_23.png differ diff --git a/inherit_graph_24.map b/inherit_graph_24.map new file mode 100644 index 000000000..becd69ec7 --- /dev/null +++ b/inherit_graph_24.map @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inherit_graph_24.md5 b/inherit_graph_24.md5 new file mode 100644 index 000000000..b2906c613 --- /dev/null +++ b/inherit_graph_24.md5 @@ -0,0 +1 @@ +bf35a442c198f9b4bbff263dd1d2d149 \ No newline at end of file diff --git a/inherit_graph_24.png b/inherit_graph_24.png new file mode 100644 index 000000000..f073d82fc Binary files /dev/null and b/inherit_graph_24.png differ diff --git a/inherit_graph_3.map b/inherit_graph_3.map new file mode 100644 index 000000000..5a9f4468d --- /dev/null +++ b/inherit_graph_3.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_3.md5 b/inherit_graph_3.md5 new file mode 100644 index 000000000..ff4e4609c --- /dev/null +++ b/inherit_graph_3.md5 @@ -0,0 +1 @@ +76dc72dd3d142528beee20a61b3dbf45 \ No newline at end of file diff --git a/inherit_graph_3.png b/inherit_graph_3.png new file mode 100644 index 000000000..49714deb2 Binary files /dev/null and b/inherit_graph_3.png differ diff --git a/inherit_graph_4.map b/inherit_graph_4.map new file mode 100644 index 000000000..18ad1f69c --- /dev/null +++ b/inherit_graph_4.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_4.md5 b/inherit_graph_4.md5 new file mode 100644 index 000000000..258f7e30a --- /dev/null +++ b/inherit_graph_4.md5 @@ -0,0 +1 @@ +b34a6a9fe55e9d82b2ce82044f2cc35a \ No newline at end of file diff --git a/inherit_graph_4.png b/inherit_graph_4.png new file mode 100644 index 000000000..da547b5c0 Binary files /dev/null and b/inherit_graph_4.png differ diff --git a/inherit_graph_5.map b/inherit_graph_5.map new file mode 100644 index 000000000..337bdef01 --- /dev/null +++ b/inherit_graph_5.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_5.md5 b/inherit_graph_5.md5 new file mode 100644 index 000000000..475163275 --- /dev/null +++ b/inherit_graph_5.md5 @@ -0,0 +1 @@ +707a43c4478c62ad00fc940d24b4291f \ No newline at end of file diff --git a/inherit_graph_5.png b/inherit_graph_5.png new file mode 100644 index 000000000..3bf6a7110 Binary files /dev/null and b/inherit_graph_5.png differ diff --git a/inherit_graph_6.map b/inherit_graph_6.map new file mode 100644 index 000000000..0dadb62af --- /dev/null +++ b/inherit_graph_6.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_6.md5 b/inherit_graph_6.md5 new file mode 100644 index 000000000..014fd4384 --- /dev/null +++ b/inherit_graph_6.md5 @@ -0,0 +1 @@ +c0ec25dcbb31331f007ef84439def57c \ No newline at end of file diff --git a/inherit_graph_6.png b/inherit_graph_6.png new file mode 100644 index 000000000..8bfbbaab9 Binary files /dev/null and b/inherit_graph_6.png differ diff --git a/inherit_graph_7.map b/inherit_graph_7.map new file mode 100644 index 000000000..ef87e5fa1 --- /dev/null +++ b/inherit_graph_7.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_7.md5 b/inherit_graph_7.md5 new file mode 100644 index 000000000..9ac509c89 --- /dev/null +++ b/inherit_graph_7.md5 @@ -0,0 +1 @@ +32f2b827e3132aaa8581f51fc17d534b \ No newline at end of file diff --git a/inherit_graph_7.png b/inherit_graph_7.png new file mode 100644 index 000000000..c5449a3dd Binary files /dev/null and b/inherit_graph_7.png differ diff --git a/inherit_graph_8.map b/inherit_graph_8.map new file mode 100644 index 000000000..7fb218023 --- /dev/null +++ b/inherit_graph_8.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_8.md5 b/inherit_graph_8.md5 new file mode 100644 index 000000000..3bacf6e45 --- /dev/null +++ b/inherit_graph_8.md5 @@ -0,0 +1 @@ +775428e21617944802c488549271f668 \ No newline at end of file diff --git a/inherit_graph_8.png b/inherit_graph_8.png new file mode 100644 index 000000000..c4f35e5c9 Binary files /dev/null and b/inherit_graph_8.png differ diff --git a/inherit_graph_9.map b/inherit_graph_9.map new file mode 100644 index 000000000..8fabd6fdd --- /dev/null +++ b/inherit_graph_9.map @@ -0,0 +1,3 @@ + + + diff --git a/inherit_graph_9.md5 b/inherit_graph_9.md5 new file mode 100644 index 000000000..9799a25a5 --- /dev/null +++ b/inherit_graph_9.md5 @@ -0,0 +1 @@ +bef602903928d16d607e56e51e0db93d \ No newline at end of file diff --git a/inherit_graph_9.png b/inherit_graph_9.png new file mode 100644 index 000000000..2f9fc27df Binary files /dev/null and b/inherit_graph_9.png differ diff --git a/inherits.html b/inherits.html new file mode 100644 index 000000000..a61db02c9 --- /dev/null +++ b/inherits.html @@ -0,0 +1,341 @@ + + + + + + + +HighFive: Class Hierarchy + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Class Hierarchy
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + + + diff --git a/installation_8md.html b/installation_8md.html new file mode 100644 index 000000000..eec5a0df8 --- /dev/null +++ b/installation_8md.html @@ -0,0 +1,109 @@ + + + + + + + +HighFive: /home/runner/work/HighFive/HighFive/doc/installation.md File Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
/home/runner/work/HighFive/HighFive/doc/installation.md File Reference
+
+
+
+
+ + + + diff --git a/interface_property_interface.html b/interface_property_interface.html new file mode 100644 index 000000000..317d5a681 --- /dev/null +++ b/interface_property_interface.html @@ -0,0 +1,153 @@ + + + + + + + +HighFive: PropertyInterface Interface Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
PropertyInterface Interface Reference
+
+
+ +

HDF5 file property object. + More...

+ +

#include <H5PropertyList.hpp>

+
+Inheritance diagram for PropertyInterface:
+
+
Inheritance graph
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
[legend]
+

Detailed Description

+

HDF5 file property object.

+

A property is an object which is expected to have a method with the following signature void apply(hid_t hid) const

+
See also
Instructions to document C++20 concepts with Doxygen: https://github.com/doxygen/doxygen/issues/2732#issuecomment-509629967
+

The documentation for this interface was generated from the following file: +
+
+ + + + diff --git a/interface_property_interface__inherit__graph.map b/interface_property_interface__inherit__graph.map new file mode 100644 index 000000000..e971314ee --- /dev/null +++ b/interface_property_interface__inherit__graph.map @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/interface_property_interface__inherit__graph.md5 b/interface_property_interface__inherit__graph.md5 new file mode 100644 index 000000000..21fed75b1 --- /dev/null +++ b/interface_property_interface__inherit__graph.md5 @@ -0,0 +1 @@ +4e96c961d6cfe890733453a572071aad \ No newline at end of file diff --git a/interface_property_interface__inherit__graph.png b/interface_property_interface__inherit__graph.png new file mode 100644 index 000000000..e2c3bc5b4 Binary files /dev/null and b/interface_property_interface__inherit__graph.png differ diff --git a/jquery.js b/jquery.js new file mode 100644 index 000000000..1dffb65b5 --- /dev/null +++ b/jquery.js @@ -0,0 +1,34 @@ +/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="
",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=y(e||this.defaultElement||this)[0],this.element=y(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=y(),this.hoverable=y(),this.focusable=y(),this.classesElementLookup={},e!==this&&(y.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=y(e.style?e.ownerDocument:e.document||e),this.window=y(this.document[0].defaultView||this.document[0].parentWindow)),this.options=y.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:y.noop,_create:y.noop,_init:y.noop,destroy:function(){var i=this;this._destroy(),y.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:y.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return y.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=y.widget.extend({},this.options[t]),n=0;n
"),i=e.children()[0];return y("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthx(D(s),D(n))?o.important="horizontal":o.important="vertical",p.using.call(this,t,o)}),h.offset(y.extend(l,{using:t}))})},y.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,h=s-o,a=o+e.collisionWidth-n-s;e.collisionWidth>n?0n?0=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),y.ui.plugin={add:function(t,e,i){var s,n=y.ui[t].prototype;for(s in i)n.plugins[s]=n.plugins[s]||[],n.plugins[s].push([e,i[s]])},call:function(t,e,i,s){var n,o=t.plugins[e];if(o&&(s||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(n=0;n").css({overflow:"hidden",position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("ui-resizable",this.element.resizable("instance")),this.elementIsWrapper=!0,t={marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom"),marginLeft:this.originalElement.css("marginLeft")},this.element.css(t),this.originalElement.css("margin",0),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css(t),this._proportionallyResize()),this._setupHandles(),e.autoHide&&y(this.element).on("mouseenter",function(){e.disabled||(i._removeClass("ui-resizable-autohide"),i._handles.show())}).on("mouseleave",function(){e.disabled||i.resizing||(i._addClass("ui-resizable-autohide"),i._handles.hide())}),this._mouseInit()},_destroy:function(){this._mouseDestroy(),this._addedHandles.remove();function t(t){y(t).removeData("resizable").removeData("ui-resizable").off(".resizable")}var e;return this.elementIsWrapper&&(t(this.element),e=this.element,this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")}).insertAfter(e),e.remove()),this.originalElement.css("resize",this.originalResizeStyle),t(this.originalElement),this},_setOption:function(t,e){switch(this._super(t,e),t){case"handles":this._removeHandles(),this._setupHandles();break;case"aspectRatio":this._aspectRatio=!!e}},_setupHandles:function(){var t,e,i,s,n,o=this.options,h=this;if(this.handles=o.handles||(y(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this._handles=y(),this._addedHandles=y(),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),i=this.handles.split(","),this.handles={},e=0;e"),this._addClass(n,"ui-resizable-handle "+s),n.css({zIndex:o.zIndex}),this.handles[t]=".ui-resizable-"+t,this.element.children(this.handles[t]).length||(this.element.append(n),this._addedHandles=this._addedHandles.add(n));this._renderAxis=function(t){var e,i,s;for(e in t=t||this.element,this.handles)this.handles[e].constructor===String?this.handles[e]=this.element.children(this.handles[e]).first().show():(this.handles[e].jquery||this.handles[e].nodeType)&&(this.handles[e]=y(this.handles[e]),this._on(this.handles[e],{mousedown:h._mouseDown})),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)&&(i=y(this.handles[e],this.element),s=/sw|ne|nw|se|n|s/.test(e)?i.outerHeight():i.outerWidth(),i=["padding",/ne|nw|n/.test(e)?"Top":/se|sw|s/.test(e)?"Bottom":/^e$/.test(e)?"Right":"Left"].join(""),t.css(i,s),this._proportionallyResize()),this._handles=this._handles.add(this.handles[e])},this._renderAxis(this.element),this._handles=this._handles.add(this.element.find(".ui-resizable-handle")),this._handles.disableSelection(),this._handles.on("mouseover",function(){h.resizing||(this.className&&(n=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),h.axis=n&&n[1]?n[1]:"se")}),o.autoHide&&(this._handles.hide(),this._addClass("ui-resizable-autohide"))},_removeHandles:function(){this._addedHandles.remove()},_mouseCapture:function(t){var e,i,s=!1;for(e in this.handles)(i=y(this.handles[e])[0])!==t.target&&!y.contains(i,t.target)||(s=!0);return!this.options.disabled&&s},_mouseStart:function(t){var e,i,s=this.options,n=this.element;return this.resizing=!0,this._renderProxy(),e=this._num(this.helper.css("left")),i=this._num(this.helper.css("top")),s.containment&&(e+=y(s.containment).scrollLeft()||0,i+=y(s.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:e,top:i},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{width:n.width(),height:n.height()},this.originalSize=this._helper?{width:n.outerWidth(),height:n.outerHeight()}:{width:n.width(),height:n.height()},this.sizeDiff={width:n.outerWidth()-n.width(),height:n.outerHeight()-n.height()},this.originalPosition={left:e,top:i},this.originalMousePosition={left:t.pageX,top:t.pageY},this.aspectRatio="number"==typeof s.aspectRatio?s.aspectRatio:this.originalSize.width/this.originalSize.height||1,s=y(".ui-resizable-"+this.axis).css("cursor"),y("body").css("cursor","auto"===s?this.axis+"-resize":s),this._addClass("ui-resizable-resizing"),this._propagate("start",t),!0},_mouseDrag:function(t){var e=this.originalMousePosition,i=this.axis,s=t.pageX-e.left||0,e=t.pageY-e.top||0,i=this._change[i];return this._updatePrevProperties(),i&&(e=i.apply(this,[t,s,e]),this._updateVirtualBoundaries(t.shiftKey),(this._aspectRatio||t.shiftKey)&&(e=this._updateRatio(e,t)),e=this._respectSize(e,t),this._updateCache(e),this._propagate("resize",t),e=this._applyChanges(),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),y.isEmptyObject(e)||(this._updatePrevProperties(),this._trigger("resize",t,this.ui()),this._applyChanges())),!1},_mouseStop:function(t){this.resizing=!1;var e,i,s,n=this.options,o=this;return this._helper&&(s=(e=(i=this._proportionallyResizeElements).length&&/textarea/i.test(i[0].nodeName))&&this._hasScroll(i[0],"left")?0:o.sizeDiff.height,i=e?0:o.sizeDiff.width,e={width:o.helper.width()-i,height:o.helper.height()-s},i=parseFloat(o.element.css("left"))+(o.position.left-o.originalPosition.left)||null,s=parseFloat(o.element.css("top"))+(o.position.top-o.originalPosition.top)||null,n.animate||this.element.css(y.extend(e,{top:s,left:i})),o.helper.height(o.size.height),o.helper.width(o.size.width),this._helper&&!n.animate&&this._proportionallyResize()),y("body").css("cursor","auto"),this._removeClass("ui-resizable-resizing"),this._propagate("stop",t),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var t={};return this.position.top!==this.prevPosition.top&&(t.top=this.position.top+"px"),this.position.left!==this.prevPosition.left&&(t.left=this.position.left+"px"),this.size.width!==this.prevSize.width&&(t.width=this.size.width+"px"),this.size.height!==this.prevSize.height&&(t.height=this.size.height+"px"),this.helper.css(t),t},_updateVirtualBoundaries:function(t){var e,i,s=this.options,n={minWidth:this._isNumber(s.minWidth)?s.minWidth:0,maxWidth:this._isNumber(s.maxWidth)?s.maxWidth:1/0,minHeight:this._isNumber(s.minHeight)?s.minHeight:0,maxHeight:this._isNumber(s.maxHeight)?s.maxHeight:1/0};(this._aspectRatio||t)&&(e=n.minHeight*this.aspectRatio,i=n.minWidth/this.aspectRatio,s=n.maxHeight*this.aspectRatio,t=n.maxWidth/this.aspectRatio,e>n.minWidth&&(n.minWidth=e),i>n.minHeight&&(n.minHeight=i),st.width,h=this._isNumber(t.height)&&e.minHeight&&e.minHeight>t.height,a=this.originalPosition.left+this.originalSize.width,r=this.originalPosition.top+this.originalSize.height,l=/sw|nw|w/.test(i),i=/nw|ne|n/.test(i);return o&&(t.width=e.minWidth),h&&(t.height=e.minHeight),s&&(t.width=e.maxWidth),n&&(t.height=e.maxHeight),o&&l&&(t.left=a-e.minWidth),s&&l&&(t.left=a-e.maxWidth),h&&i&&(t.top=r-e.minHeight),n&&i&&(t.top=r-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_getPaddingPlusBorderDimensions:function(t){for(var e=0,i=[],s=[t.css("borderTopWidth"),t.css("borderRightWidth"),t.css("borderBottomWidth"),t.css("borderLeftWidth")],n=[t.css("paddingTop"),t.css("paddingRight"),t.css("paddingBottom"),t.css("paddingLeft")];e<4;e++)i[e]=parseFloat(s[e])||0,i[e]+=parseFloat(n[e])||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var t,e=0,i=this.helper||this.element;e").css({overflow:"hidden"}),this._addClass(this.helper,this._helper),this.helper.css({width:this.element.outerWidth(),height:this.element.outerHeight(),position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++e.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize;return{left:this.originalPosition.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize;return{top:this.originalPosition.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(t,e,i){return y.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[t,e,i]))},sw:function(t,e,i){return y.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[t,e,i]))},ne:function(t,e,i){return y.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[t,e,i]))},nw:function(t,e,i){return y.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[t,e,i]))}},_propagate:function(t,e){y.ui.plugin.call(this,t,[e,this.ui()]),"resize"!==t&&this._trigger(t,e,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),y.ui.plugin.add("resizable","animate",{stop:function(e){var i=y(this).resizable("instance"),t=i.options,s=i._proportionallyResizeElements,n=s.length&&/textarea/i.test(s[0].nodeName),o=n&&i._hasScroll(s[0],"left")?0:i.sizeDiff.height,h=n?0:i.sizeDiff.width,n={width:i.size.width-h,height:i.size.height-o},h=parseFloat(i.element.css("left"))+(i.position.left-i.originalPosition.left)||null,o=parseFloat(i.element.css("top"))+(i.position.top-i.originalPosition.top)||null;i.element.animate(y.extend(n,o&&h?{top:o,left:h}:{}),{duration:t.animateDuration,easing:t.animateEasing,step:function(){var t={width:parseFloat(i.element.css("width")),height:parseFloat(i.element.css("height")),top:parseFloat(i.element.css("top")),left:parseFloat(i.element.css("left"))};s&&s.length&&y(s[0]).css({width:t.width,height:t.height}),i._updateCache(t),i._propagate("resize",e)}})}}),y.ui.plugin.add("resizable","containment",{start:function(){var i,s,n=y(this).resizable("instance"),t=n.options,e=n.element,o=t.containment,h=o instanceof y?o.get(0):/parent/.test(o)?e.parent().get(0):o;h&&(n.containerElement=y(h),/document/.test(o)||o===document?(n.containerOffset={left:0,top:0},n.containerPosition={left:0,top:0},n.parentData={element:y(document),left:0,top:0,width:y(document).width(),height:y(document).height()||document.body.parentNode.scrollHeight}):(i=y(h),s=[],y(["Top","Right","Left","Bottom"]).each(function(t,e){s[t]=n._num(i.css("padding"+e))}),n.containerOffset=i.offset(),n.containerPosition=i.position(),n.containerSize={height:i.innerHeight()-s[3],width:i.innerWidth()-s[1]},t=n.containerOffset,e=n.containerSize.height,o=n.containerSize.width,o=n._hasScroll(h,"left")?h.scrollWidth:o,e=n._hasScroll(h)?h.scrollHeight:e,n.parentData={element:h,left:t.left,top:t.top,width:o,height:e}))},resize:function(t){var e=y(this).resizable("instance"),i=e.options,s=e.containerOffset,n=e.position,o=e._aspectRatio||t.shiftKey,h={top:0,left:0},a=e.containerElement,t=!0;a[0]!==document&&/static/.test(a.css("position"))&&(h=s),n.left<(e._helper?s.left:0)&&(e.size.width=e.size.width+(e._helper?e.position.left-s.left:e.position.left-h.left),o&&(e.size.height=e.size.width/e.aspectRatio,t=!1),e.position.left=i.helper?s.left:0),n.top<(e._helper?s.top:0)&&(e.size.height=e.size.height+(e._helper?e.position.top-s.top:e.position.top),o&&(e.size.width=e.size.height*e.aspectRatio,t=!1),e.position.top=e._helper?s.top:0),i=e.containerElement.get(0)===e.element.parent().get(0),n=/relative|absolute/.test(e.containerElement.css("position")),i&&n?(e.offset.left=e.parentData.left+e.position.left,e.offset.top=e.parentData.top+e.position.top):(e.offset.left=e.element.offset().left,e.offset.top=e.element.offset().top),n=Math.abs(e.sizeDiff.width+(e._helper?e.offset.left-h.left:e.offset.left-s.left)),s=Math.abs(e.sizeDiff.height+(e._helper?e.offset.top-h.top:e.offset.top-s.top)),n+e.size.width>=e.parentData.width&&(e.size.width=e.parentData.width-n,o&&(e.size.height=e.size.width/e.aspectRatio,t=!1)),s+e.size.height>=e.parentData.height&&(e.size.height=e.parentData.height-s,o&&(e.size.width=e.size.height*e.aspectRatio,t=!1)),t||(e.position.left=e.prevPosition.left,e.position.top=e.prevPosition.top,e.size.width=e.prevSize.width,e.size.height=e.prevSize.height)},stop:function(){var t=y(this).resizable("instance"),e=t.options,i=t.containerOffset,s=t.containerPosition,n=t.containerElement,o=y(t.helper),h=o.offset(),a=o.outerWidth()-t.sizeDiff.width,o=o.outerHeight()-t.sizeDiff.height;t._helper&&!e.animate&&/relative/.test(n.css("position"))&&y(this).css({left:h.left-s.left-i.left,width:a,height:o}),t._helper&&!e.animate&&/static/.test(n.css("position"))&&y(this).css({left:h.left-s.left-i.left,width:a,height:o})}}),y.ui.plugin.add("resizable","alsoResize",{start:function(){var t=y(this).resizable("instance").options;y(t.alsoResize).each(function(){var t=y(this);t.data("ui-resizable-alsoresize",{width:parseFloat(t.width()),height:parseFloat(t.height()),left:parseFloat(t.css("left")),top:parseFloat(t.css("top"))})})},resize:function(t,i){var e=y(this).resizable("instance"),s=e.options,n=e.originalSize,o=e.originalPosition,h={height:e.size.height-n.height||0,width:e.size.width-n.width||0,top:e.position.top-o.top||0,left:e.position.left-o.left||0};y(s.alsoResize).each(function(){var t=y(this),s=y(this).data("ui-resizable-alsoresize"),n={},e=t.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];y.each(e,function(t,e){var i=(s[e]||0)+(h[e]||0);i&&0<=i&&(n[e]=i||null)}),t.css(n)})},stop:function(){y(this).removeData("ui-resizable-alsoresize")}}),y.ui.plugin.add("resizable","ghost",{start:function(){var t=y(this).resizable("instance"),e=t.size;t.ghost=t.originalElement.clone(),t.ghost.css({opacity:.25,display:"block",position:"relative",height:e.height,width:e.width,margin:0,left:0,top:0}),t._addClass(t.ghost,"ui-resizable-ghost"),!1!==y.uiBackCompat&&"string"==typeof t.options.ghost&&t.ghost.addClass(this.options.ghost),t.ghost.appendTo(t.helper)},resize:function(){var t=y(this).resizable("instance");t.ghost&&t.ghost.css({position:"relative",height:t.size.height,width:t.size.width})},stop:function(){var t=y(this).resizable("instance");t.ghost&&t.helper&&t.helper.get(0).removeChild(t.ghost.get(0))}}),y.ui.plugin.add("resizable","grid",{resize:function(){var t,e=y(this).resizable("instance"),i=e.options,s=e.size,n=e.originalSize,o=e.originalPosition,h=e.axis,a="number"==typeof i.grid?[i.grid,i.grid]:i.grid,r=a[0]||1,l=a[1]||1,u=Math.round((s.width-n.width)/r)*r,p=Math.round((s.height-n.height)/l)*l,d=n.width+u,c=n.height+p,f=i.maxWidth&&i.maxWidthd,s=i.minHeight&&i.minHeight>c;i.grid=a,m&&(d+=r),s&&(c+=l),f&&(d-=r),g&&(c-=l),/^(se|s|e)$/.test(h)?(e.size.width=d,e.size.height=c):/^(ne)$/.test(h)?(e.size.width=d,e.size.height=c,e.position.top=o.top-p):/^(sw)$/.test(h)?(e.size.width=d,e.size.height=c,e.position.left=o.left-u):((c-l<=0||d-r<=0)&&(t=e._getPaddingPlusBorderDimensions(this)),0=f[g]?0:Math.min(f[g],n));!a&&1-1){targetElements.on(evt+EVENT_NAMESPACE,function elementToggle(event){$.powerTip.toggle(this,event)})}else{targetElements.on(evt+EVENT_NAMESPACE,function elementOpen(event){$.powerTip.show(this,event)})}});$.each(options.closeEvents,function(idx,evt){if($.inArray(evt,options.openEvents)<0){targetElements.on(evt+EVENT_NAMESPACE,function elementClose(event){$.powerTip.hide(this,!isMouseEvent(event))})}});targetElements.on("keydown"+EVENT_NAMESPACE,function elementKeyDown(event){if(event.keyCode===27){$.powerTip.hide(this,true)}})}return targetElements};$.fn.powerTip.defaults={fadeInTime:200,fadeOutTime:100,followMouse:false,popupId:"powerTip",popupClass:null,intentSensitivity:7,intentPollInterval:100,closeDelay:100,placement:"n",smartPlacement:false,offset:10,mouseOnToPopup:false,manual:false,openEvents:["mouseenter","focus"],closeEvents:["mouseleave","blur"]};$.fn.powerTip.smartPlacementLists={n:["n","ne","nw","s"],e:["e","ne","se","w","nw","sw","n","s","e"],s:["s","se","sw","n"],w:["w","nw","sw","e","ne","se","n","s","w"],nw:["nw","w","sw","n","s","se","nw"],ne:["ne","e","se","n","s","sw","ne"],sw:["sw","w","nw","s","n","ne","sw"],se:["se","e","ne","s","n","nw","se"],"nw-alt":["nw-alt","n","ne-alt","sw-alt","s","se-alt","w","e"],"ne-alt":["ne-alt","n","nw-alt","se-alt","s","sw-alt","e","w"],"sw-alt":["sw-alt","s","se-alt","nw-alt","n","ne-alt","w","e"],"se-alt":["se-alt","s","sw-alt","ne-alt","n","nw-alt","e","w"]};$.powerTip={show:function apiShowTip(element,event){if(isMouseEvent(event)){trackMouse(event);session.previousX=event.pageX;session.previousY=event.pageY;$(element).data(DATA_DISPLAYCONTROLLER).show()}else{$(element).first().data(DATA_DISPLAYCONTROLLER).show(true,true)}return element},reposition:function apiResetPosition(element){$(element).first().data(DATA_DISPLAYCONTROLLER).resetPosition();return element},hide:function apiCloseTip(element,immediate){var displayController;immediate=element?immediate:true;if(element){displayController=$(element).first().data(DATA_DISPLAYCONTROLLER)}else if(session.activeHover){displayController=session.activeHover.data(DATA_DISPLAYCONTROLLER)}if(displayController){displayController.hide(immediate)}return element},toggle:function apiToggle(element,event){if(session.activeHover&&session.activeHover.is(element)){$.powerTip.hide(element,!isMouseEvent(event))}else{$.powerTip.show(element,event)}return element}};$.powerTip.showTip=$.powerTip.show;$.powerTip.closeTip=$.powerTip.hide;function CSSCoordinates(){var me=this;me.top="auto";me.left="auto";me.right="auto";me.bottom="auto";me.set=function(property,value){if($.isNumeric(value)){me[property]=Math.round(value)}}}function DisplayController(element,options,tipController){var hoverTimer=null,myCloseDelay=null;function openTooltip(immediate,forceOpen){cancelTimer();if(!element.data(DATA_HASACTIVEHOVER)){if(!immediate){session.tipOpenImminent=true;hoverTimer=setTimeout(function intentDelay(){hoverTimer=null;checkForIntent()},options.intentPollInterval)}else{if(forceOpen){element.data(DATA_FORCEDOPEN,true)}closeAnyDelayed();tipController.showTip(element)}}else{cancelClose()}}function closeTooltip(disableDelay){if(myCloseDelay){myCloseDelay=session.closeDelayTimeout=clearTimeout(myCloseDelay);session.delayInProgress=false}cancelTimer();session.tipOpenImminent=false;if(element.data(DATA_HASACTIVEHOVER)){element.data(DATA_FORCEDOPEN,false);if(!disableDelay){session.delayInProgress=true;session.closeDelayTimeout=setTimeout(function closeDelay(){session.closeDelayTimeout=null;tipController.hideTip(element);session.delayInProgress=false;myCloseDelay=null},options.closeDelay);myCloseDelay=session.closeDelayTimeout}else{tipController.hideTip(element)}}}function checkForIntent(){var xDifference=Math.abs(session.previousX-session.currentX),yDifference=Math.abs(session.previousY-session.currentY),totalDifference=xDifference+yDifference;if(totalDifference",{id:options.popupId});if($body.length===0){$body=$("body")}$body.append(tipElement);session.tooltips=session.tooltips?session.tooltips.add(tipElement):tipElement}if(options.followMouse){if(!tipElement.data(DATA_HASMOUSEMOVE)){$document.on("mousemove"+EVENT_NAMESPACE,positionTipOnCursor);$window.on("scroll"+EVENT_NAMESPACE,positionTipOnCursor);tipElement.data(DATA_HASMOUSEMOVE,true)}}function beginShowTip(element){element.data(DATA_HASACTIVEHOVER,true);tipElement.queue(function queueTipInit(next){showTip(element);next()})}function showTip(element){var tipContent;if(!element.data(DATA_HASACTIVEHOVER)){return}if(session.isTipOpen){if(!session.isClosing){hideTip(session.activeHover)}tipElement.delay(100).queue(function queueTipAgain(next){showTip(element);next()});return}element.trigger("powerTipPreRender");tipContent=getTooltipContent(element);if(tipContent){tipElement.empty().append(tipContent)}else{return}element.trigger("powerTipRender");session.activeHover=element;session.isTipOpen=true;tipElement.data(DATA_MOUSEONTOTIP,options.mouseOnToPopup);tipElement.addClass(options.popupClass);if(!options.followMouse||element.data(DATA_FORCEDOPEN)){positionTipOnElement(element);session.isFixedTipOpen=true}else{positionTipOnCursor()}if(!element.data(DATA_FORCEDOPEN)&&!options.followMouse){$document.on("click"+EVENT_NAMESPACE,function documentClick(event){var target=event.target;if(target!==element[0]){if(options.mouseOnToPopup){if(target!==tipElement[0]&&!$.contains(tipElement[0],target)){$.powerTip.hide()}}else{$.powerTip.hide()}}})}if(options.mouseOnToPopup&&!options.manual){tipElement.on("mouseenter"+EVENT_NAMESPACE,function tipMouseEnter(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).cancel()}});tipElement.on("mouseleave"+EVENT_NAMESPACE,function tipMouseLeave(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).hide()}})}tipElement.fadeIn(options.fadeInTime,function fadeInCallback(){if(!session.desyncTimeout){session.desyncTimeout=setInterval(closeDesyncedTip,500)}element.trigger("powerTipOpen")})}function hideTip(element){session.isClosing=true;session.isTipOpen=false;session.desyncTimeout=clearInterval(session.desyncTimeout);element.data(DATA_HASACTIVEHOVER,false);element.data(DATA_FORCEDOPEN,false);$document.off("click"+EVENT_NAMESPACE);tipElement.off(EVENT_NAMESPACE);tipElement.fadeOut(options.fadeOutTime,function fadeOutCallback(){var coords=new CSSCoordinates;session.activeHover=null;session.isClosing=false;session.isFixedTipOpen=false;tipElement.removeClass();coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset);tipElement.css(coords);element.trigger("powerTipClose")})}function positionTipOnCursor(){var tipWidth,tipHeight,coords,collisions,collisionCount;if(!session.isFixedTipOpen&&(session.isTipOpen||session.tipOpenImminent&&tipElement.data(DATA_HASMOUSEMOVE))){tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=new CSSCoordinates;coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset);collisions=getViewportCollisions(coords,tipWidth,tipHeight);if(collisions!==Collision.none){collisionCount=countFlags(collisions);if(collisionCount===1){if(collisions===Collision.right){coords.set("left",session.scrollLeft+session.windowWidth-tipWidth)}else if(collisions===Collision.bottom){coords.set("top",session.scrollTop+session.windowHeight-tipHeight)}}else{coords.set("left",session.currentX-tipWidth-options.offset);coords.set("top",session.currentY-tipHeight-options.offset)}}tipElement.css(coords)}}function positionTipOnElement(element){var priorityList,finalPlacement;if(options.smartPlacement||options.followMouse&&element.data(DATA_FORCEDOPEN)){priorityList=$.fn.powerTip.smartPlacementLists[options.placement];$.each(priorityList,function(idx,pos){var collisions=getViewportCollisions(placeTooltip(element,pos),tipElement.outerWidth(),tipElement.outerHeight());finalPlacement=pos;return collisions!==Collision.none})}else{placeTooltip(element,options.placement);finalPlacement=options.placement}tipElement.removeClass("w nw sw e ne se n s w se-alt sw-alt ne-alt nw-alt");tipElement.addClass(finalPlacement)}function placeTooltip(element,placement){var iterationCount=0,tipWidth,tipHeight,coords=new CSSCoordinates;coords.set("top",0);coords.set("left",0);tipElement.css(coords);do{tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=placementCalculator.compute(element,placement,tipWidth,tipHeight,options.offset);tipElement.css(coords)}while(++iterationCount<=5&&(tipWidth!==tipElement.outerWidth()||tipHeight!==tipElement.outerHeight()));return coords}function closeDesyncedTip(){var isDesynced=false,hasDesyncableCloseEvent=$.grep(["mouseleave","mouseout","blur","focusout"],function(eventType){return $.inArray(eventType,options.closeEvents)!==-1}).length>0;if(session.isTipOpen&&!session.isClosing&&!session.delayInProgress&&hasDesyncableCloseEvent){if(session.activeHover.data(DATA_HASACTIVEHOVER)===false||session.activeHover.is(":disabled")){isDesynced=true}else if(!isMouseOver(session.activeHover)&&!session.activeHover.is(":focus")&&!session.activeHover.data(DATA_FORCEDOPEN)){if(tipElement.data(DATA_MOUSEONTOTIP)){if(!isMouseOver(tipElement)){isDesynced=true}}else{isDesynced=true}}if(isDesynced){hideTip(session.activeHover)}}}this.showTip=beginShowTip;this.hideTip=hideTip;this.resetPosition=positionTipOnElement}function isSvgElement(element){return Boolean(window.SVGElement&&element[0]instanceof SVGElement)}function isMouseEvent(event){return Boolean(event&&$.inArray(event.type,MOUSE_EVENTS)>-1&&typeof event.pageX==="number")}function initTracking(){if(!session.mouseTrackingActive){session.mouseTrackingActive=true;getViewportDimensions();$(getViewportDimensions);$document.on("mousemove"+EVENT_NAMESPACE,trackMouse);$window.on("resize"+EVENT_NAMESPACE,trackResize);$window.on("scroll"+EVENT_NAMESPACE,trackScroll)}}function getViewportDimensions(){session.scrollLeft=$window.scrollLeft();session.scrollTop=$window.scrollTop();session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackResize(){session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackScroll(){var x=$window.scrollLeft(),y=$window.scrollTop();if(x!==session.scrollLeft){session.currentX+=x-session.scrollLeft;session.scrollLeft=x}if(y!==session.scrollTop){session.currentY+=y-session.scrollTop;session.scrollTop=y}}function trackMouse(event){session.currentX=event.pageX;session.currentY=event.pageY}function isMouseOver(element){var elementPosition=element.offset(),elementBox=element[0].getBoundingClientRect(),elementWidth=elementBox.right-elementBox.left,elementHeight=elementBox.bottom-elementBox.top;return session.currentX>=elementPosition.left&&session.currentX<=elementPosition.left+elementWidth&&session.currentY>=elementPosition.top&&session.currentY<=elementPosition.top+elementHeight}function getTooltipContent(element){var tipText=element.data(DATA_POWERTIP),tipObject=element.data(DATA_POWERTIPJQ),tipTarget=element.data(DATA_POWERTIPTARGET),targetElement,content;if(tipText){if($.isFunction(tipText)){tipText=tipText.call(element[0])}content=tipText}else if(tipObject){if($.isFunction(tipObject)){tipObject=tipObject.call(element[0])}if(tipObject.length>0){content=tipObject.clone(true,true)}}else if(tipTarget){targetElement=$("#"+tipTarget);if(targetElement.length>0){content=targetElement.html()}}return content}function getViewportCollisions(coords,elementWidth,elementHeight){var viewportTop=session.scrollTop,viewportLeft=session.scrollLeft,viewportBottom=viewportTop+session.windowHeight,viewportRight=viewportLeft+session.windowWidth,collisions=Collision.none;if(coords.topviewportBottom||Math.abs(coords.bottom-session.windowHeight)>viewportBottom){collisions|=Collision.bottom}if(coords.leftviewportRight){collisions|=Collision.left}if(coords.left+elementWidth>viewportRight||coords.right1)){a.preventDefault();var c=a.originalEvent.changedTouches[0],d=document.createEvent("MouseEvents");d.initMouseEvent(b,!0,!0,window,1,c.screenX,c.screenY,c.clientX,c.clientY,!1,!1,!1,!1,0,null),a.target.dispatchEvent(d)}}if(a.support.touch="ontouchend"in document,a.support.touch){var e,b=a.ui.mouse.prototype,c=b._mouseInit,d=b._mouseDestroy;b._touchStart=function(a){var b=this;!e&&b._mouseCapture(a.originalEvent.changedTouches[0])&&(e=!0,b._touchMoved=!1,f(a,"mouseover"),f(a,"mousemove"),f(a,"mousedown"))},b._touchMove=function(a){e&&(this._touchMoved=!0,f(a,"mousemove"))},b._touchEnd=function(a){e&&(f(a,"mouseup"),f(a,"mouseout"),this._touchMoved||f(a,"click"),e=!1)},b._mouseInit=function(){var b=this;b.element.bind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),c.call(b)},b._mouseDestroy=function(){var b=this;b.element.unbind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),d.call(b)}}}(jQuery);/*! SmartMenus jQuery Plugin - v1.1.0 - September 17, 2017 + * http://www.smartmenus.org/ + * Copyright Vasil Dinkov, Vadikom Web Ltd. http://vadikom.com; Licensed MIT */(function(t){"function"==typeof define&&define.amd?define(["jquery"],t):"object"==typeof module&&"object"==typeof module.exports?module.exports=t(require("jquery")):t(jQuery)})(function($){function initMouseDetection(t){var e=".smartmenus_mouse";if(mouseDetectionEnabled||t)mouseDetectionEnabled&&t&&($(document).off(e),mouseDetectionEnabled=!1);else{var i=!0,s=null,o={mousemove:function(t){var e={x:t.pageX,y:t.pageY,timeStamp:(new Date).getTime()};if(s){var o=Math.abs(s.x-e.x),a=Math.abs(s.y-e.y);if((o>0||a>0)&&2>=o&&2>=a&&300>=e.timeStamp-s.timeStamp&&(mouse=!0,i)){var n=$(t.target).closest("a");n.is("a")&&$.each(menuTrees,function(){return $.contains(this.$root[0],n[0])?(this.itemEnter({currentTarget:n[0]}),!1):void 0}),i=!1}}s=e}};o[touchEvents?"touchstart":"pointerover pointermove pointerout MSPointerOver MSPointerMove MSPointerOut"]=function(t){isTouchEvent(t.originalEvent)&&(mouse=!1)},$(document).on(getEventsNS(o,e)),mouseDetectionEnabled=!0}}function isTouchEvent(t){return!/^(4|mouse)$/.test(t.pointerType)}function getEventsNS(t,e){e||(e="");var i={};for(var s in t)i[s.split(" ").join(e+" ")+e]=t[s];return i}var menuTrees=[],mouse=!1,touchEvents="ontouchstart"in window,mouseDetectionEnabled=!1,requestAnimationFrame=window.requestAnimationFrame||function(t){return setTimeout(t,1e3/60)},cancelAnimationFrame=window.cancelAnimationFrame||function(t){clearTimeout(t)},canAnimate=!!$.fn.animate;return $.SmartMenus=function(t,e){this.$root=$(t),this.opts=e,this.rootId="",this.accessIdPrefix="",this.$subArrow=null,this.activatedItems=[],this.visibleSubMenus=[],this.showTimeout=0,this.hideTimeout=0,this.scrollTimeout=0,this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.idInc=0,this.$firstLink=null,this.$firstSub=null,this.disabled=!1,this.$disableOverlay=null,this.$touchScrollingSub=null,this.cssTransforms3d="perspective"in t.style||"webkitPerspective"in t.style,this.wasCollapsible=!1,this.init()},$.extend($.SmartMenus,{hideAll:function(){$.each(menuTrees,function(){this.menuHideAll()})},destroy:function(){for(;menuTrees.length;)menuTrees[0].destroy();initMouseDetection(!0)},prototype:{init:function(t){var e=this;if(!t){menuTrees.push(this),this.rootId=((new Date).getTime()+Math.random()+"").replace(/\D/g,""),this.accessIdPrefix="sm-"+this.rootId+"-",this.$root.hasClass("sm-rtl")&&(this.opts.rightToLeftSubMenus=!0);var i=".smartmenus";this.$root.data("smartmenus",this).attr("data-smartmenus-id",this.rootId).dataSM("level",1).on(getEventsNS({"mouseover focusin":$.proxy(this.rootOver,this),"mouseout focusout":$.proxy(this.rootOut,this),keydown:$.proxy(this.rootKeyDown,this)},i)).on(getEventsNS({mouseenter:$.proxy(this.itemEnter,this),mouseleave:$.proxy(this.itemLeave,this),mousedown:$.proxy(this.itemDown,this),focus:$.proxy(this.itemFocus,this),blur:$.proxy(this.itemBlur,this),click:$.proxy(this.itemClick,this)},i),"a"),i+=this.rootId,this.opts.hideOnClick&&$(document).on(getEventsNS({touchstart:$.proxy(this.docTouchStart,this),touchmove:$.proxy(this.docTouchMove,this),touchend:$.proxy(this.docTouchEnd,this),click:$.proxy(this.docClick,this)},i)),$(window).on(getEventsNS({"resize orientationchange":$.proxy(this.winResize,this)},i)),this.opts.subIndicators&&(this.$subArrow=$("").addClass("sub-arrow"),this.opts.subIndicatorsText&&this.$subArrow.html(this.opts.subIndicatorsText)),initMouseDetection()}if(this.$firstSub=this.$root.find("ul").each(function(){e.menuInit($(this))}).eq(0),this.$firstLink=this.$root.find("a").eq(0),this.opts.markCurrentItem){var s=/(index|default)\.[^#\?\/]*/i,o=/#.*/,a=window.location.href.replace(s,""),n=a.replace(o,"");this.$root.find("a").each(function(){var t=this.href.replace(s,""),i=$(this);(t==a||t==n)&&(i.addClass("current"),e.opts.markCurrentTree&&i.parentsUntil("[data-smartmenus-id]","ul").each(function(){$(this).dataSM("parent-a").addClass("current")}))})}this.wasCollapsible=this.isCollapsible()},destroy:function(t){if(!t){var e=".smartmenus";this.$root.removeData("smartmenus").removeAttr("data-smartmenus-id").removeDataSM("level").off(e),e+=this.rootId,$(document).off(e),$(window).off(e),this.opts.subIndicators&&(this.$subArrow=null)}this.menuHideAll();var i=this;this.$root.find("ul").each(function(){var t=$(this);t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.dataSM("shown-before")&&((i.opts.subMenusMinWidth||i.opts.subMenusMaxWidth)&&t.css({width:"",minWidth:"",maxWidth:""}).removeClass("sm-nowrap"),t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.css({zIndex:"",top:"",left:"",marginLeft:"",marginTop:"",display:""})),0==(t.attr("id")||"").indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeDataSM("in-mega").removeDataSM("shown-before").removeDataSM("scroll-arrows").removeDataSM("parent-a").removeDataSM("level").removeDataSM("beforefirstshowfired").removeAttr("role").removeAttr("aria-hidden").removeAttr("aria-labelledby").removeAttr("aria-expanded"),this.$root.find("a.has-submenu").each(function(){var t=$(this);0==t.attr("id").indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeClass("has-submenu").removeDataSM("sub").removeAttr("aria-haspopup").removeAttr("aria-controls").removeAttr("aria-expanded").closest("li").removeDataSM("sub"),this.opts.subIndicators&&this.$root.find("span.sub-arrow").remove(),this.opts.markCurrentItem&&this.$root.find("a.current").removeClass("current"),t||(this.$root=null,this.$firstLink=null,this.$firstSub=null,this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),menuTrees.splice($.inArray(this,menuTrees),1))},disable:function(t){if(!this.disabled){if(this.menuHideAll(),!t&&!this.opts.isPopup&&this.$root.is(":visible")){var e=this.$root.offset();this.$disableOverlay=$('
').css({position:"absolute",top:e.top,left:e.left,width:this.$root.outerWidth(),height:this.$root.outerHeight(),zIndex:this.getStartZIndex(!0),opacity:0}).appendTo(document.body)}this.disabled=!0}},docClick:function(t){return this.$touchScrollingSub?(this.$touchScrollingSub=null,void 0):((this.visibleSubMenus.length&&!$.contains(this.$root[0],t.target)||$(t.target).closest("a").length)&&this.menuHideAll(),void 0)},docTouchEnd:function(){if(this.lastTouch){if(!(!this.visibleSubMenus.length||void 0!==this.lastTouch.x2&&this.lastTouch.x1!=this.lastTouch.x2||void 0!==this.lastTouch.y2&&this.lastTouch.y1!=this.lastTouch.y2||this.lastTouch.target&&$.contains(this.$root[0],this.lastTouch.target))){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var t=this;this.hideTimeout=setTimeout(function(){t.menuHideAll()},350)}this.lastTouch=null}},docTouchMove:function(t){if(this.lastTouch){var e=t.originalEvent.touches[0];this.lastTouch.x2=e.pageX,this.lastTouch.y2=e.pageY}},docTouchStart:function(t){var e=t.originalEvent.touches[0];this.lastTouch={x1:e.pageX,y1:e.pageY,target:e.target}},enable:function(){this.disabled&&(this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),this.disabled=!1)},getClosestMenu:function(t){for(var e=$(t).closest("ul");e.dataSM("in-mega");)e=e.parent().closest("ul");return e[0]||null},getHeight:function(t){return this.getOffset(t,!0)},getOffset:function(t,e){var i;"none"==t.css("display")&&(i={position:t[0].style.position,visibility:t[0].style.visibility},t.css({position:"absolute",visibility:"hidden"}).show());var s=t[0].getBoundingClientRect&&t[0].getBoundingClientRect(),o=s&&(e?s.height||s.bottom-s.top:s.width||s.right-s.left);return o||0===o||(o=e?t[0].offsetHeight:t[0].offsetWidth),i&&t.hide().css(i),o},getStartZIndex:function(t){var e=parseInt(this[t?"$root":"$firstSub"].css("z-index"));return!t&&isNaN(e)&&(e=parseInt(this.$root.css("z-index"))),isNaN(e)?1:e},getTouchPoint:function(t){return t.touches&&t.touches[0]||t.changedTouches&&t.changedTouches[0]||t},getViewport:function(t){var e=t?"Height":"Width",i=document.documentElement["client"+e],s=window["inner"+e];return s&&(i=Math.min(i,s)),i},getViewportHeight:function(){return this.getViewport(!0)},getViewportWidth:function(){return this.getViewport()},getWidth:function(t){return this.getOffset(t)},handleEvents:function(){return!this.disabled&&this.isCSSOn()},handleItemEvents:function(t){return this.handleEvents()&&!this.isLinkInMegaMenu(t)},isCollapsible:function(){return"static"==this.$firstSub.css("position")},isCSSOn:function(){return"inline"!=this.$firstLink.css("display")},isFixed:function(){var t="fixed"==this.$root.css("position");return t||this.$root.parentsUntil("body").each(function(){return"fixed"==$(this).css("position")?(t=!0,!1):void 0}),t},isLinkInMegaMenu:function(t){return $(this.getClosestMenu(t[0])).hasClass("mega-menu")},isTouchMode:function(){return!mouse||this.opts.noMouseOver||this.isCollapsible()},itemActivate:function(t,e){var i=t.closest("ul"),s=i.dataSM("level");if(s>1&&(!this.activatedItems[s-2]||this.activatedItems[s-2][0]!=i.dataSM("parent-a")[0])){var o=this;$(i.parentsUntil("[data-smartmenus-id]","ul").get().reverse()).add(i).each(function(){o.itemActivate($(this).dataSM("parent-a"))})}if((!this.isCollapsible()||e)&&this.menuHideSubMenus(this.activatedItems[s-1]&&this.activatedItems[s-1][0]==t[0]?s:s-1),this.activatedItems[s-1]=t,this.$root.triggerHandler("activate.smapi",t[0])!==!1){var a=t.dataSM("sub");a&&(this.isTouchMode()||!this.opts.showOnClick||this.clickActivated)&&this.menuShow(a)}},itemBlur:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&this.$root.triggerHandler("blur.smapi",e[0])},itemClick:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(this.$touchScrollingSub&&this.$touchScrollingSub[0]==e.closest("ul")[0])return this.$touchScrollingSub=null,t.stopPropagation(),!1;if(this.$root.triggerHandler("click.smapi",e[0])===!1)return!1;var i=$(t.target).is(".sub-arrow"),s=e.dataSM("sub"),o=s?2==s.dataSM("level"):!1,a=this.isCollapsible(),n=/toggle$/.test(this.opts.collapsibleBehavior),r=/link$/.test(this.opts.collapsibleBehavior),h=/^accordion/.test(this.opts.collapsibleBehavior);if(s&&!s.is(":visible")){if((!r||!a||i)&&(this.opts.showOnClick&&o&&(this.clickActivated=!0),this.itemActivate(e,h),s.is(":visible")))return this.focusActivated=!0,!1}else if(a&&(n||i))return this.itemActivate(e,h),this.menuHide(s),n&&(this.focusActivated=!1),!1;return this.opts.showOnClick&&o||e.hasClass("disabled")||this.$root.triggerHandler("select.smapi",e[0])===!1?!1:void 0}},itemDown:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&e.dataSM("mousedown",!0)},itemEnter:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(!this.isTouchMode()){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);var i=this;this.showTimeout=setTimeout(function(){i.itemActivate(e)},this.opts.showOnClick&&1==e.closest("ul").dataSM("level")?1:this.opts.showTimeout)}this.$root.triggerHandler("mouseenter.smapi",e[0])}},itemFocus:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(!this.focusActivated||this.isTouchMode()&&e.dataSM("mousedown")||this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0]==e[0]||this.itemActivate(e,!0),this.$root.triggerHandler("focus.smapi",e[0]))},itemLeave:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(this.isTouchMode()||(e[0].blur(),this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0)),e.removeDataSM("mousedown"),this.$root.triggerHandler("mouseleave.smapi",e[0]))},menuHide:function(t){if(this.$root.triggerHandler("beforehide.smapi",t[0])!==!1&&(canAnimate&&t.stop(!0,!0),"none"!=t.css("display"))){var e=function(){t.css("z-index","")};this.isCollapsible()?canAnimate&&this.opts.collapsibleHideFunction?this.opts.collapsibleHideFunction.call(this,t,e):t.hide(this.opts.collapsibleHideDuration,e):canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,t,e):t.hide(this.opts.hideDuration,e),t.dataSM("scroll")&&(this.menuScrollStop(t),t.css({"touch-action":"","-ms-touch-action":"","-webkit-transform":"",transform:""}).off(".smartmenus_scroll").removeDataSM("scroll").dataSM("scroll-arrows").hide()),t.dataSM("parent-a").removeClass("highlighted").attr("aria-expanded","false"),t.attr({"aria-expanded":"false","aria-hidden":"true"});var i=t.dataSM("level");this.activatedItems.splice(i-1,1),this.visibleSubMenus.splice($.inArray(t,this.visibleSubMenus),1),this.$root.triggerHandler("hide.smapi",t[0])}},menuHideAll:function(){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);for(var t=this.opts.isPopup?1:0,e=this.visibleSubMenus.length-1;e>=t;e--)this.menuHide(this.visibleSubMenus[e]);this.opts.isPopup&&(canAnimate&&this.$root.stop(!0,!0),this.$root.is(":visible")&&(canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,this.$root):this.$root.hide(this.opts.hideDuration))),this.activatedItems=[],this.visibleSubMenus=[],this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.$root.triggerHandler("hideAll.smapi")},menuHideSubMenus:function(t){for(var e=this.activatedItems.length-1;e>=t;e--){var i=this.activatedItems[e].dataSM("sub");i&&this.menuHide(i)}},menuInit:function(t){if(!t.dataSM("in-mega")){t.hasClass("mega-menu")&&t.find("ul").dataSM("in-mega",!0);for(var e=2,i=t[0];(i=i.parentNode.parentNode)!=this.$root[0];)e++;var s=t.prevAll("a").eq(-1);s.length||(s=t.prevAll().find("a").eq(-1)),s.addClass("has-submenu").dataSM("sub",t),t.dataSM("parent-a",s).dataSM("level",e).parent().dataSM("sub",t);var o=s.attr("id")||this.accessIdPrefix+ ++this.idInc,a=t.attr("id")||this.accessIdPrefix+ ++this.idInc;s.attr({id:o,"aria-haspopup":"true","aria-controls":a,"aria-expanded":"false"}),t.attr({id:a,role:"group","aria-hidden":"true","aria-labelledby":o,"aria-expanded":"false"}),this.opts.subIndicators&&s[this.opts.subIndicatorsPos](this.$subArrow.clone())}},menuPosition:function(t){var e,i,s=t.dataSM("parent-a"),o=s.closest("li"),a=o.parent(),n=t.dataSM("level"),r=this.getWidth(t),h=this.getHeight(t),u=s.offset(),l=u.left,c=u.top,d=this.getWidth(s),m=this.getHeight(s),p=$(window),f=p.scrollLeft(),v=p.scrollTop(),b=this.getViewportWidth(),S=this.getViewportHeight(),g=a.parent().is("[data-sm-horizontal-sub]")||2==n&&!a.hasClass("sm-vertical"),M=this.opts.rightToLeftSubMenus&&!o.is("[data-sm-reverse]")||!this.opts.rightToLeftSubMenus&&o.is("[data-sm-reverse]"),w=2==n?this.opts.mainMenuSubOffsetX:this.opts.subMenusSubOffsetX,T=2==n?this.opts.mainMenuSubOffsetY:this.opts.subMenusSubOffsetY;if(g?(e=M?d-r-w:w,i=this.opts.bottomToTopSubMenus?-h-T:m+T):(e=M?w-r:d-w,i=this.opts.bottomToTopSubMenus?m-T-h:T),this.opts.keepInViewport){var y=l+e,I=c+i;if(M&&f>y?e=g?f-y+e:d-w:!M&&y+r>f+b&&(e=g?f+b-r-y+e:w-r),g||(S>h&&I+h>v+S?i+=v+S-h-I:(h>=S||v>I)&&(i+=v-I)),g&&(I+h>v+S+.49||v>I)||!g&&h>S+.49){var x=this;t.dataSM("scroll-arrows")||t.dataSM("scroll-arrows",$([$('')[0],$('')[0]]).on({mouseenter:function(){t.dataSM("scroll").up=$(this).hasClass("scroll-up"),x.menuScroll(t)},mouseleave:function(e){x.menuScrollStop(t),x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(t){t.preventDefault()}}).insertAfter(t));var A=".smartmenus_scroll";if(t.dataSM("scroll",{y:this.cssTransforms3d?0:i-m,step:1,itemH:m,subH:h,arrowDownH:this.getHeight(t.dataSM("scroll-arrows").eq(1))}).on(getEventsNS({mouseover:function(e){x.menuScrollOver(t,e)},mouseout:function(e){x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(e){x.menuScrollMousewheel(t,e)}},A)).dataSM("scroll-arrows").css({top:"auto",left:"0",marginLeft:e+(parseInt(t.css("border-left-width"))||0),width:r-(parseInt(t.css("border-left-width"))||0)-(parseInt(t.css("border-right-width"))||0),zIndex:t.css("z-index")}).eq(g&&this.opts.bottomToTopSubMenus?0:1).show(),this.isFixed()){var C={};C[touchEvents?"touchstart touchmove touchend":"pointerdown pointermove pointerup MSPointerDown MSPointerMove MSPointerUp"]=function(e){x.menuScrollTouch(t,e)},t.css({"touch-action":"none","-ms-touch-action":"none"}).on(getEventsNS(C,A))}}}t.css({top:"auto",left:"0",marginLeft:e,marginTop:i-m})},menuScroll:function(t,e,i){var s,o=t.dataSM("scroll"),a=t.dataSM("scroll-arrows"),n=o.up?o.upEnd:o.downEnd;if(!e&&o.momentum){if(o.momentum*=.92,s=o.momentum,.5>s)return this.menuScrollStop(t),void 0}else s=i||(e||!this.opts.scrollAccelerate?this.opts.scrollStep:Math.floor(o.step));var r=t.dataSM("level");if(this.activatedItems[r-1]&&this.activatedItems[r-1].dataSM("sub")&&this.activatedItems[r-1].dataSM("sub").is(":visible")&&this.menuHideSubMenus(r-1),o.y=o.up&&o.y>=n||!o.up&&n>=o.y?o.y:Math.abs(n-o.y)>s?o.y+(o.up?s:-s):n,t.css(this.cssTransforms3d?{"-webkit-transform":"translate3d(0, "+o.y+"px, 0)",transform:"translate3d(0, "+o.y+"px, 0)"}:{marginTop:o.y}),mouse&&(o.up&&o.y>o.downEnd||!o.up&&o.y0;t.dataSM("scroll-arrows").eq(i?0:1).is(":visible")&&(t.dataSM("scroll").up=i,this.menuScroll(t,!0))}e.preventDefault()},menuScrollOut:function(t,e){mouse&&(/^scroll-(up|down)/.test((e.relatedTarget||"").className)||(t[0]==e.relatedTarget||$.contains(t[0],e.relatedTarget))&&this.getClosestMenu(e.relatedTarget)==t[0]||t.dataSM("scroll-arrows").css("visibility","hidden"))},menuScrollOver:function(t,e){if(mouse&&!/^scroll-(up|down)/.test(e.target.className)&&this.getClosestMenu(e.target)==t[0]){this.menuScrollRefreshData(t);var i=t.dataSM("scroll"),s=$(window).scrollTop()-t.dataSM("parent-a").offset().top-i.itemH;t.dataSM("scroll-arrows").eq(0).css("margin-top",s).end().eq(1).css("margin-top",s+this.getViewportHeight()-i.arrowDownH).end().css("visibility","visible")}},menuScrollRefreshData:function(t){var e=t.dataSM("scroll"),i=$(window).scrollTop()-t.dataSM("parent-a").offset().top-e.itemH;this.cssTransforms3d&&(i=-(parseFloat(t.css("margin-top"))-i)),$.extend(e,{upEnd:i,downEnd:i+this.getViewportHeight()-e.subH})},menuScrollStop:function(t){return this.scrollTimeout?(cancelAnimationFrame(this.scrollTimeout),this.scrollTimeout=0,t.dataSM("scroll").step=1,!0):void 0},menuScrollTouch:function(t,e){if(e=e.originalEvent,isTouchEvent(e)){var i=this.getTouchPoint(e);if(this.getClosestMenu(i.target)==t[0]){var s=t.dataSM("scroll");if(/(start|down)$/i.test(e.type))this.menuScrollStop(t)?(e.preventDefault(),this.$touchScrollingSub=t):this.$touchScrollingSub=null,this.menuScrollRefreshData(t),$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp});else if(/move$/i.test(e.type)){var o=void 0!==s.touchY?s.touchY:s.touchStartY;if(void 0!==o&&o!=i.pageY){this.$touchScrollingSub=t;var a=i.pageY>o;void 0!==s.up&&s.up!=a&&$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp}),$.extend(s,{up:a,touchY:i.pageY}),this.menuScroll(t,!0,Math.abs(i.pageY-o))}e.preventDefault()}else void 0!==s.touchY&&((s.momentum=15*Math.pow(Math.abs(i.pageY-s.touchStartY)/(e.timeStamp-s.touchStartTime),2))&&(this.menuScrollStop(t),this.menuScroll(t),e.preventDefault()),delete s.touchY)}}},menuShow:function(t){if((t.dataSM("beforefirstshowfired")||(t.dataSM("beforefirstshowfired",!0),this.$root.triggerHandler("beforefirstshow.smapi",t[0])!==!1))&&this.$root.triggerHandler("beforeshow.smapi",t[0])!==!1&&(t.dataSM("shown-before",!0),canAnimate&&t.stop(!0,!0),!t.is(":visible"))){var e=t.dataSM("parent-a"),i=this.isCollapsible();if((this.opts.keepHighlighted||i)&&e.addClass("highlighted"),i)t.removeClass("sm-nowrap").css({zIndex:"",width:"auto",minWidth:"",maxWidth:"",top:"",left:"",marginLeft:"",marginTop:""});else{if(t.css("z-index",this.zIndexInc=(this.zIndexInc||this.getStartZIndex())+1),(this.opts.subMenusMinWidth||this.opts.subMenusMaxWidth)&&(t.css({width:"auto",minWidth:"",maxWidth:""}).addClass("sm-nowrap"),this.opts.subMenusMinWidth&&t.css("min-width",this.opts.subMenusMinWidth),this.opts.subMenusMaxWidth)){var s=this.getWidth(t);t.css("max-width",this.opts.subMenusMaxWidth),s>this.getWidth(t)&&t.removeClass("sm-nowrap").css("width",this.opts.subMenusMaxWidth)}this.menuPosition(t)}var o=function(){t.css("overflow","")};i?canAnimate&&this.opts.collapsibleShowFunction?this.opts.collapsibleShowFunction.call(this,t,o):t.show(this.opts.collapsibleShowDuration,o):canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,t,o):t.show(this.opts.showDuration,o),e.attr("aria-expanded","true"),t.attr({"aria-expanded":"true","aria-hidden":"false"}),this.visibleSubMenus.push(t),this.$root.triggerHandler("show.smapi",t[0])}},popupHide:function(t){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},t?1:this.opts.hideTimeout)},popupShow:function(t,e){if(!this.opts.isPopup)return alert('SmartMenus jQuery Error:\n\nIf you want to show this menu via the "popupShow" method, set the isPopup:true option.'),void 0;if(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),this.$root.dataSM("shown-before",!0),canAnimate&&this.$root.stop(!0,!0),!this.$root.is(":visible")){this.$root.css({left:t,top:e});var i=this,s=function(){i.$root.css("overflow","")};canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,this.$root,s):this.$root.show(this.opts.showDuration,s),this.visibleSubMenus[0]=this.$root}},refresh:function(){this.destroy(!0),this.init(!0)},rootKeyDown:function(t){if(this.handleEvents())switch(t.keyCode){case 27:var e=this.activatedItems[0];if(e){this.menuHideAll(),e[0].focus();var i=e.dataSM("sub");i&&this.menuHide(i)}break;case 32:var s=$(t.target);if(s.is("a")&&this.handleItemEvents(s)){var i=s.dataSM("sub");i&&!i.is(":visible")&&(this.itemClick({currentTarget:t.target}),t.preventDefault())}}},rootOut:function(t){if(this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),!this.opts.showOnClick||!this.opts.hideOnClick)){var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},this.opts.hideTimeout)}},rootOver:function(t){this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0)},winResize:function(t){if(this.handleEvents()){if(!("onorientationchange"in window)||"orientationchange"==t.type){var e=this.isCollapsible();this.wasCollapsible&&e||(this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0].blur(),this.menuHideAll()),this.wasCollapsible=e}}else if(this.$disableOverlay){var i=this.$root.offset();this.$disableOverlay.css({top:i.top,left:i.left,width:this.$root.outerWidth(),height:this.$root.outerHeight()})}}}}),$.fn.dataSM=function(t,e){return e?this.data(t+"_smartmenus",e):this.data(t+"_smartmenus")},$.fn.removeDataSM=function(t){return this.removeData(t+"_smartmenus")},$.fn.smartmenus=function(options){if("string"==typeof options){var args=arguments,method=options;return Array.prototype.shift.call(args),this.each(function(){var t=$(this).data("smartmenus");t&&t[method]&&t[method].apply(t,args)})}return this.each(function(){var dataOpts=$(this).data("sm-options")||null;if(dataOpts)try{dataOpts=eval("("+dataOpts+")")}catch(e){dataOpts=null,alert('ERROR\n\nSmartMenus jQuery init:\nInvalid "data-sm-options" attribute value syntax.')}new $.SmartMenus(this,$.extend({},$.fn.smartmenus.defaults,options,dataOpts))})},$.fn.smartmenus.defaults={isPopup:!1,mainMenuSubOffsetX:0,mainMenuSubOffsetY:0,subMenusSubOffsetX:0,subMenusSubOffsetY:0,subMenusMinWidth:"10em",subMenusMaxWidth:"20em",subIndicators:!0,subIndicatorsPos:"append",subIndicatorsText:"",scrollStep:30,scrollAccelerate:!0,showTimeout:250,hideTimeout:500,showDuration:0,showFunction:null,hideDuration:0,hideFunction:function(t,e){t.fadeOut(200,e)},collapsibleShowDuration:0,collapsibleShowFunction:function(t,e){t.slideDown(200,e)},collapsibleHideDuration:0,collapsibleHideFunction:function(t,e){t.slideUp(200,e)},showOnClick:!1,hideOnClick:!0,noMouseOver:!1,keepInViewport:!0,keepHighlighted:!0,markCurrentItem:!1,markCurrentTree:!0,rightToLeftSubMenus:!1,bottomToTopSubMenus:!1,collapsibleBehavior:"default"},$}); \ No newline at end of file diff --git a/md__2home_2runner_2work_2_high_five_2_high_five_2_c_h_a_n_g_e_l_o_g.html b/md__2home_2runner_2work_2_high_five_2_high_five_2_c_h_a_n_g_e_l_o_g.html new file mode 100644 index 000000000..796128bdd --- /dev/null +++ b/md__2home_2runner_2work_2_high_five_2_high_five_2_c_h_a_n_g_e_l_o_g.html @@ -0,0 +1,449 @@ + + + + + + + +HighFive: Changes + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Changes
+
+
+

Version 2.9.0 - 2024-01-25

+

New Features

+
    +
  • Add named ctors for scalar and null dataspaces. (#899)
  • +
  • Named ctor for empty property lists. (#904)
  • +
+

Improvements

+
    +
  • Enable running tests in parallel. (#849)
  • +
  • Wrap all used HDF5 function calls and always check status codes. (#863)
  • +
  • Utilities for writing tests in a container independent manner. (#871)
  • +
  • Improve test rigour.
  • +
+

Bug Fix

+
    +
  • Log messages were slightly misformatted. (#854)
  • +
  • Fix bug in enforce_ascii_hack. (#856)
  • +
  • Fix create_datatype<bool>(). (#869)
  • +
  • Guard functionality introduced in 1.10.0. (#905)
  • +
  • inspector guard for empty containers. (#913)
  • +
  • Avoid non-collective behaviour. (#912)
  • +
+

Version 2.8.0 - 2023-11-02

+

Important Change

+
    +
  • Eigen::Matrix is (by default) stored with column-major index ordering. Under certain conditions Eigen::Matrix was written and read as row-major. Due to code duplication H5Easy isn't affected by this bug. Starting 2.8.0 HighFive will now throw an exception whenever prior versions would have read with incorrect assumptions about the index ordering. (#731)
  • +
+

New Features

+
    +
  • Improve reading and writing std::string as fixed and variable length HDF5 strings (#744).
  • +
  • Implement creation of hard links (#765). Thanks to @Quark-X10.
  • +
  • Get the size of file and amound of tracked unused space (#764). Thanks to @Quark-X10.
  • +
  • class DataType has a new ctor to open a commited DataType (#796). Thanks to @Quark-X10.
  • +
  • Allow user-specified mem_space for hyperslabs. (#740)
  • +
  • New properties: AttributePhaseChange. (#785)
  • +
  • New options to link against HDF5 statically (#823). Thanks @HunterBelanger.
  • +
  • Add support for std::complex<integral_type> valid with C++23 (#828). Thanks @unbtorsten.
  • +
  • Add a top-level header to include all compononents (#818).
  • +
+

Improvements

+
    +
  • Add concept checks to Property if C++20 for better errors (#811). Thanks @antonysigma.
  • +
  • Add parallel HDF5 test in CI (#760).
  • +
  • Simplify github workflow (#761).
  • +
  • Move inspectors in their own file to be able to better implements strings (#759).
  • +
+

Bug Fix

+
    +
  • Fix vector constructor ambiguity in H5DataType.hpp (#775). Thanks to @hn-sl.
  • +
  • getElementCount() fixed. (#787)
  • +
  • Remove leak when calling dtor of CompoundType. (#798)
  • +
+

Version 2.7.1 - 2023-04-04

+

Bug Fix

+
    +
  • Revert removing #include "H5FileDriver.hpp" from H5File.hpp (#711).
  • +
  • Change relative import to "../H5Utility.hpp" (#726).
  • +
  • Fix nameclash with macros on Windows (#717 #722 #723).
  • +
  • Add workaround for MSVC bug (#728).
  • +
  • Don't downgrade the requested C++ standard (#729).
  • +
+

Version 2.7.0 - 2023-03-31

+

New Features

+
    +
  • Properties can now be read (#684).
  • +
  • Adding a property for LinkCreationOrder (#683).
  • +
  • Adding a logging infrastructure (#690).
  • +
  • Support of bool in the way of h5py (#654).
  • +
  • Support std::bool in C++17 mode (#698).
  • +
+

Improvements

+
    +
  • Catch2 move to v3 (#655).
  • +
+

Bug Fix

+
    +
  • To avoid build failure in certain circumstances, user can not set Boost_NO_BOOST_CMAKE (#687).
  • +
  • Fix leak when reading variable length strings (#660).
  • +
  • Use H5free_memory instead of free in error handler (#665). Thanks to Moritz Koenemann.
  • +
  • Fix a bug with old GCC due to templated friend classes (#688).
  • +
  • Fix regression in broadcasting support (#697).
  • +
  • Fix bug related to zero-length datasets (#702).
  • +
+

Version 2.6.2 - 2022-11-10

+

Bug Fix

+
    +
  • Allow CMake to use Config mode to find HDF5.
  • +
+

Version 2.6.1 - 2022-11-08

+

Bug Fix

+
    +
  • Version bump in CMakeLists.txt.
  • +
+

Version 2.6.0 - 2022-11-08

+

New Features

+
    +
  • Enable page buffered reading (#639).
  • +
+

Improvements

+
    +
  • Warn when detecting lossy reads or write of floating point data (#636).
  • +
+

Version 2.5.1 - 2022-11-07

+

Bug Fix

+
    +
  • Fix missing inline for collective metadata properties.
  • +
+

Version 2.5.0 - 2022-11-03

+

New Features

+
    +
  • Enable collective MPI IO using the Data Transfer Property (#623). Thanks to Rob Latham.
  • +
  • Add a support for half-precision (16-bit) floating-point based on the Half library (http://half.sourceforge.net) (#587). Thanks to Sergio Botelh.
  • +
  • Enable choosing the allocation time of datasets (#627).
  • +
  • Add possibility to get and set file space strategy. For page allocated files wrap the API to set/retrieve the page size (#618).
  • +
  • Add API for getting Access and Create property lists of HighFive objects (#629).
  • +
  • Let users configure metadata reads and writes at file level (#624). Thanks to Rob Latham.
  • +
+

Improvements

+
    +
  • MPIOFileDriver is now deprecated. Use FileAccessProps (#622).
  • +
  • Support of block argument in API (#584).
  • +
  • Serialization of types is now automagic and so recursive (#586).
  • +
  • Add an argument to specific File Create Properties in File class construtor (#626).
  • +
+

Bug Fixes

+
    +
  • Padding of Compound Types (#581).
  • +
  • Compilation with Visual Studio with C++17 or later (#578). Thanks to Mark Bicknell.
  • +
  • Avoid leaking when printing stack for error (#583).
  • +
+

Version 2.4.1 - 2022-05-11

+

New Features

+
    +
  • Support std::complex. Thanks to Philipp.
  • +
+

Improvements

+
    +
  • Improve EnumType/CompoundType
  • +
  • Revert quirky behaviour of select(const HyperSlab&).
  • +
  • All get_name functions takes size_t and not hsize_t.
  • +
  • Remove nix recipes.
  • +
+

Bug Fixes

+
    +
  • Computation of padding.
  • +
  • Related to 0 being an invalid hid but not equal to H5I_INVALID_HID.
  • +
+

Version 2.4.0 - 2022-04-05

+

New Features

+
    +
  • Construct a compound type from an already existing hid (#469). Thanks to Maximilian Nöthe.
  • +
  • Add support for long double (#494)
  • +
  • Add support for H5Pset_libver_bounds and H5Pset_meta_block_size support (#500)
  • +
  • New interface to select complex hyperslabs, irregular hyperslabs are limited to/from 1D array (#538 and #545)

    Improvements

    +
  • +
+
    +
  • Use inline where it is needed, otherwise some code can lead to "multiple definition" (#516). Thanks to Chris Byrohl.
  • +
  • Use Catch2 instead of boost for tests, reduces dependencies (#521)
  • +
  • CI reworked to test external libraries more thoroughly (boost, eigen, xtensor) (#536)

    Bug Fixes

    +
  • +
+
    +
  • Better support of const types (#460). Thanks to Philip Deegan.
  • +
  • Vector of size zero was previously lead to UB (#502). Thanks to Haoran Ni.
  • +
  • Use H5T_NATIVE_SCHAR instead of H5T_NATIVE_CHAR for "signed char" (#518)
  • +
+

Version 2.3.1 - 2021-08-04

+

Improvements

+
    +
  • Clean cmake files from old code (#465)
  • +
  • Adding path to type warning message (#471)
  • +
  • Adding compound types example, w dataset and attr (#467)
  • +
+

Bug Fixes

+
    +
  • Resolve an issue where padding of nested compound types were being calculated incorrectly (#461) (#468)
  • +
  • GHA: drop previous runs (#462)
  • +
+

Version 2.3 - 2021-05-07

+

New Features:

+
    +
  • Add SZIP support (#435)
  • +
  • Add option parents to createDataSet (#425)
  • +
  • Implementing getting the filename dynamically (#424)
  • +
  • Ability to create soft and external links (#421)
  • +
  • Generalizing getPath and adding getFile as PathTraits (#417)
  • +
+

Improvements:

+
    +
  • Unified reading/writing attributes and datasets (#450)
  • +
  • Old compilers have been removed from docker image (#430)
  • +
  • Cleaning up and improving property lists (#429)
  • +
  • An example using hdf5 references (#396) (#397)
  • +
  • Add all property lists alias for completeness (#427)
  • +
  • Add property CreateIntermediateGroup (#423)
  • +
  • Add code coverage through codecov.io (#420)
  • +
  • Introducing GitHub Actions CI (#416)
  • +
  • Create issue and PR templates (#412)
  • +
  • Initialize SilenceHDF5 to true in _exist (#411)
  • +
  • Generalizing xtensor API (#407)
  • +
  • Minor doc updates (#409)
  • +
  • Fixing minor error in GH Action (#408)
  • +
  • Uploading docs to gh-pages using GitHub Actions (#403)
  • +
  • Various minor documentation updates (#405)
  • +
  • optional documentation building in cmake (#377)
  • +
  • From can be automatic now (#384)
  • +
  • get_dim_vector in inspector (#383)
  • +
  • Put type_of_array in inspector (#382)
  • +
  • Move array_dims in the future manipulator (#381)
  • +
  • Unify interface of H5Attribute with H5Slice_traits (#378)
  • +
  • Use std::move in NRVO depending of version of GCC (#375)
  • +
  • Fixed typo '-DD' to '-D' in 'Dependencies'. (#371)
  • +
  • Changing date format (#364)
  • +
+

Bug fixes:

+
    +
  • Fix use before initialization (#414)
  • +
  • Adding CMake include guard (#389)
  • +
+

Version 2.2.2 - 2020-07-30

+

New Features:

+
    +
  • [H5Easy] Adding OpenCV support (#343)
  • +
  • [H5Easy] Enabling compression & Adding attributes (#337)
  • +
  • Adding missing function to H5Attribute (#337)
  • +
  • Add methods to retrieve Node paths or Dataset names and rename objects (#346)
  • +
  • Add a file with the current version number of HighFive (#349)
  • +
+

Improvements

+
    +
  • [H5Easy] Updating error message dump (#335)
  • +
  • [H5Easy] Switching implementation to partial specialization based on static dispatch (#327)
  • +
  • Simplifying imports, new policy (#324)
  • +
+

Version 2.2.1 - 2020-04-28

+

Improvements

+
    +
  • Add a mechanism to not include target HighFive several times (#336)
  • +
  • Fix SilenceHDF5 initialization for NodeTraits (#333)
  • +
+

Version 2.2 - 2020-03-23

+

New Features:

+
    +
  • Compound Types: API to register and read/write structs (#78). Thanks to Richard Shaw.
  • +
  • Fixed-length strings. API via char[] and FixedLenStringArray(#277)
  • +
  • Enum data types (#297)
  • +
  • Datasets of HDF5 References. Support to dereference groups and datasets (#306)
  • +
  • Objects (hard/soft link) can now be deleted with unlink (#284). Thanks to Tom Vander Aa.
  • +
  • Attributes can be deleted with deleteAttribute (#239)
  • +
+

Improvements:

+
    +
  • Attributes (metadata) now support additional types (#298)
  • +
  • H5Easy: Reworked for compatibility with Eigen::ref and Eigen::Map (#291, #293)
  • +
  • Hdf5 1.12 compatibility: working Object::getInfo and marking getAddress deprecated (#311)
  • +
  • Strict compatibility with CMake 3.1 and C++11 (#304)
  • +
  • CMake: Dependencies may be re-detected on FindPackage, fixed export targets and added integration tests (#255, #304, #312, #317)
  • +
  • Support for array of Eigen::Matrix (#258)
  • +
  • Selection: ElementSet working for N-dimensions (#247)
  • +
+

Bug Fixes:

+
    +
  • Shortcut syntax with c arrays (#273)
  • +
  • Compatibility with in MSVC (Exception messages #263 and avoid throwing in exist check #308)
  • +
+

Version 2.1 - 2019-10-30

+

New Features:

+
    +
  • Inspection: API to get the type of links/objects and datasets data-types (#221)
  • +
  • H5Easy: API for simple import/export to Eigen and xtensor (#141)
  • +
  • Support for chunk and deflate configuration at dataset creation/open (#125). Added generic RawPropertyLists. (#157)
  • +
  • Recursive createGroup and exist (#152)
  • +
  • Shortcut syntax: ability to create a filled dataset in a single line (#130)
  • +
  • DataSet now accepts std::complex and std::array's (#128, #129)
  • +
+

Improvements:

+
    +
  • Improved compat with MSVC and ICC compilers
  • +
  • CMake build system: modernized, create exported targets, better messages, etc.
  • +
  • Building and publishing documentation: https://bluebrain.github.io/HighFive/
  • +
  • Several other. See #231
  • +
+

Bug Fixes:

+
    +
  • Fixed header dependencies. They are now all include-able (#225)
  • +
  • Fixed read/write of N-Dimensional data as nested vectors (#191)
  • +
  • Fixed data broadcasting for reading (#136)
  • +
+

Version 2.0 - 2018-07-19

+
    +
  • First version with C++11 enforcement
  • +
  • Support for property list
  • +
  • Support for Chunking
  • +
  • Support for Compression / Deflate
  • +
  • Fix: missing move constructor for properties
  • +
  • Fix: typo in MPI IO driver
  • +
  • Fix: several typo fixes
  • +
  • Fix: Add missing include
  • +
+

Version 1.5 - 2018-01-06

+
    +
  • SliceTraits::read split in two overloads, the first one for plain C arrays and the second one for other types.
  • +
  • Add support for complex number
  • +
  • Add exist() method to the API
  • +
  • Will be last release before 2.0 and enforcement of C++11
  • +
+

Version 1.4 - 2017-08-25

+
    +
  • Support id selection for the select function
  • +
  • Suport STL containers of const elements
  • +
  • Support scalar values and strings management
  • +
  • Fix attribute assignment issue #40
  • +
  • Fix Object assignment operator missing unref (possible memory leak )
  • +
  • Introduce SilenceHDF5 for HDF5 error report
  • +
  • Fix a unit test issue with SilenceHDF5
  • +
+

Version 1.3 - 2017-06-21

+
    +
  • Minor fixes
  • +
+

Version 1.2 - 2017-04-03

+
    +
  • Add Attribute support for Dataset
  • +
  • Extend testing of Attribute support
  • +
  • Fix issue related to multiple definitions in default driver
  • +
  • Add more examples about attribute support
  • +
+

Version 1.1 - 2017-03-23

+
    +
  • Add support and examples for Parallel HDF5
  • +
  • Initial implementation for H5 Properties
  • +
  • Support for Attributes
  • +
  • Improve documentation
  • +
  • Add example for boost.Ublas matrix support
  • +
+

Version 1.0 - Init

+
    +
  • Initial release
  • +
+
+
+
+ + + + diff --git a/md__2home_2runner_2work_2_high_five_2_high_five_2doc_2developer__guide.html b/md__2home_2runner_2work_2_high_five_2_high_five_2doc_2developer__guide.html new file mode 100644 index 000000000..5d367f616 --- /dev/null +++ b/md__2home_2runner_2work_2_high_five_2_high_five_2doc_2developer__guide.html @@ -0,0 +1,208 @@ + + + + + + + +HighFive: Developer Guide + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Developer Guide
+
+
+

First clone the repository and remember the --recursive:

git clone --recursive git@github.com:BlueBrain/HighFive.git
+

The instructions to recover if you forgot are:

git submodule update --init --recursive
+

One remark on submodules: each HighFive commit expects that the submodules are at a particular commit. The catch is that performing git checkout will not update the submodules automatically. Hence, sometimes a git submodule update --recursive might be needed to checkout the expected version of the submodules.

+

Compiling and Running the Tests

+

The instructions for compiling with examples and unit-tests are:

+
cmake -B build -DCMAKE_BUILD_TYPE={Debug,Release} .
+
cmake --build build --parallel
+
ctest --test-dir build
+

You might want to turn off Boost -DHIGHFIVE_USE_BOOST=Off or turn on other optional dependencies.

+

Contributing

+

There's numerous HDF5 features that haven't been wrapped yet. HighFive is a collaborative effort to slowly cover ever larger parts of the HDF5 library. The process of contributing is to fork the repository and then create a PR. Please ensure that any new API is appropriately documented and covered with tests.

+

Code formatting

+

The project is formatted using clang-format version 12.0.1 and CI will complain if a commit isn't formatted accordingly. The .clang-format is at the root of the git repository. Conveniently, clang-format is available via pip:

+
python -m venv venv
+
source venv/bin/activate
+
+
pip install clang-format==12.0.1
+

The changed lines can be formatted with git-clang-format, e.g. to format all lines changed compared to master:

+
git-clang-format master
+

(add -f to allow formatting unstaged changes if you trust it to not destroy your changes.)

+

Releasing HighFive

+

Before releasing a new version perform the following:

+ +

At this point there should be a commit on master which will be the release candidate. Don't tag it yet.

+

Next step is to update the HighFive/spack recipe such that the proposed version points to the release candidate using the SHA of that commit. The recipe will look something like this:

+
# ...
+
+
version("2.8.0", commit="094400f22145bcdcd2726ce72888d9d1c21e7068")
+
version("2.7.1", sha256="25b4c51a94d1e670dc93b9b73f51e79b65d8ff49bcd6e5d5582d5ecd2789a249")
+
version("2.7.0", sha256="8e05672ddf81a59ce014b1d065bd9a8c5034dbd91a5c2578e805ef880afa5907")
+
# ...
+

Push the changes to the BlueBrain spack repository. This will trigger building all BBP dependencies of HighFive, i.e. another integration test. Don't actually merge this commit yet.

+

Now that we know that the integration test ran, and all BBP software can be built with the proposed version of HighFive, we can proceed and create the release. Once this is done perform a final round of updates:

+
    +
  • Download the archive (*.tar.gz) and compute its SHA256.
  • +
  • Update BlueBrain Spack recipe to use the archive and not the Git commit.
  • +
  • Update the upstream Spack recipe.
  • +
+

Writing Tests

+

Generate Multi-Dimensional Test Data

+

Input array of any dimension and type can be generated using the template class DataGenerator. For example:

auto dims = std::vector<size_t>{4, 2};
+
auto values = testing::DataGenerator<std::vector<std::array<double, 2>>::create(dims);
+

Generates an std::vector<std::array<double, 2>> initialized with suitable values.

+

If "suitable" isn't specific enough, one can specify a callback:

auto callback = [](const std::vector<size_t>& indices) {
+
return 42.0;
+
}
+
+
auto values = testing::DataGenerator<std::vector<double>>::create(dims, callback);
+

The dims can be generated via testing::DataGenerator::default_dims or by using testing::DataGenerator::sanitize_dims. Remember, that certain containers are fixed size and that we often compute the number of elements by multiplying the dims.

+

Generate Scalar Test Data

+

To generate a single "suitable" element use template class DefaultValues, e.g.

auto default_values = testing::DefaultValues<double>();
+
auto x = testing::DefaultValues<double>(indices);
+

Accessing Elements

+

To access a particular element from an unknown container use the following trait:

using trait = testing::ContainerTraits<std::vector<std::array<int, 2>>;
+
// auto x = values[1][0];
+
auto x = trait::get(values, {1, 0});
+
+
// values[1][0] = 42.0;
+
trait::set(values, {1, 0}, 42.0);
+

Utilities For Multi-Dimensional Arrays

+

Use testing::DataGenerator::allocate to allocate an array (without filling it) and testing::copy to copy an array from one type to another. There's testing::ravel, testing::unravel and testing::flat_size to compute the position in a flat array from a multi-dimensional index, the reverse and the number of element in the multi-dimensional array.

+

Deduplicating DataSet and Attribute

+

Due to how HighFive is written testing DataSet and Attribute often requires duplicating the entire test code because somewhere a createDataSet must be replaced with createAttribute. Use testing::AttributeCreateTraits and testing::DataSetCreateTraits. For example,

template<class CreateTraits>
+
void check_write(...) {
+
// Same as one of:
+
// file.createDataSet(name, values);
+
// file.createAttribute(name, values);
+
CreateTraits::create(file, name, values);
+
}
+

Test Organization

+

Multi-Dimensional Arrays

+

All tests for reading/writing whole multi-dimensional arrays to datasets or attributes belong in tests/unit/tests_high_five_multi_dimensional.cpp. This includes write/read cycles; checking all the generic edges cases, e.g. empty arrays and mismatching sizes; and checking non-reallocation.

+

Read/Write cycles are implemented in two distinct checks. One for writing and another for reading. When checking writing we read with a "trusted" multi-dimensional array (a nested std::vector), and vice-versa when checking reading. This matters because certain bugs, like writing a column major array as if it were row-major can't be caught if one reads it back into a column-major array.

+

Remember, std::vector<bool> is very different from all other std::vectors.

+

Every container template<class T> C; should at least be checked with all of the following Ts that are supported by the container: bool, double, std::string, std::vector, std::array. The reason is bool and std::string are special, double is just a POD, std::vector requires dynamic memory allocation and std::array is statically allocated.

+

Similarly, each container should be put inside an std::vector and an std::array.

+

Scalar Data Set

+

Write-read cycles for scalar values should be implemented in tests/unit/tests_high_five_scalar.cpp.

+

Data Types

+

Unit-tests related to checking that DataType API, go in tests/unit/tests_high_data_type.cpp.

+

Selections

+

Anything selection related goes in tests/unit/test_high_five_selection.cpp. This includes things like ElementSet and HyperSlab.

+

Strings

+

Regular write-read cycles for strings are performed along with the other types, see above. This should cover compatibility of std::string with all containers. However, additional testing is required, e.g. character set, padding, fixed vs. variable length. These all go in tests/unit/test_high_five_string.cpp.

+

Specific Tests For Optional Containers

+

If containers, e.g. Eigen::Matrix require special checks those go in files called tests/unit/test_high_five_*.cpp where * is eigen for Eigen.

+

Memory Layout Assumptions

+

In HighFive we make assumptions about the memory layout of certain types. For example, we assume that

auto array = std::vector<std::array<double, 2>>(n);
+
doube * ptr = (double*) array.data();
+

is a sensible thing to do. We assume similar about bool and details::Boolean. These types of tests go into tests/unit/tests_high_five_memory_layout.cpp.

+

H5Easy

+

Anything H5Easy related goes in files with the appropriate name.

+

Everything Else

+

What's left goes in tests/unit/test_high_five_base.cpp. This covers opening files, groups, dataset or attributes; checking certain pathological edge cases; etc.

+
+
+
+ + + + diff --git a/md__2home_2runner_2work_2_high_five_2_high_five_2doc_2installation.html b/md__2home_2runner_2work_2_high_five_2_high_five_2doc_2installation.html new file mode 100644 index 000000000..9bc53bbc1 --- /dev/null +++ b/md__2home_2runner_2work_2_high_five_2_high_five_2doc_2installation.html @@ -0,0 +1,224 @@ + + + + + + + +HighFive: Beginners Installation Guide on Linux + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Beginners Installation Guide on Linux
+
+
+

These installation instruction are aimed at developers that aren't very familiar with installing C/C++ software and using CMake on Linux.

+

Obtaining CMake

+

You'll need a compiler and CMake. We'll assume that a reasonably modern C++ compiler is available. Often a sufficiently new version CMake is also present on the system.

+

If not, there's two options: use the system package manager or use pip. CMake is improving in leaps and bounds. Which means you want a recent version. We suggest reconsidering fighting an older version of CMake if you can simply install the newest version via pip.

+

Obtaining HDF5

+

First, you need to decide if you need MPI-support. Rule of thumb is: if you're unsure, then you don't need it. If you need MPI you must install an MPI-enabled version of HDF5. Otherwise pick either one, if something is already installed, e.g. because h5py was installed as a system package, stick with that version.

+

The options for installing HDF5 are:

    +
  1. Use the system package manager.
  2. +
  3. On a cluster use modules.
  4. +
  5. Use Spack.
  6. +
  7. Use Conan.
  8. +
  9. Manually install it.
  10. +
+

The system package manager will install HDF5 in a default location, were CMake will later be able to find it without further help. All the other approaches install into a non-default location and CMake might need help locating HDF5. The way one tells CMake where to find HDF5 is through CMAKE_PREFIX_PATH, e.g.,

cmake -DCMAKE_PREFIX_PATH="${HDF5_ROOT}" ...
+

Note that ${HDF5_ROOT} points to the folder which contains the two folders include and lib.

+

System Package Manager

+

The default choice is to use the system package manager to install HDF5. One thing to keep an eye out is that certain Linux distributions don't install the headers automatically. Since you're about to develop an application which (indirectly) uses HDF5, you need those headers. If the packages are split, the development package is often suffixed with -dev or -devel.

+

Ubuntu

+

The package manager is apt. To install the HDF5 C library without MPI support:

sudo apt-get install libhdf5-dev
+

for MPI support you'd install libhdf5-openmpi-dev.

+

ArchLinux

+

On ArchLinux you install

sudo pacman -S hdf5
+

or hdf5-openmpi for HDF5 with OpenMPI support.

+

Using Modules

+

If you're on a cluster, HDF5 has almost certainly been installed for you. Figure out how to use it. This is the preferred solution on clusters. As always, the precise instructions depend on the cluster, but something like

module load hdf5
+

will probably be part of the solution. Try if module avail helps. Otherwise, you'd need to check the documentation for your cluster. Cluster admins like to hide the good stuff, i.e. modern versions, behind another package "new" or some other mechanism.

+

You might need to know where HDF5 has been installed. You can find out what a module does by typing

module show hdf5
+

If it contains something about prepending to CMAKE_PREFIX_PATH, then CMake should find the correct version automatically after loading the module.

+

Using Spack

+

If neither of the above work, the next best choice might be Spack. It's a package manager for scientific computing. The general idea behind it is to avoid dependency issues by compiling a compatible set of everything.

+

Obtain Spack by cloning their repo:

git clone https://github.com/spack/spack.git
+

Activate Spack by sourcing a magic file:

source spack/share/spack/setup-env.sh
+

which will put the command spack into your PATH. Okay, now we're set. First step is to create an environment for your project, which we'll call useful:

spack env create useful
+spack env activate -p useful
+spack add hdf5
+spack install --jobs NPROC
+

If you need MPI support use hdf5+mpi instead. The location of the HDF5 installation is spack location --install-dir hdf5.

+

Conan

+

If Spack doesn't work, you can try Conan.

+

Manually Install HDF5

+

If all else fails, you can try to manually install HDF5. First you need to obtain the source code. For example by using git or by downloading an archive from their webpage.

git clone https://github.com/HDFGroup/hdf5
+cd hdf5
+git checkout hdf5-1_14_0
+

Now, fingers crossed it'll compile and install:

cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=../hdf5-v1.14.0 -B build .
+cmake --build build --parallel [NPROC]
+cmake --install build
+

Note that here we picked the installation path (or more precisely prefix) to be ../hdf5-v1.14.0. You might want to install HDF5 somewhere else. This installation prefix is the also the path you need to give CMake so it's able to find HDF5 later on.

+

Confirming HDF5 Has Been Installed

+

For this purpose we need a dummy file dummy.cpp to compile:

#include <hdf5.h>
+
+int main() {
+  auto file = H5Fcreate("foo.h5", H5F_ACC_EXCL, H5P_DEFAULT, H5P_DEFAULT);
+  H5Fclose(file);
+  return 0;
+}
+

and a CMakeLists.txt with the following contents

cmake_minimum_required(VERSION 3.19)
+project(Dummy)
+
+find_package(HDF5 REQUIRED)
+add_executable(dummy dummy.cpp)
+target_link_libraries(dummy HDF5::HDF5)
+

Now run CMake to configure the build system and keep an eye out for some a line related to HDF5, e.g.

$ cmake -B build .
+...
+-- Found HDF5: hdf5-shared (found version "1.14.0")
+...
+

Compile and check that it's doing something with sensible

$ cmake -build build --verbose
+[ 50%] Building CXX object CMakeFiles/dummy.dir/dummy.cpp.o
+/usr/bin/c++ ... -isystem ${HDF5_ROOT}/include ... -c ${PWD}/dummy.cpp
+[100%] Linking CXX executable dummy
+/usr/bin/c++ ... -o dummy -Wl,-rpath,${HDF5_ROOT}/lib ${HDF5_ROOT}/lib/libhdf5.so.310.0.0 ...
+

mostly you're checking that the paths are what you'd expect them to be. If this command was successful, chances are high that HDF5 is properly installed and you've figured out the correct CMake invocations. If you want you can run the executable:

build/dummy
+

which would create an empty file foo.h5.

+

Obtaining HighFive

+

In principle the same instruction as for HDF5 can be used. However, HighFive is much less popular compared to HDF5 and therefore the system package manager likely doesn't know about it, nor does Conan. You're left with Spack and the manual process. It seems someone has done the wonderful work of adding HighFive to conda-forge, so maybe that's also an option.

+

Git Submodules

+

This is the well-tested method for "vendoring" HighFive, i.e. including the HighFive sources with those of you project.

+

Spack

+

Similarly as for HDF5, you can use Spack to install HighFive:

spack env activate -p useful
+spack add highfive
+spack install --jobs NPROC
+

Again spack location --install-dir highfive will return the path where HighFive was installed. Since the Spack recipe of HighFive declares HDF5 as a dependency, technically, it's not necessary to add hdf5, just highfive is enough.

+

Manually Install HighFive

+

Just like before the steps are, clone, configure, compile (kinda a no-op), install. The detailed instructions would be

git clone --recursive https://github.com/BlueBrain/HighFive.git
+cd HighFive
+git checkout v2.8.0
+

If it complains that Catch is missing, you forgot the --recursive. To fix this you type

git submodule update --init --recursive
+

Okay, on to configure, compile and install. The CMake commands are

cmake -DCMAKE_INSTALL_PREFIX=build/install -DHIGHFIVE_USE_BOOST=Off -B build .
+cmake --build build --parallel
+cmake --install build
+

Later you'd pass the installation directory, i.e. ${PWD}/build/install, to CMAKE_PREFIX_PATH.

+

Confirming It Works

+

We again need a dummy file called dummy.cpp with the following contents

#include <highfive/highfive.hpp>
+
+int main() {
+  auto file = HighFive::File("foo.h5", HighFive::File::Create);
+  return 0;
+}
+

and the following CMakeLists.txt:

cmake_minimum_required(VERSION 3.19)
+project(UseHighFive)
+
+find_package(HighFive REQUIRED)
+add_executable(dummy dummy.cpp)
+target_link_libraries(dummy HighFive)
+

The required CMake commands are:

$ cmake -DCMAKE_PREFIX_PATH="${HDF5_ROOT};${HIGHFIVE_ROOT}" -B build .
+...
+-- HIGHFIVE 2.7.1: (Re)Detecting Highfive dependencies (HIGHFIVE_USE_INSTALL_DEPS=NO)
+-- Found HDF5: hdf5-shared (found version "1.14.0")
+...
+
+$ cmake --build build --verbose
+[ 50%] Building CXX object CMakeFiles/dummy.dir/dummy.cpp.o
+/usr/bin/c++ ... -isystem ${HIGHFIVE_ROOT}/include -isystem ${HDF5_ROOT}/include ... -c dummy.cpp
+[100%] Linking CXX executable dummy
+/usr/bin/c++ ... -o dummy -Wl,-rpath,${HDF5_ROOT}/lib ${HDF5_ROOT}/lib/libhdf5.so.310.0.0 ...
+

Pay attention to the semi-colon (not colon like the rest of Linux) used to separate directories in CMAKE_PREFIX_PATH. If this worked you should be set to either copy the instruction to your "real" project, or start developing the rest of your project.

+
+
+
+ + + + diff --git a/md__2home_2runner_2work_2_high_five_2_high_five_2doc_2migration__guide.html b/md__2home_2runner_2work_2_high_five_2_high_five_2doc_2migration__guide.html new file mode 100644 index 000000000..83ec87b38 --- /dev/null +++ b/md__2home_2runner_2work_2_high_five_2_high_five_2doc_2migration__guide.html @@ -0,0 +1,171 @@ + + + + + + + +HighFive: Migration Guide + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
HighFive 2.9.0 +
+
HighFive - Header-only C++ HDF5 interface
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Migration Guide
+
+
+

A collection of tips for migrating away from deprecated features.

+

Deprecation of FixedLenStringArray.

+

The issue with FixedLenStringArray is that it is unable to avoid copies. Essentially, this class acts as a means to create a copy of the data in a format suitable for writing fixed-length strings. Additionally, the class acts as a tag for HighFive to overload on. The support of std::string in HighFive has improved considerable. Since 2.8.0 we can write/read std::string to fixed or variable length HDF5 strings.

+

Therefore, this class serves no purpose anymore. Any occurrence of it can be replaced with an std::vector<std::string> (for example).

+

If desired one can silence warnings by replacing FixedLenStringArray with deprecated::FixedLenStringArray.

+

Deprecation of read(T*, ...).

+

A "raw read" is when the user allocates sufficient bytes and provides HighFive with the pointer to the first byte. "Regular reads" take a detour via the inspector and might resize the container, etc.

+

The issue is that HighFive v2 had the following two overloads:

template<class T>
+
DataSet::read(T& x, /* skipped */);
+
+
template<class T>
+
DataSet::read(T* x, /* skipped */);
+

and the analogous for Attribute.

+

The issue is that the second overload will also match things like T** and T[][]. For example the following code used the removed overload:

double x[2][3];
+
dset.read(x);
+

which is fine because is a contiguous sequence of doubles. It's equivalent to following v3 code:

double x[2][3];
+
dset.read_raw((double*) x);
+

Accidental Raw Read

+

We consider the example above to be accidentally using a raw read, when it could be performing a regular read. We suggest to not change the above, i.e.

double x[2][3];
+
dset.read(x);
+

continues to be correct in v3 and can check that the dimensions match. The inspector recognizes double[2][3] as a contiguous array of doubles. Therefore, it'll use the shallow-copy buffer and avoid the any additional allocations or copies.

+

Intentional Raw Read

+

When genuinely performing a "raw read", one must replace read with read_raw. For example:

+
double* x = malloc(2*3 * sizeof(double));
+
dset.read_raw(x);
+

is correct in v3.

+

Reworked CMake

+

In v3 we completely rewrote the CMake code of HighFive. Since HighFive is a header only library, it needs to perform two tasks:

+
    +
  1. Copy the sources during installation.
  2. +
  3. Export a target that sets -I ${HIGHFIVE_DIR} and links with HDF5.
  4. +
+

We've removed all flags for optional dependencies, such as -DHIGHFIVE_USE_BOOST. Instead user that want to read/write into/from optionally supported containers, include a header with the corresponding name and make sure to adjust their CMake code to link with the dependency.

+

The C++ code should have:

#include <highfive/boost.hpp>
+
+
// Code the reads or write `boost::multi_array`.
+

and the CMake code would have

add_executable(app)
+
+
# These lines might work, but depend on how exactly the user intends to use
+
# Boost. They are not specific to HighFive, but previously added automatically
+
# (and sometimes correctly) by HighFive.
+
find_package(Boost)
+
target_link_libraries(add PUBLIC boost::boost)
+
+
# For HighFive there's two options for adding `-I ${HIGHFIVE_DIR}` and the
+
# flags for HDF5.
+
#
+
# Option 1: HighFive is install (systemwide) as a regular library:
+
find_package(HighFive)
+
target_link_libraries(app PUBLIC HighFive::HighFive)
+
+
# Option 2: HighFive is vendored as part of the project:
+
add_subdirectory(third_party/HighFive)
+
target_link_libraries(app PUBLIC HighFive::HighFive)
+

There are extensive examples of project integration in tests/cmake_integration, including how those projects in turn can be included in other projects. If these examples don't help, please feel free to open an Issue.

+

Type change DataSpace::DataSpaceType.

+

We've converted the enum DataSpace::DataSpaceType to an enum class. We've added static constexpr members dataspace_null and dataspace_scalar to DataSpace. This minimizes the risk of breaking user code.

+

Note that objects of type DataSpace::DataSpaceType will no longer silently convert to an integer. Including the two constants DataSpace::dataspace_{scalar,null}.

+

Deprecation FileDriver and MPIOFileDriver.

+

These have been deprecated to stick more closely with familiar HDF5 concepts. The FileDriver is synonymous to FileAccessProps; and MPIOFileDriver is the same as:

auto fapl = FileAccessProps{};
+
fapl.add(MPIOFileAccess(mpi_comm, mpi_info));
+

We felt that the savings in typing effort weren't worth introducing the concept of a "file driver". Removing the concept hopefully makes it easier to add a better abstraction for the handling of the property lists, when we discover such an abstraction.

+
+
+
+ + + + diff --git a/menu.js b/menu.js new file mode 100644 index 000000000..717761d01 --- /dev/null +++ b/menu.js @@ -0,0 +1,134 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { + function makeTree(data,relPath) { + let result=''; + if ('children' in data) { + result+='
    '; + for (let i in data.children) { + let url; + const link = data.children[i].url; + if (link.substring(0,1)=='^') { + url = link.substring(1); + } else { + url = relPath+link; + } + result+='
  • '+ + data.children[i].text+''+ + makeTree(data.children[i],relPath)+'
  • '; + } + result+='
'; + } + return result; + } + let searchBoxHtml; + if (searchEnabled) { + if (serverSide) { + searchBoxHtml='
'+ + '
'+ + '
 '+ + ''+ + '
'+ + '
'+ + '
'+ + '
'; + } else { + searchBoxHtml='
'+ + ''+ + ' '+ + ''+ + ''+ + ''+ + ''+ + ''+ + '
'; + } + } + + $('#main-nav').before('
'+ + ''+ + ''+ + '
'); + $('#main-nav').append(makeTree(menudata,relPath)); + $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); + if (searchBoxHtml) { + $('#main-menu').append('
  • '); + } + const $mainMenuState = $('#main-menu-state'); + let prevWidth = 0; + if ($mainMenuState.length) { + const initResizableIfExists = function() { + if (typeof initResizable==='function') initResizable(); + } + // animate mobile menu + $mainMenuState.change(function() { + const $menu = $('#main-menu'); + let options = { duration: 250, step: initResizableIfExists }; + if (this.checked) { + options['complete'] = () => $menu.css('display', 'block'); + $menu.hide().slideDown(options); + } else { + options['complete'] = () => $menu.css('display', 'none'); + $menu.show().slideUp(options); + } + }); + // set default menu visibility + const resetState = function() { + const $menu = $('#main-menu'); + const newWidth = $(window).outerWidth(); + if (newWidth!=prevWidth) { + if ($(window).outerWidth()<768) { + $mainMenuState.prop('checked',false); $menu.hide(); + $('#searchBoxPos1').html(searchBoxHtml); + $('#searchBoxPos2').hide(); + } else { + $menu.show(); + $('#searchBoxPos1').empty(); + $('#searchBoxPos2').html(searchBoxHtml); + $('#searchBoxPos2').show(); + } + if (typeof searchBox!=='undefined') { + searchBox.CloseResultsWindow(); + } + prevWidth = newWidth; + } + } + $(window).ready(function() { resetState(); initResizableIfExists(); }); + $(window).resize(resetState); + } + $('#main-menu').smartmenus(); +} +/* @license-end */ diff --git a/menudata.js b/menudata.js new file mode 100644 index 000000000..328c5d9d9 --- /dev/null +++ b/menudata.js @@ -0,0 +1,109 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file +*/ +var menudata={children:[ +{text:"Main Page",url:"index.html"}, +{text:"Related Pages",url:"pages.html"}, +{text:"Namespaces",url:"namespaces.html",children:[ +{text:"Namespace List",url:"namespaces.html"}, +{text:"Namespace Members",url:"namespacemembers.html",children:[ +{text:"All",url:"namespacemembers.html",children:[ +{text:"a",url:"namespacemembers.html#index_a"}, +{text:"c",url:"namespacemembers.html#index_c"}, +{text:"d",url:"namespacemembers.html#index_d"}, +{text:"f",url:"namespacemembers.html#index_f"}, +{text:"g",url:"namespacemembers.html#index_g"}, +{text:"i",url:"namespacemembers.html#index_i"}, +{text:"l",url:"namespacemembers.html#index_l"}, +{text:"o",url:"namespacemembers.html#index_o"}, +{text:"p",url:"namespacemembers.html#index_p"}, +{text:"r",url:"namespacemembers.html#index_r"}, +{text:"s",url:"namespacemembers.html#index_s"}, +{text:"t",url:"namespacemembers.html#index_t"}, +{text:"u",url:"namespacemembers.html#index_u"}]}, +{text:"Functions",url:"namespacemembers_func.html"}, +{text:"Typedefs",url:"namespacemembers_type.html"}, +{text:"Enumerations",url:"namespacemembers_enum.html"}]}]}, +{text:"Classes",url:"annotated.html",children:[ +{text:"Class List",url:"annotated.html"}, +{text:"Class Index",url:"classes.html"}, +{text:"Class Hierarchy",url:"inherits.html"}, +{text:"Class Members",url:"functions.html",children:[ +{text:"All",url:"functions.html",children:[ +{text:"_",url:"functions.html#index__5F"}, +{text:"a",url:"functions_a.html#index_a"}, +{text:"b",url:"functions_b.html#index_b"}, +{text:"c",url:"functions_c.html#index_c"}, +{text:"d",url:"functions_d.html#index_d"}, +{text:"e",url:"functions_e.html#index_e"}, +{text:"f",url:"functions_f.html#index_f"}, +{text:"g",url:"functions_g.html#index_g"}, +{text:"h",url:"functions_h.html#index_h"}, +{text:"i",url:"functions_i.html#index_i"}, +{text:"l",url:"functions_l.html#index_l"}, +{text:"m",url:"functions_m.html#index_m"}, +{text:"n",url:"functions_n.html#index_n"}, +{text:"o",url:"functions_o.html#index_o"}, +{text:"p",url:"functions_p.html#index_p"}, +{text:"r",url:"functions_r.html#index_r"}, +{text:"s",url:"functions_s.html#index_s"}, +{text:"t",url:"functions_t.html#index_t"}, +{text:"u",url:"functions_u.html#index_u"}, +{text:"v",url:"functions_v.html#index_v"}, +{text:"w",url:"functions_w.html#index_w"}, +{text:"~",url:"functions_~.html#index__7E"}]}, +{text:"Functions",url:"functions_func.html",children:[ +{text:"_",url:"functions_func.html#index__5F"}, +{text:"a",url:"functions_func_a.html#index_a"}, +{text:"b",url:"functions_func_b.html#index_b"}, +{text:"c",url:"functions_func_c.html#index_c"}, +{text:"d",url:"functions_func_d.html#index_d"}, +{text:"e",url:"functions_func_e.html#index_e"}, +{text:"f",url:"functions_func_f.html#index_f"}, +{text:"g",url:"functions_func_g.html#index_g"}, +{text:"h",url:"functions_func_h.html#index_h"}, +{text:"i",url:"functions_func_i.html#index_i"}, +{text:"l",url:"functions_func_l.html#index_l"}, +{text:"m",url:"functions_func_m.html#index_m"}, +{text:"n",url:"functions_func_n.html#index_n"}, +{text:"o",url:"functions_func_o.html#index_o"}, +{text:"p",url:"functions_func_p.html#index_p"}, +{text:"r",url:"functions_func_r.html#index_r"}, +{text:"s",url:"functions_func_s.html#index_s"}, +{text:"t",url:"functions_func_t.html#index_t"}, +{text:"u",url:"functions_func_u.html#index_u"}, +{text:"v",url:"functions_func_v.html#index_v"}, +{text:"w",url:"functions_func_w.html#index_w"}, +{text:"~",url:"functions_func_~.html#index__7E"}]}, +{text:"Variables",url:"functions_vars.html"}, +{text:"Typedefs",url:"functions_type.html"}, +{text:"Enumerations",url:"functions_enum.html"}, +{text:"Enumerator",url:"functions_eval.html"}, +{text:"Related Symbols",url:"functions_rela.html"}]}]}, +{text:"Files",url:"files.html",children:[ +{text:"File List",url:"files.html"}, +{text:"File Members",url:"globals.html",children:[ +{text:"All",url:"globals.html"}, +{text:"Macros",url:"globals_defs.html"}]}]}, +{text:"Github Page",url:"^https://github.com/BlueBrain/HighFive"}]} diff --git a/migration__guide_8md.html b/migration__guide_8md.html new file mode 100644 index 000000000..71f1c8083 --- /dev/null +++ b/migration__guide_8md.html @@ -0,0 +1,109 @@ + + + + + + + +HighFive: /home/runner/work/HighFive/HighFive/doc/migration_guide.md File Reference + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    /home/runner/work/HighFive/HighFive/doc/migration_guide.md File Reference
    +
    +
    +
    +
    + + + + diff --git a/minus.svg b/minus.svg new file mode 100644 index 000000000..f70d0c1a1 --- /dev/null +++ b/minus.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/minusd.svg b/minusd.svg new file mode 100644 index 000000000..5f8e87962 --- /dev/null +++ b/minusd.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/namespace_h5_easy.html b/namespace_h5_easy.html new file mode 100644 index 000000000..2530c8593 --- /dev/null +++ b/namespace_h5_easy.html @@ -0,0 +1,923 @@ + + + + + + + +HighFive: H5Easy Namespace Reference + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    + +
    H5Easy Namespace Reference
    +
    +
    + +

    Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated, and accept: +More...

    + + + + + + + + +

    +Classes

    class  Compression
     Signal to set compression level for written DataSets. More...
     
    class  DumpOptions
     Define options for dumping data. More...
     
    + + + + + + + +

    +Enumerations

    enum class  DumpMode { Create = 0 +, Overwrite = 1 + }
     Write mode for DataSets. More...
     
    enum class  Flush { False = 0 +, True = 1 + }
     Signal to enable/disable automatic flushing after write operations. More...
     
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Functions

    size_t getSize (const File &file, const std::string &path)
     Get the size of an existing DataSet in an open HDF5 file.
     
    std::vector< size_t > getShape (const File &file, const std::string &path)
     Get the shape of an existing DataSet in an readable file.
     
    template<class T >
    DataSet dump (File &file, const std::string &path, const T &data, DumpMode mode=DumpMode::Create)
     Write object (templated) to a (new) DataSet in an open HDF5 file.
     
    template<class T >
    DataSet dump (File &file, const std::string &path, const T &data, const DumpOptions &options)
     Write object (templated) to a (new) DataSet in an open HDF5 file.
     
    template<class T >
    DataSet dump (File &file, const std::string &path, const T &data, const std::vector< size_t > &idx)
     Write a scalar to a (new, extendible) DataSet in an open HDF5 file.
     
    template<class T >
    DataSet dump (File &file, const std::string &path, const T &data, const std::initializer_list< size_t > &idx)
     Write a scalar to a (new, extendable) DataSet in an open HDF5 file.
     
    template<class T >
    DataSet dump (File &file, const std::string &path, const T &data, const std::vector< size_t > &idx, const DumpOptions &options)
     Write a scalar to a (new, extendible) DataSet in an open HDF5 file.
     
    template<class T >
    DataSet dump (File &file, const std::string &path, const T &data, const std::initializer_list< size_t > &idx, const DumpOptions &options)
     Write a scalar to a (new, extendible) DataSet in an open HDF5 file.
     
    template<class T >
    load (const File &file, const std::string &path, const std::vector< size_t > &idx)
     Load entry {i, j, ...} from a DataSet in an open HDF5 file to a scalar.
     
    template<class T >
    load (const File &file, const std::string &path)
     Load a DataSet in an open HDF5 file to an object (templated).
     
    template<class T >
    Attribute dumpAttribute (File &file, const std::string &path, const std::string &key, const T &data, DumpMode mode=DumpMode::Create)
     Write object (templated) to a (new) Attribute in an open HDF5 file.
     
    template<class T >
    Attribute dumpAttribute (File &file, const std::string &path, const std::string &key, const T &data, const DumpOptions &options)
     Write object (templated) to a (new) Attribute in an open HDF5 file.
     
    template<class T >
    loadAttribute (const File &file, const std::string &path, const std::string &key)
     Load a Attribute in an open HDF5 file to an object (templated).
     
    +

    Detailed Description

    +

    Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated, and accept:

    +
      +
    • Any type accepted by HighFive
    • +
    • Eigen objects
    • +
    • xtensor objects
    • +
    • OpenCV objects
    • +
    +

    Enumeration Type Documentation

    + +

    ◆ DumpMode

    + +
    +
    + + + + + +
    + + + + +
    enum class H5Easy::DumpMode
    +
    +strong
    +
    + +

    Write mode for DataSets.

    + + + +
    Enumerator
    Create 

    Dump only if DataSet does not exist, otherwise throw.

    +
    Overwrite 

    Create or overwrite if DataSet of correct shape exists, otherwise throw.

    +
    + +
    +
    + +

    ◆ Flush

    + +
    +
    + + + + + +
    + + + + +
    enum class H5Easy::Flush
    +
    +strong
    +
    + +

    Signal to enable/disable automatic flushing after write operations.

    + + + +
    Enumerator
    False 

    No automatic flushing.

    +
    True 

    Automatic flushing.

    +
    + +
    +
    +

    Function Documentation

    + +

    ◆ dump() [1/6]

    + +
    +
    +
    +template<class T >
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + +
    DataSet H5Easy::dump (File & file,
    const std::string & path,
    const T & data,
    const DumpOptions & options )
    +
    +inline
    +
    + +

    Write object (templated) to a (new) DataSet in an open HDF5 file.

    +
    Parameters
    + + + + + +
    fileopened file (has to be writeable)
    pathpath of the DataSet
    datathe data to write (any supported type)
    optionsdump options
    +
    +
    +
    Returns
    The newly created DataSet
    + +
    +
    + +

    ◆ dump() [2/6]

    + +
    +
    +
    +template<class T >
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + +
    DataSet H5Easy::dump (File & file,
    const std::string & path,
    const T & data,
    const std::initializer_list< size_t > & idx )
    +
    +inline
    +
    + +

    Write a scalar to a (new, extendable) DataSet in an open HDF5 file.

    +
    Parameters
    + + + + + +
    fileopen File (has to be writeable)
    pathpath of the DataSet
    datathe data to write (any supported type)
    idxthe indices to which to write
    +
    +
    +
    Returns
    The newly created DataSet
    + +
    +
    + +

    ◆ dump() [3/6]

    + +
    +
    +
    +template<class T >
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    DataSet H5Easy::dump (File & file,
    const std::string & path,
    const T & data,
    const std::initializer_list< size_t > & idx,
    const DumpOptions & options )
    +
    +inline
    +
    + +

    Write a scalar to a (new, extendible) DataSet in an open HDF5 file.

    +
    Parameters
    + + + + + + +
    fileopened file (has to be writeable)
    pathpath of the DataSet
    datathe data to write (any supported type)
    idxthe indices to which to write
    optionsdump options
    +
    +
    +
    Returns
    The newly created DataSet
    + +
    +
    + +

    ◆ dump() [4/6]

    + +
    +
    +
    +template<class T >
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + +
    DataSet H5Easy::dump (File & file,
    const std::string & path,
    const T & data,
    const std::vector< size_t > & idx )
    +
    +inline
    +
    + +

    Write a scalar to a (new, extendible) DataSet in an open HDF5 file.

    +
    Parameters
    + + + + + +
    fileopened file (has to be writeable)
    pathpath of the DataSet
    datathe data to write (any supported type)
    idxthe indices to which to write
    +
    +
    +
    Returns
    The newly created DataSet
    + +
    +
    + +

    ◆ dump() [5/6]

    + +
    +
    +
    +template<class T >
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    DataSet H5Easy::dump (File & file,
    const std::string & path,
    const T & data,
    const std::vector< size_t > & idx,
    const DumpOptions & options )
    +
    +inline
    +
    + +

    Write a scalar to a (new, extendible) DataSet in an open HDF5 file.

    +
    Parameters
    + + + + + + +
    fileopened file (has to be writeable)
    pathpath of the DataSet
    datathe data to write (any supported type)
    idxthe indices to which to write
    optionsdump options
    +
    +
    +
    Returns
    The newly created DataSet
    + +
    +
    + +

    ◆ dump() [6/6]

    + +
    +
    +
    +template<class T >
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + +
    DataSet H5Easy::dump (File & file,
    const std::string & path,
    const T & data,
    DumpMode mode = DumpMode::Create )
    +
    +inline
    +
    + +

    Write object (templated) to a (new) DataSet in an open HDF5 file.

    +
    Parameters
    + + + + + +
    fileopened file (has to be writeable)
    pathpath of the DataSet
    datathe data to write (any supported type)
    modewrite mode
    +
    +
    +
    Returns
    The newly created DataSet
    + +
    +
    + +

    ◆ dumpAttribute() [1/2]

    + +
    +
    +
    +template<class T >
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Attribute H5Easy::dumpAttribute (File & file,
    const std::string & path,
    const std::string & key,
    const T & data,
    const DumpOptions & options )
    +
    +inline
    +
    + +

    Write object (templated) to a (new) Attribute in an open HDF5 file.

    +
    Parameters
    + + + + + + +
    fileopened file (has to be writeable)
    pathpath of the DataSet
    keyname of the attribute
    datathe data to write (any supported type)
    optionsdump options
    +
    +
    +
    Returns
    The newly created DataSet
    + +
    +
    + +

    ◆ dumpAttribute() [2/2]

    + +
    +
    +
    +template<class T >
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Attribute H5Easy::dumpAttribute (File & file,
    const std::string & path,
    const std::string & key,
    const T & data,
    DumpMode mode = DumpMode::Create )
    +
    +inline
    +
    + +

    Write object (templated) to a (new) Attribute in an open HDF5 file.

    +
    Parameters
    + + + + + + +
    fileopened file (has to be writeable)
    pathpath of the DataSet
    keyname of the attribute
    datathe data to write (any supported type)
    modewrite mode
    +
    +
    +
    Returns
    The newly created DataSet
    + +
    +
    + +

    ◆ getShape()

    + +
    +
    + + + + + +
    + + + + + + + + + + + +
    std::vector< size_t > H5Easy::getShape (const File & file,
    const std::string & path )
    +
    +inline
    +
    + +

    Get the shape of an existing DataSet in an readable file.

    +
    Parameters
    + + + +
    fileopened file (has to be readable)
    pathPath of the DataSet
    +
    +
    +
    Returns
    the shape of the DataSet
    + +
    +
    + +

    ◆ getSize()

    + +
    +
    + + + + + +
    + + + + + + + + + + + +
    size_t H5Easy::getSize (const File & file,
    const std::string & path )
    +
    +inline
    +
    + +

    Get the size of an existing DataSet in an open HDF5 file.

    +
    Parameters
    + + + +
    fileopened file (has to be readable)
    pathpath of the DataSet
    +
    +
    +
    Returns
    Size of the DataSet
    + +
    +
    + +

    ◆ load() [1/2]

    + +
    +
    +
    +template<class T >
    + + + + + +
    + + + + + + + + + + + +
    T H5Easy::load (const File & file,
    const std::string & path )
    +
    +inline
    +
    + +

    Load a DataSet in an open HDF5 file to an object (templated).

    +
    Parameters
    + + + +
    fileopened file (has to be writeable)
    pathpath of the DataSet
    +
    +
    +
    Returns
    The read data
    + +
    +
    + +

    ◆ load() [2/2]

    + +
    +
    +
    +template<class T >
    + + + + + +
    + + + + + + + + + + + + + + + + +
    T H5Easy::load (const File & file,
    const std::string & path,
    const std::vector< size_t > & idx )
    +
    +inline
    +
    + +

    Load entry {i, j, ...} from a DataSet in an open HDF5 file to a scalar.

    +
    Parameters
    + + + + +
    fileopened file (has to be writeable)
    idxthe indices to load
    pathpath of the DataSet
    +
    +
    +
    Returns
    The read data
    + +
    +
    + +

    ◆ loadAttribute()

    + +
    +
    +
    +template<class T >
    + + + + + +
    + + + + + + + + + + + + + + + + +
    T H5Easy::loadAttribute (const File & file,
    const std::string & path,
    const std::string & key )
    +
    +inline
    +
    + +

    Load a Attribute in an open HDF5 file to an object (templated).

    +
    Parameters
    + + + + +
    fileopened file (has to be writeable)
    pathpath of the DataSet
    keyname of the attribute
    +
    +
    +
    Returns
    The read data
    + +
    +
    +
    +
    + + + + diff --git a/namespace_h5_easy.js b/namespace_h5_easy.js new file mode 100644 index 000000000..aed670dd5 --- /dev/null +++ b/namespace_h5_easy.js @@ -0,0 +1,26 @@ +var namespace_h5_easy = +[ + [ "Compression", "class_h5_easy_1_1_compression.html", "class_h5_easy_1_1_compression" ], + [ "DumpOptions", "class_h5_easy_1_1_dump_options.html", "class_h5_easy_1_1_dump_options" ], + [ "DumpMode", "namespace_h5_easy.html#a6d10754b7f2ada9e3296560032dd81a0", [ + [ "Create", "namespace_h5_easy.html#a6d10754b7f2ada9e3296560032dd81a0a686e697538050e4664636337cc3b834f", null ], + [ "Overwrite", "namespace_h5_easy.html#a6d10754b7f2ada9e3296560032dd81a0ada364eb37e143f6b2b5559aa03f5913a", null ] + ] ], + [ "Flush", "namespace_h5_easy.html#af71ce7ab9b99227bdead69993d1f3b62", [ + [ "False", "namespace_h5_easy.html#af71ce7ab9b99227bdead69993d1f3b62af8320b26d30ab433c5a54546d21f414c", null ], + [ "True", "namespace_h5_easy.html#af71ce7ab9b99227bdead69993d1f3b62af827cf462f62848df37c5e1e94a4da74", null ] + ] ], + [ "dump", "namespace_h5_easy.html#a7614d902c22b74a18fb29c42599a6785", null ], + [ "dump", "namespace_h5_easy.html#a2e96c80337866b79777e52faa7d692cc", null ], + [ "dump", "namespace_h5_easy.html#a5f0af85e0fe3ac03af665dae2a3e9e16", null ], + [ "dump", "namespace_h5_easy.html#a727340de29b032fa860412f6a69f215c", null ], + [ "dump", "namespace_h5_easy.html#a26be50f813db9257d77b0c25adfdf726", null ], + [ "dump", "namespace_h5_easy.html#a3d74bc6b96493dbef4fb3b4e237cff88", null ], + [ "dumpAttribute", "namespace_h5_easy.html#a4a395eb642d1a2d5055282dacf32ee94", null ], + [ "dumpAttribute", "namespace_h5_easy.html#a85cad90855dbb23ba985be58b447a6b2", null ], + [ "getShape", "namespace_h5_easy.html#aa178d03fd7b8d435b5b41f613c1eaa8b", null ], + [ "getSize", "namespace_h5_easy.html#a225c8cffbe78d15254ecde0c8a42958b", null ], + [ "load", "namespace_h5_easy.html#a35bd0e824fe3dca2e2d9f9b5e42a18aa", null ], + [ "load", "namespace_h5_easy.html#a97ce3122b92fcf8322ed7e8c460c6862", null ], + [ "loadAttribute", "namespace_h5_easy.html#a6dc2a2016da5196913ab7036700006fa", null ] +]; \ No newline at end of file diff --git a/namespace_high_five.html b/namespace_high_five.html new file mode 100644 index 000000000..d3002cee3 --- /dev/null +++ b/namespace_high_five.html @@ -0,0 +1,1070 @@ + + + + + + + +HighFive: HighFive Namespace Reference + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    + +
    HighFive Namespace Reference
    +
    +
    + + + + +

    +Namespaces

    namespace  deprecated
     
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Classes

    class  AllocationTime
     When are datasets allocated? More...
     
    class  AnnotateTraits
     
    class  AtomicType
     create an HDF5 DataType from a C++ type More...
     
    class  AtomicType< char[StrLen]>
     
    class  AtomicType< deprecated::FixedLenStringArray< StrLen > >
     
    class  AtomicType< std::complex< T > >
     
    class  Attribute
     Class representing an Attribute of a DataSet or Group. More...
     
    class  AttributeException
     Exception specific to HighFive Attribute interface. More...
     
    class  AttributePhaseChange
     Set threshold for attribute storage. More...
     
    class  Caching
     
    class  Chunking
     
    class  CompoundType
     Create a compound HDF5 datatype. More...
     
    class  CreateIntermediateGroup
     
    struct  CreationOrder
     
    class  DataSet
     Class representing a dataset. More...
     
    class  DataSetException
     Exception specific to HighFive DataSet interface. More...
     
    class  DataSpace
     Class representing the space (dimensions) of a DataSet. More...
     
    class  DataSpaceException
     Exception specific to HighFive DataSpace interface. More...
     
    class  DataType
     HDF5 Data Type. More...
     
    class  DataTypeException
     Exception specific to HighFive DataType interface. More...
     
    class  Deflate
     
    class  ElementSet
     
    class  EnumType
     Create a enum HDF5 datatype. More...
     
    class  EstimatedLinkInfo
     Set hints as to how many links to expect and their average length. More...
     
    class  Exception
     Basic HighFive Exception class. More...
     
    class  File
     File class. More...
     
    class  FileDriver
     file driver base concept More...
     
    class  FileException
     Exception specific to HighFive File interface. More...
     
    class  FileVersionBounds
     Configure the version bounds for the file. More...
     
    class  FixedLengthStringType
     
    class  Group
     Represents an hdf5 group. More...
     
    class  GroupException
     Exception specific to HighFive Group interface. More...
     
    struct  HDF5ErrMapper
     
    class  HyperSlab
     
    class  LinkCreationOrder
     Track and index creation order time. More...
     
    class  Logger
     A logger with supporting basic functionality. More...
     
    class  MetadataBlockSize
     Configure the metadata block size to use writing to files. More...
     
    class  MPIOFileAccess
     Configure MPI access for the file. More...
     
    class  MPIOFileDriver
     MPIIO Driver for Parallel HDF5. More...
     
    class  MpioNoCollectiveCause
     The cause for non-collective I/O. More...
     
    class  NodeTraits
     NodeTraits: Base class for Group and File. More...
     
    class  Object
     
    class  ObjectException
     Exception specific to HighFive Object interface. More...
     
    class  ObjectInfo
     A class for accessing hdf5 objects info. More...
     
    class  PathTraits
     
    class  PropertyException
     Exception specific to HighFive Property interface. More...
     
    class  PropertyList
     HDF5 property Lists. More...
     
    class  PropertyListBase
     Base Class for Property lists, providing global default. More...
     
    class  RawPropertyList
     
    class  Reference
     An HDF5 (object) reference type. More...
     
    class  ReferenceException
     Exception specific to HighFive Reference interface. More...
     
    struct  RegularHyperSlab
     
    class  Selection
     Selection: represent a view on a slice/part of a dataset. More...
     
    class  Shuffle
     
    class  SilenceHDF5
     Utility class to disable HDF5 stack printing inside a scope. More...
     
    class  SliceTraits
     
    class  StringType
     
    class  Szip
     
    class  UseCollectiveIO
     
    class  VariableLengthStringType
     
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Typedefs

    template<typename T >
    using unqualified_t = typename std::remove_const<typename std::remove_reference<T>::type>::type
     
    using ObjectCreateProps = PropertyList<PropertyType::OBJECT_CREATE>
     
    using FileCreateProps = PropertyList<PropertyType::FILE_CREATE>
     
    using FileAccessProps = PropertyList<PropertyType::FILE_ACCESS>
     
    using DataSetCreateProps = PropertyList<PropertyType::DATASET_CREATE>
     
    using DataSetAccessProps = PropertyList<PropertyType::DATASET_ACCESS>
     
    using DataTransferProps = PropertyList<PropertyType::DATASET_XFER>
     
    using GroupCreateProps = PropertyList<PropertyType::GROUP_CREATE>
     
    using GroupAccessProps = PropertyList<PropertyType::GROUP_ACCESS>
     
    using DataTypeCreateProps = PropertyList<PropertyType::DATATYPE_CREATE>
     
    using DataTypeAccessProps = PropertyList<PropertyType::DATATYPE_ACCESS>
     
    using StringCreateProps = PropertyList<PropertyType::STRING_CREATE>
     
    using AttributeCreateProps = PropertyList<PropertyType::ATTRIBUTE_CREATE>
     
    using ObjectCopyProps = PropertyList<PropertyType::OBJECT_COPY>
     
    using LinkCreateProps = PropertyList<PropertyType::LINK_CREATE>
     
    using LinkAccessProps = PropertyList<PropertyType::LINK_ACCESS>
     
    using float16_t = half_float::half
     
    + + + + + + + + + + + + + + + + + + + + + +

    +Enumerations

    enum class  IndexType : std::underlying_type< H5_index_t >::type { NAME = H5_INDEX_NAME +, CRT_ORDER = H5_INDEX_CRT_ORDER + }
     
    enum class  LinkType { Hard +, Soft +, External +, Other + }
     The possible types of group entries (link concept) More...
     
    enum class  StringPadding : std::underlying_type< H5T_str_t >::type { NullTerminated = H5T_STR_NULLTERM +, NullPadded = H5T_STR_NULLPAD +, SpacePadded = H5T_STR_SPACEPAD + }
     
    enum class  DataTypeClass {
    +  Time = 1 << 1 +, Integer = 1 << 2 +, Float = 1 << 3 +, String = 1 << 4 +,
    +  BitField = 1 << 5 +, Opaque = 1 << 6 +, Compound = 1 << 7 +, Reference = 1 << 8 +,
    +  Enum = 1 << 9 +, VarLen = 1 << 10 +, Array = 1 << 11 +, Invalid = 0 +
    + }
     Enum of Fundamental data classes. More...
     
    enum class  CharacterSet : std::underlying_type< H5T_cset_t >::type { Ascii = H5T_CSET_ASCII +, Utf8 = H5T_CSET_UTF8 + }
     
    enum class  ObjectType {
    +  File +, Group +, UserDataType +, DataSpace +,
    +  Dataset +, Attribute +, Other +
    + }
     Enum of the types of objects (H5O api) More...
     
    enum class  PropertyType : int {
    +  PropertyType::OBJECT_CREATE +, PropertyType::FILE_CREATE +, PropertyType::FILE_ACCESS +, PropertyType::DATASET_CREATE +,
    +  PropertyType::DATASET_ACCESS +, PropertyType::DATASET_XFER +, PropertyType::GROUP_CREATE +, PropertyType::GROUP_ACCESS +,
    +  PropertyType::DATATYPE_CREATE +, PropertyType::DATATYPE_ACCESS +, PropertyType::STRING_CREATE +, PropertyType::ATTRIBUTE_CREATE +,
    +  PropertyType::OBJECT_COPY +, PropertyType::LINK_CREATE +, PropertyType::LINK_ACCESS +
    + }
     Types of property lists. More...
     
    enum class  LogSeverity { Debug = HIGHFIVE_LOG_LEVEL_DEBUG +, Info = HIGHFIVE_LOG_LEVEL_INFO +, Warn = HIGHFIVE_LOG_LEVEL_WARN +, Error = HIGHFIVE_LOG_LEVEL_ERROR + }
     
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Functions

    EnumType< details::Boolean > create_enum_boolean ()
     
    size_t find_first_atomic_member_size (hid_t hid)
     
    template<typename T >
    DataType create_datatype ()
     Create a DataType instance representing type T.
     
    template<typename T >
    DataType create_and_check_datatype ()
     Create a DataType instance representing type T and perform a sanity check on its size.
     
    template<>
    DataType create_datatype< bool > ()
     
    size_t compute_total_size (const std::vector< size_t > &dims)
     
    std::vector< hsize_t > toHDF5SizeVector (const std::vector< size_t > &from)
     
    std::vector< size_t > toSTLSizeVector (const std::vector< hsize_t > &from)
     
    DataTypeClass operator| (DataTypeClass lhs, DataTypeClass rhs)
     
    DataTypeClass operator& (DataTypeClass lhs, DataTypeClass rhs)
     
    std::string to_string (LogSeverity severity)
     
    void default_logging_callback (LogSeverity severity, const std::string &message, const std::string &file, int line)
     
    Loggerget_global_logger ()
     Obtain a reference to the logger used by HighFive.
     
    void register_logging_callback (Logger::callback_type cb)
     Sets the callback that's used by the logger.
     
    +

    Typedef Documentation

    + +

    ◆ float16_t

    + +
    +
    + + + + +
    using HighFive::float16_t = half_float::half
    +
    + +
    +
    + +

    ◆ unqualified_t

    + +
    +
    +
    +template<typename T >
    + + + + +
    using HighFive::unqualified_t = typename std::remove_const<typename std::remove_reference<T>::type>::type
    +
    + +
    +
    +

    Enumeration Type Documentation

    + +

    ◆ CharacterSet

    + +
    +
    + + + + + +
    + + + + +
    enum class HighFive::CharacterSet : std::underlying_type< H5T_cset_t >::type
    +
    +strong
    +
    + + + +
    Enumerator
    Ascii 
    Utf8 
    + +
    +
    + +

    ◆ DataTypeClass

    + +
    +
    + + + + + +
    + + + + +
    enum class HighFive::DataTypeClass
    +
    +strong
    +
    + +

    Enum of Fundamental data classes.

    + + + + + + + + + + + + + +
    Enumerator
    Time 
    Integer 
    Float 
    String 
    BitField 
    Opaque 
    Compound 
    Reference 
    Enum 
    VarLen 
    Array 
    Invalid 
    + +
    +
    + +

    ◆ IndexType

    + +
    +
    + + + + + +
    + + + + +
    enum class HighFive::IndexType : std::underlying_type< H5_index_t >::type
    +
    +strong
    +
    + + + +
    Enumerator
    NAME 
    CRT_ORDER 
    + +
    +
    + +

    ◆ LinkType

    + +
    +
    + + + + + +
    + + + + +
    enum class HighFive::LinkType
    +
    +strong
    +
    + +

    The possible types of group entries (link concept)

    + + + + + +
    Enumerator
    Hard 
    Soft 
    External 
    Other 
    + +
    +
    + +

    ◆ LogSeverity

    + +
    +
    + + + + + +
    + + + + +
    enum class HighFive::LogSeverity
    +
    +strong
    +
    + + + + + +
    Enumerator
    Debug 
    Info 
    Warn 
    Error 
    + +
    +
    + +

    ◆ ObjectType

    + +
    +
    + + + + + +
    + + + + +
    enum class HighFive::ObjectType
    +
    +strong
    +
    + +

    Enum of the types of objects (H5O api)

    + + + + + + + + +
    Enumerator
    File 
    Group 
    UserDataType 
    DataSpace 
    Dataset 
    Attribute 
    Other 
    + +
    +
    + +

    ◆ StringPadding

    + +
    +
    + + + + + +
    + + + + +
    enum class HighFive::StringPadding : std::underlying_type< H5T_str_t >::type
    +
    +strong
    +
    + + + + +
    Enumerator
    NullTerminated 
    NullPadded 
    SpacePadded 
    + +
    +
    +

    Function Documentation

    + +

    ◆ compute_total_size()

    + +
    +
    + + + + + +
    + + + + + + + +
    size_t HighFive::compute_total_size (const std::vector< size_t > & dims)
    +
    +inline
    +
    + +
    +
    + +

    ◆ create_and_check_datatype()

    + +
    +
    +
    +template<typename T >
    + + + + + +
    + + + + + + + +
    DataType HighFive::create_and_check_datatype ()
    +
    +inline
    +
    + +

    Create a DataType instance representing type T and perform a sanity check on its size.

    + +
    +
    + +

    ◆ create_datatype()

    + +
    +
    +
    +template<typename T >
    + + + + + +
    + + + + + + + +
    DataType HighFive::create_datatype ()
    +
    +inline
    +
    + +

    Create a DataType instance representing type T.

    + +
    +
    + +

    ◆ create_datatype< bool >()

    + +
    +
    +
    +template<>
    + + + + + +
    + + + + + + + +
    DataType HighFive::create_datatype< bool > ()
    +
    +inline
    +
    + +
    +
    + +

    ◆ create_enum_boolean()

    + +
    +
    + + + + + +
    + + + + + + + +
    EnumType< details::Boolean > HighFive::create_enum_boolean ()
    +
    +inline
    +
    + +
    +
    + +

    ◆ default_logging_callback()

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + +
    void HighFive::default_logging_callback (LogSeverity severity,
    const std::string & message,
    const std::string & file,
    int line )
    +
    +inline
    +
    + +
    +
    + +

    ◆ find_first_atomic_member_size()

    + +
    +
    + + + + + +
    + + + + + + + +
    size_t HighFive::find_first_atomic_member_size (hid_t hid)
    +
    +inline
    +
    + +
    +
    + +

    ◆ get_global_logger()

    + +
    +
    + + + + + +
    + + + + + + + +
    Logger & HighFive::get_global_logger ()
    +
    +inline
    +
    + +

    Obtain a reference to the logger used by HighFive.

    +

    This uses a Meyers singleton, to ensure that the global logger is initialized with a safe default logger, before it is used.

    +

    Note: You probably don't need to call this function explicitly.

    + +
    +
    + +

    ◆ operator&()

    + +
    +
    + + + + + +
    + + + + + + + + + + + +
    DataTypeClass HighFive::operator& (DataTypeClass lhs,
    DataTypeClass rhs )
    +
    +inline
    +
    + +
    +
    + +

    ◆ operator|()

    + +
    +
    + + + + + +
    + + + + + + + + + + + +
    DataTypeClass HighFive::operator| (DataTypeClass lhs,
    DataTypeClass rhs )
    +
    +inline
    +
    + +
    +
    + +

    ◆ register_logging_callback()

    + +
    +
    + + + + + +
    + + + + + + + +
    void HighFive::register_logging_callback (Logger::callback_type cb)
    +
    +inline
    +
    + +

    Sets the callback that's used by the logger.

    + +
    +
    + +

    ◆ to_string()

    + +
    +
    + + + + + +
    + + + + + + + +
    std::string HighFive::to_string (LogSeverity severity)
    +
    +inline
    +
    + +
    +
    + +

    ◆ toHDF5SizeVector()

    + +
    +
    + + + + + +
    + + + + + + + +
    std::vector< hsize_t > HighFive::toHDF5SizeVector (const std::vector< size_t > & from)
    +
    +inline
    +
    + +
    +
    + +

    ◆ toSTLSizeVector()

    + +
    +
    + + + + + +
    + + + + + + + +
    std::vector< size_t > HighFive::toSTLSizeVector (const std::vector< hsize_t > & from)
    +
    +inline
    +
    + +
    +
    +
    +
    + + + + diff --git a/namespace_high_five.js b/namespace_high_five.js new file mode 100644 index 000000000..0bcd71471 --- /dev/null +++ b/namespace_high_five.js @@ -0,0 +1,160 @@ +var namespace_high_five = +[ + [ "deprecated", "namespace_high_five_1_1deprecated.html", "namespace_high_five_1_1deprecated" ], + [ "AllocationTime", "class_high_five_1_1_allocation_time.html", "class_high_five_1_1_allocation_time" ], + [ "AnnotateTraits", "class_high_five_1_1_annotate_traits.html", "class_high_five_1_1_annotate_traits" ], + [ "AtomicType", "class_high_five_1_1_atomic_type.html", "class_high_five_1_1_atomic_type" ], + [ "AtomicType< char[StrLen]>", "class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4.html", "class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4" ], + [ "AtomicType< deprecated::FixedLenStringArray< StrLen > >", "class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4.html", "class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4" ], + [ "AtomicType< std::complex< T > >", "class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4.html", "class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4" ], + [ "Attribute", "class_high_five_1_1_attribute.html", "class_high_five_1_1_attribute" ], + [ "AttributeException", "class_high_five_1_1_attribute_exception.html", "class_high_five_1_1_attribute_exception" ], + [ "AttributePhaseChange", "class_high_five_1_1_attribute_phase_change.html", "class_high_five_1_1_attribute_phase_change" ], + [ "Caching", "class_high_five_1_1_caching.html", "class_high_five_1_1_caching" ], + [ "Chunking", "class_high_five_1_1_chunking.html", "class_high_five_1_1_chunking" ], + [ "CompoundType", "class_high_five_1_1_compound_type.html", "class_high_five_1_1_compound_type" ], + [ "CreateIntermediateGroup", "class_high_five_1_1_create_intermediate_group.html", "class_high_five_1_1_create_intermediate_group" ], + [ "CreationOrder", "struct_high_five_1_1_creation_order.html", "struct_high_five_1_1_creation_order" ], + [ "DataSet", "class_high_five_1_1_data_set.html", "class_high_five_1_1_data_set" ], + [ "DataSetException", "class_high_five_1_1_data_set_exception.html", "class_high_five_1_1_data_set_exception" ], + [ "DataSpace", "class_high_five_1_1_data_space.html", "class_high_five_1_1_data_space" ], + [ "DataSpaceException", "class_high_five_1_1_data_space_exception.html", "class_high_five_1_1_data_space_exception" ], + [ "DataType", "class_high_five_1_1_data_type.html", "class_high_five_1_1_data_type" ], + [ "DataTypeException", "class_high_five_1_1_data_type_exception.html", "class_high_five_1_1_data_type_exception" ], + [ "Deflate", "class_high_five_1_1_deflate.html", "class_high_five_1_1_deflate" ], + [ "ElementSet", "class_high_five_1_1_element_set.html", "class_high_five_1_1_element_set" ], + [ "EnumType", "class_high_five_1_1_enum_type.html", "class_high_five_1_1_enum_type" ], + [ "EstimatedLinkInfo", "class_high_five_1_1_estimated_link_info.html", "class_high_five_1_1_estimated_link_info" ], + [ "Exception", "class_high_five_1_1_exception.html", "class_high_five_1_1_exception" ], + [ "File", "class_high_five_1_1_file.html", "class_high_five_1_1_file" ], + [ "FileDriver", "class_high_five_1_1_file_driver.html", null ], + [ "FileException", "class_high_five_1_1_file_exception.html", "class_high_five_1_1_file_exception" ], + [ "FileVersionBounds", "class_high_five_1_1_file_version_bounds.html", "class_high_five_1_1_file_version_bounds" ], + [ "FixedLengthStringType", "class_high_five_1_1_fixed_length_string_type.html", "class_high_five_1_1_fixed_length_string_type" ], + [ "Group", "class_high_five_1_1_group.html", "class_high_five_1_1_group" ], + [ "GroupException", "class_high_five_1_1_group_exception.html", "class_high_five_1_1_group_exception" ], + [ "HDF5ErrMapper", "struct_high_five_1_1_h_d_f5_err_mapper.html", null ], + [ "HyperSlab", "class_high_five_1_1_hyper_slab.html", "class_high_five_1_1_hyper_slab" ], + [ "LinkCreationOrder", "class_high_five_1_1_link_creation_order.html", "class_high_five_1_1_link_creation_order" ], + [ "Logger", "class_high_five_1_1_logger.html", "class_high_five_1_1_logger" ], + [ "MetadataBlockSize", "class_high_five_1_1_metadata_block_size.html", "class_high_five_1_1_metadata_block_size" ], + [ "MPIOFileAccess", "class_high_five_1_1_m_p_i_o_file_access.html", "class_high_five_1_1_m_p_i_o_file_access" ], + [ "MPIOFileDriver", "class_high_five_1_1_m_p_i_o_file_driver.html", "class_high_five_1_1_m_p_i_o_file_driver" ], + [ "MpioNoCollectiveCause", "class_high_five_1_1_mpio_no_collective_cause.html", "class_high_five_1_1_mpio_no_collective_cause" ], + [ "NodeTraits", "class_high_five_1_1_node_traits.html", "class_high_five_1_1_node_traits" ], + [ "Object", "class_high_five_1_1_object.html", "class_high_five_1_1_object" ], + [ "ObjectException", "class_high_five_1_1_object_exception.html", "class_high_five_1_1_object_exception" ], + [ "ObjectInfo", "class_high_five_1_1_object_info.html", "class_high_five_1_1_object_info" ], + [ "PathTraits", "class_high_five_1_1_path_traits.html", "class_high_five_1_1_path_traits" ], + [ "PropertyException", "class_high_five_1_1_property_exception.html", "class_high_five_1_1_property_exception" ], + [ "PropertyList", "class_high_five_1_1_property_list.html", "class_high_five_1_1_property_list" ], + [ "PropertyListBase", "class_high_five_1_1_property_list_base.html", "class_high_five_1_1_property_list_base" ], + [ "RawPropertyList", "class_high_five_1_1_raw_property_list.html", "class_high_five_1_1_raw_property_list" ], + [ "Reference", "class_high_five_1_1_reference.html", "class_high_five_1_1_reference" ], + [ "ReferenceException", "class_high_five_1_1_reference_exception.html", "class_high_five_1_1_reference_exception" ], + [ "RegularHyperSlab", "struct_high_five_1_1_regular_hyper_slab.html", "struct_high_five_1_1_regular_hyper_slab" ], + [ "Selection", "class_high_five_1_1_selection.html", "class_high_five_1_1_selection" ], + [ "Shuffle", "class_high_five_1_1_shuffle.html", "class_high_five_1_1_shuffle" ], + [ "SilenceHDF5", "class_high_five_1_1_silence_h_d_f5.html", "class_high_five_1_1_silence_h_d_f5" ], + [ "SliceTraits", "class_high_five_1_1_slice_traits.html", "class_high_five_1_1_slice_traits" ], + [ "StringType", "class_high_five_1_1_string_type.html", "class_high_five_1_1_string_type" ], + [ "Szip", "class_high_five_1_1_szip.html", "class_high_five_1_1_szip" ], + [ "UseCollectiveIO", "class_high_five_1_1_use_collective_i_o.html", "class_high_five_1_1_use_collective_i_o" ], + [ "VariableLengthStringType", "class_high_five_1_1_variable_length_string_type.html", "class_high_five_1_1_variable_length_string_type" ], + [ "AttributeCreateProps", "group___property_lists.html#ga3ad092372f31951daaf8a51c0acdea2e", null ], + [ "DataSetAccessProps", "group___property_lists.html#ga7491cb84edb6012aa97f96ae21564d4c", null ], + [ "DataSetCreateProps", "group___property_lists.html#ga8877fba7ca191b3b155888a625a764c3", null ], + [ "DataTransferProps", "group___property_lists.html#ga905dd430e77d8ddf3086f49ec39c6f03", null ], + [ "DataTypeAccessProps", "group___property_lists.html#gaa41cb6d6489aa2e82a3dfd046daf6d3f", null ], + [ "DataTypeCreateProps", "group___property_lists.html#ga75c7721bfccfc8e093c53ba40a281b39", null ], + [ "FileAccessProps", "group___property_lists.html#ga358ba8fbb023f5e85dc6bb43219ed42c", null ], + [ "FileCreateProps", "group___property_lists.html#ga8bdc886dc6c848bca97870e4b1d08336", null ], + [ "float16_t", "namespace_high_five.html#aadbc34acfa3c496dbcb2eb3992fac573", null ], + [ "GroupAccessProps", "group___property_lists.html#ga94129b25dc64ff0d23c98fbf3299d91c", null ], + [ "GroupCreateProps", "group___property_lists.html#gab7d50ee5d71f2ff1bab9bf1757640f3f", null ], + [ "LinkAccessProps", "group___property_lists.html#ga6e5fcdabe6e261340645676ebbc6c4c9", null ], + [ "LinkCreateProps", "group___property_lists.html#ga174b81b71b9c60f6b29ae68860bb7721", null ], + [ "ObjectCopyProps", "group___property_lists.html#ga26c5b877905940b89b22a7fe6576bc32", null ], + [ "ObjectCreateProps", "group___property_lists.html#ga171296b98ab8d5f898fb9bb6e3179292", null ], + [ "StringCreateProps", "group___property_lists.html#gaaf41437769c5539c5c184c4a738fec8d", null ], + [ "unqualified_t", "namespace_high_five.html#aa9e6633e6c8cdf9f4a092c1d7509774a", null ], + [ "CharacterSet", "namespace_high_five.html#a7133a7a677541ffa6780f5ca5eee6db9", [ + [ "Ascii", "namespace_high_five.html#a7133a7a677541ffa6780f5ca5eee6db9a76b8d0dcd02ccaf203c167ced6d7ef31", null ], + [ "Utf8", "namespace_high_five.html#a7133a7a677541ffa6780f5ca5eee6db9a81f91ccd37ce1d232cbfc1520374319d", null ] + ] ], + [ "DataTypeClass", "namespace_high_five.html#ad43e509d198c83c5484c796babdd847b", [ + [ "Time", "namespace_high_five.html#ad43e509d198c83c5484c796babdd847baa76d4ef5f3f6a672bbfab2865563e530", null ], + [ "Integer", "namespace_high_five.html#ad43e509d198c83c5484c796babdd847baa0faef0851b4294c06f2b94bb1cb2044", null ], + [ "Float", "namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba22ae0e2b89e5e3d477f988cc36d3272b", null ], + [ "String", "namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba27118326006d3829667a400ad23d5d98", null ], + [ "BitField", "namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba2f706038ccc6843d07ebf1a34051a0a8", null ], + [ "Opaque", "namespace_high_five.html#ad43e509d198c83c5484c796babdd847bafaa90538de35640e4b1e31ccf35b6eb5", null ], + [ "Compound", "namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba26154ea007c65f860de5333a555a56cf", null ], + [ "Reference", "namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba63d5049791d9d79d86e9a108b0a999ca", null ], + [ "Enum", "namespace_high_five.html#ad43e509d198c83c5484c796babdd847bacf20423ed48998082c20099488a0917c", null ], + [ "VarLen", "namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba72c6842c18d1470d1c991f865a2fab3a", null ], + [ "Array", "namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba4410ec34d9e6c1a68100ca0ce033fb17", null ], + [ "Invalid", "namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba4bbb8f967da6d1a610596d7257179c2b", null ] + ] ], + [ "IndexType", "namespace_high_five.html#afed91f5950b7a58ec51a33d260773996", [ + [ "NAME", "namespace_high_five.html#afed91f5950b7a58ec51a33d260773996aad32e604e17467fc435538334fbddf3e", null ], + [ "CRT_ORDER", "namespace_high_five.html#afed91f5950b7a58ec51a33d260773996ac83c60110da7010a6dd3168fb2c8b8a7", null ] + ] ], + [ "LinkType", "namespace_high_five.html#abe5895b8113887accd6bff2392b24c40", [ + [ "Hard", "namespace_high_five.html#abe5895b8113887accd6bff2392b24c40a3656183169810334a96b91129dc9d881", null ], + [ "Soft", "namespace_high_five.html#abe5895b8113887accd6bff2392b24c40a682160fc6ad12f783f70608a9b46b9b9", null ], + [ "External", "namespace_high_five.html#abe5895b8113887accd6bff2392b24c40ab206a1b4ea1097761f78e8876f6da779", null ], + [ "Other", "namespace_high_five.html#abe5895b8113887accd6bff2392b24c40a6311ae17c1ee52b36e68aaf4ad066387", null ] + ] ], + [ "LogSeverity", "namespace_high_five.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246", [ + [ "Debug", "namespace_high_five.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246aa603905470e2a5b8c13e96b579ef0dba", null ], + [ "Info", "namespace_high_five.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246a4059b0251f66a18cb56f544728796875", null ], + [ "Warn", "namespace_high_five.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246a56525ae64d370c0b448ac0d60710ef17", null ], + [ "Error", "namespace_high_five.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246a902b0d55fddef6f8d651fe1035b7d4bd", null ] + ] ], + [ "ObjectType", "namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474", [ + [ "File", "namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474a0b27918290ff5323bea1e3b78a9cf04e", null ], + [ "Group", "namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474a03937134cedab9078be39a77ee3a48a0", null ], + [ "UserDataType", "namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474a99f109983e5e6524be1f6fbcc819691c", null ], + [ "DataSpace", "namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474a546863182b9bd136e5295389d0e8343e", null ], + [ "Dataset", "namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474a239658e016e3d5d06ae719d280a79fec", null ], + [ "Attribute", "namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474af2bbdf9f72c085adc4d0404e370f0f4c", null ], + [ "Other", "namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474a6311ae17c1ee52b36e68aaf4ad066387", null ] + ] ], + [ "PropertyType", "group___property_lists.html#ga097a358bdda37ff6e6b48d9f43664ad4", [ + [ "OBJECT_CREATE", "group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4afcea7f1287d62768c2fc0ee0cf18023f", null ], + [ "FILE_CREATE", "group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a5534109883a2d6699c0262b228c14f67", null ], + [ "FILE_ACCESS", "group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a8f93e8ee202d29ba296afdfb6c08550e", null ], + [ "DATASET_CREATE", "group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4aafd89ef46ba1fc317f8b8cfadbc8e89d", null ], + [ "DATASET_ACCESS", "group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a1f9f49c3a9b29c99fd336a46e1fb0b8c", null ], + [ "DATASET_XFER", "group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4adbac4060e0053cc521283eb9f7d0869e", null ], + [ "GROUP_CREATE", "group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4aa9f9694169963af7096ae421df5025ce", null ], + [ "GROUP_ACCESS", "group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4aff3aa98325265641dfb5b6c727973774", null ], + [ "DATATYPE_CREATE", "group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a4a9bef3e26735c56f85701720da97704", null ], + [ "DATATYPE_ACCESS", "group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a023c2a1da4192ec57c9589f2adcf0375", null ], + [ "STRING_CREATE", "group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a8c7bdf2b95146589251f8ecff10ca084", null ], + [ "ATTRIBUTE_CREATE", "group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a518c30284a8061ffe051004a0670f135", null ], + [ "OBJECT_COPY", "group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a9b0ceee4dc388106832eabb5522d4506", null ], + [ "LINK_CREATE", "group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a57fb2f103675cde088df70923f6224b1", null ], + [ "LINK_ACCESS", "group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a49f33864cd831c0b35b59fc99cb75293", null ] + ] ], + [ "StringPadding", "namespace_high_five.html#ad9265809238043adba9b446b5c61e953", [ + [ "NullTerminated", "namespace_high_five.html#ad9265809238043adba9b446b5c61e953ab90111c75972f26b57ab364724b34921", null ], + [ "NullPadded", "namespace_high_five.html#ad9265809238043adba9b446b5c61e953a5b56f95d458ea27c9c62e62260bbef81", null ], + [ "SpacePadded", "namespace_high_five.html#ad9265809238043adba9b446b5c61e953a4ca955dd1a77b70b5a0a28512c0e5f24", null ] + ] ], + [ "compute_total_size", "namespace_high_five.html#ae473192dc3e4e3f42c470f682817a32c", null ], + [ "create_and_check_datatype", "namespace_high_five.html#a43d3946c0bb037e99c803ec90dc247b4", null ], + [ "create_datatype", "namespace_high_five.html#a6f3b307cc5b6bd82d6360f13cacac2de", null ], + [ "create_datatype< bool >", "namespace_high_five.html#aaf8cbe7c9df6f34f493d21ad51517fc9", null ], + [ "create_enum_boolean", "namespace_high_five.html#a361e2132e78bca627125eba4295b9ae6", null ], + [ "default_logging_callback", "namespace_high_five.html#abf6fe5be71a00bfb4d6b5f65e6248132", null ], + [ "find_first_atomic_member_size", "namespace_high_five.html#ac4e5e1ccbc6a1c20bcd581f71fb5e6d5", null ], + [ "get_global_logger", "namespace_high_five.html#ad2f60aec2c40524b30248aac67f5eeb5", null ], + [ "operator&", "namespace_high_five.html#ad11e24eec8492d0d2c977b58b1e64dbc", null ], + [ "operator|", "namespace_high_five.html#a98688378bfbae23ab35a06c6916c5a44", null ], + [ "register_logging_callback", "namespace_high_five.html#a4fc91cda37008aea40efbb20a39cf1c9", null ], + [ "to_string", "namespace_high_five.html#ace8358255410138c5e223747e2a06f36", null ], + [ "toHDF5SizeVector", "namespace_high_five.html#acd815ee14c714bfa4ba0f05acc6e486d", null ], + [ "toSTLSizeVector", "namespace_high_five.html#a1de5c5eaf17007862e5cf63ec186a64e", null ] +]; \ No newline at end of file diff --git a/namespace_high_five_1_1deprecated.html b/namespace_high_five_1_1deprecated.html new file mode 100644 index 000000000..07ee08078 --- /dev/null +++ b/namespace_high_five_1_1deprecated.html @@ -0,0 +1,118 @@ + + + + + + + +HighFive: HighFive::deprecated Namespace Reference + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    + +
    HighFive::deprecated Namespace Reference
    +
    +
    + + + + + +

    +Classes

    class  FixedLenStringArray
     A structure representing a set of fixed-length strings. More...
     
    +
    +
    + + + + diff --git a/namespace_high_five_1_1deprecated.js b/namespace_high_five_1_1deprecated.js new file mode 100644 index 000000000..92c4175b4 --- /dev/null +++ b/namespace_high_five_1_1deprecated.js @@ -0,0 +1,4 @@ +var namespace_high_five_1_1deprecated = +[ + [ "FixedLenStringArray", "class_high_five_1_1deprecated_1_1_fixed_len_string_array.html", "class_high_five_1_1deprecated_1_1_fixed_len_string_array" ] +]; \ No newline at end of file diff --git a/namespacemembers.html b/namespacemembers.html new file mode 100644 index 000000000..15cbb0591 --- /dev/null +++ b/namespacemembers.html @@ -0,0 +1,204 @@ + + + + + + + +HighFive: Namespace Members + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    Here is a list of all namespace members with links to the namespace documentation for each member:
    + +

    - a -

    + + +

    - c -

    + + +

    - d -

    + + +

    - f -

    + + +

    - g -

    + + +

    - i -

    + + +

    - l -

    + + +

    - o -

    + + +

    - p -

    + + +

    - r -

      +
    • register_logging_callback() : HighFive
    • +
    + + +

    - s -

    + + +

    - t -

    + + +

    - u -

    +
    +
    + + + + diff --git a/namespacemembers_enum.html b/namespacemembers_enum.html new file mode 100644 index 000000000..84cd9ee54 --- /dev/null +++ b/namespacemembers_enum.html @@ -0,0 +1,117 @@ + + + + + + + +HighFive: Namespace Members + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    Here is a list of all namespace enums with links to the namespace documentation for each enum:
    +
    +
    + + + + diff --git a/namespacemembers_func.html b/namespacemembers_func.html new file mode 100644 index 000000000..0402c9489 --- /dev/null +++ b/namespacemembers_func.html @@ -0,0 +1,127 @@ + + + + + + + +HighFive: Namespace Members + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    Here is a list of all namespace functions with links to the namespace documentation for each function:
    +
    +
    + + + + diff --git a/namespacemembers_type.html b/namespacemembers_type.html new file mode 100644 index 000000000..6baf7ee3a --- /dev/null +++ b/namespacemembers_type.html @@ -0,0 +1,124 @@ + + + + + + + +HighFive: Namespace Members + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    Here is a list of all namespace typedefs with links to the namespace documentation for each typedef:
    +
    +
    + + + + diff --git a/namespaces.html b/namespaces.html new file mode 100644 index 000000000..5f0d2105e --- /dev/null +++ b/namespaces.html @@ -0,0 +1,180 @@ + + + + + + + +HighFive: Namespace List + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    Namespace List
    +
    +
    +
    Here is a list of all namespaces with brief descriptions:
    +
    [detail level 123]
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
     NH5EasyRead/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated, and accept:
     CCompressionSignal to set compression level for written DataSets
     CDumpOptionsDefine options for dumping data
     NHighFive
     Ndeprecated
     CFixedLenStringArrayA structure representing a set of fixed-length strings
     CAllocationTimeWhen are datasets allocated?
     CAnnotateTraits
     CAtomicTypeCreate an HDF5 DataType from a C++ type
     CAtomicType< char[StrLen]>
     CAtomicType< deprecated::FixedLenStringArray< StrLen > >
     CAtomicType< std::complex< T > >
     CAttributeClass representing an Attribute of a DataSet or Group
     CAttributeExceptionException specific to HighFive Attribute interface
     CAttributePhaseChangeSet threshold for attribute storage
     CCaching
     CChunking
     CCompoundTypeCreate a compound HDF5 datatype
     Cmember_defUse for defining a sub-type of compound type
     CCreateIntermediateGroup
     CCreationOrder
     CDataSetClass representing a dataset
     CDataSetExceptionException specific to HighFive DataSet interface
     CDataSpaceClass representing the space (dimensions) of a DataSet
     CDataSpaceExceptionException specific to HighFive DataSpace interface
     CDataTypeHDF5 Data Type
     CDataTypeExceptionException specific to HighFive DataType interface
     CDeflate
     CElementSet
     CEnumTypeCreate a enum HDF5 datatype
     Cmember_defUse for defining a member of enum type
     CEstimatedLinkInfoSet hints as to how many links to expect and their average length
     CExceptionBasic HighFive Exception class
     CFileFile class
     CFileDriverFile driver base concept
     CFileExceptionException specific to HighFive File interface
     CFileVersionBoundsConfigure the version bounds for the file
     CFixedLengthStringType
     CGroupRepresents an hdf5 group
     CGroupExceptionException specific to HighFive Group interface
     CHDF5ErrMapper
     CHyperSlab
     CLinkCreationOrderTrack and index creation order time
     CLoggerA logger with supporting basic functionality
     CMetadataBlockSizeConfigure the metadata block size to use writing to files
     CMPIOFileAccessConfigure MPI access for the file
     CMPIOFileDriverMPIIO Driver for Parallel HDF5
     CMpioNoCollectiveCauseThe cause for non-collective I/O
     CNodeTraitsNodeTraits: Base class for Group and File
     CObject
     CObjectExceptionException specific to HighFive Object interface
     CObjectInfoA class for accessing hdf5 objects info
     CPathTraits
     CPropertyExceptionException specific to HighFive Property interface
     CPropertyListHDF5 property Lists
     CPropertyListBaseBase Class for Property lists, providing global default
     CRawPropertyList
     CReferenceAn HDF5 (object) reference type
     CReferenceExceptionException specific to HighFive Reference interface
     CRegularHyperSlab
     CSelectionSelection: represent a view on a slice/part of a dataset
     CShuffle
     CSilenceHDF5Utility class to disable HDF5 stack printing inside a scope
     CSliceTraits
     CStringType
     CSzip
     CUseCollectiveIO
     CVariableLengthStringType
    +
    +
    +
    + + + + diff --git a/namespaces_dup.js b/namespaces_dup.js new file mode 100644 index 000000000..6bcb1d4db --- /dev/null +++ b/namespaces_dup.js @@ -0,0 +1,5 @@ +var namespaces_dup = +[ + [ "H5Easy", "namespace_h5_easy.html", "namespace_h5_easy" ], + [ "HighFive", "namespace_high_five.html", "namespace_high_five" ] +]; \ No newline at end of file diff --git a/nav_f.png b/nav_f.png new file mode 100644 index 000000000..72a58a529 Binary files /dev/null and b/nav_f.png differ diff --git a/nav_fd.png b/nav_fd.png new file mode 100644 index 000000000..032fbdd4c Binary files /dev/null and b/nav_fd.png differ diff --git a/nav_g.png b/nav_g.png new file mode 100644 index 000000000..2093a237a Binary files /dev/null and b/nav_g.png differ diff --git a/nav_h.png b/nav_h.png new file mode 100644 index 000000000..33389b101 Binary files /dev/null and b/nav_h.png differ diff --git a/nav_hd.png b/nav_hd.png new file mode 100644 index 000000000..de80f18ad Binary files /dev/null and b/nav_hd.png differ diff --git a/navtree.css b/navtree.css new file mode 100644 index 000000000..69211d4a7 --- /dev/null +++ b/navtree.css @@ -0,0 +1,149 @@ +#nav-tree .children_ul { + margin:0; + padding:4px; +} + +#nav-tree ul { + list-style:none outside none; + margin:0px; + padding:0px; +} + +#nav-tree li { + white-space:nowrap; + margin:0px; + padding:0px; +} + +#nav-tree .plus { + margin:0px; +} + +#nav-tree .selected { + background-image: url('tab_a.png'); + background-repeat:repeat-x; + color: var(--nav-text-active-color); + text-shadow: var(--nav-text-active-shadow); +} + +#nav-tree .selected .arrow { + color: var(--nav-arrow-selected-color); + text-shadow: none; +} + +#nav-tree img { + margin:0px; + padding:0px; + border:0px; + vertical-align: middle; +} + +#nav-tree a { + text-decoration:none; + padding:0px; + margin:0px; +} + +#nav-tree .label { + margin:0px; + padding:0px; + font: 12px var(--font-family-nav); +} + +#nav-tree .label a { + padding:2px; +} + +#nav-tree .selected a { + text-decoration:none; + color:var(--nav-text-active-color); +} + +#nav-tree .children_ul { + margin:0px; + padding:0px; +} + +#nav-tree .item { + margin:0px; + padding:0px; +} + +#nav-tree { + padding: 0px 0px; + font-size:14px; + overflow:auto; +} + +#doc-content { + overflow:auto; + display:block; + padding:0px; + margin:0px; + -webkit-overflow-scrolling : touch; /* iOS 5+ */ +} + +#side-nav { + padding:0 6px 0 0; + margin: 0px; + display:block; + position: absolute; + left: 0px; + width: $width; + overflow : hidden; +} + +.ui-resizable .ui-resizable-handle { + display:block; +} + +.ui-resizable-e { + background-image:var(--nav-splitbar-image); + background-size:100%; + background-repeat:repeat-y; + background-attachment: scroll; + cursor:ew-resize; + height:100%; + right:0; + top:0; + width:6px; +} + +.ui-resizable-handle { + display:none; + font-size:0.1px; + position:absolute; + z-index:1; +} + +#nav-tree-contents { + margin: 6px 0px 0px 0px; +} + +#nav-tree { + background-repeat:repeat-x; + background-color: var(--nav-background-color); + -webkit-overflow-scrolling : touch; /* iOS 5+ */ +} + +#nav-sync { + position:absolute; + top:5px; + right:24px; + z-index:0; +} + +#nav-sync img { + opacity:0.3; +} + +#nav-sync img:hover { + opacity:0.9; +} + +@media print +{ + #nav-tree { display: none; } + div.ui-resizable-handle { display: none; position: relative; } +} + diff --git a/navtree.js b/navtree.js new file mode 100644 index 000000000..884b79b6d --- /dev/null +++ b/navtree.js @@ -0,0 +1,482 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ + +function initNavTree(toroot,relpath) { + let navTreeSubIndices = []; + const ARROW_DOWN = '▼'; + const ARROW_RIGHT = '►'; + const NAVPATH_COOKIE_NAME = ''+'navpath'; + + const getData = function(varName) { + const i = varName.lastIndexOf('/'); + const n = i>=0 ? varName.substring(i+1) : varName; + return eval(n.replace(/-/g,'_')); + } + + const stripPath = function(uri) { + return uri.substring(uri.lastIndexOf('/')+1); + } + + const stripPath2 = function(uri) { + const i = uri.lastIndexOf('/'); + const s = uri.substring(i+1); + const m = uri.substring(0,i+1).match(/\/d\w\/d\w\w\/$/); + return m ? uri.substring(i-6) : s; + } + + const hashValue = function() { + return $(location).attr('hash').substring(1).replace(/[^\w-]/g,''); + } + + const hashUrl = function() { + return '#'+hashValue(); + } + + const pathName = function() { + return $(location).attr('pathname').replace(/[^-A-Za-z0-9+&@#/%?=~_|!:,.;()]/g, ''); + } + + const storeLink = function(link) { + if (!$("#nav-sync").hasClass('sync')) { + Cookie.writeSetting(NAVPATH_COOKIE_NAME,link,0); + } + } + + const deleteLink = function() { + Cookie.eraseSetting(NAVPATH_COOKIE_NAME); + } + + const cachedLink = function() { + return Cookie.readSetting(NAVPATH_COOKIE_NAME,''); + } + + const getScript = function(scriptName,func) { + const head = document.getElementsByTagName("head")[0]; + const script = document.createElement('script'); + script.id = scriptName; + script.type = 'text/javascript'; + script.onload = func; + script.src = scriptName+'.js'; + head.appendChild(script); + } + + const createIndent = function(o,domNode,node) { + let level=-1; + let n = node; + while (n.parentNode) { level++; n=n.parentNode; } + if (node.childrenData) { + const imgNode = document.createElement("span"); + imgNode.className = 'arrow'; + imgNode.style.paddingLeft=(16*level).toString()+'px'; + imgNode.innerHTML=ARROW_RIGHT; + node.plus_img = imgNode; + node.expandToggle = document.createElement("a"); + node.expandToggle.href = "javascript:void(0)"; + node.expandToggle.onclick = function() { + if (node.expanded) { + $(node.getChildrenUL()).slideUp("fast"); + node.plus_img.innerHTML=ARROW_RIGHT; + node.expanded = false; + } else { + expandNode(o, node, false, true); + } + } + node.expandToggle.appendChild(imgNode); + domNode.appendChild(node.expandToggle); + } else { + let span = document.createElement("span"); + span.className = 'arrow'; + span.style.width = 16*(level+1)+'px'; + span.innerHTML = ' '; + domNode.appendChild(span); + } + } + + let animationInProgress = false; + + const gotoAnchor = function(anchor,aname) { + let pos, docContent = $('#doc-content'); + let ancParent = $(anchor.parent()); + if (ancParent.hasClass('memItemLeft') || ancParent.hasClass('memtitle') || + ancParent.hasClass('fieldname') || ancParent.hasClass('fieldtype') || + ancParent.is(':header')) { + pos = ancParent.position().top; + } else if (anchor.position()) { + pos = anchor.position().top; + } + if (pos) { + const dcOffset = docContent.offset().top; + const dcHeight = docContent.height(); + const dcScrHeight = docContent[0].scrollHeight + const dcScrTop = docContent.scrollTop(); + let dist = Math.abs(Math.min(pos-dcOffset,dcScrHeight-dcHeight-dcScrTop)); + animationInProgress = true; + docContent.animate({ + scrollTop: pos + dcScrTop - dcOffset + },Math.max(50,Math.min(500,dist)),function() { + window.location.href=aname; + animationInProgress=false; + }); + } + } + + const newNode = function(o, po, text, link, childrenData, lastNode) { + const node = { + children : [], + childrenData : childrenData, + depth : po.depth + 1, + relpath : po.relpath, + isLast : lastNode, + li : document.createElement("li"), + parentNode : po, + itemDiv : document.createElement("div"), + labelSpan : document.createElement("span"), + label : document.createTextNode(text), + expanded : false, + childrenUL : null, + getChildrenUL : function() { + if (!this.childrenUL) { + this.childrenUL = document.createElement("ul"); + this.childrenUL.className = "children_ul"; + this.childrenUL.style.display = "none"; + this.li.appendChild(node.childrenUL); + } + return node.childrenUL; + }, + }; + + node.itemDiv.className = "item"; + node.labelSpan.className = "label"; + createIndent(o,node.itemDiv,node); + node.itemDiv.appendChild(node.labelSpan); + node.li.appendChild(node.itemDiv); + + const a = document.createElement("a"); + node.labelSpan.appendChild(a); + po.getChildrenUL().appendChild(node.li); + a.appendChild(node.label); + if (link) { + let url; + if (link.substring(0,1)=='^') { + url = link.substring(1); + link = url; + } else { + url = node.relpath+link; + } + a.className = stripPath(link.replace('#',':')); + if (link.indexOf('#')!=-1) { + const aname = '#'+link.split('#')[1]; + const srcPage = stripPath(pathName()); + const targetPage = stripPath(link.split('#')[0]); + a.href = srcPage!=targetPage ? url : aname; + a.onclick = function() { + storeLink(link); + aPPar = $(a).parent().parent(); + if (!aPPar.hasClass('selected')) { + $('.item').removeClass('selected'); + $('.item').removeAttr('id'); + aPPar.addClass('selected'); + aPPar.attr('id','selected'); + } + const anchor = $(aname); + gotoAnchor(anchor,aname); + }; + } else { + a.href = url; + a.onclick = () => storeLink(link); + } + } else if (childrenData != null) { + a.className = "nolink"; + a.href = "javascript:void(0)"; + a.onclick = node.expandToggle.onclick; + } + return node; + } + + const showRoot = function() { + const headerHeight = $("#top").height(); + const footerHeight = $("#nav-path").height(); + const windowHeight = $(window).height() - headerHeight - footerHeight; + (function() { // retry until we can scroll to the selected item + try { + const navtree=$('#nav-tree'); + navtree.scrollTo('#selected',100,{offset:-windowHeight/2}); + } catch (err) { + setTimeout(arguments.callee, 0); + } + })(); + } + + const expandNode = function(o, node, imm, setFocus) { + if (node.childrenData && !node.expanded) { + if (typeof(node.childrenData)==='string') { + const varName = node.childrenData; + getScript(node.relpath+varName,function() { + node.childrenData = getData(varName); + expandNode(o, node, imm, setFocus); + }); + } else { + if (!node.childrenVisited) { + getNode(o, node); + } + $(node.getChildrenUL()).slideDown("fast"); + node.plus_img.innerHTML = ARROW_DOWN; + node.expanded = true; + if (setFocus) { + $(node.expandToggle).focus(); + } + } + } + } + + const glowEffect = function(n,duration) { + n.addClass('glow').delay(duration).queue(function(next) { + $(this).removeClass('glow');next(); + }); + } + + const highlightAnchor = function() { + const aname = hashUrl(); + const anchor = $(aname); + if (anchor.parent().attr('class')=='memItemLeft') { + let rows = $('.memberdecls tr[class$="'+hashValue()+'"]'); + glowEffect(rows.children(),300); // member without details + } else if (anchor.parent().attr('class')=='fieldname') { + glowEffect(anchor.parent().parent(),1000); // enum value + } else if (anchor.parent().attr('class')=='fieldtype') { + glowEffect(anchor.parent().parent(),1000); // struct field + } else if (anchor.parent().is(":header")) { + glowEffect(anchor.parent(),1000); // section header + } else { + glowEffect(anchor.next(),1000); // normal member + } + gotoAnchor(anchor,aname); + } + + const selectAndHighlight = function(hash,n) { + let a; + if (hash) { + const link=stripPath(pathName())+':'+hash.substring(1); + a=$('.item a[class$="'+link+'"]'); + } + if (a && a.length) { + a.parent().parent().addClass('selected'); + a.parent().parent().attr('id','selected'); + highlightAnchor(); + } else if (n) { + $(n.itemDiv).addClass('selected'); + $(n.itemDiv).attr('id','selected'); + } + let topOffset=5; + if ($('#nav-tree-contents .item:first').hasClass('selected')) { + topOffset+=25; + } + $('#nav-sync').css('top',topOffset+'px'); + showRoot(); + } + + const showNode = function(o, node, index, hash) { + if (node && node.childrenData) { + if (typeof(node.childrenData)==='string') { + const varName = node.childrenData; + getScript(node.relpath+varName,function() { + node.childrenData = getData(varName); + showNode(o,node,index,hash); + }); + } else { + if (!node.childrenVisited) { + getNode(o, node); + } + $(node.getChildrenUL()).css({'display':'block'}); + node.plus_img.innerHTML = ARROW_DOWN; + node.expanded = true; + const n = node.children[o.breadcrumbs[index]]; + if (index+11 ? '#'+parts[1].replace(/[^\w-]/g,'') : ''; + } + if (hash.match(/^#l\d+$/)) { + const anchor=$('a[name='+hash.substring(1)+']'); + glowEffect(anchor.parent(),1000); // line number + hash=''; // strip line number anchors + } + const url=root+hash; + let i=-1; + while (NAVTREEINDEX[i+1]<=url) i++; + if (i==-1) { i=0; root=NAVTREE[0][1]; } // fallback: show index + if (navTreeSubIndices[i]) { + gotoNode(o,i,root,hash,relpath) + } else { + getScript(relpath+'navtreeindex'+i,function() { + navTreeSubIndices[i] = eval('NAVTREEINDEX'+i); + if (navTreeSubIndices[i]) { + gotoNode(o,i,root,hash,relpath); + } + }); + } + } + + const showSyncOff = function(n,relpath) { + n.html(''); + } + + const showSyncOn = function(n,relpath) { + n.html(''); + } + + const o = { + toroot : toroot, + node : { + childrenData : NAVTREE, + children : [], + childrenUL : document.createElement("ul"), + getChildrenUL : function() { return this.childrenUL }, + li : document.getElementById("nav-tree-contents"), + depth : 0, + relpath : relpath, + expanded : false, + isLast : true, + plus_img : document.createElement("span"), + }, + }; + o.node.li.appendChild(o.node.childrenUL); + o.node.plus_img.className = 'arrow'; + o.node.plus_img.innerHTML = ARROW_RIGHT; + + const navSync = $('#nav-sync'); + if (cachedLink()) { + showSyncOff(navSync,relpath); + navSync.removeClass('sync'); + } else { + showSyncOn(navSync,relpath); + } + + navSync.click(() => { + const navSync = $('#nav-sync'); + if (navSync.hasClass('sync')) { + navSync.removeClass('sync'); + showSyncOff(navSync,relpath); + storeLink(stripPath2(pathName())+hashUrl()); + } else { + navSync.addClass('sync'); + showSyncOn(navSync,relpath); + deleteLink(); + } + }); + + navTo(o,toroot,hashUrl(),relpath); + showRoot(); + + $(window).bind('hashchange', () => { + if (window.location.hash && window.location.hash.length>1) { + let a; + if ($(location).attr('hash')) { + const clslink=stripPath(pathName())+':'+hashValue(); + a=$('.item a[class$="'+clslink.replace(/ + + + + + + +HighFive: Related Pages + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    Related Pages
    +
    +
    +
    Here is a list of all related documentation pages:
    +
    +
    + + + + diff --git a/plus.svg b/plus.svg new file mode 100644 index 000000000..075201655 --- /dev/null +++ b/plus.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/plusd.svg b/plusd.svg new file mode 100644 index 000000000..0c65bfe94 --- /dev/null +++ b/plusd.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/poster/example1_hdf5.cpp b/poster/example1_hdf5.cpp new file mode 100644 index 000000000..f551d90c1 --- /dev/null +++ b/poster/example1_hdf5.cpp @@ -0,0 +1,53 @@ +#include +#include "hdf5.h" + +void data_io() { + hid_t file_id, dset_id, dspace_id, group_id; /* identifiers */ + herr_t status; + + // Setup dataset dimensions and input data + int ndims = 1; + hsize_t dims[ndims]; + dims[0] = 50; + std::vector data(50, 1); + + // Open a file + file_id = H5Fcreate("new_file.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + + // Create a group + group_id = H5Gcreate2(file_id, "/group", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + + // Create a dataset + dspace_id = H5Screate_simple(1, dims, NULL); + dset_id = H5Dcreate2( + group_id, "dset1", H5T_STD_I32BE, dspace_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + + // Write the data + status = H5Dwrite(dset_id, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, data.data()); + + // Close dataset after writing + status = H5Dclose(dset_id); + + // Retrieve result size and preallocate vector + std::vector result; + dset_id = H5Dopen(file_id, "/group/dset1", H5P_DEFAULT); + dspace_id = H5Dget_space(dset_id); + ndims = H5Sget_simple_extent_ndims(dspace_id); + hsize_t res_dims[ndims]; + status = H5Sget_simple_extent_dims(dspace_id, res_dims, NULL); + int res_sz = 1; + for (int i = 0; i < ndims; i++) { + res_sz *= res_dims[i]; + } + result.resize(res_sz); + + // Read the data + status = H5Dread(dset_id, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, result.data()); + + // Close the dataset and group + status = H5Dclose(dset_id); + status = H5Gclose(group_id); + + // Close the file + status = H5Fclose(file_id); +} diff --git a/poster/example1_highfive.cpp b/poster/example1_highfive.cpp new file mode 100644 index 000000000..1d3c5148a --- /dev/null +++ b/poster/example1_highfive.cpp @@ -0,0 +1,17 @@ +#include + +using HighFive::File; + +void write_io() { + std::vector d1(50, 1); + + // Open a file + File file("tmp.h5", File::ReadWrite | File::Truncate); + + // Create DataSet and write data (short form) + file.createDataSet("/group/dset1", d1); + + // Read the data + std::vector d1_read; + file.getDataSet("/group/dset1").read(d1_read); +} diff --git a/poster/example3.cpp b/poster/example3.cpp new file mode 100644 index 000000000..e18fbbf83 --- /dev/null +++ b/poster/example3.cpp @@ -0,0 +1,29 @@ +#include + + +typedef struct { + double width; + double height; +} Size2D; + + +HighFive::CompoundType create_compound_Size2D() { + return {{"width", HighFive::AtomicType{}}, {"height", HighFive::AtomicType{}}}; +} + +HIGHFIVE_REGISTER_TYPE(Size2D, create_compound_Size2D) + +int data_io() { + const std::string DATASET_NAME("points"); + + HighFive::File file("compounds.h5", HighFive::File::Truncate); + + auto t1 = create_compound_Size2D(); + t1.commit(file, "Size2D"); + + std::vector pts = {{1., 2.5}, {3., 4.5}}; + auto dataset = file.createDataSet(DATASET_NAME, pts); + + auto g1 = file.createGroup("group1"); + g1.createAttribute(DATASET_NAME, pts); +} diff --git a/poster/example6.cpp b/poster/example6.cpp new file mode 100644 index 000000000..41a050570 --- /dev/null +++ b/poster/example6.cpp @@ -0,0 +1,49 @@ +#include + +#include + +#include + + +int main(int argc, char** argv) { + int mpi_rank, mpi_size; + const std::string DATASET_NAME("dset"); + + // initialize MPI + MPI_Init(&argc, &argv); + MPI_Comm_size(MPI_COMM_WORLD, &mpi_size); + MPI_Comm_rank(MPI_COMM_WORLD, &mpi_rank); + + using namespace HighFive; + try { + // open a new file with the MPI IO driver for parallel Read/Write + File file("parallel_highfive.h5", + File::ReadWrite | File::Create | File::Truncate, + MPIOFileDriver(MPI_COMM_WORLD, MPI_INFO_NULL)); + + // we define the size of our dataset to + // lines : total number of mpi_rank + // columns : 2 + std::vector dims(2); + dims[0] = std::size_t(mpi_size); + dims[1] = 2; + + // Create the dataset + DataSet dset = file.createDataSet(DATASET_NAME, DataSpace(dims)); + + // Each node want to write its own rank two time in + // its associated row + int data[1][2] = {{mpi_rank, mpi_rank}}; + + // write it to the associated mpi_rank + dset.select({std::size_t(mpi_rank), 0}, {1, 2}).write(data); + + } catch (const Exception& err) { + // catch and print any HDF5 error + std::cerr << err.what() << std::endl; + MPI_Abort(MPI_COMM_WORLD, 1); + } + + MPI_Finalize(); + return 0; +} diff --git a/poster/example_boost.cpp b/poster/example_boost.cpp new file mode 100644 index 000000000..56b78d074 --- /dev/null +++ b/poster/example_boost.cpp @@ -0,0 +1,21 @@ +#include + +#define H5_USE_BOOST 1 +#include + +#include + +using complex_t = std::complex; + +void data_io() { + boost::multi_array multi_array(boost::extents[3][2][1][1]); + std::fill_n(multi_array.origin(), multi_array.num_elements(), 1.0); + multi_array[1][1][0][0] = complex_t{1.1, 1.2}; + + HighFive::File file("multi_array_complex.h5", HighFive::File::Truncate); + + HighFive::DataSet dataset = + file.createDataSet("multi_array", HighFive::DataSpace::From(multi_array)); + + dataset.write(multi_array); +} diff --git a/poster/example_boost_ublas.cpp b/poster/example_boost_ublas.cpp new file mode 100644 index 000000000..986a671de --- /dev/null +++ b/poster/example_boost_ublas.cpp @@ -0,0 +1,47 @@ +#include + +#define H5_USE_BOOST 1 +#include + +// In some versions of Boost (starting with 1.64), you have to +// include the serialization header before ublas +#include + +#include +#include + +using namespace HighFive; + +void data_io() { + const std::string DATASET_NAME("dset"); + const size_t size_x = 10; + const size_t size_y = 10; + + try { + typedef typename boost::numeric::ublas::matrix Matrix; + + // create a 10x10 matrix + Matrix mat(size_x, size_y); + + // fill it + for (std::size_t i = 0; i < size_x; ++i) { + mat(i, i) = static_cast(i); + } + + // Create a new HDF5 file + File file("boost_ublas.h5", File::ReadWrite | File::Create | File::Truncate); + + DataSet dataset = file.createDataSet(DATASET_NAME, DataSpace::From(mat)); + + dataset.write(mat); + + Matrix result; + dataset.read(result); + + std::cout << "Matrix result:\n" << result << std::endl; + + } catch (const Exception& err) { + // catch and print any HDF5 error + std::cerr << err.what() << std::endl; + } +} diff --git a/poster/example_easy_h5py.py b/poster/example_easy_h5py.py new file mode 100644 index 000000000..aca093490 --- /dev/null +++ b/poster/example_easy_h5py.py @@ -0,0 +1,26 @@ +import h5py +import numpy as np + +A = np.ones([10, 3]) + +with h5py.File("tmp.h5", "w") as file: + + # write dataset (automatically creates groups if needed) + file["/path/to/A"] = A + + # read from dataset + B = file["/path/to/A"] + + # write attribute + file["/path/to/A"].attrs["date"] = "today" + + # read from attribute + d = file["/path/to/A"].attrs["date"] + + # create extendible dataset and extend it + dset = file.create_dataset("/path/to/extendible", (1,), maxshape=(None,)) + dset[0] = 0 + + for i in range(1, 10): + dset.resize((i + 1,)) + dset[i] = i diff --git a/poster/example_easy_highfive.cpp b/poster/example_easy_highfive.cpp new file mode 100644 index 000000000..700056cae --- /dev/null +++ b/poster/example_easy_highfive.cpp @@ -0,0 +1,29 @@ +#include + +#include + +int main() { + xt::xarray A = xt::ones({10, 3}); + + // open a file + H5Easy::File file("tmp.h5", H5Easy::File::Overwrite); + + // write dataset (automatically creates groups if needed) + H5Easy::dump(file, "/path/to/A", A); + + // read from dataset + auto B = H5Easy::load>(file, "/path/to/A"); + + // write attribute + H5Easy::dumpAttribute(file, "/path/to/A", "date", std::string("today")); + + // read from attribute + auto d = H5Easy::loadAttribute(file, "/path/to/A", "date"); + + // create extendible dataset and extend it + for (size_t i = 0; i < 10; ++i) { + H5Easy::dump(file, "/path/to/extendible", i, {i}); + } + + return 0; +} diff --git a/poster/example_props.cpp b/poster/example_props.cpp new file mode 100644 index 000000000..0e5b14bde --- /dev/null +++ b/poster/example_props.cpp @@ -0,0 +1,24 @@ +#include + +using namespace HighFive; + +int write_data() { + FileDriver fdrv; + + fdrv.add(FileVersionBounds(H5F_LIBVER_LATEST, H5F_LIBVER_LATEST)); + fdrv.add(MetadataBlockSize(10240)); + + File file("example2.h5", File::Truncate, fdrv); + + GroupCreateProps props; + props.add(EstimatedLinkInfo(1000, 500)); + auto group = file.createGroup("g", props); + + DataSetCreateProps dsprops; + dsprops.add(Chunking(std::vector{2, 2})); + dsprops.add(Deflate(9)); + + + std::vector d1(100000, 1); + group.createDataSet("dset1", d1, dsprops); +} diff --git a/poster/examples.js b/poster/examples.js new file mode 100644 index 000000000..7870d7ef8 --- /dev/null +++ b/poster/examples.js @@ -0,0 +1,37 @@ + + +function compile_on_godbolt(example_id) { + + let src = $('#' + example_id).attr("rawsrc"); + + let url = `https://godbolt.org/#g:!((g:!((g:!((h:codeEditor,i:(filename:'1',fontScale:14,fontUsePx:'0',j:1,lang:c%2B%2B,source:'${src}'),l:'5',n:'0',o:'C%2B%2B+source+%231',t:'0')),k:50,l:'4',n:'0',o:'',s:0,t:'0'),(g:!((h:compiler,i:(compiler:g112,filters:(b:'0',binary:'1',commentOnly:'0',demangle:'0',directives:'0',execute:'1',intel:'0',libraryCode:'0',trim:'1'),flagsViewOpen:'1',fontScale:14,fontUsePx:'0',j:1,lang:c%2B%2B,libs:!((name:hdf5,ver:'1121'),(name:highfive,ver:trunk)),options:'',selection:(endColumn:1,endLineNumber:1,positionColumn:1,positionLineNumber:1,selectionStartColumn:1,selectionStartLineNumber:1,startColumn:1,startLineNumber:1),source:1,tree:'1'),l:'5',n:'0',o:'x86-64+gcc+11.2+(C%2B%2B,+Editor+%231,+Compiler+%231)',t:'0')),k:50,l:'4',n:'0',o:'',s:0,t:'0')),l:'2',n:'0',o:'',t:'0')),version:4`; + window.open(url); + +} + +function setup_examples() { + $(".example").each(function () { + let cblock = this; + let file = this.id + '.' + this.dataset.lang; + $.ajax( {url: file, + dataType: 'text', + success: function( code ) { + res = hljs.highlight(code, {language: cblock.dataset.lang, ignoreIllegals: true }); + cblock.innerHTML += res.value; + let encoded = encodeURIComponent(code); + cblock.setAttribute("rawsrc",encoded); + }}); + + }); + + $(".godbolt").each(function(idx, el) { + let example_id = el.id.substring(3); + el.addEventListener("click", function () { + compile_on_godbolt(example_id); + }); + }); + +} + + +setup_examples(); diff --git a/poster/godbolt.org.ico b/poster/godbolt.org.ico new file mode 100644 index 000000000..e3e20daef Binary files /dev/null and b/poster/godbolt.org.ico differ diff --git a/poster/index.html b/poster/index.html new file mode 100644 index 000000000..127122744 --- /dev/null +++ b/poster/index.html @@ -0,0 +1,264 @@ + + + + + HighFive: An easy-to-use, header-only C++ library for HDF5 + + + + + + + + + + +
    +
    + +
    +
    +

    HighFive: An easy-to-use, header-only C++ library for HDF5

    + +

    Adrien Devresse1, Omar Awile1, Jorge + Blanco1, Tristan Carel1, Nicolas Cornu1, + Tom de Geus2, Luc Grosheintz-Laval1, Pramod Kumbhar1, + Fernando Pereira1, Sergio Rivas Gomez1, Matthias Wolf1, + James King1

    +
    +
    +

    + 1 Blue Brain Project, École Polytechnique Fédérale de Lausanne, Switzerland
    + 2 Physics of Complex Systems Laboratory, École Polytechnique Fédérale de Lausanne, + Switzerland

    +
    + +
    +

    Introduction

    +

    The use of portable scientific data formats are vital for managing complex workflows, + reliable data storage, knowledge transfer, and long-term maintainability and + reproducibility. Hierarchical Data Format (HDF) 5 is considered the de-facto + industry-standard for this purpose. While the official HDF5 library is versatile and + well supported, it only provides a low-level C/C++ interface. Lacking proper high-level + C++ abstractions dissuades the use of HDF5 in scientific applications. There are a + number of C++ wrapper libraries available. Many, however, are domain-specific, + incomplete or not actively maintained.

    +

    HighFive is an attempt to address these challenges.

    +
    +
    +

    Basic use of HighFive

    +

    It is an easy to use modern C++ header-only library that reduces most of the + book-keeping overhead required by HDF5. HighFive uses RAII to handle object life-times + and automatically handles reference counting on HDF5 objects. The library makes use of + C++ templating for automatic type mapping. These features significantly increase + programmer productivity and reduce coding bugs.

    + + + + + + + + + + + + + +
    HighFiveHDF5
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +

    Support for HDF5 advanced features

    +

    Its simplified data-management does not come at a loss of HDF5's flexibility and + advanced features and tunable parameters are exposed through a simple interface. File + version bounds can be read and written to define object compatibility, the metadata + block size can be set. Group properties for compression, chunking and link info + estimates can be set and read:

    +
    +
    +
    +
    +
    +
    +
    +

    Complex data types

    +

    HighFive is built with scientific applications in mind. Besides scalar and simple STL + vectors it is possible to map C++ structs to HDF5 compound types and to read and write + Boost, Boost ublas, Eigen and XTensor array types. The library is also able to handle + combinations of array types (e.g. std::vector<Eigen::Matrix>). This is + achieved through various templated converters. Additionally, HighFive supports enums and + various string types.

    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +

    HighFive for parallel applications

    +

    With the aim to support large-scale scientific application, we have made an effort to + also natively support the HDF5 MPI backend in HighFive. A special + MPIOFileDriver is used in the application code to ensure that HDF5 is correctly + initialized. No other special API calls are required since all necessary provisions are + handled transparently.

    +
    +
    +
    +
    +
    +
    + +
    +

    H5Easy: one-liners

    +

    HighFive also offers the H5Easy API (on its own namespace). + This has an API in which things can be done in one-liners, with a syntax comparable + to for example h5py for Python. + It offers overloads for STL containers, Boost, Eigen, xtensor, and OpenCV.

    + + + + + + + + + + + + + +
    H5Easyh5py
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +

    Obtaining and building HighFive

    +

    HighFive is developed open-source and can be cloned and forked from + GitHub. + It can also be installed from the clone, + via spack, + or via conda. + It can then be used for example with find_package(HighFive) in CMake. + Being a header-only library, HighFive can be used directly as a subfolder in a C++ project, + for example by adding it as a submodule. + More details can be found in the + README.md file. +

    +
    +
    +
    +
    + © 2022 Blue Brain Project/EPFL
    + The development of this software was supported by funding to the Blue Brain + Project, a research center of the École polytechnique fédérale de Lausanne (EPFL), + from the Swiss government's ETH Board of the Swiss Federal Institutes of + Technology. +

    + + +
    +
    + Boost Software License 1.0 +
    +
    +
    + + + +
    + + diff --git a/resize.js b/resize.js new file mode 100644 index 000000000..6ad2ae80e --- /dev/null +++ b/resize.js @@ -0,0 +1,109 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ + +function initResizable() { + let sidenav,navtree,content,header,footer,barWidth=6; + const RESIZE_COOKIE_NAME = ''+'width'; + + function resizeWidth() { + const sidenavWidth = $(sidenav).outerWidth(); + content.css({marginLeft:parseInt(sidenavWidth)+"px"}); + if (typeof page_layout!=='undefined' && page_layout==1) { + footer.css({marginLeft:parseInt(sidenavWidth)+"px"}); + } + Cookie.writeSetting(RESIZE_COOKIE_NAME,sidenavWidth-barWidth); + } + + function restoreWidth(navWidth) { + content.css({marginLeft:parseInt(navWidth)+barWidth+"px"}); + if (typeof page_layout!=='undefined' && page_layout==1) { + footer.css({marginLeft:parseInt(navWidth)+barWidth+"px"}); + } + sidenav.css({width:navWidth + "px"}); + } + + function resizeHeight() { + const headerHeight = header.outerHeight(); + const footerHeight = footer.outerHeight(); + const windowHeight = $(window).height(); + let contentHeight,navtreeHeight,sideNavHeight; + if (typeof page_layout==='undefined' || page_layout==0) { /* DISABLE_INDEX=NO */ + contentHeight = windowHeight - headerHeight - footerHeight; + navtreeHeight = contentHeight; + sideNavHeight = contentHeight; + } else if (page_layout==1) { /* DISABLE_INDEX=YES */ + contentHeight = windowHeight - footerHeight; + navtreeHeight = windowHeight - headerHeight; + sideNavHeight = windowHeight; + } + content.css({height:contentHeight + "px"}); + navtree.css({height:navtreeHeight + "px"}); + sidenav.css({height:sideNavHeight + "px"}); + if (location.hash.slice(1)) { + (document.getElementById(location.hash.slice(1))||document.body).scrollIntoView(); + } + } + + function collapseExpand() { + let newWidth; + if (sidenav.width()>0) { + newWidth=0; + } else { + const width = Cookie.readSetting(RESIZE_COOKIE_NAME,250); + newWidth = (width>250 && width<$(window).width()) ? width : 250; + } + restoreWidth(newWidth); + const sidenavWidth = $(sidenav).outerWidth(); + Cookie.writeSetting(RESIZE_COOKIE_NAME,sidenavWidth-barWidth); + } + + header = $("#top"); + sidenav = $("#side-nav"); + content = $("#doc-content"); + navtree = $("#nav-tree"); + footer = $("#nav-path"); + $(".side-nav-resizable").resizable({resize: () => resizeWidth() }); + $(sidenav).resizable({ minWidth: 0 }); + $(window).resize(() => resizeHeight()); + const device = navigator.userAgent.toLowerCase(); + const touch_device = device.match(/(iphone|ipod|ipad|android)/); + if (touch_device) { /* wider split bar for touch only devices */ + $(sidenav).css({ paddingRight:'20px' }); + $('.ui-resizable-e').css({ width:'20px' }); + $('#nav-sync').css({ right:'34px' }); + barWidth=20; + } + const width = Cookie.readSetting(RESIZE_COOKIE_NAME,250); + if (width) { restoreWidth(width); } else { resizeWidth(); } + resizeHeight(); + const url = location.href; + const i=url.indexOf("#"); + if (i>=0) window.location.hash=url.substr(i); + const _preventDefault = (evt) => evt.preventDefault(); + $("#splitbar").bind("dragstart", _preventDefault).bind("selectstart", _preventDefault); + $(".ui-resizable-handle").dblclick(collapseExpand); + $(window).on('load',resizeHeight); +} +/* @license-end */ diff --git a/search/all_0.js b/search/all_0.js new file mode 100644 index 000000000..ff3e038e0 --- /dev/null +++ b/search/all_0.js @@ -0,0 +1,12 @@ +var searchData= +[ + ['_5fcreationorder_0',['_CreationOrder',['../struct_high_five_1_1_creation_order.html#aaaeb7940131b73a9385f499e08d2c0df',1,'HighFive::CreationOrder']]], + ['_5ferr_5fmajor_1',['_err_major',['../class_high_five_1_1_exception.html#a835aebf45a86bbd81bf59b5975d69608',1,'HighFive::Exception']]], + ['_5ferr_5fminor_2',['_err_minor',['../class_high_five_1_1_exception.html#ad62a656089c5e551f258138b48a1eb6c',1,'HighFive::Exception']]], + ['_5ferrmsg_3',['_errmsg',['../class_high_five_1_1_exception.html#aa2d52ba9b9f7ca9157d46569b13e8462',1,'HighFive::Exception']]], + ['_5ffile_5fobj_4',['_file_obj',['../class_high_five_1_1_path_traits.html#a9d0db67d0c4a3d1afacdb4fc9f17a302',1,'HighFive::PathTraits']]], + ['_5fh5_5fstruct_5fpadding_5',['_H5_STRUCT_PADDING',['../_h5_data_type__misc_8hpp.html#a8411b26baa96407eb4f3de2ba4bcd6f7',1,'H5DataType_misc.hpp']]], + ['_5fhid_6',['_hid',['../class_high_five_1_1_object.html#a8e28f684d63a33646aa107a41d9cf521',1,'HighFive::Object']]], + ['_5finitializeifneeded_7',['_initializeIfNeeded',['../class_high_five_1_1_property_list.html#a532f2e881eb1cb05da42d687c1d5e97e',1,'HighFive::PropertyList']]], + ['_5fnext_8',['_next',['../class_high_five_1_1_exception.html#a45f55e73e6d6e5ba8187ba15c799d829',1,'HighFive::Exception']]] +]; diff --git a/search/all_1.js b/search/all_1.js new file mode 100644 index 000000000..0a99b7b82 --- /dev/null +++ b/search/all_1.js @@ -0,0 +1,23 @@ +var searchData= +[ + ['add_0',['add',['../class_high_five_1_1_property_list.html#af982152b36c4216bdcdf60dbf10f0a1d',1,'HighFive::PropertyList::add()'],['../class_high_five_1_1_raw_property_list.html#a7f1ab49326895254c10c8d39724aa944',1,'HighFive::RawPropertyList::add()']]], + ['allocationtime_1',['AllocationTime',['../class_high_five_1_1_allocation_time.html',1,'HighFive::AllocationTime'],['../class_high_five_1_1_allocation_time.html#aa9b8f91669815c7579e952f1ab5d7c64',1,'HighFive::AllocationTime::AllocationTime(H5D_alloc_time_t alloc_time)'],['../class_high_five_1_1_allocation_time.html#a6855f0c3f6c66d4c1ec41d95aebb2ad3',1,'HighFive::AllocationTime::AllocationTime(const DataSetCreateProps &dcpl)']]], + ['annotatetraits_2',['AnnotateTraits',['../class_high_five_1_1_annotate_traits.html',1,'HighFive']]], + ['annotatetraits_3c_20dataset_20_3e_3',['AnnotateTraits< DataSet >',['../class_high_five_1_1_annotate_traits.html',1,'HighFive']]], + ['annotatetraits_3c_20file_20_3e_4',['AnnotateTraits< File >',['../class_high_five_1_1_annotate_traits.html',1,'HighFive']]], + ['annotatetraits_3c_20group_20_3e_5',['AnnotateTraits< Group >',['../class_high_five_1_1_annotate_traits.html',1,'HighFive']]], + ['apply_6',['apply',['../class_high_five_1_1_hyper_slab.html#afecb4503d3ce92815710f03b3d0a85b8',1,'HighFive::HyperSlab']]], + ['array_7',['Array',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba4410ec34d9e6c1a68100ca0ce033fb17',1,'HighFive']]], + ['ascii_8',['Ascii',['../namespace_high_five.html#a7133a7a677541ffa6780f5ca5eee6db9a76b8d0dcd02ccaf203c167ced6d7ef31',1,'HighFive']]], + ['asstringtype_9',['asStringType',['../class_high_five_1_1_data_type.html#ab959e9cd8ccd474542bf220627ec7844',1,'HighFive::DataType']]], + ['at_10',['at',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a69d615d326ffd680832e6d1e16c3ef30',1,'HighFive::deprecated::FixedLenStringArray']]], + ['atomictype_11',['AtomicType',['../class_high_five_1_1_atomic_type.html',1,'HighFive::AtomicType< T >'],['../class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4.html#a4ae18629788947cdb9c5f6893017376b',1,'HighFive::AtomicType< char[StrLen]>::AtomicType()'],['../class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4.html#a62b353ebfd6b54076599c08210c089b2',1,'HighFive::AtomicType< deprecated::FixedLenStringArray< StrLen > >::AtomicType()'],['../class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4.html#afce941c6b3480ed7cfcf5a787396c500',1,'HighFive::AtomicType< std::complex< T > >::AtomicType()'],['../class_high_five_1_1_atomic_type.html#ace690f26cabac4bd472f47e6629fe7ae',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#af8b6e9ffdb076ecd7b9ea8e825b1d7c9',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a7e51e6773bb9934eb8d7fe9881fe4fe9',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a06c87a3e42844220d3f1acf7e220588f',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a7e64d2707996b3b03657c0be2172cbdb',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#ae8cebf936468a862589b073db0d28d44',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a68a295d57afe890a26c49523ca06eceb',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a0b4d0f1d9c5b18020a460ac1591b0665',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a43016c14b0c4731802ff4468486a3f83',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#aa6082308b8707466a329e02a59a92e0f',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#ad7288e7c84ac324b4dea8169f071e4ee',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a82b6070cd38dd7456d29018765539d0f',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a0edf612da138154aa497d6a2706876ba',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a45b7187829cdc797fba98c530253b7fa',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#ab17d941585baab34c224e0e448b824a6',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#abaf0327b4db9b70f0aa922f92edaa76e',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a8291e490374e7584d5309b24a86f1615',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a9b68b644e1e8b20e36ab5098561590fd',1,'HighFive::AtomicType::AtomicType()']]], + ['atomictype_3c_20char_5bstrlen_5d_3e_12',['AtomicType< char[StrLen]>',['../class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4.html',1,'HighFive']]], + ['atomictype_3c_20deprecated_3a_3afixedlenstringarray_3c_20strlen_20_3e_20_3e_13',['AtomicType< deprecated::FixedLenStringArray< StrLen > >',['../class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4.html',1,'HighFive']]], + ['atomictype_3c_20std_3a_3acomplex_3c_20t_20_3e_20_3e_14',['AtomicType< std::complex< T > >',['../class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4.html',1,'HighFive']]], + ['attribute_15',['Attribute',['../class_high_five_1_1_attribute.html',1,'HighFive::Attribute'],['../class_high_five_1_1_data_space.html#abd4bab8f7ee748d7ea63f7f9b6248611',1,'HighFive::DataSpace::Attribute'],['../class_high_five_1_1_data_type.html#abd4bab8f7ee748d7ea63f7f9b6248611',1,'HighFive::DataType::Attribute'],['../class_high_five_1_1_attribute.html#aa2ac0bfc7aa4f29ef5d32a6518cb40a3',1,'HighFive::Attribute::Attribute()'],['../namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474af2bbdf9f72c085adc4d0404e370f0f4c',1,'HighFive::Attribute']]], + ['attribute_5fcreate_16',['ATTRIBUTE_CREATE',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a518c30284a8061ffe051004a0670f135',1,'HighFive']]], + ['attributecreateprops_17',['AttributeCreateProps',['../group___property_lists.html#ga3ad092372f31951daaf8a51c0acdea2e',1,'HighFive']]], + ['attributeexception_18',['AttributeException',['../class_high_five_1_1_attribute_exception.html',1,'HighFive::AttributeException'],['../class_high_five_1_1_attribute_exception.html#ade502f58024a58bea7454e8a4d58c4f0',1,'HighFive::AttributeException::AttributeException()']]], + ['attributephasechange_19',['AttributePhaseChange',['../class_high_five_1_1_attribute_phase_change.html',1,'HighFive::AttributePhaseChange'],['../class_high_five_1_1_attribute_phase_change.html#a979a5ef023e9c45b1d8b3de253fb69ef',1,'HighFive::AttributePhaseChange::AttributePhaseChange(unsigned max_compact, unsigned min_dense)'],['../class_high_five_1_1_attribute_phase_change.html#a06649e848cb2fe58934d2a750e853e9b',1,'HighFive::AttributePhaseChange::AttributePhaseChange(const GroupCreateProps &gcpl)']]] +]; diff --git a/search/all_10.js b/search/all_10.js new file mode 100644 index 000000000..60827f09d --- /dev/null +++ b/search/all_10.js @@ -0,0 +1,28 @@ +var searchData= +[ + ['scalar_0',['Scalar',['../class_high_five_1_1_data_space.html#a78e587127110cab8dca8f354a8172824',1,'HighFive::DataSpace']]], + ['select_1',['select',['../class_high_five_1_1_slice_traits.html#aa11ef45e433e18ce8f4706f17a8d7463',1,'HighFive::SliceTraits::select(const HyperSlab &hyperslab) const'],['../class_high_five_1_1_slice_traits.html#a71175dfcf7e9fa5ca5d5e2919163dece',1,'HighFive::SliceTraits::select(const HyperSlab &hyperslab, const DataSpace &memspace) const'],['../class_high_five_1_1_slice_traits.html#a6a76a20247d0e8f8629b81c17425d73c',1,'HighFive::SliceTraits::select(const std::vector< size_t > &offset, const std::vector< size_t > &count, const std::vector< size_t > &stride={}, const std::vector< size_t > &block={}) const'],['../class_high_five_1_1_slice_traits.html#a52c44cc1bdfac24890b999e902099c83',1,'HighFive::SliceTraits::select(const std::vector< size_t > &columns) const'],['../class_high_five_1_1_slice_traits.html#aa67c235ff1633d91f77b4f3fd911da75',1,'HighFive::SliceTraits::select(const ElementSet &elements) const']]], + ['selection_2',['Selection',['../class_high_five_1_1_selection.html',1,'HighFive::Selection'],['../class_high_five_1_1_selection.html#ae5ffe93f0e0a4d6e04d531420fd63e29',1,'HighFive::Selection::Selection()']]], + ['set_3',['set',['../class_h5_easy_1_1_dump_options.html#aca2b65d5fe5b5fa9bc74f62bb8c52871',1,'H5Easy::DumpOptions::set(DumpMode mode)'],['../class_h5_easy_1_1_dump_options.html#a026e6c7714cae7e1b9a93b0e39ca71d0',1,'H5Easy::DumpOptions::set(Flush mode)'],['../class_h5_easy_1_1_dump_options.html#ae1db6010b692e7a0c260ce86e80f5e28',1,'H5Easy::DumpOptions::set(const Compression &level)'],['../class_h5_easy_1_1_dump_options.html#aa242b2d0698060317ba538349b193656',1,'H5Easy::DumpOptions::set(T arg, Args... args)']]], + ['set_5flogging_5fcallback_4',['set_logging_callback',['../class_high_five_1_1_logger.html#a9b42228f1091409f5fc4b09a25fed4fc',1,'HighFive::Logger']]], + ['setchunksize_5',['setChunkSize',['../class_h5_easy_1_1_dump_options.html#af8cb0dc019344b41643cbcebb4c88f01',1,'H5Easy::DumpOptions::setChunkSize(const std::vector< T > &shape)'],['../class_h5_easy_1_1_dump_options.html#ac5fa831c573ee5a7f03aea5967cf3301',1,'H5Easy::DumpOptions::setChunkSize(std::initializer_list< size_t > shape)']]], + ['seterrormsg_6',['setErrorMsg',['../class_high_five_1_1_exception.html#a7c9b65fc87cf1abfed6d24309c74f0cf',1,'HighFive::Exception']]], + ['shuffle_7',['Shuffle',['../class_high_five_1_1_shuffle.html',1,'HighFive::Shuffle'],['../class_high_five_1_1_shuffle.html#a7fc2632a04860fee90b30867afb43f46',1,'HighFive::Shuffle::Shuffle()']]], + ['silencehdf5_8',['SilenceHDF5',['../class_high_five_1_1_silence_h_d_f5.html',1,'HighFive::SilenceHDF5'],['../class_high_five_1_1_silence_h_d_f5.html#a87e3b628feb913044cf4859fce72e9b5',1,'HighFive::SilenceHDF5::SilenceHDF5()']]], + ['size_9',['size',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#aec436d056f8f3ee80e934de60ab61e0d',1,'HighFive::deprecated::FixedLenStringArray']]], + ['slicetraits_10',['SliceTraits',['../class_high_five_1_1_slice_traits.html',1,'HighFive::SliceTraits< Derivate >'],['../class_high_five_1_1_element_set.html#addb06cbd22277a5199483352358a5e4f',1,'HighFive::ElementSet::SliceTraits']]], + ['slicetraits_3c_20dataset_20_3e_11',['SliceTraits< DataSet >',['../class_high_five_1_1_slice_traits.html',1,'HighFive']]], + ['slicetraits_3c_20selection_20_3e_12',['SliceTraits< Selection >',['../class_high_five_1_1_slice_traits.html',1,'HighFive']]], + ['soft_13',['Soft',['../namespace_high_five.html#abe5895b8113887accd6bff2392b24c40a682160fc6ad12f783f70608a9b46b9b9',1,'HighFive']]], + ['spacepadded_14',['SpacePadded',['../namespace_high_five.html#ad9265809238043adba9b446b5c61e953a4ca955dd1a77b70b5a0a28512c0e5f24',1,'HighFive']]], + ['stackwalk_15',['stackWalk',['../struct_high_five_1_1_h_d_f5_err_mapper.html#a6b5c9457c40015e9c57896e68cf86069',1,'HighFive::HDF5ErrMapper']]], + ['stride_16',['stride',['../struct_high_five_1_1_regular_hyper_slab.html#afee214170da6b05c0b08727664c599e6',1,'HighFive::RegularHyperSlab']]], + ['string_17',['string',['../class_high_five_1_1_data_type.html#a957ea4848ba76cab82d7b4cff7210c87',1,'HighFive::DataType']]], + ['string_18',['String',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba27118326006d3829667a400ad23d5d98',1,'HighFive']]], + ['string_5fcreate_19',['STRING_CREATE',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a8c7bdf2b95146589251f8ecff10ca084',1,'HighFive']]], + ['string_5fpadding_2ehpp_20',['string_padding.hpp',['../string__padding_8hpp.html',1,'']]], + ['stringcreateprops_21',['StringCreateProps',['../group___property_lists.html#gaaf41437769c5539c5c184c4a738fec8d',1,'HighFive']]], + ['stringpadding_22',['StringPadding',['../namespace_high_five.html#ad9265809238043adba9b446b5c61e953',1,'HighFive']]], + ['stringtype_23',['StringType',['../class_high_five_1_1_string_type.html',1,'HighFive']]], + ['szip_24',['Szip',['../class_high_five_1_1_szip.html',1,'HighFive::Szip'],['../class_high_five_1_1_szip.html#a2857efb608427dbfcea9356fbd0f1cea',1,'HighFive::Szip::Szip()']]] +]; diff --git a/search/all_11.js b/search/all_11.js new file mode 100644 index 000000000..50a660da3 --- /dev/null +++ b/search/all_11.js @@ -0,0 +1,12 @@ +var searchData= +[ + ['time_0',['Time',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847baa76d4ef5f3f6a672bbfab2865563e530',1,'HighFive']]], + ['to_5fstring_1',['to_string',['../namespace_high_five.html#ace8358255410138c5e223747e2a06f36',1,'HighFive']]], + ['toexception_2',['ToException',['../struct_high_five_1_1_h_d_f5_err_mapper.html#abce55b175d5b366589798b0bef28cae6',1,'HighFive::HDF5ErrMapper']]], + ['tohdf5sizevector_3',['toHDF5SizeVector',['../namespace_high_five.html#acd815ee14c714bfa4ba0f05acc6e486d',1,'HighFive']]], + ['tostlsizevector_4',['toSTLSizeVector',['../namespace_high_five.html#a1de5c5eaf17007862e5cf63ec186a64e',1,'HighFive']]], + ['tracked_5',['Tracked',['../struct_high_five_1_1_creation_order.html#aaaeb7940131b73a9385f499e08d2c0dfa63264d38eb4b2f184d68299f689e78b8',1,'HighFive::CreationOrder']]], + ['true_6',['True',['../namespace_h5_easy.html#af71ce7ab9b99227bdead69993d1f3b62af827cf462f62848df37c5e1e94a4da74',1,'H5Easy']]], + ['truncate_7',['Truncate',['../class_high_five_1_1_file.html#a66225bf5898f9e14f84c02529ca19431a2ee578fa7edc24587051a920880711c6',1,'HighFive::File']]], + ['type_8',['type',['../class_high_five_1_1_attribute.html#a820ea0440c7b9e3782088b8f3a4a06e5',1,'HighFive::Attribute::type'],['../class_high_five_1_1_data_set.html#ab70bd92f4760b776cc65eb3d627b61a0',1,'HighFive::DataSet::type'],['../class_high_five_1_1_data_space.html#a205c246e100975eda4dfd199e5ed11eb',1,'HighFive::DataSpace::type'],['../class_high_five_1_1_file.html#a9a4b0faf816423f39268ead24fb40683',1,'HighFive::File::type'],['../class_high_five_1_1_group.html#a6be13115b3540cbc134190a424b0134e',1,'HighFive::Group::type']]] +]; diff --git a/search/all_12.js b/search/all_12.js new file mode 100644 index 000000000..ba7b1cab1 --- /dev/null +++ b/search/all_12.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['unlimited_0',['UNLIMITED',['../class_high_five_1_1_data_space.html#ae88be51fa3f0348a25152f4829f586b3',1,'HighFive::DataSpace']]], + ['unlink_1',['unlink',['../class_high_five_1_1_node_traits.html#a37ed4a7bc21f02b14d1f71e097b3d4bf',1,'HighFive::NodeTraits']]], + ['unqualified_5ft_2',['unqualified_t',['../namespace_high_five.html#aa9e6633e6c8cdf9f4a092c1d7509774a',1,'HighFive']]], + ['usecollectiveio_3',['UseCollectiveIO',['../class_high_five_1_1_use_collective_i_o.html',1,'HighFive::UseCollectiveIO'],['../class_high_five_1_1_use_collective_i_o.html#a2e69f2c3f51af01f979094e5f8624327',1,'HighFive::UseCollectiveIO::UseCollectiveIO(bool enable=true)'],['../class_high_five_1_1_use_collective_i_o.html#a91ea36587502d39431c7fbb565e9debe',1,'HighFive::UseCollectiveIO::UseCollectiveIO(const DataTransferProps &dxpl)']]], + ['userdatatype_4',['UserDataType',['../namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474a99f109983e5e6524be1f6fbcc819691c',1,'HighFive']]], + ['utf8_5',['Utf8',['../namespace_high_five.html#a7133a7a677541ffa6780f5ca5eee6db9a81f91ccd37ce1d232cbfc1520374319d',1,'HighFive']]] +]; diff --git a/search/all_13.js b/search/all_13.js new file mode 100644 index 000000000..11faa9ca8 --- /dev/null +++ b/search/all_13.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['value_0',['value',['../struct_high_five_1_1_enum_type_1_1member__def.html#a08173394e258379cd6d223d302ff73ce',1,'HighFive::EnumType::member_def']]], + ['value_5ftype_1',['value_type',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#abeb3846ce0ff500609b90daaf77580b5',1,'HighFive::deprecated::FixedLenStringArray']]], + ['variablelengthstringtype_2',['VariableLengthStringType',['../class_high_five_1_1_variable_length_string_type.html',1,'HighFive::VariableLengthStringType'],['../class_high_five_1_1_variable_length_string_type.html#acc03c514d450d31741a103765de509de',1,'HighFive::VariableLengthStringType::VariableLengthStringType()']]], + ['varlen_3',['VarLen',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba72c6842c18d1470d1c991f865a2fab3a',1,'HighFive']]] +]; diff --git a/search/all_14.js b/search/all_14.js new file mode 100644 index 000000000..202163c4e --- /dev/null +++ b/search/all_14.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['warn_0',['Warn',['../namespace_high_five.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246a56525ae64d370c0b448ac0d60710ef17',1,'HighFive']]], + ['wascollective_1',['wasCollective',['../class_high_five_1_1_mpio_no_collective_cause.html#a6d388115bac6e233bec17c6833206425',1,'HighFive::MpioNoCollectiveCause']]], + ['what_2',['what',['../class_high_five_1_1_exception.html#ac68d010bb13e90124360fa0f7c0e6f53',1,'HighFive::Exception']]], + ['write_3',['write',['../class_high_five_1_1_slice_traits.html#a307d4d8539a69feda2bbf11bf8622e60',1,'HighFive::SliceTraits::write()'],['../class_high_five_1_1_attribute.html#a9f7585585d281f09ab231df1637e29c7',1,'HighFive::Attribute::write()']]], + ['write_5fraw_4',['write_raw',['../class_high_five_1_1_slice_traits.html#aeac937f71ee942fafac7d19fb658721a',1,'HighFive::SliceTraits::write_raw(const T *buffer, const DataType &mem_datatype, const DataTransferProps &xfer_props=DataTransferProps())'],['../class_high_five_1_1_slice_traits.html#a4396e0774fd015f081dcc3eb12efe97c',1,'HighFive::SliceTraits::write_raw(const T *buffer, const DataTransferProps &xfer_props=DataTransferProps())'],['../class_high_five_1_1_attribute.html#aaf08f65d5477d96922aa257a2af86efa',1,'HighFive::Attribute::write_raw(const T *buffer, const DataType &mem_datatype)'],['../class_high_five_1_1_attribute.html#abb15f4324cc70aabaaaf9aaf9c7922c9',1,'HighFive::Attribute::write_raw(const T *buffer)']]] +]; diff --git a/search/all_15.js b/search/all_15.js new file mode 100644 index 000000000..2e9feb6df --- /dev/null +++ b/search/all_15.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['_7eexception_0',['~Exception',['../class_high_five_1_1_exception.html#a5b14aa4572f3e72eff27529413442f29',1,'HighFive::Exception']]], + ['_7eobject_1',['~Object',['../class_high_five_1_1_object.html#a26aecd6a0812960b13eff054fe3a78aa',1,'HighFive::Object']]], + ['_7esilencehdf5_2',['~SilenceHDF5',['../class_high_five_1_1_silence_h_d_f5.html#a56bfc9798ec749255cdd7960a73409a0',1,'HighFive::SilenceHDF5']]] +]; diff --git a/search/all_2.js b/search/all_2.js new file mode 100644 index 000000000..a86a1a6ec --- /dev/null +++ b/search/all_2.js @@ -0,0 +1,11 @@ +var searchData= +[ + ['back_0',['back',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a5944f3fd0a833c36ce59bc2db76f9a3c',1,'HighFive::deprecated::FixedLenStringArray']]], + ['base_5ftype_1',['base_type',['../struct_high_five_1_1_compound_type_1_1member__def.html#ac5ec615c6b321e2bcab9737a944b45ef',1,'HighFive::CompoundType::member_def']]], + ['basic_5ftype_2',['basic_type',['../class_high_five_1_1_atomic_type.html#aec235e205643310cbfeb2438b17fdc4d',1,'HighFive::AtomicType']]], + ['begin_3',['begin',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#ab27a11d14640741a320aab179bca1f36',1,'HighFive::deprecated::FixedLenStringArray::begin() noexcept'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a9d9516d876a63b6f6e881720c15c25fc',1,'HighFive::deprecated::FixedLenStringArray::begin() const noexcept']]], + ['beginners_20installation_20guide_20on_20linux_4',['Beginners Installation Guide on Linux',['../md__2home_2runner_2work_2_high_five_2_high_five_2doc_2installation.html',1,'']]], + ['bitfield_5',['BitField',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba2f706038ccc6843d07ebf1a34051a0a8',1,'HighFive']]], + ['block_6',['block',['../struct_high_five_1_1_regular_hyper_slab.html#a3cdc12f6910add0f049e672d115d3097',1,'HighFive::RegularHyperSlab']]], + ['boost_2ehpp_7',['boost.hpp',['../boost_8hpp.html',1,'']]] +]; diff --git a/search/all_3.js b/search/all_3.js new file mode 100644 index 000000000..386338f9a --- /dev/null +++ b/search/all_3.js @@ -0,0 +1,37 @@ +var searchData= +[ + ['c_20library_0',['HighFive - HDF5 header-only C++ Library',['../index.html',1,'']]], + ['caching_1',['Caching',['../class_high_five_1_1_caching.html',1,'HighFive::Caching'],['../class_high_five_1_1_caching.html#a4ad5bc32240ca22d19c154d6c7691e76',1,'HighFive::Caching::Caching(const size_t numSlots, const size_t cacheSize, const double w0=static_cast< double >(H5D_CHUNK_CACHE_W0_DEFAULT))'],['../class_high_five_1_1_caching.html#a1103a422af4e81b1f4c044996d66d72b',1,'HighFive::Caching::Caching(const DataSetCreateProps &dcpl)']]], + ['callback_5ftype_2',['callback_type',['../class_high_five_1_1_logger.html#a224d32b77bfb713e190d2699aaee4527',1,'HighFive::Logger']]], + ['cbegin_3',['cbegin',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a49f114243a95386618335e91aad6dacd',1,'HighFive::deprecated::FixedLenStringArray']]], + ['cend_4',['cend',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a2f5a7880b71178c0a064f49f01ca966b',1,'HighFive::deprecated::FixedLenStringArray']]], + ['changelog_2emd_5',['CHANGELOG.md',['../_c_h_a_n_g_e_l_o_g_8md.html',1,'']]], + ['changes_6',['Changes',['../md__2home_2runner_2work_2_high_five_2_high_five_2_c_h_a_n_g_e_l_o_g.html',1,'']]], + ['characterset_7',['CharacterSet',['../namespace_high_five.html#a7133a7a677541ffa6780f5ca5eee6db9',1,'HighFive']]], + ['chunking_8',['Chunking',['../class_high_five_1_1_chunking.html',1,'HighFive::Chunking'],['../class_high_five_1_1_chunking.html#abfd796a2842296cce52f56563d5e3f1b',1,'HighFive::Chunking::Chunking(const std::vector< hsize_t > &dims)'],['../class_high_five_1_1_chunking.html#ae6f0394d31da862755c2a828b7340578',1,'HighFive::Chunking::Chunking(const std::initializer_list< hsize_t > &items)'],['../class_high_five_1_1_chunking.html#a67ef8c92794bef91bb521dd1a8771034',1,'HighFive::Chunking::Chunking(hsize_t item, Args... args)'],['../class_high_five_1_1_chunking.html#a3c16ed55527bf30ae056cb2f52adb3bc',1,'HighFive::Chunking::Chunking(DataSetCreateProps &plist, size_t max_dims=32)']]], + ['clone_9',['clone',['../class_high_five_1_1_data_space.html#a902be8659c05c859158631230b78f3f4',1,'HighFive::DataSpace']]], + ['commit_10',['commit',['../class_high_five_1_1_compound_type.html#a15cef864f40910add938415ffb8eeac1',1,'HighFive::CompoundType::commit()'],['../class_high_five_1_1_enum_type.html#a989ae33cd573624dcbdcaf0d5bed5eea',1,'HighFive::EnumType::commit()']]], + ['compound_11',['Compound',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba26154ea007c65f860de5333a555a56cf',1,'HighFive']]], + ['compoundtype_12',['CompoundType',['../class_high_five_1_1_compound_type.html',1,'HighFive::CompoundType'],['../class_high_five_1_1_data_type.html#a9531936c7f60cc4739426e6a25f23e7e',1,'HighFive::DataType::CompoundType'],['../class_high_five_1_1_object.html#a9531936c7f60cc4739426e6a25f23e7e',1,'HighFive::Object::CompoundType'],['../class_high_five_1_1_compound_type.html#a7a9a5ba8596390d58597efe77c986282',1,'HighFive::CompoundType::CompoundType(const CompoundType &other)=default'],['../class_high_five_1_1_compound_type.html#ac8f84671aaca1a6e4aadf599464f822d',1,'HighFive::CompoundType::CompoundType(const std::vector< member_def > &t_members, size_t size=0)'],['../class_high_five_1_1_compound_type.html#af41ef356cdeb6f369ea2c3f5c6acb317',1,'HighFive::CompoundType::CompoundType(std::vector< member_def > &&t_members, size_t size=0)'],['../class_high_five_1_1_compound_type.html#a928622671e9da1ffcc7df491b746680d',1,'HighFive::CompoundType::CompoundType(const std::initializer_list< member_def > &t_members, size_t size=0)'],['../class_high_five_1_1_compound_type.html#ad8de9032c191ca6ca6221eb80dcf23da',1,'HighFive::CompoundType::CompoundType(DataType &&type)']]], + ['compress_13',['compress',['../class_h5_easy_1_1_dump_options.html#aef7625dc82a01d05a1e2047f0325dcd1',1,'H5Easy::DumpOptions']]], + ['compression_14',['Compression',['../class_h5_easy_1_1_compression.html',1,'H5Easy::Compression'],['../class_h5_easy_1_1_compression.html#af85134056dad9c8b46bb51835cba11d7',1,'H5Easy::Compression::Compression(bool enable=true)'],['../class_h5_easy_1_1_compression.html#aae59d202e4dfe95c53ee626d3439f6e4',1,'H5Easy::Compression::Compression(T level)']]], + ['compute_5ftotal_5fsize_15',['compute_total_size',['../namespace_high_five.html#ae473192dc3e4e3f42c470f682817a32c',1,'HighFive']]], + ['const_5fiterator_16',['const_iterator',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a19671be1dbcf028f6205af74d5788401',1,'HighFive::deprecated::FixedLenStringArray']]], + ['const_5freverse_5fiterator_17',['const_reverse_iterator',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a8f25777ccda9f7478dbadf7c41d1506c',1,'HighFive::deprecated::FixedLenStringArray']]], + ['count_18',['count',['../struct_high_five_1_1_regular_hyper_slab.html#ad1e6e23554a49dfabf633fd7a928cbb8',1,'HighFive::RegularHyperSlab']]], + ['create_19',['Create',['../class_high_five_1_1_file.html#a66225bf5898f9e14f84c02529ca19431a6c1f31f0e601d0b3982ac64dc50cdd69',1,'HighFive::File::Create'],['../namespace_h5_easy.html#a6d10754b7f2ada9e3296560032dd81a0a686e697538050e4664636337cc3b834f',1,'H5Easy::Create']]], + ['create_5fand_5fcheck_5fdatatype_20',['create_and_check_datatype',['../namespace_high_five.html#a43d3946c0bb037e99c803ec90dc247b4',1,'HighFive']]], + ['create_5fdatatype_21',['create_datatype',['../namespace_high_five.html#a6f3b307cc5b6bd82d6360f13cacac2de',1,'HighFive']]], + ['create_5fdatatype_3c_20bool_20_3e_22',['create_datatype< bool >',['../namespace_high_five.html#aaf8cbe7c9df6f34f493d21ad51517fc9',1,'HighFive']]], + ['create_5fenum_5fboolean_23',['create_enum_boolean',['../namespace_high_five.html#a361e2132e78bca627125eba4295b9ae6',1,'HighFive']]], + ['create_5fref_24',['create_ref',['../class_high_five_1_1_reference.html#af33dd1870b37db8c90287df4f0c7d622',1,'HighFive::Reference']]], + ['createattribute_25',['createAttribute',['../class_high_five_1_1_annotate_traits.html#a43db973fb33b6abbd8cc8cd7a6dc4bec',1,'HighFive::AnnotateTraits::createAttribute(const std::string &attribute_name, const DataSpace &space, const DataType &type)'],['../class_high_five_1_1_annotate_traits.html#a7218895780698f2bbab4d029fdab0284',1,'HighFive::AnnotateTraits::createAttribute(const std::string &attribute_name, const DataSpace &space)'],['../class_high_five_1_1_annotate_traits.html#ae4e2ba30f074187856b98bdc61bbd646',1,'HighFive::AnnotateTraits::createAttribute(const std::string &attribute_name, const T &data)']]], + ['createdataset_26',['createDataSet',['../class_high_five_1_1_node_traits.html#a941a8deb4c9971d27af7b7b73a534709',1,'HighFive::NodeTraits::createDataSet(const std::string &dataset_name, const DataSpace &space, const DataType &type, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)'],['../class_high_five_1_1_node_traits.html#ae0bcaf33a07487be71fc62d7a40d6a60',1,'HighFive::NodeTraits::createDataSet(const std::string &dataset_name, const DataSpace &space, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)'],['../class_high_five_1_1_node_traits.html#ac53402ee0dc01b86ac475dfa8db172c3',1,'HighFive::NodeTraits::createDataSet(const std::string &dataset_name, const T &data, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)'],['../class_high_five_1_1_node_traits.html#a36fc9e014e52d0bb6350865ffb28e8a4',1,'HighFive::NodeTraits::createDataSet(const std::string &dataset_name, const deprecated::FixedLenStringArray< N > &data, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)']]], + ['createexternallink_27',['createExternalLink',['../class_high_five_1_1_node_traits.html#a4f63ab185617fac1597087e8079a0989',1,'HighFive::NodeTraits']]], + ['creategroup_28',['createGroup',['../class_high_five_1_1_node_traits.html#a8b966c4e5ee90aa9d86421646f2ecb99',1,'HighFive::NodeTraits::createGroup(const std::string &group_name, bool parents=true)'],['../class_high_five_1_1_node_traits.html#a3da8ee379234a7d0d18e0abbd6019196',1,'HighFive::NodeTraits::createGroup(const std::string &group_name, const GroupCreateProps &createProps, bool parents=true)']]], + ['createhardlink_29',['createHardLink',['../class_high_five_1_1_node_traits.html#a7f11136752f9a2ec632e0b2f94fb475e',1,'HighFive::NodeTraits']]], + ['createintermediategroup_30',['CreateIntermediateGroup',['../class_high_five_1_1_create_intermediate_group.html',1,'HighFive::CreateIntermediateGroup'],['../class_high_five_1_1_create_intermediate_group.html#a05ff59987cddf8b82e3bd7a3eec0394f',1,'HighFive::CreateIntermediateGroup::CreateIntermediateGroup(bool create=true)'],['../class_high_five_1_1_create_intermediate_group.html#ab7b461991cf2489e2ec80c17c2a15462',1,'HighFive::CreateIntermediateGroup::CreateIntermediateGroup(const ObjectCreateProps &ocpl)'],['../class_high_five_1_1_create_intermediate_group.html#a5d3a1f7a0201c8735bb27493717b67a8',1,'HighFive::CreateIntermediateGroup::CreateIntermediateGroup(const LinkCreateProps &lcpl)']]], + ['createsoftlink_31',['createSoftLink',['../class_high_five_1_1_node_traits.html#a6f4f9127e6626fdc9d3456a77899217b',1,'HighFive::NodeTraits::createSoftLink(const std::string &linkName, const T &obj)'],['../class_high_five_1_1_node_traits.html#a44f7cc437ed68cb9d534f2fe2ffe3c79',1,'HighFive::NodeTraits::createSoftLink(const std::string &link_name, const std::string &obj_path, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)']]], + ['creationorder_32',['CreationOrder',['../struct_high_five_1_1_creation_order.html',1,'HighFive']]], + ['crt_5forder_33',['CRT_ORDER',['../namespace_high_five.html#afed91f5950b7a58ec51a33d260773996ac83c60110da7010a6dd3168fb2c8b8a7',1,'HighFive']]] +]; diff --git a/search/all_4.js b/search/all_4.js new file mode 100644 index 000000000..285e87dc1 --- /dev/null +++ b/search/all_4.js @@ -0,0 +1,38 @@ +var searchData= +[ + ['data_0',['data',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#abd859d160e3b5a53741a73ea80a991e2',1,'HighFive::deprecated::FixedLenStringArray::data() noexcept'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#af7f1fbfe4942c7039deead6c481da802',1,'HighFive::deprecated::FixedLenStringArray::data() const noexcept']]], + ['dataset_1',['DataSet',['../class_high_five_1_1_data_set.html',1,'HighFive::DataSet'],['../class_high_five_1_1_data_space.html#aef648af6c56fa8ee0738c93629e725dc',1,'HighFive::DataSpace::DataSet'],['../class_high_five_1_1_data_type.html#aef648af6c56fa8ee0738c93629e725dc',1,'HighFive::DataType::DataSet'],['../class_high_five_1_1_data_set.html#a1a43c3413fef0f376d85dbf47e38ad55',1,'HighFive::DataSet::DataSet()=default'],['../class_high_five_1_1_data_set.html#a99bb1d77991fd975fb559372b4b0fb6b',1,'HighFive::DataSet::DataSet(Object &&o) noexcept']]], + ['dataset_2',['Dataset',['../namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474a239658e016e3d5d06ae719d280a79fec',1,'HighFive']]], + ['dataset_5faccess_3',['DATASET_ACCESS',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a1f9f49c3a9b29c99fd336a46e1fb0b8c',1,'HighFive']]], + ['dataset_5fcreate_4',['DATASET_CREATE',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4aafd89ef46ba1fc317f8b8cfadbc8e89d',1,'HighFive']]], + ['dataset_5fxfer_5',['DATASET_XFER',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4adbac4060e0053cc521283eb9f7d0869e',1,'HighFive']]], + ['datasetaccessprops_6',['DataSetAccessProps',['../group___property_lists.html#ga7491cb84edb6012aa97f96ae21564d4c',1,'HighFive']]], + ['datasetcreateprops_7',['DataSetCreateProps',['../group___property_lists.html#ga8877fba7ca191b3b155888a625a764c3',1,'HighFive']]], + ['datasetexception_8',['DataSetException',['../class_high_five_1_1_data_set_exception.html',1,'HighFive::DataSetException'],['../class_high_five_1_1_data_set_exception.html#a12e2ef42d52a26486cbaa10ff9c02534',1,'HighFive::DataSetException::DataSetException()']]], + ['dataspace_9',['DataSpace',['../class_high_five_1_1_data_space.html',1,'HighFive::DataSpace'],['../class_high_five_1_1_data_space.html#a40b1526be36b7ebb536122f9c413feef',1,'HighFive::DataSpace::DataSpace(const std::vector< size_t > &dims)'],['../class_high_five_1_1_data_space.html#a978628751ce6f7ecf92961fa44e2a821',1,'HighFive::DataSpace::DataSpace(const std::array< size_t, N > &dims)'],['../class_high_five_1_1_data_space.html#a6558726da6bff24df406751a4429e10b',1,'HighFive::DataSpace::DataSpace(const std::initializer_list< size_t > &dims)'],['../class_high_five_1_1_data_space.html#a2771c3df1c0578278bfbd0e2263e7abf',1,'HighFive::DataSpace::DataSpace(size_t dim1, Args... dims)'],['../class_high_five_1_1_data_space.html#a5d48bf7863b08eed90d4357ac476b4a1',1,'HighFive::DataSpace::DataSpace(const IT begin, const IT end)'],['../class_high_five_1_1_data_space.html#a435085d2b1d06d54966c13d0d84a6e77',1,'HighFive::DataSpace::DataSpace(const std::vector< size_t > &dims, const std::vector< size_t > &maxdims)'],['../class_high_five_1_1_data_space.html#ab9230eeb6124dee3fbbc49c725e988ee',1,'HighFive::DataSpace::DataSpace(DataspaceType space_type)'],['../class_high_five_1_1_data_space.html#aaf4d7229b87d8175eaf0ab2314e9675a',1,'HighFive::DataSpace::DataSpace()=default'],['../namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474a546863182b9bd136e5295389d0e8343e',1,'HighFive::DataSpace']]], + ['dataspace_5fnull_10',['dataspace_null',['../class_high_five_1_1_data_space.html#a7169f30770f2b72b4d28841da2d6c153ac1a4c13c2bac8e1679bf850e76ad6092',1,'HighFive::DataSpace']]], + ['dataspace_5fscalar_11',['dataspace_scalar',['../class_high_five_1_1_data_space.html#a7169f30770f2b72b4d28841da2d6c153a49388b6d4ad7831a6589af61d6e60409',1,'HighFive::DataSpace']]], + ['dataspaceexception_12',['DataSpaceException',['../class_high_five_1_1_data_space_exception.html',1,'HighFive::DataSpaceException'],['../class_high_five_1_1_data_space_exception.html#a6838cd3e42fc092ed25594f8e4e98093',1,'HighFive::DataSpaceException::DataSpaceException()']]], + ['dataspacetype_13',['DataspaceType',['../class_high_five_1_1_data_space.html#a7169f30770f2b72b4d28841da2d6c153',1,'HighFive::DataSpace']]], + ['datatransferprops_14',['DataTransferProps',['../group___property_lists.html#ga905dd430e77d8ddf3086f49ec39c6f03',1,'HighFive']]], + ['datatype_15',['DataType',['../class_high_five_1_1_data_type.html',1,'HighFive::DataType'],['../class_high_five_1_1_string_type.html#a3891af67cf0b0e58640245a7ba31176f',1,'HighFive::StringType::DataType']]], + ['datatype_5faccess_16',['DATATYPE_ACCESS',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a023c2a1da4192ec57c9589f2adcf0375',1,'HighFive']]], + ['datatype_5fcreate_17',['DATATYPE_CREATE',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a4a9bef3e26735c56f85701720da97704',1,'HighFive']]], + ['datatypeaccessprops_18',['DataTypeAccessProps',['../group___property_lists.html#gaa41cb6d6489aa2e82a3dfd046daf6d3f',1,'HighFive']]], + ['datatypeclass_19',['DataTypeClass',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847b',1,'HighFive']]], + ['datatypecreateprops_20',['DataTypeCreateProps',['../group___property_lists.html#ga75c7721bfccfc8e093c53ba40a281b39',1,'HighFive']]], + ['datatypeexception_21',['DataTypeException',['../class_high_five_1_1_data_type_exception.html',1,'HighFive::DataTypeException'],['../class_high_five_1_1_data_type_exception.html#abfbd23381af62882f92fa1308f21948a',1,'HighFive::DataTypeException::DataTypeException()']]], + ['debug_22',['Debug',['../class_high_five_1_1_file.html#a66225bf5898f9e14f84c02529ca19431ac2400c1be1f6d184f2f7e2d5f6ac82c3',1,'HighFive::File::Debug'],['../namespace_high_five.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246aa603905470e2a5b8c13e96b579ef0dba',1,'HighFive::Debug']]], + ['default_23',['Default',['../class_high_five_1_1_property_list_base.html#aceba0c0241a36365b737e58baeb657ca',1,'HighFive::PropertyListBase::Default()'],['../class_high_five_1_1_property_list.html#a632188590f43c420a203c41909963a73',1,'HighFive::PropertyList::Default()']]], + ['default_5flogging_5fcallback_24',['default_logging_callback',['../namespace_high_five.html#abf6fe5be71a00bfb4d6b5f65e6248132',1,'HighFive']]], + ['deflate_25',['Deflate',['../class_high_five_1_1_deflate.html',1,'HighFive::Deflate'],['../class_high_five_1_1_deflate.html#aec7e6cfb91ee39beb916c0a96921fd6b',1,'HighFive::Deflate::Deflate()']]], + ['deleteattribute_26',['deleteAttribute',['../class_high_five_1_1_annotate_traits.html#a6aa353a99c57bc526da0b2f1a06318b3',1,'HighFive::AnnotateTraits']]], + ['deprecated_20list_27',['Deprecated List',['../deprecated.html',1,'']]], + ['dereference_28',['dereference',['../class_high_five_1_1_reference.html#a083d46fbe580304f8416f73e57a5b414',1,'HighFive::Reference']]], + ['developer_20guide_29',['Developer Guide',['../md__2home_2runner_2work_2_high_five_2_high_five_2doc_2developer__guide.html',1,'']]], + ['developer_5fguide_2emd_30',['developer_guide.md',['../developer__guide_8md.html',1,'']]], + ['dump_31',['dump',['../namespace_h5_easy.html#a3d74bc6b96493dbef4fb3b4e237cff88',1,'H5Easy::dump(File &file, const std::string &path, const T &data, DumpMode mode=DumpMode::Create)'],['../namespace_h5_easy.html#a7614d902c22b74a18fb29c42599a6785',1,'H5Easy::dump(File &file, const std::string &path, const T &data, const DumpOptions &options)'],['../namespace_h5_easy.html#a727340de29b032fa860412f6a69f215c',1,'H5Easy::dump(File &file, const std::string &path, const T &data, const std::vector< size_t > &idx)'],['../namespace_h5_easy.html#a2e96c80337866b79777e52faa7d692cc',1,'H5Easy::dump(File &file, const std::string &path, const T &data, const std::initializer_list< size_t > &idx)'],['../namespace_h5_easy.html#a26be50f813db9257d77b0c25adfdf726',1,'H5Easy::dump(File &file, const std::string &path, const T &data, const std::vector< size_t > &idx, const DumpOptions &options)'],['../namespace_h5_easy.html#a5f0af85e0fe3ac03af665dae2a3e9e16',1,'H5Easy::dump(File &file, const std::string &path, const T &data, const std::initializer_list< size_t > &idx, const DumpOptions &options)']]], + ['dumpattribute_32',['dumpAttribute',['../namespace_h5_easy.html#a85cad90855dbb23ba985be58b447a6b2',1,'H5Easy::dumpAttribute(File &file, const std::string &path, const std::string &key, const T &data, DumpMode mode=DumpMode::Create)'],['../namespace_h5_easy.html#a4a395eb642d1a2d5055282dacf32ee94',1,'H5Easy::dumpAttribute(File &file, const std::string &path, const std::string &key, const T &data, const DumpOptions &options)']]], + ['dumpmode_33',['DumpMode',['../namespace_h5_easy.html#a6d10754b7f2ada9e3296560032dd81a0',1,'H5Easy']]], + ['dumpoptions_34',['DumpOptions',['../class_h5_easy_1_1_dump_options.html',1,'H5Easy::DumpOptions'],['../class_h5_easy_1_1_dump_options.html#a692690dae0de400b885791b9ce1434b7',1,'H5Easy::DumpOptions::DumpOptions()=default'],['../class_h5_easy_1_1_dump_options.html#af2a89678a725e2cb33b4f4a824d102d3',1,'H5Easy::DumpOptions::DumpOptions(Args... args)']]] +]; diff --git a/search/all_5.js b/search/all_5.js new file mode 100644 index 000000000..6c98065d7 --- /dev/null +++ b/search/all_5.js @@ -0,0 +1,16 @@ +var searchData= +[ + ['eigen_2ehpp_0',['eigen.hpp',['../eigen_8hpp.html',1,'']]], + ['elementset_1',['ElementSet',['../class_high_five_1_1_element_set.html',1,'HighFive::ElementSet'],['../class_high_five_1_1_element_set.html#a1479938205bd9d66267a58a11651b04f',1,'HighFive::ElementSet::ElementSet(std::initializer_list< std::size_t > list)'],['../class_high_five_1_1_element_set.html#a294be4e23eff7d07faa08e128d4b0afc',1,'HighFive::ElementSet::ElementSet(std::initializer_list< std::vector< std::size_t > > list)'],['../class_high_five_1_1_element_set.html#aedd3703eec6465101d2eef43ddbb5788',1,'HighFive::ElementSet::ElementSet(const std::vector< std::size_t > &element_ids)'],['../class_high_five_1_1_element_set.html#afc31e0be89f28aea060d8482ea525996',1,'HighFive::ElementSet::ElementSet(const std::vector< std::vector< std::size_t > > &element_ids)']]], + ['empty_2',['empty',['../class_high_five_1_1_data_type.html#a546aceb9cdbc45d5e471811b8e9cdce8',1,'HighFive::DataType::empty()'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a3ec69eb4a8361d8da30100970377870b',1,'HighFive::deprecated::FixedLenStringArray::empty()']]], + ['empty_3',['Empty',['../class_high_five_1_1_property_list.html#a5f1efcfb89e0bb7051ef870c76129f5f',1,'HighFive::PropertyList']]], + ['end_4',['end',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#ad3dc286012bd53390ca15cce9bd72fc5',1,'HighFive::deprecated::FixedLenStringArray::end() noexcept'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a198f617755dab79c7fdf0bf9dcb6f489',1,'HighFive::deprecated::FixedLenStringArray::end() const noexcept']]], + ['enum_5',['Enum',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847bacf20423ed48998082c20099488a0917c',1,'HighFive']]], + ['enumtype_6',['EnumType',['../class_high_five_1_1_enum_type.html',1,'HighFive::EnumType< T >'],['../class_high_five_1_1_enum_type.html#a7d2b0c5fd6d77ea600687d6536b8ecdb',1,'HighFive::EnumType::EnumType(const EnumType &other)=default'],['../class_high_five_1_1_enum_type.html#aa1c30f28b5387421406e184c5f77b854',1,'HighFive::EnumType::EnumType(const std::vector< member_def > &t_members)'],['../class_high_five_1_1_enum_type.html#a36c34fffd466b4a2c0c4f3bdf9f6a1a3',1,'HighFive::EnumType::EnumType(std::initializer_list< member_def > t_members)']]], + ['error_7',['Error',['../namespace_high_five.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246a902b0d55fddef6f8d651fe1035b7d4bd',1,'HighFive']]], + ['estimatedlinkinfo_8',['EstimatedLinkInfo',['../class_high_five_1_1_estimated_link_info.html',1,'HighFive::EstimatedLinkInfo'],['../class_high_five_1_1_estimated_link_info.html#a3c311eb0f98aaa4dc1c7a26fab57a43d',1,'HighFive::EstimatedLinkInfo::EstimatedLinkInfo(unsigned entries, unsigned length)'],['../class_high_five_1_1_estimated_link_info.html#ae8d47670a7adee47bf69d0fc1a53ebf2',1,'HighFive::EstimatedLinkInfo::EstimatedLinkInfo(const GroupCreateProps &gcpl)']]], + ['exception_9',['Exception',['../class_high_five_1_1_exception.html',1,'HighFive::Exception'],['../class_high_five_1_1_exception.html#adbde3ec927a2402f5f1f23e50f02c155',1,'HighFive::Exception::Exception()']]], + ['excl_10',['Excl',['../class_high_five_1_1_file.html#a66225bf5898f9e14f84c02529ca19431ae9e864626c6d41245a375541c95fbc1b',1,'HighFive::File']]], + ['exist_11',['exist',['../class_high_five_1_1_node_traits.html#aa3c8c4e09ebba6d997768ad72bc3bf82',1,'HighFive::NodeTraits']]], + ['external_12',['External',['../namespace_high_five.html#abe5895b8113887accd6bff2392b24c40ab206a1b4ea1097761f78e8876f6da779',1,'HighFive']]] +]; diff --git a/search/all_6.js b/search/all_6.js new file mode 100644 index 000000000..f1865cc97 --- /dev/null +++ b/search/all_6.js @@ -0,0 +1,25 @@ +var searchData= +[ + ['false_0',['False',['../namespace_h5_easy.html#af71ce7ab9b99227bdead69993d1f3b62af8320b26d30ab433c5a54546d21f414c',1,'H5Easy']]], + ['file_1',['File',['../class_high_five_1_1_file.html',1,'HighFive::File'],['../class_high_five_1_1_data_space.html#a68d15876ad188b7628261b12d0eac8aa',1,'HighFive::DataSpace::File'],['../class_high_five_1_1_data_type.html#a68d15876ad188b7628261b12d0eac8aa',1,'HighFive::DataType::File'],['../class_high_five_1_1_group.html#a68d15876ad188b7628261b12d0eac8aa',1,'HighFive::Group::File'],['../class_high_five_1_1_file.html#a28ecd0313429c95671fe4baa6be076df',1,'HighFive::File::File(const std::string &filename, unsigned openFlags=ReadOnly, const FileAccessProps &fileAccessProps=FileAccessProps::Default())'],['../class_high_five_1_1_file.html#aae2430c3529c4896a207f6dbe64a943e',1,'HighFive::File::File(const std::string &filename, unsigned openFlags, const FileCreateProps &fileCreateProps, const FileAccessProps &fileAccessProps=FileAccessProps::Default())'],['../class_high_five_1_1_file.html#a8795099e29b71240c772e7c57d072a9d',1,'HighFive::File::File()=default'],['../namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474a0b27918290ff5323bea1e3b78a9cf04e',1,'HighFive::File']]], + ['file_5faccess_2',['FILE_ACCESS',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a8f93e8ee202d29ba296afdfb6c08550e',1,'HighFive']]], + ['file_5fcreate_3',['FILE_CREATE',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a5534109883a2d6699c0262b228c14f67',1,'HighFive']]], + ['fileaccessprops_4',['FileAccessProps',['../group___property_lists.html#ga358ba8fbb023f5e85dc6bb43219ed42c',1,'HighFive']]], + ['filecreateprops_5',['FileCreateProps',['../group___property_lists.html#ga8bdc886dc6c848bca97870e4b1d08336',1,'HighFive']]], + ['filedriver_6',['FileDriver',['../class_high_five_1_1_file_driver.html',1,'HighFive']]], + ['fileexception_7',['FileException',['../class_high_five_1_1_file_exception.html',1,'HighFive::FileException'],['../class_high_five_1_1_file_exception.html#a68c676392c9ea3f7e5e7ecc1149609ee',1,'HighFive::FileException::FileException()']]], + ['fileversionbounds_8',['FileVersionBounds',['../class_high_five_1_1_file_version_bounds.html',1,'HighFive::FileVersionBounds'],['../class_high_five_1_1_file_version_bounds.html#aff11691ee13ebbd765d9c1f18e379b4b',1,'HighFive::FileVersionBounds::FileVersionBounds(H5F_libver_t low, H5F_libver_t high)'],['../class_high_five_1_1_file_version_bounds.html#a9517df3be7e25b4a6770165ffe07430d',1,'HighFive::FileVersionBounds::FileVersionBounds(const FileAccessProps &fapl)']]], + ['find_5ffirst_5fatomic_5fmember_5fsize_9',['find_first_atomic_member_size',['../namespace_high_five.html#ac4e5e1ccbc6a1c20bcd581f71fb5e6d5',1,'HighFive']]], + ['fixedlengthstringtype_10',['FixedLengthStringType',['../class_high_five_1_1_fixed_length_string_type.html',1,'HighFive::FixedLengthStringType'],['../class_high_five_1_1_fixed_length_string_type.html#a861eb3227c2387d3c0754b795cde204e',1,'HighFive::FixedLengthStringType::FixedLengthStringType()']]], + ['fixedlenstringarray_11',['FixedLenStringArray',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html',1,'HighFive::deprecated::FixedLenStringArray< N >'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#aa913375abb83a7ef03c2b0ba53f7abc4',1,'HighFive::deprecated::FixedLenStringArray::FixedLenStringArray()=default'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#abe23e3558d76298d621d4a4b011bfb55',1,'HighFive::deprecated::FixedLenStringArray::FixedLenStringArray(const char array[][N], std::size_t n_strings)'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#af0de3010329cfdd2dbe6e874e5111a59',1,'HighFive::deprecated::FixedLenStringArray::FixedLenStringArray(const std::vector< std::string > &vec)'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#afe40ad8759b9ff2ecaf40e897baecafb',1,'HighFive::deprecated::FixedLenStringArray::FixedLenStringArray(const std::string *iter_begin, const std::string *iter_end)'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a32db457a4f2fdf923467533f3eabd556',1,'HighFive::deprecated::FixedLenStringArray::FixedLenStringArray(const std::initializer_list< std::string > &)']]], + ['float_12',['Float',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba22ae0e2b89e5e3d477f988cc36d3272b',1,'HighFive']]], + ['float16_5ft_13',['float16_t',['../namespace_high_five.html#aadbc34acfa3c496dbcb2eb3992fac573',1,'HighFive']]], + ['flush_14',['flush',['../class_h5_easy_1_1_dump_options.html#a2ed02e1afc1926b7a58346b9bf2017f9',1,'H5Easy::DumpOptions::flush()'],['../class_high_five_1_1_file.html#a1e607911df10307dd3cc75a0dd6c5158',1,'HighFive::File::flush()']]], + ['flush_15',['Flush',['../namespace_h5_easy.html#af71ce7ab9b99227bdead69993d1f3b62',1,'H5Easy']]], + ['from_16',['From',['../class_high_five_1_1_data_space.html#a4b0ebf9d884bf33a6b95e7eed989555a',1,'HighFive::DataSpace']]], + ['fromchararraystrings_17',['FromCharArrayStrings',['../class_high_five_1_1_data_space.html#a1ec5754826f5f43385e971da7f279559',1,'HighFive::DataSpace']]], + ['fromhdf5sizes_18',['fromHDF5Sizes',['../struct_high_five_1_1_regular_hyper_slab.html#af685fbdbe7d8dd7425c6c57719348a01',1,'HighFive::RegularHyperSlab']]], + ['fromid_19',['fromId',['../class_high_five_1_1_data_space.html#a3569ad59595555de776f3518460dbe14',1,'HighFive::DataSpace']]], + ['frompropertylist_20',['fromPropertyList',['../class_high_five_1_1_create_intermediate_group.html#a815c0e49561c0b4a774cc59a4aa017b7',1,'HighFive::CreateIntermediateGroup::fromPropertyList()'],['../class_high_five_1_1_link_creation_order.html#a6bcc5d01c7a4aa1630b192aa62ff3dd9',1,'HighFive::LinkCreationOrder::fromPropertyList()']]], + ['front_21',['front',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a3f1811f5d3e5bee60091cf45d4fe0c9b',1,'HighFive::deprecated::FixedLenStringArray']]] +]; diff --git a/search/all_7.js b/search/all_7.js new file mode 100644 index 000000000..037cb83e3 --- /dev/null +++ b/search/all_7.js @@ -0,0 +1,72 @@ +var searchData= +[ + ['get_0',['get',['../class_h5_easy_1_1_compression.html#a925d2e96ddbc9fc459b81ecf31fc121e',1,'H5Easy::Compression']]], + ['get_5fglobal_5flogger_1',['get_global_logger',['../namespace_high_five.html#ad2f60aec2c40524b30248aac67f5eeb5',1,'HighFive']]], + ['getaccesspropertylist_2',['getAccessPropertyList',['../class_high_five_1_1_data_set.html#ada59836ba9ddb3973fa80076e4242734',1,'HighFive::DataSet::getAccessPropertyList()'],['../class_high_five_1_1_file.html#a3a75e93bc3748614dff7e850d82ed495',1,'HighFive::File::getAccessPropertyList()']]], + ['getaddress_3',['getAddress',['../class_high_five_1_1_object_info.html#a9275887ab016ce89fc24938f8d86aa11',1,'HighFive::ObjectInfo']]], + ['getallocationtime_4',['getAllocationTime',['../class_high_five_1_1_allocation_time.html#a0fee45a52a542fedaa06300e177f7f01',1,'HighFive::AllocationTime']]], + ['getattribute_5',['getAttribute',['../class_high_five_1_1_annotate_traits.html#ad82448659b7a92cac2e7eeb5d8b974d6',1,'HighFive::AnnotateTraits']]], + ['getcachesize_6',['getCacheSize',['../class_high_five_1_1_caching.html#a54d4f322493e56f22fd5d70b1f64ea26',1,'HighFive::Caching']]], + ['getcause_7',['getCause',['../class_high_five_1_1_mpio_no_collective_cause.html#a7b1b28211a950b4652a0336559f4be6d',1,'HighFive::MpioNoCollectiveCause']]], + ['getcharacterset_8',['getCharacterSet',['../class_high_five_1_1_string_type.html#a81ae2382aeeccb15d53d70d04496fcab',1,'HighFive::StringType']]], + ['getchunksize_9',['getChunkSize',['../class_h5_easy_1_1_dump_options.html#a68181f4e69da1dc455606d006864e088',1,'H5Easy::DumpOptions']]], + ['getclass_10',['getClass',['../class_high_five_1_1_data_type.html#a98e6e07ff15a8e1b73673bc51a1a1339',1,'HighFive::DataType']]], + ['getcompressionlevel_11',['getCompressionLevel',['../class_h5_easy_1_1_dump_options.html#a8c58af708cddcbaebb03fcfff6b6356c',1,'H5Easy::DumpOptions']]], + ['getcreatepropertylist_12',['getCreatePropertyList',['../class_high_five_1_1_attribute.html#acee2136593f83a803e4b000916d3020b',1,'HighFive::Attribute::getCreatePropertyList()'],['../class_high_five_1_1_data_set.html#a565ee99d20689e662f17ab8ce3b57000',1,'HighFive::DataSet::getCreatePropertyList()'],['../class_high_five_1_1_data_type.html#a1a1b47fdec00d9814dd861fa51420c9e',1,'HighFive::DataType::getCreatePropertyList()'],['../class_high_five_1_1_file.html#a03938d3708dbafeaf6a83f982aee3909',1,'HighFive::File::getCreatePropertyList()'],['../class_high_five_1_1_group.html#a74f31ef804cbebe13b36db113ef5f235',1,'HighFive::Group::getCreatePropertyList()']]], + ['getcreationtime_13',['getCreationTime',['../class_high_five_1_1_object_info.html#a3afa78a1134a890934ade597a171b482',1,'HighFive::ObjectInfo']]], + ['getdataset_14',['getDataSet',['../class_high_five_1_1_node_traits.html#a6d42bb7aa92a8be5567a42a2f134115f',1,'HighFive::NodeTraits']]], + ['getdataset_15',['getDataset',['../class_high_five_1_1_selection.html#a99180045db6986a3aa99aa19b0b97c07',1,'HighFive::Selection::getDataset() noexcept'],['../class_high_five_1_1_selection.html#a883952cb62d668308d875bfbcc121fc8',1,'HighFive::Selection::getDataset() const noexcept']]], + ['getdatatype_16',['getDataType',['../class_high_five_1_1_node_traits.html#a5b618ebe1b03f24194b5a8ed1b9c59b6',1,'HighFive::NodeTraits::getDataType()'],['../class_high_five_1_1_attribute.html#a600131e681e98f5f03e64e662e3fa325',1,'HighFive::Attribute::getDataType()'],['../class_high_five_1_1_data_set.html#a52b7938b1c7e48f7600fbc3be4a0f24e',1,'HighFive::DataSet::getDataType()'],['../class_high_five_1_1_selection.html#a32e87dff815356a9fa9546a0c09f1d39',1,'HighFive::Selection::getDataType()']]], + ['getdimensions_17',['getDimensions',['../class_high_five_1_1_data_set.html#af7b75de38d47c2c68d4f384ee611bc66',1,'HighFive::DataSet::getDimensions()'],['../class_high_five_1_1_data_space.html#a8c0f85ba275d1d61c332b164070493c8',1,'HighFive::DataSpace::getDimensions()'],['../class_high_five_1_1_chunking.html#ab7241caf43e07ff7bfdb192770270bf2',1,'HighFive::Chunking::getDimensions()']]], + ['getelementcount_18',['getElementCount',['../class_high_five_1_1_data_set.html#abd786ba50bb11b92c9d760f7f77e4ca7',1,'HighFive::DataSet::getElementCount()'],['../class_high_five_1_1_data_space.html#a8b0fb67e77eed8e4b36b67bb352ec07b',1,'HighFive::DataSpace::getElementCount()']]], + ['getentries_19',['getEntries',['../class_high_five_1_1_estimated_link_info.html#a15fe39d3abcec1d56eae67246ed88848',1,'HighFive::EstimatedLinkInfo']]], + ['geterrmajor_20',['getErrMajor',['../class_high_five_1_1_exception.html#a9f29fccb5cbf3b5cb698cf7de68ba56c',1,'HighFive::Exception']]], + ['geterrminor_21',['getErrMinor',['../class_high_five_1_1_exception.html#ad19349814671c76249834ff802695145',1,'HighFive::Exception']]], + ['getestimatedlinkinfo_22',['getEstimatedLinkInfo',['../class_high_five_1_1_group.html#aeca9409bc3a21e9934728293bc24d960',1,'HighFive::Group']]], + ['getfile_23',['getFile',['../class_high_five_1_1_path_traits.html#a9d741a5f2d404314287b18b119136abf',1,'HighFive::PathTraits']]], + ['getfilesize_24',['getFileSize',['../class_high_five_1_1_file.html#a072b1759a2c8b033eea6d020a9ed1d08',1,'HighFive::File']]], + ['getflags_25',['getFlags',['../class_high_five_1_1_link_creation_order.html#ae4f83f749697446de9d56e593bc78a1a',1,'HighFive::LinkCreationOrder']]], + ['getfreespace_26',['getFreeSpace',['../class_high_five_1_1_file.html#a2cd2322084c2c60f5b07af3c3daf1c16',1,'HighFive::File']]], + ['getglobalcause_27',['getGlobalCause',['../class_high_five_1_1_mpio_no_collective_cause.html#a4b3a653e043b86ea0dfb3a7afdff2cb7',1,'HighFive::MpioNoCollectiveCause']]], + ['getgroup_28',['getGroup',['../class_high_five_1_1_node_traits.html#a286d9f9c2232c25abc5876bdc9d66edd',1,'HighFive::NodeTraits']]], + ['getid_29',['getId',['../class_high_five_1_1_object.html#a0efb623a7ceb36777ce81e215995a3bc',1,'HighFive::Object']]], + ['getinfo_30',['getInfo',['../class_high_five_1_1_object.html#a134549df53c4c0a04f728db983b2f947',1,'HighFive::Object']]], + ['getlinktype_31',['getLinkType',['../class_high_five_1_1_node_traits.html#aeab19b9f1fef90db036e1ea6238ef4eb',1,'HighFive::NodeTraits']]], + ['getlocalcause_32',['getLocalCause',['../class_high_five_1_1_mpio_no_collective_cause.html#affcbf437d343b3442cfda7da969f4d37',1,'HighFive::MpioNoCollectiveCause']]], + ['getmaxdimensions_33',['getMaxDimensions',['../class_high_five_1_1_data_space.html#a6563a285d1078bdff32e6662835e7a7b',1,'HighFive::DataSpace']]], + ['getmembers_34',['getMembers',['../class_high_five_1_1_compound_type.html#a771d62eb1c025b13c511de6959816d95',1,'HighFive::CompoundType']]], + ['getmemspace_35',['getMemSpace',['../class_high_five_1_1_attribute.html#a9a4f37c223c52078d91c843f2ba6d994',1,'HighFive::Attribute::getMemSpace()'],['../class_high_five_1_1_data_set.html#a37f31fc5f14192b9a9fcdc7707e0ceee',1,'HighFive::DataSet::getMemSpace()'],['../class_high_five_1_1_selection.html#a0a1461d53a4d91d265a696a6da0fc57c',1,'HighFive::Selection::getMemSpace()']]], + ['getmetadatablocksize_36',['getMetadataBlockSize',['../class_high_five_1_1_file.html#a3e3772ae94caca4b2422b536a1cf2472',1,'HighFive::File']]], + ['getmodificationtime_37',['getModificationTime',['../class_high_five_1_1_object_info.html#ad9e7a6bfd1b5f046745fab423f40750e',1,'HighFive::ObjectInfo']]], + ['getname_38',['getName',['../class_high_five_1_1_attribute.html#a70021d5bf236c431d93013a4ae0ff910',1,'HighFive::Attribute::getName()'],['../class_high_five_1_1_file.html#af555f50958667264563b0cb17b8f902b',1,'HighFive::File::getName()']]], + ['getnamelength_39',['getNameLength',['../class_high_five_1_1_estimated_link_info.html#ab41597c8411f3a4023d82ebd1323a5f7',1,'HighFive::EstimatedLinkInfo']]], + ['getnumberattributes_40',['getNumberAttributes',['../class_high_five_1_1_annotate_traits.html#ae35a70acace4c47935400398d4671d69',1,'HighFive::AnnotateTraits']]], + ['getnumberdimensions_41',['getNumberDimensions',['../class_high_five_1_1_data_space.html#a53c27afc9308d2c44fa6d0e09f1ede9a',1,'HighFive::DataSpace']]], + ['getnumberobjects_42',['getNumberObjects',['../class_high_five_1_1_node_traits.html#ad90f036b55bd3e155c73ece61233210e',1,'HighFive::NodeTraits']]], + ['getnumslots_43',['getNumSlots',['../class_high_five_1_1_caching.html#a0de6bc2b09373107cd10a0fc6211d030',1,'HighFive::Caching']]], + ['getobjectname_44',['getObjectName',['../class_high_five_1_1_node_traits.html#ae10cb4bd9e20c651c136b284f3d8cd46',1,'HighFive::NodeTraits']]], + ['getobjecttype_45',['getObjectType',['../class_high_five_1_1_node_traits.html#abc2c385a18e2caaae71366139b57d8f2',1,'HighFive::NodeTraits']]], + ['getoffset_46',['getOffset',['../class_high_five_1_1_data_set.html#a662e1f9f8d9dfbbf02e135f6be2ee471',1,'HighFive::DataSet']]], + ['getoptionsmask_47',['getOptionsMask',['../class_high_five_1_1_szip.html#ae2a9cc8055aad910598e3f03c4bba3c0',1,'HighFive::Szip']]], + ['getpadding_48',['getPadding',['../class_high_five_1_1_string_type.html#a4f914467563cab045807517baee82c2d',1,'HighFive::StringType']]], + ['getpath_49',['getPath',['../class_high_five_1_1_path_traits.html#aca32b01b8c7eb54d398daeaac0b64399',1,'HighFive::PathTraits::getPath()'],['../class_high_five_1_1_file.html#af141a4c6c9fe058b121646b2079f2c6b',1,'HighFive::File::getPath()']]], + ['getpixelsperblock_50',['getPixelsPerBlock',['../class_high_five_1_1_szip.html#a9ad6b7b8022b89ac1a30bf2cfdbd7cf0',1,'HighFive::Szip']]], + ['getrefcount_51',['getRefCount',['../class_high_five_1_1_object_info.html#aa43efa7e90bebf6f39769d7cd56f8bbe',1,'HighFive::ObjectInfo']]], + ['getshape_52',['getShape',['../namespace_h5_easy.html#aa178d03fd7b8d435b5b41f613c1eaa8b',1,'H5Easy']]], + ['getsize_53',['getSize',['../class_high_five_1_1_data_type.html#a2658ec3c1c3c77dadeb0b1b053d3a7d3',1,'HighFive::DataType::getSize()'],['../class_high_five_1_1_metadata_block_size.html#aee2a49ebdc426f1794c154e3d1b2f871',1,'HighFive::MetadataBlockSize::getSize()'],['../namespace_h5_easy.html#a225c8cffbe78d15254ecde0c8a42958b',1,'H5Easy::getSize()']]], + ['getspace_54',['getSpace',['../class_high_five_1_1_attribute.html#a4378b9e1603b22509c1495ac4362116d',1,'HighFive::Attribute::getSpace()'],['../class_high_five_1_1_data_set.html#aa9405c8f1bdb72d28e971c8645fb47aa',1,'HighFive::DataSet::getSpace()'],['../class_high_five_1_1_selection.html#ae9f659387f72554c7747fc80ddfce280',1,'HighFive::Selection::getSpace()']]], + ['getstoragesize_55',['getStorageSize',['../class_high_five_1_1_attribute.html#ab2ab807ffa3fc8cb6d72ac7ab75a58f1',1,'HighFive::Attribute::getStorageSize()'],['../class_high_five_1_1_data_set.html#a9f1da81f89bdaa08561fb35779586f64',1,'HighFive::DataSet::getStorageSize()']]], + ['getstring_56',['getString',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a70cfdd3324d4c476a5cce1133417a1e4',1,'HighFive::deprecated::FixedLenStringArray']]], + ['gettype_57',['getType',['../class_high_five_1_1_object.html#a60a33f44d524aae5936131770811bd58',1,'HighFive::Object::getType()'],['../class_high_five_1_1_property_list.html#ac5be2be6430f56234db215589ebdee5e',1,'HighFive::PropertyList::getType()'],['../class_high_five_1_1_reference.html#ab5596af0210db020de67f3e04a22da31',1,'HighFive::Reference::getType()']]], + ['getversion_58',['getVersion',['../class_high_five_1_1_file_version_bounds.html#a6d55273a22fb8ecbba0079cc08ae9c79',1,'HighFive::FileVersionBounds']]], + ['getversionbounds_59',['getVersionBounds',['../class_high_five_1_1_file.html#a1c5b148c4e906bcde448b4eea1f66b91',1,'HighFive::File']]], + ['getw0_60',['getW0',['../class_high_five_1_1_caching.html#ae8777cc455ef27d20d44f9aea32720b7',1,'HighFive::Caching']]], + ['group_61',['Group',['../class_high_five_1_1_group.html',1,'HighFive::Group'],['../class_high_five_1_1_group.html#a64f8b882c1f7844570be07bb7b012f04',1,'HighFive::Group::Group()=default'],['../class_high_five_1_1_group.html#aa5a251bd5db04d9f05b8c1df4c989b18',1,'HighFive::Group::Group(Object &&o) noexcept'],['../namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474a03937134cedab9078be39a77ee3a48a0',1,'HighFive::Group']]], + ['group_5faccess_62',['GROUP_ACCESS',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4aff3aa98325265641dfb5b6c727973774',1,'HighFive']]], + ['group_5fcreate_63',['GROUP_CREATE',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4aa9f9694169963af7096ae421df5025ce',1,'HighFive']]], + ['groupaccessprops_64',['GroupAccessProps',['../group___property_lists.html#ga94129b25dc64ff0d23c98fbf3299d91c',1,'HighFive']]], + ['groupcreateprops_65',['GroupCreateProps',['../group___property_lists.html#gab7d50ee5d71f2ff1bab9bf1757640f3f',1,'HighFive']]], + ['groupexception_66',['GroupException',['../class_high_five_1_1_group_exception.html',1,'HighFive::GroupException'],['../class_high_five_1_1_group_exception.html#a3230fc495c7c0bbcab847dc12fbf09df',1,'HighFive::GroupException::GroupException()']]], + ['guide_67',['Guide',['../md__2home_2runner_2work_2_high_five_2_high_five_2doc_2developer__guide.html',1,'Developer Guide'],['../md__2home_2runner_2work_2_high_five_2_high_five_2doc_2migration__guide.html',1,'Migration Guide']]], + ['guide_20on_20linux_68',['Beginners Installation Guide on Linux',['../md__2home_2runner_2work_2_high_five_2_high_five_2doc_2installation.html',1,'']]] +]; diff --git a/search/all_8.js b/search/all_8.js new file mode 100644 index 000000000..d750a38dc --- /dev/null +++ b/search/all_8.js @@ -0,0 +1,98 @@ +var searchData= +[ + ['h5_5fdefinitions_2ehpp_0',['H5_definitions.hpp',['../_h5__definitions_8hpp.html',1,'']]], + ['h5_5fdeprecated_1',['H5_DEPRECATED',['../_h5__definitions_8hpp.html#ac2f1b4314e067c8a44383228d8a47cce',1,'H5_definitions.hpp']]], + ['h5_5fdeprecated_5fusing_2',['H5_DEPRECATED_USING',['../_h5__definitions_8hpp.html#aa4ffeead789d7234fbd1920500bcf448',1,'H5_definitions.hpp']]], + ['h5_5fwrapper_2ehpp_3',['h5_wrapper.hpp',['../h5__wrapper_8hpp.html',1,'']]], + ['h5a_5fwrapper_2ehpp_4',['h5a_wrapper.hpp',['../h5a__wrapper_8hpp.html',1,'']]], + ['h5annotate_5ftraits_2ehpp_5',['H5Annotate_traits.hpp',['../_h5_annotate__traits_8hpp.html',1,'']]], + ['h5annotate_5ftraits_5fmisc_2ehpp_6',['H5Annotate_traits_misc.hpp',['../_h5_annotate__traits__misc_8hpp.html',1,'']]], + ['h5attribute_2ehpp_7',['H5Attribute.hpp',['../_h5_attribute_8hpp.html',1,'']]], + ['h5attribute_5fmisc_2ehpp_8',['H5Attribute_misc.hpp',['../_h5_attribute__misc_8hpp.html',1,'']]], + ['h5converter_5fmisc_2ehpp_9',['H5Converter_misc.hpp',['../_h5_converter__misc_8hpp.html',1,'']]], + ['h5d_5fwrapper_2ehpp_10',['h5d_wrapper.hpp',['../h5d__wrapper_8hpp.html',1,'']]], + ['h5dataset_2ehpp_11',['H5DataSet.hpp',['../_h5_data_set_8hpp.html',1,'']]], + ['h5dataset_5fmisc_2ehpp_12',['H5DataSet_misc.hpp',['../_h5_data_set__misc_8hpp.html',1,'']]], + ['h5dataspace_2ehpp_13',['H5DataSpace.hpp',['../_h5_data_space_8hpp.html',1,'']]], + ['h5dataspace_5fmisc_2ehpp_14',['H5Dataspace_misc.hpp',['../_h5_dataspace__misc_8hpp.html',1,'']]], + ['h5datatype_2ehpp_15',['H5DataType.hpp',['../_h5_data_type_8hpp.html',1,'']]], + ['h5datatype_5fmisc_2ehpp_16',['H5DataType_misc.hpp',['../_h5_data_type__misc_8hpp.html',1,'']]], + ['h5e_5fwrapper_2ehpp_17',['h5e_wrapper.hpp',['../h5e__wrapper_8hpp.html',1,'']]], + ['h5easy_18',['H5Easy',['../namespace_h5_easy.html',1,'']]], + ['h5easy_2ehpp_19',['H5Easy.hpp',['../_h5_easy_8hpp.html',1,'']]], + ['h5easy_5feigen_2ehpp_20',['H5Easy_Eigen.hpp',['../_h5_easy___eigen_8hpp.html',1,'']]], + ['h5easy_5fmisc_2ehpp_21',['H5Easy_misc.hpp',['../_h5_easy__misc_8hpp.html',1,'']]], + ['h5easy_5fopencv_2ehpp_22',['H5Easy_opencv.hpp',['../_h5_easy__opencv_8hpp.html',1,'']]], + ['h5easy_5fpublic_2ehpp_23',['H5Easy_public.hpp',['../_h5_easy__public_8hpp.html',1,'']]], + ['h5easy_5fscalar_2ehpp_24',['H5Easy_scalar.hpp',['../_h5_easy__scalar_8hpp.html',1,'']]], + ['h5easy_5fvector_2ehpp_25',['H5Easy_vector.hpp',['../_h5_easy__vector_8hpp.html',1,'']]], + ['h5easy_5fxtensor_2ehpp_26',['H5Easy_xtensor.hpp',['../_h5_easy__xtensor_8hpp.html',1,'']]], + ['h5exception_2ehpp_27',['H5Exception.hpp',['../_h5_exception_8hpp.html',1,'']]], + ['h5exception_5fmisc_2ehpp_28',['H5Exception_misc.hpp',['../_h5_exception__misc_8hpp.html',1,'']]], + ['h5f_5fwrapper_2ehpp_29',['h5f_wrapper.hpp',['../h5f__wrapper_8hpp.html',1,'']]], + ['h5file_2ehpp_30',['H5File.hpp',['../_h5_file_8hpp.html',1,'']]], + ['h5file_5fmisc_2ehpp_31',['H5File_misc.hpp',['../_h5_file__misc_8hpp.html',1,'']]], + ['h5filedriver_2ehpp_32',['H5FileDriver.hpp',['../_h5_file_driver_8hpp.html',1,'']]], + ['h5filedriver_5fmisc_2ehpp_33',['H5FileDriver_misc.hpp',['../_h5_file_driver__misc_8hpp.html',1,'']]], + ['h5friends_2ehpp_34',['H5Friends.hpp',['../_h5_friends_8hpp.html',1,'']]], + ['h5g_5fwrapper_2ehpp_35',['h5g_wrapper.hpp',['../h5g__wrapper_8hpp.html',1,'']]], + ['h5group_2ehpp_36',['H5Group.hpp',['../_h5_group_8hpp.html',1,'']]], + ['h5i_5fwrapper_2ehpp_37',['h5i_wrapper.hpp',['../h5i__wrapper_8hpp.html',1,'']]], + ['h5inspector_5fdecl_2ehpp_38',['H5Inspector_decl.hpp',['../_h5_inspector__decl_8hpp.html',1,'']]], + ['h5inspector_5fmisc_2ehpp_39',['H5Inspector_misc.hpp',['../_h5_inspector__misc_8hpp.html',1,'']]], + ['h5iterables_5fmisc_2ehpp_40',['H5Iterables_misc.hpp',['../_h5_iterables__misc_8hpp.html',1,'']]], + ['h5l_5fwrapper_2ehpp_41',['h5l_wrapper.hpp',['../h5l__wrapper_8hpp.html',1,'']]], + ['h5node_5ftraits_2ehpp_42',['H5Node_traits.hpp',['../_h5_node__traits_8hpp.html',1,'']]], + ['h5node_5ftraits_5fmisc_2ehpp_43',['H5Node_traits_misc.hpp',['../_h5_node__traits__misc_8hpp.html',1,'']]], + ['h5o_5fwrapper_2ehpp_44',['h5o_wrapper.hpp',['../h5o__wrapper_8hpp.html',1,'']]], + ['h5object_2ehpp_45',['H5Object.hpp',['../_h5_object_8hpp.html',1,'']]], + ['h5object_5fmisc_2ehpp_46',['H5Object_misc.hpp',['../_h5_object__misc_8hpp.html',1,'']]], + ['h5p_5fwrapper_2ehpp_47',['h5p_wrapper.hpp',['../h5p__wrapper_8hpp.html',1,'']]], + ['h5path_5ftraits_2ehpp_48',['H5Path_traits.hpp',['../_h5_path__traits_8hpp.html',1,'']]], + ['h5path_5ftraits_5fmisc_2ehpp_49',['H5Path_traits_misc.hpp',['../_h5_path__traits__misc_8hpp.html',1,'']]], + ['h5propertylist_2ehpp_50',['H5PropertyList.hpp',['../_h5_property_list_8hpp.html',1,'']]], + ['h5propertylist_5fmisc_2ehpp_51',['H5PropertyList_misc.hpp',['../_h5_property_list__misc_8hpp.html',1,'']]], + ['h5r_5fwrapper_2ehpp_52',['h5r_wrapper.hpp',['../h5r__wrapper_8hpp.html',1,'']]], + ['h5readwrite_5fmisc_2ehpp_53',['H5ReadWrite_misc.hpp',['../_h5_read_write__misc_8hpp.html',1,'']]], + ['h5reference_2ehpp_54',['H5Reference.hpp',['../_h5_reference_8hpp.html',1,'']]], + ['h5reference_5fmisc_2ehpp_55',['H5Reference_misc.hpp',['../_h5_reference__misc_8hpp.html',1,'']]], + ['h5s_5fwrapper_2ehpp_56',['h5s_wrapper.hpp',['../h5s__wrapper_8hpp.html',1,'']]], + ['h5selection_2ehpp_57',['H5Selection.hpp',['../_h5_selection_8hpp.html',1,'']]], + ['h5selection_5fmisc_2ehpp_58',['H5Selection_misc.hpp',['../_h5_selection__misc_8hpp.html',1,'']]], + ['h5slice_5ftraits_2ehpp_59',['H5Slice_traits.hpp',['../_h5_slice__traits_8hpp.html',1,'']]], + ['h5slice_5ftraits_5fmisc_2ehpp_60',['H5Slice_traits_misc.hpp',['../_h5_slice__traits__misc_8hpp.html',1,'']]], + ['h5t_5fwrapper_2ehpp_61',['h5t_wrapper.hpp',['../h5t__wrapper_8hpp.html',1,'']]], + ['h5utility_2ehpp_62',['H5Utility.hpp',['../_h5_utility_8hpp.html',1,'']]], + ['h5utils_2ehpp_63',['H5Utils.hpp',['../_h5_utils_8hpp.html',1,'']]], + ['h5version_2ehpp_64',['H5Version.hpp',['../_h5_version_8hpp.html',1,'']]], + ['half_5ffloat_2ehpp_65',['half_float.hpp',['../half__float_8hpp.html',1,'']]], + ['hard_66',['Hard',['../namespace_high_five.html#abe5895b8113887accd6bff2392b24c40a3656183169810334a96b91129dc9d881',1,'HighFive']]], + ['hasattribute_67',['hasAttribute',['../class_high_five_1_1_annotate_traits.html#add90f8bddb79edc973aa70f967c92724',1,'HighFive::AnnotateTraits']]], + ['hdf5_20header_20only_20c_20library_68',['HighFive - HDF5 header-only C++ Library',['../index.html',1,'']]], + ['hdf5errmapper_69',['HDF5ErrMapper',['../struct_high_five_1_1_h_d_f5_err_mapper.html',1,'HighFive::HDF5ErrMapper'],['../class_high_five_1_1_exception.html#a1f3f174381f90e2f63dc4dbd5eb62e52',1,'HighFive::Exception::HDF5ErrMapper']]], + ['header_20only_20c_20library_70',['HighFive - HDF5 header-only C++ Library',['../index.html',1,'']]], + ['highfive_71',['HighFive',['../namespace_high_five.html',1,'']]], + ['highfive_20hdf5_20header_20only_20c_20library_72',['HighFive - HDF5 header-only C++ Library',['../index.html',1,'']]], + ['highfive_2ehpp_73',['highfive.hpp',['../highfive_8hpp.html',1,'']]], + ['highfive_3a_3adeprecated_74',['deprecated',['../namespace_high_five_1_1deprecated.html',1,'HighFive']]], + ['highfive_5flog_5fdebug_75',['HIGHFIVE_LOG_DEBUG',['../_h5_utility_8hpp.html#a45004ae7b6ee4d36ece02625b803dae1',1,'H5Utility.hpp']]], + ['highfive_5flog_5fdebug_5fif_76',['HIGHFIVE_LOG_DEBUG_IF',['../_h5_utility_8hpp.html#acb450a6ca0ce4ede86eeb543dbb97fd5',1,'H5Utility.hpp']]], + ['highfive_5flog_5ferror_77',['HIGHFIVE_LOG_ERROR',['../_h5_utility_8hpp.html#ada09af07f5ee416f589dc4c6b7dfc28d',1,'H5Utility.hpp']]], + ['highfive_5flog_5ferror_5fif_78',['HIGHFIVE_LOG_ERROR_IF',['../_h5_utility_8hpp.html#aacdac9e7e0e29eb62f7d68b1bddb08b7',1,'H5Utility.hpp']]], + ['highfive_5flog_5finfo_79',['HIGHFIVE_LOG_INFO',['../_h5_utility_8hpp.html#aea7948282a427dd2d5a04b87c66d38a0',1,'H5Utility.hpp']]], + ['highfive_5flog_5finfo_5fif_80',['HIGHFIVE_LOG_INFO_IF',['../_h5_utility_8hpp.html#a15521059b105b67127f790239ab149e5',1,'H5Utility.hpp']]], + ['highfive_5flog_5flevel_81',['HIGHFIVE_LOG_LEVEL',['../_h5_utility_8hpp.html#a8e389ca826af6e2e77d72db9fe9a71ee',1,'H5Utility.hpp']]], + ['highfive_5flog_5flevel_5fdebug_82',['HIGHFIVE_LOG_LEVEL_DEBUG',['../_h5_utility_8hpp.html#a89e04aa74828b90f31d3d12cf53d3347',1,'H5Utility.hpp']]], + ['highfive_5flog_5flevel_5ferror_83',['HIGHFIVE_LOG_LEVEL_ERROR',['../_h5_utility_8hpp.html#a35fe0e7a0a4ea952af9ecaa18594ef7e',1,'H5Utility.hpp']]], + ['highfive_5flog_5flevel_5finfo_84',['HIGHFIVE_LOG_LEVEL_INFO',['../_h5_utility_8hpp.html#ab7ac8b069d562c15b358763734b4aa07',1,'H5Utility.hpp']]], + ['highfive_5flog_5flevel_5fwarn_85',['HIGHFIVE_LOG_LEVEL_WARN',['../_h5_utility_8hpp.html#a233481164afb1c4337fb2c4501dadcb7',1,'H5Utility.hpp']]], + ['highfive_5flog_5fwarn_86',['HIGHFIVE_LOG_WARN',['../_h5_utility_8hpp.html#a6512d9a30b5c76e13ec5f2756144c91a',1,'H5Utility.hpp']]], + ['highfive_5flog_5fwarn_5fif_87',['HIGHFIVE_LOG_WARN_IF',['../_h5_utility_8hpp.html#a018b242d83052245f9f602f5bac1067f',1,'H5Utility.hpp']]], + ['highfive_5fregister_5ftype_88',['HIGHFIVE_REGISTER_TYPE',['../_h5_data_type_8hpp.html#aabbf38f2b276343c2b2a85116e60313c',1,'H5DataType.hpp']]], + ['highfive_5fversion_89',['HIGHFIVE_VERSION',['../_h5_version_8hpp.html#a34c5e47396e70779257b4db31ac7b842',1,'H5Version.hpp']]], + ['highfive_5fversion_5fmajor_90',['HIGHFIVE_VERSION_MAJOR',['../_h5_version_8hpp.html#acbea9a5d26e85ae32c220007e9a8f4b2',1,'H5Version.hpp']]], + ['highfive_5fversion_5fminor_91',['HIGHFIVE_VERSION_MINOR',['../_h5_version_8hpp.html#ad6bd311c44f04b43f52c0e74cefc6e7a',1,'H5Version.hpp']]], + ['highfive_5fversion_5fpatch_92',['HIGHFIVE_VERSION_PATCH',['../_h5_version_8hpp.html#ab47cd23c1c1cf25b17b14eacc9866d89',1,'H5Version.hpp']]], + ['highfive_5fversion_5fstring_93',['HIGHFIVE_VERSION_STRING',['../_h5_version_8hpp.html#aaa84ff2fb9a733a1dd79e654e0839702',1,'H5Version.hpp']]], + ['hyperslab_94',['HyperSlab',['../class_high_five_1_1_hyper_slab.html',1,'HighFive::HyperSlab'],['../class_high_five_1_1_hyper_slab.html#a906f51584d65e1b6fc777d4bc2022553',1,'HighFive::HyperSlab::HyperSlab()'],['../class_high_five_1_1_hyper_slab.html#adf8bf61c7a39ea30b73f0409c034e4aa',1,'HighFive::HyperSlab::HyperSlab(const RegularHyperSlab &sel)']]] +]; diff --git a/search/all_9.js b/search/all_9.js new file mode 100644 index 000000000..3b68af9df --- /dev/null +++ b/search/all_9.js @@ -0,0 +1,18 @@ +var searchData= +[ + ['indexed_0',['Indexed',['../struct_high_five_1_1_creation_order.html#aaaeb7940131b73a9385f499e08d2c0dfaaa056e331f82016fbdf6dc751bd97ff6',1,'HighFive::CreationOrder']]], + ['indextype_1',['IndexType',['../namespace_high_five.html#afed91f5950b7a58ec51a33d260773996',1,'HighFive']]], + ['info_2',['Info',['../namespace_high_five.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246a4059b0251f66a18cb56f544728796875',1,'HighFive']]], + ['installation_20guide_20on_20linux_3',['Beginners Installation Guide on Linux',['../md__2home_2runner_2work_2_high_five_2_high_five_2doc_2installation.html',1,'']]], + ['installation_2emd_4',['installation.md',['../installation_8md.html',1,'']]], + ['integer_5',['Integer',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847baa0faef0851b4294c06f2b94bb1cb2044',1,'HighFive']]], + ['invalid_6',['Invalid',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba4bbb8f967da6d1a610596d7257179c2b',1,'HighFive']]], + ['ischunked_7',['isChunked',['../class_h5_easy_1_1_dump_options.html#a4329501c533ec014d987a202e09413c8',1,'H5Easy::DumpOptions']]], + ['iscollective_8',['isCollective',['../class_high_five_1_1_use_collective_i_o.html#a2c5a378080dd17e736bd0f6b0ae81e1c',1,'HighFive::UseCollectiveIO']]], + ['isfixedlenstr_9',['isFixedLenStr',['../class_high_five_1_1_data_type.html#a0d74bf84217ed4b71818d53db9077d5f',1,'HighFive::DataType']]], + ['isreference_10',['isReference',['../class_high_five_1_1_data_type.html#a9c9656462b3b4442fd0a8ba7fb0ce93f',1,'HighFive::DataType']]], + ['isset_11',['isSet',['../class_high_five_1_1_create_intermediate_group.html#af4a9eb748f1c06199c9ad19daafd8632',1,'HighFive::CreateIntermediateGroup']]], + ['isvalid_12',['isValid',['../class_high_five_1_1_object.html#a7b4b75cd26da783a0ad21ca7f2a593d3',1,'HighFive::Object']]], + ['isvariablestr_13',['isVariableStr',['../class_high_five_1_1_data_type.html#a3f239e86eb8235d0cad445421f97af7c',1,'HighFive::DataType']]], + ['iterator_14',['iterator',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#aeaf378839154ee61447437776d2958a2',1,'HighFive::deprecated::FixedLenStringArray']]] +]; diff --git a/search/all_a.js b/search/all_a.js new file mode 100644 index 000000000..f1864ad27 --- /dev/null +++ b/search/all_a.js @@ -0,0 +1,20 @@ +var searchData= +[ + ['library_0',['HighFive - HDF5 header-only C++ Library',['../index.html',1,'']]], + ['link_5faccess_1',['LINK_ACCESS',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a49f33864cd831c0b35b59fc99cb75293',1,'HighFive']]], + ['link_5fcreate_2',['LINK_CREATE',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a57fb2f103675cde088df70923f6224b1',1,'HighFive']]], + ['linkaccessprops_3',['LinkAccessProps',['../group___property_lists.html#ga6e5fcdabe6e261340645676ebbc6c4c9',1,'HighFive']]], + ['linkcreateprops_4',['LinkCreateProps',['../group___property_lists.html#ga174b81b71b9c60f6b29ae68860bb7721',1,'HighFive']]], + ['linkcreationorder_5',['LinkCreationOrder',['../class_high_five_1_1_link_creation_order.html',1,'HighFive::LinkCreationOrder'],['../class_high_five_1_1_link_creation_order.html#a5a0c8614e72358c1723153a06d2c11e6',1,'HighFive::LinkCreationOrder::LinkCreationOrder(unsigned flags)'],['../class_high_five_1_1_link_creation_order.html#aff78af3c9313f37f86bb9aa172440377',1,'HighFive::LinkCreationOrder::LinkCreationOrder(const FileCreateProps &fcpl)'],['../class_high_five_1_1_link_creation_order.html#a1048f06282af8a1a5441e359fc5944f3',1,'HighFive::LinkCreationOrder::LinkCreationOrder(const GroupCreateProps &gcpl)']]], + ['linktype_6',['LinkType',['../namespace_high_five.html#abe5895b8113887accd6bff2392b24c40',1,'HighFive']]], + ['linux_7',['Beginners Installation Guide on Linux',['../md__2home_2runner_2work_2_high_five_2_high_five_2doc_2installation.html',1,'']]], + ['list_8',['Deprecated List',['../deprecated.html',1,'']]], + ['listattributenames_9',['listAttributeNames',['../class_high_five_1_1_annotate_traits.html#a4f19dffbf3bb1be6ba8279fb49917f22',1,'HighFive::AnnotateTraits']]], + ['listobjectnames_10',['listObjectNames',['../class_high_five_1_1_node_traits.html#a30bd43382f4e1f77bc6358ad5f7ed7ce',1,'HighFive::NodeTraits']]], + ['lists_11',['Property Lists',['../group___property_lists.html',1,'']]], + ['load_12',['load',['../namespace_h5_easy.html#a97ce3122b92fcf8322ed7e8c460c6862',1,'H5Easy::load(const File &file, const std::string &path, const std::vector< size_t > &idx)'],['../namespace_h5_easy.html#a35bd0e824fe3dca2e2d9f9b5e42a18aa',1,'H5Easy::load(const File &file, const std::string &path)']]], + ['loadattribute_13',['loadAttribute',['../namespace_h5_easy.html#a6dc2a2016da5196913ab7036700006fa',1,'H5Easy']]], + ['log_14',['log',['../class_high_five_1_1_logger.html#ae9138a12937186d1ebea1900a488b13c',1,'HighFive::Logger']]], + ['logger_15',['Logger',['../class_high_five_1_1_logger.html',1,'HighFive::Logger'],['../class_high_five_1_1_logger.html#ac6a56a0dea78afb911374249840cc01a',1,'HighFive::Logger::Logger()=delete'],['../class_high_five_1_1_logger.html#a202182c21665e372d6e4585484fccae5',1,'HighFive::Logger::Logger(const Logger &)=delete'],['../class_high_five_1_1_logger.html#aac5d99393c23b4f206a743864e80f7c8',1,'HighFive::Logger::Logger(Logger &&)=delete'],['../class_high_five_1_1_logger.html#ac5aff73990e80aab9f83c798462115c3',1,'HighFive::Logger::Logger(callback_type cb)']]], + ['logseverity_16',['LogSeverity',['../namespace_high_five.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246',1,'HighFive']]] +]; diff --git a/search/all_b.js b/search/all_b.js new file mode 100644 index 000000000..035f0a850 --- /dev/null +++ b/search/all_b.js @@ -0,0 +1,12 @@ +var searchData= +[ + ['max_5fcompact_0',['max_compact',['../class_high_five_1_1_attribute_phase_change.html#a4a01e8527aaecaffe2db1094f1e4b6c8',1,'HighFive::AttributePhaseChange']]], + ['member_5fdef_1',['member_def',['../struct_high_five_1_1_compound_type_1_1member__def.html',1,'HighFive::CompoundType::member_def'],['../struct_high_five_1_1_enum_type_1_1member__def.html',1,'HighFive::EnumType< T >::member_def'],['../struct_high_five_1_1_compound_type_1_1member__def.html#ac0c5ca4212cf886f498cfe79ff354e60',1,'HighFive::CompoundType::member_def::member_def()'],['../struct_high_five_1_1_enum_type_1_1member__def.html#aa666de7e76f872e2e392442c8e691bb3',1,'HighFive::EnumType::member_def::member_def()']]], + ['metadatablocksize_2',['MetadataBlockSize',['../class_high_five_1_1_metadata_block_size.html',1,'HighFive::MetadataBlockSize'],['../class_high_five_1_1_metadata_block_size.html#a02efd5d5aa5311ecc74f44c4b8b82d78',1,'HighFive::MetadataBlockSize::MetadataBlockSize(hsize_t size)'],['../class_high_five_1_1_metadata_block_size.html#a23661a48122522263bd7f3ec3f245101',1,'HighFive::MetadataBlockSize::MetadataBlockSize(const FileAccessProps &fapl)']]], + ['migration_20guide_3',['Migration Guide',['../md__2home_2runner_2work_2_high_five_2_high_five_2doc_2migration__guide.html',1,'']]], + ['migration_5fguide_2emd_4',['migration_guide.md',['../migration__guide_8md.html',1,'']]], + ['min_5fdense_5',['min_dense',['../class_high_five_1_1_attribute_phase_change.html#aa40d91cf6907a2013573e691c96d1bc7',1,'HighFive::AttributePhaseChange']]], + ['mpiofileaccess_6',['MPIOFileAccess',['../class_high_five_1_1_m_p_i_o_file_access.html',1,'HighFive::MPIOFileAccess'],['../class_high_five_1_1_m_p_i_o_file_access.html#a45ed3e2138f4fcf8292a8f5bb01434c8',1,'HighFive::MPIOFileAccess::MPIOFileAccess()']]], + ['mpiofiledriver_7',['MPIOFileDriver',['../class_high_five_1_1_m_p_i_o_file_driver.html',1,'HighFive::MPIOFileDriver'],['../class_high_five_1_1_m_p_i_o_file_driver.html#a4659563e3c44c0361429df270b03e778',1,'HighFive::MPIOFileDriver::MPIOFileDriver()']]], + ['mpionocollectivecause_8',['MpioNoCollectiveCause',['../class_high_five_1_1_mpio_no_collective_cause.html',1,'HighFive::MpioNoCollectiveCause'],['../class_high_five_1_1_mpio_no_collective_cause.html#a902c6632085083f0404d1542a1c267ca',1,'HighFive::MpioNoCollectiveCause::MpioNoCollectiveCause()']]] +]; diff --git a/search/all_c.js b/search/all_c.js new file mode 100644 index 000000000..69c5a1b80 --- /dev/null +++ b/search/all_c.js @@ -0,0 +1,14 @@ +var searchData= +[ + ['name_0',['name',['../struct_high_five_1_1_compound_type_1_1member__def.html#acb6e9a26ac277ef27b1a37ee2785a309',1,'HighFive::CompoundType::member_def::name'],['../struct_high_five_1_1_enum_type_1_1member__def.html#a826971206409ca4fdcc481765ccf3999',1,'HighFive::EnumType::member_def::name']]], + ['name_1',['NAME',['../namespace_high_five.html#afed91f5950b7a58ec51a33d260773996aad32e604e17467fc435538334fbddf3e',1,'HighFive']]], + ['nextexception_2',['nextException',['../class_high_five_1_1_exception.html#a32badf84ecfcceb0eb6d54f6a33d0989',1,'HighFive::Exception']]], + ['nodetraits_3',['NodeTraits',['../class_high_five_1_1_node_traits.html',1,'HighFive::NodeTraits< Derivate >'],['../class_high_five_1_1_data_set.html#a403d48867d005e936868de31b2281ae8',1,'HighFive::DataSet::NodeTraits'],['../class_high_five_1_1_data_type.html#a403d48867d005e936868de31b2281ae8',1,'HighFive::DataType::NodeTraits']]], + ['nodetraits_3c_20file_20_3e_4',['NodeTraits< File >',['../class_high_five_1_1_node_traits.html',1,'HighFive']]], + ['nodetraits_3c_20group_20_3e_5',['NodeTraits< Group >',['../class_high_five_1_1_node_traits.html',1,'HighFive']]], + ['nota_6',['notA',['../class_high_five_1_1_hyper_slab.html#a24205d10982c3affd39635caa090bf39',1,'HighFive::HyperSlab']]], + ['notb_7',['notB',['../class_high_five_1_1_hyper_slab.html#a429775b972d7d5eda1b4f6b63da982c8',1,'HighFive::HyperSlab']]], + ['null_8',['Null',['../class_high_five_1_1_data_space.html#ac02aef9a030d56e0f9e74b4fb2d0e725',1,'HighFive::DataSpace']]], + ['nullpadded_9',['NullPadded',['../namespace_high_five.html#ad9265809238043adba9b446b5c61e953a5b56f95d458ea27c9c62e62260bbef81',1,'HighFive']]], + ['nullterminated_10',['NullTerminated',['../namespace_high_five.html#ad9265809238043adba9b446b5c61e953ab90111c75972f26b57ab364724b34921',1,'HighFive']]] +]; diff --git a/search/all_d.js b/search/all_d.js new file mode 100644 index 000000000..15ecda9f7 --- /dev/null +++ b/search/all_d.js @@ -0,0 +1,30 @@ +var searchData= +[ + ['object_0',['Object',['../class_high_five_1_1_object.html',1,'HighFive::Object'],['../class_high_five_1_1_object_info.html#a0720b5f434e636e22a3ed34f847eec57',1,'HighFive::ObjectInfo::Object'],['../class_high_five_1_1_object.html#aa42052fa5ec4ee691f6a7dd6467199f2',1,'HighFive::Object::Object(Object &&other) noexcept'],['../class_high_five_1_1_object.html#a6bae41d04f273d04d2914406ab79da32',1,'HighFive::Object::Object()'],['../class_high_five_1_1_object.html#ab87ee7d5e2beee6a50d60dec20d3dfe5',1,'HighFive::Object::Object(const Object &other)'],['../class_high_five_1_1_object.html#a9fe361bc0bd9662c1fd96a4a6ec1133a',1,'HighFive::Object::Object(hid_t)'],['../class_high_five_1_1_attribute.html#aa42052fa5ec4ee691f6a7dd6467199f2',1,'HighFive::Attribute::Object(Object &&other) noexcept'],['../class_high_five_1_1_attribute.html#a6bae41d04f273d04d2914406ab79da32',1,'HighFive::Attribute::Object()'],['../class_high_five_1_1_attribute.html#ab87ee7d5e2beee6a50d60dec20d3dfe5',1,'HighFive::Attribute::Object(const Object &other)'],['../class_high_five_1_1_attribute.html#a9fe361bc0bd9662c1fd96a4a6ec1133a',1,'HighFive::Attribute::Object(hid_t)'],['../class_high_five_1_1_data_set.html#aa42052fa5ec4ee691f6a7dd6467199f2',1,'HighFive::DataSet::Object(Object &&other) noexcept'],['../class_high_five_1_1_data_set.html#a6bae41d04f273d04d2914406ab79da32',1,'HighFive::DataSet::Object()'],['../class_high_five_1_1_data_set.html#ab87ee7d5e2beee6a50d60dec20d3dfe5',1,'HighFive::DataSet::Object(const Object &other)'],['../class_high_five_1_1_data_set.html#a9fe361bc0bd9662c1fd96a4a6ec1133a',1,'HighFive::DataSet::Object(hid_t)'],['../class_high_five_1_1_data_type.html#aa42052fa5ec4ee691f6a7dd6467199f2',1,'HighFive::DataType::Object(Object &&other) noexcept'],['../class_high_five_1_1_data_type.html#a6bae41d04f273d04d2914406ab79da32',1,'HighFive::DataType::Object()'],['../class_high_five_1_1_data_type.html#ab87ee7d5e2beee6a50d60dec20d3dfe5',1,'HighFive::DataType::Object(const Object &other)'],['../class_high_five_1_1_data_type.html#a9fe361bc0bd9662c1fd96a4a6ec1133a',1,'HighFive::DataType::Object(hid_t)'],['../class_high_five_1_1_file.html#aa42052fa5ec4ee691f6a7dd6467199f2',1,'HighFive::File::Object(Object &&other) noexcept'],['../class_high_five_1_1_file.html#a6bae41d04f273d04d2914406ab79da32',1,'HighFive::File::Object()'],['../class_high_five_1_1_file.html#ab87ee7d5e2beee6a50d60dec20d3dfe5',1,'HighFive::File::Object(const Object &other)'],['../class_high_five_1_1_file.html#a9fe361bc0bd9662c1fd96a4a6ec1133a',1,'HighFive::File::Object(hid_t)'],['../class_high_five_1_1_group.html#aa42052fa5ec4ee691f6a7dd6467199f2',1,'HighFive::Group::Object(Object &&other) noexcept'],['../class_high_five_1_1_group.html#a6bae41d04f273d04d2914406ab79da32',1,'HighFive::Group::Object()'],['../class_high_five_1_1_group.html#ab87ee7d5e2beee6a50d60dec20d3dfe5',1,'HighFive::Group::Object(const Object &other)'],['../class_high_five_1_1_group.html#a9fe361bc0bd9662c1fd96a4a6ec1133a',1,'HighFive::Group::Object(hid_t)']]], + ['object_5fcopy_1',['OBJECT_COPY',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a9b0ceee4dc388106832eabb5522d4506',1,'HighFive']]], + ['object_5fcreate_2',['OBJECT_CREATE',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4afcea7f1287d62768c2fc0ee0cf18023f',1,'HighFive']]], + ['objectcopyprops_3',['ObjectCopyProps',['../group___property_lists.html#ga26c5b877905940b89b22a7fe6576bc32',1,'HighFive']]], + ['objectcreateprops_4',['ObjectCreateProps',['../group___property_lists.html#ga171296b98ab8d5f898fb9bb6e3179292',1,'HighFive']]], + ['objectexception_5',['ObjectException',['../class_high_five_1_1_object_exception.html',1,'HighFive::ObjectException'],['../class_high_five_1_1_object_exception.html#aa9d63e59797518ba24516336d562041e',1,'HighFive::ObjectException::ObjectException()']]], + ['objectinfo_6',['ObjectInfo',['../class_high_five_1_1_object_info.html',1,'HighFive']]], + ['objecttype_7',['ObjectType',['../namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474',1,'HighFive']]], + ['offset_8',['offset',['../struct_high_five_1_1_regular_hyper_slab.html#a2c7170af12dae359fb3eaffe6950d516',1,'HighFive::RegularHyperSlab::offset'],['../struct_high_five_1_1_compound_type_1_1member__def.html#a7fe8f7fc11e223445033f75b25435612',1,'HighFive::CompoundType::member_def::offset']]], + ['on_20linux_9',['Beginners Installation Guide on Linux',['../md__2home_2runner_2work_2_high_five_2_high_five_2doc_2installation.html',1,'']]], + ['only_20c_20library_10',['HighFive - HDF5 header-only C++ Library',['../index.html',1,'']]], + ['opaque_11',['Opaque',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847bafaa90538de35640e4b1e31ccf35b6eb5',1,'HighFive']]], + ['openorcreate_12',['OpenOrCreate',['../class_high_five_1_1_file.html#a66225bf5898f9e14f84c02529ca19431a20ee8fd1af9b334fa1e3604c2d08457f',1,'HighFive::File']]], + ['operator_21_3d_13',['operator!=',['../class_high_five_1_1_data_type.html#aba3b0bec1739ee7482a9d6f3c7464769',1,'HighFive::DataType']]], + ['operator_26_14',['operator&',['../class_high_five_1_1_hyper_slab.html#a4fbf1287c34074ca11b3da08c5d0e287',1,'HighFive::HyperSlab::operator&()'],['../namespace_high_five.html#ad11e24eec8492d0d2c977b58b1e64dbc',1,'HighFive::operator&()']]], + ['operator_26_3d_15',['operator&=',['../class_high_five_1_1_hyper_slab.html#a8be464e1993e66453881fe9adb1a0d72',1,'HighFive::HyperSlab']]], + ['operator_3d_16',['operator=',['../class_high_five_1_1_object.html#acbdb7087cba8bb804f7ec82c56c28ace',1,'HighFive::Object::operator=()'],['../class_high_five_1_1_logger.html#a3e8a6cd1370289fe31e268eeda19d271',1,'HighFive::Logger::operator=(const Logger &)=delete'],['../class_high_five_1_1_logger.html#ad1fea19d9a24a52b09c3bdaf4e8a4288',1,'HighFive::Logger::operator=(Logger &&)=delete']]], + ['operator_3d_3d_17',['operator==',['../class_high_five_1_1_data_type.html#a00fa13324f13dc81bf52b385fc9d852b',1,'HighFive::DataType::operator==()'],['../class_high_five_1_1_object.html#ad838f47662c1b9d240bd26d8710aa7d9',1,'HighFive::Object::operator==()']]], + ['operator_5b_5d_18',['operator[]',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a6c5027b8f786762a3622f33f52be65bc',1,'HighFive::deprecated::FixedLenStringArray']]], + ['operator_5e_19',['operator^',['../class_high_five_1_1_hyper_slab.html#a65b63a6b8ee96c0b3db1448f133d4208',1,'HighFive::HyperSlab']]], + ['operator_5e_3d_20',['operator^=',['../class_high_five_1_1_hyper_slab.html#ac18231b7d002a5497626d3cfe7f818e3',1,'HighFive::HyperSlab']]], + ['operator_7c_21',['operator|',['../class_high_five_1_1_hyper_slab.html#a7fc861f1f4042fae034b358e63e8db71',1,'HighFive::HyperSlab::operator|()'],['../namespace_high_five.html#a98688378bfbae23ab35a06c6916c5a44',1,'HighFive::operator|()']]], + ['operator_7c_3d_22',['operator|=',['../class_high_five_1_1_hyper_slab.html#afb1196fb8cfeaff643d4160046092ab6',1,'HighFive::HyperSlab']]], + ['other_23',['Other',['../namespace_high_five.html#abe5895b8113887accd6bff2392b24c40a6311ae17c1ee52b36e68aaf4ad066387',1,'HighFive::Other'],['../namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474a6311ae17c1ee52b36e68aaf4ad066387',1,'HighFive::Other']]], + ['overwrite_24',['Overwrite',['../class_high_five_1_1_file.html#a66225bf5898f9e14f84c02529ca19431a2121d8075f9f9d7069d6ef997fe4b9db',1,'HighFive::File']]], + ['overwrite_25',['overwrite',['../class_h5_easy_1_1_dump_options.html#ab573397c2a0abb1dc1b9a17db6c34eb1',1,'H5Easy::DumpOptions']]], + ['overwrite_26',['Overwrite',['../namespace_h5_easy.html#a6d10754b7f2ada9e3296560032dd81a0ada364eb37e143f6b2b5559aa03f5913a',1,'H5Easy']]] +]; diff --git a/search/all_e.js b/search/all_e.js new file mode 100644 index 000000000..d4e6bf4d8 --- /dev/null +++ b/search/all_e.js @@ -0,0 +1,15 @@ +var searchData= +[ + ['packeddims_0',['packedDims',['../struct_high_five_1_1_regular_hyper_slab.html#a56c042691b496389564d108c64a9d872',1,'HighFive::RegularHyperSlab']]], + ['pathtraits_1',['PathTraits',['../class_high_five_1_1_path_traits.html',1,'HighFive::PathTraits< Derivate >'],['../class_high_five_1_1_file.html#a4fd65b8c85f680db6495b37b7a00594a',1,'HighFive::File::PathTraits'],['../class_high_five_1_1_path_traits.html#a49601ba2947e519784814a9d7a90f7f5',1,'HighFive::PathTraits::PathTraits()']]], + ['pathtraits_3c_20attribute_20_3e_2',['PathTraits< Attribute >',['../class_high_five_1_1_path_traits.html',1,'HighFive']]], + ['pathtraits_3c_20dataset_20_3e_3',['PathTraits< DataSet >',['../class_high_five_1_1_path_traits.html',1,'HighFive']]], + ['pathtraits_3c_20group_20_3e_4',['PathTraits< Group >',['../class_high_five_1_1_path_traits.html',1,'HighFive']]], + ['property_20lists_5',['Property Lists',['../group___property_lists.html',1,'']]], + ['propertyexception_6',['PropertyException',['../class_high_five_1_1_property_exception.html',1,'HighFive::PropertyException'],['../class_high_five_1_1_property_exception.html#a3b98bbf8140308b1b76305eb5fa86ba0',1,'HighFive::PropertyException::PropertyException()']]], + ['propertyinterface_7',['PropertyInterface',['../interface_property_interface.html',1,'']]], + ['propertylist_8',['PropertyList',['../class_high_five_1_1_property_list.html',1,'HighFive']]], + ['propertylistbase_9',['PropertyListBase',['../class_high_five_1_1_property_list_base.html',1,'HighFive::PropertyListBase'],['../class_high_five_1_1_property_list_base.html#a3dc12a0e8dc4dedbeea62b626d13e13a',1,'HighFive::PropertyListBase::PropertyListBase()']]], + ['propertytype_10',['PropertyType',['../group___property_lists.html#ga097a358bdda37ff6e6b48d9f43664ad4',1,'HighFive']]], + ['push_5fback_11',['push_back',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a54b243b4c98f6847d34bb40ac2e3cad4',1,'HighFive::deprecated::FixedLenStringArray::push_back(const std::string &)'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#ab66e6617a80330e35f17ad31a1d66e85',1,'HighFive::deprecated::FixedLenStringArray::push_back(const std::array< char, N > &)']]] +]; diff --git a/search/all_f.js b/search/all_f.js new file mode 100644 index 000000000..1b1bc31ea --- /dev/null +++ b/search/all_f.js @@ -0,0 +1,20 @@ +var searchData= +[ + ['rank_0',['rank',['../struct_high_five_1_1_regular_hyper_slab.html#a29438e89e9000502894ba22fa94e107c',1,'HighFive::RegularHyperSlab']]], + ['raw_5finfo_1',['raw_info',['../class_high_five_1_1_object_info.html#ac39a80ef1e2113268e6bb20f9145a204',1,'HighFive::ObjectInfo']]], + ['rawpropertylist_2',['RawPropertyList',['../class_high_five_1_1_raw_property_list.html',1,'HighFive']]], + ['rbegin_3',['rbegin',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#ac3d580382ef2b420a9020542ea94222c',1,'HighFive::deprecated::FixedLenStringArray::rbegin() noexcept'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#ab0fca94e9a760128879f56ba8fba2f15',1,'HighFive::deprecated::FixedLenStringArray::rbegin() const noexcept']]], + ['read_4',['read',['../class_high_five_1_1_slice_traits.html#a1301abe3b9745470576986a1cbf7f0c9',1,'HighFive::SliceTraits::read(const DataTransferProps &xfer_props=DataTransferProps()) const'],['../class_high_five_1_1_slice_traits.html#af62a6a1f6c52da1c8ef501067ed948c8',1,'HighFive::SliceTraits::read(T &array, const DataTransferProps &xfer_props=DataTransferProps()) const'],['../class_high_five_1_1_slice_traits.html#a308151100e49985c077608619302c6c0',1,'HighFive::SliceTraits::read(T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) const'],['../class_high_five_1_1_slice_traits.html#a8c5a039f4728158ae7ea39b806660090',1,'HighFive::SliceTraits::read(T *array, const DataTransferProps &xfer_props=DataTransferProps()) const'],['../class_high_five_1_1_attribute.html#a8f6d88e6dadb8e4449fec558e5e0f7ca',1,'HighFive::Attribute::read() const'],['../class_high_five_1_1_attribute.html#ae97ab038f6c58bc0dd1ea498d8e609ce',1,'HighFive::Attribute::read(T &array) const'],['../class_high_five_1_1_attribute.html#acb44e6457df7e57040e39cd4373f9d84',1,'HighFive::Attribute::read(T *array, const DataType &mem_datatype) const'],['../class_high_five_1_1_attribute.html#aa2d0eb2629833a33f3e1a3fbfc1e9f55',1,'HighFive::Attribute::read(T *array) const']]], + ['read_5fraw_5',['read_raw',['../class_high_five_1_1_slice_traits.html#abd941746a239acc6086ed84411ce78b0',1,'HighFive::SliceTraits::read_raw(T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) const'],['../class_high_five_1_1_slice_traits.html#ae38617ce6af575539f0e50422197ee93',1,'HighFive::SliceTraits::read_raw(T *array, const DataTransferProps &xfer_props=DataTransferProps()) const'],['../class_high_five_1_1_attribute.html#a6c21f3a760651d9233ecf880f988c012',1,'HighFive::Attribute::read_raw(T *array, const DataType &mem_datatype) const'],['../class_high_five_1_1_attribute.html#aeb184a520213909e3e3dd5e64497467e',1,'HighFive::Attribute::read_raw(T *array) const']]], + ['readme_2emd_6',['README.md',['../_r_e_a_d_m_e_8md.html',1,'']]], + ['readonly_7',['ReadOnly',['../class_high_five_1_1_file.html#a66225bf5898f9e14f84c02529ca19431a78386c6fc7eb6b7975e1b68198925594',1,'HighFive::File']]], + ['readwrite_8',['ReadWrite',['../class_high_five_1_1_file.html#a66225bf5898f9e14f84c02529ca19431aaf0dbab200a1ff2d914ee1c9e69a189e',1,'HighFive::File']]], + ['reference_9',['Reference',['../class_high_five_1_1_reference.html',1,'HighFive::Reference'],['../class_high_five_1_1_data_set.html#a75dfa92607f3d314070ecf242e028014',1,'HighFive::DataSet::Reference'],['../class_high_five_1_1_group.html#a75dfa92607f3d314070ecf242e028014',1,'HighFive::Group::Reference'],['../class_high_five_1_1_object.html#a75dfa92607f3d314070ecf242e028014',1,'HighFive::Object::Reference'],['../class_high_five_1_1_reference.html#a8130903e051ab98f6affbb36627bcfda',1,'HighFive::Reference::Reference()=default'],['../class_high_five_1_1_reference.html#a68e53f37f2b5975e23e0fd78b57f0533',1,'HighFive::Reference::Reference(const Object &location, const Object &object)'],['../class_high_five_1_1_reference.html#a0eebda40272f370b15111fe2f88fd495',1,'HighFive::Reference::Reference(const hobj_ref_t h5_ref)'],['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba63d5049791d9d79d86e9a108b0a999ca',1,'HighFive::Reference']]], + ['referenceexception_10',['ReferenceException',['../class_high_five_1_1_reference_exception.html',1,'HighFive::ReferenceException'],['../class_high_five_1_1_reference_exception.html#a345ca1ae87323f0e8af38a6e59921890',1,'HighFive::ReferenceException::ReferenceException()']]], + ['register_5flogging_5fcallback_11',['register_logging_callback',['../namespace_high_five.html#a4fc91cda37008aea40efbb20a39cf1c9',1,'HighFive']]], + ['regularhyperslab_12',['RegularHyperSlab',['../struct_high_five_1_1_regular_hyper_slab.html',1,'HighFive::RegularHyperSlab'],['../struct_high_five_1_1_regular_hyper_slab.html#ac55d435aad378ad692b811f65f7f8371',1,'HighFive::RegularHyperSlab::RegularHyperSlab()=default'],['../struct_high_five_1_1_regular_hyper_slab.html#aa83c2e83ada980b7a6b07f7f9a20a076',1,'HighFive::RegularHyperSlab::RegularHyperSlab(std::vector< size_t > offset_, std::vector< size_t > count_={}, std::vector< size_t > stride_={}, std::vector< size_t > block_={})']]], + ['rename_13',['rename',['../class_high_five_1_1_node_traits.html#a9732221be5949023649d2d5af9305a30',1,'HighFive::NodeTraits']]], + ['rend_14',['rend',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a7ea8ea191047d9d6a4114ba4d0152299',1,'HighFive::deprecated::FixedLenStringArray::rend() noexcept'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#ad4b2e4577af489c7813d8e88efbf6f41',1,'HighFive::deprecated::FixedLenStringArray::rend() const noexcept']]], + ['resize_15',['resize',['../class_high_five_1_1_data_set.html#a516b2f8f1e4ecca470d8c351749807e9',1,'HighFive::DataSet::resize()'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a30e747411aa45f229e8562d04577142d',1,'HighFive::deprecated::FixedLenStringArray::resize(std::size_t n)']]], + ['reverse_5fiterator_16',['reverse_iterator',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a61c05d560045fa3f6588743e2d5893db',1,'HighFive::deprecated::FixedLenStringArray']]] +]; diff --git a/search/classes_0.js b/search/classes_0.js new file mode 100644 index 000000000..c10e8cdcb --- /dev/null +++ b/search/classes_0.js @@ -0,0 +1,15 @@ +var searchData= +[ + ['allocationtime_0',['AllocationTime',['../class_high_five_1_1_allocation_time.html',1,'HighFive']]], + ['annotatetraits_1',['AnnotateTraits',['../class_high_five_1_1_annotate_traits.html',1,'HighFive']]], + ['annotatetraits_3c_20dataset_20_3e_2',['AnnotateTraits< DataSet >',['../class_high_five_1_1_annotate_traits.html',1,'HighFive']]], + ['annotatetraits_3c_20file_20_3e_3',['AnnotateTraits< File >',['../class_high_five_1_1_annotate_traits.html',1,'HighFive']]], + ['annotatetraits_3c_20group_20_3e_4',['AnnotateTraits< Group >',['../class_high_five_1_1_annotate_traits.html',1,'HighFive']]], + ['atomictype_5',['AtomicType',['../class_high_five_1_1_atomic_type.html',1,'HighFive']]], + ['atomictype_3c_20char_5bstrlen_5d_3e_6',['AtomicType< char[StrLen]>',['../class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4.html',1,'HighFive']]], + ['atomictype_3c_20deprecated_3a_3afixedlenstringarray_3c_20strlen_20_3e_20_3e_7',['AtomicType< deprecated::FixedLenStringArray< StrLen > >',['../class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4.html',1,'HighFive']]], + ['atomictype_3c_20std_3a_3acomplex_3c_20t_20_3e_20_3e_8',['AtomicType< std::complex< T > >',['../class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4.html',1,'HighFive']]], + ['attribute_9',['Attribute',['../class_high_five_1_1_attribute.html',1,'HighFive']]], + ['attributeexception_10',['AttributeException',['../class_high_five_1_1_attribute_exception.html',1,'HighFive']]], + ['attributephasechange_11',['AttributePhaseChange',['../class_high_five_1_1_attribute_phase_change.html',1,'HighFive']]] +]; diff --git a/search/classes_1.js b/search/classes_1.js new file mode 100644 index 000000000..4ebba5287 --- /dev/null +++ b/search/classes_1.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['caching_0',['Caching',['../class_high_five_1_1_caching.html',1,'HighFive']]], + ['chunking_1',['Chunking',['../class_high_five_1_1_chunking.html',1,'HighFive']]], + ['compoundtype_2',['CompoundType',['../class_high_five_1_1_compound_type.html',1,'HighFive']]], + ['compression_3',['Compression',['../class_h5_easy_1_1_compression.html',1,'H5Easy']]], + ['createintermediategroup_4',['CreateIntermediateGroup',['../class_high_five_1_1_create_intermediate_group.html',1,'HighFive']]], + ['creationorder_5',['CreationOrder',['../struct_high_five_1_1_creation_order.html',1,'HighFive']]] +]; diff --git a/search/classes_2.js b/search/classes_2.js new file mode 100644 index 000000000..6a67804db --- /dev/null +++ b/search/classes_2.js @@ -0,0 +1,11 @@ +var searchData= +[ + ['dataset_0',['DataSet',['../class_high_five_1_1_data_set.html',1,'HighFive']]], + ['datasetexception_1',['DataSetException',['../class_high_five_1_1_data_set_exception.html',1,'HighFive']]], + ['dataspace_2',['DataSpace',['../class_high_five_1_1_data_space.html',1,'HighFive']]], + ['dataspaceexception_3',['DataSpaceException',['../class_high_five_1_1_data_space_exception.html',1,'HighFive']]], + ['datatype_4',['DataType',['../class_high_five_1_1_data_type.html',1,'HighFive']]], + ['datatypeexception_5',['DataTypeException',['../class_high_five_1_1_data_type_exception.html',1,'HighFive']]], + ['deflate_6',['Deflate',['../class_high_five_1_1_deflate.html',1,'HighFive']]], + ['dumpoptions_7',['DumpOptions',['../class_h5_easy_1_1_dump_options.html',1,'H5Easy']]] +]; diff --git a/search/classes_3.js b/search/classes_3.js new file mode 100644 index 000000000..4654c4aeb --- /dev/null +++ b/search/classes_3.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['elementset_0',['ElementSet',['../class_high_five_1_1_element_set.html',1,'HighFive']]], + ['enumtype_1',['EnumType',['../class_high_five_1_1_enum_type.html',1,'HighFive']]], + ['estimatedlinkinfo_2',['EstimatedLinkInfo',['../class_high_five_1_1_estimated_link_info.html',1,'HighFive']]], + ['exception_3',['Exception',['../class_high_five_1_1_exception.html',1,'HighFive']]] +]; diff --git a/search/classes_4.js b/search/classes_4.js new file mode 100644 index 000000000..8d8841f49 --- /dev/null +++ b/search/classes_4.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['file_0',['File',['../class_high_five_1_1_file.html',1,'HighFive']]], + ['filedriver_1',['FileDriver',['../class_high_five_1_1_file_driver.html',1,'HighFive']]], + ['fileexception_2',['FileException',['../class_high_five_1_1_file_exception.html',1,'HighFive']]], + ['fileversionbounds_3',['FileVersionBounds',['../class_high_five_1_1_file_version_bounds.html',1,'HighFive']]], + ['fixedlengthstringtype_4',['FixedLengthStringType',['../class_high_five_1_1_fixed_length_string_type.html',1,'HighFive']]], + ['fixedlenstringarray_5',['FixedLenStringArray',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html',1,'HighFive::deprecated']]] +]; diff --git a/search/classes_5.js b/search/classes_5.js new file mode 100644 index 000000000..d7c00523d --- /dev/null +++ b/search/classes_5.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['group_0',['Group',['../class_high_five_1_1_group.html',1,'HighFive']]], + ['groupexception_1',['GroupException',['../class_high_five_1_1_group_exception.html',1,'HighFive']]] +]; diff --git a/search/classes_6.js b/search/classes_6.js new file mode 100644 index 000000000..54fed71fe --- /dev/null +++ b/search/classes_6.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['hdf5errmapper_0',['HDF5ErrMapper',['../struct_high_five_1_1_h_d_f5_err_mapper.html',1,'HighFive']]], + ['hyperslab_1',['HyperSlab',['../class_high_five_1_1_hyper_slab.html',1,'HighFive']]] +]; diff --git a/search/classes_7.js b/search/classes_7.js new file mode 100644 index 000000000..436e531fe --- /dev/null +++ b/search/classes_7.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['linkcreationorder_0',['LinkCreationOrder',['../class_high_five_1_1_link_creation_order.html',1,'HighFive']]], + ['logger_1',['Logger',['../class_high_five_1_1_logger.html',1,'HighFive']]] +]; diff --git a/search/classes_8.js b/search/classes_8.js new file mode 100644 index 000000000..72e53fb9f --- /dev/null +++ b/search/classes_8.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['member_5fdef_0',['member_def',['../struct_high_five_1_1_compound_type_1_1member__def.html',1,'HighFive::CompoundType::member_def'],['../struct_high_five_1_1_enum_type_1_1member__def.html',1,'HighFive::EnumType< T >::member_def']]], + ['metadatablocksize_1',['MetadataBlockSize',['../class_high_five_1_1_metadata_block_size.html',1,'HighFive']]], + ['mpiofileaccess_2',['MPIOFileAccess',['../class_high_five_1_1_m_p_i_o_file_access.html',1,'HighFive']]], + ['mpiofiledriver_3',['MPIOFileDriver',['../class_high_five_1_1_m_p_i_o_file_driver.html',1,'HighFive']]], + ['mpionocollectivecause_4',['MpioNoCollectiveCause',['../class_high_five_1_1_mpio_no_collective_cause.html',1,'HighFive']]] +]; diff --git a/search/classes_9.js b/search/classes_9.js new file mode 100644 index 000000000..c81b637f9 --- /dev/null +++ b/search/classes_9.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['nodetraits_0',['NodeTraits',['../class_high_five_1_1_node_traits.html',1,'HighFive']]], + ['nodetraits_3c_20file_20_3e_1',['NodeTraits< File >',['../class_high_five_1_1_node_traits.html',1,'HighFive']]], + ['nodetraits_3c_20group_20_3e_2',['NodeTraits< Group >',['../class_high_five_1_1_node_traits.html',1,'HighFive']]] +]; diff --git a/search/classes_a.js b/search/classes_a.js new file mode 100644 index 000000000..3688241e4 --- /dev/null +++ b/search/classes_a.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['object_0',['Object',['../class_high_five_1_1_object.html',1,'HighFive']]], + ['objectexception_1',['ObjectException',['../class_high_five_1_1_object_exception.html',1,'HighFive']]], + ['objectinfo_2',['ObjectInfo',['../class_high_five_1_1_object_info.html',1,'HighFive']]] +]; diff --git a/search/classes_b.js b/search/classes_b.js new file mode 100644 index 000000000..44b5b5f0e --- /dev/null +++ b/search/classes_b.js @@ -0,0 +1,11 @@ +var searchData= +[ + ['pathtraits_0',['PathTraits',['../class_high_five_1_1_path_traits.html',1,'HighFive']]], + ['pathtraits_3c_20attribute_20_3e_1',['PathTraits< Attribute >',['../class_high_five_1_1_path_traits.html',1,'HighFive']]], + ['pathtraits_3c_20dataset_20_3e_2',['PathTraits< DataSet >',['../class_high_five_1_1_path_traits.html',1,'HighFive']]], + ['pathtraits_3c_20group_20_3e_3',['PathTraits< Group >',['../class_high_five_1_1_path_traits.html',1,'HighFive']]], + ['propertyexception_4',['PropertyException',['../class_high_five_1_1_property_exception.html',1,'HighFive']]], + ['propertyinterface_5',['PropertyInterface',['../interface_property_interface.html',1,'']]], + ['propertylist_6',['PropertyList',['../class_high_five_1_1_property_list.html',1,'HighFive']]], + ['propertylistbase_7',['PropertyListBase',['../class_high_five_1_1_property_list_base.html',1,'HighFive']]] +]; diff --git a/search/classes_c.js b/search/classes_c.js new file mode 100644 index 000000000..b9dbd2228 --- /dev/null +++ b/search/classes_c.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['rawpropertylist_0',['RawPropertyList',['../class_high_five_1_1_raw_property_list.html',1,'HighFive']]], + ['reference_1',['Reference',['../class_high_five_1_1_reference.html',1,'HighFive']]], + ['referenceexception_2',['ReferenceException',['../class_high_five_1_1_reference_exception.html',1,'HighFive']]], + ['regularhyperslab_3',['RegularHyperSlab',['../struct_high_five_1_1_regular_hyper_slab.html',1,'HighFive']]] +]; diff --git a/search/classes_d.js b/search/classes_d.js new file mode 100644 index 000000000..63425b861 --- /dev/null +++ b/search/classes_d.js @@ -0,0 +1,11 @@ +var searchData= +[ + ['selection_0',['Selection',['../class_high_five_1_1_selection.html',1,'HighFive']]], + ['shuffle_1',['Shuffle',['../class_high_five_1_1_shuffle.html',1,'HighFive']]], + ['silencehdf5_2',['SilenceHDF5',['../class_high_five_1_1_silence_h_d_f5.html',1,'HighFive']]], + ['slicetraits_3',['SliceTraits',['../class_high_five_1_1_slice_traits.html',1,'HighFive']]], + ['slicetraits_3c_20dataset_20_3e_4',['SliceTraits< DataSet >',['../class_high_five_1_1_slice_traits.html',1,'HighFive']]], + ['slicetraits_3c_20selection_20_3e_5',['SliceTraits< Selection >',['../class_high_five_1_1_slice_traits.html',1,'HighFive']]], + ['stringtype_6',['StringType',['../class_high_five_1_1_string_type.html',1,'HighFive']]], + ['szip_7',['Szip',['../class_high_five_1_1_szip.html',1,'HighFive']]] +]; diff --git a/search/classes_e.js b/search/classes_e.js new file mode 100644 index 000000000..4612d0eaa --- /dev/null +++ b/search/classes_e.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['usecollectiveio_0',['UseCollectiveIO',['../class_high_five_1_1_use_collective_i_o.html',1,'HighFive']]] +]; diff --git a/search/classes_f.js b/search/classes_f.js new file mode 100644 index 000000000..38b218d1b --- /dev/null +++ b/search/classes_f.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['variablelengthstringtype_0',['VariableLengthStringType',['../class_high_five_1_1_variable_length_string_type.html',1,'HighFive']]] +]; diff --git a/search/close.svg b/search/close.svg new file mode 100644 index 000000000..337d6cc13 --- /dev/null +++ b/search/close.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/search/defines_0.js b/search/defines_0.js new file mode 100644 index 000000000..d6fc913cc --- /dev/null +++ b/search/defines_0.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['_5fh5_5fstruct_5fpadding_0',['_H5_STRUCT_PADDING',['../_h5_data_type__misc_8hpp.html#a8411b26baa96407eb4f3de2ba4bcd6f7',1,'H5DataType_misc.hpp']]] +]; diff --git a/search/defines_1.js b/search/defines_1.js new file mode 100644 index 000000000..99e4aa113 --- /dev/null +++ b/search/defines_1.js @@ -0,0 +1,24 @@ +var searchData= +[ + ['h5_5fdeprecated_0',['H5_DEPRECATED',['../_h5__definitions_8hpp.html#ac2f1b4314e067c8a44383228d8a47cce',1,'H5_definitions.hpp']]], + ['h5_5fdeprecated_5fusing_1',['H5_DEPRECATED_USING',['../_h5__definitions_8hpp.html#aa4ffeead789d7234fbd1920500bcf448',1,'H5_definitions.hpp']]], + ['highfive_5flog_5fdebug_2',['HIGHFIVE_LOG_DEBUG',['../_h5_utility_8hpp.html#a45004ae7b6ee4d36ece02625b803dae1',1,'H5Utility.hpp']]], + ['highfive_5flog_5fdebug_5fif_3',['HIGHFIVE_LOG_DEBUG_IF',['../_h5_utility_8hpp.html#acb450a6ca0ce4ede86eeb543dbb97fd5',1,'H5Utility.hpp']]], + ['highfive_5flog_5ferror_4',['HIGHFIVE_LOG_ERROR',['../_h5_utility_8hpp.html#ada09af07f5ee416f589dc4c6b7dfc28d',1,'H5Utility.hpp']]], + ['highfive_5flog_5ferror_5fif_5',['HIGHFIVE_LOG_ERROR_IF',['../_h5_utility_8hpp.html#aacdac9e7e0e29eb62f7d68b1bddb08b7',1,'H5Utility.hpp']]], + ['highfive_5flog_5finfo_6',['HIGHFIVE_LOG_INFO',['../_h5_utility_8hpp.html#aea7948282a427dd2d5a04b87c66d38a0',1,'H5Utility.hpp']]], + ['highfive_5flog_5finfo_5fif_7',['HIGHFIVE_LOG_INFO_IF',['../_h5_utility_8hpp.html#a15521059b105b67127f790239ab149e5',1,'H5Utility.hpp']]], + ['highfive_5flog_5flevel_8',['HIGHFIVE_LOG_LEVEL',['../_h5_utility_8hpp.html#a8e389ca826af6e2e77d72db9fe9a71ee',1,'H5Utility.hpp']]], + ['highfive_5flog_5flevel_5fdebug_9',['HIGHFIVE_LOG_LEVEL_DEBUG',['../_h5_utility_8hpp.html#a89e04aa74828b90f31d3d12cf53d3347',1,'H5Utility.hpp']]], + ['highfive_5flog_5flevel_5ferror_10',['HIGHFIVE_LOG_LEVEL_ERROR',['../_h5_utility_8hpp.html#a35fe0e7a0a4ea952af9ecaa18594ef7e',1,'H5Utility.hpp']]], + ['highfive_5flog_5flevel_5finfo_11',['HIGHFIVE_LOG_LEVEL_INFO',['../_h5_utility_8hpp.html#ab7ac8b069d562c15b358763734b4aa07',1,'H5Utility.hpp']]], + ['highfive_5flog_5flevel_5fwarn_12',['HIGHFIVE_LOG_LEVEL_WARN',['../_h5_utility_8hpp.html#a233481164afb1c4337fb2c4501dadcb7',1,'H5Utility.hpp']]], + ['highfive_5flog_5fwarn_13',['HIGHFIVE_LOG_WARN',['../_h5_utility_8hpp.html#a6512d9a30b5c76e13ec5f2756144c91a',1,'H5Utility.hpp']]], + ['highfive_5flog_5fwarn_5fif_14',['HIGHFIVE_LOG_WARN_IF',['../_h5_utility_8hpp.html#a018b242d83052245f9f602f5bac1067f',1,'H5Utility.hpp']]], + ['highfive_5fregister_5ftype_15',['HIGHFIVE_REGISTER_TYPE',['../_h5_data_type_8hpp.html#aabbf38f2b276343c2b2a85116e60313c',1,'H5DataType.hpp']]], + ['highfive_5fversion_16',['HIGHFIVE_VERSION',['../_h5_version_8hpp.html#a34c5e47396e70779257b4db31ac7b842',1,'H5Version.hpp']]], + ['highfive_5fversion_5fmajor_17',['HIGHFIVE_VERSION_MAJOR',['../_h5_version_8hpp.html#acbea9a5d26e85ae32c220007e9a8f4b2',1,'H5Version.hpp']]], + ['highfive_5fversion_5fminor_18',['HIGHFIVE_VERSION_MINOR',['../_h5_version_8hpp.html#ad6bd311c44f04b43f52c0e74cefc6e7a',1,'H5Version.hpp']]], + ['highfive_5fversion_5fpatch_19',['HIGHFIVE_VERSION_PATCH',['../_h5_version_8hpp.html#ab47cd23c1c1cf25b17b14eacc9866d89',1,'H5Version.hpp']]], + ['highfive_5fversion_5fstring_20',['HIGHFIVE_VERSION_STRING',['../_h5_version_8hpp.html#aaa84ff2fb9a733a1dd79e654e0839702',1,'H5Version.hpp']]] +]; diff --git a/search/enums_0.js b/search/enums_0.js new file mode 100644 index 000000000..de21d25c5 --- /dev/null +++ b/search/enums_0.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['_5fcreationorder_0',['_CreationOrder',['../struct_high_five_1_1_creation_order.html#aaaeb7940131b73a9385f499e08d2c0df',1,'HighFive::CreationOrder']]] +]; diff --git a/search/enums_1.js b/search/enums_1.js new file mode 100644 index 000000000..b69fba46a --- /dev/null +++ b/search/enums_1.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['characterset_0',['CharacterSet',['../namespace_high_five.html#a7133a7a677541ffa6780f5ca5eee6db9',1,'HighFive']]] +]; diff --git a/search/enums_2.js b/search/enums_2.js new file mode 100644 index 000000000..708e6cb8e --- /dev/null +++ b/search/enums_2.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['dataspacetype_0',['DataspaceType',['../class_high_five_1_1_data_space.html#a7169f30770f2b72b4d28841da2d6c153',1,'HighFive::DataSpace']]], + ['datatypeclass_1',['DataTypeClass',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847b',1,'HighFive']]], + ['dumpmode_2',['DumpMode',['../namespace_h5_easy.html#a6d10754b7f2ada9e3296560032dd81a0',1,'H5Easy']]] +]; diff --git a/search/enums_3.js b/search/enums_3.js new file mode 100644 index 000000000..349652cbc --- /dev/null +++ b/search/enums_3.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['flush_0',['Flush',['../namespace_h5_easy.html#af71ce7ab9b99227bdead69993d1f3b62',1,'H5Easy']]] +]; diff --git a/search/enums_4.js b/search/enums_4.js new file mode 100644 index 000000000..c9a31652d --- /dev/null +++ b/search/enums_4.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['indextype_0',['IndexType',['../namespace_high_five.html#afed91f5950b7a58ec51a33d260773996',1,'HighFive']]] +]; diff --git a/search/enums_5.js b/search/enums_5.js new file mode 100644 index 000000000..7efb647ce --- /dev/null +++ b/search/enums_5.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['linktype_0',['LinkType',['../namespace_high_five.html#abe5895b8113887accd6bff2392b24c40',1,'HighFive']]], + ['logseverity_1',['LogSeverity',['../namespace_high_five.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246',1,'HighFive']]] +]; diff --git a/search/enums_6.js b/search/enums_6.js new file mode 100644 index 000000000..bae095e02 --- /dev/null +++ b/search/enums_6.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['objecttype_0',['ObjectType',['../namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474',1,'HighFive']]] +]; diff --git a/search/enums_7.js b/search/enums_7.js new file mode 100644 index 000000000..9000fac27 --- /dev/null +++ b/search/enums_7.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['propertytype_0',['PropertyType',['../group___property_lists.html#ga097a358bdda37ff6e6b48d9f43664ad4',1,'HighFive']]] +]; diff --git a/search/enums_8.js b/search/enums_8.js new file mode 100644 index 000000000..ab5b62b42 --- /dev/null +++ b/search/enums_8.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['stringpadding_0',['StringPadding',['../namespace_high_five.html#ad9265809238043adba9b446b5c61e953',1,'HighFive']]] +]; diff --git a/search/enumvalues_0.js b/search/enumvalues_0.js new file mode 100644 index 000000000..f29b84668 --- /dev/null +++ b/search/enumvalues_0.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['array_0',['Array',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba4410ec34d9e6c1a68100ca0ce033fb17',1,'HighFive']]], + ['ascii_1',['Ascii',['../namespace_high_five.html#a7133a7a677541ffa6780f5ca5eee6db9a76b8d0dcd02ccaf203c167ced6d7ef31',1,'HighFive']]], + ['attribute_2',['Attribute',['../namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474af2bbdf9f72c085adc4d0404e370f0f4c',1,'HighFive']]], + ['attribute_5fcreate_3',['ATTRIBUTE_CREATE',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a518c30284a8061ffe051004a0670f135',1,'HighFive']]] +]; diff --git a/search/enumvalues_1.js b/search/enumvalues_1.js new file mode 100644 index 000000000..01276b691 --- /dev/null +++ b/search/enumvalues_1.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['bitfield_0',['BitField',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba2f706038ccc6843d07ebf1a34051a0a8',1,'HighFive']]] +]; diff --git a/search/enumvalues_10.js b/search/enumvalues_10.js new file mode 100644 index 000000000..53332f894 --- /dev/null +++ b/search/enumvalues_10.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['varlen_0',['VarLen',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba72c6842c18d1470d1c991f865a2fab3a',1,'HighFive']]] +]; diff --git a/search/enumvalues_11.js b/search/enumvalues_11.js new file mode 100644 index 000000000..84ba2f36f --- /dev/null +++ b/search/enumvalues_11.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['warn_0',['Warn',['../namespace_high_five.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246a56525ae64d370c0b448ac0d60710ef17',1,'HighFive']]] +]; diff --git a/search/enumvalues_2.js b/search/enumvalues_2.js new file mode 100644 index 000000000..cf44896c0 --- /dev/null +++ b/search/enumvalues_2.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['compound_0',['Compound',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba26154ea007c65f860de5333a555a56cf',1,'HighFive']]], + ['create_1',['Create',['../class_high_five_1_1_file.html#a66225bf5898f9e14f84c02529ca19431a6c1f31f0e601d0b3982ac64dc50cdd69',1,'HighFive::File::Create'],['../namespace_h5_easy.html#a6d10754b7f2ada9e3296560032dd81a0a686e697538050e4664636337cc3b834f',1,'H5Easy::Create']]], + ['crt_5forder_2',['CRT_ORDER',['../namespace_high_five.html#afed91f5950b7a58ec51a33d260773996ac83c60110da7010a6dd3168fb2c8b8a7',1,'HighFive']]] +]; diff --git a/search/enumvalues_3.js b/search/enumvalues_3.js new file mode 100644 index 000000000..7fb555820 --- /dev/null +++ b/search/enumvalues_3.js @@ -0,0 +1,13 @@ +var searchData= +[ + ['dataset_0',['Dataset',['../namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474a239658e016e3d5d06ae719d280a79fec',1,'HighFive']]], + ['dataset_5faccess_1',['DATASET_ACCESS',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a1f9f49c3a9b29c99fd336a46e1fb0b8c',1,'HighFive']]], + ['dataset_5fcreate_2',['DATASET_CREATE',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4aafd89ef46ba1fc317f8b8cfadbc8e89d',1,'HighFive']]], + ['dataset_5fxfer_3',['DATASET_XFER',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4adbac4060e0053cc521283eb9f7d0869e',1,'HighFive']]], + ['dataspace_4',['DataSpace',['../namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474a546863182b9bd136e5295389d0e8343e',1,'HighFive']]], + ['dataspace_5fnull_5',['dataspace_null',['../class_high_five_1_1_data_space.html#a7169f30770f2b72b4d28841da2d6c153ac1a4c13c2bac8e1679bf850e76ad6092',1,'HighFive::DataSpace']]], + ['dataspace_5fscalar_6',['dataspace_scalar',['../class_high_five_1_1_data_space.html#a7169f30770f2b72b4d28841da2d6c153a49388b6d4ad7831a6589af61d6e60409',1,'HighFive::DataSpace']]], + ['datatype_5faccess_7',['DATATYPE_ACCESS',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a023c2a1da4192ec57c9589f2adcf0375',1,'HighFive']]], + ['datatype_5fcreate_8',['DATATYPE_CREATE',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a4a9bef3e26735c56f85701720da97704',1,'HighFive']]], + ['debug_9',['Debug',['../class_high_five_1_1_file.html#a66225bf5898f9e14f84c02529ca19431ac2400c1be1f6d184f2f7e2d5f6ac82c3',1,'HighFive::File::Debug'],['../namespace_high_five.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246aa603905470e2a5b8c13e96b579ef0dba',1,'HighFive::Debug']]] +]; diff --git a/search/enumvalues_4.js b/search/enumvalues_4.js new file mode 100644 index 000000000..81903a1c2 --- /dev/null +++ b/search/enumvalues_4.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['enum_0',['Enum',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847bacf20423ed48998082c20099488a0917c',1,'HighFive']]], + ['error_1',['Error',['../namespace_high_five.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246a902b0d55fddef6f8d651fe1035b7d4bd',1,'HighFive']]], + ['excl_2',['Excl',['../class_high_five_1_1_file.html#a66225bf5898f9e14f84c02529ca19431ae9e864626c6d41245a375541c95fbc1b',1,'HighFive::File']]], + ['external_3',['External',['../namespace_high_five.html#abe5895b8113887accd6bff2392b24c40ab206a1b4ea1097761f78e8876f6da779',1,'HighFive']]] +]; diff --git a/search/enumvalues_5.js b/search/enumvalues_5.js new file mode 100644 index 000000000..0a8679162 --- /dev/null +++ b/search/enumvalues_5.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['false_0',['False',['../namespace_h5_easy.html#af71ce7ab9b99227bdead69993d1f3b62af8320b26d30ab433c5a54546d21f414c',1,'H5Easy']]], + ['file_1',['File',['../namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474a0b27918290ff5323bea1e3b78a9cf04e',1,'HighFive']]], + ['file_5faccess_2',['FILE_ACCESS',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a8f93e8ee202d29ba296afdfb6c08550e',1,'HighFive']]], + ['file_5fcreate_3',['FILE_CREATE',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a5534109883a2d6699c0262b228c14f67',1,'HighFive']]], + ['float_4',['Float',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba22ae0e2b89e5e3d477f988cc36d3272b',1,'HighFive']]] +]; diff --git a/search/enumvalues_6.js b/search/enumvalues_6.js new file mode 100644 index 000000000..2d46456f1 --- /dev/null +++ b/search/enumvalues_6.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['group_0',['Group',['../namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474a03937134cedab9078be39a77ee3a48a0',1,'HighFive']]], + ['group_5faccess_1',['GROUP_ACCESS',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4aff3aa98325265641dfb5b6c727973774',1,'HighFive']]], + ['group_5fcreate_2',['GROUP_CREATE',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4aa9f9694169963af7096ae421df5025ce',1,'HighFive']]] +]; diff --git a/search/enumvalues_7.js b/search/enumvalues_7.js new file mode 100644 index 000000000..8ee3f1186 --- /dev/null +++ b/search/enumvalues_7.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['hard_0',['Hard',['../namespace_high_five.html#abe5895b8113887accd6bff2392b24c40a3656183169810334a96b91129dc9d881',1,'HighFive']]] +]; diff --git a/search/enumvalues_8.js b/search/enumvalues_8.js new file mode 100644 index 000000000..57babb7d7 --- /dev/null +++ b/search/enumvalues_8.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['indexed_0',['Indexed',['../struct_high_five_1_1_creation_order.html#aaaeb7940131b73a9385f499e08d2c0dfaaa056e331f82016fbdf6dc751bd97ff6',1,'HighFive::CreationOrder']]], + ['info_1',['Info',['../namespace_high_five.html#a9a2c7e78f6fb35a74ff61a7b2b7ed246a4059b0251f66a18cb56f544728796875',1,'HighFive']]], + ['integer_2',['Integer',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847baa0faef0851b4294c06f2b94bb1cb2044',1,'HighFive']]], + ['invalid_3',['Invalid',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba4bbb8f967da6d1a610596d7257179c2b',1,'HighFive']]] +]; diff --git a/search/enumvalues_9.js b/search/enumvalues_9.js new file mode 100644 index 000000000..65c19f130 --- /dev/null +++ b/search/enumvalues_9.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['link_5faccess_0',['LINK_ACCESS',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a49f33864cd831c0b35b59fc99cb75293',1,'HighFive']]], + ['link_5fcreate_1',['LINK_CREATE',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a57fb2f103675cde088df70923f6224b1',1,'HighFive']]] +]; diff --git a/search/enumvalues_a.js b/search/enumvalues_a.js new file mode 100644 index 000000000..2fae4eb0f --- /dev/null +++ b/search/enumvalues_a.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['name_0',['NAME',['../namespace_high_five.html#afed91f5950b7a58ec51a33d260773996aad32e604e17467fc435538334fbddf3e',1,'HighFive']]], + ['nullpadded_1',['NullPadded',['../namespace_high_five.html#ad9265809238043adba9b446b5c61e953a5b56f95d458ea27c9c62e62260bbef81',1,'HighFive']]], + ['nullterminated_2',['NullTerminated',['../namespace_high_five.html#ad9265809238043adba9b446b5c61e953ab90111c75972f26b57ab364724b34921',1,'HighFive']]] +]; diff --git a/search/enumvalues_b.js b/search/enumvalues_b.js new file mode 100644 index 000000000..0f49d303b --- /dev/null +++ b/search/enumvalues_b.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['object_5fcopy_0',['OBJECT_COPY',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a9b0ceee4dc388106832eabb5522d4506',1,'HighFive']]], + ['object_5fcreate_1',['OBJECT_CREATE',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4afcea7f1287d62768c2fc0ee0cf18023f',1,'HighFive']]], + ['opaque_2',['Opaque',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847bafaa90538de35640e4b1e31ccf35b6eb5',1,'HighFive']]], + ['openorcreate_3',['OpenOrCreate',['../class_high_five_1_1_file.html#a66225bf5898f9e14f84c02529ca19431a20ee8fd1af9b334fa1e3604c2d08457f',1,'HighFive::File']]], + ['other_4',['Other',['../namespace_high_five.html#abe5895b8113887accd6bff2392b24c40a6311ae17c1ee52b36e68aaf4ad066387',1,'HighFive::Other'],['../namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474a6311ae17c1ee52b36e68aaf4ad066387',1,'HighFive::Other']]], + ['overwrite_5',['Overwrite',['../class_high_five_1_1_file.html#a66225bf5898f9e14f84c02529ca19431a2121d8075f9f9d7069d6ef997fe4b9db',1,'HighFive::File::Overwrite'],['../namespace_h5_easy.html#a6d10754b7f2ada9e3296560032dd81a0ada364eb37e143f6b2b5559aa03f5913a',1,'H5Easy::Overwrite']]] +]; diff --git a/search/enumvalues_c.js b/search/enumvalues_c.js new file mode 100644 index 000000000..a15e2f0f7 --- /dev/null +++ b/search/enumvalues_c.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['readonly_0',['ReadOnly',['../class_high_five_1_1_file.html#a66225bf5898f9e14f84c02529ca19431a78386c6fc7eb6b7975e1b68198925594',1,'HighFive::File']]], + ['readwrite_1',['ReadWrite',['../class_high_five_1_1_file.html#a66225bf5898f9e14f84c02529ca19431aaf0dbab200a1ff2d914ee1c9e69a189e',1,'HighFive::File']]], + ['reference_2',['Reference',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba63d5049791d9d79d86e9a108b0a999ca',1,'HighFive']]] +]; diff --git a/search/enumvalues_d.js b/search/enumvalues_d.js new file mode 100644 index 000000000..f8bff2ee3 --- /dev/null +++ b/search/enumvalues_d.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['soft_0',['Soft',['../namespace_high_five.html#abe5895b8113887accd6bff2392b24c40a682160fc6ad12f783f70608a9b46b9b9',1,'HighFive']]], + ['spacepadded_1',['SpacePadded',['../namespace_high_five.html#ad9265809238043adba9b446b5c61e953a4ca955dd1a77b70b5a0a28512c0e5f24',1,'HighFive']]], + ['string_2',['String',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847ba27118326006d3829667a400ad23d5d98',1,'HighFive']]], + ['string_5fcreate_3',['STRING_CREATE',['../group___property_lists.html#gga097a358bdda37ff6e6b48d9f43664ad4a8c7bdf2b95146589251f8ecff10ca084',1,'HighFive']]] +]; diff --git a/search/enumvalues_e.js b/search/enumvalues_e.js new file mode 100644 index 000000000..16af40bc0 --- /dev/null +++ b/search/enumvalues_e.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['time_0',['Time',['../namespace_high_five.html#ad43e509d198c83c5484c796babdd847baa76d4ef5f3f6a672bbfab2865563e530',1,'HighFive']]], + ['tracked_1',['Tracked',['../struct_high_five_1_1_creation_order.html#aaaeb7940131b73a9385f499e08d2c0dfa63264d38eb4b2f184d68299f689e78b8',1,'HighFive::CreationOrder']]], + ['true_2',['True',['../namespace_h5_easy.html#af71ce7ab9b99227bdead69993d1f3b62af827cf462f62848df37c5e1e94a4da74',1,'H5Easy']]], + ['truncate_3',['Truncate',['../class_high_five_1_1_file.html#a66225bf5898f9e14f84c02529ca19431a2ee578fa7edc24587051a920880711c6',1,'HighFive::File']]] +]; diff --git a/search/enumvalues_f.js b/search/enumvalues_f.js new file mode 100644 index 000000000..c99e94f1d --- /dev/null +++ b/search/enumvalues_f.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['userdatatype_0',['UserDataType',['../namespace_high_five.html#ad8790d0a626a7355392c05dc69a1d474a99f109983e5e6524be1f6fbcc819691c',1,'HighFive']]], + ['utf8_1',['Utf8',['../namespace_high_five.html#a7133a7a677541ffa6780f5ca5eee6db9a81f91ccd37ce1d232cbfc1520374319d',1,'HighFive']]] +]; diff --git a/search/files_0.js b/search/files_0.js new file mode 100644 index 000000000..590901140 --- /dev/null +++ b/search/files_0.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['boost_2ehpp_0',['boost.hpp',['../boost_8hpp.html',1,'']]] +]; diff --git a/search/files_1.js b/search/files_1.js new file mode 100644 index 000000000..6cd9f3692 --- /dev/null +++ b/search/files_1.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['changelog_2emd_0',['CHANGELOG.md',['../_c_h_a_n_g_e_l_o_g_8md.html',1,'']]] +]; diff --git a/search/files_2.js b/search/files_2.js new file mode 100644 index 000000000..f37bee531 --- /dev/null +++ b/search/files_2.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['developer_5fguide_2emd_0',['developer_guide.md',['../developer__guide_8md.html',1,'']]] +]; diff --git a/search/files_3.js b/search/files_3.js new file mode 100644 index 000000000..e7d5bc1b2 --- /dev/null +++ b/search/files_3.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['eigen_2ehpp_0',['eigen.hpp',['../eigen_8hpp.html',1,'']]] +]; diff --git a/search/files_4.js b/search/files_4.js new file mode 100644 index 000000000..4fac8e702 --- /dev/null +++ b/search/files_4.js @@ -0,0 +1,67 @@ +var searchData= +[ + ['h5_5fdefinitions_2ehpp_0',['H5_definitions.hpp',['../_h5__definitions_8hpp.html',1,'']]], + ['h5_5fwrapper_2ehpp_1',['h5_wrapper.hpp',['../h5__wrapper_8hpp.html',1,'']]], + ['h5a_5fwrapper_2ehpp_2',['h5a_wrapper.hpp',['../h5a__wrapper_8hpp.html',1,'']]], + ['h5annotate_5ftraits_2ehpp_3',['H5Annotate_traits.hpp',['../_h5_annotate__traits_8hpp.html',1,'']]], + ['h5annotate_5ftraits_5fmisc_2ehpp_4',['H5Annotate_traits_misc.hpp',['../_h5_annotate__traits__misc_8hpp.html',1,'']]], + ['h5attribute_2ehpp_5',['H5Attribute.hpp',['../_h5_attribute_8hpp.html',1,'']]], + ['h5attribute_5fmisc_2ehpp_6',['H5Attribute_misc.hpp',['../_h5_attribute__misc_8hpp.html',1,'']]], + ['h5converter_5fmisc_2ehpp_7',['H5Converter_misc.hpp',['../_h5_converter__misc_8hpp.html',1,'']]], + ['h5d_5fwrapper_2ehpp_8',['h5d_wrapper.hpp',['../h5d__wrapper_8hpp.html',1,'']]], + ['h5dataset_2ehpp_9',['H5DataSet.hpp',['../_h5_data_set_8hpp.html',1,'']]], + ['h5dataset_5fmisc_2ehpp_10',['H5DataSet_misc.hpp',['../_h5_data_set__misc_8hpp.html',1,'']]], + ['h5dataspace_2ehpp_11',['H5DataSpace.hpp',['../_h5_data_space_8hpp.html',1,'']]], + ['h5dataspace_5fmisc_2ehpp_12',['H5Dataspace_misc.hpp',['../_h5_dataspace__misc_8hpp.html',1,'']]], + ['h5datatype_2ehpp_13',['H5DataType.hpp',['../_h5_data_type_8hpp.html',1,'']]], + ['h5datatype_5fmisc_2ehpp_14',['H5DataType_misc.hpp',['../_h5_data_type__misc_8hpp.html',1,'']]], + ['h5e_5fwrapper_2ehpp_15',['h5e_wrapper.hpp',['../h5e__wrapper_8hpp.html',1,'']]], + ['h5easy_2ehpp_16',['H5Easy.hpp',['../_h5_easy_8hpp.html',1,'']]], + ['h5easy_5feigen_2ehpp_17',['H5Easy_Eigen.hpp',['../_h5_easy___eigen_8hpp.html',1,'']]], + ['h5easy_5fmisc_2ehpp_18',['H5Easy_misc.hpp',['../_h5_easy__misc_8hpp.html',1,'']]], + ['h5easy_5fopencv_2ehpp_19',['H5Easy_opencv.hpp',['../_h5_easy__opencv_8hpp.html',1,'']]], + ['h5easy_5fpublic_2ehpp_20',['H5Easy_public.hpp',['../_h5_easy__public_8hpp.html',1,'']]], + ['h5easy_5fscalar_2ehpp_21',['H5Easy_scalar.hpp',['../_h5_easy__scalar_8hpp.html',1,'']]], + ['h5easy_5fvector_2ehpp_22',['H5Easy_vector.hpp',['../_h5_easy__vector_8hpp.html',1,'']]], + ['h5easy_5fxtensor_2ehpp_23',['H5Easy_xtensor.hpp',['../_h5_easy__xtensor_8hpp.html',1,'']]], + ['h5exception_2ehpp_24',['H5Exception.hpp',['../_h5_exception_8hpp.html',1,'']]], + ['h5exception_5fmisc_2ehpp_25',['H5Exception_misc.hpp',['../_h5_exception__misc_8hpp.html',1,'']]], + ['h5f_5fwrapper_2ehpp_26',['h5f_wrapper.hpp',['../h5f__wrapper_8hpp.html',1,'']]], + ['h5file_2ehpp_27',['H5File.hpp',['../_h5_file_8hpp.html',1,'']]], + ['h5file_5fmisc_2ehpp_28',['H5File_misc.hpp',['../_h5_file__misc_8hpp.html',1,'']]], + ['h5filedriver_2ehpp_29',['H5FileDriver.hpp',['../_h5_file_driver_8hpp.html',1,'']]], + ['h5filedriver_5fmisc_2ehpp_30',['H5FileDriver_misc.hpp',['../_h5_file_driver__misc_8hpp.html',1,'']]], + ['h5friends_2ehpp_31',['H5Friends.hpp',['../_h5_friends_8hpp.html',1,'']]], + ['h5g_5fwrapper_2ehpp_32',['h5g_wrapper.hpp',['../h5g__wrapper_8hpp.html',1,'']]], + ['h5group_2ehpp_33',['H5Group.hpp',['../_h5_group_8hpp.html',1,'']]], + ['h5i_5fwrapper_2ehpp_34',['h5i_wrapper.hpp',['../h5i__wrapper_8hpp.html',1,'']]], + ['h5inspector_5fdecl_2ehpp_35',['H5Inspector_decl.hpp',['../_h5_inspector__decl_8hpp.html',1,'']]], + ['h5inspector_5fmisc_2ehpp_36',['H5Inspector_misc.hpp',['../_h5_inspector__misc_8hpp.html',1,'']]], + ['h5iterables_5fmisc_2ehpp_37',['H5Iterables_misc.hpp',['../_h5_iterables__misc_8hpp.html',1,'']]], + ['h5l_5fwrapper_2ehpp_38',['h5l_wrapper.hpp',['../h5l__wrapper_8hpp.html',1,'']]], + ['h5node_5ftraits_2ehpp_39',['H5Node_traits.hpp',['../_h5_node__traits_8hpp.html',1,'']]], + ['h5node_5ftraits_5fmisc_2ehpp_40',['H5Node_traits_misc.hpp',['../_h5_node__traits__misc_8hpp.html',1,'']]], + ['h5o_5fwrapper_2ehpp_41',['h5o_wrapper.hpp',['../h5o__wrapper_8hpp.html',1,'']]], + ['h5object_2ehpp_42',['H5Object.hpp',['../_h5_object_8hpp.html',1,'']]], + ['h5object_5fmisc_2ehpp_43',['H5Object_misc.hpp',['../_h5_object__misc_8hpp.html',1,'']]], + ['h5p_5fwrapper_2ehpp_44',['h5p_wrapper.hpp',['../h5p__wrapper_8hpp.html',1,'']]], + ['h5path_5ftraits_2ehpp_45',['H5Path_traits.hpp',['../_h5_path__traits_8hpp.html',1,'']]], + ['h5path_5ftraits_5fmisc_2ehpp_46',['H5Path_traits_misc.hpp',['../_h5_path__traits__misc_8hpp.html',1,'']]], + ['h5propertylist_2ehpp_47',['H5PropertyList.hpp',['../_h5_property_list_8hpp.html',1,'']]], + ['h5propertylist_5fmisc_2ehpp_48',['H5PropertyList_misc.hpp',['../_h5_property_list__misc_8hpp.html',1,'']]], + ['h5r_5fwrapper_2ehpp_49',['h5r_wrapper.hpp',['../h5r__wrapper_8hpp.html',1,'']]], + ['h5readwrite_5fmisc_2ehpp_50',['H5ReadWrite_misc.hpp',['../_h5_read_write__misc_8hpp.html',1,'']]], + ['h5reference_2ehpp_51',['H5Reference.hpp',['../_h5_reference_8hpp.html',1,'']]], + ['h5reference_5fmisc_2ehpp_52',['H5Reference_misc.hpp',['../_h5_reference__misc_8hpp.html',1,'']]], + ['h5s_5fwrapper_2ehpp_53',['h5s_wrapper.hpp',['../h5s__wrapper_8hpp.html',1,'']]], + ['h5selection_2ehpp_54',['H5Selection.hpp',['../_h5_selection_8hpp.html',1,'']]], + ['h5selection_5fmisc_2ehpp_55',['H5Selection_misc.hpp',['../_h5_selection__misc_8hpp.html',1,'']]], + ['h5slice_5ftraits_2ehpp_56',['H5Slice_traits.hpp',['../_h5_slice__traits_8hpp.html',1,'']]], + ['h5slice_5ftraits_5fmisc_2ehpp_57',['H5Slice_traits_misc.hpp',['../_h5_slice__traits__misc_8hpp.html',1,'']]], + ['h5t_5fwrapper_2ehpp_58',['h5t_wrapper.hpp',['../h5t__wrapper_8hpp.html',1,'']]], + ['h5utility_2ehpp_59',['H5Utility.hpp',['../_h5_utility_8hpp.html',1,'']]], + ['h5utils_2ehpp_60',['H5Utils.hpp',['../_h5_utils_8hpp.html',1,'']]], + ['h5version_2ehpp_61',['H5Version.hpp',['../_h5_version_8hpp.html',1,'']]], + ['half_5ffloat_2ehpp_62',['half_float.hpp',['../half__float_8hpp.html',1,'']]], + ['highfive_2ehpp_63',['highfive.hpp',['../highfive_8hpp.html',1,'']]] +]; diff --git a/search/files_5.js b/search/files_5.js new file mode 100644 index 000000000..22c78de0c --- /dev/null +++ b/search/files_5.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['installation_2emd_0',['installation.md',['../installation_8md.html',1,'']]] +]; diff --git a/search/files_6.js b/search/files_6.js new file mode 100644 index 000000000..925c6fb25 --- /dev/null +++ b/search/files_6.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['migration_5fguide_2emd_0',['migration_guide.md',['../migration__guide_8md.html',1,'']]] +]; diff --git a/search/files_7.js b/search/files_7.js new file mode 100644 index 000000000..4accdc1f4 --- /dev/null +++ b/search/files_7.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['readme_2emd_0',['README.md',['../_r_e_a_d_m_e_8md.html',1,'']]] +]; diff --git a/search/files_8.js b/search/files_8.js new file mode 100644 index 000000000..0c113abac --- /dev/null +++ b/search/files_8.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['string_5fpadding_2ehpp_0',['string_padding.hpp',['../string__padding_8hpp.html',1,'']]] +]; diff --git a/search/functions_0.js b/search/functions_0.js new file mode 100644 index 000000000..33ebc66f5 --- /dev/null +++ b/search/functions_0.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['_5finitializeifneeded_0',['_initializeIfNeeded',['../class_high_five_1_1_property_list.html#a532f2e881eb1cb05da42d687c1d5e97e',1,'HighFive::PropertyList']]] +]; diff --git a/search/functions_1.js b/search/functions_1.js new file mode 100644 index 000000000..bd93ad4f4 --- /dev/null +++ b/search/functions_1.js @@ -0,0 +1,12 @@ +var searchData= +[ + ['add_0',['add',['../class_high_five_1_1_property_list.html#af982152b36c4216bdcdf60dbf10f0a1d',1,'HighFive::PropertyList::add()'],['../class_high_five_1_1_raw_property_list.html#a7f1ab49326895254c10c8d39724aa944',1,'HighFive::RawPropertyList::add()']]], + ['allocationtime_1',['AllocationTime',['../class_high_five_1_1_allocation_time.html#aa9b8f91669815c7579e952f1ab5d7c64',1,'HighFive::AllocationTime::AllocationTime(H5D_alloc_time_t alloc_time)'],['../class_high_five_1_1_allocation_time.html#a6855f0c3f6c66d4c1ec41d95aebb2ad3',1,'HighFive::AllocationTime::AllocationTime(const DataSetCreateProps &dcpl)']]], + ['apply_2',['apply',['../class_high_five_1_1_hyper_slab.html#afecb4503d3ce92815710f03b3d0a85b8',1,'HighFive::HyperSlab']]], + ['asstringtype_3',['asStringType',['../class_high_five_1_1_data_type.html#ab959e9cd8ccd474542bf220627ec7844',1,'HighFive::DataType']]], + ['at_4',['at',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a69d615d326ffd680832e6d1e16c3ef30',1,'HighFive::deprecated::FixedLenStringArray']]], + ['atomictype_5',['AtomicType',['../class_high_five_1_1_atomic_type_3_01char_0f_str_len_0e_4.html#a4ae18629788947cdb9c5f6893017376b',1,'HighFive::AtomicType< char[StrLen]>::AtomicType()'],['../class_high_five_1_1_atomic_type_3_01deprecated_1_1_fixed_len_string_array_3_01_str_len_01_4_01_4.html#a62b353ebfd6b54076599c08210c089b2',1,'HighFive::AtomicType< deprecated::FixedLenStringArray< StrLen > >::AtomicType()'],['../class_high_five_1_1_atomic_type_3_01std_1_1complex_3_01_t_01_4_01_4.html#afce941c6b3480ed7cfcf5a787396c500',1,'HighFive::AtomicType< std::complex< T > >::AtomicType()'],['../class_high_five_1_1_atomic_type.html#ace690f26cabac4bd472f47e6629fe7ae',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#af8b6e9ffdb076ecd7b9ea8e825b1d7c9',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a7e51e6773bb9934eb8d7fe9881fe4fe9',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a06c87a3e42844220d3f1acf7e220588f',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a7e64d2707996b3b03657c0be2172cbdb',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#ae8cebf936468a862589b073db0d28d44',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a68a295d57afe890a26c49523ca06eceb',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a0b4d0f1d9c5b18020a460ac1591b0665',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a43016c14b0c4731802ff4468486a3f83',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#aa6082308b8707466a329e02a59a92e0f',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#ad7288e7c84ac324b4dea8169f071e4ee',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a82b6070cd38dd7456d29018765539d0f',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a0edf612da138154aa497d6a2706876ba',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a45b7187829cdc797fba98c530253b7fa',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#ab17d941585baab34c224e0e448b824a6',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#abaf0327b4db9b70f0aa922f92edaa76e',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a8291e490374e7584d5309b24a86f1615',1,'HighFive::AtomicType::AtomicType()'],['../class_high_five_1_1_atomic_type.html#a9b68b644e1e8b20e36ab5098561590fd',1,'HighFive::AtomicType::AtomicType()']]], + ['attribute_6',['Attribute',['../class_high_five_1_1_attribute.html#aa2ac0bfc7aa4f29ef5d32a6518cb40a3',1,'HighFive::Attribute']]], + ['attributeexception_7',['AttributeException',['../class_high_five_1_1_attribute_exception.html#ade502f58024a58bea7454e8a4d58c4f0',1,'HighFive::AttributeException']]], + ['attributephasechange_8',['AttributePhaseChange',['../class_high_five_1_1_attribute_phase_change.html#a979a5ef023e9c45b1d8b3de253fb69ef',1,'HighFive::AttributePhaseChange::AttributePhaseChange(unsigned max_compact, unsigned min_dense)'],['../class_high_five_1_1_attribute_phase_change.html#a06649e848cb2fe58934d2a750e853e9b',1,'HighFive::AttributePhaseChange::AttributePhaseChange(const GroupCreateProps &gcpl)']]] +]; diff --git a/search/functions_10.js b/search/functions_10.js new file mode 100644 index 000000000..a7e6d9e1d --- /dev/null +++ b/search/functions_10.js @@ -0,0 +1,16 @@ +var searchData= +[ + ['scalar_0',['Scalar',['../class_high_five_1_1_data_space.html#a78e587127110cab8dca8f354a8172824',1,'HighFive::DataSpace']]], + ['select_1',['select',['../class_high_five_1_1_slice_traits.html#aa11ef45e433e18ce8f4706f17a8d7463',1,'HighFive::SliceTraits::select(const HyperSlab &hyperslab) const'],['../class_high_five_1_1_slice_traits.html#a71175dfcf7e9fa5ca5d5e2919163dece',1,'HighFive::SliceTraits::select(const HyperSlab &hyperslab, const DataSpace &memspace) const'],['../class_high_five_1_1_slice_traits.html#a6a76a20247d0e8f8629b81c17425d73c',1,'HighFive::SliceTraits::select(const std::vector< size_t > &offset, const std::vector< size_t > &count, const std::vector< size_t > &stride={}, const std::vector< size_t > &block={}) const'],['../class_high_five_1_1_slice_traits.html#a52c44cc1bdfac24890b999e902099c83',1,'HighFive::SliceTraits::select(const std::vector< size_t > &columns) const'],['../class_high_five_1_1_slice_traits.html#aa67c235ff1633d91f77b4f3fd911da75',1,'HighFive::SliceTraits::select(const ElementSet &elements) const']]], + ['selection_2',['Selection',['../class_high_five_1_1_selection.html#ae5ffe93f0e0a4d6e04d531420fd63e29',1,'HighFive::Selection']]], + ['set_3',['set',['../class_h5_easy_1_1_dump_options.html#aca2b65d5fe5b5fa9bc74f62bb8c52871',1,'H5Easy::DumpOptions::set(DumpMode mode)'],['../class_h5_easy_1_1_dump_options.html#a026e6c7714cae7e1b9a93b0e39ca71d0',1,'H5Easy::DumpOptions::set(Flush mode)'],['../class_h5_easy_1_1_dump_options.html#ae1db6010b692e7a0c260ce86e80f5e28',1,'H5Easy::DumpOptions::set(const Compression &level)'],['../class_h5_easy_1_1_dump_options.html#aa242b2d0698060317ba538349b193656',1,'H5Easy::DumpOptions::set(T arg, Args... args)']]], + ['set_5flogging_5fcallback_4',['set_logging_callback',['../class_high_five_1_1_logger.html#a9b42228f1091409f5fc4b09a25fed4fc',1,'HighFive::Logger']]], + ['setchunksize_5',['setChunkSize',['../class_h5_easy_1_1_dump_options.html#af8cb0dc019344b41643cbcebb4c88f01',1,'H5Easy::DumpOptions::setChunkSize(const std::vector< T > &shape)'],['../class_h5_easy_1_1_dump_options.html#ac5fa831c573ee5a7f03aea5967cf3301',1,'H5Easy::DumpOptions::setChunkSize(std::initializer_list< size_t > shape)']]], + ['seterrormsg_6',['setErrorMsg',['../class_high_five_1_1_exception.html#a7c9b65fc87cf1abfed6d24309c74f0cf',1,'HighFive::Exception']]], + ['shuffle_7',['Shuffle',['../class_high_five_1_1_shuffle.html#a7fc2632a04860fee90b30867afb43f46',1,'HighFive::Shuffle']]], + ['silencehdf5_8',['SilenceHDF5',['../class_high_five_1_1_silence_h_d_f5.html#a87e3b628feb913044cf4859fce72e9b5',1,'HighFive::SilenceHDF5']]], + ['size_9',['size',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#aec436d056f8f3ee80e934de60ab61e0d',1,'HighFive::deprecated::FixedLenStringArray']]], + ['stackwalk_10',['stackWalk',['../struct_high_five_1_1_h_d_f5_err_mapper.html#a6b5c9457c40015e9c57896e68cf86069',1,'HighFive::HDF5ErrMapper']]], + ['string_11',['string',['../class_high_five_1_1_data_type.html#a957ea4848ba76cab82d7b4cff7210c87',1,'HighFive::DataType']]], + ['szip_12',['Szip',['../class_high_five_1_1_szip.html#a2857efb608427dbfcea9356fbd0f1cea',1,'HighFive::Szip']]] +]; diff --git a/search/functions_11.js b/search/functions_11.js new file mode 100644 index 000000000..5a501a3d2 --- /dev/null +++ b/search/functions_11.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['to_5fstring_0',['to_string',['../namespace_high_five.html#ace8358255410138c5e223747e2a06f36',1,'HighFive']]], + ['toexception_1',['ToException',['../struct_high_five_1_1_h_d_f5_err_mapper.html#abce55b175d5b366589798b0bef28cae6',1,'HighFive::HDF5ErrMapper']]], + ['tohdf5sizevector_2',['toHDF5SizeVector',['../namespace_high_five.html#acd815ee14c714bfa4ba0f05acc6e486d',1,'HighFive']]], + ['tostlsizevector_3',['toSTLSizeVector',['../namespace_high_five.html#a1de5c5eaf17007862e5cf63ec186a64e',1,'HighFive']]] +]; diff --git a/search/functions_12.js b/search/functions_12.js new file mode 100644 index 000000000..99cb5982e --- /dev/null +++ b/search/functions_12.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['unlink_0',['unlink',['../class_high_five_1_1_node_traits.html#a37ed4a7bc21f02b14d1f71e097b3d4bf',1,'HighFive::NodeTraits']]], + ['usecollectiveio_1',['UseCollectiveIO',['../class_high_five_1_1_use_collective_i_o.html#a2e69f2c3f51af01f979094e5f8624327',1,'HighFive::UseCollectiveIO::UseCollectiveIO(bool enable=true)'],['../class_high_five_1_1_use_collective_i_o.html#a91ea36587502d39431c7fbb565e9debe',1,'HighFive::UseCollectiveIO::UseCollectiveIO(const DataTransferProps &dxpl)']]] +]; diff --git a/search/functions_13.js b/search/functions_13.js new file mode 100644 index 000000000..6005c0585 --- /dev/null +++ b/search/functions_13.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['variablelengthstringtype_0',['VariableLengthStringType',['../class_high_five_1_1_variable_length_string_type.html#acc03c514d450d31741a103765de509de',1,'HighFive::VariableLengthStringType']]] +]; diff --git a/search/functions_14.js b/search/functions_14.js new file mode 100644 index 000000000..576376be8 --- /dev/null +++ b/search/functions_14.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['wascollective_0',['wasCollective',['../class_high_five_1_1_mpio_no_collective_cause.html#a6d388115bac6e233bec17c6833206425',1,'HighFive::MpioNoCollectiveCause']]], + ['what_1',['what',['../class_high_five_1_1_exception.html#ac68d010bb13e90124360fa0f7c0e6f53',1,'HighFive::Exception']]], + ['write_2',['write',['../class_high_five_1_1_slice_traits.html#a307d4d8539a69feda2bbf11bf8622e60',1,'HighFive::SliceTraits::write()'],['../class_high_five_1_1_attribute.html#a9f7585585d281f09ab231df1637e29c7',1,'HighFive::Attribute::write()']]], + ['write_5fraw_3',['write_raw',['../class_high_five_1_1_slice_traits.html#aeac937f71ee942fafac7d19fb658721a',1,'HighFive::SliceTraits::write_raw(const T *buffer, const DataType &mem_datatype, const DataTransferProps &xfer_props=DataTransferProps())'],['../class_high_five_1_1_slice_traits.html#a4396e0774fd015f081dcc3eb12efe97c',1,'HighFive::SliceTraits::write_raw(const T *buffer, const DataTransferProps &xfer_props=DataTransferProps())'],['../class_high_five_1_1_attribute.html#aaf08f65d5477d96922aa257a2af86efa',1,'HighFive::Attribute::write_raw(const T *buffer, const DataType &mem_datatype)'],['../class_high_five_1_1_attribute.html#abb15f4324cc70aabaaaf9aaf9c7922c9',1,'HighFive::Attribute::write_raw(const T *buffer)']]] +]; diff --git a/search/functions_15.js b/search/functions_15.js new file mode 100644 index 000000000..2e9feb6df --- /dev/null +++ b/search/functions_15.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['_7eexception_0',['~Exception',['../class_high_five_1_1_exception.html#a5b14aa4572f3e72eff27529413442f29',1,'HighFive::Exception']]], + ['_7eobject_1',['~Object',['../class_high_five_1_1_object.html#a26aecd6a0812960b13eff054fe3a78aa',1,'HighFive::Object']]], + ['_7esilencehdf5_2',['~SilenceHDF5',['../class_high_five_1_1_silence_h_d_f5.html#a56bfc9798ec749255cdd7960a73409a0',1,'HighFive::SilenceHDF5']]] +]; diff --git a/search/functions_2.js b/search/functions_2.js new file mode 100644 index 000000000..c4c73eb08 --- /dev/null +++ b/search/functions_2.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['back_0',['back',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a5944f3fd0a833c36ce59bc2db76f9a3c',1,'HighFive::deprecated::FixedLenStringArray']]], + ['begin_1',['begin',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#ab27a11d14640741a320aab179bca1f36',1,'HighFive::deprecated::FixedLenStringArray::begin() noexcept'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a9d9516d876a63b6f6e881720c15c25fc',1,'HighFive::deprecated::FixedLenStringArray::begin() const noexcept']]] +]; diff --git a/search/functions_3.js b/search/functions_3.js new file mode 100644 index 000000000..8ef065526 --- /dev/null +++ b/search/functions_3.js @@ -0,0 +1,25 @@ +var searchData= +[ + ['caching_0',['Caching',['../class_high_five_1_1_caching.html#a4ad5bc32240ca22d19c154d6c7691e76',1,'HighFive::Caching::Caching(const size_t numSlots, const size_t cacheSize, const double w0=static_cast< double >(H5D_CHUNK_CACHE_W0_DEFAULT))'],['../class_high_five_1_1_caching.html#a1103a422af4e81b1f4c044996d66d72b',1,'HighFive::Caching::Caching(const DataSetCreateProps &dcpl)']]], + ['cbegin_1',['cbegin',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a49f114243a95386618335e91aad6dacd',1,'HighFive::deprecated::FixedLenStringArray']]], + ['cend_2',['cend',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a2f5a7880b71178c0a064f49f01ca966b',1,'HighFive::deprecated::FixedLenStringArray']]], + ['chunking_3',['Chunking',['../class_high_five_1_1_chunking.html#abfd796a2842296cce52f56563d5e3f1b',1,'HighFive::Chunking::Chunking(const std::vector< hsize_t > &dims)'],['../class_high_five_1_1_chunking.html#ae6f0394d31da862755c2a828b7340578',1,'HighFive::Chunking::Chunking(const std::initializer_list< hsize_t > &items)'],['../class_high_five_1_1_chunking.html#a67ef8c92794bef91bb521dd1a8771034',1,'HighFive::Chunking::Chunking(hsize_t item, Args... args)'],['../class_high_five_1_1_chunking.html#a3c16ed55527bf30ae056cb2f52adb3bc',1,'HighFive::Chunking::Chunking(DataSetCreateProps &plist, size_t max_dims=32)']]], + ['clone_4',['clone',['../class_high_five_1_1_data_space.html#a902be8659c05c859158631230b78f3f4',1,'HighFive::DataSpace']]], + ['commit_5',['commit',['../class_high_five_1_1_compound_type.html#a15cef864f40910add938415ffb8eeac1',1,'HighFive::CompoundType::commit()'],['../class_high_five_1_1_enum_type.html#a989ae33cd573624dcbdcaf0d5bed5eea',1,'HighFive::EnumType::commit()']]], + ['compoundtype_6',['CompoundType',['../class_high_five_1_1_compound_type.html#a7a9a5ba8596390d58597efe77c986282',1,'HighFive::CompoundType::CompoundType(const CompoundType &other)=default'],['../class_high_five_1_1_compound_type.html#ac8f84671aaca1a6e4aadf599464f822d',1,'HighFive::CompoundType::CompoundType(const std::vector< member_def > &t_members, size_t size=0)'],['../class_high_five_1_1_compound_type.html#af41ef356cdeb6f369ea2c3f5c6acb317',1,'HighFive::CompoundType::CompoundType(std::vector< member_def > &&t_members, size_t size=0)'],['../class_high_five_1_1_compound_type.html#a928622671e9da1ffcc7df491b746680d',1,'HighFive::CompoundType::CompoundType(const std::initializer_list< member_def > &t_members, size_t size=0)'],['../class_high_five_1_1_compound_type.html#ad8de9032c191ca6ca6221eb80dcf23da',1,'HighFive::CompoundType::CompoundType(DataType &&type)']]], + ['compress_7',['compress',['../class_h5_easy_1_1_dump_options.html#aef7625dc82a01d05a1e2047f0325dcd1',1,'H5Easy::DumpOptions']]], + ['compression_8',['Compression',['../class_h5_easy_1_1_compression.html#af85134056dad9c8b46bb51835cba11d7',1,'H5Easy::Compression::Compression(bool enable=true)'],['../class_h5_easy_1_1_compression.html#aae59d202e4dfe95c53ee626d3439f6e4',1,'H5Easy::Compression::Compression(T level)']]], + ['compute_5ftotal_5fsize_9',['compute_total_size',['../namespace_high_five.html#ae473192dc3e4e3f42c470f682817a32c',1,'HighFive']]], + ['create_5fand_5fcheck_5fdatatype_10',['create_and_check_datatype',['../namespace_high_five.html#a43d3946c0bb037e99c803ec90dc247b4',1,'HighFive']]], + ['create_5fdatatype_11',['create_datatype',['../namespace_high_five.html#a6f3b307cc5b6bd82d6360f13cacac2de',1,'HighFive']]], + ['create_5fdatatype_3c_20bool_20_3e_12',['create_datatype< bool >',['../namespace_high_five.html#aaf8cbe7c9df6f34f493d21ad51517fc9',1,'HighFive']]], + ['create_5fenum_5fboolean_13',['create_enum_boolean',['../namespace_high_five.html#a361e2132e78bca627125eba4295b9ae6',1,'HighFive']]], + ['create_5fref_14',['create_ref',['../class_high_five_1_1_reference.html#af33dd1870b37db8c90287df4f0c7d622',1,'HighFive::Reference']]], + ['createattribute_15',['createAttribute',['../class_high_five_1_1_annotate_traits.html#a43db973fb33b6abbd8cc8cd7a6dc4bec',1,'HighFive::AnnotateTraits::createAttribute(const std::string &attribute_name, const DataSpace &space, const DataType &type)'],['../class_high_five_1_1_annotate_traits.html#a7218895780698f2bbab4d029fdab0284',1,'HighFive::AnnotateTraits::createAttribute(const std::string &attribute_name, const DataSpace &space)'],['../class_high_five_1_1_annotate_traits.html#ae4e2ba30f074187856b98bdc61bbd646',1,'HighFive::AnnotateTraits::createAttribute(const std::string &attribute_name, const T &data)']]], + ['createdataset_16',['createDataSet',['../class_high_five_1_1_node_traits.html#a941a8deb4c9971d27af7b7b73a534709',1,'HighFive::NodeTraits::createDataSet(const std::string &dataset_name, const DataSpace &space, const DataType &type, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)'],['../class_high_five_1_1_node_traits.html#ae0bcaf33a07487be71fc62d7a40d6a60',1,'HighFive::NodeTraits::createDataSet(const std::string &dataset_name, const DataSpace &space, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)'],['../class_high_five_1_1_node_traits.html#ac53402ee0dc01b86ac475dfa8db172c3',1,'HighFive::NodeTraits::createDataSet(const std::string &dataset_name, const T &data, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)'],['../class_high_five_1_1_node_traits.html#a36fc9e014e52d0bb6350865ffb28e8a4',1,'HighFive::NodeTraits::createDataSet(const std::string &dataset_name, const deprecated::FixedLenStringArray< N > &data, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)']]], + ['createexternallink_17',['createExternalLink',['../class_high_five_1_1_node_traits.html#a4f63ab185617fac1597087e8079a0989',1,'HighFive::NodeTraits']]], + ['creategroup_18',['createGroup',['../class_high_five_1_1_node_traits.html#a8b966c4e5ee90aa9d86421646f2ecb99',1,'HighFive::NodeTraits::createGroup(const std::string &group_name, bool parents=true)'],['../class_high_five_1_1_node_traits.html#a3da8ee379234a7d0d18e0abbd6019196',1,'HighFive::NodeTraits::createGroup(const std::string &group_name, const GroupCreateProps &createProps, bool parents=true)']]], + ['createhardlink_19',['createHardLink',['../class_high_five_1_1_node_traits.html#a7f11136752f9a2ec632e0b2f94fb475e',1,'HighFive::NodeTraits']]], + ['createintermediategroup_20',['CreateIntermediateGroup',['../class_high_five_1_1_create_intermediate_group.html#a05ff59987cddf8b82e3bd7a3eec0394f',1,'HighFive::CreateIntermediateGroup::CreateIntermediateGroup(bool create=true)'],['../class_high_five_1_1_create_intermediate_group.html#ab7b461991cf2489e2ec80c17c2a15462',1,'HighFive::CreateIntermediateGroup::CreateIntermediateGroup(const ObjectCreateProps &ocpl)'],['../class_high_five_1_1_create_intermediate_group.html#a5d3a1f7a0201c8735bb27493717b67a8',1,'HighFive::CreateIntermediateGroup::CreateIntermediateGroup(const LinkCreateProps &lcpl)']]], + ['createsoftlink_21',['createSoftLink',['../class_high_five_1_1_node_traits.html#a6f4f9127e6626fdc9d3456a77899217b',1,'HighFive::NodeTraits::createSoftLink(const std::string &linkName, const T &obj)'],['../class_high_five_1_1_node_traits.html#a44f7cc437ed68cb9d534f2fe2ffe3c79',1,'HighFive::NodeTraits::createSoftLink(const std::string &link_name, const std::string &obj_path, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)']]] +]; diff --git a/search/functions_4.js b/search/functions_4.js new file mode 100644 index 000000000..17f089599 --- /dev/null +++ b/search/functions_4.js @@ -0,0 +1,17 @@ +var searchData= +[ + ['data_0',['data',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#abd859d160e3b5a53741a73ea80a991e2',1,'HighFive::deprecated::FixedLenStringArray::data() noexcept'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#af7f1fbfe4942c7039deead6c481da802',1,'HighFive::deprecated::FixedLenStringArray::data() const noexcept']]], + ['dataset_1',['DataSet',['../class_high_five_1_1_data_set.html#a1a43c3413fef0f376d85dbf47e38ad55',1,'HighFive::DataSet::DataSet()=default'],['../class_high_five_1_1_data_set.html#a99bb1d77991fd975fb559372b4b0fb6b',1,'HighFive::DataSet::DataSet(Object &&o) noexcept']]], + ['datasetexception_2',['DataSetException',['../class_high_five_1_1_data_set_exception.html#a12e2ef42d52a26486cbaa10ff9c02534',1,'HighFive::DataSetException']]], + ['dataspace_3',['DataSpace',['../class_high_five_1_1_data_space.html#a40b1526be36b7ebb536122f9c413feef',1,'HighFive::DataSpace::DataSpace(const std::vector< size_t > &dims)'],['../class_high_five_1_1_data_space.html#a978628751ce6f7ecf92961fa44e2a821',1,'HighFive::DataSpace::DataSpace(const std::array< size_t, N > &dims)'],['../class_high_five_1_1_data_space.html#a6558726da6bff24df406751a4429e10b',1,'HighFive::DataSpace::DataSpace(const std::initializer_list< size_t > &dims)'],['../class_high_five_1_1_data_space.html#a2771c3df1c0578278bfbd0e2263e7abf',1,'HighFive::DataSpace::DataSpace(size_t dim1, Args... dims)'],['../class_high_five_1_1_data_space.html#a5d48bf7863b08eed90d4357ac476b4a1',1,'HighFive::DataSpace::DataSpace(const IT begin, const IT end)'],['../class_high_five_1_1_data_space.html#a435085d2b1d06d54966c13d0d84a6e77',1,'HighFive::DataSpace::DataSpace(const std::vector< size_t > &dims, const std::vector< size_t > &maxdims)'],['../class_high_five_1_1_data_space.html#ab9230eeb6124dee3fbbc49c725e988ee',1,'HighFive::DataSpace::DataSpace(DataspaceType space_type)'],['../class_high_five_1_1_data_space.html#aaf4d7229b87d8175eaf0ab2314e9675a',1,'HighFive::DataSpace::DataSpace()=default']]], + ['dataspaceexception_4',['DataSpaceException',['../class_high_five_1_1_data_space_exception.html#a6838cd3e42fc092ed25594f8e4e98093',1,'HighFive::DataSpaceException']]], + ['datatypeexception_5',['DataTypeException',['../class_high_five_1_1_data_type_exception.html#abfbd23381af62882f92fa1308f21948a',1,'HighFive::DataTypeException']]], + ['default_6',['Default',['../class_high_five_1_1_property_list_base.html#aceba0c0241a36365b737e58baeb657ca',1,'HighFive::PropertyListBase::Default()'],['../class_high_five_1_1_property_list.html#a632188590f43c420a203c41909963a73',1,'HighFive::PropertyList::Default()']]], + ['default_5flogging_5fcallback_7',['default_logging_callback',['../namespace_high_five.html#abf6fe5be71a00bfb4d6b5f65e6248132',1,'HighFive']]], + ['deflate_8',['Deflate',['../class_high_five_1_1_deflate.html#aec7e6cfb91ee39beb916c0a96921fd6b',1,'HighFive::Deflate']]], + ['deleteattribute_9',['deleteAttribute',['../class_high_five_1_1_annotate_traits.html#a6aa353a99c57bc526da0b2f1a06318b3',1,'HighFive::AnnotateTraits']]], + ['dereference_10',['dereference',['../class_high_five_1_1_reference.html#a083d46fbe580304f8416f73e57a5b414',1,'HighFive::Reference']]], + ['dump_11',['dump',['../namespace_h5_easy.html#a3d74bc6b96493dbef4fb3b4e237cff88',1,'H5Easy::dump(File &file, const std::string &path, const T &data, DumpMode mode=DumpMode::Create)'],['../namespace_h5_easy.html#a7614d902c22b74a18fb29c42599a6785',1,'H5Easy::dump(File &file, const std::string &path, const T &data, const DumpOptions &options)'],['../namespace_h5_easy.html#a727340de29b032fa860412f6a69f215c',1,'H5Easy::dump(File &file, const std::string &path, const T &data, const std::vector< size_t > &idx)'],['../namespace_h5_easy.html#a2e96c80337866b79777e52faa7d692cc',1,'H5Easy::dump(File &file, const std::string &path, const T &data, const std::initializer_list< size_t > &idx)'],['../namespace_h5_easy.html#a26be50f813db9257d77b0c25adfdf726',1,'H5Easy::dump(File &file, const std::string &path, const T &data, const std::vector< size_t > &idx, const DumpOptions &options)'],['../namespace_h5_easy.html#a5f0af85e0fe3ac03af665dae2a3e9e16',1,'H5Easy::dump(File &file, const std::string &path, const T &data, const std::initializer_list< size_t > &idx, const DumpOptions &options)']]], + ['dumpattribute_12',['dumpAttribute',['../namespace_h5_easy.html#a85cad90855dbb23ba985be58b447a6b2',1,'H5Easy::dumpAttribute(File &file, const std::string &path, const std::string &key, const T &data, DumpMode mode=DumpMode::Create)'],['../namespace_h5_easy.html#a4a395eb642d1a2d5055282dacf32ee94',1,'H5Easy::dumpAttribute(File &file, const std::string &path, const std::string &key, const T &data, const DumpOptions &options)']]], + ['dumpoptions_13',['DumpOptions',['../class_h5_easy_1_1_dump_options.html#a692690dae0de400b885791b9ce1434b7',1,'H5Easy::DumpOptions::DumpOptions()=default'],['../class_h5_easy_1_1_dump_options.html#af2a89678a725e2cb33b4f4a824d102d3',1,'H5Easy::DumpOptions::DumpOptions(Args... args)']]] +]; diff --git a/search/functions_5.js b/search/functions_5.js new file mode 100644 index 000000000..a620157a9 --- /dev/null +++ b/search/functions_5.js @@ -0,0 +1,11 @@ +var searchData= +[ + ['elementset_0',['ElementSet',['../class_high_five_1_1_element_set.html#a1479938205bd9d66267a58a11651b04f',1,'HighFive::ElementSet::ElementSet(std::initializer_list< std::size_t > list)'],['../class_high_five_1_1_element_set.html#a294be4e23eff7d07faa08e128d4b0afc',1,'HighFive::ElementSet::ElementSet(std::initializer_list< std::vector< std::size_t > > list)'],['../class_high_five_1_1_element_set.html#aedd3703eec6465101d2eef43ddbb5788',1,'HighFive::ElementSet::ElementSet(const std::vector< std::size_t > &element_ids)'],['../class_high_five_1_1_element_set.html#afc31e0be89f28aea060d8482ea525996',1,'HighFive::ElementSet::ElementSet(const std::vector< std::vector< std::size_t > > &element_ids)']]], + ['empty_1',['empty',['../class_high_five_1_1_data_type.html#a546aceb9cdbc45d5e471811b8e9cdce8',1,'HighFive::DataType::empty()'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a3ec69eb4a8361d8da30100970377870b',1,'HighFive::deprecated::FixedLenStringArray::empty()']]], + ['empty_2',['Empty',['../class_high_five_1_1_property_list.html#a5f1efcfb89e0bb7051ef870c76129f5f',1,'HighFive::PropertyList']]], + ['end_3',['end',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#ad3dc286012bd53390ca15cce9bd72fc5',1,'HighFive::deprecated::FixedLenStringArray::end() noexcept'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a198f617755dab79c7fdf0bf9dcb6f489',1,'HighFive::deprecated::FixedLenStringArray::end() const noexcept']]], + ['enumtype_4',['EnumType',['../class_high_five_1_1_enum_type.html#a7d2b0c5fd6d77ea600687d6536b8ecdb',1,'HighFive::EnumType::EnumType(const EnumType &other)=default'],['../class_high_five_1_1_enum_type.html#aa1c30f28b5387421406e184c5f77b854',1,'HighFive::EnumType::EnumType(const std::vector< member_def > &t_members)'],['../class_high_five_1_1_enum_type.html#a36c34fffd466b4a2c0c4f3bdf9f6a1a3',1,'HighFive::EnumType::EnumType(std::initializer_list< member_def > t_members)']]], + ['estimatedlinkinfo_5',['EstimatedLinkInfo',['../class_high_five_1_1_estimated_link_info.html#a3c311eb0f98aaa4dc1c7a26fab57a43d',1,'HighFive::EstimatedLinkInfo::EstimatedLinkInfo(unsigned entries, unsigned length)'],['../class_high_five_1_1_estimated_link_info.html#ae8d47670a7adee47bf69d0fc1a53ebf2',1,'HighFive::EstimatedLinkInfo::EstimatedLinkInfo(const GroupCreateProps &gcpl)']]], + ['exception_6',['Exception',['../class_high_five_1_1_exception.html#adbde3ec927a2402f5f1f23e50f02c155',1,'HighFive::Exception']]], + ['exist_7',['exist',['../class_high_five_1_1_node_traits.html#aa3c8c4e09ebba6d997768ad72bc3bf82',1,'HighFive::NodeTraits']]] +]; diff --git a/search/functions_6.js b/search/functions_6.js new file mode 100644 index 000000000..f80474dc2 --- /dev/null +++ b/search/functions_6.js @@ -0,0 +1,16 @@ +var searchData= +[ + ['file_0',['File',['../class_high_five_1_1_file.html#a28ecd0313429c95671fe4baa6be076df',1,'HighFive::File::File(const std::string &filename, unsigned openFlags=ReadOnly, const FileAccessProps &fileAccessProps=FileAccessProps::Default())'],['../class_high_five_1_1_file.html#aae2430c3529c4896a207f6dbe64a943e',1,'HighFive::File::File(const std::string &filename, unsigned openFlags, const FileCreateProps &fileCreateProps, const FileAccessProps &fileAccessProps=FileAccessProps::Default())'],['../class_high_five_1_1_file.html#a8795099e29b71240c772e7c57d072a9d',1,'HighFive::File::File()=default']]], + ['fileexception_1',['FileException',['../class_high_five_1_1_file_exception.html#a68c676392c9ea3f7e5e7ecc1149609ee',1,'HighFive::FileException']]], + ['fileversionbounds_2',['FileVersionBounds',['../class_high_five_1_1_file_version_bounds.html#aff11691ee13ebbd765d9c1f18e379b4b',1,'HighFive::FileVersionBounds::FileVersionBounds(H5F_libver_t low, H5F_libver_t high)'],['../class_high_five_1_1_file_version_bounds.html#a9517df3be7e25b4a6770165ffe07430d',1,'HighFive::FileVersionBounds::FileVersionBounds(const FileAccessProps &fapl)']]], + ['find_5ffirst_5fatomic_5fmember_5fsize_3',['find_first_atomic_member_size',['../namespace_high_five.html#ac4e5e1ccbc6a1c20bcd581f71fb5e6d5',1,'HighFive']]], + ['fixedlengthstringtype_4',['FixedLengthStringType',['../class_high_five_1_1_fixed_length_string_type.html#a861eb3227c2387d3c0754b795cde204e',1,'HighFive::FixedLengthStringType']]], + ['fixedlenstringarray_5',['FixedLenStringArray',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#aa913375abb83a7ef03c2b0ba53f7abc4',1,'HighFive::deprecated::FixedLenStringArray::FixedLenStringArray()=default'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#abe23e3558d76298d621d4a4b011bfb55',1,'HighFive::deprecated::FixedLenStringArray::FixedLenStringArray(const char array[][N], std::size_t n_strings)'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#af0de3010329cfdd2dbe6e874e5111a59',1,'HighFive::deprecated::FixedLenStringArray::FixedLenStringArray(const std::vector< std::string > &vec)'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#afe40ad8759b9ff2ecaf40e897baecafb',1,'HighFive::deprecated::FixedLenStringArray::FixedLenStringArray(const std::string *iter_begin, const std::string *iter_end)'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a32db457a4f2fdf923467533f3eabd556',1,'HighFive::deprecated::FixedLenStringArray::FixedLenStringArray(const std::initializer_list< std::string > &)']]], + ['flush_6',['flush',['../class_h5_easy_1_1_dump_options.html#a2ed02e1afc1926b7a58346b9bf2017f9',1,'H5Easy::DumpOptions::flush()'],['../class_high_five_1_1_file.html#a1e607911df10307dd3cc75a0dd6c5158',1,'HighFive::File::flush()']]], + ['from_7',['From',['../class_high_five_1_1_data_space.html#a4b0ebf9d884bf33a6b95e7eed989555a',1,'HighFive::DataSpace']]], + ['fromchararraystrings_8',['FromCharArrayStrings',['../class_high_five_1_1_data_space.html#a1ec5754826f5f43385e971da7f279559',1,'HighFive::DataSpace']]], + ['fromhdf5sizes_9',['fromHDF5Sizes',['../struct_high_five_1_1_regular_hyper_slab.html#af685fbdbe7d8dd7425c6c57719348a01',1,'HighFive::RegularHyperSlab']]], + ['fromid_10',['fromId',['../class_high_five_1_1_data_space.html#a3569ad59595555de776f3518460dbe14',1,'HighFive::DataSpace']]], + ['frompropertylist_11',['fromPropertyList',['../class_high_five_1_1_create_intermediate_group.html#a815c0e49561c0b4a774cc59a4aa017b7',1,'HighFive::CreateIntermediateGroup::fromPropertyList()'],['../class_high_five_1_1_link_creation_order.html#a6bcc5d01c7a4aa1630b192aa62ff3dd9',1,'HighFive::LinkCreationOrder::fromPropertyList()']]], + ['front_12',['front',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a3f1811f5d3e5bee60091cf45d4fe0c9b',1,'HighFive::deprecated::FixedLenStringArray']]] +]; diff --git a/search/functions_7.js b/search/functions_7.js new file mode 100644 index 000000000..1904e5c45 --- /dev/null +++ b/search/functions_7.js @@ -0,0 +1,66 @@ +var searchData= +[ + ['get_0',['get',['../class_h5_easy_1_1_compression.html#a925d2e96ddbc9fc459b81ecf31fc121e',1,'H5Easy::Compression']]], + ['get_5fglobal_5flogger_1',['get_global_logger',['../namespace_high_five.html#ad2f60aec2c40524b30248aac67f5eeb5',1,'HighFive']]], + ['getaccesspropertylist_2',['getAccessPropertyList',['../class_high_five_1_1_data_set.html#ada59836ba9ddb3973fa80076e4242734',1,'HighFive::DataSet::getAccessPropertyList()'],['../class_high_five_1_1_file.html#a3a75e93bc3748614dff7e850d82ed495',1,'HighFive::File::getAccessPropertyList()']]], + ['getaddress_3',['getAddress',['../class_high_five_1_1_object_info.html#a9275887ab016ce89fc24938f8d86aa11',1,'HighFive::ObjectInfo']]], + ['getallocationtime_4',['getAllocationTime',['../class_high_five_1_1_allocation_time.html#a0fee45a52a542fedaa06300e177f7f01',1,'HighFive::AllocationTime']]], + ['getattribute_5',['getAttribute',['../class_high_five_1_1_annotate_traits.html#ad82448659b7a92cac2e7eeb5d8b974d6',1,'HighFive::AnnotateTraits']]], + ['getcachesize_6',['getCacheSize',['../class_high_five_1_1_caching.html#a54d4f322493e56f22fd5d70b1f64ea26',1,'HighFive::Caching']]], + ['getcause_7',['getCause',['../class_high_five_1_1_mpio_no_collective_cause.html#a7b1b28211a950b4652a0336559f4be6d',1,'HighFive::MpioNoCollectiveCause']]], + ['getcharacterset_8',['getCharacterSet',['../class_high_five_1_1_string_type.html#a81ae2382aeeccb15d53d70d04496fcab',1,'HighFive::StringType']]], + ['getchunksize_9',['getChunkSize',['../class_h5_easy_1_1_dump_options.html#a68181f4e69da1dc455606d006864e088',1,'H5Easy::DumpOptions']]], + ['getclass_10',['getClass',['../class_high_five_1_1_data_type.html#a98e6e07ff15a8e1b73673bc51a1a1339',1,'HighFive::DataType']]], + ['getcompressionlevel_11',['getCompressionLevel',['../class_h5_easy_1_1_dump_options.html#a8c58af708cddcbaebb03fcfff6b6356c',1,'H5Easy::DumpOptions']]], + ['getcreatepropertylist_12',['getCreatePropertyList',['../class_high_five_1_1_attribute.html#acee2136593f83a803e4b000916d3020b',1,'HighFive::Attribute::getCreatePropertyList()'],['../class_high_five_1_1_data_set.html#a565ee99d20689e662f17ab8ce3b57000',1,'HighFive::DataSet::getCreatePropertyList()'],['../class_high_five_1_1_data_type.html#a1a1b47fdec00d9814dd861fa51420c9e',1,'HighFive::DataType::getCreatePropertyList()'],['../class_high_five_1_1_file.html#a03938d3708dbafeaf6a83f982aee3909',1,'HighFive::File::getCreatePropertyList()'],['../class_high_five_1_1_group.html#a74f31ef804cbebe13b36db113ef5f235',1,'HighFive::Group::getCreatePropertyList()']]], + ['getcreationtime_13',['getCreationTime',['../class_high_five_1_1_object_info.html#a3afa78a1134a890934ade597a171b482',1,'HighFive::ObjectInfo']]], + ['getdataset_14',['getDataSet',['../class_high_five_1_1_node_traits.html#a6d42bb7aa92a8be5567a42a2f134115f',1,'HighFive::NodeTraits']]], + ['getdataset_15',['getDataset',['../class_high_five_1_1_selection.html#a99180045db6986a3aa99aa19b0b97c07',1,'HighFive::Selection::getDataset() noexcept'],['../class_high_five_1_1_selection.html#a883952cb62d668308d875bfbcc121fc8',1,'HighFive::Selection::getDataset() const noexcept']]], + ['getdatatype_16',['getDataType',['../class_high_five_1_1_node_traits.html#a5b618ebe1b03f24194b5a8ed1b9c59b6',1,'HighFive::NodeTraits::getDataType()'],['../class_high_five_1_1_attribute.html#a600131e681e98f5f03e64e662e3fa325',1,'HighFive::Attribute::getDataType()'],['../class_high_five_1_1_data_set.html#a52b7938b1c7e48f7600fbc3be4a0f24e',1,'HighFive::DataSet::getDataType()'],['../class_high_five_1_1_selection.html#a32e87dff815356a9fa9546a0c09f1d39',1,'HighFive::Selection::getDataType()']]], + ['getdimensions_17',['getDimensions',['../class_high_five_1_1_data_set.html#af7b75de38d47c2c68d4f384ee611bc66',1,'HighFive::DataSet::getDimensions()'],['../class_high_five_1_1_data_space.html#a8c0f85ba275d1d61c332b164070493c8',1,'HighFive::DataSpace::getDimensions()'],['../class_high_five_1_1_chunking.html#ab7241caf43e07ff7bfdb192770270bf2',1,'HighFive::Chunking::getDimensions()']]], + ['getelementcount_18',['getElementCount',['../class_high_five_1_1_data_set.html#abd786ba50bb11b92c9d760f7f77e4ca7',1,'HighFive::DataSet::getElementCount()'],['../class_high_five_1_1_data_space.html#a8b0fb67e77eed8e4b36b67bb352ec07b',1,'HighFive::DataSpace::getElementCount()']]], + ['getentries_19',['getEntries',['../class_high_five_1_1_estimated_link_info.html#a15fe39d3abcec1d56eae67246ed88848',1,'HighFive::EstimatedLinkInfo']]], + ['geterrmajor_20',['getErrMajor',['../class_high_five_1_1_exception.html#a9f29fccb5cbf3b5cb698cf7de68ba56c',1,'HighFive::Exception']]], + ['geterrminor_21',['getErrMinor',['../class_high_five_1_1_exception.html#ad19349814671c76249834ff802695145',1,'HighFive::Exception']]], + ['getestimatedlinkinfo_22',['getEstimatedLinkInfo',['../class_high_five_1_1_group.html#aeca9409bc3a21e9934728293bc24d960',1,'HighFive::Group']]], + ['getfile_23',['getFile',['../class_high_five_1_1_path_traits.html#a9d741a5f2d404314287b18b119136abf',1,'HighFive::PathTraits']]], + ['getfilesize_24',['getFileSize',['../class_high_five_1_1_file.html#a072b1759a2c8b033eea6d020a9ed1d08',1,'HighFive::File']]], + ['getflags_25',['getFlags',['../class_high_five_1_1_link_creation_order.html#ae4f83f749697446de9d56e593bc78a1a',1,'HighFive::LinkCreationOrder']]], + ['getfreespace_26',['getFreeSpace',['../class_high_five_1_1_file.html#a2cd2322084c2c60f5b07af3c3daf1c16',1,'HighFive::File']]], + ['getglobalcause_27',['getGlobalCause',['../class_high_five_1_1_mpio_no_collective_cause.html#a4b3a653e043b86ea0dfb3a7afdff2cb7',1,'HighFive::MpioNoCollectiveCause']]], + ['getgroup_28',['getGroup',['../class_high_five_1_1_node_traits.html#a286d9f9c2232c25abc5876bdc9d66edd',1,'HighFive::NodeTraits']]], + ['getid_29',['getId',['../class_high_five_1_1_object.html#a0efb623a7ceb36777ce81e215995a3bc',1,'HighFive::Object']]], + ['getinfo_30',['getInfo',['../class_high_five_1_1_object.html#a134549df53c4c0a04f728db983b2f947',1,'HighFive::Object']]], + ['getlinktype_31',['getLinkType',['../class_high_five_1_1_node_traits.html#aeab19b9f1fef90db036e1ea6238ef4eb',1,'HighFive::NodeTraits']]], + ['getlocalcause_32',['getLocalCause',['../class_high_five_1_1_mpio_no_collective_cause.html#affcbf437d343b3442cfda7da969f4d37',1,'HighFive::MpioNoCollectiveCause']]], + ['getmaxdimensions_33',['getMaxDimensions',['../class_high_five_1_1_data_space.html#a6563a285d1078bdff32e6662835e7a7b',1,'HighFive::DataSpace']]], + ['getmembers_34',['getMembers',['../class_high_five_1_1_compound_type.html#a771d62eb1c025b13c511de6959816d95',1,'HighFive::CompoundType']]], + ['getmemspace_35',['getMemSpace',['../class_high_five_1_1_attribute.html#a9a4f37c223c52078d91c843f2ba6d994',1,'HighFive::Attribute::getMemSpace()'],['../class_high_five_1_1_data_set.html#a37f31fc5f14192b9a9fcdc7707e0ceee',1,'HighFive::DataSet::getMemSpace()'],['../class_high_five_1_1_selection.html#a0a1461d53a4d91d265a696a6da0fc57c',1,'HighFive::Selection::getMemSpace()']]], + ['getmetadatablocksize_36',['getMetadataBlockSize',['../class_high_five_1_1_file.html#a3e3772ae94caca4b2422b536a1cf2472',1,'HighFive::File']]], + ['getmodificationtime_37',['getModificationTime',['../class_high_five_1_1_object_info.html#ad9e7a6bfd1b5f046745fab423f40750e',1,'HighFive::ObjectInfo']]], + ['getname_38',['getName',['../class_high_five_1_1_attribute.html#a70021d5bf236c431d93013a4ae0ff910',1,'HighFive::Attribute::getName()'],['../class_high_five_1_1_file.html#af555f50958667264563b0cb17b8f902b',1,'HighFive::File::getName()']]], + ['getnamelength_39',['getNameLength',['../class_high_five_1_1_estimated_link_info.html#ab41597c8411f3a4023d82ebd1323a5f7',1,'HighFive::EstimatedLinkInfo']]], + ['getnumberattributes_40',['getNumberAttributes',['../class_high_five_1_1_annotate_traits.html#ae35a70acace4c47935400398d4671d69',1,'HighFive::AnnotateTraits']]], + ['getnumberdimensions_41',['getNumberDimensions',['../class_high_five_1_1_data_space.html#a53c27afc9308d2c44fa6d0e09f1ede9a',1,'HighFive::DataSpace']]], + ['getnumberobjects_42',['getNumberObjects',['../class_high_five_1_1_node_traits.html#ad90f036b55bd3e155c73ece61233210e',1,'HighFive::NodeTraits']]], + ['getnumslots_43',['getNumSlots',['../class_high_five_1_1_caching.html#a0de6bc2b09373107cd10a0fc6211d030',1,'HighFive::Caching']]], + ['getobjectname_44',['getObjectName',['../class_high_five_1_1_node_traits.html#ae10cb4bd9e20c651c136b284f3d8cd46',1,'HighFive::NodeTraits']]], + ['getobjecttype_45',['getObjectType',['../class_high_five_1_1_node_traits.html#abc2c385a18e2caaae71366139b57d8f2',1,'HighFive::NodeTraits']]], + ['getoffset_46',['getOffset',['../class_high_five_1_1_data_set.html#a662e1f9f8d9dfbbf02e135f6be2ee471',1,'HighFive::DataSet']]], + ['getoptionsmask_47',['getOptionsMask',['../class_high_five_1_1_szip.html#ae2a9cc8055aad910598e3f03c4bba3c0',1,'HighFive::Szip']]], + ['getpadding_48',['getPadding',['../class_high_five_1_1_string_type.html#a4f914467563cab045807517baee82c2d',1,'HighFive::StringType']]], + ['getpath_49',['getPath',['../class_high_five_1_1_path_traits.html#aca32b01b8c7eb54d398daeaac0b64399',1,'HighFive::PathTraits::getPath()'],['../class_high_five_1_1_file.html#af141a4c6c9fe058b121646b2079f2c6b',1,'HighFive::File::getPath()']]], + ['getpixelsperblock_50',['getPixelsPerBlock',['../class_high_five_1_1_szip.html#a9ad6b7b8022b89ac1a30bf2cfdbd7cf0',1,'HighFive::Szip']]], + ['getrefcount_51',['getRefCount',['../class_high_five_1_1_object_info.html#aa43efa7e90bebf6f39769d7cd56f8bbe',1,'HighFive::ObjectInfo']]], + ['getshape_52',['getShape',['../namespace_h5_easy.html#aa178d03fd7b8d435b5b41f613c1eaa8b',1,'H5Easy']]], + ['getsize_53',['getSize',['../class_high_five_1_1_data_type.html#a2658ec3c1c3c77dadeb0b1b053d3a7d3',1,'HighFive::DataType::getSize()'],['../class_high_five_1_1_metadata_block_size.html#aee2a49ebdc426f1794c154e3d1b2f871',1,'HighFive::MetadataBlockSize::getSize()'],['../namespace_h5_easy.html#a225c8cffbe78d15254ecde0c8a42958b',1,'H5Easy::getSize()']]], + ['getspace_54',['getSpace',['../class_high_five_1_1_attribute.html#a4378b9e1603b22509c1495ac4362116d',1,'HighFive::Attribute::getSpace()'],['../class_high_five_1_1_data_set.html#aa9405c8f1bdb72d28e971c8645fb47aa',1,'HighFive::DataSet::getSpace()'],['../class_high_five_1_1_selection.html#ae9f659387f72554c7747fc80ddfce280',1,'HighFive::Selection::getSpace()']]], + ['getstoragesize_55',['getStorageSize',['../class_high_five_1_1_attribute.html#ab2ab807ffa3fc8cb6d72ac7ab75a58f1',1,'HighFive::Attribute::getStorageSize()'],['../class_high_five_1_1_data_set.html#a9f1da81f89bdaa08561fb35779586f64',1,'HighFive::DataSet::getStorageSize()']]], + ['getstring_56',['getString',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a70cfdd3324d4c476a5cce1133417a1e4',1,'HighFive::deprecated::FixedLenStringArray']]], + ['gettype_57',['getType',['../class_high_five_1_1_object.html#a60a33f44d524aae5936131770811bd58',1,'HighFive::Object::getType()'],['../class_high_five_1_1_property_list.html#ac5be2be6430f56234db215589ebdee5e',1,'HighFive::PropertyList::getType()'],['../class_high_five_1_1_reference.html#ab5596af0210db020de67f3e04a22da31',1,'HighFive::Reference::getType()']]], + ['getversion_58',['getVersion',['../class_high_five_1_1_file_version_bounds.html#a6d55273a22fb8ecbba0079cc08ae9c79',1,'HighFive::FileVersionBounds']]], + ['getversionbounds_59',['getVersionBounds',['../class_high_five_1_1_file.html#a1c5b148c4e906bcde448b4eea1f66b91',1,'HighFive::File']]], + ['getw0_60',['getW0',['../class_high_five_1_1_caching.html#ae8777cc455ef27d20d44f9aea32720b7',1,'HighFive::Caching']]], + ['group_61',['Group',['../class_high_five_1_1_group.html#a64f8b882c1f7844570be07bb7b012f04',1,'HighFive::Group::Group()=default'],['../class_high_five_1_1_group.html#aa5a251bd5db04d9f05b8c1df4c989b18',1,'HighFive::Group::Group(Object &&o) noexcept']]], + ['groupexception_62',['GroupException',['../class_high_five_1_1_group_exception.html#a3230fc495c7c0bbcab847dc12fbf09df',1,'HighFive::GroupException']]] +]; diff --git a/search/functions_8.js b/search/functions_8.js new file mode 100644 index 000000000..b55fc20b4 --- /dev/null +++ b/search/functions_8.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['hasattribute_0',['hasAttribute',['../class_high_five_1_1_annotate_traits.html#add90f8bddb79edc973aa70f967c92724',1,'HighFive::AnnotateTraits']]], + ['hyperslab_1',['HyperSlab',['../class_high_five_1_1_hyper_slab.html#a906f51584d65e1b6fc777d4bc2022553',1,'HighFive::HyperSlab::HyperSlab()'],['../class_high_five_1_1_hyper_slab.html#adf8bf61c7a39ea30b73f0409c034e4aa',1,'HighFive::HyperSlab::HyperSlab(const RegularHyperSlab &sel)']]] +]; diff --git a/search/functions_9.js b/search/functions_9.js new file mode 100644 index 000000000..01821e445 --- /dev/null +++ b/search/functions_9.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['ischunked_0',['isChunked',['../class_h5_easy_1_1_dump_options.html#a4329501c533ec014d987a202e09413c8',1,'H5Easy::DumpOptions']]], + ['iscollective_1',['isCollective',['../class_high_five_1_1_use_collective_i_o.html#a2c5a378080dd17e736bd0f6b0ae81e1c',1,'HighFive::UseCollectiveIO']]], + ['isfixedlenstr_2',['isFixedLenStr',['../class_high_five_1_1_data_type.html#a0d74bf84217ed4b71818d53db9077d5f',1,'HighFive::DataType']]], + ['isreference_3',['isReference',['../class_high_five_1_1_data_type.html#a9c9656462b3b4442fd0a8ba7fb0ce93f',1,'HighFive::DataType']]], + ['isset_4',['isSet',['../class_high_five_1_1_create_intermediate_group.html#af4a9eb748f1c06199c9ad19daafd8632',1,'HighFive::CreateIntermediateGroup']]], + ['isvalid_5',['isValid',['../class_high_five_1_1_object.html#a7b4b75cd26da783a0ad21ca7f2a593d3',1,'HighFive::Object']]], + ['isvariablestr_6',['isVariableStr',['../class_high_five_1_1_data_type.html#a3f239e86eb8235d0cad445421f97af7c',1,'HighFive::DataType']]] +]; diff --git a/search/functions_a.js b/search/functions_a.js new file mode 100644 index 000000000..993e76e63 --- /dev/null +++ b/search/functions_a.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['linkcreationorder_0',['LinkCreationOrder',['../class_high_five_1_1_link_creation_order.html#a5a0c8614e72358c1723153a06d2c11e6',1,'HighFive::LinkCreationOrder::LinkCreationOrder(unsigned flags)'],['../class_high_five_1_1_link_creation_order.html#aff78af3c9313f37f86bb9aa172440377',1,'HighFive::LinkCreationOrder::LinkCreationOrder(const FileCreateProps &fcpl)'],['../class_high_five_1_1_link_creation_order.html#a1048f06282af8a1a5441e359fc5944f3',1,'HighFive::LinkCreationOrder::LinkCreationOrder(const GroupCreateProps &gcpl)']]], + ['listattributenames_1',['listAttributeNames',['../class_high_five_1_1_annotate_traits.html#a4f19dffbf3bb1be6ba8279fb49917f22',1,'HighFive::AnnotateTraits']]], + ['listobjectnames_2',['listObjectNames',['../class_high_five_1_1_node_traits.html#a30bd43382f4e1f77bc6358ad5f7ed7ce',1,'HighFive::NodeTraits']]], + ['load_3',['load',['../namespace_h5_easy.html#a97ce3122b92fcf8322ed7e8c460c6862',1,'H5Easy::load(const File &file, const std::string &path, const std::vector< size_t > &idx)'],['../namespace_h5_easy.html#a35bd0e824fe3dca2e2d9f9b5e42a18aa',1,'H5Easy::load(const File &file, const std::string &path)']]], + ['loadattribute_4',['loadAttribute',['../namespace_h5_easy.html#a6dc2a2016da5196913ab7036700006fa',1,'H5Easy']]], + ['log_5',['log',['../class_high_five_1_1_logger.html#ae9138a12937186d1ebea1900a488b13c',1,'HighFive::Logger']]], + ['logger_6',['Logger',['../class_high_five_1_1_logger.html#ac6a56a0dea78afb911374249840cc01a',1,'HighFive::Logger::Logger()=delete'],['../class_high_five_1_1_logger.html#a202182c21665e372d6e4585484fccae5',1,'HighFive::Logger::Logger(const Logger &)=delete'],['../class_high_five_1_1_logger.html#aac5d99393c23b4f206a743864e80f7c8',1,'HighFive::Logger::Logger(Logger &&)=delete'],['../class_high_five_1_1_logger.html#ac5aff73990e80aab9f83c798462115c3',1,'HighFive::Logger::Logger(callback_type cb)']]] +]; diff --git a/search/functions_b.js b/search/functions_b.js new file mode 100644 index 000000000..119d1f799 --- /dev/null +++ b/search/functions_b.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['max_5fcompact_0',['max_compact',['../class_high_five_1_1_attribute_phase_change.html#a4a01e8527aaecaffe2db1094f1e4b6c8',1,'HighFive::AttributePhaseChange']]], + ['member_5fdef_1',['member_def',['../struct_high_five_1_1_compound_type_1_1member__def.html#ac0c5ca4212cf886f498cfe79ff354e60',1,'HighFive::CompoundType::member_def::member_def()'],['../struct_high_five_1_1_enum_type_1_1member__def.html#aa666de7e76f872e2e392442c8e691bb3',1,'HighFive::EnumType::member_def::member_def()']]], + ['metadatablocksize_2',['MetadataBlockSize',['../class_high_five_1_1_metadata_block_size.html#a02efd5d5aa5311ecc74f44c4b8b82d78',1,'HighFive::MetadataBlockSize::MetadataBlockSize(hsize_t size)'],['../class_high_five_1_1_metadata_block_size.html#a23661a48122522263bd7f3ec3f245101',1,'HighFive::MetadataBlockSize::MetadataBlockSize(const FileAccessProps &fapl)']]], + ['min_5fdense_3',['min_dense',['../class_high_five_1_1_attribute_phase_change.html#aa40d91cf6907a2013573e691c96d1bc7',1,'HighFive::AttributePhaseChange']]], + ['mpiofileaccess_4',['MPIOFileAccess',['../class_high_five_1_1_m_p_i_o_file_access.html#a45ed3e2138f4fcf8292a8f5bb01434c8',1,'HighFive::MPIOFileAccess']]], + ['mpiofiledriver_5',['MPIOFileDriver',['../class_high_five_1_1_m_p_i_o_file_driver.html#a4659563e3c44c0361429df270b03e778',1,'HighFive::MPIOFileDriver']]], + ['mpionocollectivecause_6',['MpioNoCollectiveCause',['../class_high_five_1_1_mpio_no_collective_cause.html#a902c6632085083f0404d1542a1c267ca',1,'HighFive::MpioNoCollectiveCause']]] +]; diff --git a/search/functions_c.js b/search/functions_c.js new file mode 100644 index 000000000..5282eff37 --- /dev/null +++ b/search/functions_c.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['nextexception_0',['nextException',['../class_high_five_1_1_exception.html#a32badf84ecfcceb0eb6d54f6a33d0989',1,'HighFive::Exception']]], + ['nota_1',['notA',['../class_high_five_1_1_hyper_slab.html#a24205d10982c3affd39635caa090bf39',1,'HighFive::HyperSlab']]], + ['notb_2',['notB',['../class_high_five_1_1_hyper_slab.html#a429775b972d7d5eda1b4f6b63da982c8',1,'HighFive::HyperSlab']]], + ['null_3',['Null',['../class_high_five_1_1_data_space.html#ac02aef9a030d56e0f9e74b4fb2d0e725',1,'HighFive::DataSpace']]] +]; diff --git a/search/functions_d.js b/search/functions_d.js new file mode 100644 index 000000000..fdbd73e18 --- /dev/null +++ b/search/functions_d.js @@ -0,0 +1,16 @@ +var searchData= +[ + ['object_0',['Object',['../class_high_five_1_1_object.html#aa42052fa5ec4ee691f6a7dd6467199f2',1,'HighFive::Object::Object(Object &&other) noexcept'],['../class_high_five_1_1_object.html#a6bae41d04f273d04d2914406ab79da32',1,'HighFive::Object::Object()'],['../class_high_five_1_1_object.html#ab87ee7d5e2beee6a50d60dec20d3dfe5',1,'HighFive::Object::Object(const Object &other)'],['../class_high_five_1_1_object.html#a9fe361bc0bd9662c1fd96a4a6ec1133a',1,'HighFive::Object::Object(hid_t)'],['../class_high_five_1_1_attribute.html#aa42052fa5ec4ee691f6a7dd6467199f2',1,'HighFive::Attribute::Object(Object &&other) noexcept'],['../class_high_five_1_1_attribute.html#a6bae41d04f273d04d2914406ab79da32',1,'HighFive::Attribute::Object()'],['../class_high_five_1_1_attribute.html#ab87ee7d5e2beee6a50d60dec20d3dfe5',1,'HighFive::Attribute::Object(const Object &other)'],['../class_high_five_1_1_attribute.html#a9fe361bc0bd9662c1fd96a4a6ec1133a',1,'HighFive::Attribute::Object(hid_t)'],['../class_high_five_1_1_data_set.html#aa42052fa5ec4ee691f6a7dd6467199f2',1,'HighFive::DataSet::Object(Object &&other) noexcept'],['../class_high_five_1_1_data_set.html#a6bae41d04f273d04d2914406ab79da32',1,'HighFive::DataSet::Object()'],['../class_high_five_1_1_data_set.html#ab87ee7d5e2beee6a50d60dec20d3dfe5',1,'HighFive::DataSet::Object(const Object &other)'],['../class_high_five_1_1_data_set.html#a9fe361bc0bd9662c1fd96a4a6ec1133a',1,'HighFive::DataSet::Object(hid_t)'],['../class_high_five_1_1_data_type.html#aa42052fa5ec4ee691f6a7dd6467199f2',1,'HighFive::DataType::Object(Object &&other) noexcept'],['../class_high_five_1_1_data_type.html#a6bae41d04f273d04d2914406ab79da32',1,'HighFive::DataType::Object()'],['../class_high_five_1_1_data_type.html#ab87ee7d5e2beee6a50d60dec20d3dfe5',1,'HighFive::DataType::Object(const Object &other)'],['../class_high_five_1_1_data_type.html#a9fe361bc0bd9662c1fd96a4a6ec1133a',1,'HighFive::DataType::Object(hid_t)'],['../class_high_five_1_1_file.html#aa42052fa5ec4ee691f6a7dd6467199f2',1,'HighFive::File::Object(Object &&other) noexcept'],['../class_high_five_1_1_file.html#a6bae41d04f273d04d2914406ab79da32',1,'HighFive::File::Object()'],['../class_high_five_1_1_file.html#ab87ee7d5e2beee6a50d60dec20d3dfe5',1,'HighFive::File::Object(const Object &other)'],['../class_high_five_1_1_file.html#a9fe361bc0bd9662c1fd96a4a6ec1133a',1,'HighFive::File::Object(hid_t)'],['../class_high_five_1_1_group.html#aa42052fa5ec4ee691f6a7dd6467199f2',1,'HighFive::Group::Object(Object &&other) noexcept'],['../class_high_five_1_1_group.html#a6bae41d04f273d04d2914406ab79da32',1,'HighFive::Group::Object()'],['../class_high_five_1_1_group.html#ab87ee7d5e2beee6a50d60dec20d3dfe5',1,'HighFive::Group::Object(const Object &other)'],['../class_high_five_1_1_group.html#a9fe361bc0bd9662c1fd96a4a6ec1133a',1,'HighFive::Group::Object(hid_t)']]], + ['objectexception_1',['ObjectException',['../class_high_five_1_1_object_exception.html#aa9d63e59797518ba24516336d562041e',1,'HighFive::ObjectException']]], + ['operator_21_3d_2',['operator!=',['../class_high_five_1_1_data_type.html#aba3b0bec1739ee7482a9d6f3c7464769',1,'HighFive::DataType']]], + ['operator_26_3',['operator&',['../class_high_five_1_1_hyper_slab.html#a4fbf1287c34074ca11b3da08c5d0e287',1,'HighFive::HyperSlab::operator&()'],['../namespace_high_five.html#ad11e24eec8492d0d2c977b58b1e64dbc',1,'HighFive::operator&()']]], + ['operator_26_3d_4',['operator&=',['../class_high_five_1_1_hyper_slab.html#a8be464e1993e66453881fe9adb1a0d72',1,'HighFive::HyperSlab']]], + ['operator_3d_5',['operator=',['../class_high_five_1_1_object.html#acbdb7087cba8bb804f7ec82c56c28ace',1,'HighFive::Object::operator=()'],['../class_high_five_1_1_logger.html#a3e8a6cd1370289fe31e268eeda19d271',1,'HighFive::Logger::operator=(const Logger &)=delete'],['../class_high_five_1_1_logger.html#ad1fea19d9a24a52b09c3bdaf4e8a4288',1,'HighFive::Logger::operator=(Logger &&)=delete']]], + ['operator_3d_3d_6',['operator==',['../class_high_five_1_1_data_type.html#a00fa13324f13dc81bf52b385fc9d852b',1,'HighFive::DataType::operator==()'],['../class_high_five_1_1_object.html#ad838f47662c1b9d240bd26d8710aa7d9',1,'HighFive::Object::operator==()']]], + ['operator_5b_5d_7',['operator[]',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a6c5027b8f786762a3622f33f52be65bc',1,'HighFive::deprecated::FixedLenStringArray']]], + ['operator_5e_8',['operator^',['../class_high_five_1_1_hyper_slab.html#a65b63a6b8ee96c0b3db1448f133d4208',1,'HighFive::HyperSlab']]], + ['operator_5e_3d_9',['operator^=',['../class_high_five_1_1_hyper_slab.html#ac18231b7d002a5497626d3cfe7f818e3',1,'HighFive::HyperSlab']]], + ['operator_7c_10',['operator|',['../class_high_five_1_1_hyper_slab.html#a7fc861f1f4042fae034b358e63e8db71',1,'HighFive::HyperSlab::operator|()'],['../namespace_high_five.html#a98688378bfbae23ab35a06c6916c5a44',1,'HighFive::operator|()']]], + ['operator_7c_3d_11',['operator|=',['../class_high_five_1_1_hyper_slab.html#afb1196fb8cfeaff643d4160046092ab6',1,'HighFive::HyperSlab']]], + ['overwrite_12',['overwrite',['../class_h5_easy_1_1_dump_options.html#ab573397c2a0abb1dc1b9a17db6c34eb1',1,'H5Easy::DumpOptions']]] +]; diff --git a/search/functions_e.js b/search/functions_e.js new file mode 100644 index 000000000..21ff403c5 --- /dev/null +++ b/search/functions_e.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['packeddims_0',['packedDims',['../struct_high_five_1_1_regular_hyper_slab.html#a56c042691b496389564d108c64a9d872',1,'HighFive::RegularHyperSlab']]], + ['pathtraits_1',['PathTraits',['../class_high_five_1_1_path_traits.html#a49601ba2947e519784814a9d7a90f7f5',1,'HighFive::PathTraits']]], + ['propertyexception_2',['PropertyException',['../class_high_five_1_1_property_exception.html#a3b98bbf8140308b1b76305eb5fa86ba0',1,'HighFive::PropertyException']]], + ['propertylistbase_3',['PropertyListBase',['../class_high_five_1_1_property_list_base.html#a3dc12a0e8dc4dedbeea62b626d13e13a',1,'HighFive::PropertyListBase']]], + ['push_5fback_4',['push_back',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a54b243b4c98f6847d34bb40ac2e3cad4',1,'HighFive::deprecated::FixedLenStringArray::push_back(const std::string &)'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#ab66e6617a80330e35f17ad31a1d66e85',1,'HighFive::deprecated::FixedLenStringArray::push_back(const std::array< char, N > &)']]] +]; diff --git a/search/functions_f.js b/search/functions_f.js new file mode 100644 index 000000000..e835afb2b --- /dev/null +++ b/search/functions_f.js @@ -0,0 +1,14 @@ +var searchData= +[ + ['rank_0',['rank',['../struct_high_five_1_1_regular_hyper_slab.html#a29438e89e9000502894ba22fa94e107c',1,'HighFive::RegularHyperSlab']]], + ['rbegin_1',['rbegin',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#ac3d580382ef2b420a9020542ea94222c',1,'HighFive::deprecated::FixedLenStringArray::rbegin() noexcept'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#ab0fca94e9a760128879f56ba8fba2f15',1,'HighFive::deprecated::FixedLenStringArray::rbegin() const noexcept']]], + ['read_2',['read',['../class_high_five_1_1_slice_traits.html#a1301abe3b9745470576986a1cbf7f0c9',1,'HighFive::SliceTraits::read(const DataTransferProps &xfer_props=DataTransferProps()) const'],['../class_high_five_1_1_slice_traits.html#af62a6a1f6c52da1c8ef501067ed948c8',1,'HighFive::SliceTraits::read(T &array, const DataTransferProps &xfer_props=DataTransferProps()) const'],['../class_high_five_1_1_slice_traits.html#a308151100e49985c077608619302c6c0',1,'HighFive::SliceTraits::read(T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) const'],['../class_high_five_1_1_slice_traits.html#a8c5a039f4728158ae7ea39b806660090',1,'HighFive::SliceTraits::read(T *array, const DataTransferProps &xfer_props=DataTransferProps()) const'],['../class_high_five_1_1_attribute.html#a8f6d88e6dadb8e4449fec558e5e0f7ca',1,'HighFive::Attribute::read() const'],['../class_high_five_1_1_attribute.html#ae97ab038f6c58bc0dd1ea498d8e609ce',1,'HighFive::Attribute::read(T &array) const'],['../class_high_five_1_1_attribute.html#acb44e6457df7e57040e39cd4373f9d84',1,'HighFive::Attribute::read(T *array, const DataType &mem_datatype) const'],['../class_high_five_1_1_attribute.html#aa2d0eb2629833a33f3e1a3fbfc1e9f55',1,'HighFive::Attribute::read(T *array) const']]], + ['read_5fraw_3',['read_raw',['../class_high_five_1_1_slice_traits.html#abd941746a239acc6086ed84411ce78b0',1,'HighFive::SliceTraits::read_raw(T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) const'],['../class_high_five_1_1_slice_traits.html#ae38617ce6af575539f0e50422197ee93',1,'HighFive::SliceTraits::read_raw(T *array, const DataTransferProps &xfer_props=DataTransferProps()) const'],['../class_high_five_1_1_attribute.html#a6c21f3a760651d9233ecf880f988c012',1,'HighFive::Attribute::read_raw(T *array, const DataType &mem_datatype) const'],['../class_high_five_1_1_attribute.html#aeb184a520213909e3e3dd5e64497467e',1,'HighFive::Attribute::read_raw(T *array) const']]], + ['reference_4',['Reference',['../class_high_five_1_1_reference.html#a8130903e051ab98f6affbb36627bcfda',1,'HighFive::Reference::Reference()=default'],['../class_high_five_1_1_reference.html#a68e53f37f2b5975e23e0fd78b57f0533',1,'HighFive::Reference::Reference(const Object &location, const Object &object)'],['../class_high_five_1_1_reference.html#a0eebda40272f370b15111fe2f88fd495',1,'HighFive::Reference::Reference(const hobj_ref_t h5_ref)']]], + ['referenceexception_5',['ReferenceException',['../class_high_five_1_1_reference_exception.html#a345ca1ae87323f0e8af38a6e59921890',1,'HighFive::ReferenceException']]], + ['register_5flogging_5fcallback_6',['register_logging_callback',['../namespace_high_five.html#a4fc91cda37008aea40efbb20a39cf1c9',1,'HighFive']]], + ['regularhyperslab_7',['RegularHyperSlab',['../struct_high_five_1_1_regular_hyper_slab.html#ac55d435aad378ad692b811f65f7f8371',1,'HighFive::RegularHyperSlab::RegularHyperSlab()=default'],['../struct_high_five_1_1_regular_hyper_slab.html#aa83c2e83ada980b7a6b07f7f9a20a076',1,'HighFive::RegularHyperSlab::RegularHyperSlab(std::vector< size_t > offset_, std::vector< size_t > count_={}, std::vector< size_t > stride_={}, std::vector< size_t > block_={})']]], + ['rename_8',['rename',['../class_high_five_1_1_node_traits.html#a9732221be5949023649d2d5af9305a30',1,'HighFive::NodeTraits']]], + ['rend_9',['rend',['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a7ea8ea191047d9d6a4114ba4d0152299',1,'HighFive::deprecated::FixedLenStringArray::rend() noexcept'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#ad4b2e4577af489c7813d8e88efbf6f41',1,'HighFive::deprecated::FixedLenStringArray::rend() const noexcept']]], + ['resize_10',['resize',['../class_high_five_1_1_data_set.html#a516b2f8f1e4ecca470d8c351749807e9',1,'HighFive::DataSet::resize()'],['../class_high_five_1_1deprecated_1_1_fixed_len_string_array.html#a30e747411aa45f229e8562d04577142d',1,'HighFive::deprecated::FixedLenStringArray::resize()']]] +]; diff --git a/search/groups_0.js b/search/groups_0.js new file mode 100644 index 000000000..c3e260c99 --- /dev/null +++ b/search/groups_0.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['lists_0',['Property Lists',['../group___property_lists.html',1,'']]] +]; diff --git a/search/groups_1.js b/search/groups_1.js new file mode 100644 index 000000000..b9ec09b72 --- /dev/null +++ b/search/groups_1.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['property_20lists_0',['Property Lists',['../group___property_lists.html',1,'']]] +]; diff --git a/search/mag.svg b/search/mag.svg new file mode 100644 index 000000000..ffb6cf0d0 --- /dev/null +++ b/search/mag.svg @@ -0,0 +1,24 @@ + + + + + + + diff --git a/search/mag_d.svg b/search/mag_d.svg new file mode 100644 index 000000000..4122773f9 --- /dev/null +++ b/search/mag_d.svg @@ -0,0 +1,24 @@ + + + + + + + diff --git a/search/mag_sel.svg b/search/mag_sel.svg new file mode 100644 index 000000000..553dba877 --- /dev/null +++ b/search/mag_sel.svg @@ -0,0 +1,31 @@ + + + + + + + + + diff --git a/search/mag_seld.svg b/search/mag_seld.svg new file mode 100644 index 000000000..c906f84c8 --- /dev/null +++ b/search/mag_seld.svg @@ -0,0 +1,31 @@ + + + + + + + + + diff --git a/search/namespaces_0.js b/search/namespaces_0.js new file mode 100644 index 000000000..0b0922b6e --- /dev/null +++ b/search/namespaces_0.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['h5easy_0',['H5Easy',['../namespace_h5_easy.html',1,'']]], + ['highfive_1',['HighFive',['../namespace_high_five.html',1,'']]], + ['highfive_3a_3adeprecated_2',['deprecated',['../namespace_high_five_1_1deprecated.html',1,'HighFive']]] +]; diff --git a/search/pages_0.js b/search/pages_0.js new file mode 100644 index 000000000..cc9aeea67 --- /dev/null +++ b/search/pages_0.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['beginners_20installation_20guide_20on_20linux_0',['Beginners Installation Guide on Linux',['../md__2home_2runner_2work_2_high_five_2_high_five_2doc_2installation.html',1,'']]] +]; diff --git a/search/pages_1.js b/search/pages_1.js new file mode 100644 index 000000000..18eabe0fb --- /dev/null +++ b/search/pages_1.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['c_20library_0',['HighFive - HDF5 header-only C++ Library',['../index.html',1,'']]], + ['changes_1',['Changes',['../md__2home_2runner_2work_2_high_five_2_high_five_2_c_h_a_n_g_e_l_o_g.html',1,'']]] +]; diff --git a/search/pages_2.js b/search/pages_2.js new file mode 100644 index 000000000..48cca4ab5 --- /dev/null +++ b/search/pages_2.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['deprecated_20list_0',['Deprecated List',['../deprecated.html',1,'']]], + ['developer_20guide_1',['Developer Guide',['../md__2home_2runner_2work_2_high_five_2_high_five_2doc_2developer__guide.html',1,'']]] +]; diff --git a/search/pages_3.js b/search/pages_3.js new file mode 100644 index 000000000..a1df40b73 --- /dev/null +++ b/search/pages_3.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['guide_0',['Guide',['../md__2home_2runner_2work_2_high_five_2_high_five_2doc_2developer__guide.html',1,'Developer Guide'],['../md__2home_2runner_2work_2_high_five_2_high_five_2doc_2migration__guide.html',1,'Migration Guide']]], + ['guide_20on_20linux_1',['Beginners Installation Guide on Linux',['../md__2home_2runner_2work_2_high_five_2_high_five_2doc_2installation.html',1,'']]] +]; diff --git a/search/pages_4.js b/search/pages_4.js new file mode 100644 index 000000000..36da0a6d1 --- /dev/null +++ b/search/pages_4.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['hdf5_20header_20only_20c_20library_0',['HighFive - HDF5 header-only C++ Library',['../index.html',1,'']]], + ['header_20only_20c_20library_1',['HighFive - HDF5 header-only C++ Library',['../index.html',1,'']]], + ['highfive_20hdf5_20header_20only_20c_20library_2',['HighFive - HDF5 header-only C++ Library',['../index.html',1,'']]] +]; diff --git a/search/pages_5.js b/search/pages_5.js new file mode 100644 index 000000000..63ec6669f --- /dev/null +++ b/search/pages_5.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['installation_20guide_20on_20linux_0',['Beginners Installation Guide on Linux',['../md__2home_2runner_2work_2_high_five_2_high_five_2doc_2installation.html',1,'']]] +]; diff --git a/search/pages_6.js b/search/pages_6.js new file mode 100644 index 000000000..81c723529 --- /dev/null +++ b/search/pages_6.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['library_0',['HighFive - HDF5 header-only C++ Library',['../index.html',1,'']]], + ['linux_1',['Beginners Installation Guide on Linux',['../md__2home_2runner_2work_2_high_five_2_high_five_2doc_2installation.html',1,'']]], + ['list_2',['Deprecated List',['../deprecated.html',1,'']]] +]; diff --git a/search/pages_7.js b/search/pages_7.js new file mode 100644 index 000000000..2a5e8c5c6 --- /dev/null +++ b/search/pages_7.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['migration_20guide_0',['Migration Guide',['../md__2home_2runner_2work_2_high_five_2_high_five_2doc_2migration__guide.html',1,'']]] +]; diff --git a/search/pages_8.js b/search/pages_8.js new file mode 100644 index 000000000..20c5f3b15 --- /dev/null +++ b/search/pages_8.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['on_20linux_0',['Beginners Installation Guide on Linux',['../md__2home_2runner_2work_2_high_five_2_high_five_2doc_2installation.html',1,'']]], + ['only_20c_20library_1',['HighFive - HDF5 header-only C++ Library',['../index.html',1,'']]] +]; diff --git a/search/related_0.js b/search/related_0.js new file mode 100644 index 000000000..498c8d979 --- /dev/null +++ b/search/related_0.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['attribute_0',['Attribute',['../class_high_five_1_1_data_space.html#abd4bab8f7ee748d7ea63f7f9b6248611',1,'HighFive::DataSpace::Attribute'],['../class_high_five_1_1_data_type.html#abd4bab8f7ee748d7ea63f7f9b6248611',1,'HighFive::DataType::Attribute']]] +]; diff --git a/search/related_1.js b/search/related_1.js new file mode 100644 index 000000000..e6cd242d2 --- /dev/null +++ b/search/related_1.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['compoundtype_0',['CompoundType',['../class_high_five_1_1_data_type.html#a9531936c7f60cc4739426e6a25f23e7e',1,'HighFive::DataType::CompoundType'],['../class_high_five_1_1_object.html#a9531936c7f60cc4739426e6a25f23e7e',1,'HighFive::Object::CompoundType']]] +]; diff --git a/search/related_2.js b/search/related_2.js new file mode 100644 index 000000000..eb2ec8226 --- /dev/null +++ b/search/related_2.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['dataset_0',['DataSet',['../class_high_five_1_1_data_space.html#aef648af6c56fa8ee0738c93629e725dc',1,'HighFive::DataSpace::DataSet'],['../class_high_five_1_1_data_type.html#aef648af6c56fa8ee0738c93629e725dc',1,'HighFive::DataType::DataSet']]], + ['datatype_1',['DataType',['../class_high_five_1_1_string_type.html#a3891af67cf0b0e58640245a7ba31176f',1,'HighFive::StringType']]] +]; diff --git a/search/related_3.js b/search/related_3.js new file mode 100644 index 000000000..4fd837d00 --- /dev/null +++ b/search/related_3.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['file_0',['File',['../class_high_five_1_1_data_space.html#a68d15876ad188b7628261b12d0eac8aa',1,'HighFive::DataSpace::File'],['../class_high_five_1_1_data_type.html#a68d15876ad188b7628261b12d0eac8aa',1,'HighFive::DataType::File'],['../class_high_five_1_1_group.html#a68d15876ad188b7628261b12d0eac8aa',1,'HighFive::Group::File']]] +]; diff --git a/search/related_4.js b/search/related_4.js new file mode 100644 index 000000000..f2d41a388 --- /dev/null +++ b/search/related_4.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['hdf5errmapper_0',['HDF5ErrMapper',['../class_high_five_1_1_exception.html#a1f3f174381f90e2f63dc4dbd5eb62e52',1,'HighFive::Exception']]] +]; diff --git a/search/related_5.js b/search/related_5.js new file mode 100644 index 000000000..63dc4eb2b --- /dev/null +++ b/search/related_5.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['nodetraits_0',['NodeTraits',['../class_high_five_1_1_data_set.html#a403d48867d005e936868de31b2281ae8',1,'HighFive::DataSet::NodeTraits'],['../class_high_five_1_1_data_type.html#a403d48867d005e936868de31b2281ae8',1,'HighFive::DataType::NodeTraits']]] +]; diff --git a/search/related_6.js b/search/related_6.js new file mode 100644 index 000000000..8fdb383f0 --- /dev/null +++ b/search/related_6.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['object_0',['Object',['../class_high_five_1_1_object_info.html#a0720b5f434e636e22a3ed34f847eec57',1,'HighFive::ObjectInfo']]] +]; diff --git a/search/related_7.js b/search/related_7.js new file mode 100644 index 000000000..623bfbe9c --- /dev/null +++ b/search/related_7.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['pathtraits_0',['PathTraits',['../class_high_five_1_1_file.html#a4fd65b8c85f680db6495b37b7a00594a',1,'HighFive::File']]] +]; diff --git a/search/related_8.js b/search/related_8.js new file mode 100644 index 000000000..0db8c38c9 --- /dev/null +++ b/search/related_8.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['reference_0',['Reference',['../class_high_five_1_1_data_set.html#a75dfa92607f3d314070ecf242e028014',1,'HighFive::DataSet::Reference'],['../class_high_five_1_1_group.html#a75dfa92607f3d314070ecf242e028014',1,'HighFive::Group::Reference'],['../class_high_five_1_1_object.html#a75dfa92607f3d314070ecf242e028014',1,'HighFive::Object::Reference']]] +]; diff --git a/search/related_9.js b/search/related_9.js new file mode 100644 index 000000000..105dc7db9 --- /dev/null +++ b/search/related_9.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['slicetraits_0',['SliceTraits',['../class_high_five_1_1_element_set.html#addb06cbd22277a5199483352358a5e4f',1,'HighFive::ElementSet']]] +]; diff --git a/search/search.css b/search/search.css new file mode 100644 index 000000000..19f76f9d5 --- /dev/null +++ b/search/search.css @@ -0,0 +1,291 @@ +/*---------------- Search Box positioning */ + +#main-menu > li:last-child { + /* This
  • object is the parent of the search bar */ + display: flex; + justify-content: center; + align-items: center; + height: 36px; + margin-right: 1em; +} + +/*---------------- Search box styling */ + +.SRPage * { + font-weight: normal; + line-height: normal; +} + +dark-mode-toggle { + margin-left: 5px; + display: flex; + float: right; +} + +#MSearchBox { + display: inline-block; + white-space : nowrap; + background: var(--search-background-color); + border-radius: 0.65em; + box-shadow: var(--search-box-shadow); + z-index: 102; +} + +#MSearchBox .left { + display: inline-block; + vertical-align: middle; + height: 1.4em; +} + +#MSearchSelect { + display: inline-block; + vertical-align: middle; + width: 20px; + height: 19px; + background-image: var(--search-magnification-select-image); + margin: 0 0 0 0.3em; + padding: 0; +} + +#MSearchSelectExt { + display: inline-block; + vertical-align: middle; + width: 10px; + height: 19px; + background-image: var(--search-magnification-image); + margin: 0 0 0 0.5em; + padding: 0; +} + + +#MSearchField { + display: inline-block; + vertical-align: middle; + width: 7.5em; + height: 19px; + margin: 0 0.15em; + padding: 0; + line-height: 1em; + border:none; + color: var(--search-foreground-color); + outline: none; + font-family: var(--font-family-search); + -webkit-border-radius: 0px; + border-radius: 0px; + background: none; +} + +@media(hover: none) { + /* to avoid zooming on iOS */ + #MSearchField { + font-size: 16px; + } +} + +#MSearchBox .right { + display: inline-block; + vertical-align: middle; + width: 1.4em; + height: 1.4em; +} + +#MSearchClose { + display: none; + font-size: inherit; + background : none; + border: none; + margin: 0; + padding: 0; + outline: none; + +} + +#MSearchCloseImg { + padding: 0.3em; + margin: 0; +} + +.MSearchBoxActive #MSearchField { + color: var(--search-active-color); +} + + + +/*---------------- Search filter selection */ + +#MSearchSelectWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid var(--search-filter-border-color); + background-color: var(--search-filter-background-color); + z-index: 10001; + padding-top: 4px; + padding-bottom: 4px; + -moz-border-radius: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +.SelectItem { + font: 8pt var(--font-family-search); + padding-left: 2px; + padding-right: 12px; + border: 0px; +} + +span.SelectionMark { + margin-right: 4px; + font-family: var(--font-family-monospace); + outline-style: none; + text-decoration: none; +} + +a.SelectItem { + display: block; + outline-style: none; + color: var(--search-filter-foreground-color); + text-decoration: none; + padding-left: 6px; + padding-right: 12px; +} + +a.SelectItem:focus, +a.SelectItem:active { + color: var(--search-filter-foreground-color); + outline-style: none; + text-decoration: none; +} + +a.SelectItem:hover { + color: var(--search-filter-highlight-text-color); + background-color: var(--search-filter-highlight-bg-color); + outline-style: none; + text-decoration: none; + cursor: pointer; + display: block; +} + +/*---------------- Search results window */ + +iframe#MSearchResults { + /*width: 60ex;*/ + height: 15em; +} + +#MSearchResultsWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid var(--search-results-border-color); + background-color: var(--search-results-background-color); + z-index:10000; + width: 300px; + height: 400px; + overflow: auto; +} + +/* ----------------------------------- */ + + +#SRIndex { + clear:both; +} + +.SREntry { + font-size: 10pt; + padding-left: 1ex; +} + +.SRPage .SREntry { + font-size: 8pt; + padding: 1px 5px; +} + +div.SRPage { + margin: 5px 2px; + background-color: var(--search-results-background-color); +} + +.SRChildren { + padding-left: 3ex; padding-bottom: .5em +} + +.SRPage .SRChildren { + display: none; +} + +.SRSymbol { + font-weight: bold; + color: var(--search-results-foreground-color); + font-family: var(--font-family-search); + text-decoration: none; + outline: none; +} + +a.SRScope { + display: block; + color: var(--search-results-foreground-color); + font-family: var(--font-family-search); + font-size: 8pt; + text-decoration: none; + outline: none; +} + +a.SRSymbol:focus, a.SRSymbol:active, +a.SRScope:focus, a.SRScope:active { + text-decoration: underline; +} + +span.SRScope { + padding-left: 4px; + font-family: var(--font-family-search); +} + +.SRPage .SRStatus { + padding: 2px 5px; + font-size: 8pt; + font-style: italic; + font-family: var(--font-family-search); +} + +.SRResult { + display: none; +} + +div.searchresults { + margin-left: 10px; + margin-right: 10px; +} + +/*---------------- External search page results */ + +.pages b { + color: white; + padding: 5px 5px 3px 5px; + background-image: var(--nav-gradient-active-image-parent); + background-repeat: repeat-x; + text-shadow: 0 1px 1px #000000; +} + +.pages { + line-height: 17px; + margin-left: 4px; + text-decoration: none; +} + +.hl { + font-weight: bold; +} + +#searchresults { + margin-bottom: 20px; +} + +.searchpages { + margin-top: 10px; +} + diff --git a/search/search.js b/search/search.js new file mode 100644 index 000000000..666af01e5 --- /dev/null +++ b/search/search.js @@ -0,0 +1,694 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +const SEARCH_COOKIE_NAME = ''+'search_grp'; + +const searchResults = new SearchResults(); + +/* A class handling everything associated with the search panel. + + Parameters: + name - The name of the global variable that will be + storing this instance. Is needed to be able to set timeouts. + resultPath - path to use for external files +*/ +function SearchBox(name, resultsPath, extension) { + if (!name || !resultsPath) { alert("Missing parameters to SearchBox."); } + if (!extension || extension == "") { extension = ".html"; } + + function getXPos(item) { + let x = 0; + if (item.offsetWidth) { + while (item && item!=document.body) { + x += item.offsetLeft; + item = item.offsetParent; + } + } + return x; + } + + function getYPos(item) { + let y = 0; + if (item.offsetWidth) { + while (item && item!=document.body) { + y += item.offsetTop; + item = item.offsetParent; + } + } + return y; + } + + // ---------- Instance variables + this.name = name; + this.resultsPath = resultsPath; + this.keyTimeout = 0; + this.keyTimeoutLength = 500; + this.closeSelectionTimeout = 300; + this.lastSearchValue = ""; + this.lastResultsPage = ""; + this.hideTimeout = 0; + this.searchIndex = 0; + this.searchActive = false; + this.extension = extension; + + // ----------- DOM Elements + + this.DOMSearchField = () => document.getElementById("MSearchField"); + this.DOMSearchSelect = () => document.getElementById("MSearchSelect"); + this.DOMSearchSelectWindow = () => document.getElementById("MSearchSelectWindow"); + this.DOMPopupSearchResults = () => document.getElementById("MSearchResults"); + this.DOMPopupSearchResultsWindow = () => document.getElementById("MSearchResultsWindow"); + this.DOMSearchClose = () => document.getElementById("MSearchClose"); + this.DOMSearchBox = () => document.getElementById("MSearchBox"); + + // ------------ Event Handlers + + // Called when focus is added or removed from the search field. + this.OnSearchFieldFocus = function(isActive) { + this.Activate(isActive); + } + + this.OnSearchSelectShow = function() { + const searchSelectWindow = this.DOMSearchSelectWindow(); + const searchField = this.DOMSearchSelect(); + + const left = getXPos(searchField); + const top = getYPos(searchField) + searchField.offsetHeight; + + // show search selection popup + searchSelectWindow.style.display='block'; + searchSelectWindow.style.left = left + 'px'; + searchSelectWindow.style.top = top + 'px'; + + // stop selection hide timer + if (this.hideTimeout) { + clearTimeout(this.hideTimeout); + this.hideTimeout=0; + } + return false; // to avoid "image drag" default event + } + + this.OnSearchSelectHide = function() { + this.hideTimeout = setTimeout(this.CloseSelectionWindow.bind(this), + this.closeSelectionTimeout); + } + + // Called when the content of the search field is changed. + this.OnSearchFieldChange = function(evt) { + if (this.keyTimeout) { // kill running timer + clearTimeout(this.keyTimeout); + this.keyTimeout = 0; + } + + const e = evt ? evt : window.event; // for IE + if (e.keyCode==40 || e.keyCode==13) { + if (e.shiftKey==1) { + this.OnSearchSelectShow(); + const win=this.DOMSearchSelectWindow(); + for (let i=0;i do a search + this.Search(); + } + } + + this.OnSearchSelectKey = function(evt) { + const e = (evt) ? evt : window.event; // for IE + if (e.keyCode==40 && this.searchIndex0) { // Up + this.searchIndex--; + this.OnSelectItem(this.searchIndex); + } else if (e.keyCode==13 || e.keyCode==27) { + e.stopPropagation(); + this.OnSelectItem(this.searchIndex); + this.CloseSelectionWindow(); + this.DOMSearchField().focus(); + } + return false; + } + + // --------- Actions + + // Closes the results window. + this.CloseResultsWindow = function() { + this.DOMPopupSearchResultsWindow().style.display = 'none'; + this.DOMSearchClose().style.display = 'none'; + this.Activate(false); + } + + this.CloseSelectionWindow = function() { + this.DOMSearchSelectWindow().style.display = 'none'; + } + + // Performs a search. + this.Search = function() { + this.keyTimeout = 0; + + // strip leading whitespace + const searchValue = this.DOMSearchField().value.replace(/^ +/, ""); + + const code = searchValue.toLowerCase().charCodeAt(0); + let idxChar = searchValue.substr(0, 1).toLowerCase(); + if ( 0xD800 <= code && code <= 0xDBFF && searchValue > 1) { // surrogate pair + idxChar = searchValue.substr(0, 2); + } + + let jsFile; + let idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar); + if (idx!=-1) { + const hexCode=idx.toString(16); + jsFile = this.resultsPath + indexSectionNames[this.searchIndex] + '_' + hexCode + '.js'; + } + + const loadJS = function(url, impl, loc) { + const scriptTag = document.createElement('script'); + scriptTag.src = url; + scriptTag.onload = impl; + scriptTag.onreadystatechange = impl; + loc.appendChild(scriptTag); + } + + const domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow(); + const domSearchBox = this.DOMSearchBox(); + const domPopupSearchResults = this.DOMPopupSearchResults(); + const domSearchClose = this.DOMSearchClose(); + const resultsPath = this.resultsPath; + + const handleResults = function() { + document.getElementById("Loading").style.display="none"; + if (typeof searchData !== 'undefined') { + createResults(resultsPath); + document.getElementById("NoMatches").style.display="none"; + } + + if (idx!=-1) { + searchResults.Search(searchValue); + } else { // no file with search results => force empty search results + searchResults.Search('===='); + } + + if (domPopupSearchResultsWindow.style.display!='block') { + domSearchClose.style.display = 'inline-block'; + let left = getXPos(domSearchBox) + 150; + let top = getYPos(domSearchBox) + 20; + domPopupSearchResultsWindow.style.display = 'block'; + left -= domPopupSearchResults.offsetWidth; + const maxWidth = document.body.clientWidth; + const maxHeight = document.body.clientHeight; + let width = 300; + if (left<10) left=10; + if (width+left+8>maxWidth) width=maxWidth-left-8; + let height = 400; + if (height+top+8>maxHeight) height=maxHeight-top-8; + domPopupSearchResultsWindow.style.top = top + 'px'; + domPopupSearchResultsWindow.style.left = left + 'px'; + domPopupSearchResultsWindow.style.width = width + 'px'; + domPopupSearchResultsWindow.style.height = height + 'px'; + } + } + + if (jsFile) { + loadJS(jsFile, handleResults, this.DOMPopupSearchResultsWindow()); + } else { + handleResults(); + } + + this.lastSearchValue = searchValue; + } + + // -------- Activation Functions + + // Activates or deactivates the search panel, resetting things to + // their default values if necessary. + this.Activate = function(isActive) { + if (isActive || // open it + this.DOMPopupSearchResultsWindow().style.display == 'block' + ) { + this.DOMSearchBox().className = 'MSearchBoxActive'; + this.searchActive = true; + } else if (!isActive) { // directly remove the panel + this.DOMSearchBox().className = 'MSearchBoxInactive'; + this.searchActive = false; + this.lastSearchValue = '' + this.lastResultsPage = ''; + this.DOMSearchField().value = ''; + } + } +} + +// ----------------------------------------------------------------------- + +// The class that handles everything on the search results page. +function SearchResults() { + + function convertToId(search) { + let result = ''; + for (let i=0;i. + this.lastMatchCount = 0; + this.lastKey = 0; + this.repeatOn = false; + + // Toggles the visibility of the passed element ID. + this.FindChildElement = function(id) { + const parentElement = document.getElementById(id); + let element = parentElement.firstChild; + + while (element && element!=parentElement) { + if (element.nodeName.toLowerCase() == 'div' && element.className == 'SRChildren') { + return element; + } + + if (element.nodeName.toLowerCase() == 'div' && element.hasChildNodes()) { + element = element.firstChild; + } else if (element.nextSibling) { + element = element.nextSibling; + } else { + do { + element = element.parentNode; + } + while (element && element!=parentElement && !element.nextSibling); + + if (element && element!=parentElement) { + element = element.nextSibling; + } + } + } + } + + this.Toggle = function(id) { + const element = this.FindChildElement(id); + if (element) { + if (element.style.display == 'block') { + element.style.display = 'none'; + } else { + element.style.display = 'block'; + } + } + } + + // Searches for the passed string. If there is no parameter, + // it takes it from the URL query. + // + // Always returns true, since other documents may try to call it + // and that may or may not be possible. + this.Search = function(search) { + if (!search) { // get search word from URL + search = window.location.search; + search = search.substring(1); // Remove the leading '?' + search = unescape(search); + } + + search = search.replace(/^ +/, ""); // strip leading spaces + search = search.replace(/ +$/, ""); // strip trailing spaces + search = search.toLowerCase(); + search = convertToId(search); + + const resultRows = document.getElementsByTagName("div"); + let matches = 0; + + let i = 0; + while (i < resultRows.length) { + const row = resultRows.item(i); + if (row.className == "SRResult") { + let rowMatchName = row.id.toLowerCase(); + rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_' + + if (search.length<=rowMatchName.length && + rowMatchName.substr(0, search.length)==search) { + row.style.display = 'block'; + matches++; + } else { + row.style.display = 'none'; + } + } + i++; + } + document.getElementById("Searching").style.display='none'; + if (matches == 0) { // no results + document.getElementById("NoMatches").style.display='block'; + } else { // at least one result + document.getElementById("NoMatches").style.display='none'; + } + this.lastMatchCount = matches; + return true; + } + + // return the first item with index index or higher that is visible + this.NavNext = function(index) { + let focusItem; + for (;;) { + const focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') { + break; + } else if (!focusItem) { // last element + break; + } + focusItem=null; + index++; + } + return focusItem; + } + + this.NavPrev = function(index) { + let focusItem; + for (;;) { + const focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') { + break; + } else if (!focusItem) { // last element + break; + } + focusItem=null; + index--; + } + return focusItem; + } + + this.ProcessKeys = function(e) { + if (e.type == "keydown") { + this.repeatOn = false; + this.lastKey = e.keyCode; + } else if (e.type == "keypress") { + if (!this.repeatOn) { + if (this.lastKey) this.repeatOn = true; + return false; // ignore first keypress after keydown + } + } else if (e.type == "keyup") { + this.lastKey = 0; + this.repeatOn = false; + } + return this.lastKey!=0; + } + + this.Nav = function(evt,itemIndex) { + const e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) { // Up + const newIndex = itemIndex-1; + let focusItem = this.NavPrev(newIndex); + if (focusItem) { + let child = this.FindChildElement(focusItem.parentNode.parentNode.id); + if (child && child.style.display == 'block') { // children visible + let n=0; + let tmpElem; + for (;;) { // search for last child + tmpElem = document.getElementById('Item'+newIndex+'_c'+n); + if (tmpElem) { + focusItem = tmpElem; + } else { // found it! + break; + } + n++; + } + } + } + if (focusItem) { + focusItem.focus(); + } else { // return focus to search field + document.getElementById("MSearchField").focus(); + } + } else if (this.lastKey==40) { // Down + const newIndex = itemIndex+1; + let focusItem; + const item = document.getElementById('Item'+itemIndex); + const elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem && elem.style.display == 'block') { // children visible + focusItem = document.getElementById('Item'+itemIndex+'_c0'); + } + if (!focusItem) focusItem = this.NavNext(newIndex); + if (focusItem) focusItem.focus(); + } else if (this.lastKey==39) { // Right + const item = document.getElementById('Item'+itemIndex); + const elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'block'; + } else if (this.lastKey==37) { // Left + const item = document.getElementById('Item'+itemIndex); + const elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'none'; + } else if (this.lastKey==27) { // Escape + e.stopPropagation(); + searchBox.CloseResultsWindow(); + document.getElementById("MSearchField").focus(); + } else if (this.lastKey==13) { // Enter + return true; + } + return false; + } + + this.NavChild = function(evt,itemIndex,childIndex) { + const e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) { // Up + if (childIndex>0) { + const newIndex = childIndex-1; + document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); + } else { // already at first child, jump to parent + document.getElementById('Item'+itemIndex).focus(); + } + } else if (this.lastKey==40) { // Down + const newIndex = childIndex+1; + let elem = document.getElementById('Item'+itemIndex+'_c'+newIndex); + if (!elem) { // last child, jump to parent next parent + elem = this.NavNext(itemIndex+1); + } + if (elem) { + elem.focus(); + } + } else if (this.lastKey==27) { // Escape + e.stopPropagation(); + searchBox.CloseResultsWindow(); + document.getElementById("MSearchField").focus(); + } else if (this.lastKey==13) { // Enter + return true; + } + return false; + } +} + +function createResults(resultsPath) { + + function setKeyActions(elem,action) { + elem.setAttribute('onkeydown',action); + elem.setAttribute('onkeypress',action); + elem.setAttribute('onkeyup',action); + } + + function setClassAttr(elem,attr) { + elem.setAttribute('class',attr); + elem.setAttribute('className',attr); + } + + const results = document.getElementById("SRResults"); + results.innerHTML = ''; + searchData.forEach((elem,index) => { + const id = elem[0]; + const srResult = document.createElement('div'); + srResult.setAttribute('id','SR_'+id); + setClassAttr(srResult,'SRResult'); + const srEntry = document.createElement('div'); + setClassAttr(srEntry,'SREntry'); + const srLink = document.createElement('a'); + srLink.setAttribute('id','Item'+index); + setKeyActions(srLink,'return searchResults.Nav(event,'+index+')'); + setClassAttr(srLink,'SRSymbol'); + srLink.innerHTML = elem[1][0]; + srEntry.appendChild(srLink); + if (elem[1].length==2) { // single result + srLink.setAttribute('href',resultsPath+elem[1][1][0]); + srLink.setAttribute('onclick','searchBox.CloseResultsWindow()'); + if (elem[1][1][1]) { + srLink.setAttribute('target','_parent'); + } else { + srLink.setAttribute('target','_blank'); + } + const srScope = document.createElement('span'); + setClassAttr(srScope,'SRScope'); + srScope.innerHTML = elem[1][1][2]; + srEntry.appendChild(srScope); + } else { // multiple results + srLink.setAttribute('href','javascript:searchResults.Toggle("SR_'+id+'")'); + const srChildren = document.createElement('div'); + setClassAttr(srChildren,'SRChildren'); + for (let c=0; c + + + + + + +HighFive: highfive/bits/string_padding.hpp File Reference + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    + +
    string_padding.hpp File Reference
    +
    +
    +
    #include <H5Tpublic.h>
    +
    +Include dependency graph for string_padding.hpp:
    +
    +
    + + + + + +
    +
    +This graph shows which files directly or indirectly include this file:
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +

    Go to the source code of this file.

    + + + + +

    +Namespaces

    namespace  HighFive
     
    + + + +

    +Enumerations

    enum class  HighFive::StringPadding : std::underlying_type< H5T_str_t >::type { HighFive::NullTerminated = H5T_STR_NULLTERM +, HighFive::NullPadded = H5T_STR_NULLPAD +, HighFive::SpacePadded = H5T_STR_SPACEPAD + }
     
    +
    +
    + + + + diff --git a/string__padding_8hpp.js b/string__padding_8hpp.js new file mode 100644 index 000000000..e5bfbdf4a --- /dev/null +++ b/string__padding_8hpp.js @@ -0,0 +1,8 @@ +var string__padding_8hpp = +[ + [ "StringPadding", "string__padding_8hpp.html#ad9265809238043adba9b446b5c61e953", [ + [ "NullTerminated", "string__padding_8hpp.html#ad9265809238043adba9b446b5c61e953ab90111c75972f26b57ab364724b34921", null ], + [ "NullPadded", "string__padding_8hpp.html#ad9265809238043adba9b446b5c61e953a5b56f95d458ea27c9c62e62260bbef81", null ], + [ "SpacePadded", "string__padding_8hpp.html#ad9265809238043adba9b446b5c61e953a4ca955dd1a77b70b5a0a28512c0e5f24", null ] + ] ] +]; \ No newline at end of file diff --git a/string__padding_8hpp__dep__incl.map b/string__padding_8hpp__dep__incl.map new file mode 100644 index 000000000..230d0048f --- /dev/null +++ b/string__padding_8hpp__dep__incl.map @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/string__padding_8hpp__dep__incl.md5 b/string__padding_8hpp__dep__incl.md5 new file mode 100644 index 000000000..6e3ef95e3 --- /dev/null +++ b/string__padding_8hpp__dep__incl.md5 @@ -0,0 +1 @@ +076c5f2432650e7de66e414f98449fe0 \ No newline at end of file diff --git a/string__padding_8hpp__dep__incl.png b/string__padding_8hpp__dep__incl.png new file mode 100644 index 000000000..5f7c0ed21 Binary files /dev/null and b/string__padding_8hpp__dep__incl.png differ diff --git a/string__padding_8hpp__incl.map b/string__padding_8hpp__incl.map new file mode 100644 index 000000000..dd7a3c5dc --- /dev/null +++ b/string__padding_8hpp__incl.map @@ -0,0 +1,5 @@ + + + + + diff --git a/string__padding_8hpp__incl.md5 b/string__padding_8hpp__incl.md5 new file mode 100644 index 000000000..cd40aa219 --- /dev/null +++ b/string__padding_8hpp__incl.md5 @@ -0,0 +1 @@ +057b64644d4a53bb63c700fe5b734765 \ No newline at end of file diff --git a/string__padding_8hpp__incl.png b/string__padding_8hpp__incl.png new file mode 100644 index 000000000..b94cd51b9 Binary files /dev/null and b/string__padding_8hpp__incl.png differ diff --git a/string__padding_8hpp_source.html b/string__padding_8hpp_source.html new file mode 100644 index 000000000..54484ea2d --- /dev/null +++ b/string__padding_8hpp_source.html @@ -0,0 +1,135 @@ + + + + + + + +HighFive: highfive/bits/string_padding.hpp Source File + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    string_padding.hpp
    +
    +
    +Go to the documentation of this file.
    1#pragma once
    +
    2
    +
    3#include <H5Tpublic.h>
    +
    4
    +
    5namespace HighFive {
    +
    6
    +
    +
    7enum class StringPadding : std::underlying_type<H5T_str_t>::type {
    +
    8 NullTerminated = H5T_STR_NULLTERM,
    +
    9 NullPadded = H5T_STR_NULLPAD,
    +
    10 SpacePadded = H5T_STR_SPACEPAD
    +
    11};
    +
    +
    12
    +
    13
    +
    14}
    +
    Definition H5_definitions.hpp:22
    +
    StringPadding
    Definition string_padding.hpp:7
    + + + +
    +
    + + + + diff --git a/struct_high_five_1_1_compound_type_1_1member__def-members.html b/struct_high_five_1_1_compound_type_1_1member__def-members.html new file mode 100644 index 000000000..5bf063695 --- /dev/null +++ b/struct_high_five_1_1_compound_type_1_1member__def-members.html @@ -0,0 +1,115 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    HighFive::CompoundType::member_def Member List
    +
    +
    + +

    This is the complete list of members for HighFive::CompoundType::member_def, including all inherited members.

    + + + + + +
    base_typeHighFive::CompoundType::member_def
    member_def(std::string t_name, DataType t_base_type, size_t t_offset=0)HighFive::CompoundType::member_definline
    nameHighFive::CompoundType::member_def
    offsetHighFive::CompoundType::member_def
    +
    + + + + diff --git a/struct_high_five_1_1_compound_type_1_1member__def.html b/struct_high_five_1_1_compound_type_1_1member__def.html new file mode 100644 index 000000000..d0fdf543c --- /dev/null +++ b/struct_high_five_1_1_compound_type_1_1member__def.html @@ -0,0 +1,230 @@ + + + + + + + +HighFive: HighFive::CompoundType::member_def Struct Reference + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    + +
    HighFive::CompoundType::member_def Struct Reference
    +
    +
    + +

    Use for defining a sub-type of compound type. + More...

    + +

    #include <H5DataType.hpp>

    +
    +Collaboration diagram for HighFive::CompoundType::member_def:
    +
    +
    Collaboration graph
    + + + + + + + + + +
    [legend]
    + + + + +

    +Public Member Functions

     member_def (std::string t_name, DataType t_base_type, size_t t_offset=0)
     
    + + + + + + + +

    +Public Attributes

    std::string name
     
    DataType base_type
     
    size_t offset
     
    +

    Detailed Description

    +

    Use for defining a sub-type of compound type.

    +

    Constructor & Destructor Documentation

    + +

    ◆ member_def()

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + +
    HighFive::CompoundType::member_def::member_def (std::string t_name,
    DataType t_base_type,
    size_t t_offset = 0 )
    +
    +inline
    +
    + +
    +
    +

    Member Data Documentation

    + +

    ◆ base_type

    + +
    +
    + + + + +
    DataType HighFive::CompoundType::member_def::base_type
    +
    + +
    +
    + +

    ◆ name

    + +
    +
    + + + + +
    std::string HighFive::CompoundType::member_def::name
    +
    + +
    +
    + +

    ◆ offset

    + +
    +
    + + + + +
    size_t HighFive::CompoundType::member_def::offset
    +
    + +
    +
    +
    The documentation for this struct was generated from the following file: +
    +
    + + + + diff --git a/struct_high_five_1_1_compound_type_1_1member__def.js b/struct_high_five_1_1_compound_type_1_1member__def.js new file mode 100644 index 000000000..07d2440ee --- /dev/null +++ b/struct_high_five_1_1_compound_type_1_1member__def.js @@ -0,0 +1,7 @@ +var struct_high_five_1_1_compound_type_1_1member__def = +[ + [ "member_def", "struct_high_five_1_1_compound_type_1_1member__def.html#ac0c5ca4212cf886f498cfe79ff354e60", null ], + [ "base_type", "struct_high_five_1_1_compound_type_1_1member__def.html#ac5ec615c6b321e2bcab9737a944b45ef", null ], + [ "name", "struct_high_five_1_1_compound_type_1_1member__def.html#acb6e9a26ac277ef27b1a37ee2785a309", null ], + [ "offset", "struct_high_five_1_1_compound_type_1_1member__def.html#a7fe8f7fc11e223445033f75b25435612", null ] +]; \ No newline at end of file diff --git a/struct_high_five_1_1_compound_type_1_1member__def__coll__graph.map b/struct_high_five_1_1_compound_type_1_1member__def__coll__graph.map new file mode 100644 index 000000000..9693b07ee --- /dev/null +++ b/struct_high_five_1_1_compound_type_1_1member__def__coll__graph.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/struct_high_five_1_1_compound_type_1_1member__def__coll__graph.md5 b/struct_high_five_1_1_compound_type_1_1member__def__coll__graph.md5 new file mode 100644 index 000000000..d7904d2aa --- /dev/null +++ b/struct_high_five_1_1_compound_type_1_1member__def__coll__graph.md5 @@ -0,0 +1 @@ +d90bc1568950e2078d2bb54be0cde4a9 \ No newline at end of file diff --git a/struct_high_five_1_1_compound_type_1_1member__def__coll__graph.png b/struct_high_five_1_1_compound_type_1_1member__def__coll__graph.png new file mode 100644 index 000000000..543750b75 Binary files /dev/null and b/struct_high_five_1_1_compound_type_1_1member__def__coll__graph.png differ diff --git a/struct_high_five_1_1_creation_order-members.html b/struct_high_five_1_1_creation_order-members.html new file mode 100644 index 000000000..fd4a9e15f --- /dev/null +++ b/struct_high_five_1_1_creation_order-members.html @@ -0,0 +1,114 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    HighFive::CreationOrder Member List
    +
    +
    + +

    This is the complete list of members for HighFive::CreationOrder, including all inherited members.

    + + + + +
    _CreationOrder enum nameHighFive::CreationOrder
    Indexed enum valueHighFive::CreationOrder
    Tracked enum valueHighFive::CreationOrder
    +
    + + + + diff --git a/struct_high_five_1_1_creation_order.html b/struct_high_five_1_1_creation_order.html new file mode 100644 index 000000000..53b1c8bd4 --- /dev/null +++ b/struct_high_five_1_1_creation_order.html @@ -0,0 +1,144 @@ + + + + + + + +HighFive: HighFive::CreationOrder Struct Reference + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    + +
    HighFive::CreationOrder Struct Reference
    +
    +
    + +

    #include <H5PropertyList.hpp>

    + + + + +

    +Public Types

    enum  _CreationOrder { Tracked = H5P_CRT_ORDER_TRACKED +, Indexed = H5P_CRT_ORDER_INDEXED + }
     
    +

    Member Enumeration Documentation

    + +

    ◆ _CreationOrder

    + +
    +
    + + + +
    Enumerator
    Tracked 
    Indexed 
    + +
    +
    +
    The documentation for this struct was generated from the following file: +
    +
    + + + + diff --git a/struct_high_five_1_1_creation_order.js b/struct_high_five_1_1_creation_order.js new file mode 100644 index 000000000..fde76ae02 --- /dev/null +++ b/struct_high_five_1_1_creation_order.js @@ -0,0 +1,7 @@ +var struct_high_five_1_1_creation_order = +[ + [ "_CreationOrder", "struct_high_five_1_1_creation_order.html#aaaeb7940131b73a9385f499e08d2c0df", [ + [ "Tracked", "struct_high_five_1_1_creation_order.html#aaaeb7940131b73a9385f499e08d2c0dfa63264d38eb4b2f184d68299f689e78b8", null ], + [ "Indexed", "struct_high_five_1_1_creation_order.html#aaaeb7940131b73a9385f499e08d2c0dfaaa056e331f82016fbdf6dc751bd97ff6", null ] + ] ] +]; \ No newline at end of file diff --git a/struct_high_five_1_1_enum_type_1_1member__def-members.html b/struct_high_five_1_1_enum_type_1_1member__def-members.html new file mode 100644 index 000000000..ee1bcd6c3 --- /dev/null +++ b/struct_high_five_1_1_enum_type_1_1member__def-members.html @@ -0,0 +1,114 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    HighFive::EnumType< T >::member_def Member List
    +
    +
    + +

    This is the complete list of members for HighFive::EnumType< T >::member_def, including all inherited members.

    + + + + +
    member_def(const std::string &t_name, T t_value)HighFive::EnumType< T >::member_definline
    nameHighFive::EnumType< T >::member_def
    valueHighFive::EnumType< T >::member_def
    +
    + + + + diff --git a/struct_high_five_1_1_enum_type_1_1member__def.html b/struct_high_five_1_1_enum_type_1_1member__def.html new file mode 100644 index 000000000..cd6ea591d --- /dev/null +++ b/struct_high_five_1_1_enum_type_1_1member__def.html @@ -0,0 +1,212 @@ + + + + + + + +HighFive: HighFive::EnumType< T >::member_def Struct Reference + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    + +
    HighFive::EnumType< T >::member_def Struct Reference
    +
    +
    + +

    Use for defining a member of enum type. + More...

    + +

    #include <H5DataType.hpp>

    +
    +Collaboration diagram for HighFive::EnumType< T >::member_def:
    +
    +
    Collaboration graph
    + + + + + +
    [legend]
    + + + + +

    +Public Member Functions

     member_def (const std::string &t_name, T t_value)
     
    + + + + + +

    +Public Attributes

    std::string name
     
    value
     
    +

    Detailed Description

    +
    template<typename T>
    +struct HighFive::EnumType< T >::member_def

    Use for defining a member of enum type.

    +

    Constructor & Destructor Documentation

    + +

    ◆ member_def()

    + +
    +
    +
    +template<typename T >
    + + + + + +
    + + + + + + + + + + + +
    HighFive::EnumType< T >::member_def::member_def (const std::string & t_name,
    T t_value )
    +
    +inline
    +
    + +
    +
    +

    Member Data Documentation

    + +

    ◆ name

    + +
    +
    +
    +template<typename T >
    + + + + +
    std::string HighFive::EnumType< T >::member_def::name
    +
    + +
    +
    + +

    ◆ value

    + +
    +
    +
    +template<typename T >
    + + + + +
    T HighFive::EnumType< T >::member_def::value
    +
    + +
    +
    +
    The documentation for this struct was generated from the following file: +
    +
    + + + + diff --git a/struct_high_five_1_1_enum_type_1_1member__def.js b/struct_high_five_1_1_enum_type_1_1member__def.js new file mode 100644 index 000000000..f86294b8d --- /dev/null +++ b/struct_high_five_1_1_enum_type_1_1member__def.js @@ -0,0 +1,6 @@ +var struct_high_five_1_1_enum_type_1_1member__def = +[ + [ "member_def", "struct_high_five_1_1_enum_type_1_1member__def.html#aa666de7e76f872e2e392442c8e691bb3", null ], + [ "name", "struct_high_five_1_1_enum_type_1_1member__def.html#a826971206409ca4fdcc481765ccf3999", null ], + [ "value", "struct_high_five_1_1_enum_type_1_1member__def.html#a08173394e258379cd6d223d302ff73ce", null ] +]; \ No newline at end of file diff --git a/struct_high_five_1_1_enum_type_1_1member__def__coll__graph.map b/struct_high_five_1_1_enum_type_1_1member__def__coll__graph.map new file mode 100644 index 000000000..2177c068c --- /dev/null +++ b/struct_high_five_1_1_enum_type_1_1member__def__coll__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/struct_high_five_1_1_enum_type_1_1member__def__coll__graph.md5 b/struct_high_five_1_1_enum_type_1_1member__def__coll__graph.md5 new file mode 100644 index 000000000..3389ab919 --- /dev/null +++ b/struct_high_five_1_1_enum_type_1_1member__def__coll__graph.md5 @@ -0,0 +1 @@ +f96272c67cc874652795b451bb702422 \ No newline at end of file diff --git a/struct_high_five_1_1_enum_type_1_1member__def__coll__graph.png b/struct_high_five_1_1_enum_type_1_1member__def__coll__graph.png new file mode 100644 index 000000000..00352ddf9 Binary files /dev/null and b/struct_high_five_1_1_enum_type_1_1member__def__coll__graph.png differ diff --git a/struct_high_five_1_1_h_d_f5_err_mapper-members.html b/struct_high_five_1_1_h_d_f5_err_mapper-members.html new file mode 100644 index 000000000..3bcf6e652 --- /dev/null +++ b/struct_high_five_1_1_h_d_f5_err_mapper-members.html @@ -0,0 +1,113 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    HighFive::HDF5ErrMapper Member List
    +
    +
    + +

    This is the complete list of members for HighFive::HDF5ErrMapper, including all inherited members.

    + + + +
    stackWalk(unsigned n, const H5E_error2_t *err_desc, void *client_data)HighFive::HDF5ErrMapperinlinestatic
    ToException(const std::string &prefix_msg)HighFive::HDF5ErrMapperinlinestatic
    +
    + + + + diff --git a/struct_high_five_1_1_h_d_f5_err_mapper.html b/struct_high_five_1_1_h_d_f5_err_mapper.html new file mode 100644 index 000000000..ac5d21e77 --- /dev/null +++ b/struct_high_five_1_1_h_d_f5_err_mapper.html @@ -0,0 +1,191 @@ + + + + + + + +HighFive: HighFive::HDF5ErrMapper Struct Reference + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    + +
    HighFive::HDF5ErrMapper Struct Reference
    +
    +
    + +

    #include <H5Exception_misc.hpp>

    + + + + + + + + +

    +Static Public Member Functions

    template<typename ExceptionType >
    static herr_t stackWalk (unsigned n, const H5E_error2_t *err_desc, void *client_data)
     
    template<typename ExceptionType >
    static void ToException (const std::string &prefix_msg)
     
    +

    Member Function Documentation

    + +

    ◆ stackWalk()

    + +
    +
    +
    +template<typename ExceptionType >
    + + + + + +
    + + + + + + + + + + + + + + + + +
    static herr_t HighFive::HDF5ErrMapper::stackWalk (unsigned n,
    const H5E_error2_t * err_desc,
    void * client_data )
    +
    +inlinestatic
    +
    + +
    +
    + +

    ◆ ToException()

    + +
    +
    +
    +template<typename ExceptionType >
    + + + + + +
    + + + + + + + +
    static void HighFive::HDF5ErrMapper::ToException (const std::string & prefix_msg)
    +
    +inlinestatic
    +
    + +
    +
    +
    The documentation for this struct was generated from the following file: +
    +
    + + + + diff --git a/struct_high_five_1_1_regular_hyper_slab-members.html b/struct_high_five_1_1_regular_hyper_slab-members.html new file mode 100644 index 000000000..02df65253 --- /dev/null +++ b/struct_high_five_1_1_regular_hyper_slab-members.html @@ -0,0 +1,120 @@ + + + + + + + +HighFive: Member List + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    HighFive::RegularHyperSlab Member List
    +
    +
    + +

    This is the complete list of members for HighFive::RegularHyperSlab, including all inherited members.

    + + + + + + + + + + +
    blockHighFive::RegularHyperSlab
    countHighFive::RegularHyperSlab
    fromHDF5Sizes(std::vector< hsize_t > offset_, std::vector< hsize_t > count_={}, std::vector< hsize_t > stride_={}, std::vector< hsize_t > block_={})HighFive::RegularHyperSlabinlinestatic
    offsetHighFive::RegularHyperSlab
    packedDims() constHighFive::RegularHyperSlabinline
    rank() constHighFive::RegularHyperSlabinline
    RegularHyperSlab()=defaultHighFive::RegularHyperSlab
    RegularHyperSlab(std::vector< size_t > offset_, std::vector< size_t > count_={}, std::vector< size_t > stride_={}, std::vector< size_t > block_={})HighFive::RegularHyperSlabinline
    strideHighFive::RegularHyperSlab
    +
    + + + + diff --git a/struct_high_five_1_1_regular_hyper_slab.html b/struct_high_five_1_1_regular_hyper_slab.html new file mode 100644 index 000000000..871ba9f91 --- /dev/null +++ b/struct_high_five_1_1_regular_hyper_slab.html @@ -0,0 +1,362 @@ + + + + + + + +HighFive: HighFive::RegularHyperSlab Struct Reference + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    HighFive 2.9.0 +
    +
    HighFive - Header-only C++ HDF5 interface
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    + +
    HighFive::RegularHyperSlab Struct Reference
    +
    +
    + +

    #include <H5Slice_traits.hpp>

    + + + + + + + + + + + +

    +Public Member Functions

     RegularHyperSlab ()=default
     
     RegularHyperSlab (std::vector< size_t > offset_, std::vector< size_t > count_={}, std::vector< size_t > stride_={}, std::vector< size_t > block_={})
     
    size_t rank () const
     
    std::vector< size_t > packedDims () const
     Dimensions when all gaps are removed.
     
    + + + +

    +Static Public Member Functions

    static RegularHyperSlab fromHDF5Sizes (std::vector< hsize_t > offset_, std::vector< hsize_t > count_={}, std::vector< hsize_t > stride_={}, std::vector< hsize_t > block_={})
     
    + + + + + + + + + +

    +Public Attributes

    std::vector< hsize_t > offset
     
    std::vector< hsize_t > count
     
    std::vector< hsize_t > stride
     
    std::vector< hsize_t > block
     
    +

    Constructor & Destructor Documentation

    + +

    ◆ RegularHyperSlab() [1/2]

    + +
    +
    + + + + + +
    + + + + + + + +
    HighFive::RegularHyperSlab::RegularHyperSlab ()
    +
    +default
    +
    + +
    +
    + +

    ◆ RegularHyperSlab() [2/2]

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + +
    HighFive::RegularHyperSlab::RegularHyperSlab (std::vector< size_t > offset_,
    std::vector< size_t > count_ = {},
    std::vector< size_t > stride_ = {},
    std::vector< size_t > block_ = {} )
    +
    +inline
    +
    + +
    +
    +

    Member Function Documentation

    + +

    ◆ fromHDF5Sizes()

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + +
    static RegularHyperSlab HighFive::RegularHyperSlab::fromHDF5Sizes (std::vector< hsize_t > offset_,
    std::vector< hsize_t > count_ = {},
    std::vector< hsize_t > stride_ = {},
    std::vector< hsize_t > block_ = {} )
    +
    +inlinestatic
    +
    + +
    +
    + +

    ◆ packedDims()

    + +
    +
    + + + + + +
    + + + + + + + +
    std::vector< size_t > HighFive::RegularHyperSlab::packedDims () const
    +
    +inline
    +
    + +

    Dimensions when all gaps are removed.

    + +
    +
    + +

    ◆ rank()

    + +
    +
    + + + + + +
    + + + + + + + +
    size_t HighFive::RegularHyperSlab::rank () const
    +
    +inline
    +
    + +
    +
    +

    Member Data Documentation

    + +

    ◆ block

    + +
    +
    + + + + +
    std::vector<hsize_t> HighFive::RegularHyperSlab::block
    +
    + +
    +
    + +

    ◆ count

    + +
    +
    + + + + +
    std::vector<hsize_t> HighFive::RegularHyperSlab::count
    +
    + +
    +
    + +

    ◆ offset

    + +
    +
    + + + + +
    std::vector<hsize_t> HighFive::RegularHyperSlab::offset
    +
    + +
    +
    + +

    ◆ stride

    + +
    +
    + + + + +
    std::vector<hsize_t> HighFive::RegularHyperSlab::stride
    +
    + +
    +
    +
    The documentation for this struct was generated from the following file: +
    +
    + + + + diff --git a/struct_high_five_1_1_regular_hyper_slab.js b/struct_high_five_1_1_regular_hyper_slab.js new file mode 100644 index 000000000..59edeb87e --- /dev/null +++ b/struct_high_five_1_1_regular_hyper_slab.js @@ -0,0 +1,11 @@ +var struct_high_five_1_1_regular_hyper_slab = +[ + [ "RegularHyperSlab", "struct_high_five_1_1_regular_hyper_slab.html#ac55d435aad378ad692b811f65f7f8371", null ], + [ "RegularHyperSlab", "struct_high_five_1_1_regular_hyper_slab.html#aa83c2e83ada980b7a6b07f7f9a20a076", null ], + [ "packedDims", "struct_high_five_1_1_regular_hyper_slab.html#a56c042691b496389564d108c64a9d872", null ], + [ "rank", "struct_high_five_1_1_regular_hyper_slab.html#a29438e89e9000502894ba22fa94e107c", null ], + [ "block", "struct_high_five_1_1_regular_hyper_slab.html#a3cdc12f6910add0f049e672d115d3097", null ], + [ "count", "struct_high_five_1_1_regular_hyper_slab.html#ad1e6e23554a49dfabf633fd7a928cbb8", null ], + [ "offset", "struct_high_five_1_1_regular_hyper_slab.html#a2c7170af12dae359fb3eaffe6950d516", null ], + [ "stride", "struct_high_five_1_1_regular_hyper_slab.html#afee214170da6b05c0b08727664c599e6", null ] +]; \ No newline at end of file diff --git a/sync_off.png b/sync_off.png new file mode 100644 index 000000000..3b443fc62 Binary files /dev/null and b/sync_off.png differ diff --git a/sync_on.png b/sync_on.png new file mode 100644 index 000000000..e08320fb6 Binary files /dev/null and b/sync_on.png differ diff --git a/tab_a.png b/tab_a.png new file mode 100644 index 000000000..3b725c41c Binary files /dev/null and b/tab_a.png differ diff --git a/tab_ad.png b/tab_ad.png new file mode 100644 index 000000000..e34850acf Binary files /dev/null and b/tab_ad.png differ diff --git a/tab_b.png b/tab_b.png new file mode 100644 index 000000000..e2b4a8638 Binary files /dev/null and b/tab_b.png differ diff --git a/tab_bd.png b/tab_bd.png new file mode 100644 index 000000000..91c252498 Binary files /dev/null and b/tab_bd.png differ diff --git a/tab_h.png b/tab_h.png new file mode 100644 index 000000000..fd5cb7054 Binary files /dev/null and b/tab_h.png differ diff --git a/tab_hd.png b/tab_hd.png new file mode 100644 index 000000000..2489273d4 Binary files /dev/null and b/tab_hd.png differ diff --git a/tab_s.png b/tab_s.png new file mode 100644 index 000000000..ab478c95b Binary files /dev/null and b/tab_s.png differ diff --git a/tab_sd.png b/tab_sd.png new file mode 100644 index 000000000..757a565ce Binary files /dev/null and b/tab_sd.png differ diff --git a/tabs.css b/tabs.css new file mode 100644 index 000000000..fe4854aa5 --- /dev/null +++ b/tabs.css @@ -0,0 +1 @@ +.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.main-menu-btn{position:relative;display:inline-block;width:36px;height:36px;text-indent:36px;margin-left:8px;white-space:nowrap;overflow:hidden;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0)}.main-menu-btn-icon,.main-menu-btn-icon:before,.main-menu-btn-icon:after{position:absolute;top:50%;left:2px;height:2px;width:24px;background:var(--nav-menu-button-color);-webkit-transition:all .25s;transition:all .25s}.main-menu-btn-icon:before{content:'';top:-7px;left:0}.main-menu-btn-icon:after{content:'';top:7px;left:0}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon{height:0}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before{top:0;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after{top:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}#main-menu-state{position:absolute;width:1px;height:1px;margin:-1px;border:0;padding:0;overflow:hidden;clip:rect(1px,1px,1px,1px)}#main-menu-state:not(:checked) ~ #main-menu{display:none}#main-menu-state:checked ~ #main-menu{display:block}@media(min-width:768px){.main-menu-btn{position:absolute;top:-99999px}#main-menu-state:not(:checked) ~ #main-menu{display:block}}.sm-dox{background-image:var(--nav-gradient-image)}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:var(--font-family-nav);font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:var(--nav-text-normal-shadow);color:var(--nav-text-normal-color);outline:0}.sm-dox a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:var(--nav-text-hover-shadow)}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace !important;text-align:center;text-shadow:none;background:var(--nav-menu-toggle-color);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a span.sub-arrow:before{display:block;content:'+'}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:var(--nav-menu-background-color)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:var(--nav-menu-background-color);background-image:none}.sm-dox ul a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:var(--nav-gradient-image);line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:var(--nav-text-normal-color) transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:var(--nav-separator-image);background-repeat:no-repeat;background-position:right;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.sm-dox a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:var(--nav-text-hover-shadow)}.sm-dox a:hover span.sub-arrow{border-color:var(--nav-text-hover-color) transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent var(--nav-menu-background-color) transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:var(--nav-menu-background-color);-moz-border-radius:5px !important;-webkit-border-radius:5px;border-radius:5px !important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent var(--nav-menu-foreground-color);border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:var(--nav-menu-foreground-color);background-image:none;border:0 !important}.sm-dox ul a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:var(--nav-text-hover-shadow)}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent var(--nav-text-hover-color)}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:var(--nav-menu-background-color);height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent var(--nav-menu-foreground-color) transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:var(--nav-menu-foreground-color) transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px !important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:var(--nav-gradient-image)}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:var(--nav-menu-background-color)}} \ No newline at end of file