IODA
HH-variables.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 2017-2020 Ryan Honeyager (ryan@honeyager.info)
4  * (C) Copyright 2020-2021 UCAR
5  *
6  * This software is licensed under the terms of the Apache Licence Version 2.0
7  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
8  */
9 /*! \addtogroup ioda_internals_engines_hh
10  *
11  * @{
12  * \file HH-variables.h
13  * \brief HDF5 engine implementation of Variable.
14  */
15 
16 #include <list>
17 #include <memory>
18 #include <string>
19 #include <tuple>
20 #include <utility>
21 #include <vector>
22 
23 #include "./HH-attributes.h"
24 #include "./Handles.h"
25 #include "ioda/Exception.h"
26 #include "ioda/Group.h"
28 #include "ioda/Types/Type.h"
29 #include "ioda/defs.h"
30 
31 namespace ioda {
32 namespace detail {
33 namespace Engines {
34 namespace HH {
35 class HH_HasVariables;
36 
37 /// \brief This is the implementation of Variables using HDF5.
38 /// \ingroup ioda_internals_engines_hh
40  public std::enable_shared_from_this<HH_Variable> {
42  std::weak_ptr<const HH_HasVariables> container_;
43 
44 public:
46  HH_Variable(HH_hid_t var, std::shared_ptr<const HH_HasVariables> container);
47  virtual ~HH_Variable();
48 
49  HH_hid_t get() const;
50  bool isVariable() const;
51 
52  /// @brief Get HDF5-internal type.
53  /// @return Handle to HDF5-internal type.
54  HH_hid_t internalType() const;
55  detail::Type_Provider* getTypeProvider() const final;
56 
57  /// @brief Get HDF5-internal type, wrapped as a ioda::Type object.
58  /// @details This is used to pass information from
59  /// @return The wrapped type.
60  Type getType() const final;
61 
62  /// General function to check type matching. Approximate match in the HDF5 context
63  /// to account for different floating point and string types across systems.
64  bool isA(Type lhs) const final;
65 
66  /// Convenience function to check an dataset's type.
67  /// \ttype DataType is the typename.
68  /// \returns True if the type matches
69  /// \returns False (0) if the type does not match
70  /// \returns <0 if an error occurred.
71  template <class DataType>
72  bool isA() const {
73  auto ttype = Types::GetType<DataType>(getTypeProvider());
74  return isA(ttype);
75  }
76 
77  /// Convenience function to check an attribute's type.
78  /// \param ttype is the type to test against.
79  /// \returns True if the type matches
80  /// \returns False if the type does not match
81  bool isExactlyA(HH_hid_t ttype) const;
82 
83  /// Convenience function to check an dataset's type.
84  /// \returns True if the type matches
85  /// \returns False (0) if the type does not match
86  /// \returns <0 if an error occurred.
87  template <class DataType>
88  bool isExactlyA() const {
89  auto ttype = Types::GetType<DataType>(getTypeProvider());
90  HH_hid_t otype = internalType();
91  auto ret = H5Tequal(ttype(), otype());
92  if (ret < 0) throw Exception("Cannot check type equality. General failure.", ioda_Here());
93  return (ret > 0) ? true : false;
94  }
95 
96  HH_hid_t space() const;
97  Dimensions getDimensions() const final;
98 
99  static bool hasFillValue(HH_hid_t create_plist);
100  bool hasFillValue() const final;
101  FillValueData_t getFillValue(HH_hid_t create_plist) const;
102  FillValueData_t getFillValue() const final;
103  static std::vector<Dimensions_t> getChunkSizes(HH_hid_t create_plist, const Dimensions& dims);
104  std::vector<Dimensions_t> getChunkSizes() const final;
105  static std::pair<bool, int> getGZIPCompression(HH_hid_t create_plist);
106  std::pair<bool, int> getGZIPCompression() const final;
107  static std::tuple<bool, unsigned, unsigned> getSZIPCompression(HH_hid_t create_plist);
108  std::tuple<bool, unsigned, unsigned> getSZIPCompression() const final;
109 
110  Variable resize(const std::vector<Dimensions_t>& newDims) final;
111 
112  Variable attachDimensionScale(unsigned int DimensionNumber, const Variable& scale) final;
113  Variable detachDimensionScale(unsigned int DimensionNumber, const Variable& scale) final;
114  bool isDimensionScale() const final;
115  Variable setIsDimensionScale(const std::string& dimensionScaleName) final;
116  Variable getDimensionScaleName(std::string& res) const final;
117 
118  /// HDF5-generalized function, with emphasis on performance. Acts as the real function for
119  /// both getDimensionScaleMappings and isDimensionScaleAttached.
120  /// \param scalesToQueryAgainst is the list of scales that are being queried against.
121  /// \param firstOnly reports only the first match along each axis
122  /// \param dimensionNumbers is the list of dimensions to scan. An empty value means scan
123  /// everything.
124  /// \returns a vector of size dimensionNumbers if dimensionNumbers is specified. If
125  /// not, then returns a vector with length equaling the dimensionality of the variable.
126  std::vector<std::vector<Named_Variable>> getDimensionScaleMappings(
127  const std::vector<Named_Variable>& scalesToQueryAgainst, bool firstOnly,
128  const std::vector<unsigned>& dimensionNumbers) const;
129  /// HDF5-specific, performance-focused implementation.
130  bool isDimensionScaleAttached(unsigned int DimensionNumber, const Variable& scale) const final;
131  /// HDF5-specific, performance-focused implementation.
132  std::vector<std::vector<Named_Variable>> getDimensionScaleMappings(
133  const std::list<Named_Variable>& scalesToQueryAgainst,
134  bool firstOnly = true) const final;
135 
136  Variable write(gsl::span<char> data, const Type& in_memory_dataType,
137  const Selection& mem_selection, const Selection& file_selection) final;
138  Variable read(gsl::span<char> data, const Type& in_memory_dataType,
139  const Selection& mem_selection, const Selection& file_selection) const final;
140 
141  HH_hid_t getSpaceWithSelection(const Selection& sel) const;
142 
143  Selections::SelectionBackend_t instantiateSelection(const Selection& sel) const final;
144 
145  /// HDF5-specific, performance-focused implementation.
146  VariableCreationParameters getCreationParameters(bool doAtts = true,
147  bool doDims = true) const final;
148 };
149 
150 struct HH_Selection : public Selections::InstantiatedSelection {
152  virtual ~HH_Selection();
153 };
154 
155 } // namespace HH
156 } // namespace Engines
157 } // namespace detail
158 } // namespace ioda
159 
160 /// @}
IODA's error system.
Interfaces for ioda::Group and related classes.
HDF5 engine implementation of Attribute.
HDF5 resource handles in C++.
Dataspace selections for reading and writing ioda::Variable data.
Interfaces for ioda::Type and related classes.
The ioda exception class.
Definition: Exception.h:54
A Selection represents the bounds of the data, in ioda or in userspace, that you are reading or writi...
Definition: Selection.h:48
Represents the "type" (i.e. integer, string, float) of a piece of data.
Definition: Type.h:123
Variables store data!
Definition: Variable.h:680
This is the implementation of Variables using HDF5.
Definition: HH-variables.h:40
std::weak_ptr< const HH_HasVariables > container_
Definition: HH-variables.h:42
A class to wrap HDF5's hid_t resource handles.
Definition: Handles.h:92
Backends implement type providers in conjunction with Attributes, Has_Attributes, Variables and Has_V...
Definition: Type_Provider.h:36
Variable backends inherit from this.
Definition: Variable.h:710
Common preprocessor definitions used throughout IODA.
#define IODA_HIDDEN
A tag used to tell the compiler that a symbol should not be listed, but it may be referenced from oth...
Definition: defs.h:89
std::shared_ptr< InstantiatedSelection > SelectionBackend_t
Definition: Selection.h:35
T getFillValue(FillValueData_t &data)
Definition: Fill.h:63
list newDims
Definition: 05-ObsGroup.py:95
#define ioda_Here()
Describes the dimensions of an Attribute or Variable.
Definition: Dimensions.h:22
A named pair of (variable_name, ioda::Variable).
Definition: Variable.h:752
Used to specify Variable creation-time properties.
Definition: Has_Variables.h:57
Container used to store and manipulate fill values.
Definition: Fill.h:35