Copyright update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / factories / EchoReplyInputMessageFactory.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.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoReplyInput;
16
17 /**
18  * Translates EchoReply messages (both OpenFlow v1.0 and OpenFlow v1.3)
19  * @author michal.polkorab
20  * @author timotej.kubas
21  */
22 public class EchoReplyInputMessageFactory implements OFSerializer<EchoReplyInput>{
23
24     /** Code type of EchoReply message */
25     public static final byte MESSAGE_TYPE = 3;
26     private static final int MESSAGE_LENGTH = 8;
27     private static EchoReplyInputMessageFactory instance;
28     
29     private EchoReplyInputMessageFactory() {
30         // do nothing, just singleton
31     }
32     
33     /**
34      * @return singleton factory
35      */
36     public static synchronized EchoReplyInputMessageFactory getInstance() {
37         if (instance == null) {
38             instance = new EchoReplyInputMessageFactory();
39         }
40         return instance;
41     }
42
43     @Override
44     public void messageToBuffer(short version, ByteBuf out,
45             EchoReplyInput message) {
46         ByteBufUtils.writeOFHeader(instance, message, out);
47         byte[] data = message.getData();
48         if (data != null) {
49             out.writeBytes(data);
50         }
51     }
52
53     @Override
54     public int computeLength(EchoReplyInput message) {
55         int length = MESSAGE_LENGTH;
56         byte[] data = message.getData();
57         if (data != null) {
58             length += data.length;
59         }
60         return length;
61     }
62
63     @Override
64     public byte getMessageType() {
65         return MESSAGE_TYPE;
66     }
67 }