IODA
HH-variablecreation.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-variablecreation.h
13  * \brief HDF5 engine variable creation parameters.
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 class HH_Type;
32 
33 /// \brief This encapsulates dataset creation parameters. Used for generating HDF5 property lists
34 /// for variable creation.
35 /// \ingroup ioda_internals_engines_hh
37  friend class HH_HasVariables;
38 
39  typedef std::vector<hsize_t> VecHS_t;
40  typedef std::vector<ioda::Dimensions_t> Vec_t;
41  VecHS_t dims_, max_dims_, final_chunks_;
43 
44  /// @brief Manages property lists for HDF5 variable creation.
45  /// @param p represents the ioda frontend variable creation parameters. These are specified by
46  /// the user. Chunking, compression, and fill values are specified here.
47  /// @param dims are the dimensions at creation time.
48  /// @param max_dims are the max dimensions, specified at variable creation time.
49  /// @param data_type represents the internal HDF5 data type. Needed when setting fill values.
50  VariableCreation(const VariableCreationParameters& p, const Vec_t& dims, const Vec_t& max_dims,
51  std::shared_ptr<HH_Type> data_type);
52 
53  /// @brief Generates a dataset creation property list, which encodes the chunking options,
54  /// compression, and the initial fill value used for the dataset.
55  /// @return A smart handle to the dataset creation property list.
56  HH_hid_t datasetCreationPlist() const;
57  /// @brief Generate a dataspace for the constructor-provided dimensions and max dimensions.
58  /// @return A smart handle to the dataspace.
59  HH_hid_t dataspace() const;
60  /// @brief The default dataset access property list. Currently a nullop.
61  /// @return A handle to the default HDF5 property list.
62  static HH_hid_t datasetAccessPlist();
63  /// @brief The ioda-default link creation property list.
64  /// @detail This just sets a property to create missing intermediate groups.
65  /// @return A handle to the HDF5 property list.
66  static HH_hid_t linkCreationPlist();
67 };
68 
69 } // namespace HH
70 } // namespace Engines
71 } // namespace detail
72 } // namespace ioda
73 
74 /// @}
Interfaces for ioda::Group and related classes.
HDF5 resource handles in C++.
This is the implementation of Has_Variables using HDF5.
A class to wrap HDF5's hid_t resource handles.
Definition: Handles.h:92
This encapsulates dataset creation parameters. Used for generating HDF5 property lists for variable c...
std::vector< ioda::Dimensions_t > Vec_t
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
Used to specify Variable creation-time properties.
Definition: Has_Variables.h:57