TRIQS/h5 1.3.0
C++ interface to HDF5
Loading...
Searching...
No Matches
map.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, chuffa
16
22#ifndef LIBH5_STL_MAP_HPP
23#define LIBH5_STL_MAP_HPP
24
25#include "../format.hpp"
26#include "../group.hpp"
27#include "./string.hpp"
28
29#include <map>
30#include <string>
31#include <type_traits>
32#include <utility>
33
34namespace h5 {
35
42 template <typename keyT, typename valueT>
43 struct hdf5_format_impl<std::map<keyT, valueT>> {
44 static std::string invoke() { return "Dict"; }
45 };
46
56 template <typename keyT, typename valueT>
57 void h5_write(group g, std::string const &name, std::map<keyT, valueT> const &m) {
58 // create the subgroup and write the hdf5_format tag
59 auto gr = g.create_group(name);
60 write_hdf5_format(gr, m);
61
62 // write element by element
63 if constexpr (std::is_same_v<keyT, std::string>) {
64 // if key is a string, use it for the dataset name
65 for (auto const &[key, val] : m) h5_write(gr, key, val);
66 } else {
67 // otherwise, create a subgroup for each key-value pair
68 int idx = 0;
69 for (auto const &[key, val] : m) {
70 auto element_gr = gr.create_group(std::to_string(idx));
71 h5_write(element_gr, "key", key);
72 h5_write(element_gr, "val", val);
73 ++idx;
74 }
75 }
76 }
77
87 template <typename keyT, typename valueT>
88 void h5_read(group g, std::string const &name, std::map<keyT, valueT> &m) {
89 // open the subgroup and clear the map
90 auto gr = g.open_group(name);
91 m.clear();
92
93 // loop over all subgroups and datasets in the current group
94 for (auto const &x : gr.get_all_subgroup_dataset_names()) {
95 valueT val;
96 if constexpr (std::is_same_v<keyT, std::string>) {
97 // if key is a string, read from the dataset with the same name
98 h5_read(gr, x, val);
99 m.emplace(x, std::move(val));
100 } else {
101 // otherwise, read from the subgroup
102 auto element_gr = gr.open_group(x);
103 keyT key;
104 h5_read(element_gr, "key", key);
105 h5_read(element_gr, "val", val);
106 m.emplace(std::move(key), std::move(val));
107 }
108 }
109 }
110
113} // namespace h5
114
115#endif // LIBH5_STL_MAP_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