IODA
ObsStore-variables.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020-2021 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 /*! \addtogroup ioda_internals_engines_obsstore
8  *
9  * @{
10  * \file ObsStore-variables.h
11  * \brief Functions for ioda::Variable and ioda::Has_Variables backed by ObsStore
12  */
13 #pragma once
14 
15 #include <memory>
16 #include <string>
17 #include <tuple>
18 #include <utility>
19 #include <vector>
20 
21 #include "./ObsStore-attributes.h"
22 #include "./ObsStore-selection.h"
23 #include "./ObsStore-types.h"
24 #include "./Selection.hpp"
25 #include "./Types.hpp"
26 #include "./Variables.hpp"
27 #include "ioda/Group.h"
28 #include "ioda/Misc/Dimensions.h"
29 #include "ioda/defs.h"
30 
31 namespace ioda {
32 namespace Engines {
33 namespace ObsStore {
34 // Spurious warning on Intel compilers:
35 // https://stackoverflow.com/questions/2571850/why-does-enable-shared-from-this-have-a-non-virtual-destructor
36 #if defined(__INTEL_COMPILER)
37 # pragma warning(push)
38 # pragma warning(disable : 444)
39 #endif
40 
41 class ObsStore_HasVariables_Backend;
42 
43 /// \brief This is the implementation of Variable in ioda::ObsStore
44 /// \ingroup ioda_internals_engines_obsstore
47  public std::enable_shared_from_this<ObsStore::ObsStore_Variable_Backend> {
48 private:
50 
51  /// \brief ObsStore Variable
52  std::shared_ptr<ioda::ObsStore::Variable> backend_;
53 
54  /// Extra Attributes
56 
57 public:
59  ObsStore_Variable_Backend(std::shared_ptr<ioda::ObsStore::Variable>);
61 
62  /// \brief return an ObsStore type marker
64 
65  /// \brief Encapsulate the internal ObsStore_Type object as a Type.
66  /// \returns the wrapped type.
67  Type getType() const final;
68 
69  /// \brief return true if requested type matches stored type
70  /// \param lhs type being requested
71  bool isA(Type lhs) const final;
72 
73  /// \brief Does the Variable have an associated fill value?
74  /// \returns true if yes, false if no.
75  bool hasFillValue() const final;
76 
77  /// \brief Get the fill value associated with the Variable.
78  FillValueData_t getFillValue() const final;
79 
80  /// \brief return dimensions of this variable
81  Dimensions getDimensions() const final;
82 
83  /// \brief Get chunking information
84  /// \see Variable_Base
85  std::vector<Dimensions_t> getChunkSizes() const final;
86 
87  /// \brief Get GZIP compression information
88  /// \see Variable_Base
89  std::pair<bool, int> getGZIPCompression() const final;
90 
91  /// \brief Get SZIP compression information
92  /// \see Variable_Base
93  std::tuple<bool, unsigned, unsigned> getSZIPCompression() const final;
94 
95  /// \brief resize dimensions
96  /// \param newDims new dimension sizes
97  Variable resize(const std::vector<Dimensions_t>& newDims) final;
98 
99  /// \brief attach dimension to this variable
100  /// \param DimensionNumber index of dimension (0, 1, ..., num_dims-1)
101  /// \param scale existing variable holding dimension coordinate values
102  Variable attachDimensionScale(unsigned int DimensionNumber, const Variable& scale) final;
103  /// \brief detach dimensions to this variable
104  /// \param DimensionNumber index of dimension (0, 1, ..., num_dims-1)
105  /// \param scale existing variable holding dimension coordinate values
106  Variable detachDimensionScale(unsigned int DimensionNumber, const Variable& scale) final;
107  /// \brief is this variable a dimension scale (ie, hold coordinate values)
108  bool isDimensionScale() const final;
109  /// \brief set flag to denote this variable as a dimension scale
110  /// \param res name of dimension scale variable
111  Variable setIsDimensionScale(const std::string& dimensionScaleName) final;
112  /// \brief given this variable is a dimension scale, return its name
113  /// \param res name of this dimension scale
114  Variable getDimensionScaleName(std::string& res) const final;
115  /// \brief is the given dimension scale attached to the given dimension number
116  /// \param DemensionNumber index of dimension (0, 1, ..., num_dims-1)
117  /// \param scale dimension scale variable
118  bool isDimensionScaleAttached(unsigned int DimensionNumber, const Variable& scale) const final;
119 
120  /// \brief transfer data into the ObsStore Variable
121  /// \param data contiguous block of data to transfer
122  /// \param in_memory_dataType frontend type marker
123  /// \param mem_selection ioda::Selection for incoming data
124  /// \param file_selection ioda::Selection for target Variable data
125  Variable write(gsl::span<char> data, const Type& in_memory_dataType,
126  const Selection& mem_selection, const Selection& file_selection) final;
127  /// \brief transfer data from the ObsStore Variable
128  /// \param data contiguous block of data to transfer
129  /// \param in_memory_dataType frontend type marker
130  /// \param mem_selection ioda::Selection for target data
131  /// \param file_selection ioda::Selection for incoming Variable data
132  Variable read(gsl::span<char> data, const Type& in_memory_dataType,
133  const Selection& mem_selection, const Selection& file_selection) const final;
134 };
135 
136 /// \brief This is the implementation of Has_Variables in ioda::ObsStore
137 /// \ingroup ioda_internals_engines_obsstore
139  : public ioda::detail::Has_Variables_Backend,
140  public std::enable_shared_from_this<ObsStore_HasVariables_Backend> {
141 private:
142  /// \brief ObsStore Has_Variables
143  std::shared_ptr<ioda::ObsStore::Has_Variables> backend_;
144 
145 public:
147  ObsStore_HasVariables_Backend(std::shared_ptr<ioda::ObsStore::Has_Variables>);
149 
150  /// \brief return an ObsStore type marker
151  detail::Type_Provider* getTypeProvider() const final;
152 
153  /// \brief return true if variable exists
154  /// \param name name of variable
155  bool exists(const std::string& name) const final;
156 
157  /// \brief remove variable
158  /// \param name name of variable
159  void remove(const std::string& name) final;
160 
161  /// \brief open variable (throws exception if not found)
162  /// \param name name of variable
163  Variable open(const std::string& name) const final;
164 
165  /// \brief return list of variables in this container
166  std::vector<std::string> list() const final;
167 
168  /// \brief create a new variable
169  /// \param attname name of variable
170  /// \param in_memory_dataType fronted type marker
171  /// \param dimensions dimensions of variable
172  /// \param max_dimensions maximum_dimensions of variable (for resizing)
173  /// \param params creation specs (chunking, fill value, compression, etc.)
174  Variable create(const std::string& name, const Type& in_memory_dataType,
175  const std::vector<Dimensions_t>& dimensions = {1},
176  const std::vector<Dimensions_t>& max_dimensions = {},
178 };
179 #if defined(__INTEL_COMPILER)
180 # pragma warning(pop)
181 #endif
182 } // namespace ObsStore
183 } // namespace Engines
184 } // namespace ioda
185 
186 /// @}
Describe the dimensions of a ioda::Attribute or ioda::Variable.
Interfaces for ioda::Group and related classes.
Functions for ObsStore Attribute and Has_Attributes.
Functions for transfering ioda::Selection to ObsStore.
Functions for translating ioda::Types to ObsStore Types.
Functions for ObsStore Selection.
Functions for ObsStore type markers.
Functions for ObsStore Variable and Has_Variables.
This is the implementation of Has_Variables in ioda::ObsStore.
std::shared_ptr< ioda::ObsStore::Has_Variables > backend_
ObsStore Has_Variables.
This is the implementation of Variable in ioda::ObsStore.
Type getType() const final
Encapsulate the internal ObsStore_Type object as a Type.
FillValueData_t getFillValue() const final
Get the fill value associated with the Variable.
bool isDimensionScale() const final
is this variable a dimension scale (ie, hold coordinate values)
Variable resize(const std::vector< Dimensions_t > &newDims) final
resize dimensions
std::pair< bool, int > getGZIPCompression() const final
Get GZIP compression information.
Variable write(gsl::span< char > data, const Type &in_memory_dataType, const Selection &mem_selection, const Selection &file_selection) final
transfer data into the ObsStore Variable
std::shared_ptr< ioda::ObsStore::Variable > backend_
ObsStore Variable.
detail::Type_Provider * getTypeProvider() const final
return an ObsStore type marker
std::vector< Dimensions_t > getChunkSizes() const final
Get chunking information.
Variable setIsDimensionScale(const std::string &dimensionScaleName) final
set flag to denote this variable as a dimension scale
Dimensions getDimensions() const final
return dimensions of this variable
Variable attachDimensionScale(unsigned int DimensionNumber, const Variable &scale) final
attach dimension to this variable
bool hasFillValue() const final
Does the Variable have an associated fill value?
bool isDimensionScaleAttached(unsigned int DimensionNumber, const Variable &scale) const final
is the given dimension scale attached to the given dimension number
Variable read(gsl::span< char > data, const Type &in_memory_dataType, const Selection &mem_selection, const Selection &file_selection) const final
transfer data from the ObsStore Variable
Variable detachDimensionScale(unsigned int DimensionNumber, const Variable &scale) final
detach dimensions to this variable
std::tuple< bool, unsigned, unsigned > getSZIPCompression() const final
Get SZIP compression information.
This class exists inside of ioda::Group or ioda::Variable and provides the interface to manipulating ...
A Selection represents the bounds of the data, in ioda or in userspace, that you are reading or writi...
Definition: Selection.h:48
Represents the "type" (i.e. integer, string, float) of a piece of data.
Definition: Type.h:123
Variables store data!
Definition: Variable.h:680
Backends implement type providers in conjunction with Attributes, Has_Attributes, Variables and Has_V...
Definition: Type_Provider.h:36
Variable backends inherit from this.
Definition: Variable.h:710
bool isA() const
Convenience function to check a Variable's storage type.
Definition: Variable.h:99
std::string getDimensionScaleName() const
Get the name of this Variable's defined dimension scale.
Definition: Variable.h:217
Common preprocessor definitions used throughout IODA.
@ ObsStore
ObsStore in-memory.
list newDims
Definition: 05-ObsGroup.py:95
Describes the dimensions of an Attribute or Variable.
Definition: Dimensions.h:22
Used to specify Variable creation-time properties.
Definition: Has_Variables.h:57
Container used to store and manipulate fill values.
Definition: Fill.h:35