Copyright update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / factories / OF10PacketOutInputMessageFactory.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.serialization.factories;
10
11 import io.netty.buffer.ByteBuf;
12
13 import org.opendaylight.openflowjava.protocol.impl.serialization.OFSerializer;
14 import org.opendaylight.openflowjava.protocol.impl.util.ByteBufUtils;
15 import org.opendaylight.openflowjava.protocol.impl.util.OF10ActionsSerializer;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.PacketOutInput;
17
18 /**
19  * Translates PacketOut messages
20  * @author michal.polkorab
21  */
22 public class OF10PacketOutInputMessageFactory implements OFSerializer<PacketOutInput> {
23
24     private static final byte MESSAGE_TYPE = 13;
25     private static final int MESSAGE_LENGTH = 16;
26     
27     private static OF10PacketOutInputMessageFactory instance;
28     
29     private OF10PacketOutInputMessageFactory() {
30         // do nothing, just singleton
31     }
32     
33     /**
34      * @return singleton factory
35      */
36     public static synchronized OF10PacketOutInputMessageFactory getInstance() {
37         if (instance == null) {
38             instance = new OF10PacketOutInputMessageFactory();
39         }
40         return instance;
41     }
42     
43     @Override
44     public void messageToBuffer(short version, ByteBuf out,
45             PacketOutInput message) {
46         ByteBufUtils.writeOFHeader(instance, message, out);
47         out.writeInt(message.getBufferId().intValue());
48         out.writeShort(message.getInPort().getValue().intValue());
49         out.writeShort(OF10ActionsSerializer.computeActionsLength(message.getActionsList()));
50         OF10ActionsSerializer.encodeActionsV10(out, message.getActionsList());
51         byte[] data = message.getData();
52         if (data != null) {
53             out.writeBytes(data);
54         }
55     }
56
57     @Override
58     public int computeLength(PacketOutInput message) {
59         int length = MESSAGE_LENGTH + OF10ActionsSerializer.computeActionsLength(message.getActionsList());
60         byte[] data = message.getData();
61         if (data != null) {
62             length += data.length;
63         }
64         return length;
65     }
66
67     @Override
68     public byte getMessageType() {
69         return MESSAGE_TYPE;
70     }
71
72 }