95139c92a31b52d63736da554d9e670bf516b23e
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / action / OF10SetTpSrcActionDeserializer.java
1 /*
2  * Copyright (c) 2013 Pantheon Technologies s.r.o. and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.openflowjava.protocol.impl.deserialization.action;
9
10 import static org.opendaylight.yangtools.yang.common.netty.ByteBufUtils.readUint16;
11
12 import io.netty.buffer.ByteBuf;
13 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
14 import org.opendaylight.openflowjava.protocol.impl.util.ActionConstants;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.action.grouping.ActionChoice;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.action.grouping.action.choice.SetTpSrcCaseBuilder;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.action.grouping.action.choice.set.tp.src._case.SetTpSrcActionBuilder;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.actions.grouping.Action;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.actions.grouping.ActionBuilder;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.PortNumber;
21
22 /**
23  * OF10SetTpSrcActionDeserializer.
24  *
25  * @author michal.polkorab
26  */
27 public class OF10SetTpSrcActionDeserializer extends AbstractActionDeserializer {
28     @Override
29     public Action deserialize(ByteBuf input) {
30         final ActionBuilder builder = new ActionBuilder();
31         input.skipBytes(2 * EncodeConstants.SIZE_OF_SHORT_IN_BYTES);
32         SetTpSrcCaseBuilder caseBuilder = new SetTpSrcCaseBuilder();
33         SetTpSrcActionBuilder actionBuilder = new SetTpSrcActionBuilder();
34         actionBuilder.setPort(new PortNumber(readUint16(input).toUint32()));
35         caseBuilder.setSetTpSrcAction(actionBuilder.build());
36         builder.setActionChoice(caseBuilder.build());
37         input.skipBytes(ActionConstants.PADDING_IN_TP_PORT_ACTION);
38         return builder.build();
39     }
40
41     @Override
42     protected ActionChoice getType() {
43         return new SetTpSrcCaseBuilder().build();
44     }
45 }