9511a0c2f5791f7cd6c20bb527dec15687649ecb
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / action / OF10AbstractPortActionDeserializer.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
9 package org.opendaylight.openflowjava.protocol.impl.deserialization.action;
10
11 import io.netty.buffer.ByteBuf;
12
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.augments.rev150225.PortAction;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev150225.PortActionBuilder;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev130731.actions.grouping.Action;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev130731.actions.grouping.ActionBuilder;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.PortNumber;
20
21 /**
22  * @author michal.polkorab
23  *
24  */
25 public abstract class OF10AbstractPortActionDeserializer extends AbstractActionDeserializer {
26
27     @Override
28     public Action deserialize(ByteBuf input) {
29         ActionBuilder builder = new ActionBuilder();
30         input.skipBytes(EncodeConstants.SIZE_OF_SHORT_IN_BYTES);
31         builder.setType(getType());
32         input.skipBytes(EncodeConstants.SIZE_OF_SHORT_IN_BYTES);
33         createPortAugmentation(input, builder);
34         input.skipBytes(ActionConstants.PADDING_IN_TP_PORT_ACTION);
35         return builder.build();
36     }
37
38     protected static void createPortAugmentation(ByteBuf input, ActionBuilder actionBuilder) {
39         PortActionBuilder portBuilder = new PortActionBuilder();
40         portBuilder.setPort(new PortNumber((long) input.readUnsignedShort()));
41         actionBuilder.addAugmentation(PortAction.class, portBuilder.build());
42     }
43 }