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