IODA
Attributes.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 Attributes.hpp
11  * \brief Functions for ObsStore Attribute and Has_Attributes
12  */
13 #pragma once
14 
15 #include <map>
16 #include <memory>
17 #include <string>
18 #include <utility>
19 #include <vector>
20 
21 #include "./Selection.hpp"
22 #include "./Types.hpp"
23 #include "./VarAttrStore.hpp"
24 
25 namespace ioda {
26 namespace ObsStore {
27 // Spurious warning on Intel compilers:
28 // https://stackoverflow.com/questions/2571850/why-does-enable-shared-from-this-have-a-non-virtual-destructor
29 #if defined(__INTEL_COMPILER)
30 # pragma warning(push)
31 # pragma warning(disable : 444)
32 #endif
33 /// \ingroup ioda_internals_engines_obsstore
34 class Attribute : public std::enable_shared_from_this<Attribute> {
35 private:
36  /// \brief holds dimension sizes (vector length is rank of dimensions)
37  std::vector<std::size_t> dimensions_;
38  /// \brief holds ObsStore data type
40  /// \brief ObsStore data type
41  /// \note Unused for now.
42  std::size_t dtype_size_ = 0;
43 
44  /// \brief container for attribute data values
45  std::unique_ptr<VarAttrStore_Base> attr_data_;
46 
47 public:
48  Attribute() {}
49  Attribute(const std::vector<std::size_t>& dimensions, const ObsTypes& dtype);
51 
52  /// \brief returns dimensions vector
53  std::vector<std::size_t> get_dimensions() const;
54  /// \brief returns true if requested type matches stored type
55  /// \param dtype ObsStore Type being checked
56  bool isOfType(ObsTypes dtype) const;
57  /// \brief returns the data type.
58  inline std::pair<ObsTypes, size_t> dtype() const { return std::make_pair(dtype_, dtype_size_); }
59 
60  /// \brief transfer data into attribute
61  /// \param data contiguous block of data to transfer
62  /// \param dtype ObsStore Type
63  std::shared_ptr<Attribute> write(gsl::span<char> data, ObsTypes dtype);
64  /// \brief transfer data from attribute
65  /// \param data contiguous block of data to transfer
66  /// \param dtype ObsStore Type
67  std::shared_ptr<Attribute> read(gsl::span<char> data, ObsTypes dtype);
68 };
69 
70 /// \ingroup ioda_internals_engines_obsstore
72 private:
73  /// \brief container of attributes
74  std::map<std::string, std::shared_ptr<Attribute>> attributes_;
75 
76 public:
79 
80  /// \brief create a new attribute
81  /// \param name name of new attribute
82  /// \param dtype ObsStore Type of new attribute
83  /// \param dims shape of new attribute
84  std::shared_ptr<Attribute> create(const std::string& name, const ioda::ObsStore::ObsTypes& dtype,
85  const std::vector<std::size_t>& dims);
86 
87  /// \brief open an exsiting attribute (throws exception if not found)
88  /// \param name name of attribute
89  std::shared_ptr<Attribute> open(const std::string& name) const;
90 
91  /// \brief returns true if attribute is in the container
92  /// \param name name of attribute
93  bool exists(const std::string& name) const;
94 
95  /// \brief remove attribtute from container
96  /// \param name name of attribute
97  void remove(const std::string& name);
98 
99  /// \brief rename attribtute in container
100  /// \param oldName current name of attribute
101  /// \param newName new name for attribute
102  void rename(const std::string& oldName, const std::string& newName);
103 
104  /// \brief returns a list of the names of attributes in the container
105  std::vector<std::string> list() const;
106 };
107 #if defined(__INTEL_COMPILER)
108 # pragma warning(pop)
109 #endif
110 } // namespace ObsStore
111 } // namespace ioda
112 
113 /// @}
Functions for ObsStore Selection.
Functions for ObsStore type markers.
Functions for ObsStore variable and attribute data storage.
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::size_t dtype_size_
ObsStore data type.
Definition: Attributes.hpp:42
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
@ ObsStore
ObsStore in-memory.
ObsTypes
ObsStore data type markers.
Definition: Types.hpp:30