blob: 43257caf0f42f81143b80368c1f59b88b26b097a [file] [log] [blame]
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001/**
Ray Milkey269ffb92014-04-03 14:43:30 -07002 * Copyright 2011, Big Switch Networks, Inc.
3 * Originally created by David Erickson, Stanford University
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may
6 * not use this file except in compliance with the License. You may obtain
7 * a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations
15 * under the License.
16 **/
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080017
18package net.floodlightcontroller.core.internal;
19
20import java.util.List;
21
22import org.jboss.netty.buffer.ChannelBuffer;
23import org.jboss.netty.channel.Channel;
24import org.jboss.netty.channel.ChannelHandlerContext;
25import org.jboss.netty.handler.codec.frame.FrameDecoder;
Brian O'Connorc67f9fa2014-08-07 18:17:46 -070026import org.projectfloodlight.openflow.protocol.OFFactories;
27import org.projectfloodlight.openflow.protocol.OFMessage;
28import org.projectfloodlight.openflow.protocol.OFMessageReader;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080029
30/**
Brian O'Connorc67f9fa2014-08-07 18:17:46 -070031 * Decode an openflow message from a Channel, for use in a netty pipeline
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080032 */
33public class OFMessageDecoder extends FrameDecoder {
34
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080035 @Override
36 protected Object decode(ChannelHandlerContext ctx, Channel channel,
37 ChannelBuffer buffer) throws Exception {
38 if (!channel.isConnected()) {
39 // In testing, I see decode being called AFTER decode last.
Brian O'Connorc67f9fa2014-08-07 18:17:46 -070040 // This check avoids that from reading corrupted frames
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080041 return null;
42 }
43
Brian O'Connorc67f9fa2014-08-07 18:17:46 -070044 // Note that a single call to decode results in reading a single
45 // OFMessage from the channel buffer, which is passed on to, and processed
46 // by, the controller (in OFChannelHandler).
47 // This is different from earlier behavior (with the original openflowj),
48 // where we parsed all the messages in the buffer, before passing on
49 // a list of the parsed messages to the controller.
50 // The performance *may or may not* not be as good as before.
51 OFMessageReader<OFMessage> reader = OFFactories.getGenericReader();
52 OFMessage message = reader.readFrom(buffer);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080053
Brian O'Connorc67f9fa2014-08-07 18:17:46 -070054 return message;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080055 }
56
57}