IODA
Variables.hpp
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 Variables.hpp
11  * \brief Functions for ObsStore Variable and Has_Variables
12  */
13 #pragma once
14 
15 #include <map>
16 #include <memory>
17 #include <string>
18 #include <utility>
19 #include <vector>
20 
21 #include "./Attributes.hpp"
22 #include "./Selection.hpp"
23 #include "./Types.hpp"
24 #include "./VarAttrStore.hpp"
25 #include "ioda/Variables/Fill.h"
26 #include "ioda/defs.h"
27 
28 namespace ioda {
29 namespace ObsStore {
30 // Spurious warning on Intel compilers:
31 // https://stackoverflow.com/questions/2571850/why-does-enable-shared-from-this-have-a-non-virtual-destructor
32 #if defined(__INTEL_COMPILER)
33 # pragma warning(push)
34 # pragma warning(disable : 444)
35 #endif
36 /// \brief parameters for creating a new variable
37 /// \ingroup ioda_internals_engines_obsstore
39 public:
40  // Data type element size
41  std::size_t dtype_size = 0;
42 
43  // Fill value
45  gsl::span<char> fill_value;
46 };
47 
48 /// \ingroup ioda_internals_engines_obsstore
49 class Variable : public std::enable_shared_from_this<Variable> {
50 private:
51  /// \brief dimension sizes (length is rank of dimensions)
52  std::vector<Dimensions_t> dimensions_;
53  /// \brief maximum dimension sizes (for resizing)
54  std::vector<Dimensions_t> max_dimensions_;
55  /// \brief ObsStore data type
57  /// \brief ObsStore data type
58  std::size_t dtype_size_ = 0;
59 
60  /// \brief Fill value information
62 
63  /// \brief container for variable data values
64  std::unique_ptr<VarAttrStore_Base> var_data_;
65 
66  /// \brief pointers to associated dimension scales
67  std::vector<std::shared_ptr<Variable>> dim_scales_;
68 
69  /// \brief true if this variable is a dimension scale
70  bool is_scale_ = false;
71 
72  /// \brief alias for this variable when it is serving as a dimension scale
73  std::string scale_name_;
74 
75 public:
76  Variable() : atts(std::make_shared<Has_Attributes>()) {}
77  Variable(const std::vector<Dimensions_t>& dimensions,
78  const std::vector<Dimensions_t>& max_dimensions, const ObsTypes& dtype,
79  const VarCreateParams& params);
80  ~Variable() {}
81 
82  /// \brief container for variable attributes
83  std::shared_ptr<Has_Attributes> atts;
84  /// \brief implementation-specific attribute storage. Fill values, chunking,
85  /// compression settings, etc. Stuff that shouldn't be directly visible
86  /// to the client without using a dedicated function.
87  std::shared_ptr<Has_Attributes> impl_atts;
88 
89  /// \brief returns dimension sizes
90  std::vector<Dimensions_t> get_dimensions() const;
91  /// \brief returns maximum dimension sizes
92  std::vector<Dimensions_t> get_max_dimensions() const;
93  /// \brief resizes dimensions (but cannot change dimensions themselves)
94  /// \param new_dim_sizes new extents for each dimension
95  void resize(const std::vector<Dimensions_t>& new_dim_sizes);
96  /// \brief returns true if requested type matches stored type
97  bool isOfType(ObsTypes dtype) const;
98  /// \brief returns the data type.
99  inline std::pair<ObsTypes, size_t> dtype() const { return std::make_pair(dtype_, dtype_size_); }
100 
101  /// \brief Is there an associated fill value?
102  /// \returns true if yes, false if no.
103  bool hasFillValue() const;
104 
105  /// \brief Get the fill value.
107 
108  /// \brief attach another variable to serve as a scale (holds coordinate values)
109  /// \param dim_number dimension (by position) of which scale is associated
110  /// \param scale variable serving as a scale
111  void attachDimensionScale(const std::size_t dim_number, const std::shared_ptr<Variable> scale);
112 
113  /// \brief detach another variable that is servingas a scale (coordinate values)
114  /// \param dim_number dimension (by position) of which scale is associated
115  /// \param scale variable serving as a scale
116  void detachDimensionScale(const std::size_t dim_number, const std::shared_ptr<Variable> scale);
117 
118  /// \brief returns true if this is being used as a scale for another variable
119  bool isDimensionScale() const;
120 
121  /// \brief set this variable as a dimension scale
122  /// \param name name for this dimension scale
123  void setIsDimensionScale(const std::string& name);
124 
125  /// \brief get the dimension scale name
126  /// \param name name for this dimension scale
127  void getDimensionScaleName(std::string& name) const;
128 
129  /// \brief return true if the scale is attached to this variable
130  /// \param name name for this dimension scale
131  bool isDimensionScaleAttached(const std::size_t dim_number,
132  const std::shared_ptr<Variable> scale) const;
133 
134  /// \brief transfer data to variable storage
135  /// \param data contiguous block of data to transfer
136  /// \param m_select Selection ojbect: how to select from data argument
137  /// \param f_select Selection ojbect: how to select to variable storage
138  std::shared_ptr<Variable> write(gsl::span<char> data, ObsTypes dtype, Selection& m_select,
139  Selection& f_select);
140  /// \brief transfer data from variable storage
141  /// \param data contiguous block of data to transfer
142  /// \param m_select Selection ojbect: how to select to data argument
143  /// \param f_select Selection ojbect: how to select from variable storage
144  std::shared_ptr<Variable> read(gsl::span<char> data, ObsTypes dtype, Selection& m_select,
145  Selection& f_select);
146 };
147 
148 class Group;
149 /// \ingroup ioda_internals_engines_obsstore
151 private:
152  /// \brief container of variables
153  std::map<std::string, std::shared_ptr<Variable>> variables_;
154 
155  /// \brief pointer to parent group
156  std::weak_ptr<Group> parent_group_;
157 
158  /// \brief split a path into groups and variable pieces
159  /// \param path Hierarchical path
160  static std::vector<std::string> splitGroupVar(const std::string& path);
161 
162 public:
165 
166  /// \brief create a new variable
167  /// \param name name of new variable
168  /// \param dtype ObsStore data type of new variable
169  /// \param dims dimensions of new variable (length is rank of dimensions)
170  /// \param max_dims maximum dimensions of new variable (for resizing)
171  /// \param params parameters for creating new variable
172  std::shared_ptr<Variable> create(const std::string& name, const ioda::ObsStore::ObsTypes& dtype,
173  const std::vector<Dimensions_t>& dims,
174  const std::vector<Dimensions_t>& max_dims,
175  const VarCreateParams& params);
176 
177  /// \brief open an existing variable (throws exception if not found)
178  std::shared_ptr<Variable> open(const std::string& name) const;
179 
180  /// \brief returns true if variable exists in the container
181  /// \param name name of variable to check
182  bool exists(const std::string& name) const;
183 
184  /// \brief remove variable
185  /// \param name name of variable to remove
186  void remove(const std::string& name);
187 
188  /// \brief rename variable
189  /// \param oldName current name of variable
190  /// \param newName new name of variable
191  void rename(const std::string& oldName, const std::string& newName);
192 
193  /// \brief returns a list of names of the variables in the container
194  std::vector<std::string> list() const;
195 
196  /// \brief set parent group pointer
197  /// \param parentGroup pointer to group that owns this Has_Variables object
198  void setParentGroup(const std::shared_ptr<Group>& parentGroup);
199 };
200 #if defined(__INTEL_COMPILER)
201 # pragma warning(pop)
202 #endif
203 } // namespace ObsStore
204 } // namespace ioda
205 
206 /// @}
Functions for ObsStore Attribute and Has_Attributes.
Fill value getters and setters.
Functions for ObsStore Selection.
Functions for ObsStore type markers.
Functions for ObsStore variable and attribute data storage.
Groups are a new implementation of ObsSpaces.
Definition: Group.h:159
std::vector< std::string > list() const
returns a list of names of the variables in the container
Definition: Variables.cpp:229
static std::vector< std::string > splitGroupVar(const std::string &path)
split a path into groups and variable pieces
Definition: Variables.cpp:242
bool exists(const std::string &name) const
returns true if variable exists in the container
Definition: Variables.cpp:190
std::shared_ptr< Variable > create(const std::string &name, const ioda::ObsStore::ObsTypes &dtype, const std::vector< Dimensions_t > &dims, const std::vector< Dimensions_t > &max_dims, const VarCreateParams &params)
create a new variable
Definition: Variables.cpp:150
std::shared_ptr< Variable > open(const std::string &name) const
open an existing variable (throws exception if not found)
Definition: Variables.cpp:174
void remove(const std::string &name)
remove variable
Definition: Variables.cpp:205
std::map< std::string, std::shared_ptr< Variable > > variables_
container of variables
Definition: Variables.hpp:153
void rename(const std::string &oldName, const std::string &newName)
rename variable
Definition: Variables.cpp:216
std::weak_ptr< Group > parent_group_
pointer to parent group
Definition: Variables.hpp:156
void setParentGroup(const std::shared_ptr< Group > &parentGroup)
set parent group pointer
Definition: Variables.cpp:237
std::shared_ptr< Has_Attributes > atts
container for variable attributes
Definition: Variables.hpp:83
detail::FillValueData_t fvdata_
Fill value information.
Definition: Variables.hpp:61
std::shared_ptr< Has_Attributes > impl_atts
implementation-specific attribute storage. Fill values, chunking, compression settings,...
Definition: Variables.hpp:87
std::string scale_name_
alias for this variable when it is serving as a dimension scale
Definition: Variables.hpp:73
void detachDimensionScale(const std::size_t dim_number, const std::shared_ptr< Variable > scale)
detach another variable that is servingas a scale (coordinate values)
Definition: Variables.cpp:107
detail::FillValueData_t getFillValue() const
Get the fill value.
Definition: Variables.cpp:100
void attachDimensionScale(const std::size_t dim_number, const std::shared_ptr< Variable > scale)
attach another variable to serve as a scale (holds coordinate values)
Definition: Variables.cpp:102
bool hasFillValue() const
Is there an associated fill value?
Definition: Variables.cpp:98
bool isDimensionScaleAttached(const std::size_t dim_number, const std::shared_ptr< Variable > scale) const
return true if the scale is attached to this variable
Definition: Variables.cpp:124
std::size_t dtype_size_
ObsStore data type.
Definition: Variables.hpp:58
bool isOfType(ObsTypes dtype) const
returns true if requested type matches stored type
Definition: Variables.cpp:96
void resize(const std::vector< Dimensions_t > &new_dim_sizes)
resizes dimensions (but cannot change dimensions themselves)
Definition: Variables.cpp:64
std::vector< Dimensions_t > get_dimensions() const
returns dimension sizes
Definition: Variables.cpp:60
std::vector< Dimensions_t > dimensions_
dimension sizes (length is rank of dimensions)
Definition: Variables.hpp:52
std::shared_ptr< Variable > write(gsl::span< char > data, ObsTypes dtype, Selection &m_select, Selection &f_select)
transfer data to variable storage
Definition: Variables.cpp:129
std::pair< ObsTypes, size_t > dtype() const
returns the data type.
Definition: Variables.hpp:99
void setIsDimensionScale(const std::string &name)
set this variable as a dimension scale
Definition: Variables.cpp:117
bool isDimensionScale() const
returns true if this is being used as a scale for another variable
Definition: Variables.cpp:115
std::vector< std::shared_ptr< Variable > > dim_scales_
pointers to associated dimension scales
Definition: Variables.hpp:67
std::vector< Dimensions_t > max_dimensions_
maximum dimension sizes (for resizing)
Definition: Variables.hpp:54
std::unique_ptr< VarAttrStore_Base > var_data_
container for variable data values
Definition: Variables.hpp:64
void getDimensionScaleName(std::string &name) const
get the dimension scale name
Definition: Variables.cpp:122
std::shared_ptr< Variable > read(gsl::span< char > data, ObsTypes dtype, Selection &m_select, Selection &f_select)
transfer data from variable storage
Definition: Variables.cpp:138
std::vector< Dimensions_t > get_max_dimensions() const
returns maximum dimension sizes
Definition: Variables.cpp:62
ObsTypes dtype_
ObsStore data type.
Definition: Variables.hpp:56
bool is_scale_
true if this variable is a dimension scale
Definition: Variables.hpp:70
Common preprocessor definitions used throughout IODA.
@ ObsStore
ObsStore in-memory.
ObsTypes
ObsStore data type markers.
Definition: Types.hpp:30
parameters for creating a new variable
Definition: Variables.hpp:38
gsl::span< char > fill_value
Definition: Variables.hpp:45
detail::FillValueData_t fvdata
Definition: Variables.hpp:44
Container used to store and manipulate fill values.
Definition: Fill.h:35