All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.hutool.socket.aio.AioServer Maven / Gradle / Ivy

Go to download

Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。

There is a newer version: 5.8.34
Show newest version
package cn.hutool.socket.aio;

import cn.hutool.core.io.IORuntimeException;
import cn.hutool.core.io.IoUtil;
import cn.hutool.core.thread.ThreadFactoryBuilder;
import cn.hutool.core.thread.ThreadUtil;
import cn.hutool.log.Log;
import cn.hutool.log.LogFactory;
import cn.hutool.socket.SocketConfig;

import java.io.Closeable;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.net.SocketOption;
import java.nio.ByteBuffer;
import java.nio.channels.AsynchronousChannelGroup;
import java.nio.channels.AsynchronousServerSocketChannel;

/**
 * 基于AIO的Socket服务端实现
 *
 * @author looly
 */
public class AioServer implements Closeable {
	private static final Log log = LogFactory.get();
	private static final AcceptHandler ACCEPT_HANDLER = new AcceptHandler();

	private AsynchronousChannelGroup group;
	private AsynchronousServerSocketChannel channel;
	protected IoAction ioAction;
	protected final SocketConfig config;


	/**
	 * 构造
	 *
	 * @param port 端口
	 */
	public AioServer(int port) {
		this(new InetSocketAddress(port), new SocketConfig());
	}

	/**
	 * 构造
	 *
	 * @param address 地址
	 * @param config  {@link SocketConfig} 配置项
	 */
	public AioServer(InetSocketAddress address, SocketConfig config) {
		this.config = config;
		init(address);
	}

	/**
	 * 初始化
	 *
	 * @param address 地址和端口
	 * @return this
	 */
	public AioServer init(InetSocketAddress address) {
		try {
			this.group = AsynchronousChannelGroup.withFixedThreadPool(//
					config.getThreadPoolSize(), // 默认线程池大小
					ThreadFactoryBuilder.create().setNamePrefix("Hutool-socket-").build()//
			);
			this.channel = AsynchronousServerSocketChannel.open(group).bind(address);
		} catch (IOException e) {
			throw new IORuntimeException(e);
		}
		return this;
	}

	/**
	 * 开始监听
	 *
	 * @param sync 是否阻塞
	 */
	public void start(boolean sync) {
		doStart(sync);
	}

	/**
	 * 设置 Socket 的 Option 选项
* 选项见:{@link java.net.StandardSocketOptions} * * @param 选项泛型 * @param name {@link SocketOption} 枚举 * @param value SocketOption参数 * @return this * @throws IOException IO异常 */ public AioServer setOption(SocketOption name, T value) throws IOException { this.channel.setOption(name, value); return this; } /** * 获取IO处理器 * * @return {@link IoAction} */ public IoAction getIoAction() { return this.ioAction; } /** * 设置IO处理器,单例存在 * * @param ioAction {@link IoAction} * @return this; */ public AioServer setIoAction(IoAction ioAction) { this.ioAction = ioAction; return this; } /** * 获取{@link AsynchronousServerSocketChannel} * * @return {@link AsynchronousServerSocketChannel} */ public AsynchronousServerSocketChannel getChannel() { return this.channel; } /** * 处理接入的客户端 * * @return this */ public AioServer accept() { this.channel.accept(this, ACCEPT_HANDLER); return this; } /** * 服务是否开启状态 * * @return 服务是否开启状态 */ public boolean isOpen() { return (null != this.channel) && this.channel.isOpen(); } /** * 关闭服务 */ @Override public void close() { IoUtil.close(this.channel); if (null != this.group && false == this.group.isShutdown()) { try { this.group.shutdownNow(); } catch (IOException e) { // ignore } } // 结束阻塞 synchronized (this) { this.notify(); } } // ------------------------------------------------------------------------------------- Private method start /** * 开始监听 * * @param sync 是否阻塞 */ private void doStart(boolean sync) { log.debug("Aio Server started, waiting for accept."); // 接收客户端连接 accept(); if (sync) { ThreadUtil.sync(this); } } // ------------------------------------------------------------------------------------- Private method end }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy