IODA
OdbQueryParameters.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Crown Copyright Met Office 2021
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  */
8 
9 #include <string>
10 #include <utility>
11 #include <vector>
12 
14 #include "oops/util/AnyOf.h"
15 #include "oops/util/parameters/OptionalParameter.h"
16 #include "oops/util/parameters/Parameter.h"
17 #include "oops/util/parameters/Parameters.h"
18 #include "oops/util/parameters/ParameterTraitsAnyOf.h"
19 #include "oops/util/parameters/RequiredParameter.h"
20 
21 namespace eckit {
22  class Configuration;
23 }
24 
25 namespace ioda {
26 namespace Engines {
27 namespace ODC {
28 
29 enum class StarParameter {
30  ALL
31 };
32 
35  static constexpr char enumTypeName[] = "StarParameter";
36  static constexpr util::NamedEnumerator<StarParameter> namedValues[] = {
37  { StarParameter::ALL, "ALL" }
38  };
39 };
40 
41 } // namespace ODC
42 } // namespace Engines
43 } // namespace ioda
44 
45 namespace oops {
46 
47 template<>
48 struct ParameterTraits<ioda::Engines::ODC::StarParameter> :
49  public EnumParameterTraits<ioda::Engines::ODC::StarParameterTraitsHelper>
50 {};
51 
52 } // namespace oops
53 
54 namespace ioda {
55 namespace Engines {
56 namespace ODC {
57 
58 class OdbVariableParameters : public oops::Parameters {
59  OOPS_CONCRETE_PARAMETERS(OdbVariableParameters, Parameters)
60 
61  public:
62  /// The column to use to match the conditions
63  oops::RequiredParameter<std::string> name{"name", this};
64 
65  /// Select locations at which the condition variable is greater than or equal to the specified
66  /// value. Can be set to an int, float or datetime in the ISO 8601 format (if any datetime
67  /// components are zero, they are ignored).
68  oops::OptionalParameter<util::AnyOf<int, float, util::PartialDateTime>> minvalue{
69  "min value", this
70  };
71 
72  /// Select locations at which the condition variable is less than or equal to the specified
73  /// value. Can be set to an int, float or datetime in the ISO 8601 format (if any datetime
74  /// components are zero, they are ignored).
75  oops::OptionalParameter<util::AnyOf<int, float, util::PartialDateTime>> maxvalue{
76  "max value", this};
77 
78  /// Select locations at which the condition variable is not set to the missing value indicator.
79  oops::OptionalParameter<bool> isDefined{"is defined", this};
80 };
81 
82 class OdbWhereParameters : public oops::Parameters {
83  OOPS_CONCRETE_PARAMETERS(OdbWhereParameters, Parameters)
84 
85  public:
86  /// The varnos to query data from
87  oops::RequiredParameter<util::AnyOf<StarParameter, std::vector<int>>> varno{
88  "varno", this};
89  /// Optional free-form query
90  oops::Parameter<std::string> query{
91  "query", "", this};
92 };
93 
94 class OdbQueryParameters : public oops::Parameters {
95  OOPS_CONCRETE_PARAMETERS(OdbQueryParameters, Parameters)
96 
97  public:
98  /// Variables to select
99  oops::Parameter<std::vector<OdbVariableParameters>> variables{ "variables", {}, this };
100 
101  /// Selection criteria
102  oops::RequiredParameter<OdbWhereParameters> where{"where", this};
103 };
104 
105 } // namespace ODC
106 } // namespace Engines
107 } // namespace ioda
Interfaces for ioda::Variable and related classes.
oops::Parameter< std::vector< OdbVariableParameters > > variables
Variables to select.
oops::RequiredParameter< OdbWhereParameters > where
Selection criteria.
oops::OptionalParameter< bool > isDefined
Select locations at which the condition variable is not set to the missing value indicator.
oops::OptionalParameter< util::AnyOf< int, float, util::PartialDateTime > > minvalue
oops::RequiredParameter< std::string > name
The column to use to match the conditions.
oops::OptionalParameter< util::AnyOf< int, float, util::PartialDateTime > > maxvalue
oops::RequiredParameter< util::AnyOf< StarParameter, std::vector< int > > > varno
The varnos to query data from.
oops::Parameter< std::string > query
Optional free-form query.
static constexpr util::NamedEnumerator< StarParameter > namedValues[]