diff options
author | Ole Troan <ot@cisco.com> | 2018-12-17 12:02:26 +0100 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2018-12-18 11:54:24 +0000 |
commit | 8006c6aa425126529b4017768a9201e4f03964ad (patch) | |
tree | 7b7342e6fb4964a5c8ca65c3d13d8dcc980f120d /test/vpp_mac.py | |
parent | 02782d6ebd13ce02f2d3facebb54fec3c2137c88 (diff) |
PAPI: Add MACAddress object wrapper for vl_api_mac_address_t
Change the definition of vl_api_mac_address_t to an aliased type.
Change-Id: I1434f316d0fad6a099592f39bceeb8faeaf1d134
Signed-off-by: Ole Troan <ot@cisco.com>
Diffstat (limited to 'test/vpp_mac.py')
-rw-r--r-- | test/vpp_mac.py | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/test/vpp_mac.py b/test/vpp_mac.py deleted file mode 100644 index b20bf54634c..00000000000 --- a/test/vpp_mac.py +++ /dev/null @@ -1,50 +0,0 @@ -""" - MAC Types - -""" -import binascii - - -def mactobinary(mac): - """ Convert the : separated format into binary packet data for the API """ - return binascii.unhexlify(mac.replace(':', '')) - - -def binarytomac(binary): - """ Convert binary packed data in a : separated string """ - x = b':'.join(binascii.hexlify(binary)[i:i + 2] - for i in range(0, 12, 2)) - return str(x.decode('ascii')) - - -class VppMacAddress(): - def __init__(self, addr): - self._address = addr - - def encode(self): - return { - 'bytes': self.bytes - } - - @property - def bytes(self): - return mactobinary(self.address) - - @property - def address(self): - return self._address - - def __str__(self): - return self.address - - def __eq__(self, other): - if isinstance(other, self.__class__): - return self.address == other.address - elif hasattr(other, "bytes"): - # vl_api_mac_addres_t - return self.bytes == other.bytes - else: - raise TypeError("Comparing VppMacAddress:%s" - "with unknown type: %s" % - (self, other)) - return False |