TRIQS/h5 1.3.0
C++ interface to HDF5
Loading...
Searching...
No Matches
pair.hpp
Go to the documentation of this file.
1// Copyright (c) 2019-2024 Simons Foundation
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0.txt
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14//
15// Authors: Thomas Hahn, Olivier Parcollet, Nils Wentzell
16
22#ifndef LIBH5_STL_PAIR_HPP
23#define LIBH5_STL_PAIR_HPP
24
25#include "../format.hpp"
26#include "../group.hpp"
27#include "./string.hpp"
28
29#include <string>
30#include <utility>
31
32namespace h5 {
33
40 template <typename T1, typename T2>
41 struct hdf5_format_impl<std::pair<T1, T2>> {
42 static std::string invoke() { return "PythonTupleWrap"; }
43 };
44
56 template <typename T1, typename T2>
57 void h5_write(group g, std::string const &name, std::pair<T1, T2> const &p) {
58 auto gr = g.create_group(name);
59 write_hdf5_format(gr, p);
60 h5_write(gr, "0", p.first);
61 h5_write(gr, "1", p.second);
62 }
63
75 template <typename T1, typename T2>
76 void h5_read(group g, std::string const &name, std::pair<T1, T2> &p) {
77 auto gr = g.open_group(name);
78 if (gr.get_all_subgroup_dataset_names().size() != 2)
79 throw std::runtime_error("Error in h5::h5_read: Reading a std::pair from a group with more/less than 2 subgroups/datasets is not allowed");
80 h5_read(gr, "0", p.first);
81 h5_read(gr, "1", p.second);
82 }
83
86} // namespace h5
87
88#endif // LIBH5_STL_PAIR_HPP
A handle to an HDF5 group.
Definition group.hpp:44
group create_group(std::string const &key, bool delete_if_exists=true) const
Create a subgroup with the given key in the group.
Definition group.cpp:109
group open_group(std::string const &key) const
Open a subgroup with the given key in the group.
Definition group.cpp:96
Provides utilities for reading and writing hdf5_format tags.
Provides a handle to an HDF5 group and various methods to simplify the creation/opening of subgroups,...
void write_hdf5_format(object obj, T const &)
Write an hdf5_format tag for type T to an HDF5 attribute with the name 'Format' using template argume...
Definition format.hpp:113
T h5_read(group g, std::string const &key)
Generic implementation for reading from an HDF5 dataset/subgroup.
Definition generic.hpp:51
void h5_write(group g, std::string const &name, T const &x) H5_REQUIRES(std
Write a scalar to an HDF5 dataset.
Definition scalar.hpp:70
Provides functions to read/write std::string, char* and h5::char_buf objects from/to HDF5.
Default type trait to get the hdf5_format tag of type T by calling its static member function T::hdf5...
Definition string.hpp:34