IODA
HH-hasvariables.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-hasvariables.h
13  * \brief HDF5 engine implementation of Has_Variables.
14  */
15 
16 #include <list>
17 #include <memory>
18 #include <string>
19 #include <tuple>
20 #include <utility>
21 #include <vector>
22 
23 #include "./Handles.h"
24 #include "ioda/Group.h"
25 #include "ioda/defs.h"
26 
27 namespace ioda {
28 namespace detail {
29 namespace Engines {
30 namespace HH {
31 /// \brief This encapsulates dataset creation parameters
32 /// \ingroup ioda_internals_engines_hh
34  friend class HH_HasVariables;
35 
37 
39  /// @brief The default dataset access property list. Currently a nullop.
40  /// @return A handle to the default HDF5 property list.
42  /// @brief The ioda-default link creation property list.
43  /// @detail This just sets a property to create missing intermediate groups.
44  /// @return A handle to the HDF5 property list.
46 };
47 
48 /// \brief This is the implementation of Has_Variables using HDF5.
50  public std::enable_shared_from_this<HH_HasVariables> {
53 
54 public:
56  HH_HasVariables(HH_hid_t grp, HH_hid_t fileroot);
57  virtual ~HH_HasVariables();
58  detail::Type_Provider* getTypeProvider() const final;
59  FillValuePolicy getFillValuePolicy() const final;
60  bool exists(const std::string& name) const final;
61  void remove(const std::string& name) final;
62  Variable open(const std::string& name) const final;
63  std::vector<std::string> list() const final;
64  Variable create(const std::string& name, const Type& in_memory_dataType,
65  const std::vector<Dimensions_t>& dimensions = {1},
66  const std::vector<Dimensions_t>& max_dimensions = {},
68 
69  /*! HDF5-optimized collective variable version of attachDimensionScales.
70 *
71 * This function exists to improve performance. When attaching many
72 * variables to the same dimension scale, HDF5's HL library performs
73 * suboptimally. Each time a new variable is attached to a scale, that
74 * scale's REFERENCE_LIST attribute must be resized and recreated. This collective
75 * function call avoids this issue by rewriting H5DSattach_scale to attach multiple
76 * variables to a scale at the same time.
77 *
78 * @see https://github.com/HDFGroup/hdf5/blob/develop/hl/src/H5DS.c#L107 for the HDF5 function.
79 * @param mapping is a sequence of variables along with their dimension scales.
80 */
81  void attachDimensionScales(
82  const std::vector<std::pair<Variable, std::vector<Variable>>>& mapping)
83  final;
84 };
85 } // namespace HH
86 } // namespace Engines
87 } // namespace detail
88 } // namespace ioda
89 
90 /// @}
Interfaces for ioda::Group and related classes.
HDF5 resource handles in C++.
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 encapsulates dataset creation parameters.
DatasetParameterPack(const VariableCreationParameters &)
static HH_hid_t linkCreationPlist()
The ioda-default link creation property list. @detail This just sets a property to create missing int...
static HH_hid_t datasetAccessPlist()
The default dataset access property list. Currently a nullop.
This is the implementation of Has_Variables 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
FillValuePolicy
This option describes the default fill values that will be used if the user does not manually specify...
Definition: FillPolicy.h:28
Used to specify Variable creation-time properties.
Definition: Has_Variables.h:57