Bug 2756 - Action model update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / action / OF13PushMplsActionDeserializer.java
index 38ac182117d226b6835c2286040fdda8549349c9..9419181ff51c6df800ab99a32f4b9736ce163198 100644 (file)
@@ -8,18 +8,39 @@
 
 package org.opendaylight.openflowjava.protocol.impl.deserialization.action;
 
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev130731.PushMpls;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.ActionBase;
+import io.netty.buffer.ByteBuf;
+
+import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
+import org.opendaylight.openflowjava.protocol.impl.util.ActionConstants;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.action.grouping.ActionChoice;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.action.grouping.action.choice.PushMplsCaseBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.action.grouping.action.choice.push.mpls._case.PushMplsActionBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.actions.grouping.Action;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.actions.grouping.ActionBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.EtherType;
 
 /**
  * @author michal.polkorab
  *
  */
-public class OF13PushMplsActionDeserializer extends AbstractEthertypeActionDeserializer {
+public class OF13PushMplsActionDeserializer extends AbstractActionDeserializer {
+
+    @Override
+    public Action deserialize(ByteBuf input) {
+        ActionBuilder builder = new ActionBuilder();
+        input.skipBytes(2 * EncodeConstants.SIZE_OF_SHORT_IN_BYTES);
+        PushMplsCaseBuilder caseBuilder = new PushMplsCaseBuilder();
+        PushMplsActionBuilder mplsBuilder = new PushMplsActionBuilder();
+        mplsBuilder.setEthertype(new EtherType(input.readUnsignedShort()));
+        caseBuilder.setPushMplsAction(mplsBuilder.build());
+        builder.setActionChoice(caseBuilder.build());
+        input.skipBytes(ActionConstants.ETHERTYPE_ACTION_PADDING);
+        return builder.build();
+    }
 
     @Override
-    protected Class<? extends ActionBase> getType() {
-        return PushMpls.class;
+    protected ActionChoice getType() {
+        return new PushMplsCaseBuilder().build();
     }
 
 }