// Copyright (C) 2019-2020 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include <config.h>
#include <database/server.h>
#include <exceptions/exceptions.h>
#include <boost/make_shared.hpp><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
using namespace isc::db;
using namespace isc::data;
namespace isc {
namespace db {
Server::Server(const ServerTag& tag, const std::string& description)
: BaseStampedElement(), server_tag_(tag), description_(description) {
if (description_.length() > 65536) {
isc_throw(BadValue, "server description must not be longer than"
" 65536 characters");
}
}
ServerPtr
Server::create(const ServerTag& tag, const std::string& description) {
return (boost::make_shared<Server>(tag, description));
}
ElementPtr
Server::toElement() const {
ElementPtr result = Element::createMap();
result->set("server-tag", Element::create(getServerTagAsText()));
result->set("description", Element::create(getDescription()));
return (result);
}
} // end of namespace isc::db
} // end of namespace isc