Package org.red5.server.net.rtmp.codec

Source Code of org.red5.server.net.rtmp.codec.RTMPMinaProtocolDecoder

/*
* RED5 Open Source Flash Server - http://code.google.com/p/red5/
*
* Copyright 2006-2014 by respective authors (see below). All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.red5.server.net.rtmp.codec;

import java.util.List;
import java.util.concurrent.Semaphore;

import org.apache.mina.core.buffer.IoBuffer;
import org.apache.mina.core.session.IoSession;
import org.apache.mina.filter.codec.ProtocolCodecException;
import org.apache.mina.filter.codec.ProtocolDecoderAdapter;
import org.apache.mina.filter.codec.ProtocolDecoderOutput;
import org.red5.server.api.Red5;
import org.red5.server.net.rtmp.RTMPConnManager;
import org.red5.server.net.rtmp.RTMPConnection;
import org.red5.server.net.rtmp.message.Constants;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* RTMP protocol decoder.
*/
public class RTMPMinaProtocolDecoder extends ProtocolDecoderAdapter {

  protected static Logger log = LoggerFactory.getLogger(RTMPMinaProtocolDecoder.class);

  private RTMPProtocolDecoder decoder = new RTMPProtocolDecoder();

  /** {@inheritDoc} */
  public void decode(IoSession session, IoBuffer in, ProtocolDecoderOutput out) throws ProtocolCodecException {
    // create a buffer and store it on the session
    IoBuffer buf = (IoBuffer) session.getAttribute("buffer");
    if (buf == null) {
      buf = IoBuffer.allocate(Constants.HANDSHAKE_SIZE);
      buf.setAutoExpand(true);
      session.setAttribute("buffer", buf);
    }
    buf.put(in);
    buf.flip();
    // get the connection from the session
    String sessionId = (String) session.getAttribute(RTMPConnection.RTMP_SESSION_ID);
    log.trace("Session id: {}", sessionId);
    // connection verification routine
    RTMPConnection conn = (RTMPConnection) RTMPConnManager.getInstance().getConnectionBySessionId(sessionId);   
    RTMPConnection connLocal = (RTMPConnection) Red5.getConnectionLocal();
    if (connLocal == null || !conn.getSessionId().equals(connLocal.getSessionId())) {
      if (log.isDebugEnabled() && connLocal != null) {
        log.debug("Connection local didn't match session");
      }
    }
    // set the connection to local if its referred to by this session
    Red5.setConnectionLocal(conn);
    // get the connections decoder lock
    final Semaphore lock = conn.getDecoderLock();
    try {
      // acquire the decoder lock
      log.trace("Decoder lock acquiring.. {}", conn.getSessionId());
      lock.acquire();
      log.trace("Decoder lock acquired {}", conn.getSessionId());
      // construct any objects from the decoded bugger
      List<?> objects = decoder.decodeBuffer(conn, buf);
      if (objects != null) {
        for (Object object : objects) {
          out.write(object);
        }
      }
    } catch (Exception e) {
      log.error("Error during decode", e);
    } finally {
      log.trace("Decoder lock releasing.. {}", conn.getSessionId());
      lock.release();
      // clear local
      Red5.setConnectionLocal(null);
    }
  }

  /**
   * Sets the RTMP protocol decoder.
   *
   * @param decoder
   */
  public void setDecoder(RTMPProtocolDecoder decoder) {
    this.decoder = decoder;
  }

  /**
   * Returns an RTMP decoder
   * @return RTMP decoder
   */
  public RTMPProtocolDecoder getDecoder() {
    return decoder;
  }

}
TOP

Related Classes of org.red5.server.net.rtmp.codec.RTMPMinaProtocolDecoder

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.