IODA
HH-attributes.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-attributes.h
13  * \brief HDF5 engine implementation of Attribute.
14  */
15 
16 #include <string>
17 #include <vector>
18 
19 #include "./Handles.h"
20 #include "ioda/Group.h"
21 #include "ioda/defs.h"
22 
23 namespace ioda {
24 namespace detail {
25 namespace Engines {
26 namespace HH {
27 /// \brief This is the implementation of Attributes using HDF5.
28 /// \ingroup ioda_internals_engines_hh
30  public std::enable_shared_from_this<HH_Attribute> {
31 private:
33 
34 public:
35  HH_Attribute();
36  HH_Attribute(HH_hid_t hnd_attr);
37  virtual ~HH_Attribute();
38 
39  HH_hid_t get() const;
40  bool isAttribute() const;
41 
42  std::string getName() const;
43 
44  Attribute write(gsl::span<char> data, const Type& in_memory_dataType) final;
45  void write(gsl::span<const char> data, HH_hid_t in_memory_dataType);
46 
47  void read(gsl::span<char> data, HH_hid_t in_memory_dataType) const;
48  Attribute read(gsl::span<char> data, const Type& in_memory_dataType) const final;
49 
50  /// @brief Get HDF5-internal type.
51  /// @return Handle to HDF5-internal type.
52  HH_hid_t internalType() const;
53  detail::Type_Provider* getTypeProvider() const final;
54 
55  /// @brief Get HDF5-internal type, wrapped as a ioda::Type object.
56  /// @details This is used to pass information from
57  /// @return The wrapped type.
58  Type getType() const final;
59 
60  bool isA(HH_hid_t ttype) const;
61  bool isA(Type lhs) const final;
62  HH_hid_t space() const;
63  Dimensions getDimensions() const final;
64 };
65 } // namespace HH
66 } // namespace Engines
67 } // namespace detail
68 } // namespace ioda
69 
70 /// @}
Interfaces for ioda::Group and related classes.
HDF5 resource handles in C++.
This class represents attributes, which may be attached to both Variables and Groups.
Definition: Attribute.h:493
Represents the "type" (i.e. integer, string, float) of a piece of data.
Definition: Type.h:123
Attribute backends inherit from this.
Definition: Attribute.h:519
This is the implementation of Attributes using HDF5.
Definition: HH-attributes.h:30
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
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
Describes the dimensions of an Attribute or Variable.
Definition: Dimensions.h:22