Search in sources :

Example 1 with PCEPClassTypeObjectParser

use of org.opendaylight.protocol.pcep.parser.object.PCEPClassTypeObjectParser in project bgpcep by opendaylight.

the class PCEPObjectParserTest method testClassTypeObject.

@Test
public void testClassTypeObject() throws PCEPDeserializerException {
    final PCEPClassTypeObjectParser parser = new PCEPClassTypeObjectParser();
    final ByteBuf result = Unpooled.wrappedBuffer(new byte[] { (byte) 0x16, (byte) 0x12, (byte) 0x00, (byte) 0x08, 0, 0, 0, (byte) 0x04 });
    final ClassTypeBuilder builder = new ClassTypeBuilder();
    builder.setProcessingRule(true);
    builder.setIgnore(false);
    builder.setClassType(new ClassType((short) 4));
    assertEquals(builder.build(), parser.parseObject(new ObjectHeaderImpl(true, false), result.slice(4, result.readableBytes() - 4)));
    final ByteBuf buf = Unpooled.buffer();
    parser.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());
    }
    try {
        parser.parseObject(new ObjectHeaderImpl(true, true), Unpooled.EMPTY_BUFFER);
        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) PCEPClassTypeObjectParser(org.opendaylight.protocol.pcep.parser.object.PCEPClassTypeObjectParser) ByteBuf(io.netty.buffer.ByteBuf) ClassTypeBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.classtype.object.ClassTypeBuilder) ClassType(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.ClassType) Test(org.junit.Test)

Example 2 with PCEPClassTypeObjectParser

use of org.opendaylight.protocol.pcep.parser.object.PCEPClassTypeObjectParser in project bgpcep by opendaylight.

the class BaseParserExtensionActivator method registerExtensionsObjectParsers.

private static void registerExtensionsObjectParsers(final List<AutoCloseable> regs, final PCEPExtensionProviderContext context, final TlvRegistry tlvReg, final VendorInformationTlvRegistry viTlvReg, final EROSubobjectRegistry eroSubReg) {
    final PCEPPathKeyObjectParser pathKeyParser = new PCEPPathKeyObjectParser(eroSubReg);
    regs.add(context.registerObjectParser(PCEPPathKeyObjectParser.CLASS, PCEPPathKeyObjectParser.TYPE, pathKeyParser));
    regs.add(context.registerObjectSerializer(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.path.key.object.PathKey.class, pathKeyParser));
    final PCEPExcludeRouteObjectParser xroParser = new PCEPExcludeRouteObjectParser(context.getXROSubobjectHandlerRegistry());
    regs.add(context.registerObjectParser(PCEPExcludeRouteObjectParser.CLASS, PCEPExcludeRouteObjectParser.TYPE, xroParser));
    regs.add(context.registerObjectSerializer(Xro.class, xroParser));
    final PCEPObjectiveFunctionObjectParser objectiveParser = new PCEPObjectiveFunctionObjectParser(tlvReg, viTlvReg);
    regs.add(context.registerObjectParser(PCEPObjectiveFunctionObjectParser.CLASS, PCEPObjectiveFunctionObjectParser.TYPE, objectiveParser));
    regs.add(context.registerObjectSerializer(Of.class, objectiveParser));
    final PCEPClassTypeObjectParser ctParser = new PCEPClassTypeObjectParser();
    regs.add(context.registerObjectParser(PCEPClassTypeObjectParser.CLASS, PCEPClassTypeObjectParser.TYPE, ctParser));
    regs.add(context.registerObjectSerializer(ClassType.class, ctParser));
    final PCEPGlobalConstraintsObjectParser gcParser = new PCEPGlobalConstraintsObjectParser(tlvReg, viTlvReg);
    regs.add(context.registerObjectParser(PCEPGlobalConstraintsObjectParser.CLASS, PCEPGlobalConstraintsObjectParser.TYPE, gcParser));
    regs.add(context.registerObjectSerializer(Gc.class, gcParser));
    registerMonitoringExtensionParsers(regs, context, tlvReg, viTlvReg);
}
Also used : PCEPObjectiveFunctionObjectParser(org.opendaylight.protocol.pcep.parser.object.PCEPObjectiveFunctionObjectParser) ClassType(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.classtype.object.ClassType) Xro(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.exclude.route.object.Xro) PCEPGlobalConstraintsObjectParser(org.opendaylight.protocol.pcep.parser.object.PCEPGlobalConstraintsObjectParser) Of(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.of.object.Of) PCEPPathKeyObjectParser(org.opendaylight.protocol.pcep.parser.object.PCEPPathKeyObjectParser) PCEPExcludeRouteObjectParser(org.opendaylight.protocol.pcep.parser.object.PCEPExcludeRouteObjectParser) PCEPClassTypeObjectParser(org.opendaylight.protocol.pcep.parser.object.PCEPClassTypeObjectParser) Gc(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.gc.object.Gc)

Aggregations

PCEPClassTypeObjectParser (org.opendaylight.protocol.pcep.parser.object.PCEPClassTypeObjectParser)2 ByteBuf (io.netty.buffer.ByteBuf)1 Test (org.junit.Test)1 PCEPExcludeRouteObjectParser (org.opendaylight.protocol.pcep.parser.object.PCEPExcludeRouteObjectParser)1 PCEPGlobalConstraintsObjectParser (org.opendaylight.protocol.pcep.parser.object.PCEPGlobalConstraintsObjectParser)1 PCEPObjectiveFunctionObjectParser (org.opendaylight.protocol.pcep.parser.object.PCEPObjectiveFunctionObjectParser)1 PCEPPathKeyObjectParser (org.opendaylight.protocol.pcep.parser.object.PCEPPathKeyObjectParser)1 ObjectHeaderImpl (org.opendaylight.protocol.pcep.spi.ObjectHeaderImpl)1 ClassType (org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.ClassType)1 ClassType (org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.classtype.object.ClassType)1 ClassTypeBuilder (org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.classtype.object.ClassTypeBuilder)1 Xro (org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.exclude.route.object.Xro)1 Gc (org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.gc.object.Gc)1 Of (org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.of.object.Of)1