Bug-479: Implementation of Vendor-Information TLV
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / object / PCEPNotificationObjectParser.java
index 362fc28e0f2e3032389da2e78381bd9119bdaa99..d4b7dbc1fc8d8f66ac18ffb008643cce9da03014 100644 (file)
@@ -7,9 +7,18 @@
  */
 package org.opendaylight.protocol.pcep.impl.object;
 
+import static org.opendaylight.protocol.util.ByteBufWriteUtil.writeUnsignedByte;
+
+import com.google.common.base.Preconditions;
+import com.google.common.primitives.UnsignedBytes;
+import io.netty.buffer.ByteBuf;
+import io.netty.buffer.Unpooled;
+import java.util.List;
+import org.opendaylight.protocol.pcep.spi.AbstractObjectWithTlvsParser;
+import org.opendaylight.protocol.pcep.spi.ObjectUtil;
 import org.opendaylight.protocol.pcep.spi.PCEPDeserializerException;
-import org.opendaylight.protocol.pcep.spi.TlvHandlerRegistry;
-import org.opendaylight.protocol.util.ByteArray;
+import org.opendaylight.protocol.pcep.spi.TlvRegistry;
+import org.opendaylight.protocol.pcep.spi.VendorInformationTlvRegistry;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Object;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.ObjectHeader;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Tlv;
@@ -18,92 +27,74 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.typ
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.notification.object.c.notification.Tlvs;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.notification.object.c.notification.TlvsBuilder;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.overload.duration.tlv.OverloadDuration;
-
-import com.google.common.primitives.UnsignedBytes;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.vendor.information.tlvs.VendorInformationTlv;
 
 /**
  * Parser for {@link CNotification}
  */
 public class PCEPNotificationObjectParser extends AbstractObjectWithTlvsParser<CNotificationBuilder> {
 
-       public static final int CLASS = 12;
-
-       public static final int TYPE = 1;
-
-       /*
-        * lengths of fields
-        */
-       private static final int FLAGS_F_LENGTH = 1;
-       private static final int NT_F_LENGTH = 1;
-       private static final int NV_F_LENGTH = 1;
-
-       /*
-        * offsets of fields
-        */
-       private static final int FLAGS_F_OFFSET = 1;
-       private static final int NT_F_OFFSET = FLAGS_F_OFFSET + FLAGS_F_LENGTH;
-       private static final int NV_F_OFFSET = NT_F_OFFSET + NT_F_LENGTH;
-       private static final int TLVS_OFFSET = NV_F_OFFSET + NV_F_LENGTH;
-
-       public PCEPNotificationObjectParser(final TlvHandlerRegistry tlvReg) {
-               super(tlvReg);
-       }
-
-       @Override
-       public CNotification parseObject(final ObjectHeader header, final byte[] bytes) throws PCEPDeserializerException {
-               if (bytes == null || bytes.length == 0) {
-                       throw new IllegalArgumentException("Array of bytes is mandatory. Can't be null or empty.");
-               }
-               final CNotificationBuilder builder = new CNotificationBuilder();
-               builder.setIgnore(header.isIgnore());
-               builder.setProcessingRule(header.isProcessingRule());
-               builder.setType((short) UnsignedBytes.toInt(bytes[NT_F_OFFSET]));
-               builder.setValue((short) UnsignedBytes.toInt(bytes[NV_F_OFFSET]));
-               parseTlvs(builder, ByteArray.cutBytes(bytes, TLVS_OFFSET));
-               return builder.build();
-       }
-
-       @Override
-       public void addTlv(final CNotificationBuilder builder, final Tlv tlv) {
-               if (tlv instanceof OverloadDuration && builder.getType() == 2 && builder.getValue() == 1) {
-                       builder.setTlvs(new TlvsBuilder().setOverloadDuration((OverloadDuration) tlv).build());
-               }
-       }
-
-       @Override
-       public byte[] serializeObject(final Object object) {
-               if (!(object instanceof CNotification)) {
-                       throw new IllegalArgumentException("Wrong instance of PCEPObject. Passed " + object.getClass() + ". Needed NotificationObject.");
-               }
-               final CNotification notObj = (CNotification) object;
-
-               final byte[] tlvs = serializeTlvs(notObj.getTlvs());
-
-               final byte[] retBytes = new byte[TLVS_OFFSET + tlvs.length + getPadding(TLVS_OFFSET + tlvs.length, PADDED_TO)];
-               if (tlvs.length != 0) {
-                       ByteArray.copyWhole(tlvs, retBytes, TLVS_OFFSET);
-               }
-               retBytes[NT_F_OFFSET] = UnsignedBytes.checkedCast(notObj.getType());
-               retBytes[NV_F_OFFSET] = UnsignedBytes.checkedCast(notObj.getValue());
-               return ObjectUtil.formatSubobject(TYPE, CLASS, object.isProcessingRule(), object.isIgnore(), retBytes);
-       }
-
-       public byte[] serializeTlvs(final Tlvs tlvs) {
-               if (tlvs == null) {
-                       return new byte[0];
-               } else if (tlvs.getOverloadDuration() != null) {
-                       return serializeTlv(tlvs.getOverloadDuration());
-               }
-               return new byte[0];
-       }
-
-       @Override
-       public int getObjectType() {
-               return TYPE;
-       }
-
-       @Override
-       public int getObjectClass() {
-               return CLASS;
-       }
+    public static final int CLASS = 12;
+
+    public static final int TYPE = 1;
+
+    /*
+     * offsets of fields
+     */
+    private static final int NT_F_OFFSET = 2;
+
+    public PCEPNotificationObjectParser(final TlvRegistry tlvReg, final VendorInformationTlvRegistry viTlvReg) {
+        super(tlvReg, viTlvReg);
+    }
+
+    @Override
+    public CNotification parseObject(final ObjectHeader header, final ByteBuf bytes) throws PCEPDeserializerException {
+        Preconditions.checkArgument(bytes != null && bytes.isReadable(), "Array of bytes is mandatory. Can't be null or empty.");
+        final CNotificationBuilder builder = new CNotificationBuilder();
+        builder.setIgnore(header.isIgnore());
+        builder.setProcessingRule(header.isProcessingRule());
+        bytes.readerIndex(bytes.readerIndex() + NT_F_OFFSET);
+        builder.setType((short) UnsignedBytes.toInt(bytes.readByte()));
+        builder.setValue((short) UnsignedBytes.toInt(bytes.readByte()));
+        parseTlvs(builder, bytes.slice());
+        return builder.build();
+    }
+
+    @Override
+    public void addTlv(final CNotificationBuilder builder, final Tlv tlv) {
+        if (tlv instanceof OverloadDuration && builder.getType() == 2 && builder.getValue() == 1) {
+            builder.setTlvs(new TlvsBuilder().setOverloadDuration((OverloadDuration) tlv).build());
+        }
+    }
+
+    @Override
+    public void serializeObject(final Object object, final ByteBuf buffer) {
+        Preconditions.checkArgument(object instanceof CNotification, "Wrong instance of PCEPObject. Passed %s. Needed CNotificationObject.", object.getClass());
+        final CNotification notObj = (CNotification) object;
+        final ByteBuf body = Unpooled.buffer();
+        body.writeZero(NT_F_OFFSET);
+        Preconditions.checkArgument(notObj.getType() != null, "Type is mandatory.");
+        writeUnsignedByte(notObj.getType(), body);
+        Preconditions.checkArgument(notObj.getValue() != null, "Value is mandatory.");
+        writeUnsignedByte(notObj.getValue(), body);
+        serializeTlvs(notObj.getTlvs(), body);
+        ObjectUtil.formatSubobject(TYPE, CLASS, object.isProcessingRule(), object.isIgnore(), body, buffer);
+    }
+
+    public void serializeTlvs(final Tlvs tlvs, final ByteBuf body) {
+        if (tlvs == null) {
+            return;
+        }
+        if (tlvs.getOverloadDuration() != null) {
+            serializeTlv(tlvs.getOverloadDuration(), body);
+        }
+        serializeVendorInformationTlvs(tlvs.getVendorInformationTlv(), body);
+    }
+
+    @Override
+    protected final void addVendorInformationTlvs(final CNotificationBuilder builder, final List<VendorInformationTlv> tlvs) {
+        if (!tlvs.isEmpty()) {
+            builder.setTlvs(new TlvsBuilder(builder.getTlvs()).setVendorInformationTlv(tlvs).build());
+        }
+    }
 }