上文的内容还有一些没有结尾,这篇补上。在ExpiringMap类中,使用了一个私有内部类ExpiringObject来表示待检查超时的对象,它包括三个域,键,值,上次访问时间,以及用于上次访问时间这个域的读写锁:
private K key;
private V value;
private long lastAccessTime;
private final ReadWriteLock lastAccessTimeLock = new ReentrantReadWriteLock();
而ExpiringMap中包括了下述几个变量:
private final ConcurrentHashMap<K, ExpiringObject> delegate;//超时代理集合,保存待检查对象
private final CopyOnWriteArrayList<ExpirationListener<V>> expirationListeners;//超时监听者
private final Expirer expirer;//超时检查线程
现在再来看看IoSession的一个抽象实现类AbstractIoSession。这是它的几个重要的成员变量:
private IoSessionAttributeMap attributes;//会话属性映射图
private WriteRequestQueue writeRequestQueue;//写请求队列
private WriteRequest currentWriteRequest;//当前写请求
当要结束当前会话时,会发送一个一个写请求CLOSE_REQUEST。而closeFuture这个CloseFuture会在连接关闭时状态被设置为”closed”,它的监听器是SCHEDULED_COUNTER_RESETTER。
close和closeOnFlush都是异步的关闭操作,区别是前者立即关闭连接,而后者是在写请求队列中放入一个CLOSE_REQUEST,并将其即时刷新出去,若要真正等待关闭完成,需要调用方在返回的CloseFuture等待
public final CloseFuture close() {
synchronized (lock) {
if (isClosing()) {
return closeFuture;
} else {
closing = true;
}
}
getFilterChain().fireFilterClose();//fire出关闭事件
return closeFuture;
}
public final CloseFuture closeOnFlush() {
getWriteRequestQueue().offer(this, CLOSE_REQUEST);
getProcessor().flush(this);
return closeFuture;
}
下面来看看读数据的过程:
public final CloseFuture close() {
synchronized (lock) {
if (isClosing()) {
return closeFuture;
} else {
closing = true;
}
}
getFilterChain().fireFilterClose();//fire出关闭事件
return closeFuture;
}
public final CloseFuture closeOnFlush() {
getWriteRequestQueue().offer(this, CLOSE_REQUEST);
getProcessor().flush(this);
return closeFuture;
}
private Queue<ReadFuture> getReadyReadFutures() {//返回可被读数据队列
Queue<ReadFuture> readyReadFutures =
(Queue<ReadFuture>) getAttribute(READY_READ_FUTURES_KEY);//从会话映射表中取出可被读数据队列
if (readyReadFutures == null) {//第一次读数据
readyReadFutures = new CircularQueue<ReadFuture>();//构造一个新读数据队列
Queue<ReadFuture> oldReadyReadFutures =
(Queue<ReadFuture>) setAttributeIfAbsent(
READY_READ_FUTURES_KEY, readyReadFutures);
if (oldReadyReadFutures != null) {
readyReadFutures = oldReadyReadFutures;
}
}
return readyReadFutures;
}
public final ReadFuture read() {//读数据
if (!getConfig().isUseReadOperation()) {//会话配置不允许读数据(这是默认情况)
throw new IllegalStateException("useReadOperation is not enabled.");
}
Queue<ReadFuture> readyReadFutures = getReadyReadFutures();//获取已经可被读数据队列
ReadFuture future;
synchronized (readyReadFutures) {//锁住读数据队列
future = readyReadFutures.poll();//取队头数据
if (future != null) {
if (future.isClosed()) {//关联的会话已经关闭了,让读者知道此情况
readyReadFutures.offer(future);
}
} else {
future = new DefaultReadFuture(this);
getWaitingReadFutures().offer(future); //将此数据插入等待被读取数据的队列,这个代码和上面的getReadyReadFutures类似,只是键值不同而已
}
}
return future;
}
再来看写数据到指定远端地址的过程,可以写三种类型数据:IoBuffer,整个文件或文件的部分区域,这会通过传递写请求给过滤器链条来完成数据向目的远端的传输。
public final WriteFuture write(Object message, SocketAddress remoteAddress) {
FileChannel openedFileChannel = null;
try
{
if (message instanceof IoBuffer&& !((IoBuffer) message).hasRemaining())
{// 空消息
throw new IllegalArgumentException(
"message is empty. Forgot to call flip()?");
}
else if (message instanceof FileChannel)
{//要发送的是文件的某一区域
FileChannel fileChannel = (FileChannel) message;
message = new DefaultFileRegion(fileChannel, 0, fileChannel.size());
}
else if (message instanceof File)
{//要发送的是文件,打开文件通道
File file = (File) message;
openedFileChannel = new FileInputStream(file).getChannel();
message = new DefaultFileRegion(openedFileChannel, 0, openedFileChannel.size());
}
}
catch (IOException e)
{
ExceptionMonitor.getInstance().exceptionCaught(e);
return DefaultWriteFuture.newNotWrittenFuture(this, e);
}
WriteFuture future = new DefaultWriteFuture(this);
getFilterChain().fireFilterWrite(
new DefaultWriteRequest(message, future, remoteAddress)); //构造写请求,通过过滤器链发送出去,写请求中指明了要发送的消息,目的地址,以及返回的结果
//如果打开了一个文件通道(发送的文件的部分区域或全部),就必须在写请求完成时关闭文件通道
if (openedFileChannel != null) {
final FileChannel finalChannel = openedFileChannel;
future.addListener(new IoFutureListener<WriteFuture>() {
public void operationComplete(WriteFuture future) {
try {
finalChannel.close();//关闭文件通道
} catch (IOException e) {
ExceptionMonitor.getInstance().exceptionCaught(e);
}
}
});
}
return future;//写请求成功完成
}
最后,来看看一个WriteRequestQueue的实现,唯一加入的一个功能就是若在队头发现是请求关闭,则会去关闭会话。
private class CloseRequestAwareWriteRequestQueue implements WriteRequestQueue {
private final WriteRequestQueue q;//内部实际的写请求队列
public CloseRequestAwareWriteRequestQueue(WriteRequestQueue q) {
this.q = q;
}
public synchronized WriteRequest poll(IoSession session) {
WriteRequest answer = q.poll(session);
if (answer == CLOSE_REQUEST) {
AbstractIoSession.this.close();
dispose(session);
answer = null;
}
return answer;
}
public void offer(IoSession session, WriteRequest e) {
q.offer(session, e);
}
public boolean isEmpty(IoSession session) {
return q.isEmpty(session);
}
public void clear(IoSession session) {
q.clear(session);
}
public void dispose(IoSession session) {
q.dispose(session);
}
}
作者:phinecos(洞庭散人)
出处:http://phinecos.cnblogs.com/
分享到:
相关推荐
《Mina2.0框架源码剖析》 Apache Mina是一个高性能、轻量级的网络通信框架,常用于构建基于TCP/IP和UDP/IP协议的应用,如服务器端的开发。Mina2.0作为其一个重要版本,引入了许多优化和改进,为开发者提供了更强大...
Mina2.0框架源码剖析 Mina2.0是一个基于Java的网络应用框架,提供了一个简洁、灵活的API,帮助开发者快速构建高性能的网络应用程序。下面是Mina2.0框架源码剖析的相关知识点: 一、Mina2.0框架概述 Mina2.0是一个...
Mina2.0 框架源码剖析(六)主要包括了解 Mina2.0 的过滤器机制、异常处理机制、编解码器的使用等。 知识点: * 过滤器机制:LoggingFilter、ProtocolCodecFilter * 异常处理机制:IOException * 编解码器的使用:...
《Mina2.0框架源码剖析(六)》这篇文档主要关注的是Mina框架中的ExpiringMap、IoSession及其相关概念,这些内容对于理解Mina框架如何处理数据过期、会话管理和读写操作至关重要。 ExpiringMap是一个实现自动过期功能...
Mina2.0框架源码剖析(六) TextLineCodecFactory是一个实现了ProtocolCodecFactory接口的Factory,负责创建TextLineCodec对象。TextLineCodec对象可以对字符串进行编码和解码,例如将字符串编码为UTF-8格式、对...
#### Mina 2.0 框架源码剖析 接下来,我们将逐步深入分析 Mina 2.0 的核心组件及其实现原理。 **2.1 IoAcceptor** `IoAcceptor` 接口是 Mina 2.0 中的核心接口之一,它代表了一个网络服务端点。通过该接口可以...
### Mina2.0阅读源码笔记知识点梳理 #### 一、Mina 概述与官方资源 **Mina** 是 Apache 基金会下的一个开源项目,它为开发者提供了一个高性能且易于使用的网络应用框架。Mina 的设计目标是帮助用户轻松地开发出高...
通过阅读和分析Mina2.0的源码,我们可以更深入地理解其内部工作机制,从而更好地利用这一工具。对于开发人员来说,理解并掌握HttpServer的实现原理,不仅有助于提高代码质量,还能提升解决网络通信问题的能力。因此...
7. **源码分析**:由于标签中提到了“源码”,因此,对于有志于深入理解Mina工作原理的开发者来说,阅读和分析Apache Mina的源码可以帮助他们更好地优化自己的网络应用程序,提高性能和稳定性。 8. **性能优化**:...
3. **Mina2源码分析**(Mina2源码分析.doc):源码分析文档通常由经验丰富的开发者编写,通过深入剖析MINA的源代码,揭示其内部工作原理,帮助开发者理解MINA如何实现非阻塞I/O,以及如何高效地处理网络连接和数据...
描述中提到的“史上最全的mina2.0材料,真的很不错,用了才知道”,暗示这是一份详尽且高质量的学习资源,包含了MINA 2.0版本的所有重要方面,并且通过实际使用可以体验到其价值。 标签中的“mian2.0 中文api”表明...
资源包括: MINA笔记.docx ...Mina2.0快速入门与源码剖析.pdf MINA网络框架和RMI的对比研究.pdf 基于3G网络的移动流媒体服务器的设计与实现.pdf 高性能通信框架及智能主站技术研究.nh MINA类图.doc 等
《Mina2.0快速入门与源码剖析》这本书可能是MINA 2.0版本的指南,它可能包含以下内容: 1. 快速入门教程:针对MINA 2.0的新特性,提供快速搭建和运行MINA服务端和客户端的步骤。 2. 源码分析:对MINA的关键模块进行...
Mina源码解析.zip和mina-example.zip可能包含了MINA的源代码分析和示例项目,对于深入学习MINA的内部工作机制和实际应用开发非常有价值。最后,apache-mina-2.0.7应该是MINA框架的主要库文件,包含了所有必需的类和...