用netty开发多人聊天

<文章内容如有错误,烦请不吝赐教>

代码链接:https://github.com/levyc/NettyDemo/tree/master/src/chat

文章目录

  • 关于netty框架
  • 项目结构
  • 代码分析
    • 服务端代码分析
    • 客户端代码分析

为什么使用netty框架

netty是一个基于NIO,异步的,事件驱动的网络通信框架。由于使用Java提供 的NIO包中的API开发网络服务器代码量大,复杂,难保证稳定性。netty这类的网络框架应运而生。通过使用netty框架可以快速开发网络通信服务端,客户端。

项目结构

简单介绍一下项目。通过使用netty框架快速开发出简易多人聊天室,学会初步使用neety进行简单服务端与客户端的开发。

项目结构

Server端:

ServerMain:服务器启动类,负责服务器的绑定与启动
ServerChatHandler:核心类。负责连接消息的处理,数据的读写。
ServerIniterHandler:负责将多个Handlers组织进ChannelPipeline中。

Client端:

ClientMain:客户端启动类,负责客户端与服务器的连接,启动。
ClientChatHandler:核心类。负责连接消息的处理,数据读写。
ClientIniterHandler:负责将多个Handlers组织进ChannelPipeline中。

代码分析

服务端代码分析

ServerMain类

package chat.server;
import io.netty.bootstrap.ServerBootstrap;
import io.netty.channel.Channel;
import io.netty.channel.ChannelOption;
import io.netty.channel.EventLoopGroup;
import io.netty.channel.nio.NioEventLoopGroup;  
import io.netty.channel.socket.nio.NioServerSocketChannel;

public class ServerMain {

private int port;

public ServerMain(int port) {
    this.port = port;
}

public static void main(String[] args) {
    new ServerMain(Integer.parseInt(args[0])).run();
}

public void run() {
    EventLoopGroup acceptor = new NioEventLoopGroup();
    EventLoopGroup worker = new NioEventLoopGroup();
    ServerBootstrap bootstrap = new ServerBootstrap();
    bootstrap.option(ChannelOption.SO_BACKLOG, 1024);
    bootstrap.group(acceptor, worker);//设置循环线程组,前者用于处理客户端连接事件,后者用于处理网络IO
    bootstrap.channel(NioServerSocketChannel.class);//用于构造socketchannel工厂
    bootstrap.childHandler(new ServerIniterHandler());//为处理accept客户端的channel中的pipeline添加自定义处理函数
    try {
        Channel channel = bootstrap.bind(port).sync().channel();//绑定端口(实际上是创建serversocketchannnel,并注册到eventloop上),同步等待完成,返回相应channel
        System.out.println("server strart running in port:" + port);
        channel.closeFuture().sync();//在这里阻塞,等待关闭
    } catch (InterruptedException e) {
        e.printStackTrace();
    } finally {
        //优雅退出
        acceptor.shutdownGracefully();
        worker.shutdownGracefully();
        }
    }
}

EventLoopGroup:顾名思义,事件,循环,组,说白了即是用于管理多个channel的线程组。就好比一组进行循环使用的线程池中管理的线程。但是为什么分别有acceptor和worker2个呢?前者线程组负责连接的处理,即是用于接受客户端的连接,后者线程组负责handler消息数据的处理,即是用于处理SocketChannel网络读写
ServerBootstrap:简言之就是为服务器启动进行一些配置。调用的一些方法用处请看注释。

ServerChatHandler类

package chat.server;

import io.netty.channel.Channel;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.SimpleChannelInboundHandler;
import io.netty.channel.group.ChannelGroup;
import io.netty.channel.group.DefaultChannelGroup;
import io.netty.util.concurrent.GlobalEventExecutor;

public class ChatServerHandler extends SimpleChannelInboundHandler<String> {

public static final ChannelGroup group = new DefaultChannelGroup(
        GlobalEventExecutor.INSTANCE);

@Override
protected void channelRead0(ChannelHandlerContext arg0, String arg1)
        throws Exception {
    Channel channel = arg0.channel();
    for (Channel ch : group) {
        if (ch == channel) {
            ch.writeAndFlush("[you]:" + arg1 + "\n");
        } else {
            ch.writeAndFlush(
                    "[" + channel.remoteAddress() + "]: " + arg1 + "\n");
        }
    }

}

@Override
public void handlerAdded(ChannelHandlerContext ctx) throws Exception {
    Channel channel = ctx.channel();
    for (Channel ch : group) {
        ch.writeAndFlush(
                "[" + channel.remoteAddress() + "] " + "is comming");
    }
    group.add(channel);
}

@Override
public voiced handlerRemoved(ChannelHandlerContext ctx) throws Exception {
    Channel channel = ctx.channel();
    for (Channel ch : group) {
        ch.writeAndFlush(
                "[" + channel.remoteAddress() + "] " + "is comming");
    }
    group.remove(channel);
}

@Override
public void channelActive(ChannelHandlerContext ctx) throws Exception {
    Channel channel = ctx.channel();
    System.out.println("[" + channel.remoteAddress() + "] " + "online");
}

@Override
public void channelInactive(ChannelHandlerContext ctx) throws Exception {
    Channel channel = ctx.channel();
    System.out.println("[" + channel.remoteAddress() + "] " + "offline");
}

@Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause)
        throws Exception {
    System.out.println(
            "[" + ctx.channel().remoteAddress() + "]" + "exit the room");
    ctx.close().sync();
}
}

自定义的处理函类需要继承ChannelHandlerAdapter,我这里就直接继承SimpleChannelInboundHandler<T>,后面的泛型代表接受的消息的类型。
因为多人聊天会有多个客户端连接进来,所以定义了一个ChannelGroup group去存储连接进来的channel当作在线用户。
下面介绍一下各方法的作用

channelRead0:当channel的可读就绪时,该方法被调用,即是接收到客户端发过来的消息时被调用。方法逻辑:遍历group,将当前发送信息的channel发送‘you say:+消息体’,其余的channel则发送‘channle.remoteAdress+消息体’

handlerAdded:当有客户端channel被连接进来时,该方法被调用。向在线的每个channel发送[IP]is comming

handlerRemoved:当有客户端channeld断开网络io,该方法被调用。向在线的每个channel发送[IP]is leaving

channelActive:当有客户端channeld活跃时,该方法被调用。向在线的每个channel发送[IP]online

channelInactive:当有客户端channeld不活跃时,该方法被调用。向在线的每个channel发送[IP]offline

exceptionCaught:当连接和网络io发生异常时被调用。

那么,大家一定有疑惑,网络通信中,消息有很多种载体,例如文件,图片,字符串,那么在我的客户端发送一个图片给你服务器,服务器又怎样知道你发的是图片呢?里面就涉及到两项技术,协议和编解码。图片和文件的传输后续再说,先从当前项目多人聊天说协议和编解码。

假定我们简易多人聊天只允许发送字符串聊天,那么客户端发送的字符串不可能直接就是字符串发送出去的,电路只能识别0和1,因此我们发送出去的字符串需要按某种编码格式编码成字节数组再发送出去,服务器接受到我们的字节数组后,再按某个解码格式解码成字符串。如果自己去实现这样的编码解码器,无疑加重开发工作量。neety已经提供很多种解码器给我们使用,而Stringencoder和StringDecoder就是neety提供的编解码器。下面说说怎样使用。

ServerIniterHandler类

    package chat.server;

    import io.netty.channel.ChannelInitializer;
    import io.netty.channel.ChannelPipeline;
    import io.netty.channel.socket.SocketChannel;
    import io.netty.handler.codec.string.StringDecoder;
    import io.netty.handler.codec.string.StringEncoder;

    public class ServerIniterHandler extends  ChannelInitializer<SocketChannel> {

@Override
protected void initChannel(SocketChannel arg0) throws Exception {
    ChannelPipeline pipeline = arg0.pipeline();
    pipeline.addLast("docode",new StringDecoder());
    pipeline.addLast("encode",new StringEncoder());
    pipeline.addLast("chat",new ChatServerHandler());
    
}

}

通过ChannelInitializer去给channel的pipelie添加上字符串编解码器。即可在网络io中收发字符串。

客户端代码分析

ClientMain类

package chat.client;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

import io.netty.bootstrap.Bootstrap;
import io.netty.channel.Channel;
import io.netty.channel.EventLoopGroup;
import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.nio.NioSocketChannel;

public class ClientMain {
private String host;
private int port;
private boolean stop = false;

public ClientMain(String host, int port) {
    this.host = host;
    this.port = port;
}

public static void main(String[] args) throws IOException {
    new ClientMain(args[0], Integer.parseInt(args[1])).run();
}

public void run() throws IOException {
    EventLoopGroup worker = new NioEventLoopGroup();
    Bootstrap bootstrap = new Bootstrap();
    bootstrap.group(worker);
    bootstrap.channel(NioSocketChannel.class);
    bootstrap.handler(new ClientIniter());

    try {
        Channel channel = bootstrap.connect(host, port).sync().channel();
        while (true) {
            BufferedReader reader = new BufferedReader(
                    new InputStreamReader(System.in));
            String input = reader.readLine();
            if (input != null) {
                if ("quit".equals(input)) {
                    System.exit(1);
                }
                channel.writeAndFlush(input);
            }
        }
    } catch (InterruptedException e) {
        e.printStackTrace();
        System.exit(1);
    }
}

public boolean isStop() {
    return stop;
}

public void setStop(boolean stop) {
    this.stop = stop;
}

}

客户端的启动比服务端简单一点,只使用到一个eventloopgroup,用于处理网络io。
注意:客户端用的是bootstrap类
逻辑:当connect方法调用后调用sync方法阻塞到连接成功,然后进行死循环——通过system.in去读取输入的文本字符串,当输入‘quit’就结束进程,否则就发送输入的字符串给服务器。

ChatClientHandler类

package chat.client;

import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.SimpleChannelInboundHandler;

public class ChatClientHandler extends SimpleChannelInboundHandler<String> {

@Override
protected void channelRead0(ChannelHandlerContext arg0, String arg1)
        throws Exception {
    System.out.println(arg1);
}

}

打印服务器发送回来的数据

ClientIniter类

package chat.client;

import io.netty.channel.ChannelInitializer;
import io.netty.channel.ChannelPipeline;
import io.netty.channel.socket.SocketChannel;
import io.netty.handler.codec.http.HttpClientCodec;
import io.netty.handler.codec.string.StringDecoder;
import io.netty.handler.codec.string.StringEncoder;

public class ClientIniter extends ChannelInitializer<SocketChannel> {

@Override
protected void initChannel(SocketChannel arg0) throws Exception {
    ChannelPipeline pipeline = arg0.pipeline();
    pipeline.addLast("stringD", new StringDecoder());
    pipeline.addLast("stringC", new StringEncoder());
    pipeline.addLast("http", new HttpClientCodec());
    pipeline.addLast("chat", new ChatClientHandler());
}

}

在channel的pipeline中添加编解码器和自定义消息处理器。

运行结果:
server的窗口:
server strart running in port:8888
[/127.0.0.1:49635] online
[/127.0.0.1:49648] online

client1的窗口
[/127.0.0.1:49648] is comming
[you]:49648,hi

client2的窗口
[/127.0.0.1:49635] 49648,hi

总结:
经过上面的分析,可以得出其实用netty框架开发网络应用,相比Java原生NIO的API简单快捷,代码量少。实际上用netty开发核心两点就是启动类和编写自定义处理类。

**下一章预告:使用netty框架开发单对单聊天 **

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,254评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,875评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,682评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,896评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,015评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,152评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,208评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,962评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,388评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,700评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,867评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,551评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,186评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,901评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,689评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,757评论 2 351

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,644评论 18 139
  • netty常用API学习 netty简介 Netty是基于Java NIO的网络应用框架. Netty是一个NIO...
    花丶小伟阅读 6,000评论 0 20
  • 前奏 https://tech.meituan.com/2016/11/04/nio.html 综述 netty通...
    jiangmo阅读 5,848评论 0 13
  • 1、Netty基础入门 Netty是由JBOSS提供的一个java开源框架。Netty提供异步的、事件驱动的网络应...
    我是嘻哈大哥阅读 4,689评论 0 31
  • 今日立春也是上班第一天,忙到爆肝,上午做检查一直没停手,一上午做了二十人,下午又是连轴转,十多个病人的检查,晚上回...
    流水莲华阅读 192评论 0 0