HighFive 3.0.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 details {
29// converter function for hsize_t -> size_t when hsize_t != size_t
30template <typename Size>
31inline std::vector<std::size_t> to_vector_size_t(const std::vector<Size>& vec) {
32 static_assert(std::is_same<Size, std::size_t>::value == false,
33 " hsize_t != size_t mandatory here");
34 std::vector<size_t> res(vec.size());
35 std::transform(vec.cbegin(), vec.cend(), res.begin(), [](Size e) {
36 return static_cast<size_t>(e);
37 });
38 return res;
39}
40
41// converter function for hsize_t -> size_t when size_t == hsize_t
42inline std::vector<std::size_t> to_vector_size_t(const std::vector<std::size_t>& vec) {
43 return vec;
44}
45
46// read name from a H5 object using the specified function
47template <typename T>
48inline std::string get_name(T fct) {
49 const size_t maxLength = 255;
50 char buffer[maxLength + 1];
51 ssize_t retcode = fct(buffer, static_cast<hsize_t>(maxLength) + 1);
52 if (retcode < 0) {
53 HDF5ErrMapper::ToException<GroupException>("Error accessing object name");
54 }
55 const size_t length = static_cast<std::size_t>(retcode);
56 if (length <= maxLength) {
57 return std::string(buffer, length);
58 }
59 std::vector<char> bigBuffer(length + 1, 0);
60 fct(bigBuffer.data(), length + 1);
61 return std::string(bigBuffer.data(), length);
62}
63
64template <class Container>
65inline std::string format_vector(const Container& container) {
66 auto sout = std::stringstream{};
67
68 sout << "[ ";
69 for (size_t i = 0; i < container.size(); ++i) {
70 sout << container[i] << (i == container.size() - 1 ? "" : ", ");
71 }
72 sout << "]";
73
74 return sout.str();
75}
76
77} // namespace details
78} // namespace HighFive
Definition assert_compatible_spaces.hpp:15