Merge "Bug 1277 - Move ByteBuffUtils to separate bundle"
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / action / OF13OutputActionSerializer.java
1 /*\r
2  * Copyright (c) 2013 Pantheon Technologies s.r.o. and others. All rights reserved.\r
3  *\r
4  * This program and the accompanying materials are made available under the\r
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
6  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
7  */\r
8 \r
9 package org.opendaylight.openflowjava.protocol.impl.serialization.action;\r
10 \r
11 import io.netty.buffer.ByteBuf;\r
12 \r
13 import org.opendaylight.openflowjava.protocol.impl.util.ActionConstants;\r
14 import org.opendaylight.openflowjava.util.ByteBufUtils;\r
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.MaxLengthAction;\r
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.PortAction;\r
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev130731.actions.grouping.Action;\r
18 \r
19 /**\r
20  * @author michal.polkorab\r
21  *\r
22  */\r
23 public class OF13OutputActionSerializer extends AbstractActionSerializer {\r
24 \r
25     @Override\r
26     public void serialize(Action action, ByteBuf outBuffer) {\r
27         super.serialize(action, outBuffer);\r
28         PortAction port = action.getAugmentation(PortAction.class);\r
29         outBuffer.writeInt(port.getPort().getValue().intValue());\r
30         MaxLengthAction maxlength = action.getAugmentation(MaxLengthAction.class);\r
31         outBuffer.writeShort(maxlength.getMaxLength());\r
32         ByteBufUtils.padBuffer(ActionConstants.OUTPUT_PADDING, outBuffer);\r
33     }\r
34 \r
35     @Override\r
36     protected int getType() {\r
37         return ActionConstants.OUTPUT_CODE;\r
38     }\r
39 \r
40     @Override\r
41     protected int getLength() {\r
42         return ActionConstants.LARGER_ACTION_LENGTH;\r
43     }\r
44 \r
45 }\r