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

com.github.paganini2008.embeddedio.AioConnector Maven / Gradle / Ivy

/**
* Copyright 2017-2021 Fred Feng ([email protected])

* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*    http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.paganini2008.embeddedio;

import java.io.IOException;
import java.net.SocketAddress;
import java.net.StandardSocketOptions;
import java.nio.channels.AsynchronousSocketChannel;
import java.nio.channels.CompletionHandler;
import java.util.concurrent.Executor;
import java.util.concurrent.Executors;

import com.github.paganini2008.devtools.Observable;
import com.github.paganini2008.devtools.logging.Log;
import com.github.paganini2008.devtools.logging.LogFactory;
import com.github.paganini2008.embeddedio.ChannelEvent.EventType;

/**
 * 
 * AioConnector
 *
 * @author Fred Feng
 * @since 2.0.1
 */
public class AioConnector implements IoConnector {

	private static final Log logger = LogFactory.getLog(AioConnector.class);
	private final ChannelEventPublisher channelEventPublisher;
	private Transformer transformer = new SerializationTransformer();
	private int writerBatchSize = 1;
	private int writerBufferSize = 1024;
	private int autoFlushInterval = 0;
	private final Observable observable = Observable.unrepeatable();

	public AioConnector() {
		this(Executors.newCachedThreadPool());
	}

	public AioConnector(Executor executor) {
		this.channelEventPublisher = new DefaultChannelEventPublisher(executor);
		initialize();
	}

	public Transformer getTransformer() {
		return transformer;
	}

	public void setTransformer(Transformer transformer) {
		this.transformer = transformer;
	}

	public int getWriterBatchSize() {
		return writerBatchSize;
	}

	public void setWriterBatchSize(int writerBatchSize) {
		this.writerBatchSize = writerBatchSize;
	}

	public int getWriterBufferSize() {
		return writerBufferSize;
	}

	public void setWriterBufferSize(int writerBufferSize) {
		this.writerBufferSize = writerBufferSize;
	}

	public int getAutoFlushInterval() {
		return autoFlushInterval;
	}

	public void setAutoFlushInterval(int autoFlushInterval) {
		this.autoFlushInterval = autoFlushInterval;
	}

	@Override
	public void addHandler(ChannelHandler channelHandler) {
		this.channelEventPublisher.subscribeChannelEvent(channelHandler);
	}

	protected void initialize() {
		addHandler(new ChannelFutureHandler());
	}

	@Override
	public Channel connect(SocketAddress remoteAddress, ChannelPromise promise) throws IOException {
		AsynchronousSocketChannel socketChannel = AsynchronousSocketChannel.open();
		socketChannel.setOption(StandardSocketOptions.SO_SNDBUF, writerBufferSize);
		socketChannel.setOption(StandardSocketOptions.SO_REUSEADDR, true);
		try {
			socketChannel.setOption(StandardSocketOptions.SO_KEEPALIVE, true);
			socketChannel.setOption(StandardSocketOptions.TCP_NODELAY, true);
		} catch (RuntimeException e) {
			logger.warn(e.getMessage());
		}
		Channel channel = new AioChannel(socketChannel, channelEventPublisher, transformer, writerBatchSize, autoFlushInterval);
		socketChannel.connect(remoteAddress, null, new CompletionHandler() {

			@Override
			public void completed(Void result, Object attr) {
				channelEventPublisher.publishChannelEvent(new ChannelEvent(channel, EventType.ACTIVE));
				channel.read();
			}

			@Override
			public void failed(Throwable e, Object attr) {
				channelEventPublisher.publishChannelEvent(new ChannelEvent(channel, EventType.FATAL, null, e));
			}
		});
		if (promise != null) {
			observable.addObserver((ob, arg) -> {
				if (arg instanceof Throwable) {
					promise.onFailure((Throwable) arg);
				} else {
					promise.onSuccess((Channel) arg);
				}
			});
		}
		return channel;
	}

	@Override
	public void close() {
		channelEventPublisher.destroy();
	}

	private class ChannelFutureHandler implements ChannelHandler {

		@Override
		public void fireChannelActive(Channel channel) throws IOException {
			observable.notifyObservers(channel);
		}

		@Override
		public void fireChannelFatal(Channel channel, Throwable e) {
			observable.notifyObservers(e);
		}

	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy