mina框架分析:总体结构分析[通俗易懂]

MINAbasedApplicationArchitectureIt’sthequestionmostasked:’Howdoesa MINA basedapplicationlooklike’?Inthisarticleletsseewhat’sthearchitectureofMINAbasedapplication.Havetr

大家好,又见面了,我是你们的朋友全栈君。

1.首先,了解下mina框架有哪些特点,适合什么样的场景

MINA is a simple yet full-featurednetwork application framework which provides:

//可以支持各种协议,包括自己的协议

  • Unified API for various transport types:
    • TCP/IP & UDP/IP via Java NIO
    • Serial communication (RS232) via RXTX
    • In-VM pipe communication
    • You can implement your own!

//提供滤波器接口

  • Filter interface as an extension point; similar to Servlet filters

//可以调用不同类型的API,低层次的有ByteBuffer,高层次的有用户自己定义消息对象

  • Low-level and high-level API:
    • Low-level: uses ByteBuffers
    • High-level: uses user-defined message objects and codecs

//非常个性化的线程订制,可以提供单线程,单线程池,多线程池

  • Highly customizable thread model:
    • Single thread
    • One thread pool
    • More than one thread pools (i.e. SEDA)
  • Out-of-the-box SSL · TLS · StartTLS support using Java 5 SSLEngine
  • Overload shielding & traffic throttling
  • Unit testability using mock objects
  • JMX manageability

//支持对象流

  • Stream-based I/O support via StreamIoHandler
  • Integration with well known containers such as PicoContainer and Spring

//很容易从Netty移植到mina

  • Smooth migration from Netty, an ancestor of Apache MINA.

2.分析mina框架结构和原理

MINA based Application Architecture

It’s the question most asked : ‘How does a MINA based application look like’? In this article lets see what’s the architecture of MINA based application. Have tried to gather the information from presentations based on MINA.

A Bird’s Eye View :

mina框架分析:总体结构分析[通俗易懂]

Here, we can see that MINA is the glue between your application (be it a client or a server) and the underlying network layer, which can be based on TCP, UDP, in-VM comunication or even a RS-232C serial protocol for a client.

You just have to design your application on top of MINA without having to handle all the complexity of the newtork layer.

Lets take a deeper dive into the details now. The following image shows a bit more the internal of MINA, and what are each of theMINA components doing :

mina框架分析:总体结构分析[通俗易懂]


Broadly, MINA based applications are divided into 3 layers

  • I/O Service – Performs actual I/O
  • I/O Filter Chain – Filters/Transforms bytes into desired Data Structures and vice-versa
  • I/O Handler – Here resides the actual business logic

So, in order to create a MINA based Application, you have to :

  1. Create an I/O service – Choose from already available Services (*Acceptor) or create your own
  2. Create a Filter Chain – Choose from already existing Filters or create a custom Filter for transforming request/response
  3. Create an I/O Handler – Write business logic, on handling different messages

This is pretty much it.

You can get a bit deeper by reading those two pages :


Server Architecture

We have exposed the MINA Application Architecture in the previous section. Let’s now focus on the Server Architecture. Basically, a Server listens on a port for incoming requests, process them and send replies. It also creates and handles a session for each client (whenever we have a TCP or UDP based protocol), this will be explain more extensively in the chapter 4.

mina框架分析:总体结构分析[通俗易懂]

  • IOAcceptor listens on the network for incoming connections/packets
  • For a new connection, a new session is created and all subsequent request from IP Address/Port combination are handled in that Session
  • All packets received for a Session, traverses the Filter Chain as specified in the diagram. Filters can be used to modify the content of packets (like converting to Objects, adding/removing information etc). For converting to/from raw bytes to High Level Objects, PacketEncoder/Decoder are particularly useful
  • Finally the packet or converted object lands in IOHandlerIOHandlers can be used to fulfill business needs.


Client Architecture

  • We had a brief look at MINA based Server Architecture, lets see how Client looks like. Clients need to connect to a Server, send message and process the responses.

    mina框架分析:总体结构分析[通俗易懂]

    • Client first creates an IOConnector (MINA Construct for connecting to Socket), initiates a bind with Server
    • Upon Connection creation, a Session is created and is associated with Connection
    • Application/Client writes to the Session, resulting in data being sent to Server, after traversing the Filter Chain
    • All the responses/messages received from Server are traverses the Filter Chain and lands at IOHandler, for processing

Of course, MINA offers more than just that, and you will robably have to take care of many oher aspects,like the messages encoding/decoding, the network configuration how to scale up, etc...(这一块对于写程序其实更重要) We will have a further look at those aspects in the next chapters.


知道了mina的大致框架,那么下面就从源码去分析具体是如何实现的。

以server结构为例说明

1.IoAcceptor

说明:Accepts incoming connection, communicates with clients, and fires events to {@link IoHandler}s.

IoAcceptor和IoConnector接口都继承IoService的接口

Ioservice接口提供的方法主要有:

Server listens on a portfor incoming requests, process them and send replies

监听事件:void addListener(IoServiceListener listener);

处理接口;IoHandler getHandler();

返回一些数据;TransportMetadata getTransportMetadata();

管理session:IoSessionConfig getSessionConfig();

 

IoAcceptor的主要方法有:

Socket地址管理   SocketAddress getLocalAddress();

端口绑定   void bind(SocketAddress firstLocalAddress, SocketAddress…addresses) throws IOException;

IoSession管理  IoSession newSession(SocketAddress remoteAddress, SocketAddresslocalAddress);

 

 

2.下一步就是看session了

Session类的说明:A handle which represents connection between two end-pointsregardless of transport types.

需要注意的是:IoSessionis thread-safe。But please note that performing  more than one {@link #write(Object)} calls atthe same time will  cause the {@linkIoFilter#filterWrite(IoFilter.NextFilter,IoSession,WriteRequest)} to beexecuted simultaneously, and therefore you have to make sure the {@linkIoFilter} implementations you’re using are thread-safe, too.(要确保你重写的IoFilter必须是线程安全的)

里面重要的几个成员:(基本跟管理session,发送数据有关)

IoFilterChaingetFilterChain();//返回影响该session的filter chain


ObjectgetAttribute(Object key);//用户可以设置自己的attribution,对应的有setAtrribute


    long getReadBytes();//返回从session里面读出的字节总数


    long getWrittenBytes();//返回已经写到session里面的字节总数


booleanisWriterIdle();//判断session是否写空闲

 

3.下一步就是看filter了

IoFilterChain(他不是继承IoFilter哦)

说明:Acontainer of {@link IoFilter}s that forwards {@link IoHandler} events to theconsisting filters and terminal {@link IoHandler} sequentially.

IoFilterAdapter

继承于IoFilter

说明:Anadapter class for {@link IoFilter}.  Youcan extend this class and selectively override required event filter methodsonly.  All methods forwards events to thenext filter by default.

IoFilter

说明:

Afilter which intercepts {@link IoHandler} events like Servlet  filters. Filters can be used for these purposes:

*   <li>Event logging,</li>

 *  <li>Performance measurement,</li>

 *  <li>Authorization,</li>

 *  <li>Overload control,</li>

 *  <li>Message transformation (e.g. encryption and decryption,…),</li>

 *  <li>and many more.</li>

三者什么关系呢?

mina框架分析:总体结构分析[通俗易懂]

至于,IoFilterChain去管理和分发Filter事件

问题1:如何实现自己的Filter类呢?

mina框架本身也提供了几个filter,如

1、LoggingFilter :日志过滤器,用于记录所有的事件和请求日志.

2、ProtocolCodecFilter:规约解析过滤器,用来将所有收到的ByteBuffer内容转换为POJO消息(对象),实现往来报文的编码和解码;

3、CompressionFilter:压缩过滤器;

4、SSLFilter


要想写自己的filter,可以参考一个白名单的例子:

http://blog.csdn.net/kingmicrosoft/article/details/39153101


具体的Filter原理见

http://blog.csdn.net/kingmicrosoft/article/details/39151581

 

4.下一个就是Iohander了

说明:Handles all I/O events fired by MINA

Invoked from an I/O processor threadwhen a new connection has been created.

主要的成员是:

voidsessionOpened(IoSession session) throws Exception;//session打开后被触发

void sessionClosed(IoSession session)throws Exception;//session关闭后被触发

//收到信息后被触发

void messageReceived(IoSession session,Object message) throws Exception;

//当信息被IoSession#write(Object)写完后触发

void messageSent(IoSession session,Object message) throws Exception;



版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/126906.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)
blank

相关推荐

  • db4o php,TravianDboor/build_enc.php at b7fe47cc3223a87262c82a6aa23336ac7ab25104 · BenDboor/TravianDb…

    db4o php,TravianDboor/build_enc.php at b7fe47cc3223a87262c82a6aa23336ac7ab25104 · BenDboor/TravianDb…if(!extension_loaded(‘ionCubeLoader’)){$__oc=strtolower(substr(php_uname(),0,3));$__ln=’ioncube_loader_’.$__oc.’_’.substr(phpversion(),0,3).(($__oc==’win’)?’.dll’:’.so’);@dl($__ln);if(function_exists…

    2022年10月12日
  • 雅虎优化35条

    雅虎优化35条[内容]尽量减少HTTP请求数[服务器]使用CDN(ContentDeliveryNetwork)[服务器]添上Expires或者Cache-ControlHTTP头[服务器]Gzip组件[css]把样式表放在顶部[js]把脚本放在底部[css]避免使用CSS表达式[js,css]把JavaScript和CSS放到外面[内容]减少DNS查找[js,css

  • oracle数据库备份出现错误:RMAN-03002 ORA-19809 ORA-19804

    oracle数据库备份出现错误:RMAN-03002 ORA-19809 ORA-19804

  • 简述mybatis框架与hibernate框架的区别_hibernate 性能

    简述mybatis框架与hibernate框架的区别_hibernate 性能hibernate与mybatis的区别和特点hibernate是全自动,而mybatis是半自动。hibernate完全可以通过对象关系模型实现对数据库的操作,拥有完整的JavaBean对象与数据库的映射结构来自动生成sql。而mybatis仅有基本的字段映射,对象数据以及对象实际关系仍然需要通过手写sql来实现和管理。hibernate数据库移植性远大于mybatis。hibernate通过它强大的映射结构和hql语言,大大降低了对象与数据库(oracle、mysql等)的耦合性,

  • 论计算机发展史及展望_策略单元培训心得

    论计算机发展史及展望_策略单元培训心得一种对计算机发展史展开研究的策略(3页)本资源提供全文预览,点击全文预览即可全文预览,如果喜欢文档就下载吧,查找使用更方便哦!9.9积分一种对计算机发展史展开研究的策略一种对计算机发展史展开研究的策略一种对计算机发展史展开研究的策略一、引言随着中国的开放,科学技术的国际交流日益深入,现代化意义上的计算机产品与技术被不断介绍并引入到国内,且在短时间内取得了迅.L.猛的发展。然而,作为…

    2022年10月18日
  • Python删除字符串中指定字符

    Python删除字符串中指定字符删除特定位置字符使用.pop()方法,先将字符串转换为列表,再把列表转换成字符串。string1=’雪雪最大’#定义一个字符串list_str=list(string1)#将字符串转换为列表list_str.pop(1)#删去第一个字符string2=”.join(list_str)#再将列表转换成字符串print(string2)输出结果雪最大 删除指定字符方法一使用.replace()方法,删除(指定字符string=’雪雪最大’

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号