Copyright update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / factories / OF10HelloInputMessageFactory.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.HelloInput;
16
17 /**
18  * Translates Hello messages
19  * @author michal.polkorab
20  */
21 public class OF10HelloInputMessageFactory implements OFSerializer<HelloInput> {
22
23     private static final byte MESSAGE_TYPE = 0;
24     private static int MESSAGE_LENGTH = 8;
25     private static OF10HelloInputMessageFactory instance;
26     
27     private OF10HelloInputMessageFactory() {
28         // do nothing, just singleton
29     }
30     
31     /**
32      * @return singleton factory
33      */
34     public static synchronized OF10HelloInputMessageFactory getInstance() {
35         if (instance == null) {
36             instance = new OF10HelloInputMessageFactory();
37         }
38         return instance;
39     }
40
41     @Override
42     public void messageToBuffer(short version, ByteBuf out, HelloInput message) {
43         ByteBufUtils.writeOFHeader(instance, message, out);
44     }
45
46     @Override
47     public int computeLength(HelloInput message) {
48         return MESSAGE_LENGTH;
49     }
50
51     @Override
52     public byte getMessageType() {
53         return MESSAGE_TYPE;
54     }
55 }