4c1b16fef0c7e73d970b59415b1bae72d9864ee0
[onosfw.git] /
1 /*
2  * Copyright 2014 Open Networking Laboratory
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onosproject.openflow.controller.impl;
18
19 import java.util.List;
20
21 import org.jboss.netty.buffer.ChannelBuffer;
22 import org.jboss.netty.buffer.ChannelBuffers;
23 import org.jboss.netty.channel.Channel;
24 import org.jboss.netty.channel.ChannelHandlerContext;
25 import org.jboss.netty.handler.codec.oneone.OneToOneEncoder;
26 import org.projectfloodlight.openflow.protocol.OFMessage;
27
28 /**
29  * Encode an openflow message for output into a ChannelBuffer, for use in a
30  * netty pipeline.
31  */
32 public class OFMessageEncoder extends OneToOneEncoder {
33
34     @Override
35     protected Object encode(ChannelHandlerContext ctx, Channel channel,
36                             Object msg) throws Exception {
37         if (!(msg instanceof List)) {
38             return msg;
39         }
40
41         @SuppressWarnings("unchecked")
42         List<OFMessage> msglist = (List<OFMessage>) msg;
43         /* XXX S can't get length of OFMessage in loxigen's openflowj??
44         int size = 0;
45         for (OFMessage ofm : msglist) {
46             size += ofm.getLengthU();
47         }*/
48
49         ChannelBuffer buf = ChannelBuffers.dynamicBuffer();
50
51         for (OFMessage ofm : msglist) {
52             if (ofm != null) {
53                 ofm.writeTo(buf);
54             }
55         }
56         return buf;
57     }
58
59 }