From: Robert Varga Date: Fri, 25 Sep 2020 08:49:49 +0000 (+0200) Subject: Remove ByteBufUtils.macAddressToBytes() X-Git-Tag: release/silicon~110 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=da4e6503a8c1b50810c86a7f4189060ff1bf9bdc;p=openflowplugin.git Remove ByteBufUtils.macAddressToBytes() With all callers migrated, remove the now-unused method. Change-Id: I65412717a28c393d3e31d2cda19d8becb3278dd7 Signed-off-by: Robert Varga --- diff --git a/openflowjava/openflowjava-util/src/main/java/org/opendaylight/openflowjava/util/ByteBufUtils.java b/openflowjava/openflowjava-util/src/main/java/org/opendaylight/openflowjava/util/ByteBufUtils.java index 1454c72830..35878eb7a1 100644 --- a/openflowjava/openflowjava-util/src/main/java/org/opendaylight/openflowjava/util/ByteBufUtils.java +++ b/openflowjava/openflowjava-util/src/main/java/org/opendaylight/openflowjava/util/ByteBufUtils.java @@ -221,66 +221,6 @@ public abstract class ByteBufUtils { return sb.toString().trim(); } - private static int hexValue(final char ch) { - if (ch >= '0' && ch <= '9') { - return ch - '0'; - } - if (ch >= 'a' && ch <= 'f') { - return ch - 'a' + 10; - } - if (ch >= 'A' && ch <= 'F') { - return ch - 'A' + 10; - } - - throw new IllegalArgumentException(String.format("Invalid character '%s' encountered", ch)); - } - - /** - * Converts macAddress to byte array. See also {@link MacAddress}. - * - * @param macAddress the mac address to convert - * @return byte representation of mac address - * - * @deprecated Use IetfYangUtil.macAddressBytes(MacAddress) instead. - */ - @Deprecated(forRemoval = true) - @SuppressWarnings("checkstyle:IllegalCatch") - public static byte[] macAddressToBytes(final String macAddress) { - final byte[] result = new byte[EncodeConstants.MAC_ADDRESS_LENGTH]; - final char[] mac = macAddress.toCharArray(); - - try { - int offset = 0; - for (int i = 0; i < EncodeConstants.MAC_ADDRESS_LENGTH - 1; ++i) { - if (mac[offset + Byte.BYTES] == ':') { - result[i] = UnsignedBytes.checkedCast(hexValue(mac[offset])); - offset++; - } else { - result[i] = UnsignedBytes.checkedCast( - hexValue(mac[offset]) << 4 | hexValue(mac[offset + 1])); - offset += 2; - } - Preconditions.checkArgument(mac[offset] == ':', "Invalid value: %s", macAddress); - offset++; - } - - if (offset == mac.length - 1) { - result[EncodeConstants.MAC_ADDRESS_LENGTH - 1] = UnsignedBytes.checkedCast(hexValue(mac[offset])); - } else { - result[EncodeConstants.MAC_ADDRESS_LENGTH - 1] = - UnsignedBytes.checkedCast(hexValue(mac[offset]) << 4 | hexValue(mac[offset + 1])); - offset++; - } - if (offset != mac.length - 1) { - throw new IllegalArgumentException("Incorrect MAC address length"); - } - } catch (RuntimeException e) { - throw new IllegalArgumentException("Unable to serialize MAC address for input: " + macAddress - + ". \n" + e); - } - return result; - } - private static void appendHexByte(final StringBuilder sb, final byte value) { final int v = UnsignedBytes.toInt(value); sb.append(HEX_CHARS[v >>> 4]); diff --git a/openflowjava/openflowjava-util/src/test/java/org/opendaylight/openflowjava/util/ByteBufUtilsTest.java b/openflowjava/openflowjava-util/src/test/java/org/opendaylight/openflowjava/util/ByteBufUtilsTest.java index b0fe37a300..321ea1dbed 100644 --- a/openflowjava/openflowjava-util/src/test/java/org/opendaylight/openflowjava/util/ByteBufUtilsTest.java +++ b/openflowjava/openflowjava-util/src/test/java/org/opendaylight/openflowjava/util/ByteBufUtilsTest.java @@ -216,96 +216,6 @@ public class ByteBufUtilsTest { Assert.assertEquals("Strings does not match", expectedBinaryString, bitmaskValueInBinarySytring); } - /** - * Test of {@link ByteBufUtils#macAddressToBytes(String)}. - */ - @Test - public void testMacToBytes() { - Assert.assertArrayEquals("Wrong byte array", new byte[]{0, 1, 2, 3, (byte) 255, 5}, - ByteBufUtils.macAddressToBytes("00:01:02:03:FF:05")); - Assert.assertArrayEquals("Wrong byte array", new byte[]{1, 2, 3, 4, (byte) 255, 5}, - ByteBufUtils.macAddressToBytes("01:02:03:04:FF:05")); - Assert.assertArrayEquals("Wrong byte array", new byte[]{1, 2, 3, 4, (byte) 255, 5}, - ByteBufUtils.macAddressToBytes("1:2:3:4:FF:5")); - Assert.assertArrayEquals("Wrong byte array", new byte[]{1, 2, 3, 4, 5, (byte) 255}, - ByteBufUtils.macAddressToBytes("1:2:3:4:5:FF")); - Assert.assertArrayEquals("Wrong byte array", new byte[]{1, 15, 3, 4, 5, 6}, - ByteBufUtils.macAddressToBytes("1:F:3:4:5:6")); - } - - /** - * Test of {@link ByteBufUtils#macAddressToBytes(String)}. - */ - @Test(expected = IllegalArgumentException.class) - public void testMacToBytes2() { - Assert.assertArrayEquals("Wrong byte array", new byte[]{0, 1, 2, 3, (byte) 255, 5}, - ByteBufUtils.macAddressToBytes("00:01:02:03:FF:0G")); - } - - /** - * Test of {@link ByteBufUtils#macAddressToBytes(String)}. - */ - @Test(expected = IllegalArgumentException.class) - public void testMacToBytesTooShort() { - ByteBufUtils.macAddressToBytes("00:01:02:03:FF"); - } - - /** - * Test of {@link ByteBufUtils#macAddressToBytes(String)}. - */ - @Test(expected = IllegalArgumentException.class) - public void testMacToBytesTooShort2() { - ByteBufUtils.macAddressToBytes("00:01:02:03:FF:"); - } - - /** - * Test of {@link ByteBufUtils#macAddressToBytes(String)}. - */ - @Test(expected = IllegalArgumentException.class) - public void testIncorrectMacToBytes() { - ByteBufUtils.macAddressToBytes("00:01:02:03:FF::"); - } - - /** - * Test of {@link ByteBufUtils#macAddressToBytes(String)}. - */ - @Test(expected = IllegalArgumentException.class) - public void testIncorrectMacToBytes2() { - ByteBufUtils.macAddressToBytes("00:01:02:03:FF:::"); - } - - /** - * Test of {@link ByteBufUtils#macAddressToBytes(String)}. - */ - @Test(expected = IllegalArgumentException.class) - public void testMacToBytesTooLong() { - ByteBufUtils.macAddressToBytes("00:01:02:03:FF:05:85"); - } - - /** - * Test of {@link ByteBufUtils#macAddressToBytes(String)}. - */ - @Test(expected = IllegalArgumentException.class) - public void testMacToBytesInvalidOctet() { - ByteBufUtils.macAddressToBytes("00:01:02:03:FF:05d"); - } - - /** - * Test of {@link ByteBufUtils#macAddressToBytes(String)}. - */ - @Test(expected = IllegalArgumentException.class) - public void testMacToBytesInvalidOctet2() { - ByteBufUtils.macAddressToBytes("00:01:rr:03:FF:05"); - } - - /** - * Test of {@link ByteBufUtils#macAddressToBytes(String)}. - */ - @Test(expected = IllegalArgumentException.class) - public void testMacToBytesInvalidOctet3() { - ByteBufUtils.macAddressToBytes("00:01:05d:03:FF:02"); - } - /** * Test of {@link ByteBufUtils#macAddressToString(byte[])}. */