IODA
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 Attributes.cpp
11  * \brief Functions for ObsStore Attribute and Has_Attributes
12  */
13 #include <functional>
14 #include <numeric>
15 
16 #include "./Attributes.hpp"
17 #include "ioda/Exception.h"
18 
19 
20 namespace ioda {
21 namespace ObsStore {
22 //*********************************************************************
23 // Attribute functions
24 //*********************************************************************
25 Attribute::Attribute(const std::vector<std::size_t>& dimensions, const ObsTypes& dtype)
26  : dimensions_(dimensions), dtype_(dtype), attr_data_() {
27  // Get a typed storage object based on dtype
29 
30  // Set the size of the attribute value
31  std::size_t numElements = std::accumulate(dimensions_.begin(), dimensions_.end(), (size_t)1,
32  std::multiplies<std::size_t>());
33  attr_data_->resize(numElements);
34 }
35 
36 std::vector<std::size_t> Attribute::get_dimensions() const { return dimensions_; }
37 
38 bool Attribute::isOfType(ObsTypes dtype) const { return (dtype == dtype_); }
39 
40 std::shared_ptr<Attribute> Attribute::write(gsl::span<char> data, ObsTypes dtype) {
41  if (dtype != dtype_)
42  throw Exception("Requested data type not equal to storage datatype.", ioda_Here());
43 
44  // Create select objects for all elements. Ie, attributes don't use
45  // selection, but the VarAttrStore object is also used by variables which
46  // do use selection.
47  std::size_t start = 0;
48  std::size_t npoints = 1;
49  for (std::size_t idim = 0; idim < dimensions_.size(); ++idim) {
50  npoints *= dimensions_[idim];
51  }
52  Selection m_select(start, npoints);
53  Selection f_select(start, npoints);
54  attr_data_->write(data, m_select, f_select);
55  return shared_from_this();
56 }
57 
58 std::shared_ptr<Attribute> Attribute::read(gsl::span<char> data, ObsTypes dtype) {
59  if (dtype != dtype_)
60  throw Exception("Requested data type not equal to storage datatype", ioda_Here());
61 
62  // Create select objects for all elements. Ie, attributes don't use
63  // selection, but the VarAttrStore object is also used by variables which
64  // do use selection.
65  std::size_t start = 0;
66  std::size_t npoints = 1;
67  for (std::size_t idim = 0; idim < dimensions_.size(); ++idim) {
68  npoints *= dimensions_[idim];
69  }
70  Selection m_select(start, npoints);
71  Selection f_select(start, npoints);
72  attr_data_->read(data, m_select, f_select);
73  return shared_from_this();
74 }
75 
76 //*********************************************************************
77 // Has_Attributes function
78 //*********************************************************************
79 std::shared_ptr<Attribute> Has_Attributes::create(const std::string& name,
81  const std::vector<std::size_t>& dims) {
82  std::shared_ptr<Attribute> att(new Attribute(dims, dtype));
83  attributes_.insert(std::pair<std::string, std::shared_ptr<Attribute>>(name, att));
84  return att;
85 }
86 
87 std::shared_ptr<Attribute> Has_Attributes::open(const std::string& name) const {
88  auto iattr = attributes_.find(name);
89  if (iattr == attributes_.end())
90  throw Exception("Attribute not found.", ioda_Here()).add("name", name);
91 
92  return iattr->second;
93 }
94 
95 bool Has_Attributes::exists(const std::string& name) const {
96  return (attributes_.find(name) != attributes_.end());
97 }
98 
99 void Has_Attributes::remove(const std::string& name) { attributes_.erase(name); }
100 
101 void Has_Attributes::rename(const std::string& oldName, const std::string& newName) {
102  std::shared_ptr<Attribute> att = open(oldName);
103  attributes_.erase(oldName);
104  attributes_.insert(std::pair<std::string, std::shared_ptr<Attribute>>(newName, att));
105 }
106 
107 std::vector<std::string> Has_Attributes::list() const {
108  std::vector<std::string> attrList;
109  for (auto iattr = attributes_.begin(); iattr != attributes_.end(); ++iattr) {
110  attrList.push_back(iattr->first);
111  }
112  return attrList;
113 }
114 } // namespace ObsStore
115 } // namespace ioda
116 
117 /// @}
Functions for ObsStore Attribute and Has_Attributes.
IODA's error system.
The ioda exception class.
Definition: Exception.h:54
Exception & add(const std::string &key, const T value)
Add a key-value pair to the error message.
Definition: Exception.h:75
std::vector< std::size_t > dimensions_
holds dimension sizes (vector length is rank of dimensions)
Definition: Attributes.hpp:37
ObsTypes dtype_
holds ObsStore data type
Definition: Attributes.hpp:39
std::shared_ptr< Attribute > read(gsl::span< char > data, ObsTypes dtype)
transfer data from attribute
Definition: Attributes.cpp:58
std::vector< std::size_t > get_dimensions() const
returns dimensions vector
Definition: Attributes.cpp:36
bool isOfType(ObsTypes dtype) const
returns true if requested type matches stored type
Definition: Attributes.cpp:38
std::unique_ptr< VarAttrStore_Base > attr_data_
container for attribute data values
Definition: Attributes.hpp:45
std::pair< ObsTypes, size_t > dtype() const
returns the data type.
Definition: Attributes.hpp:58
std::shared_ptr< Attribute > write(gsl::span< char > data, ObsTypes dtype)
transfer data into attribute
Definition: Attributes.cpp:40
std::shared_ptr< Attribute > create(const std::string &name, const ioda::ObsStore::ObsTypes &dtype, const std::vector< std::size_t > &dims)
create a new attribute
Definition: Attributes.cpp:79
std::shared_ptr< Attribute > open(const std::string &name) const
open an exsiting attribute (throws exception if not found)
Definition: Attributes.cpp:87
void remove(const std::string &name)
remove attribtute from container
Definition: Attributes.cpp:99
std::vector< std::string > list() const
returns a list of the names of attributes in the container
Definition: Attributes.cpp:107
void rename(const std::string &oldName, const std::string &newName)
rename attribtute in container
Definition: Attributes.cpp:101
std::map< std::string, std::shared_ptr< Attribute > > attributes_
container of attributes
Definition: Attributes.hpp:74
bool exists(const std::string &name) const
returns true if attribute is in the container
Definition: Attributes.cpp:95
VarAttrStore_Base * createVarAttrStore(ObsTypes dtype)
factory style function to create a new templated object
ObsTypes
ObsStore data type markers.
Definition: Types.hpp:30
#define ioda_Here()