blob: 3c53b3826f4b91d5a094f069cabe4befe0339afc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// Copyright (C) 2018-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 <cc/stamped_element.h>
namespace isc {
namespace data {
StampedElement::StampedElement()
: BaseStampedElement(), server_tags_() {
}
bool
StampedElement::hasServerTag(const ServerTag& server_tag) const {
return (server_tags_.count(server_tag) > 0);
}
void
StampedElement::delServerTag(const std::string& server_tag) {
if (!server_tags_.erase(ServerTag(server_tag))) {
isc_throw(NotFound, "can't find server tag '" << server_tag << "' to delete");
}
}
bool
StampedElement::hasAllServerTag() const {
return (hasServerTag(ServerTag(ServerTag::ALL)));
}
ElementPtr
StampedElement::getMetadata() const {
ElementPtr metadata = Element::createMap();
ElementPtr tags = Element::createList();
for (auto server_tag : server_tags_) {
tags->add(Element::create(server_tag.get()));
}
metadata->set("server-tags", tags);
return (metadata);
}
} // end of namespace isc::data
} // end of namespace isc
|