IODA
HH-hasattributes.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-hasattributes.h
13  * \brief HDF5 engine implementation of Has_Attributes.
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 Has_Attributes using HDF5.
28 /// \ingroup ioda_internals_engines_hh
30  public std::enable_shared_from_this<HH_HasAttributes> {
31 private:
33  static const hsize_t thresholdLinear = 10;
34 
35 public:
38  virtual ~HH_HasAttributes();
39  detail::Type_Provider* getTypeProvider() const final;
40  std::vector<std::string> list() const final;
41  /// @brief Check if an attribute exists.
42  /// @param attname is the name of the attribute.
43  /// @return true if exists, false otherwise.
44  /// @details This uses an optimized search.
45  /// @see open for search details.
46  bool exists(const std::string& attname) const final;
47  void remove(const std::string& attname) final;
48  /// @brief Open an attribute
49  /// @param name is the name of the attribute
50  /// @return The opened attribute
51  /// @details This uses an optimized search. If the number of attributes in the container is
52  /// less than ten, performs a linear search. Otherwise, it uses the usual H5Aopen call.
53  Attribute open(const std::string& name) const final;
54  Attribute create(const std::string& attrname, const Type& in_memory_dataType,
55  const std::vector<Dimensions_t>& dimensions = {1}) final;
56  void rename(const std::string& oldName, const std::string& newName) final;
57 };
58 } // namespace HH
59 } // namespace Engines
60 } // namespace detail
61 } // namespace ioda
62 
63 /// @}
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
This is the implementation of Has_Attributes using HDF5.
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