IODA
Selection.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  */
8 
9 #include "ioda/defs.h"
11 
12 namespace ioda {
13 // Note the NOLINTs. These are trivial and thus should never
14 // actually fail.
15 const Selection Selection::all({}, SelectionState::ALL); // NOLINT
16 const Selection Selection::none({}, SelectionState::NONE); // NOLINT
17 
19  if (backend_) return backend_;
20  backend_ = var.instantiateSelection(*this);
21  return backend_;
22 }
23 
24 namespace Selections {
26 } // namespace Selections
27 
28 } // namespace ioda
Dataspace selections for reading and writing ioda::Variable data.
Interfaces for ioda::Variable and related classes.
Variables store data!
Definition: Variable.h:680
virtual Selections::SelectionBackend_t instantiateSelection(const Selection &sel) const
Convert a selection into its backend representation.
Definition: Variable.cpp:344
Common preprocessor definitions used throughout IODA.
std::shared_ptr< InstantiatedSelection > SelectionBackend_t
Definition: Selection.h:35
Selections::SelectionBackend_t concretize() const
Return the cached selection object.
Definition: Selection.h:123
static IODA_DL const Selection none
Definition: Selection.h:132
static IODA_DL const Selection all
Definition: Selection.h:131
Selections::SelectionBackend_t backend_
Using an opaque object to implement a cache of the Selection for a backend.
Definition: Selection.h:138