Bug 1277 - Move ByteBuffUtils to separate bundle
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / experimenters / OF10VendorActionSerializer.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.experimenters;\r
10 \r
11 import io.netty.buffer.ByteBuf;\r
12 \r
13 import org.opendaylight.openflowjava.protocol.api.extensibility.OFSerializer;\r
14 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;\r
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.ExperimenterAction;\r
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev130731.actions.grouping.Action;\r
17 \r
18 public class OF10VendorActionSerializer implements OFSerializer<Action> {\r
19 \r
20     @Override\r
21     public void serialize(Action action, ByteBuf outBuffer) {\r
22         int startIndex = outBuffer.writerIndex();\r
23         outBuffer.writeShort(EncodeConstants.EXPERIMENTER_VALUE);\r
24         int lengthIndex = outBuffer.writerIndex();\r
25         outBuffer.writeShort(EncodeConstants.EMPTY_LENGTH);\r
26         ExperimenterAction experimenter = action.getAugmentation(ExperimenterAction.class);\r
27         outBuffer.writeInt(experimenter.getExperimenter().intValue());\r
28         byte[] data = experimenter.getData();\r
29         if (data != null) {\r
30             outBuffer.writeBytes(data);\r
31         }\r
32         outBuffer.setShort(lengthIndex, outBuffer.writerIndex() - startIndex);\r
33     }\r
34 \r
35 }\r