IODA
ObsStore-attributes.h
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.h
11  * \brief Functions for ObsStore Attribute and Has_Attributes
12  */
13 #pragma once
14 
15 #include <memory>
16 #include <string>
17 #include <vector>
18 
19 #include "./Attributes.hpp"
20 #include "./Types.hpp"
21 #include "ioda/Group.h"
22 #include "ioda/defs.h"
23 
24 namespace ioda {
25 namespace Engines {
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 
34 /// \brief This is the implementation of Attributes in ioda::ObsStore
35 /// \ingroup ioda_internals_engines_obsstore
37  public std::enable_shared_from_this<ObsStore_Attribute_Backend> {
38 private:
39  /// \brief ObsStore Attribute
40  std::shared_ptr<ioda::ObsStore::Attribute> backend_;
41 
42  /// \brief return an ObsStore type marker
44 
45 public:
47  ObsStore_Attribute_Backend(std::shared_ptr<ioda::ObsStore::Attribute>);
49 
50  /// \brief transfer data into the ObsStore Attribute
51  /// \param data contiguous block of data to transfer
52  /// \param in_memory_dataType frontend type marker
53  Attribute write(gsl::span<char> data, const Type& in_memory_dataType) final;
54  /// \brief transfer data from the ObsStore Attribute
55  /// \param data contiguous block of data to transfer
56  /// \param in_memory_dataType frontend type marker
57  Attribute read(gsl::span<char> data, const Type& in_memory_dataType) const final;
58 
59  /// \brief Encapsulate the internal ObsStore_Type object as a Type.
60  /// \returns the wrapped type.
61  Type getType() const final;
62 
63  /// \brief check if requested type matches stored type
64  /// \param lhs frontend type marker
65  bool isA(Type lhs) const final;
66 
67  /// \brief retrieve dimensions of attribute
68  Dimensions getDimensions() const final;
69 };
70 
71 /// \brief This is the implementation of Has_Attributes in ioda::ObsStore.
72 /// \ingroup ioda_internals_engines_obsstore
73 class ObsStore_HasAttributes_Backend : public ioda::detail::Has_Attributes_Backend {
74 private:
75  /// \brief ObsStore Has_Attribute
76  std::shared_ptr<ioda::ObsStore::Has_Attributes> backend_;
77 
78 public:
80  ObsStore_HasAttributes_Backend(std::shared_ptr<ioda::ObsStore::Has_Attributes>);
82 
83  /// \brief return an ObsStore type marker
85 
86  /// \brief return list of the names of the attributes in this container
87  std::vector<std::string> list() const final;
88 
89  /// \brief returns true if attribute is in this container
90  /// \param attname name of attribute
91  bool exists(const std::string& attname) const final;
92 
93  /// \brief remove an attribute from this container
94  /// \param attname name of attribute
95  void remove(const std::string& attname) final;
96 
97  /// \brief open an existing attribute (throws exception if not found)
98  /// \param attname name of attribute
99  Attribute open(const std::string& attrname) const final;
100 
101  /// \brief create a new attribute
102  /// \param attname name of attribute
103  /// \param in_memory_dataType fronted type marker
104  /// \param dimensions dimensions of attribute
105  Attribute create(const std::string& attrname, const Type& in_memory_dataType,
106  const std::vector<Dimensions_t>& dimensions = {1}) final;
107 
108  /// \brief rename an attribute
109  /// \param oldName current name of attribute
110  /// \param newName new name for attribute
111  void rename(const std::string& oldName, const std::string& newName) final;
112 };
113 #if defined(__INTEL_COMPILER)
114 # pragma warning(pop)
115 #endif
116 } // namespace ObsStore
117 } // namespace Engines
118 } // namespace ioda
119 
120 /// @}
Functions for ObsStore Attribute and Has_Attributes.
Interfaces for ioda::Group and related classes.
Functions for ObsStore type markers.
This class represents attributes, which may be attached to both Variables and Groups.
Definition: Attribute.h:493
This is the implementation of Attributes in ioda::ObsStore.
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.
This is the implementation of Has_Attributes in ioda::ObsStore.
std::shared_ptr< ioda::ObsStore::Has_Attributes > backend_
ObsStore Has_Attribute.
Represents the "type" (i.e. integer, string, float) of a piece of data.
Definition: Type.h:123
Attribute backends inherit from this.
Definition: Attribute.h:519
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
Backends implement type providers in conjunction with Attributes, Has_Attributes, Variables and Has_V...
Definition: Type_Provider.h:36
Common preprocessor definitions used throughout IODA.
@ ObsStore
ObsStore in-memory.
Describes the dimensions of an Attribute or Variable.
Definition: Dimensions.h:22