Chinaunix首页 | 论坛 | 博客
  • 博客访问: 650822
  • 博文数量: 149
  • 博客积分: 3901
  • 博客等级: 中校
  • 技术积分: 1558
  • 用 户 组: 普通用户
  • 注册时间: 2009-02-16 14:33
文章分类

全部博文(149)

文章存档

2014年(2)

2013年(10)

2012年(32)

2011年(21)

2010年(84)

分类: Java

2012-05-27 20:00:52


参考:
  http://blog.csdn.net/xymyeah/article/details/3714667
  http://blog.csdn.net/wfeng007/article/details/5308614
  *

  普通的 Sock 拥塞
     在 ServerSocket的accept()方法;和InputStream的read()方式
         因此我们需要两类型的线程分别进行处理。而且每一个阻塞方法所绑定的线程的生命周期和网络连接的生命周期是一致的 -- 并发造成大量维护线程,导致浪费
        
    NIO 的解决办法 : 
        1.  数据缓冲处理(ByteBuffer) :解决 read/write 大量使用线程和每个线程中使用的缓存区内存问题
                ByteBuffer 可使用 <共享缓冲区 - view buffer >
                还可以使用 Direct ByteBuffer - native 本地非java内存 ,提高性能
            
         为方便大家理解,下面用自己的语言描述下  :
                 position(操作游标) < limit(某操作挡板) < capacity(整个缓存大小)  :
             
          a。在写入场景中  (以写入数据第一行灰色);
          b。执行
filp(),就变成读取场景 ,游标指向写入开始,挡板放置在写入最后结束位置
                


           a。读取到最后,执行clear() ,缓存区状态回到初始
                

              


          2. 异步通道 (Channel) : [我的理解] Channel 是使用底层系统方法传送 Client Sock消息到 Server Buffer 中 ,非传统方式 使用 线程去传送消息. 
              Channel 维护ByteBuffer - Client Socket 的关系 
           3. 有条件的选择(Readiness Selection):
                 a. 有Channel 底层系统支持消息传输, 非拥塞主要的逻辑实现部分。
                 b. [我的理解]非拥塞的机制 :是由监听Channel的事件完成。消息交给底层系统接口维护(非java线程维护的)当消息传输结束或一段落,就触发Server上的一个响应事件,这样一个客户端消息传递请求就可以快速返回。
                 SelectionKey标识Selector和SelectableChannel,一旦一个Channel注册到Selector中,就会返回一个SelectionKey对象
                 SelectionKey保存了两类状态:对应的 Channel注册了哪些操作;对应的Channel的那些操作已经准备好了,可以进行相应的数据操作了)结合来实现这个功能的。


在参考中还提到这种非拥塞方式的一些弊端(当然 一些有特点的技术是有使用场景的):
  1. 持久连接的超时问题(Timeout) 
         感觉这是个棘手问题,虽然交给底层维护消息的缓冲,但当一个消息的缓冲超时事件应该很有必要监听把 ?? 这个监听事件没有??
   2. 如何使用Selector,由于每一个Selector的处理能力是有限的
   3.    在非阻塞情况下,read和write都不在是阻塞的, 相对应的 IO不好的问题如果消息传输有丢失怎么办 ?
   4. 如何共享内存Buffer,这给 程序猿 增加一定难度
   5.  网络非拥塞造成的消息顺序问题 
    6. 内存泄露 

   NIO 两种并发线程 的介绍,目前还没具体使用 ,不给个人理解。

这上网上抄了个demo - 先mark下,到时加自己的注解
Client 端输出
 $> welcome to VistaQQ

点击(此处)折叠或打开

  1. if __name__ == '__main__':
  2.     import socket
  3.     sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  4.     sock.connect(('localhost', 6018))
  5.     import time
  6.     #time.sleep(2)
  7.     sock.send('1 test !~ ')
  8.     print sock.recv(1024)
  9.     sock.close()


服务端输出(客户端运行了 3次 ) :
$> 服务器启动
$> Client >> 1 test !~
$> key.isWritable
$>   block = java.nio.HeapByteBuffer[pos=0 lim=18 cap=18]

$> Client >> 1 test !~
$> key.isWritable
$>   block = java.nio.HeapByteBuffer[pos=0 lim=18 cap=18]
$>
$> Client >> 1 test !~
$> key.isWritable
$>   block = java.nio.HeapByteBuffer[pos=0 lim=18 cap=18]

点击(此处)折叠或打开

  1. //package com.vista.Server;

  2. import java.io.BufferedWriter;
  3. import java.io.FileInputStream;
  4. import java.io.IOException;
  5. import java.io.OutputStreamWriter;
  6. import java.io.PrintWriter;
  7. import java.net.InetSocketAddress;
  8. import java.net.ServerSocket;
  9. import java.nio.ByteBuffer;
  10. import java.nio.CharBuffer;
  11. import java.nio.channels.FileChannel;
  12. import java.nio.channels.SelectionKey;
  13. import java.nio.channels.Selector;
  14. import java.nio.channels.ServerSocketChannel;
  15. import java.nio.channels.SocketChannel;
  16. import java.nio.charset.Charset;
  17. import java.nio.charset.CharsetDecoder;
  18. import java.util.Iterator;
  19. import java.util.LinkedList;
  20. import java.util.Set;



  21. public class SelectorServer {

  22.     private static int DEFAULT_SERVERPORT = 6018;//默认端口
  23.     private static int DEFAULT_BUFFERSIZE = 1024;//默认缓冲区大小为1024字节

  24.     private static String DEFAULT_CHARSET = "GB2312";//默认码集
  25.     private static String DEFAULT_FILENAME = "bigfile.dat";

  26.     private ServerSocketChannel sschannel;

  27.     private Selector selector;//选择器
  28.     private ByteBuffer buffer;//字节缓冲区

  29.     private int port;
  30.     private Charset charset;//字符集
  31.     private CharsetDecoder decoder;//解码器

  32.     

  33.     

  34.     public SelectorServer(int port) throws IOException {
  35.         this.port = port;
  36.         this.sschannel = null;

  37.         this.selector = Selector.open();//打开选择器

  38.         this.buffer = ByteBuffer.allocate(DEFAULT_BUFFERSIZE);

  39.         this.charset = Charset.forName(DEFAULT_CHARSET);
  40.         this.decoder = this.charset.newDecoder();
  41.     }

  42.     

  43.      private class HandleClient {

  44.          private String strGreeting = "welcome to VistaQQ";

  45.          public HandleClient() throws IOException {
  46.          }

  47.          public String readBlock() {
  48.      //读块数据
  49.              return this.strGreeting;
  50.          }

  51.          public void close() {
  52.          }

  53.     }



  54.     protected void handleKey(SelectionKey key) throws IOException {
  55.           //处理事件
  56.           if (key.isAcceptable()) {
  57.               // 接收请求
  58.               ServerSocketChannel server = (ServerSocketChannel) key.channel();
  59.              //取出对应的服务器通道
  60.               SocketChannel schannel = server.accept();
  61.               schannel.configureBlocking(false);
  62.               //客户socket通道注册读操作
  63.               schannel.register(selector, SelectionKey.OP_READ);
  64.           } else if (key.isReadable()) {
  65.               // 读信息
  66.               SocketChannel schannel = (SocketChannel) key.channel();
  67.               int count = schannel.read(this.buffer);
  68.               if (count > 0) {
  69.                 this.buffer.flip();
  70.                 CharBuffer charBuffer = decoder.decode(this.buffer);
  71.                 System.out.println("Client >> " + charBuffer.toString());
  72.                 // 注册写入 和添加 处理者
  73.                 schannel.register(selector,
  74.                                   SelectionKey.OP_WRITE|SelectionKey.OP_READ,
  75.                                   new HandleClient());
  76.               } else {
  77.                 //客户已经断开
  78.                 schannel.close();
  79.               }

  80.               this.buffer.clear();//清空缓冲区

  81.          } else if (key.isWritable()) {
  82.              System.out.println("key.isWritable");
  83.               // 写事件
  84.               SocketChannel schannel = (SocketChannel) key.channel();
  85.               HandleClient handle = (HandleClient) key.attachment();//取出处理者
  86.               // 包装一个 缓冲区 
  87.               ByteBuffer block = ByteBuffer.wrap(handle.readBlock().getBytes());
  88.              System.out.println(" block = "+block);
  89.               schannel.write(block);
  90.              
  91.               // 是表示Socket可写,网络不出现阻塞情况下,一直是可以写的,
  92.               // 所认一直为true. 一般不注册OP_WRITE事件,或特别小心注册写入事件.
  93.               // 为测试 直接 取出 写入 事件
  94.               key.interestOps(SelectionKey.OP_READ);
  95.               //channel.close();

  96.         }



  97.     }

  98.     public void listen() throws IOException {
  99.     //服务器开始监听端口,提供服务
  100.         ServerSocket socket;
  101.         sschannel = ServerSocketChannel.open(); // 打开通道
  102.         socket = sschannel.socket(); //得到与通到相关的socket对象
  103.         socket.bind(new InetSocketAddress(port)); //将scoket榜定在制定的端口上
  104.         //配置通到使用非阻塞模式,在非阻塞模式下,可以编写多道程序同时避免使用复杂的多线程
  105.         sschannel.configureBlocking(false);
  106.         sschannel.register(selector, SelectionKey.OP_ACCEPT);
  107.         try {
  108.             while(true) {
  109.      // 与通常的程序不同,这里使用channel.accpet()接受客户端连接请求,而不是在socket对象上调用accept(),这里在调用accept()方法时如果通道配置为非阻塞模式,那么accept()方法立即返回null,并不阻塞
  110.                 this.selector.select();
  111.                 //if (selector.select(1000) == 0) {
  112.                 // System.out.print(".");
  113.                 // continue;
  114.                 //}

  115.                 Iterator iter = this.selector.selectedKeys().iterator();
  116.                 while(iter.hasNext()) {
  117.                     SelectionKey key = (SelectionKey)iter.next();
  118.                     iter.remove();
  119.                     this.handleKey(key);
  120.                 }

  121.             }

  122.         }

  123.         catch(IOException ex) {
  124.             ex.printStackTrace();
  125.         }

  126.     }

  127.     public static void main(String[] args) throws IOException {
  128.         System.out.println("服务器启动");
  129.         SelectorServer server = new SelectorServer(SelectorServer.DEFAULT_SERVERPORT);
  130.         server.listen(); //服务器开始监听端口,提供服务
  131.     }



  132. }





    



阅读(1591) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~