@@ -74,26 +74,22 @@ def release_address(self, hostname):
74
74
def _to_dict (self ):
75
75
_dict = {
76
76
"ip_version" : self ._ip_version ,
77
- "network_prefix_len" : self ._prefix_len ,
78
- "unused_addresses" : [str (k ) for k in self ._ipaddr_pool ],
77
+ "network" : str (self ._network ),
79
78
"hostnames" : {k : str (v ) for k , v in self ._hostnames .items ()},
80
79
}
81
80
82
81
return _dict
83
82
84
83
def _initialize_from_dict (self , ip_pool_dict : Dict ):
85
84
self ._ip_version = ip_pool_dict ["ip_version" ]
86
- self ._prefix_len = ip_pool_dict ["network_prefix_len" ]
87
- unused_addrs = ip_pool_dict ["unused_addresses" ]
85
+ network = IPv4Network (ip_pool_dict ["network" ])
88
86
hostnames = ip_pool_dict ["hostnames" ]
89
87
88
+ # unused_addrs = ip_pool_dict["unused_addresses"]
89
+
90
90
pool = []
91
91
# hostnames = {}
92
92
93
- for addr_str in unused_addrs :
94
- addr = IPv4Address (addr_str )
95
- pool .append (addr )
96
-
97
93
for hostname , addr_str in hostnames .items ():
98
94
addr = IPv4Address (addr_str )
99
95
if addr in hostnames .values ():
@@ -102,7 +98,13 @@ def _initialize_from_dict(self, ip_pool_dict: Dict):
102
98
f"Address [{ addr_str } ] used more than once: { dupes } "
103
99
)
104
100
hostnames [hostname ] = addr
101
+ pool = list (network .hosts ())
102
+ used_addrs = list (hostnames .values ())
103
+ for used in used_addrs :
104
+ if used in pool :
105
+ pool .remove (used )
105
106
107
+ self ._network = network
106
108
self ._hostnames = hostnames
107
109
self ._ipaddr_pool = pool
108
110
0 commit comments