org.red5.server.net.rtmp.Channel Maven / Gradle / Ivy
package org.red5.server.net.rtmp;
/*
* RED5 Open Source Flash Server - http://code.google.com/p/red5/
*
* Copyright (c) 2006-2010 by respective authors (see below). All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software
* Foundation; either version 2.1 of the License, or (at your option) any later
* version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along
* with this library; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
//import org.apache.mina.core.buffer.IoBuffer;
//import org.red5.server.api.IScope;
//import org.red5.server.api.stream.IClientStream;
//import org.red5.server.api.stream.IRtmpSampleAccess;
import org.red5.server.net.rtmp.event.IRTMPEvent;
import org.red5.server.net.rtmp.event.Invoke;
import org.red5.server.net.rtmp.event.Notify;
import org.red5.server.net.rtmp.message.Header;
import org.red5.server.net.rtmp.message.Packet;
import org.red5.server.net.rtmp.status.Status;
import org.red5.server.net.rtmp.status.StatusCodes;
import org.red5.server.service.Call;
import org.red5.server.service.PendingCall;
import org.red5.server.stream.IClientStream;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Identified connection that transfers packets.
*/
public class Channel {
/**
* Logger
*/
protected static Logger log = LoggerFactory.getLogger(Channel.class);
/**
* RTMP connection used to transfer packets.
*/
private RTMPConnection connection;
/**
* Channel id
*/
private int id;
/**
* Creates channel from connection and channel id
* @param conn Connection
* @param channelId Channel id
*/
public Channel(RTMPConnection conn, int channelId) {
connection = conn;
id = channelId;
}
/**
* Closes channel with this id on RTMP connection.
*/
public void close() {
connection.closeChannel(id);
}
/**
* Getter for id.
*
* @return Channel ID
*/
public int getId() {
return id;
}
/**
* Getter for RTMP connection.
*
* @return RTMP connection
*/
protected RTMPConnection getConnection() {
return connection;
}
/**
* Writes packet from event data to RTMP connection.
*
* @param event Event data
*/
public void write(IRTMPEvent event) {
final IClientStream stream = connection.getStreamByChannelId(id);
if (id > 3 && stream == null) {
log.info("Stream doesn't exist any longer, discarding message {}", event);
return;
}
final int streamId = (stream == null) ? 0 : stream.getStreamId();
write(event, streamId);
}
/**
* Writes packet from event data to RTMP connection and stream id.
*
* @param event Event data
* @param streamId Stream id
*/
private void write(IRTMPEvent event, int streamId) {
final Header header = new Header();
final Packet packet = new Packet(header, event);
header.setChannelId(id);
header.setTimer(event.getTimestamp());
header.setStreamId(streamId);
header.setDataType(event.getDataType());
// should use RTMPConnection specific method..
connection.write(packet);
}
/**
* Sends status notification.
*
* @param status Status
*/
public void sendStatus(Status status) {
final boolean andReturn = !status.getCode().equals(StatusCodes.NS_DATA_START);
final Notify event;
if (andReturn) {
final PendingCall call = new PendingCall(null, "onStatus", new Object[] { status });
event = new Invoke();
if (status.getCode().equals(StatusCodes.NS_PLAY_START)) {
// IScope scope = connection.getScope();
// if (scope.getContext().getApplicationContext().containsBean(IRtmpSampleAccess.BEAN_NAME)) {
// IRtmpSampleAccess sampleAccess = (IRtmpSampleAccess) scope.getContext().getApplicationContext().getBean(IRtmpSampleAccess.BEAN_NAME);
// boolean videoAccess = sampleAccess.isVideoAllowed(scope);
// boolean audioAccess = sampleAccess.isAudioAllowed(scope);
// if (videoAccess || audioAccess) {
// final Call call2 = new Call(null, "|RtmpSampleAccess", null);
// Notify notify = new Notify();
// notify.setInvokeId(1);
// notify.setCall(call2);
// notify.setData(IoBuffer.wrap(new byte[] { 0x01, (byte) (audioAccess ? 0x01 : 0x00), 0x01, (byte) (videoAccess ? 0x01 : 0x00) }));
// write(notify, connection.getStreamIdForChannel(id));
// }
// }
}
event.setInvokeId(1);
event.setCall(call);
} else {
final Call call = new Call(null, "onStatus", new Object[] { status });
event = new Notify();
event.setInvokeId(1);
event.setCall(call);
}
// We send directly to the corresponding stream as for
// some status codes, no stream has been created and thus
// "getStreamByChannelId" will fail.
write(event, connection.getStreamIdForChannel(id));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy