BUG-47 : switched subobjects to generated source code.
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / subobject / RROAsNumberSubobjectParser.java
index 99227d39b0abeba3ecbbbeef42ed7947d07b4232..9bebc3a82b9edad7caa284d5bbeaa8f635a6c7a1 100644 (file)
@@ -8,42 +8,60 @@
 package org.opendaylight.protocol.pcep.impl.subobject;
 
 import org.opendaylight.protocol.pcep.PCEPDeserializerException;
-import org.opendaylight.protocol.pcep.subobject.RROAsNumberSubobject;
-import org.opendaylight.protocol.pcep.subobject.ReportedRouteSubobject;
+import org.opendaylight.protocol.pcep.spi.RROSubobjectParser;
+import org.opendaylight.protocol.pcep.spi.RROSubobjectSerializer;
 import org.opendaylight.protocol.util.ByteArray;
 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.AsNumber;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.reported.route.object.Subobjects;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.reported.route.object.SubobjectsBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.AsNumberSubobject;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.basic.explicit.route.subobjects.subobject.type.AsNumberBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.record.route.subobjects.SubobjectType;
 
 /**
  * Parser for {@link org.opendaylight.protocol.pcep.subobject.RROAsNumberSubobject RROAsNumberSubobject}
  */
 
-public class RROAsNumberSubobjectParser {
+public class RROAsNumberSubobjectParser implements RROSubobjectParser, RROSubobjectSerializer {
+
+       public static final int TYPE = 32;
+
        public static final int AS_NUMBER_LENGTH = 2;
 
        public static final int AS_NUMBER_OFFSET = 0;
 
        public static final int CONTENT_LENGTH = AS_NUMBER_LENGTH + AS_NUMBER_OFFSET;
 
-       public static RROAsNumberSubobject parse(final byte[] soContentsBytes) throws PCEPDeserializerException {
-               if (soContentsBytes == null || soContentsBytes.length == 0)
+       @Override
+       public Subobjects parseSubobject(final byte[] buffer) throws PCEPDeserializerException {
+               if (buffer == null || buffer.length == 0)
                        throw new IllegalArgumentException("Array of bytes is mandatory. Can't be null or empty.");
-               if (soContentsBytes.length != CONTENT_LENGTH)
-                       throw new PCEPDeserializerException("Wrong length of array of bytes. Passed: " + soContentsBytes.length + "; Expected: "
+               if (buffer.length != CONTENT_LENGTH)
+                       throw new PCEPDeserializerException("Wrong length of array of bytes. Passed: " + buffer.length + "; Expected: "
                                        + CONTENT_LENGTH + ".");
 
-               return new RROAsNumberSubobject(new AsNumber((long) (ByteArray.bytesToShort(soContentsBytes) & 0xFFFF)));
+               return new SubobjectsBuilder().setSubobjectType(
+                               (SubobjectType) new AsNumberBuilder().setAsNumber(new AsNumber(ByteArray.bytesToLong(buffer))).build()).build();
        }
 
-       public static byte[] put(final ReportedRouteSubobject objToSerialize) {
-               if (!(objToSerialize instanceof RROAsNumberSubobject))
-                       throw new IllegalArgumentException("Unknown ReportedRouteSubobject instance. Passed " + objToSerialize.getClass()
-                                       + ". Needed RROAsNumberSubobject.");
+       @Override
+       public byte[] serializeSubobject(final Subobjects subobject) {
+               if (!(subobject.getSubobjectType() instanceof AsNumberSubobject))
+                       throw new IllegalArgumentException("Unknown ReportedRouteSubobject instance. Passed " + subobject.getSubobjectType().getClass()
+                                       + ". Needed AsNumberSubobject.");
 
                final byte[] retBytes = new byte[CONTENT_LENGTH];
 
-               System.arraycopy(ByteArray.longToBytes(((RROAsNumberSubobject) objToSerialize).getASNumber().getValue()), Long.SIZE / Byte.SIZE
-                               - AS_NUMBER_LENGTH, retBytes, AS_NUMBER_OFFSET, AS_NUMBER_LENGTH);
+               final AsNumberSubobject obj = (AsNumberSubobject) subobject.getSubobjectType();
+
+               System.arraycopy(ByteArray.longToBytes(obj.getAsNumber().getValue()), Long.SIZE / Byte.SIZE - AS_NUMBER_LENGTH, retBytes,
+                               AS_NUMBER_OFFSET, AS_NUMBER_LENGTH);
 
                return retBytes;
        }
+
+       @Override
+       public int getType() {
+               return TYPE;
+       }
 }