Grizzly NIO框架 理论篇 【4】

系统 2108 0

Port Unification Overview(端口统一)

针对在一个端口上开放多种协议的服务,类似下图:
""
通过Port unification Filter去判断三种协议,然后针对不同协议传递到下一个Filter执行后续工作。
其中Finder的Grizzly官方给了一个简单用例,针对协议包头是"add"的Finder
  1. /**
  2. * {@link ProtocolFinder}, responsible to determine if incoming byte buffer
  3. * represents ADD-service request.
  4. */
  5. public class AddProtocolFinder implements ProtocolFinder {
  6. private final static byte [] magic = { 'a' , 'd' , 'd' };
  7. /**
  8. * {@inheritDoc}
  9. */
  10. @Override
  11. public Result find ( final PUContext puContext , final FilterChainContext ctx ) {
  12. // Get the input Buffer
  13. final Buffer inputBuffer = ctx . getMessage ();
  14. final int bytesToCompare = Math . min ( magic . length , inputBuffer . remaining ());
  15. final int bufferStart = inputBuffer . position ();
  16. // Compare incoming bytes with ADD-service protocol magic
  17. for ( int i = 0 ; i < bytesToCompare ; i ++) {
  18. if ( magic [ i ] != inputBuffer . get ( bufferStart + i )) {
  19. // If at least one byte doesn't match - it's not ADD-service protocol
  20. return Result . NOT_FOUND ;
  21. }
  22. }
  23. // if we check entire magic - return FOUND, or NEED_MORE_DATA otherwise
  24. return bytesToCompare == magic . length ?
  25. Result . FOUND : Result . NEED_MORE_DATA ;
  26. }
  27. }
这个简单例子应该明白怎么判断了吧,然后就是转到对应的协议
 
-------------------------------
理论学习暂且到此为止,水平实在有限,本人仅使用了基础功能,所以大部分扩展都没有去学习,希望有高人可以补充
 





Grizzly NIO框架 理论篇 【4】


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论