OGS
XdmfHdfWriter.cpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) OpenGeoSys Community (opengeosys.org)
2// SPDX-License-Identifier: BSD-3-Clause
3
4#include "XdmfHdfWriter.h"
5
6#include <algorithm>
7#include <functional>
8#include <range/v3/algorithm/contains.hpp>
9
10#include "BaseLib/Algorithm.h"
11#include "InfoLib/GitInfo.h"
12#include "partition.h"
13#include "transformData.h"
14#include "writeXdmf.h"
15
16using namespace std::literals;
17
18namespace MeshLib::IO
19{
21{
22 std::vector<double> flattened_geometry_values;
23 std::vector<std::size_t> flattened_topology_values;
25};
26struct XdmfHdfMesh final
27{
30 std::vector<XdmfHdfData> attributes;
31 std::string name;
32 // TransformedMeshData may be large, ensure it is never copied
33 std::unique_ptr<TransformedMeshData> transformed_data;
34};
35
45
46template <typename Data>
47std::function<bool(Data)> isVariableAttribute(
48 std::set<std::string> const& output_variable_names)
49{
50 if (output_variable_names.empty())
51 {
52 return [](Data const& data) -> bool
53 { return !ranges::contains(constant_output_names, data.name); };
54 }
55 return [&output_variable_names](Data const& data) -> bool
56 {
57 if (ranges::contains(constant_output_names, data.name))
58 {
59 return false;
60 }
61 return output_variable_names.contains(data.name);
62 };
63}
64
66 std::vector<std::reference_wrapper<const MeshLib::Mesh>> const& meshes,
67 std::filesystem::path const& filepath, unsigned long long const time_step,
68 double const initial_time,
69 std::set<std::string> const& output_variable_names,
70 bool const use_compression, unsigned int const n_files,
71 unsigned int const chunk_size_bytes)
72{
73 // ogs meshes to vector of Xdmf/HDF meshes (we keep Xdmf and HDF together
74 // because XDMF depends on HDF) to meta
75
76 // if no output name is specified, all data will be assumened to be
77 // variable over the timesteps. The xdmfhdfwriter is an alternative to
78 // other writers, that do not consider the constantness of data Callers
79 // of xdmfwriter (e.g. ogs tools) do not provide these information yet
80 // and indicate with empty list
81
82 // Transform the data to be written into a format conforming with the rules
83 // of xdmf topology and geometry
84 auto const transform_ogs_mesh_data_to_xdmf_conforming_data =
85 [&n_files, &chunk_size_bytes](auto const& mesh)
86 {
87 auto flattened_geometry_values = transformToXDMFGeometry(mesh);
88 // actually this line is only needed to calculate the offset
89 XdmfHdfData const& geometry = transformGeometry(
90 mesh, flattened_geometry_values.data(), n_files, chunk_size_bytes);
91 auto const [flattened_topology_values, parent_data_type] =
92 transformToXDMFTopology(mesh, geometry.hdf.offsets[0]);
93 return std::make_unique<TransformedMeshData>(TransformedMeshData{
94 std::move(flattened_geometry_values),
95 std::move(flattened_topology_values), parent_data_type});
96 };
97
98 // create metadata for transformed data and original ogs mesh data
99 auto const transform_to_meta_data =
100 [&output_variable_names,
101 &transform_ogs_mesh_data_to_xdmf_conforming_data, &n_files,
102 &chunk_size_bytes](auto const& mesh)
103 {
104 // important: transformed data must survive and be unique, raw pointer
105 // to its memory!
106 std::unique_ptr<TransformedMeshData> xdmf_conforming_data =
107 transform_ogs_mesh_data_to_xdmf_conforming_data(mesh);
108 auto const geometry = transformGeometry(
109 mesh, xdmf_conforming_data->flattened_geometry_values.data(),
110 n_files, chunk_size_bytes);
111 auto const topology = transformTopology(
112 xdmf_conforming_data->flattened_topology_values,
113 xdmf_conforming_data->parent_data_type, n_files, chunk_size_bytes);
114 auto const attributes = transformAttributes(mesh, output_variable_names,
115 n_files, chunk_size_bytes);
116 return XdmfHdfMesh{std::move(geometry), std::move(topology),
117 std::move(attributes), mesh.get().getName(),
118 std::move(xdmf_conforming_data)};
119 };
120 auto isVariableHdfAttribute =
121 isVariableAttribute<HdfData>(output_variable_names);
122
123 // extract meta data relevant for HDFWriter
124 auto const transform_metamesh_to_hdf =
125 [&isVariableHdfAttribute](auto const& metamesh)
126 {
127 // topology and geometry can be treated as any other attribute
128 std::vector<HdfData> hdf_data_attributes = {metamesh.geometry.hdf,
129 metamesh.topology.hdf};
130
131 hdf_data_attributes.reserve(hdf_data_attributes.size() +
132 metamesh.attributes.size());
133 std::transform(metamesh.attributes.begin(), metamesh.attributes.end(),
134 std::back_inserter(hdf_data_attributes),
135 [](XdmfHdfData att) -> HdfData { return att.hdf; });
136
137 HDFAttributes constant_attributes;
138 std::copy_if(hdf_data_attributes.begin(), hdf_data_attributes.end(),
139 back_inserter(constant_attributes),
140 std::not_fn(isVariableHdfAttribute));
141 HDFAttributes variable_attributes;
142 std::copy_if(hdf_data_attributes.begin(), hdf_data_attributes.end(),
143 back_inserter(variable_attributes),
144 isVariableHdfAttribute);
145
146 return MeshHdfData{
147 .constant_attributes = std::move(constant_attributes),
148 .variable_attributes = std::move(variable_attributes),
149 .name = std::move(metamesh.name)};
150 };
151
152 // --------------- XDMF + HDF ---------------------
153 std::vector<XdmfHdfMesh> xdmf_hdf_meshes;
154 xdmf_hdf_meshes.reserve(meshes.size());
155 std::transform(meshes.begin(), meshes.end(),
156 std::back_inserter(xdmf_hdf_meshes), transform_to_meta_data);
157
158 std::vector<MeshHdfData> hdf_meshes;
159 hdf_meshes.reserve(xdmf_hdf_meshes.size());
160 std::transform(xdmf_hdf_meshes.begin(), xdmf_hdf_meshes.end(),
161 std::back_inserter(hdf_meshes), transform_metamesh_to_hdf);
162
163 // --------------- HDF ---------------------
164 std::filesystem::path const hdf_filepath =
165 filepath.parent_path() / (filepath.stem().string() + ".h5");
166
167 auto const is_file_manager = isFileManager();
168 _hdf_writer = std::make_unique<HdfWriter>(
169 std::move(hdf_meshes), time_step, initial_time, hdf_filepath,
170 use_compression, is_file_manager, n_files);
171
172 // --------------- XDMF ---------------------
173 // The light data is only written by just one process
174 if (!is_file_manager)
175 {
176 return;
177 }
178
179 auto isVariableXdmfAttribute =
180 isVariableAttribute<XdmfData>(output_variable_names);
181 // xdmf section
182 // extract meta data relevant for XDMFWriter
183 auto const transform_metamesh_to_xdmf =
184 [&isVariableXdmfAttribute, &filepath, &hdf_filepath,
185 &initial_time](XdmfHdfMesh& metamesh)
186 {
187 std::string const xdmf_name = metamesh.name;
188 std::filesystem::path const xdmf_filepath =
189 filepath.parent_path() /
190 (filepath.stem().string() + "_" + xdmf_name + ".xdmf");
191
192 std::vector<XdmfData> xdmf_attributes;
193 std::transform(metamesh.attributes.begin(), metamesh.attributes.end(),
194 std::back_inserter(xdmf_attributes),
195 [](XdmfHdfData const& att) -> XdmfData
196 { return att.xdmf; });
197
198 std::vector<XdmfData> xdmf_variable_attributes;
199 std::copy_if(xdmf_attributes.begin(), xdmf_attributes.end(),
200 back_inserter(xdmf_variable_attributes),
201 isVariableXdmfAttribute);
202 std::vector<XdmfData> xdmf_constant_attributes;
203 std::copy_if(xdmf_attributes.begin(), xdmf_attributes.end(),
204 back_inserter(xdmf_constant_attributes),
205 std::not_fn(isVariableXdmfAttribute));
206
207 auto const xdmf_writer_fn =
208 write_xdmf(metamesh.geometry.xdmf, metamesh.topology.xdmf,
209 xdmf_constant_attributes, xdmf_variable_attributes,
210 hdf_filepath.filename().string(),
212 auto xdmf_writer = std::make_unique<XdmfWriter>(xdmf_filepath.string(),
213 xdmf_writer_fn);
214 xdmf_writer->addTimeStep(initial_time);
215 return xdmf_writer;
216 };
217
218 std::transform(xdmf_hdf_meshes.begin(), xdmf_hdf_meshes.end(),
219 std::back_inserter(_xdmf_writer),
220 transform_metamesh_to_xdmf);
221}
222
223void XdmfHdfWriter::writeStep(double const time)
224{
225 // ToDo (tm) time_step will be used for simulation continuation (restart)
226 _hdf_writer->writeStep(time);
227 // The light data is only written by just one process
228 if (isFileManager())
229 {
230 for (auto const& xdmf_writer : _xdmf_writer)
231 {
232 xdmf_writer->addTimeStep(time);
233 }
234 }
235}
236
237} // namespace MeshLib::IO
std::unique_ptr< HdfWriter > _hdf_writer
std::vector< std::unique_ptr< XdmfWriter > > _xdmf_writer
void writeStep(double time)
Adds data for either lazy (xdmf) or eager (hdf) writing algorithm.
XdmfHdfWriter(std::vector< std::reference_wrapper< const MeshLib::Mesh > > const &meshes, std::filesystem::path const &filepath, unsigned long long time_step, double initial_time, std::set< std::string > const &output_variable_names, bool use_compression, unsigned int n_files, unsigned int chunk_size_bytes)
Write xdmf and h5 file with geometry and topology data.
GITINFOLIB_EXPORT const std::string ogs_version
std::vector< HdfData > HDFAttributes
Definition HdfWriter.h:16
std::pair< std::vector< std::size_t >, ParentDataType > transformToXDMFTopology(MeshLib::Mesh const &mesh, std::size_t const offset)
Copies all cells into a new vector. Contiguous data used for writing. The topology is specific to xdm...
std::vector< double > transformToXDMFGeometry(MeshLib::Mesh const &mesh)
Copies all node points into a new vector. Contiguous data used for writing. Conform with XDMF standar...
std::function< std::string(std::vector< double >)> write_xdmf(XdmfData const &geometry, XdmfData const &topology, std::vector< XdmfData > const &constant_attributes, std::vector< XdmfData > const &variable_attributes, std::string const &h5filename, std::string const &ogs_version, std::string const &mesh_name)
Generator function that creates a function capturing the spatial data of a mesh Temporal data can lat...
XdmfHdfData transformGeometry(MeshLib::Mesh const &mesh, double const *data_ptr, unsigned int const n_files, unsigned int const chunk_size_bytes)
Create meta data for geometry used for hdf5 and xdmf.
std::function< bool(Data)> isVariableAttribute(std::set< std::string > const &output_variable_names)
std::vector< XdmfHdfData > transformAttributes(MeshLib::Mesh const &mesh, std::set< std::string > const &output_variable_names, unsigned int const n_files, unsigned int const chunk_size_bytes)
Create meta data for attributes used for hdf5 and xdmf.
XdmfHdfData transformTopology(std::vector< std::size_t > const &values, ParentDataType const parent_data_type, unsigned int const n_files, unsigned int const chunk_size_bytes)
Create meta data for topology used for HDF5 and XDMF.
constexpr std::array constant_output_names
bool isFileManager()
constexpr std::string_view getBulkIDString(MeshItemType mesh_item_type)
std::vector< Hdf5DimType > offsets
Definition HdfData.h:25
std::vector< std::size_t > flattened_topology_values
std::vector< double > flattened_geometry_values
std::vector< XdmfHdfData > attributes
std::unique_ptr< TransformedMeshData > transformed_data