BUG-47 : switched subobjects to generated source code.
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / object / PCEPExplicitRouteObjectParser.java
index dc8e3362c2f09e1a7d91bbde1e3d441c2e45b79b..2eb4fd3d05592c3e8f2d7c78da746f4687d64263 100644 (file)
@@ -7,47 +7,37 @@
  */
 package org.opendaylight.protocol.pcep.impl.object;
 
-import java.util.Map;
-
 import org.opendaylight.protocol.pcep.PCEPDeserializerException;
 import org.opendaylight.protocol.pcep.PCEPDocumentedException;
-import org.opendaylight.protocol.pcep.spi.AbstractObjectWithSubobjectsParser;
-import org.opendaylight.protocol.pcep.spi.SubobjectHandlerRegistry;
+import org.opendaylight.protocol.pcep.spi.EROSubobjectHandlerRegistry;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.ExplicitRouteObject;
 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.explicit.route.object.Subobjects;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.path.definition.ExplicitRouteBuilder;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.CSubobject;
-
-import com.google.common.collect.Maps;
 
 /**
  * Parser for {@link ExplicitRouteObject}
  */
-public class PCEPExplicitRouteObjectParser extends AbstractObjectWithSubobjectsParser<ExplicitRouteBuilder> {
+public class PCEPExplicitRouteObjectParser extends AbstractEROWithSubobjectsParser {
 
        public static final int CLASS = 7;
 
        public static final int TYPE = 1;
 
-       public PCEPExplicitRouteObjectParser(final SubobjectHandlerRegistry subobjReg) {
+       public PCEPExplicitRouteObjectParser(final EROSubobjectHandlerRegistry subobjReg) {
                super(subobjReg);
        }
 
        @Override
        public ExplicitRouteObject parseObject(final ObjectHeader header, final byte[] bytes) throws PCEPDeserializerException,
-       PCEPDocumentedException {
+                       PCEPDocumentedException {
                if (bytes == null || bytes.length == 0) {
                        throw new IllegalArgumentException("Byte array is mandatory. Can't be null or empty.");
                }
-
                final ExplicitRouteBuilder builder = new ExplicitRouteBuilder();
-
                builder.setIgnore(header.isIgnore());
                builder.setProcessingRule(header.isProcessingRule());
-
-               parseSubobjects(builder, bytes);
+               builder.setSubobjects(parseSubobjects(bytes));
                return builder.build();
        }
 
@@ -62,38 +52,9 @@ public class PCEPExplicitRouteObjectParser extends AbstractObjectWithSubobjectsP
 
                assert !(ero.getSubobjects().isEmpty()) : "Empty Explicit Route Object.";
 
-               final Map<CSubobject, Boolean> subs = Maps.newHashMap();
-               for (final Subobjects s : ero.getSubobjects()) {
-                       subs.put((CSubobject) s, s.isLoose());
-               }
-               return serializeSubobject(subs);
+               return serializeSubobject(ero.getSubobjects());
        }
 
-       // @Override
-       // public void addSubobject(ExplicitRouteBuilder builder, Map<CSubobject, Boolean> subobjects) {
-       // List<Subobjects> subs = Lists.newArrayList();
-       // for (Entry<CSubobject, Boolean> entry : subobjects.entrySet()) {
-       // SubobjectsBuilder b = new SubobjectsBuilder();
-       // b.setLoose(entry.getValue());
-       // CSubobject sub = entry.getKey();
-       // if (sub instanceof IpPrefixSubobject) {
-       // b.setSubobjectType(new IpPrefixBuilder().setIpPrefix(((IpPrefix)sub).getIpPrefix()).build());
-       // subs.add(b.build());
-       // } else if (sub instanceof AsNumberSubobject) {
-       // b.setSubobjectType(new AsNumberBuilder().setAsNumber((AsNumber)sub).build());
-       // subs.add(b.build());
-       // } else if (sub instanceof LabelSubobject) {
-       // b.setSubobjectType(new LabelBuilder().setLabels(((Label)sub).getLabels()).build());
-       // subs.add(b.build());
-       // } else if (sub instanceof UnnumberedSubobject) {
-       // b.setSubobjectType(new
-       // UnnumberedBuilder().setInterfaceId(((Unnumbered)sub).getInterfaceId()).setRouterId(((Unnumbered)sub).getRouterId()).build());
-       // subs.add(b.build());
-       // }
-       // }
-       // builder.setSubobjects(subs);
-       // }
-
        @Override
        public int getObjectType() {
                return TYPE;