95329132a4a8670244c9dd458e7cbf989cf010b1
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / factories / GetConfigReplyMessageFactory.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.deserialization.factories;
10
11 import io.netty.buffer.ByteBuf;
12
13 import org.opendaylight.openflowjava.protocol.impl.deserialization.OFDeserializer;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.SwitchConfigFlag;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.GetConfigOutput;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.GetConfigOutputBuilder;
17
18 /**
19  * Translates GetConfigReply messages (both OpenFlow v1.0 and OpenFlow v1.3)
20  * @author michal.polkorab
21  * @author timotej.kubas
22  */
23 public class GetConfigReplyMessageFactory implements OFDeserializer<GetConfigOutput> {
24
25     private static GetConfigReplyMessageFactory instance;
26     
27     private GetConfigReplyMessageFactory() {
28         // singleton
29     }
30     
31     /**
32      * @return singleton factory
33      */
34     public static synchronized GetConfigReplyMessageFactory getInstance(){
35         if(instance == null){
36             instance = new GetConfigReplyMessageFactory();
37         }
38         return instance;
39     }
40
41     @Override
42     public GetConfigOutput bufferToMessage(ByteBuf rawMessage, short version) {
43         GetConfigOutputBuilder builder = new GetConfigOutputBuilder();
44         builder.setVersion(version);
45         builder.setXid(rawMessage.readUnsignedInt());
46         builder.setFlags(SwitchConfigFlag.forValue(rawMessage.readUnsignedShort()));
47         builder.setMissSendLen(rawMessage.readUnsignedShort());
48         return builder.build();
49     }
50 }