Remove EncodeConstants.SIZE_OF_{BYTE,SHORT,INT,LONG}_IN_BYTES
[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.impl.util.ActionConstants;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.action.grouping.ActionChoice;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.action.grouping.action.choice.SetTpSrcCaseBuilder;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.action.grouping.action.choice.set.tp.src._case.SetTpSrcActionBuilder;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.actions.grouping.Action;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.actions.grouping.ActionBuilder;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.PortNumber;
20
21 /**
22  * OF10SetTpSrcActionDeserializer.
23  *
24  * @author michal.polkorab
25  */
26 public class OF10SetTpSrcActionDeserializer extends AbstractActionDeserializer {
27     @Override
28     public Action deserialize(ByteBuf input) {
29         final ActionBuilder builder = new ActionBuilder();
30         input.skipBytes(2 * Short.BYTES);
31         SetTpSrcCaseBuilder caseBuilder = new SetTpSrcCaseBuilder();
32         SetTpSrcActionBuilder actionBuilder = new SetTpSrcActionBuilder();
33         actionBuilder.setPort(new PortNumber(readUint16(input).toUint32()));
34         caseBuilder.setSetTpSrcAction(actionBuilder.build());
35         builder.setActionChoice(caseBuilder.build());
36         input.skipBytes(ActionConstants.PADDING_IN_TP_PORT_ACTION);
37         return builder.build();
38     }
39
40     @Override
41     protected ActionChoice getType() {
42         return new SetTpSrcCaseBuilder().build();
43     }
44 }