您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關(guān)基于netty的websocket在channelActive觸發(fā)時發(fā)送數(shù)據(jù)異常問題分析是怎樣的,小編覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
####事情起因,用netty實現(xiàn)了websocket,在鏈接創(chuàng)建成功后發(fā)送一個消息給客戶端,我們選擇在channelActive中發(fā)送消息。 可想而知肯定是不行的了 代碼如下
EventLoopGroup bossGroup = new NioEventLoopGroup(); EventLoopGroup group = new NioEventLoopGroup(); try { ServerBootstrap sb = new ServerBootstrap(); sb.option(ChannelOption.SO_BACKLOG, 1024); // 綁定線程池 sb.group(group, bossGroup) // 指定使用的channel .channel(NioServerSocketChannel.class) // 綁定監(jiān)聽端口 .localAddress(this.port) .option(ChannelOption.SO_KEEPALIVE, true) // 綁定客戶端連接時候觸發(fā)操作 .childHandler(new ChannelInitializer<SocketChannel>() { @Override protected void initChannel(SocketChannel ch) throws Exception { log.info("收到新連接"); ch.pipeline().addLast(new LoggingHandler("DEBUG")); ch.pipeline().addLast(new IdleStateHandler(60, 0, 0)); //websocket協(xié)議本身是基于http協(xié)議的,所以這邊也要使用http解編碼器 ch.pipeline().addLast(new HttpServerCodec()); //以塊的方式來寫的處理器 ch.pipeline().addLast(new ChunkedWriteHandler()); ch.pipeline().addLast(new HttpObjectAggregator(8192)); ch.pipeline().addLast(new WebSocketServerProtocolHandler("/socket", null, true, 65536 * 10)); ch.pipeline().addLast(new MyWebSocketHandler()); } }); // 服務(wù)器異步創(chuàng)建綁定 ChannelFuture cf = sb.bind().sync(); log.info(NettyServer.class + " 啟動正在監(jiān)聽: " + cf.channel().localAddress()); // 關(guān)閉服務(wù)器通道 cf.channel().closeFuture().sync();
#####排查1:因為沒有任何異常,客戶端沒有收到消息,故先采用wireshark抓包,發(fā)現(xiàn)網(wǎng)卡上沒有對應(yīng)的想發(fā)送的消息。 為什么網(wǎng)卡沒有對應(yīng)的包呢,經(jīng)過debug發(fā)現(xiàn)如果發(fā)送的數(shù)據(jù)類型是WebSocketFrame在最終發(fā)送時候異常了具體代碼在HeadContext的write方法中,headcontext是netty的channelpipeline的頭部,最終寫出時都會從pipeline的尾部鏈接到頭部來執(zhí)行(pipeline為雙向鏈表) 為什么在channelread中能寫信息而在channelActive無法寫信息呢,經(jīng)過分析發(fā)現(xiàn),channelActive的觸發(fā)是在socketchannel第一次注冊的時候發(fā)生的具體代碼如下:abstrcatchannel中
private void register0(ChannelPromise promise) { try { // check if the channel is still open as it could be closed in the mean time when the register // call was outside of the eventLoop if (!promise.setUncancellable() || !ensureOpen(promise)) { return; } boolean firstRegistration = neverRegistered; doRegister(); neverRegistered = false; registered = true; // Ensure we call handlerAdded(...) before we actually notify the promise. This is needed as the // user may already fire events through the pipeline in the ChannelFutureListener. pipeline.invokeHandlerAddedIfNeeded(); safeSetSuccess(promise); pipeline.fireChannelRegistered(); // Only fire a channelActive if the channel has never been registered. This prevents firing // multiple channel actives if the channel is deregistered and re-registered. if (isActive()) { if (firstRegistration) { pipeline.fireChannelActive(); } else if (config().isAutoRead()) { // This channel was registered before and autoRead() is set. This means we need to begin read // again so that we process inbound data. // // See https://github.com/netty/netty/issues/4805 beginRead(); } } } catch (Throwable t) { // Close the channel directly to avoid FD leak. closeForcibly(); closeFuture.setClosed(); safeSetFailure(promise, t); } }
而抓包時發(fā)現(xiàn)觸發(fā)此channelactive時,服務(wù)端還未返回websocket的協(xié)議握手包(websocket協(xié)議是在在http協(xié)議上衍生的,會先發(fā)一個http get請求然后服務(wù)端返回一個為websocket協(xié)議的包給客戶端)至此問題就真相大白了,在我們添加的WebSocketServerProtocolHandler這個handller中有如下代碼
public void handlerAdded(ChannelHandlerContext ctx) { ChannelPipeline cp = ctx.pipeline(); if (cp.get(WebSocketServerProtocolHandshakeHandler.class) == null) { // Add the WebSocketHandshakeHandler before this one. ctx.pipeline().addBefore(ctx.name(), WebSocketServerProtocolHandshakeHandler.class.getName(), new WebSocketServerProtocolHandshakeHandler(websocketPath, subprotocols, allowExtensions, maxFramePayloadLength, allowMaskMismatch, checkStartsWith)); } if (cp.get(Utf8FrameValidator.class) == null) { // Add the UFT8 checking before this one. ctx.pipeline().addBefore(ctx.name(), Utf8FrameValidator.class.getName(), new Utf8FrameValidator()); } }
添加的WebSocketServerProtocolHandshakeHandler中有如下代碼
public void channelRead(final ChannelHandlerContext ctx, Object msg) throws Exception { final FullHttpRequest req = (FullHttpRequest) msg; if (isNotWebSocketPath(req)) { ctx.fireChannelRead(msg); return; } try { if (!GET.equals(req.method())) { sendHttpResponse(ctx, req, new DefaultFullHttpResponse(HTTP_1_1, FORBIDDEN)); return; } final WebSocketServerHandshakerFactory wsFactory = new WebSocketServerHandshakerFactory( getWebSocketLocation(ctx.pipeline(), req, websocketPath), subprotocols, allowExtensions, maxFramePayloadSize, allowMaskMismatch); final WebSocketServerHandshaker handshaker = wsFactory.newHandshaker(req); if (handshaker == null) { WebSocketServerHandshakerFactory.sendUnsupportedVersionResponse(ctx.channel()); } else { final ChannelFuture handshakeFuture = handshaker.handshake(ctx.channel(), req); handshakeFuture.addListener(new ChannelFutureListener() { @Override public void operationComplete(ChannelFuture future) throws Exception { if (!future.isSuccess()) { ctx.fireExceptionCaught(future.cause()); } else { // Kept for compatibility ctx.fireUserEventTriggered( WebSocketServerProtocolHandler.ServerHandshakeStateEvent.HANDSHAKE_COMPLETE); ctx.fireUserEventTriggered( new WebSocketServerProtocolHandler.HandshakeComplete( req.uri(), req.headers(), handshaker.selectedSubprotocol())); } } }); WebSocketServerProtocolHandler.setHandshaker(ctx.channel(), handshaker); ctx.pipeline().replace(this, "WS403Responder", WebSocketServerProtocolHandler.forbiddenHttpRequestResponder()); } } finally { req.release(); } }
接受握手信息時候會添加兩個handler 為websocket協(xié)議信息的編碼和解碼handler
public final ChannelFuture handshake(Channel channel, FullHttpRequest req, HttpHeaders responseHeaders, final ChannelPromise promise) { if (logger.isDebugEnabled()) { logger.debug("{} WebSocket version {} server handshake", channel, version()); } FullHttpResponse response = newHandshakeResponse(req, responseHeaders); ChannelPipeline p = channel.pipeline(); if (p.get(HttpObjectAggregator.class) != null) { p.remove(HttpObjectAggregator.class); } if (p.get(HttpContentCompressor.class) != null) { p.remove(HttpContentCompressor.class); } ChannelHandlerContext ctx = p.context(HttpRequestDecoder.class); final String encoderName; if (ctx == null) { // this means the user use a HttpServerCodec ctx = p.context(HttpServerCodec.class); if (ctx == null) { promise.setFailure( new IllegalStateException("No HttpDecoder and no HttpServerCodec in the pipeline")); return promise; } p.addBefore(ctx.name(), "wsdecoder", newWebsocketDecoder()); p.addBefore(ctx.name(), "wsencoder", newWebSocketEncoder()); encoderName = ctx.name(); } else { p.replace(ctx.name(), "wsdecoder", newWebsocketDecoder()); encoderName = p.context(HttpResponseEncoder.class).name(); p.addBefore(encoderName, "wsencoder", newWebSocketEncoder()); } channel.writeAndFlush(response).addListener(new ChannelFutureListener() { @Override public void operationComplete(ChannelFuture future) throws Exception { if (future.isSuccess()) { ChannelPipeline p = future.channel().pipeline(); p.remove(encoderName); promise.setSuccess(); } else { promise.setFailure(future.cause()); } } }); return promise; }
如果想要實現(xiàn)在websocket協(xié)議連接成功后發(fā)送一個消息給客戶端,我們發(fā)現(xiàn)在發(fā)送握手成功后觸發(fā)了fireUserEventTriggered,去實現(xiàn)userEventTriggered然后判斷evt類型做處理吧
以上就是基于netty的websocket在channelActive觸發(fā)時發(fā)送數(shù)據(jù)異常問題分析是怎樣的,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。