org.voovan.network.MessageLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of voovan-network Show documentation
Show all versions of voovan-network Show documentation
Voovan is a java framwork and it not depends on any third-party framework.
package org.voovan.network;
import org.voovan.network.udp.UdpSocket;
import org.voovan.tools.ByteBufferChannel;
import org.voovan.tools.Exception.MemoryReleasedException;
import org.voovan.tools.TEnv;
import org.voovan.tools.log.Logger;
import java.io.IOException;
import java.nio.ByteBuffer;
/**
* Socket消息处理类
*
* @author helyho
*
* Voovan Framework.
* WebSite: https://github.com/helyho/Voovan
* Licence: Apache v2 License
*/
public class MessageLoader {
private IoSession session;
private StopType stopType;
private ByteBufferChannel byteBufferChannel;
private boolean useSpliter;
private int readZeroCount = 0;
private int splitLength;
/**
* 构造函数
* @param session Session 对象
*/
public MessageLoader(IoSession session) {
this.session = session;
useSpliter = true;
//准备缓冲流
byteBufferChannel = session.getByteBufferChannel();
}
/**
* 获取是否使用分割器读取
*
* @return true 使用分割器读取,false 不使用分割器读取,且不会出发 onRecive 事件
*/
public boolean isUseSpliter() {
return useSpliter;
}
/**
* 设置是否是否使用分割器读取
* @param useSpliter true 使用分割器读取,false 不使用分割器读取,且不会出发 onRecive 事件
*/
public void setUseSpliter(boolean useSpliter) {
this.useSpliter = useSpliter;
}
public enum StopType {
RUNNING,
SOCKET_CLOSED,
STREAM_END,
REMOTE_DISCONNECT,
MSG_SPLITTER,
EXCEPTION
}
/**
* 获取停止类型
* @return 停止类型
*/
public StopType getStopType() {
return stopType;
}
/**
* 设置停止类型
* @param stopType 停止类型
*/
public void setStopType(StopType stopType) {
this.stopType = stopType;
}
/**
* 判断连接是否意外断开
* @param buffer 缓冲区
* @param length 长度
* @return 是否意外断开
*/
public static boolean isRemoteClosed(ByteBuffer buffer, Integer length) {
if(length==-1){
//触发 disconnect 事件
return true;
}
//如果 buffer 被冲满,且起始、中位、结束的字节都是结束符(Ascii=4)则连接意外结束
if(length>2
&& buffer.get(0)==4 //起始判断
&& buffer.get(length/2)==4 //中位判断
&& buffer.get(length-1)==4){ //结束判断
return true;
}
return false;
}
/**
* 判断连接是否意外断开
* @param buffer 缓冲区
* @param length 长度
* @return 是否意外断开
*/
public static boolean isRemoteClosed(byte[] buffer, Integer length) {
if(length==-1){
return true;
}
//如果 buffer 被冲满,且起始、中位、结束的字节都是结束符(Ascii=4)则连接意外结束
if(length>2
&& buffer[0]==4 //起始判断
&& buffer[length/2]==4 //中位判断
&& buffer[length-1]==4){ //结束判断
return true;
}
return false;
}
/**
* 读取 socket 中的数据
* 逐字节读取数据,并用消息截断器判断消息包是否完整,消息粘包有两种截断方式:
* 1.消息截断器生效
* 2.消息读取时间超时,例如设置5m,则连续5秒内没有读取到有用的消息则返回报文.
* @return 读取的缓冲区数据
* @throws IOException IO 异常
*/
public ByteBuffer read() throws IOException {
ByteBuffer result = ByteBuffer.allocate(0);
int oldByteChannelSize = 0;
ByteBufferChannel dataByteBufferChannel = null;
ByteBuffer dataByteBuffer = null;
dataByteBufferChannel = session.getByteBufferChannel();
stopType = StopType.RUNNING;
if(session==null){
return null;
}
//获取消息分割器
MessageSplitter messageSplitter = session.socketContext().messageSplitter();
if(messageSplitter==null){
Logger.error("[Error] MessageSplitter is null, you need to invoke SocketContext object's messageSplitter method to set MessageSplitter Object in it.");
return null;
}
boolean isConnect = true;
while ( isConnect && useSpliter && stopType== StopType.RUNNING ) {
if(session.socketContext() instanceof UdpSocket) {
isConnect = session.isOpen();
}else {
isConnect = session.isConnected();
}
//如果连接关闭,且读取缓冲区内没有数据时,退出循环
if(!isConnect && session.getByteBufferChannel().size()==0){
stopType = StopType.SOCKET_CLOSED;
}
int readsize = byteBufferChannel.size() - oldByteChannelSize;
try {
dataByteBuffer = dataByteBufferChannel.getByteBuffer();
}catch(MemoryReleasedException e){
stopType = StopType.STREAM_END;
}
//判断连接是否关闭
if (isRemoteClosed(dataByteBuffer, dataByteBufferChannel.size())) {
stopType = StopType.REMOTE_DISCONNECT;
}
//使用消息划分器进行消息划分
if(readsize == 0 && dataByteBuffer.limit() > 0) {
splitLength = messageSplitter.canSplite(session, dataByteBuffer);
if (splitLength >= 0) {
stopType = StopType.MSG_SPLITTER ;
}
}
dataByteBufferChannel.compact();
//超时判断,防止读0时导致的高 CPU 负载
if( readsize==0 && stopType == StopType.RUNNING ){
if(readZeroCount >= session.socketContext().getReadTimeout()){
stopType = StopType.STREAM_END;
}else {
readZeroCount++;
TEnv.sleep(1);
}
}else{
readZeroCount = 0;
}
oldByteChannelSize = byteBufferChannel.size();
}
//如果是流结束,对方关闭,本地关闭这三种情况则返回 null
// 返回是 null 则在EventProcess中会自动关闭连接
if(stopType == StopType.STREAM_END ||
stopType == StopType.REMOTE_DISCONNECT ||
stopType == StopType.SOCKET_CLOSED){
result = null;
}
//如果是消息截断器截断的消息则调用消息截断器处理的逻辑
else if(stopType== StopType.MSG_SPLITTER) {
if(splitLength!=0) {
result = ByteBuffer.allocateDirect(splitLength);
dataByteBufferChannel.readHead(result);
} else {
return ByteBuffer.allocate(0);
}
} else {
return ByteBuffer.allocate(0);
}
return result;
}
}