Revert "BUG-47 : unfinished PCEP migration to generated DTOs."
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / object / PCEPLoadBalancingObjectParser.java
index 3127a55010024f4891d1bca3ce3229555f8cf91d..f16b8fcc9514f26e0f2a234b5f7ac114404b3c8f 100644 (file)
@@ -8,25 +8,16 @@
 package org.opendaylight.protocol.pcep.impl.object;
 
 import org.opendaylight.protocol.pcep.PCEPDeserializerException;
-import org.opendaylight.protocol.pcep.PCEPDocumentedException;
-import org.opendaylight.protocol.pcep.spi.AbstractObjectParser;
-import org.opendaylight.protocol.pcep.spi.HandlerRegistry;
+import org.opendaylight.protocol.pcep.PCEPObject;
+import org.opendaylight.protocol.pcep.impl.PCEPObjectParser;
+import org.opendaylight.protocol.pcep.object.PCEPLoadBalancingObject;
 import org.opendaylight.protocol.util.ByteArray;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ieee754.rev130819.Float32;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.LoadBalancingObject;
-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;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.pcreq.message.pcreq.message.requests.segment.computation.p2p.LoadBalancingBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.nps.concepts.rev130930.Bandwidth;
 
 /**
  * Parser for {@link org.opendaylight.protocol.pcep.object.PCEPLoadBalancingObject PCEPLoadBalancingObject}
  */
-public class PCEPLoadBalancingObjectParser extends AbstractObjectParser<LoadBalancingBuilder> {
-
-       public static final int CLASS = 14;
-
-       public static final int TYPE = 1;
+public class PCEPLoadBalancingObjectParser implements PCEPObjectParser {
 
        public static final int FLAGS_F_LENGTH = 1;
        public static final int MAX_LSP_F_LENGTH = 1;
@@ -38,58 +29,31 @@ public class PCEPLoadBalancingObjectParser extends AbstractObjectParser<LoadBala
 
        public static final int SIZE = MIN_BAND_F_OFFSET + MIN_BAND_F_LENGTH;
 
-       public PCEPLoadBalancingObjectParser(final HandlerRegistry registry) {
-               super(registry);
-       }
-
        @Override
-       public LoadBalancingObject parseObject(final ObjectHeader header, final byte[] bytes) throws PCEPDeserializerException,
-                       PCEPDocumentedException {
+       public PCEPObject parse(final byte[] bytes, final boolean processed, final boolean ignored) throws PCEPDeserializerException {
                if (bytes == null || bytes.length == 0)
                        throw new IllegalArgumentException("Byte array is mandatory. Can't be null or empty.");
 
                if (bytes.length != SIZE)
                        throw new PCEPDeserializerException("Wrong length of array of bytes. Passed: " + bytes.length + "; Expected: " + SIZE + ".");
 
-               final LoadBalancingBuilder builder = new LoadBalancingBuilder();
-
-               builder.setIgnore(header.isIgnore());
-               builder.setProcessingRule(header.isProcessingRule());
-
-               builder.setMaxLsp((short) (bytes[MAX_LSP_F_OFFSET] & 0xFF));
-               builder.setMinBandwidth(new Float32(ByteArray.subByte(bytes, MIN_BAND_F_OFFSET, MIN_BAND_F_LENGTH)));
-
-               return builder.build();
-       }
-
-       @Override
-       public void addTlv(final LoadBalancingBuilder builder, final Tlv tlv) {
-               // No tlvs defined
+               return new PCEPLoadBalancingObject(bytes[MAX_LSP_F_OFFSET] & 0xFF, new Bandwidth(ByteArray.subByte(bytes, MIN_BAND_F_OFFSET,
+                               MIN_BAND_F_LENGTH)), processed);
        }
 
        @Override
-       public byte[] serializeObject(final Object object) {
-               if (!(object instanceof LoadBalancingObject))
-                       throw new IllegalArgumentException("Wrong instance of PCEPObject. Passed " + object.getClass()
-                                       + ". Needed LoadBalancingObject.");
+       public byte[] put(final PCEPObject obj) {
+               if (!(obj instanceof PCEPLoadBalancingObject))
+                       throw new IllegalArgumentException("Wrong instance of PCEPObject. Passed " + obj.getClass()
+                                       + ". Needed PCEPLoadBalancingObject.");
 
-               final LoadBalancingObject specObj = (LoadBalancingObject) object;
+               final PCEPLoadBalancingObject specObj = (PCEPLoadBalancingObject) obj;
 
                final byte[] retBytes = new byte[SIZE];
 
-               retBytes[MAX_LSP_F_OFFSET] = ByteArray.shortToBytes(specObj.getMaxLsp())[1];
+               retBytes[MAX_LSP_F_OFFSET] = ByteArray.intToBytes(specObj.getMaxLSP())[Integer.SIZE / Byte.SIZE - 1];
                ByteArray.copyWhole(specObj.getMinBandwidth().getValue(), retBytes, MIN_BAND_F_OFFSET);
 
                return retBytes;
        }
-
-       @Override
-       public int getObjectType() {
-               return TYPE;
-       }
-
-       @Override
-       public int getObjectClass() {
-               return CLASS;
-       }
 }