`
knight_black_bob
  • 浏览: 858084 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

netty 实例入门

阅读更多

netty 实例入门

  基于netty 4.x

 

 

 

package com.test.demo.java2015.netty;

import java.net.ConnectException;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.atomic.AtomicBoolean; 
import javax.net.ssl.SSLHandshakeException; 
import io.netty.bootstrap.Bootstrap;
import io.netty.channel.Channel;
import io.netty.channel.ChannelFuture;
import io.netty.channel.ChannelFutureListener;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelInitializer;
import io.netty.channel.ChannelOption;
import io.netty.channel.ChannelPipeline;
import io.netty.channel.EventLoopGroup;
import io.netty.channel.SimpleChannelInboundHandler;
import io.netty.channel.ChannelHandler.Sharable;
import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.SocketChannel;
import io.netty.channel.socket.nio.NioSocketChannel;
import io.netty.handler.ssl.SslHandshakeCompletionEvent;

public class NettyTest {

	public static void main(String[] args) { 
	}
	
    class  BootstrapFactory{
    	private ConcurrentHashMap<String, Bootstrap> bootstrapMap = new ConcurrentHashMap<String, Bootstrap>();
    	private  EventLoopGroup eventLoopGroup = new NioEventLoopGroup(1, null);
    	
    	public Bootstrap create(final String appname){
    		Bootstrap bootstrap = bootstrapMap.get(appname);
    		if (bootstrap == null)
    		{
    			bootstrap = new Bootstrap();
    			bootstrap.group(eventLoopGroup);
    			bootstrap.channel(NioSocketChannel.class);
    			bootstrap.option(ChannelOption.SO_KEEPALIVE, true);
    			bootstrap = bootstrapMap.putIfAbsent(appname, bootstrap);
    		}
    		return bootstrapMap.get(appname);
    	}
    } 
	 
	class NettyPool {
		private String host;
		private int port;
		private Bootstrap bootstrap;
		private int maxNum; 
		private int nextChannel = 0;
		List<Handler> channelList = new ArrayList<Handler>();
		
		public boolean write(String data)
		{
			return getAvailableHandler().write(data);
		}
		
		private synchronized Handler getAvailableHandler()
		{
			Handler handler;
			int count = this.maxNum;
			while ((handler = getHandler()) == null || handler.getChannel() == null
					|| !handler.getChannel().isWritable())
			{
				if (count-- == 0)
					break;
			}
			return handler;
		}
		
		private synchronized  Handler getHandler(){
			if (nextChannel >= maxNum)
			{
				nextChannel = 0;
			}
			Handler handler = channelList.get(nextChannel++);
			return handler;
		}
		
		
		
		NettyPool(int num, Bootstrap bootstrap, String host, int port) {
			this.maxNum = num;
			this.bootstrap = bootstrap;
			this.host = host;
			this.port = port;
		}

		public Bootstrap newBootstrap(Bootstrap bootstrap, final Handler handler) {
			bootstrap.handler(new ChannelInitializer<SocketChannel>() {
				@Override
				protected void initChannel(SocketChannel ch) throws Exception {
					ChannelPipeline pipeline = ch.pipeline();
					/*
					 * if (isSsl) { SSLEngine sslEngine =
					 * sslContext.createSSLEngine();
					 * sslEngine.setUseClientMode(true); pipeline.addLast("ssl",
					 * new SslHandler(sslEngine)); } if (Constant.debug) {
					 * pipeline.addLast("log", new
					 * LoggingHandler(LogLevel.DEBUG)); }
					 * pipeline.addLast("encoder", new Encoder());
					 * pipeline.addLast("decoder", new Decoder());
					 */
					pipeline.addLast("handler", handler);
				}
			});
			return bootstrap;
		}

		public void start() {
			for (int i = 0; i < maxNum; i++) {
				Handler handler = new Handler(this);
				ChannelFuture future = newBootstrap(bootstrap, handler)
						.connect(host, port);
				if (future.isSuccess()) {

				} else 
				{
				}
			}
		}

		public void reconnect(Handler reHandler)
		{
			new ReConnectThread(reHandler).start();
		}
		
		public class ReConnectThread extends Thread{
			private Handler reHandler;
			public ReConnectThread(Handler handler) {
				this.reHandler = handler;
			}

			@Override
			public void run() {
				ChannelFuture future = newBootstrap(bootstrap, reHandler)
				.connect(host, port);
				if (future.isSuccess()) {
		
				} else 
				{
				}
			}
		}
		
		
		
	}
	
	
	/**
	 * 
	 * channelopen channelbound channelconnected -> channelactive channeldisconnected channelunbound channelclosed ->channelinactive
	 * channel.isbound() channel.isconnected() -> isactive() registered ->channelopen unregistered -> channelclosed
	 * 
	 */
	@Sharable
	class Handler extends SimpleChannelInboundHandler {
		private Channel channel;
		public NettyPool pool;
		private AtomicBoolean isShouldShutDown = new AtomicBoolean(false);
		
		
		public boolean write(String data){
			synchronized (this)
			{
				if (channel != null && channel.isWritable())
				{
					channel.writeAndFlush(data).addListener(new ChannelFutureListener(){
						@Override
						public void operationComplete(ChannelFuture future)
								throws Exception {
							if (future.isSuccess())
							{
								//log write success 
							}else{
								//log write  error
							}
						}
					});
					return false;
				}else
				{
					return false;
				}
			}
		}
		
		public Channel getChannel()
		{
			return this.channel;
		}
		
		public Handler(NettyPool pool) {
			this.pool = pool;
		}

		@Override
		protected void channelRead0(ChannelHandlerContext ctx, Object msg)
				throws Exception {

		}

		@Override
		public void channelActive(ChannelHandlerContext ctx) throws Exception {
			super.channelActive(ctx);
			this.channel = ctx.channel();
		}

		@Override
		public void channelRegistered(ChannelHandlerContext ctx)
				throws Exception {
			super.channelRegistered(ctx);
		}

		@Override
		public void channelUnregistered(ChannelHandlerContext ctx)
				throws Exception {
			ctx.close();
			if (!isShouldShutDown.get())
				this.pool.reconnect(this);
		}

		@Override
		public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause)
				throws Exception {
			if (cause instanceof ConnectException)
			{
				ctx.close();
				if (!isShouldShutDown.get())
					this.pool.reconnect(this);
			}
		}

		@Override
		public void userEventTriggered(ChannelHandlerContext ctx, Object evt)
				throws Exception {
			if (evt instanceof SslHandshakeCompletionEvent)
			{
				if (((SslHandshakeCompletionEvent) evt).isSuccess())
				{}else{}
			}else if (evt instanceof SSLHandshakeException)
			{ }
		}
	}
}

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

捐助开发者

在兴趣的驱动下,写一个免费的东西,有欣喜,也还有汗水,希望你喜欢我的作品,同时也能支持一下。 当然,有钱捧个钱场(右上角的爱心标志,支持支付宝和PayPal捐助),没钱捧个人场,谢谢各位。



 
 
 谢谢您的赞助,我会做的更好!

 

 

分享到:
评论

相关推荐

    netty入门示例工程

    本工程采用maven+netty4.1.0+PrefixedStringDecoder+json技术,包括客户端和服务端。先运行服务端SampleServer,再去等客户端SampleClient。示例中发的是心跳包,其中消息格式定义为msgType + msgNo + content(json...

    netty简单实例

    Netty 是一个高性能、异步事件驱动的网络...这只是一个入门级的实例,实际应用中,Netty 可以处理更复杂的网络通信需求,如WebSocket、HTTP 协议等。不断学习和实践,你将能掌握更多关于 Netty 的高级特性和优化技巧。

    WebSocket利用netty连接入门项目

    这个入门项目是学习WebSocket与Netty结合的一个好起点,通过实际操作,你可以更深入地理解WebSocket协议的工作原理,以及如何使用Netty构建高效稳定的WebSocket服务器。同时,对于前端开发人员,这也是一个了解...

    Netty全套学习资源(包括源码、笔记、学习文档等)

    资源包中可能包含 Netty 实例代码,这些代码可以帮助我们更好地理解 Netty 在实际项目中的应用。例如,你可以找到简单的 HTTP 服务器、WebSocket 服务、FTP 服务器或者自定义通信协议的实现,这些都是提升实践能力的...

    Netty5入门3个简单例子

    `ServerBootstrap`负责配置服务器,并创建一个`Bootstrap`实例来绑定监听端口。我们会在`ChannelInitializer`中设置管道(Pipeline),这是Netty处理进来的网络请求的一系列处理器。每个处理器(Handler)负责特定的...

    netty快速入门教程12集 共12集

    这个“Netty快速入门教程12集”可能是由一系列视频组成,涵盖了Netty的基础到进阶知识,旨在帮助初学者快速掌握Netty的核心概念和使用方法。 在第11课中,讲解了“粘包与分包分析,如何避免Socket攻击”的主题,这...

    netty快速入门教程11集 共12集

    1. **创建ServerBootstrap**:首先,我们需要创建一个ServerBootstrap实例,设置BossGroup和WorkerGroup,以及ChannelHandler。 2. **绑定端口**:调用bind方法,指定监听的端口。这样,服务器就可以开始等待客户端...

    netty从入门到进阶的基础文档

    这个基础文档将带你从入门到进阶,深入理解Netty的核心概念和应用。 1. **入门理解** - **什么是Netty?** Netty是由JBOSS提供的一个Java开源框架,主要用于开发高并发、低延迟的网络应用,如TCP、UDP、HTTP、...

    Netty-In-Action中文版.pdf

    Bootstrap则作为启动器,配置并创建一个Channel实例,用于建立网络连接。 4. **Handler与Pipeline**:Handler是Netty中的处理器组件,负责处理I/O事件或业务逻辑。Pipeline是Handler的链式结构,数据在其中进行双向...

    netty快速入门教程1-2集 共12集

    这个快速入门教程共分为12集,前两集主要为初学者提供了Netty的基础概念和基本用法。 在第一课“NIO”中,我们将深入理解Java的非阻塞I/O(Non-blocking I/O)模型。传统的Java I/O基于阻塞I/O,当进行读写操作时,...

    Netty 入门与实战:仿写微信 IM 即时通讯系统.zip

    《Netty 入门与实战:仿写微信 IM 即时通讯系统》是一份深入学习Netty框架并结合实际应用场景的教程,旨在帮助开发者掌握Netty的核心概念和技术,并通过模仿微信即时通讯系统的实现来加深理解。这个教程可能包含了多...

    netty 入门Reactor示例

    在学习"Netty入门Reactor示例"时,你可以按照以下步骤进行: 1. **创建服务器端:** - 首先,你需要创建一个ServerBootstrap实例,配置BossGroup和WorkerGroup。 - 然后,添加自定义的...

    netty开发入门

    这个“netty开发入门”资料主要涵盖了如何使用Netty进行基础的网络通信,包括创建简单的"Hello World"示例以及实现服务器与客户端的交互。 一、Netty简介 Netty是由JBOSS提供的一个Java开源框架,它简化了网络编程...

    netty入门例子--(不是翻译官方文档)

    这个“netty入门例子”旨在帮助初学者理解Netty的基本用法和特性,而不是简单地翻译官方文档,它提供了几个开发模板,以便于深入理解Netty中的消息异步通信机制和TCP通信的封装。 首先,Netty的核心是它的异步模型...

    掘金-Netty 入门与实战-netty-demo.zip

    这个压缩包“掘金-Netty 入门与实战-netty-demo.zip”包含了关于 Netty 的入门教程和实战示例,特别是通过 "netty-demo-pipeline-channelHandler" 这个文件名我们可以推测,它可能包含了一个展示 Netty ...

    netty+protobuf入门案例.

    5. 创建一个`ServerBootstrap`实例,配置Netty服务器,并添加解码器和编码器到管道中: ```java ServerBootstrap b = new ServerBootstrap(); b.group(bossGroup, workerGroup) .channel(NioServerSocketChannel....

    深入浅出Netty_netty_

    《深入浅出Netty》是一本专注于讲解Netty框架的编程指南,非常适合初学者入门。Netty是一个高性能、异步事件驱动的网络应用程序框架,用于快速开发可维护的高性能协议服务器和客户端。这本书通过详实的代码案例,...

    netty案例.zip

    这个"netty案例.zip"压缩包提供了一个简单的Netty入门示例,帮助初学者理解如何使用Netty进行网络编程。下面将详细解释这个案例中的核心知识点。 1. **Netty基础架构**: Netty采用了Reactor模式,它是一种处理...

    Netty大纲-同步netty专栏

    - **PRC框架**:通过实例展示如何构建一个基于Netty的简单RPC框架。 6. **源码剖析** - **启动流程**:了解Netty服务器启动过程,包括事件循环组和事件循环的创建。 - **EventLoop剖析**:深入EventLoop的工作...

    《netty权威指南》私有协议栈开发完整实例源码

    《netty权威指南》中私有协议栈开发章节对netty理解和入门很有帮助,但书中代码有各种无法编译的问题,自己各种查漏补缺后完善了书中的实例,完全可以运行调试了,有兴趣可以下载看看试试,下载后可直接导入myeclipse...

Global site tag (gtag.js) - Google Analytics