blob: 67803b999069d7489aa42fb5d7d9e8ea64006f62 (
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
51
52
53
|
// Copyright (C) 2017 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/.
#ifndef CFG_HOSTS_UTIL_H
#define CFG_HOSTS_UTIL_H
#include <cc/data.h>
#include <dhcpsrv/subnet_id.h>
namespace isc {
namespace dhcp {
/// @brief Utility class to represent host reservation configurations
/// internally as a map keyed by subnet IDs, externally as a list Element.
class CfgHostsList {
public:
/// The type of the internal map
typedef std::map<SubnetID, isc::data::ElementPtr> CfgHostsMap;
/// @brief Internalize a list Element
///
/// This method gets a list Element and builds the internal map from it.
///
/// @param list the list Element
void internalize(isc::data::ConstElementPtr list);
/// @brief Externalize the map to a list Element
///
/// @return a list Element representing all host reservations
isc::data::ElementPtr externalize() const;
/// @brief Add a host reservation to the map
void add(SubnetID id, isc::data::ElementPtr resv);
/// @brief Return the host reservations for a subnet ID
///
/// @param id the subnet ID
/// @return a list Element with host reservations
isc::data::ConstElementPtr get(SubnetID id) const;
private:
/// @brief The internal map
CfgHostsMap map_;
};
}
}
#endif // CFG_HOSTS_UTIL_H
|