IODA
Options.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 2020-2021 UCAR
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 /*! @file Options.h
9 * @brief Quick and easy key-value container that stringifies all values.
10 */
11 #include <exception>
12 #include <map>
13 #include <sstream>
14 #include <stdexcept>
15 #include <string>
16 
17 #include "../defs.h"
18 
19 namespace ioda {
20 /*! @brief Quick and easy key-value container that stringifies all values.
21 * @details Used in the ioda error system.
22 */
23 class Options {
24  std::map<std::string, std::string> mapStr_;
25 
26 public:
27  /// List all stored values.
28  inline void enumVals(std::ostream& out, int level = 1) const {
29  for (const auto& v : mapStr_) {
30  out.write("\t", level);
31  out << v.first << ":\t" << v.second << std::endl;
32  }
33  }
34  /// Does a key of the specified name exist?
35  inline bool has(const std::string& key) const noexcept {
36  if (mapStr_.count(key)) return true;
37  return false;
38  }
39  /// Retrieves an option.
40  template <class T>
41  T get(const std::string& key, bool& result) const {
42  if (!has(key)) {
43  result = false;
44  return T();
45  }
46  std::string valS = mapStr_.at(key);
47  std::istringstream i{valS};
48  T res{};
49  i >> res;
50  result = true;
51  return res;
52  }
53  /// Retrieves an option. Returns defaultval if nonexistant.
54  template <class T>
55  T get(const std::string& key, const T& defaultval, bool& result) const {
56  if (!has(key)) {
57  result = false;
58  return defaultval;
59  }
60  return get<T>(key, result);
61  }
62  /// Adds or replaces an option.
63  template <class T>
64  Options& set(const std::string& key, const T& value) {
65  std::ostringstream o;
66  o << value;
67  std::string valS = o.str();
68  mapStr_[key] = valS;
69  return *this;
70  }
71  /// Adds an option. Throws if the same name already exists.
72  template <class T>
73  Options& add(const std::string& key, const T& value) {
74  if (has(key)) throw std::logic_error("Key already exists.");
75  return this->set<T>(key, value);
76  }
77 };
78 
79 } // namespace ioda
Quick and easy key-value container that stringifies all values.
Definition: Options.h:23
T get(const std::string &key, const T &defaultval, bool &result) const
Retrieves an option. Returns defaultval if nonexistant.
Definition: Options.h:55
std::map< std::string, std::string > mapStr_
Definition: Options.h:24
Options & set(const std::string &key, const T &value)
Adds or replaces an option.
Definition: Options.h:64
bool has(const std::string &key) const noexcept
Does a key of the specified name exist?
Definition: Options.h:35
Options & add(const std::string &key, const T &value)
Adds an option. Throws if the same name already exists.
Definition: Options.h:73
T get(const std::string &key, bool &result) const
Retrieves an option.
Definition: Options.h:41
void enumVals(std::ostream &out, int level=1) const
List all stored values.
Definition: Options.h:28