IODA
Var_ext.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 2021 UCAR
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  */
8 /*! \addtogroup ioda_cxx_py
9  *
10  * @{
11  * \file Var_ext.h
12  * \brief Python extensions to ioda::Variable.
13  */
14 
15 #include <string>
16 #include <vector>
17 
19 
20 namespace ioda {
21 class Variable;
22 struct VariableCreationParameters;
23 namespace detail {
24 /** \brief Implements wrappers that isolate the read and write functions.
25  **/
26 namespace python_bindings {
27 
28 /// \ingroup ioda_cxx_variable_py
29 template <class C = Variable>
30 class VariableIsA {
31  C* parent_;
32 
33 public:
34  VariableIsA(C* p) : parent_{p} {}
35  template <class T>
36  bool isA() const {
37  return parent_->template isA<T>();
38  }
39 };
40 
41 /// \ingroup ioda_cxx_variable_py
42 template <class C = Variable>
44  C* parent_;
45 
46 public:
48  template <class T>
49  std::vector<T> read(const Selection& mem_selection = Selection::all,
50  const Selection& file_selection = Selection::all) const {
51  std::vector<T> vals;
52  parent_->template read<T>(vals, mem_selection, file_selection);
53  return vals;
54  }
55 };
56 
57 /// \ingroup ioda_cxx_variable_py
58 template <class C = Variable>
60  C* parent_;
61 
62 public:
64  template <class T>
65  Eigen::Array<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> read(
66  const Selection& mem_selection = Selection::all,
67  const Selection& file_selection = Selection::all) const {
68  Eigen::Array<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> vals;
69 #ifdef _MSC_FULL_VER
70  parent_->readWithEigenRegular(vals, mem_selection, file_selection);
71 #else
72  parent_->template readWithEigenRegular(vals, mem_selection, file_selection);
73 #endif
74  return vals;
75  }
76 };
77 
78 /// \ingroup ioda_cxx_variable_py
79 template <class C = Variable>
81  C* parent_;
82 
83 public:
85  template <class T>
86  void write(const std::vector<T>& vals, const Selection& mem_selection = Selection::all,
87  const Selection& file_selection = Selection::all) const {
88  parent_->template write<T>(vals, mem_selection, file_selection);
89  }
90 };
91 
92 /// \ingroup ioda_cxx_variable_py
93 template <class C = Variable>
95  C* parent_;
96 
97 public:
99  template <class T>
100  void write(const Eigen::Array<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>& vals,
101  const Selection& mem_selection = Selection::all,
102  const Selection& file_selection = Selection::all) const {
103 #ifdef _MSC_FULL_VER
104  parent_->writeWithEigenRegular(vals, mem_selection, file_selection);
105 #else
106  parent_->template writeWithEigenRegular(vals, mem_selection, file_selection);
107 #endif
108  }
109 };
110 
111 /// \ingroup ioda_cxx_variable_py
112 template <class C = Variable>
115 
116 public:
117  VariableScales(C* p) : parent_{p} {}
118  inline void attach(unsigned int DimensionNumber, const C& scale) {
119  parent_->attachDimensionScale(DimensionNumber, scale);
120  }
121  inline void detach(unsigned int DimensionNumber, const C& scale) {
122  parent_->detachDimensionScale(DimensionNumber, scale);
123  }
124 
125  inline void set(const std::vector<C>& scales) { parent_->setDimScale(scales); }
126 
127  inline bool isScale() const { return parent_->isDimensionScale(); }
128  inline void setIsScale(const std::string& name) { parent_->setIsDimensionScale(name); }
129  inline std::string getScaleName() const { return parent_->getDimensionScaleName(); }
130 
131  inline bool isAttached(unsigned int DimensionNumber, const C& scale) const {
132  return parent_->isDimensionScaleAttached(DimensionNumber, scale);
133  }
134 };
135 
136 /// \ingroup ioda_cxx_variable_py
137 template <class C = Variable>
140 
141 public:
143  template <class T>
144  void setFillValue(T fill) const {
145  parent_->template setFillValue<T>(fill);
146  }
147 };
148 } // namespace python_bindings
149 } // namespace detail
150 } // namespace ioda
151 
152 /// @}
Dataspace selections for reading and writing ioda::Variable data.
A Selection represents the bounds of the data, in ioda or in userspace, that you are reading or writi...
Definition: Selection.h:48
Eigen::Array< T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor > read(const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const
Definition: Var_ext.h:65
std::vector< T > read(const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const
Definition: Var_ext.h:49
bool isAttached(unsigned int DimensionNumber, const C &scale) const
Definition: Var_ext.h:131
void detach(unsigned int DimensionNumber, const C &scale)
Definition: Var_ext.h:121
void setIsScale(const std::string &name)
Definition: Var_ext.h:128
void set(const std::vector< C > &scales)
Definition: Var_ext.h:125
void attach(unsigned int DimensionNumber, const C &scale)
Definition: Var_ext.h:118
void write(const Eigen::Array< T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor > &vals, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const
Definition: Var_ext.h:100
void write(const std::vector< T > &vals, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const
Definition: Var_ext.h:86
static IODA_DL const Selection all
Definition: Selection.h:131