Search in sources :

Example 1 with Ipv4DestinationCase

use of org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.unreach.destination.object.unreach.destination.obj.destination.Ipv4DestinationCase in project bgpcep by opendaylight.

the class PCEPUnreachDestinationSerializer method serializeObject.

@Override
public void serializeObject(final Object object, final ByteBuf buffer) {
    Preconditions.checkArgument(object instanceof UnreachDestinationObj, "Wrong instance of PCEPObject. Passed %s. Needed UnreachDestinationObj.", object.getClass());
    final UnreachDestinationObj uPObj = (UnreachDestinationObj) object;
    final Destination destination = uPObj.getDestination();
    final Boolean processing = object.getProcessingRule();
    final Boolean ignore = object.getIgnore();
    if (destination instanceof Ipv6DestinationCase) {
        final Ipv6DestinationCase ipv6 = (Ipv6DestinationCase) destination;
        PCEPIpv6UnreachDestinationParser.serializeObject(processing, ignore, ipv6, buffer);
    } else if (destination instanceof Ipv4DestinationCase) {
        final Ipv4DestinationCase ipv4 = (Ipv4DestinationCase) destination;
        PCEPIpv4UnreachDestinationParser.serializeObject(processing, ignore, ipv4, buffer);
    }
}
Also used : Destination(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.unreach.destination.object.unreach.destination.obj.Destination) Ipv6DestinationCase(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.unreach.destination.object.unreach.destination.obj.destination.Ipv6DestinationCase) Ipv4DestinationCase(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.unreach.destination.object.unreach.destination.obj.destination.Ipv4DestinationCase) UnreachDestinationObj(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.unreach.destination.object.UnreachDestinationObj)

Example 2 with Ipv4DestinationCase

use of org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.unreach.destination.object.unreach.destination.obj.destination.Ipv4DestinationCase in project bgpcep by opendaylight.

the class PCEPObjectParserTest method testPCEPIpv4UnreachDestinationObject.

@Test
public void testPCEPIpv4UnreachDestinationObject() throws Exception {
    final byte[] expected = { 0x1c, 0x10, 0x0, 0x8, (byte) 0x7F, (byte) 0x0, (byte) 0x0, (byte) 0x1 };
    final PCEPIpv4UnreachDestinationParser parser = new PCEPIpv4UnreachDestinationParser();
    final PCEPUnreachDestinationSerializer serializer = new PCEPUnreachDestinationSerializer();
    final ByteBuf result = Unpooled.wrappedBuffer(expected);
    final UnreachDestinationObjBuilder builder = new UnreachDestinationObjBuilder();
    builder.setProcessingRule(false);
    builder.setIgnore(false);
    final Ipv4DestinationCase dest = new Ipv4DestinationCaseBuilder().setDestinationIpv4Address(Collections.singletonList(new Ipv4AddressNoZone("127.0.0.1"))).build();
    builder.setDestination(dest);
    assertEquals(builder.build(), parser.parseObject(new ObjectHeaderImpl(false, false), result.slice(4, result.readableBytes() - 4)));
    final ByteBuf buf = Unpooled.buffer();
    serializer.serializeObject(builder.build(), buf);
    assertArrayEquals(result.array(), ByteArray.getAllBytes(buf));
    try {
        parser.parseObject(new ObjectHeaderImpl(true, true), null);
        fail();
    } catch (final IllegalArgumentException e) {
        assertEquals("Array of bytes is mandatory. Can't be null or empty.", e.getMessage());
    }
}
Also used : ObjectHeaderImpl(org.opendaylight.protocol.pcep.spi.ObjectHeaderImpl) PCEPIpv4UnreachDestinationParser(org.opendaylight.protocol.pcep.parser.object.unreach.PCEPIpv4UnreachDestinationParser) Ipv4AddressNoZone(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4AddressNoZone) PCEPUnreachDestinationSerializer(org.opendaylight.protocol.pcep.parser.object.unreach.PCEPUnreachDestinationSerializer) Ipv4DestinationCase(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.unreach.destination.object.unreach.destination.obj.destination.Ipv4DestinationCase) ByteBuf(io.netty.buffer.ByteBuf) UnreachDestinationObjBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.unreach.destination.object.UnreachDestinationObjBuilder) Ipv4DestinationCaseBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.unreach.destination.object.unreach.destination.obj.destination.Ipv4DestinationCaseBuilder) Test(org.junit.Test)

Example 3 with Ipv4DestinationCase

use of org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.unreach.destination.object.unreach.destination.obj.destination.Ipv4DestinationCase in project bgpcep by opendaylight.

the class PCEPIpv4UnreachDestinationParser method serializeObject.

public static void serializeObject(final Boolean processing, final Boolean ignore, final Ipv4DestinationCase ipv4Case, final ByteBuf buffer) {
    final List<Ipv4AddressNoZone> dest = ipv4Case.getDestinationIpv4Address();
    checkArgument(dest != null, "DestinationIpv4Address is mandatory.");
    final ByteBuf body = Unpooled.buffer(Ipv4Util.IP4_LENGTH * dest.size());
    dest.forEach(ipv4 -> Ipv4Util.writeIpv4Address(ipv4, body));
    ObjectUtil.formatSubobject(TYPE, CLASS, processing, ignore, body, buffer);
}
Also used : Ipv4AddressNoZone(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4AddressNoZone) ByteBuf(io.netty.buffer.ByteBuf)

Aggregations

ByteBuf (io.netty.buffer.ByteBuf)2 Ipv4AddressNoZone (org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4AddressNoZone)2 Ipv4DestinationCase (org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.unreach.destination.object.unreach.destination.obj.destination.Ipv4DestinationCase)2 Test (org.junit.Test)1 PCEPIpv4UnreachDestinationParser (org.opendaylight.protocol.pcep.parser.object.unreach.PCEPIpv4UnreachDestinationParser)1 PCEPUnreachDestinationSerializer (org.opendaylight.protocol.pcep.parser.object.unreach.PCEPUnreachDestinationSerializer)1 ObjectHeaderImpl (org.opendaylight.protocol.pcep.spi.ObjectHeaderImpl)1 UnreachDestinationObj (org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.unreach.destination.object.UnreachDestinationObj)1 UnreachDestinationObjBuilder (org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.unreach.destination.object.UnreachDestinationObjBuilder)1 Destination (org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.unreach.destination.object.unreach.destination.obj.Destination)1 Ipv4DestinationCaseBuilder (org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.unreach.destination.object.unreach.destination.obj.destination.Ipv4DestinationCaseBuilder)1 Ipv6DestinationCase (org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.unreach.destination.object.unreach.destination.obj.destination.Ipv6DestinationCase)1