IODA
Layout.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 /// \file Layout.cpp
8 /// \brief Contains implementations for how data are arranged in ioda internally.
9 
10 #include "ioda/Layout.h"
11 
12 #include <exception>
13 #include <vector>
14 
15 #include "ioda/defs.h"
16 #include "ioda/Exception.h"
18 
19 #include "ioda/config.h"
20 
21 #if (eckit_FOUND && oops_FOUND)
22 # define ENABLE_ODB_LAYOUT
24 #endif
25 
26 namespace ioda {
27 namespace detail {
28 std::shared_ptr<const DataLayoutPolicy> DataLayoutPolicy::generate(const std::string &polid) {
29  if (polid == "ObsGroup") {
30  return std::make_shared<DataLayoutPolicy_ObsGroup>();
31  } else if (polid == "ObsGroupODB") {
32  throw Exception("A mapping file is required for the ODB Data Layout Policy.", ioda_Here());
33  }
34  return std::make_shared<DataLayoutPolicy>();
35 }
36 
37 std::shared_ptr<const DataLayoutPolicy> DataLayoutPolicy::generate(Policies pol) {
38  if (pol == Policies::ObsGroup) {
39  return std::make_shared<DataLayoutPolicy_ObsGroup>();
40  } else if (pol == Policies::ObsGroupODB) {
41  throw Exception("A mapping file is required for the ODB Data Layout Policy.", ioda_Here());
42  }
43  return std::make_shared<DataLayoutPolicy>();
44 }
45 
46 std::shared_ptr<const DataLayoutPolicy> DataLayoutPolicy::generate(
47  const std::string &polid, const std::string &mapPath,
48  const std::vector<std::string> &nonODBVariables) {
49  std::string errorMessage;
50  if (polid != "ObsGroupODB")
51  errorMessage = "A mapping file is not relevant for the policy '" + polid + "'.";
52 
53  throw Exception(errorMessage.c_str(), ioda_Here());
54 #ifdef ENABLE_ODB_LAYOUT
55  return std::make_shared<DataLayoutPolicy_ObsGroup_ODB>(mapPath, nonODBVariables);
56 #else
57  errorMessage = "Cannot generate the policy '" + polid + "', as either eckit or oops are disabled.";
58  throw Exception(errorMessage.c_str(), ioda_Here());
59 #endif
60 }
61 
62 std::shared_ptr<const DataLayoutPolicy> DataLayoutPolicy::generate(
63  Policies pol, const std::string &mapPath, const std::vector<std::string> &nonODBVariables) {
64  std::string policyId;
65  if (pol == Policies::None) {
66  policyId = "None";
67  } else if (pol == Policies::ObsGroup) {
68  policyId = "ObsGroup";
69  } else if (pol == Policies::ObsGroupODB) {
70  policyId = "ObsGroupODB";
71  }
72  std::string errorMessage;
73  if (pol != Policies::ObsGroupODB) {
74  errorMessage = "A mapping file is not relevant for the policy '" + policyId + "'.";
75  throw Exception(errorMessage.c_str(), ioda_Here());
76  }
77 #ifdef ENABLE_ODB_LAYOUT
78  return std::make_shared<DataLayoutPolicy_ObsGroup_ODB>(mapPath, nonODBVariables);
79 #else
80  errorMessage = "Cannot generate the policy '" + policyId +
81  "', as eckit or oops are disabled.";
82  throw Exception(errorMessage.c_str(), ioda_Here());
83 #endif
84 }
85 
89  // Do nothing in the default policy.
90 }
91 
92 std::string DataLayoutPolicy::name() const { return std::string{"None / no policy"}; }
93 
94 std::string DataLayoutPolicy::doMap(const std::string &str) const { return str; }
95 
96 bool DataLayoutPolicy::isComplementary(const std::string &str) const { return false; }
97 
98 bool DataLayoutPolicy::isMapped(const std::string &) const { return false; }
99 
100 bool DataLayoutPolicy::isMapOutput(const std::string &) const { return false; }
101 
102 size_t DataLayoutPolicy::getComplementaryPosition(const std::string &str) const {
103  throw Exception("Illogical operation for non-ODB data layout policies.", ioda_Here());
104 }
105 
106 std::string DataLayoutPolicy::getOutputNameFromComponent(const std::string &str) const {
107  throw Exception("Illogical operation for non-ODB data layout policies.", ioda_Here());
108 }
109 
110 std::type_index DataLayoutPolicy::getOutputVariableDataType(const std::string &str) const {
111  throw Exception("Illogical operation for non-ODB data layout policies.", ioda_Here());
112 }
113 
115  throw Exception("Illogical operation for non-ODB data layout policies.", ioda_Here());
116 }
117 
118 size_t DataLayoutPolicy::getInputsNeeded(const std::string &str) const {
119  throw Exception("Illogical operation for non-ODB data layout policies.", ioda_Here());
120 }
121 
122 std::pair<bool, std::string> DataLayoutPolicy::getUnit(const std::string &) const {
123  throw Exception("Illogical operation for non-ODB data layout policies.", ioda_Here());
124 }
125 
126 } // namespace detail
127 } // namespace ioda
IODA's error system.
Contains definitions for how data are arranged in ioda internally.
Contains definitions for how data are arranged in ioda internally.
Contains definitions for how ODB data are arranged in ioda internally.
The ioda exception class.
Definition: Exception.h:54
virtual size_t getComplementaryPosition(const std::string &) const
Definition: Layout.cpp:102
virtual std::type_index getOutputVariableDataType(const std::string &) const
Definition: Layout.cpp:110
virtual std::pair< bool, std::string > getUnit(const std::string &) const
Definition: Layout.cpp:122
static std::shared_ptr< const DataLayoutPolicy > generate(const std::string &polid="")
Factory generator.
Definition: Layout.cpp:28
virtual MergeMethod getMergeMethod(const std::string &) const
Definition: Layout.cpp:114
virtual bool isComplementary(const std::string &) const
Check if the named variable will be a part of a derived variable.
Definition: Layout.cpp:96
virtual bool isMapped(const std::string &) const
Check if the named variable is in the Variables section of the ODB mapping file.
Definition: Layout.cpp:98
virtual std::string getOutputNameFromComponent(const std::string &) const
Definition: Layout.cpp:106
@ None
Do no manipulation of the Group / Variable layout.
virtual void initializeStructure(Group_Base &) const
Definition: Layout.cpp:88
virtual std::string name() const
A descriptive name for the policy.
Definition: Layout.cpp:92
virtual std::string doMap(const std::string &) const
Map a user-specified Variable path to the correct location.
Definition: Layout.cpp:94
virtual size_t getInputsNeeded(const std::string &) const
Definition: Layout.cpp:118
virtual bool isMapOutput(const std::string &) const
Check if the named variable matches one of the output (ioda) names.
Definition: Layout.cpp:100
Hidden base class to prevent constructor confusion.
Definition: Group.h:42
Common preprocessor definitions used throughout IODA.
#define ioda_Here()