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 #ifndef H5FILE_MISC_HPP
10 #define H5FILE_MISC_HPP
11 
12 #include <string>
13 #include "../H5Exception.hpp"
14 #include "../H5File.hpp"
15 #include "../H5Utility.hpp"
16 
17 #include <H5Fpublic.h>
18 
19 namespace HighFive {
20 
21 namespace {
22 
23 // libhdf5 uses a preprocessor trick on their oflags
24 // we can not declare them constant without a mapper
25 inline int convert_open_flag(int openFlags) {
26  int 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 
41 inline File::File(const std::string& filename, int openFlags,
42  const Properties& fileAccessProps)
43  : _filename(filename) {
44 
45  openFlags = convert_open_flag(openFlags);
46 
47  int createMode = openFlags & (H5F_ACC_TRUNC | H5F_ACC_EXCL);
48  int openMode = openFlags & (H5F_ACC_RDWR | H5F_ACC_RDONLY);
49  bool mustCreate = createMode > 0;
50  bool openOrCreate = (openFlags & H5F_ACC_CREAT) > 0;
51 
52  // open is default. It's skipped only if flags require creation
53  // If open fails it will try create() if H5F_ACC_CREAT is set
54  if (!mustCreate) {
55  // Silence open errors if create is allowed
56  std::unique_ptr<SilenceHDF5> silencer;
57  if (openOrCreate) silencer.reset(new SilenceHDF5());
58 
59  _hid = H5Fopen(_filename.c_str(), openMode, fileAccessProps.getId());
60 
61  if (isValid()) return; // Done
62 
63  if (openOrCreate) {
64  // Will attempt to create ensuring wont clobber any file
65  createMode = H5F_ACC_EXCL;
66  } else {
67  HDF5ErrMapper::ToException<FileException>(
68  std::string("Unable to open file " + _filename));
69  }
70  }
71 
72  if ((_hid = H5Fcreate(_filename.c_str(), createMode, H5P_DEFAULT,
73  fileAccessProps.getId())) < 0) {
74  HDF5ErrMapper::ToException<FileException>(
75  std::string("Unable to create file " + _filename));
76  }
77 }
78 
79 inline const std::string& File::getName() const {
80  return _filename;
81 }
82 
83 inline void File::flush() {
84  if (H5Fflush(_hid, H5F_SCOPE_GLOBAL) < 0) {
85  HDF5ErrMapper::ToException<FileException>(
86  std::string("Unable to flush file " + _filename));
87  }
88 }
89 } // namespace HighFive
90 
91 #endif // H5FILE_MISC_HPP
HighFive::File::getName
const std::string & getName() const
Return the name of the file.
Definition: H5File_misc.hpp:79
HighFive::File::ReadOnly
static const int ReadOnly
Open flag: Read only access.
Definition: H5File.hpp:30
HighFive::File::File
File(const std::string &filename, int openFlags=ReadOnly, const Properties &fileAccessProps=FileDriver())
File.
Definition: H5File_misc.hpp:41
HighFive::SilenceHDF5
Utility class to disable HDF5 stack printing inside a scope.
Definition: H5Utility.hpp:18
HighFive::File::Create
static const int Create
Open flag: Create non existing file.
Definition: H5File.hpp:40
scripts.normalize_multiple.filename
filename
Definition: normalize_multiple.py:60
HighFive::Properties::getId
hid_t getId() const
Definition: H5PropertyList.hpp:39
HighFive::File::Excl
static const int Excl
Open flag: Open will fail if file already exist.
Definition: H5File.hpp:36
HighFive::Object::_hid
hid_t _hid
Definition: H5Object.hpp:48
HighFive::Object::isValid
bool isValid() const
isValid
Definition: H5Object_misc.hpp:47
HighFive::File::flush
void flush()
flush
Definition: H5File_misc.hpp:83
HighFive::Properties
Generic HDF5 property List.
Definition: H5PropertyList.hpp:21
HighFive::File::ReadWrite
static const int ReadWrite
Open flag: Read Write access.
Definition: H5File.hpp:32
HighFive::File::Truncate
static const int Truncate
Open flag: Truncate a file if already existing.
Definition: H5File.hpp:34
HighFive
Definition: H5Annotate_traits.hpp:14
HighFive::File::_filename
std::string _filename
Definition: H5File.hpp:69


lvr2
Author(s): Thomas Wiemann , Sebastian Pütz , Alexander Mock , Lars Kiesow , Lukas Kalbertodt , Tristan Igelbrink , Johan M. von Behren , Dominik Feldschnieders , Alexander Löhr
autogenerated on Wed Mar 2 2022 00:37:23