第四章:Transports(传输)

本章内容

  • Transports(传输)
  • NIO(non-blocking IO,New IO), OIO(Old IO,blocking IO), Local(本地), Embedded(嵌入式)
  • Use-case(用例)
  • APIs(接口)

    网络应用程序一个很重要的工作是传输数据。传输数据的过程不一样取决是使用哪种交通工具,但是传输的方式是一样的:都是以字节码传输。Java开发网络程序传输数据的过程和方式是被抽象了的,我们不需要关注底层接口,只需要使用Java API或其他网络框架如Netty就能达到传输数据的目的。发送数据和接收数据都是字节码。Nothing more,nothing less。
    
    如果你曾经使用Java提供的网络接口工作过,你可能已经遇到过想从阻塞传输切换到非阻塞传输的情况,这种切换是比较困难的,因为阻塞IO和非阻塞IO使用的API有很大的差异;Netty提供了上层的传输实现接口使得这种情况变得简单。我们可以让所写的代码尽可能通用,而不会依赖一些实现相关的APIs。当我们想切换传输方式的时候不需要花很大的精力和时间来重构代码。
    
    本章将介绍统一的API以及如何使用它们,会拿Netty的API和Java的API做比较来告诉你为什么Netty可以更容易的使用。本章也提供了一些优质的用例代码,以便最佳使用Netty。使用Netty不需要其他的网络框架或网络编程经验,若有则只是对理解netty有帮助,但不是必要的。下面让我们来看看真是世界里的传输工作。
    

4.1 案例研究:切换传输方式

    为了让你想象如何运输,我会从一个简单的应用程序开始,这个应用程序什么都不做,只是接受客户端连接并发送“Hi!”字符串消息到客户端,发送完了就断开连接。我不会详细讲解这个过程的实现,它只是一个例子。

4.1.1 使用Java的I/O和NIO

    我们将不用Netty实现这个例子,下面代码是使用阻塞IO实现的例子:

[java] view plaincopy

  1. package netty.in.action;
  2. import java.io.IOException;
  3. import java.io.OutputStream;
  4. import java.net.ServerSocket;
  5. import java.net.Socket;
  6. import java.nio.charset.Charset;
  7. /**
    • Blocking networking without Netty
    • @author c.k
  8. *
  9. */
  10. public class PlainOioServer {
  11. public void server(int port) throws Exception {
  12. //bind server to port
  13. final ServerSocket socket = new ServerSocket(port);
  14. try {
  15. while(true){
  16. //accept connection
  17. final Socket clientSocket = socket.accept();
  18. System.out.println("Accepted connection from " + clientSocket);
  19. //create new thread to handle connection
  20. new Thread(new Runnable() {
  21. @Override
  22. public void run() {
  23. OutputStream out;
  24. try{
  25. out = clientSocket.getOutputStream();
  26. //write message to connected client
  27. out.write("Hi!\r\n".getBytes(Charset.forName("UTF-8")));
  28. out.flush();
  29. //close connection once message written and flushed
  30. clientSocket.close();
  31. }catch(IOException e){
  32. try {
  33. clientSocket.close();
  34. } catch (IOException e1) {
  35. e1.printStackTrace();
  36. }
  37. }
  38. }
  39. }).start();//start thread to begin handling
  40. }
  41. }catch(Exception e){
  42. e.printStackTrace();
  43. socket.close();
  44. }
  45. }
  46. }

上面的方式很简洁,但是这种阻塞模式在大连接数的情况就会有很严重的问题,如客户端连接超时,服务器响应严重延迟。为了解决这种情况,我们可以使用异步网络处理所有的并发连接,但问题在于NIO和OIO的API是完全不同的,所以一个用OIO开发的网络应用程序想要使用NIO重构代码几乎是重新开发。 下面代码是使用Java NIO实现的例子:

[java] view plaincopy

  1. package netty.in.action;
  2. import java.net.InetSocketAddress;
  3. import java.net.ServerSocket;
  4. import java.nio.ByteBuffer;
  5. import java.nio.channels.SelectionKey;
  6. import java.nio.channels.Selector;
  7. import java.nio.channels.ServerSocketChannel;
  8. import java.nio.channels.SocketChannel;
  9. import java.util.Iterator;
  10. /**
    • Asynchronous networking without Netty
    • @author c.k
  11. *
  12. */
  13. public class PlainNioServer {
  14. public void server(int port) throws Exception {
  15. System.out.println("Listening for connections on port " + port);
  16. //open Selector that handles channels
  17. Selector selector = Selector.open();
  18. //open ServerSocketChannel
  19. ServerSocketChannel serverChannel = ServerSocketChannel.open();
  20. //get ServerSocket
  21. ServerSocket serverSocket = serverChannel.socket();
  22. //bind server to port
  23. serverSocket.bind(new InetSocketAddress(port));
  24. //set to non-blocking
  25. serverChannel.configureBlocking(false);
  26. //register ServerSocket to selector and specify that it is interested in new accepted clients
  27. serverChannel.register(selector, SelectionKey.OP_ACCEPT);
  28. final ByteBuffer msg = ByteBuffer.wrap("Hi!\r\n".getBytes());
  29. while (true) {
  30. //Wait for new events that are ready for process. This will block until something happens
  31. int n = selector.select();
  32. if (n > 0) {
  33. //Obtain all SelectionKey instances that received events
  34. Iterator<SelectionKey> iter = selector.selectedKeys().iterator();
  35. while (iter.hasNext()) {
  36. SelectionKey key = iter.next();
  37. iter.remove();
  38. try {
  39. //Check if event was because new client ready to get accepted
  40. if (key.isAcceptable()) {
  41. ServerSocketChannel server = (ServerSocketChannel) key.channel();
  42. SocketChannel client = server.accept();
  43. System.out.println("Accepted connection from " + client);
  44. client.configureBlocking(false);
  45. //Accept client and register it to selector
  46. client.register(selector, SelectionKey.OP_WRITE, msg.duplicate());
  47. }
  48. //Check if event was because socket is ready to write data
  49. if (key.isWritable()) {
  50. SocketChannel client = (SocketChannel) key.channel();
  51. ByteBuffer buff = (ByteBuffer) key.attachment();
  52. //write data to connected client
  53. while (buff.hasRemaining()) {
  54. if (client.write(buff) == 0) {
  55. break;
  56. }
  57. }
  58. client.close();//close client
  59. }
  60. } catch (Exception e) {
  61. key.cancel();
  62. key.channel().close();
  63. }
  64. }
  65. }
  66. }
  67. }
  68. }

如你所见,即使它们实现的功能是一样,但是代码完全不同。下面我们将用Netty来实现相同的功能。

4.1.2 Netty中使用I/O和NIO

    下面代码是使用Netty作为网络框架编写的一个阻塞IO例子:

[java] view plaincopy

  1. package netty.in.action;
  2. import java.net.InetSocketAddress;
  3. import io.netty.bootstrap.ServerBootstrap;
  4. import io.netty.buffer.ByteBuf;
  5. import io.netty.buffer.Unpooled;
  6. import io.netty.channel.Channel;
  7. import io.netty.channel.ChannelFuture;
  8. import io.netty.channel.ChannelFutureListener;
  9. import io.netty.channel.ChannelHandlerContext;
  10. import io.netty.channel.ChannelInboundHandlerAdapter;
  11. import io.netty.channel.ChannelInitializer;
  12. import io.netty.channel.EventLoopGroup;
  13. import io.netty.channel.nio.NioEventLoopGroup;
  14. import io.netty.channel.socket.oio.OioServerSocketChannel;
  15. import io.netty.util.CharsetUtil;
  16. public class NettyOioServer {
  17. public void server(int port) throws Exception {
  18. final ByteBuf buf = Unpooled.unreleasableBuffer(Unpooled.copiedBuffer("Hi!\r\n", CharsetUtil.UTF_8));
  19. //事件循环组
  20. EventLoopGroup group = new NioEventLoopGroup();
  21. try {
  22. //用来引导服务器配置
  23. ServerBootstrap b = new ServerBootstrap();
  24. //使用OIO阻塞模式
  25. b.group(group).channel(OioServerSocketChannel.class).localAddress(new InetSocketAddress(port))
  26. //指定ChannelInitializer初始化handlers
  27. .childHandler(new ChannelInitializer<Channel>() {
  28. @Override
  29. protected void initChannel(Channel ch) throws Exception {
  30. //添加一个“入站”handler到ChannelPipeline
  31. ch.pipeline().addLast(new ChannelInboundHandlerAdapter() {
  32. @Override
  33. public void channelActive(ChannelHandlerContext ctx) throws Exception {
  34. //连接后,写消息到客户端,写完后便关闭连接
  35. ctx.writeAndFlush(buf.duplicate()).addListener(ChannelFutureListener.CLOSE);
  36. }
  37. });
  38. }
  39. });
  40. //绑定服务器接受连接
  41. ChannelFuture f = b.bind().sync();
  42. f.channel().closeFuture().sync();
  43. } catch (Exception e) {
  44. //释放所有资源
  45. group.shutdownGracefully();
  46. }
  47. }
  48. }

上面代码实现功能一样,但结构清晰明了,这只是Netty的优势之一。

4.1.3 Netty中实现异步支持

    下面代码是使用Netty实现异步,可以看出使用Netty由OIO切换到NIO是非常的方便。

[java] view plaincopy

  1. package netty.in.action;
  2. import io.netty.bootstrap.ServerBootstrap;
  3. import io.netty.buffer.ByteBuf;
  4. import io.netty.buffer.Unpooled;
  5. import io.netty.channel.ChannelFuture;
  6. import io.netty.channel.ChannelFutureListener;
  7. import io.netty.channel.ChannelHandlerContext;
  8. import io.netty.channel.ChannelInboundHandlerAdapter;
  9. import io.netty.channel.ChannelInitializer;
  10. import io.netty.channel.EventLoopGroup;
  11. import io.netty.channel.nio.NioEventLoopGroup;
  12. import io.netty.channel.socket.SocketChannel;
  13. import io.netty.channel.socket.nio.NioServerSocketChannel;
  14. import io.netty.util.CharsetUtil;
  15. import java.net.InetSocketAddress;
  16. public class NettyNioServer {
  17. public void server(int port) throws Exception {
  18. final ByteBuf buf = Unpooled.unreleasableBuffer(Unpooled.copiedBuffer("Hi!\r\n", CharsetUtil.UTF_8));
  19. // 事件循环组
  20. EventLoopGroup group = new NioEventLoopGroup();
  21. try {
  22. // 用来引导服务器配置
  23. ServerBootstrap b = new ServerBootstrap();
  24. // 使用NIO异步模式
  25. b.group(group).channel(NioServerSocketChannel.class).localAddress(new InetSocketAddress(port))
  26. // 指定ChannelInitializer初始化handlers
  27. .childHandler(new ChannelInitializer<SocketChannel>() {
  28. @Override
  29. protected void initChannel(SocketChannel ch) throws Exception {
  30. // 添加一个“入站”handler到ChannelPipeline
  31. ch.pipeline().addLast(new ChannelInboundHandlerAdapter() {
  32. @Override
  33. public void channelActive(ChannelHandlerContext ctx) throws Exception {
  34. // 连接后,写消息到客户端,写完后便关闭连接
  35. ctx.writeAndFlush(buf.duplicate()).addListener(ChannelFutureListener.CLOSE);
  36. }
  37. });
  38. }
  39. });
  40. // 绑定服务器接受连接
  41. ChannelFuture f = b.bind().sync();
  42. f.channel().closeFuture().sync();
  43. } catch (Exception e) {
  44. // 释放所有资源
  45. group.shutdownGracefully();
  46. }
  47. }
  48. }

因为Netty使用相同的API来实现每个传输,它并不关心你使用什么来实现。Netty通过操作Channel接口和ChannelPipeline、ChannelHandler来实现传输。

4.2 Transport API

    传输API的核心是Channel接口,它用于所有出站的操作。Channel接口的类层次结构如下

http://img.blog.csdn.net/20140715164221182?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvYWJjX2tleQ==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast

如上图所示,每个Channel都会分配一个ChannelPipeline和ChannelConfig。ChannelConfig负责设置并存储配置,并允许在运行期间更新它们。传输一般有特定的配置设置,只作用于传输,没有其他的实现。ChannelPipeline容纳了使用的ChannelHandler实例,这些ChannelHandler将处理通道传递的“入站”和“出站”数据。ChannelHandler的实现允许你改变数据状态和传输数据,本书有章节详细讲解ChannelHandler,ChannelHandler是Netty的重点概念。

    现在我们可以使用ChannelHandler做下面一些事情:
  • 传输数据时,将数据从一种格式转换到另一种格式
  • 异常通知
  • Channel变为有效或无效时获得通知
  • Channel被注册或从EventLoop中注销时获得通知
  • 通知用户特定事件

    这些ChannelHandler实例添加到ChannelPipeline中,在ChannelPipeline中按顺序逐个执行。它类似于一个链条,有使用过Servlet的读者可能会更容易理解。
    
    ChannelPipeline实现了拦截过滤器模式,这意味着我们连接不同的ChannelHandler来拦截并处理经过ChannelPipeline的数据或事件。可以把ChannelPipeline想象成UNIX管道,它允许不同的命令链(ChannelHandler相当于命令)。你还可以在运行时根据需要添加ChannelHandler实例到ChannelPipeline或从ChannelPipeline中删除,这能帮助我们构建高度灵活的Netty程序。此外,访问指定的ChannelPipeline和ChannelConfig,你能在Channel自身上进行操作。Channel提供了很多方法,如下列表:
    
  • eventLoop(),返回分配给Channel的EventLoop

  • pipeline(),返回分配给Channel的ChannelPipeline
  • isActive(),返回Channel是否激活,已激活说明与远程连接对等
  • localAddress(),返回已绑定的本地SocketAddress
  • remoteAddress(),返回已绑定的远程SocketAddress
  • write(),写数据到远程客户端,数据通过ChannelPipeline传输过去

后面会越来越熟悉这些方法,现在只需要记住我们的操作都是在相同的接口上运行,Netty的高灵活性让你可以以不同的传输实现进行重构。

    写数据到远程已连接客户端可以调用Channel.write()方法,如下代码:

[java] view plaincopy

  1. Channel channel = ...
  2. //Create ByteBuf that holds data to write
  3. ByteBuf buf = Unpooled.copiedBuffer("your data", CharsetUtil.UTF_8);
  4. //Write data
  5. ChannelFuture cf = channel.write(buf);
  6. //Add ChannelFutureListener to get notified after write completes
  7. cf.addListener(new ChannelFutureListener() {
  8. @Override
  9. public void operationComplete(ChannelFuture future) {
  10. //Write operation completes without error
  11. if (future.isSuccess()) {
  12. System.out.println(.Write successful.);
  13. } else {
  14. //Write operation completed but because of error
  15. System.err.println(.Write error.);
  16. future.cause().printStacktrace();
  17. }
  18. }
  19. });

    Channel是线程安全(thread-safe)的,它可以被多个不同的线程安全的操作,在多线程环境下,所有的方法都是安全的。正因为Channel是安全的,我们存储对Channel的引用,并在学习的时候使用它写入数据到远程已连接的客户端,使用多线程也是如此。下面的代码是一个简单的多线程例子:

[java] view plaincopy

  1. final Channel channel = ...
  2. //Create ByteBuf that holds data to write
  3. final ByteBuf buf = Unpooled.copiedBuffer("your data",CharsetUtil.UTF_8);
  4. //Create Runnable which writes data to channel
  5. Runnable writer = new Runnable() {
  6. @Override
  7. public void run() {
  8. channel.write(buf.duplicate());
  9. }
  10. };
  11. //Obtain reference to the Executor which uses threads to execute tasks
  12. Executor executor = Executors.newChachedThreadPool();
  13. // write in one thread
  14. //Hand over write task to executor for execution in thread
  15. executor.execute(writer);
  16. // write in another thread
  17. //Hand over another write task to executor for execution in thread
  18. executor.execute(writer);

此外,这种方法保证了写入的消息以相同的顺序通过写入它们的方法。想了解所有方法的使用可以参考Netty API文档。

4.3 Netty包含的传输实现

    Netty自带了一些传输协议的实现,虽然没有支持所有的传输协议,但是其自带的已足够我们来使用。Netty应用程序的传输协议依赖于底层协议,本节我们将学习Netty中的传输协议。

    Netty中的传输方式有如下几种:
  • NIO,io.netty.channel.socket.nio,基于java.nio.channels的工具包,使用选择器作为基础的方法。
  • OIO,io.netty.channel.socket.oio,基于java.net的工具包,使用阻塞流。
  • Local,io.netty.channel.local,用来在虚拟机之间本地通信。
  • Embedded,io.netty.channel.embedded,嵌入传输,它允许在没有真正网络的运输中使用ChannelHandler,可以非常有用的来测试ChannelHandler的实现。

4.3.1 NIO - Nonblocking I/O

    NIO传输是目前最常用的方式,它通过使用选择器提供了完全异步的方式操作所有的I/O,NIO从Java 1.4才被提供。NIO中,我们可以注册一个通道或获得某个通道的改变的状态,通道状态有下面几种改变:
  • 一个新的Channel被接受并已准备好
  • Channel连接完成
  • Channel中有数据并已准备好读取
  • Channel发送数据出去

    处理完改变的状态后需重新设置他们的状态,用一个线程来检查是否有已准备好的Channel,如果有则执行相关事件。在这里可能只同时一个注册的事件而忽略其他的。选择器所支持的操作在SelectionKey中定义,具体如下:
    
  • OP_ACCEPT,有新连接时得到通知

  • OP_CONNECT,连接完成后得到通知
  • OP_READ,准备好读取数据时得到通知
  • OP_WRITE,写入数据到通道时得到通知

    Netty中的NIO传输就是基于这样的模型来接收和发送数据,通过封装将自己的接口提供给用户使用,这完全隐藏了内部实现。如前面所说,Netty隐藏内部的实现细节,将抽象出来的API暴露出来供使用,下面是处理流程图:
    

http://img.blog.csdn.net/20140716120813577?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvYWJjX2tleQ==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast

    NIO在处理过程也会有一定的延迟,若连接数不大的话,延迟一般在毫秒级,但是其吞吐量依然比OIO模式的要高。Netty中的NIO传输是“zero-file-copy”,也就是零文件复制,这种机制可以让程序速度更快,更高效的从文件系统中传输内容,零复制就是我们的应用程序不会将发送的数据先复制到JVM堆栈在进行处理,而是直接从内核空间操作。接下来我们将讨论OIO传输,它是阻塞的。

4.3.2 OIO - Old blocking I/O

    OIO就是java中提供的Socket接口,java最开始只提供了阻塞的Socket,阻塞会导致程序性能低。下面是OIO的处理流程图,若想详细了解,可以参阅其他相关资料。

http://img.blog.csdn.net/20140716121016771?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvYWJjX2tleQ==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast

4.3.3 Local - In VM transport

     Netty包含了本地传输,这个传输实现使用相同的API用于虚拟机之间的通信,传输是完全异步的。每个Channel使用唯一的SocketAddress,客户端通过使用SocketAddress进行连接,在服务器会被注册为长期运行,一旦通道关闭,它会自动注销,客户端无法再使用它。

    连接到本地传输服务器的行为与其他的传输实现几乎是相同的,需要注意的一个重点是只能在本地的服务器和客户端上使用它们。Local未绑定任何Socket,值提供JVM进程之间的通信。

4.3.4 Embedded transport

    Netty还包括嵌入传输,与之前讲述的其他传输实现比较,它是不是一个真的传输呢?若不是一个真的传输,我们用它可以做什么呢?Embedded transport允许更容易的使用不同的ChannelHandler之间的交互,这也更容易嵌入到其他的ChannelHandler实例并像一个辅助类一样使用它们。它一般用来测试特定的ChannelHandler实现,也可以在ChannelHandler中重新使用一些ChannelHandler来进行扩展,为了实现这样的目的,它自带了一个具体的Channel实现,即:EmbeddedChannel。

4.4 每种传输方式在什么时候使用?

    不多加赘述,看下面列表:
  • OIO,在低连接数、需要低延迟时、阻塞时使用
  • NIO,在高连接数时使用
  • Local,在同一个JVM内通信时使用
  • Embedded,测试ChannelHandler时使用

results matching ""

    No results matching ""