Netty开发UDP协议

时间:2023-03-09 08:38:15
Netty开发UDP协议

UdpServer

package org.zln.netty.five.part07;

import io.netty.bootstrap.Bootstrap;
import io.netty.channel.ChannelOption;
import io.netty.channel.EventLoopGroup;
import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.nio.NioDatagramChannel;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory; /**
* Created by sherry on 16/11/7.
*/
public class UdpServer { /**
* 日志
*/
private Logger logger = LoggerFactory.getLogger(UdpServer.class); public void run(int port){
EventLoopGroup eventLoopGroup = new NioEventLoopGroup();
try {
Bootstrap bootstrap = new Bootstrap();
bootstrap.group(eventLoopGroup)
.channel(NioDatagramChannel.class)
.option(ChannelOption.SO_BROADCAST,true)
.handler(new UdpServerHandler());
bootstrap.bind(port).sync().channel().closeFuture().await();
} catch (InterruptedException e) {
logger.error(e.getMessage(),e);
}finally {
eventLoopGroup.shutdownGracefully();
}
}
}

UdpServerHandler

package org.zln.netty.five.part07;

import io.netty.buffer.Unpooled;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.SimpleChannelInboundHandler;
import io.netty.channel.socket.DatagramPacket;
import io.netty.util.CharsetUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import java.util.concurrent.ThreadLocalRandom; /**
* Created by sherry on 16/11/7.
*/
public class UdpServerHandler extends SimpleChannelInboundHandler<DatagramPacket> { private static final String[] DICT = {
"只要功夫深,铁杵磨成针"
, "旧时王谢堂前燕,飞入寻常百姓家"
, "洛阳亲友如相问,一片冰心在玉壶"
, "一寸光阴一寸金,寸金难买寸光阴"
, "老骥伏枥,志在千里.烈士暮年,壮心不已!"
}; /**
* 日志
*/
private Logger logger = LoggerFactory.getLogger(UdpServerHandler.class); @Override
protected void messageReceived(ChannelHandlerContext ctx, DatagramPacket msg) throws Exception {
String req = msg.content().toString(CharsetUtil.UTF_8);
logger.debug("收到的请求:" + req);
if ("谚语字典查询?".equals(req)) {
ctx.writeAndFlush(new DatagramPacket(Unpooled.copiedBuffer("谚语查询结果:" + nextQueue(), CharsetUtil.UTF_8), msg.sender()));
}
} @Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
ctx.close();
logger.error(cause.getMessage(),cause);
} private String nextQueue() {
//ThreadLocalRandom 线程安全随机类
int quoteId = ThreadLocalRandom.current().nextInt(DICT.length);
return DICT[quoteId];
} }

UdpClient

package org.zln.netty.five.part07;

import io.netty.bootstrap.Bootstrap;
import io.netty.buffer.Unpooled;
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.DatagramPacket;
import io.netty.channel.socket.nio.NioDatagramChannel;
import io.netty.util.CharsetUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import java.net.InetSocketAddress; /**
* Created by sherry on 16/11/7.
*/
public class UdpClient { /**
* 日志
*/
private Logger logger = LoggerFactory.getLogger(UdpClient.class); public void run(int port) {
EventLoopGroup eventLoopGroup = new NioEventLoopGroup();
try {
Bootstrap bootstrap = new Bootstrap();
bootstrap.group(eventLoopGroup)
.channel(NioDatagramChannel.class)
.option(ChannelOption.SO_BROADCAST, true)
.handler(new UdpClientHandler()); Channel channel = bootstrap.bind(0).sync().channel();
//向网段内的所有机器广播
channel.writeAndFlush(new DatagramPacket(Unpooled.copiedBuffer("谚语字典查询?", CharsetUtil.UTF_8), new InetSocketAddress("255.255.255.255", port))).sync();
if (!channel.closeFuture().await(15000)) {
logger.debug("查询超时");
} } catch (InterruptedException e) {
logger.error(e.getMessage(), e);
} finally {
eventLoopGroup.shutdownGracefully();
}
}
}

UdpClientHandler

package org.zln.netty.five.part07;

import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.SimpleChannelInboundHandler;
import io.netty.channel.socket.DatagramPacket;
import io.netty.util.CharsetUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory; /**
* Created by sherry on 16/11/7.
*/
public class UdpClientHandler extends SimpleChannelInboundHandler<DatagramPacket> { /**
* 日志
*/
private Logger logger = LoggerFactory.getLogger(UdpClientHandler.class); @Override
protected void messageReceived(ChannelHandlerContext ctx, DatagramPacket msg) throws Exception {
String resp = msg.content().toString(CharsetUtil.UTF_8);
if (resp.startsWith("谚语查询结果:")){
logger.debug(resp);
ctx.close();
}
} @Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable e) throws Exception {
logger.error(e.getMessage(),e);
ctx.close();
}
}