IODA
Att_ext.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 2020-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 /*! \defgroup ioda_cxx_py C++ / Python Bindings
9  * \brief Python binding helper classes, functions, and templates.
10  * \ingroup ioda_internals
11  *
12  * @{
13  * \file Att_ext.h
14  * \brief Python extensions to ioda::Attribute.
15  */
16 
17 #include <vector>
18 
20 
21 namespace ioda {
22 class Attribute;
23 namespace detail {
24 /** \brief Implements wrappers that isolate the read and write functions.
25  **/
26 namespace python_bindings {
27 
28 /// \ingroup ioda_cxx_attribute_py
29 template <class C = Attribute>
30 class AttributeIsA {
31  C* parent_;
32 
33 public:
34  AttributeIsA(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_attribute_py
42 template <class C = Attribute>
44  C* parent_;
45 
46 public:
48  template <class T>
49  T read() const {
50  return parent_->template read<T>();
51  }
52 };
53 
54 /// \ingroup ioda_cxx_attribute_py
55 template <class C = Attribute>
57  C* parent_;
58 
59 public:
61  template <class T>
62  std::vector<T> read() const {
63  std::vector<T> vals;
64  parent_->template read<T>(vals);
65  return vals;
66  }
67 };
68 
69 /// \ingroup ioda_cxx_attribute_py
70 template <class C = Attribute>
72  C* parent_;
73 
74 public:
76  template <class T>
77  Eigen::Array<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> read() const {
78  Eigen::Array<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> vals;
79 #ifdef _MSC_FULL_VER
80  parent_->readWithEigenRegular(vals);
81 #else
82  parent_->template readWithEigenRegular(vals);
83 #endif
84  return vals;
85  }
86 };
87 
88 /// \ingroup ioda_cxx_attribute_py
89 template <class C = Attribute>
91  C* parent_;
92 
93 public:
95  template <class T>
96  void write(T data) const {
97  parent_->template write<T>(data);
98  }
99 };
100 
101 /// \ingroup ioda_cxx_attribute_py
102 template <class C = Attribute>
105 
106 public:
108  template <class T>
109  void write(const std::vector<T>& vals) const {
110  parent_->template write<T>(vals);
111  }
112 };
113 
114 /// \ingroup ioda_cxx_attribute_py
115 template <class C = Attribute>
118 
119 public:
121  template <class T>
122  void write(const Eigen::Array<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>& vals) const {
123 #ifdef _MSC_FULL_VER
124  parent_->writeWithEigenRegular(vals);
125 #else
126  parent_->template writeWithEigenRegular(vals);
127 #endif
128  }
129 };
130 
131 } // namespace python_bindings
132 } // namespace detail
133 } // namespace ioda
134 
135 /// @}
Dataspace selections for reading and writing ioda::Variable data.
Eigen::Array< T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor > read() const
Definition: Att_ext.h:77
void write(const Eigen::Array< T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor > &vals) const
Definition: Att_ext.h:122
void write(const std::vector< T > &vals) const
Definition: Att_ext.h:109