IODA
ObsStore.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_cxx_engines_pub_ObsStore
8  *
9  * @{
10  * \file ObsStore.cpp
11  * \brief ObsStore engine bindings
12  */
13 #include "ioda/Engines/ObsStore.h"
14 
15 #include "./Group.hpp"
16 #include "./ObsStore-groups.h"
17 #include "ioda/Group.h"
18 
19 namespace ioda {
20 namespace Engines {
21 namespace ObsStore {
22 
23 // Create chain of objects Group --> ObsStore_Group_Backend --> ObsStore::Group
25  auto backend = std::make_shared<ObsStore_Group_Backend>(ioda::ObsStore::Group::createRootGroup());
26  return ::ioda::Group{backend};
27 }
28 
30  static Capabilities caps;
31  static bool inited = false;
32  if (!inited) {
37  }
38 
39  return caps;
40 }
41 
42 } // namespace ObsStore
43 } // namespace Engines
44 } // namespace ioda
Interfaces for ioda::Group and related classes.
Functions for ObsStore Group and Has_Groups.
Functions for ioda::Group backed by ObsStore.
ObsStore engine.
Groups are a new implementation of ObsSpaces.
Definition: Group.h:159
static std::shared_ptr< Group > createRootGroup()
Creates a root group.
IODA_DL Group createRootGroup()
Create a ioda::Group backed by an OsbStore Group object.
Definition: ObsStore.cpp:24
IODA_DL Capabilities getCapabilities()
Get capabilities of the ObsStore engine.
Definition: ObsStore.cpp:29
@ Unsupported
The feature causes an exception if used.
@ Ignored
The feature is silently disabled or unimplemented.
@ ObsStore
ObsStore in-memory.
Struct defining what an engine can/cannot do.
Definition: Capabilities.h:47
Capability_Mask canCompressWithGZIP
Definition: Capabilities.h:49
Capability_Mask canChunk
Definition: Capabilities.h:48
Capability_Mask MPIaware
Definition: Capabilities.h:51
Capability_Mask canCompressWithSZIP
Definition: Capabilities.h:50