X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2FIPUtil.py;h=8a8027fdf2c08196be91b871c82e447ca4317464;hp=dc4e8e5552693362b5212e672d1c472db965d162;hb=000ce799bfe473489bbe95e8b00a460270e1ff0b;hpb=5b98ebf4ea91b11c3316f4251c5b99f00910a465 diff --git a/resources/libraries/python/IPUtil.py b/resources/libraries/python/IPUtil.py index dc4e8e5552..8a8027fdf2 100644 --- a/resources/libraries/python/IPUtil.py +++ b/resources/libraries/python/IPUtil.py @@ -94,23 +94,30 @@ class IpDscp(IntEnum): class NetworkIncrement(ObjIncrement): """ An iterator object which accepts an IPv4Network or IPv6Network and - returns a new network incremented by the increment each time it's - iterated or when inc_fmt is called. The increment may be positive, - negative or 0 (in which case the network is always the same). + returns a new network, its address part incremented by the increment + number of network sizes, each time it is iterated or when inc_fmt is called. + The increment may be positive, negative or 0 + (in which case the network is always the same). + + Both initial and subsequent IP address can have host bits set, + check the initial value before creating instance if needed. + String formatting is configurable via constructor argument. """ - def __init__(self, initial_value, increment): + def __init__(self, initial_value, increment=1, format=u"dash"): """ - :param initial_value: The initial network. + :param initial_value: The initial network. Can have host bits set. :param increment: The current network will be incremented by this - amount in each iteration/var_str call. - :type initial_value: - Union[ipaddress.IPv4Network, ipaddress.IPv6Network]. + amount of network sizes in each iteration/var_str call. + :param format: Type of formatting to use, currently only "dash". + :type initial_value: Union[ipaddress.IPv4Network, ipaddress.IPv6Network] :type increment: int + :type format: str """ super().__init__(initial_value, increment) self._prefix_len = self._value.prefixlen host_len = self._value.max_prefixlen - self._prefix_len self._net_increment = self._increment * (1 << host_len) + self._format = str(format).lower() def _incr(self): """ @@ -120,17 +127,26 @@ class NetworkIncrement(ObjIncrement): """ self._value = ip_network( f"{self._value.network_address + self._net_increment}" - f"/{self._prefix_len}" + f"/{self._prefix_len}", strict=False ) def _str_fmt(self): """ - The string representation of the network is - ' - ' for the purposes of the - 'ipsec policy add spd' cli. + The string representation of the network depend on format. + Dash format is ' - ', + useful for 'ipsec policy add spd' cli. + Slash format is '/'. + + :returns: Current value converted to string according to format. + :rtype: str + :raises RuntimeError: If the format is not supported. """ - return f"{self._value.network_address} - " \ - f"{self._value.broadcast_address}" + if self._format == u"dash": + return f"{self._value.network_address} - " \ + f"{self._value.broadcast_address}" + # More formats will be added in subsequent changes. + else: + raise RuntimeError(f"Unsupported format {self._format}") class IPUtil: