IODA
HH-groups.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 /*! \defgroup ioda_internals_engines_hh HDF5 / HH Engine
10  * \brief Implementation of the HDF5 backend.
11  * \ingroup ioda_internals_engines
12  *
13  * @{
14  * \file HH-groups.h
15  * \brief HDF5 group interface
16  */
17 
18 #include <map>
19 #include <memory>
20 #include <string>
21 #include <vector>
22 
23 #include "./HH-attributes.h"
24 #include "./HH-variables.h"
27 #include "ioda/Engines/HH.h"
28 #include "ioda/Group.h"
30 #include "ioda/defs.h"
31 
32 namespace ioda {
33 namespace detail {
34 namespace Engines {
35 namespace HH {
36 /// \brief This is the implementation of Groups using HDF5. Do not use outside of IODA.
37 /// \ingroup ioda_internals_engines_hh
42 
43 public:
44  // ioda::Has_Attributes atts;
45  // ioda::Has_Variables vars;
46 
47  /// @brief Group constructor
48  /// @param grp is the HDF5 handle
49  /// @param caps are the engine capabilities
50  /// @param fileroot is a handle to the root object.
52 
53  virtual ~HH_Group() {}
54  inline ::ioda::Engines::Capabilities getCapabilities() const final { return caps_; };
55  bool exists(const std::string& name) const final;
56  Group create(const std::string& name) final;
57  Group open(const std::string& name) const final;
58 
59  /// \brief Fill value policy in HDF5 depends on the current group and the root location.
60  /// \details If the file was created by NetCDF4, then use the NetCDF4 policy.
61  /// If the file was created by HDF5, see if the root is an ObsGroup. If it is, use the NETCDF4
62  /// policy. Otherwise, use the HDF5 policy.
63  /// \see HH_HasVariables for the function implementation. It is located there to avoid code
64  /// duplication.
65  FillValuePolicy getFillValuePolicy() const final;
66 
67  std::map<ObjectType, std::vector<std::string>> listObjects(ObjectType filter
68  = ObjectType::Ignored,
69  bool recurse = false) const final;
70 };
71 
72 } // namespace HH
73 } // namespace Engines
74 } // namespace detail
75 } // namespace ioda
76 
77 /// @}
Structs that describe backend capabilities.
Interfaces for ioda::Group and related classes.
HDF5 engine implementation of Attribute.
HDF5 engine implementation of Variable.
HDF5 engine.
Interfaces for ioda::Has_Attributes and related classes.
Interfaces for ioda::Has_Variables and related classes.
Groups are a new implementation of ObsSpaces.
Definition: Group.h:159
This is the implementation of Groups using HDF5. Do not use outside of IODA.
Definition: HH-groups.h:38
::ioda::Engines::Capabilities caps_
Definition: HH-groups.h:41
inline ::ioda::Engines::Capabilities getCapabilities() const final
Definition: HH-groups.h:54
A class to wrap HDF5's hid_t resource handles.
Definition: Handles.h:92
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
FillValuePolicy
This option describes the default fill values that will be used if the user does not manually specify...
Definition: FillPolicy.h:28
Struct defining what an engine can/cannot do.
Definition: Capabilities.h:47