Kea  1.9.9-git
backend_selector.cc
Go to the documentation of this file.
1 // Copyright (C) 2018-2021 Internet Systems Consortium, Inc. ("ISC")
2 //
3 // This Source Code Form is subject to the terms of the Mozilla Public
4 // License, v. 2.0. If a copy of the MPL was not distributed with this
5 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 
7 #include <config.h>
8 
10 #include <exceptions/exceptions.h>
11 #include <limits>
12 #include <sstream>
13 
14 using namespace isc::data;
15 
16 namespace isc {
17 namespace db {
18 
19 BackendSelector::BackendSelector()
20  : backend_type_(BackendSelector::Type::UNSPEC),
21  host_(), port_(0) {
22 }
23 
25  : backend_type_(backend_type),
26  host_(), port_(0) {
27 }
28 
29 BackendSelector::BackendSelector(const std::string& host,
30  const uint16_t port)
31  : backend_type_(BackendSelector::Type::UNSPEC),
32  host_(host), port_(port) {
33  validate();
34 }
35 
37  : backend_type_(BackendSelector::Type::UNSPEC),
38  host_(), port_(0) {
39  if (access_map->getType() != Element::map) {
40  isc_throw(BadValue, "database access information must be a map");
41  }
42 
43  ConstElementPtr t = access_map->get("type");
44  if (t) {
45  if (t->getType() != Element::string) {
46  isc_throw(BadValue, "'type' parameter must be a string");
47  }
48  backend_type_ = stringToBackendType(t->stringValue());
49  }
50 
51  ConstElementPtr h = access_map->get("host");
52  if (h) {
53  if (h->getType() != Element::string) {
54  isc_throw(BadValue, "'host' parameter must be a string");
55  }
56  host_ = h->stringValue();
57  }
58 
59  ConstElementPtr p = access_map->get("port");
60  if (p) {
61  if ((p->getType() != Element::integer) ||
62  (p->intValue() < 0) ||
63  (p->intValue() > std::numeric_limits<uint16_t>::max())) {
64  isc_throw(BadValue, "'port' parameter must be a number in range from 0 "
65  "to " << std::numeric_limits<uint16_t>::max());
66  }
67  port_ = static_cast<uint16_t>(p->intValue());
68  }
69 
70  validate();
71 }
72 
73 const BackendSelector&
75  static BackendSelector selector;
76  return (selector);
77 }
78 
79 bool
81  return ((backend_type_ == BackendSelector::Type::UNSPEC) &&
82  (host_.empty()) &&
83  (port_ == 0));
84 }
85 
86 std::string
88  std::ostringstream s;
89  if (amUnspecified()) {
90  s << "unspecified";
91 
92  } else {
93  if (backend_type_ != BackendSelector::Type::UNSPEC) {
94  s << "type=" << backendTypeToString(backend_type_) << ",";
95  }
96 
97  if (!host_.empty()) {
98  s << "host=" << host_ << ",";
99 
100  if (port_ > 0) {
101  s << "port=" << port_ << ",";
102  }
103  }
104  }
105 
106  std::string text = s.str();
107  if ((!text.empty() && (text.back() == ','))) {
108  text.pop_back();
109  }
110 
111  return (text);
112 }
113 
116  if (backend_type_ == BackendSelector::Type::UNSPEC) {
117  isc_throw(BadValue, "toElement: backend selector type is unspecified");
118  }
119  ElementPtr result = Element::createMap();
120  result->set("type", Element::create(backendTypeToString(backend_type_)));
121  if (!host_.empty()) {
122  result->set("host", Element::create(host_));
123  if (port_ > 0) {
124  result->set("port", Element::create(static_cast<long int>(port_)));
125  }
126  }
127  return (result);
128 }
129 
131 BackendSelector::stringToBackendType(const std::string& type) {
132  if (type == "mysql") {
134 
135  } else if (type == "pgsql") {
137 
138  } else if (type == "cql") {
140 
141  } else {
142  isc_throw(BadValue, "unsupported configuration backend type '" << type << "'");
143  }
144 }
145 
146 std::string
148  switch (type) {
150  return ("mysql");
152  return ("pgsql");
154  return ("cql");
155  default:
156  ;
157  }
158 
159  return (std::string());
160 }
161 
162 void
163 BackendSelector::validate() const {
164  if ((port_ != 0) && (host_.empty())) {
165  isc_throw(BadValue, "'host' must be specified along with 'port' parameter");
166  }
167 }
168 
169 } // end of namespace isc::db
170 } // end of namespace isc
static const BackendSelector & UNSPEC()
Returns instance of the "unspecified" backend selector.
static Type stringToBackendType(const std::string &type)
Converts string to backend type.
static std::string backendTypeToString(const Type &type)
Converts backend type to string.
bool amUnspecified() const
Checks if selector is "unspecified".
boost::shared_ptr< Element > ElementPtr
Definition: data.h:20
std::string toText() const
Returns selections as text.
#define isc_throw(type, stream)
A shortcut macro to insert known values into exception arguments.
A generic exception that is thrown if a parameter given to a method is considered invalid in that con...
boost::shared_ptr< const Element > ConstElementPtr
Definition: data.h:23
BackendSelector()
Default constructor.
Defines the logger used by the top-level component of kea-dhcp-ddns.
Type
Supported database types.
Config Backend selector.
virtual data::ElementPtr toElement() const
Unparse a backend selector object.