Loading [MathJax]/extensions/tex2jax.js
IODA
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ObsStore-attributes.cpp
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-attributes.cpp
11  * \brief Functions for ObsStore Attribute and Has_Attributes
12  */
13 #include "./ObsStore-attributes.h"
14 
15 #include "./ObsStore-types.h"
16 #include "ioda/Misc/Dimensions.h"
17 
18 namespace ioda {
19 namespace Engines {
20 namespace ObsStore {
21 //**********************************************************************
22 // ObsStore_Attribute_Backend functions
23 //**********************************************************************
25 ObsStore_Attribute_Backend::ObsStore_Attribute_Backend(std::shared_ptr<ioda::ObsStore::Attribute> h)
26  : backend_(h) {}
28 
31 }
32 
33 Attribute ObsStore_Attribute_Backend::write(gsl::span<char> data, const Type& in_memory_dataType) {
34  // Convert to an obs store data type
35  auto typeBackend = std::dynamic_pointer_cast<ObsStore_Type>(in_memory_dataType.getBackend());
36  ioda::ObsStore::ObsTypes dtype = typeBackend->dtype();
37  backend_->write(data, dtype);
38  return Attribute{shared_from_this()};
39 }
40 
42  const Type& in_memory_dataType) const {
43  // Convert to an obs store data type
44  auto typeBackend = std::dynamic_pointer_cast<ObsStore_Type>(in_memory_dataType.getBackend());
45  ioda::ObsStore::ObsTypes dtype = typeBackend->dtype();
46 
47  backend_->read(data, dtype);
48  // Need to construct a shared_ptr to "this", instead of using
49  // shared_from_this() because of the const qualifier on this method.
50  return Attribute{std::make_shared<ObsStore_Attribute_Backend>(*this)};
51 }
52 
54  auto backend_type = backend_->dtype();
55  ObsTypeInfo typ{backend_type.first, backend_type.second};
56  return Type{std::make_shared<ObsStore_Type>(typ), typeid(ObsStore_Type)};
57 }
58 
60  auto typeBackend = std::dynamic_pointer_cast<ObsStore_Type>(lhs.getBackend());
61  ioda::ObsStore::ObsTypes dtype = typeBackend->dtype();
62  return backend_->isOfType(dtype);
63 }
64 
66  // Convert to Dimensions types
67  std::vector<std::size_t> attrDims = backend_->get_dimensions();
68  std::vector<Dimensions_t> iodaDims;
69  std::size_t numElems = 1;
70  for (std::size_t i = 0; i < attrDims.size(); ++i) {
71  iodaDims.push_back(gsl::narrow<Dimensions_t>(attrDims[i]));
72  numElems *= attrDims[i];
73  }
74 
75  // Create and return a Dimensions object
76  auto iodaRank = gsl::narrow<Dimensions_t>(iodaDims.size());
77  auto iodaNumElems = gsl::narrow<Dimensions_t>(numElems);
78  Dimensions dims(iodaDims, iodaDims, iodaRank, iodaNumElems);
79  return dims;
80 }
81 
82 //**********************************************************************
83 // ObsStore_HasAttributes_Backend functions
84 //**********************************************************************
87  std::shared_ptr<ioda::ObsStore::Has_Attributes> b)
88  : backend_(b) {}
90 
93 }
94 
95 std::vector<std::string> ObsStore_HasAttributes_Backend::list() const { return backend_->list(); }
96 
97 bool ObsStore_HasAttributes_Backend::exists(const std::string& attname) const {
98  return backend_->exists(attname);
99 }
100 
101 void ObsStore_HasAttributes_Backend::remove(const std::string& attname) {
102  return backend_->remove(attname);
103 }
104 
105 Attribute ObsStore_HasAttributes_Backend::open(const std::string& attrname) const {
106  auto res = backend_->open(attrname);
107  auto b = std::make_shared<ObsStore_Attribute_Backend>(res);
108  Attribute att{b};
109  return att;
110 }
111 
113  const Type& in_memory_dataType,
114  const std::vector<Dimensions_t>& dimensions) {
115  /// Convert to an obs store data type
116  auto typeBackend = std::dynamic_pointer_cast<ObsStore_Type>(in_memory_dataType.getBackend());
117  ioda::ObsStore::ObsTypes dtype = typeBackend->dtype();
118 
119  // Convert to obs store dimensions
120  std::vector<std::size_t> dims;
121  for (std::size_t i = 0; i < dimensions.size(); ++i) {
122  dims.push_back(gsl::narrow<std::size_t>(dimensions[i]));
123  }
124 
125  auto res = backend_->create(attrname, dtype, dims);
126  auto b = std::make_shared<ObsStore_Attribute_Backend>(res);
127  Attribute att{b};
128  return att;
129 }
130 
131 void ObsStore_HasAttributes_Backend::rename(const std::string& oldName,
132  const std::string& newName) {
133  backend_->rename(oldName, newName);
134 }
135 } // namespace ObsStore
136 } // namespace Engines
137 } // namespace ioda
138 
139 /// @}
Describe the dimensions of a ioda::Attribute or ioda::Variable.
Functions for ObsStore Attribute and Has_Attributes.
Functions for translating ioda::Types to ObsStore Types.
This class represents attributes, which may be attached to both Variables and Groups.
Definition: Attribute.h:493
Attribute write(gsl::span< char > data, const Type &in_memory_dataType) final
transfer data into the ObsStore Attribute
Dimensions getDimensions() const final
retrieve dimensions of attribute
std::shared_ptr< ioda::ObsStore::Attribute > backend_
ObsStore Attribute.
detail::Type_Provider * getTypeProvider() const final
return an ObsStore type marker
Type getType() const final
Encapsulate the internal ObsStore_Type object as a Type.
std::vector< std::string > list() const final
return list of the names of the attributes in this container
Attribute create(const std::string &attrname, const Type &in_memory_dataType, const std::vector< Dimensions_t > &dimensions={1}) final
create a new attribute
std::shared_ptr< ioda::ObsStore::Has_Attributes > backend_
ObsStore Has_Attribute.
bool exists(const std::string &attname) const final
returns true if attribute is in this container
detail::Type_Provider * getTypeProvider() const final
return an ObsStore type marker
void rename(const std::string &oldName, const std::string &newName) final
rename an attribute
void remove(const std::string &attname) final
remove an attribute from this container
Attribute open(const std::string &attrname) const final
open an existing attribute (throws exception if not found)
static ObsStore_Type_Provider * instance()
create instance of a type provider for frontend
Represents the "type" (i.e. integer, string, float) of a piece of data.
Definition: Type.h:123
bool isA() const
Convenience function to check an Attribute's storage type.
Definition: Attribute.h:447
DataType read() const
Read a single value (convenience function).
Definition: Attribute.h:319
std::shared_ptr< Type_Backend > getBackend() const
Definition: Type.h:103
Backends implement type providers in conjunction with Attributes, Has_Attributes, Variables and Has_V...
Definition: Type_Provider.h:36
@ ObsStore
ObsStore in-memory.
ObsTypes
ObsStore data type markers.
Definition: Types.hpp:30
std::pair< ioda::ObsStore::ObsTypes, std::size_t > ObsTypeInfo
Describes the dimensions of an Attribute or Variable.
Definition: Dimensions.h:22