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

com.generallycloud.baseio.component.AbstractReadFutureAcceptor Maven / Gradle / Ivy

/*
 * Copyright 2015-2017 GenerallyCloud.com
 *  
 * 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.generallycloud.baseio.component;

import com.generallycloud.baseio.common.CloseUtil;
import com.generallycloud.baseio.common.Logger;
import com.generallycloud.baseio.common.LoggerFactory;
import com.generallycloud.baseio.protocol.ChannelReadFuture;
import com.generallycloud.baseio.protocol.ReadFuture;

public abstract class AbstractReadFutureAcceptor implements ForeReadFutureAcceptor {

	private Logger logger = LoggerFactory.getLogger(getClass());
	
	private HeartBeatLogger heartBeatLogger;
	
	public AbstractReadFutureAcceptor(SocketChannelContext context) {
		createHeartBeatLogger(context);
	}

	@Override
	public void accept(final SocketSession session, final ReadFuture future) throws Exception {

		ChannelReadFuture f = (ChannelReadFuture) future;

		if (f.isSilent()) {
			return;
		}

		if (f.isHeartbeat()) {

			acceptHeartBeat(session, f);

			return;
		}

		SocketChannelContext context = session.getContext();

		IoEventHandle eventHandle = context.getIoEventHandleAdaptor();

		accept(eventHandle, session, f);
	}

	protected abstract void accept(IoEventHandle eventHandle, SocketSession session,
			ChannelReadFuture future);

	private void acceptHeartBeat(final SocketSession session, final ChannelReadFuture future) {

		if (future.isPING()) {

			heartBeatLogger.logRequest(session);

			SocketChannelContext context = session.getContext();

			BeatFutureFactory factory = context.getBeatFutureFactory();

			if (factory == null) {

				RuntimeException e = new RuntimeException("none factory of BeatFuture");

				CloseUtil.close(session);

				logger.error(e.getMessage(), e);

				return;
			}

			ReadFuture f = factory.createPONGPacket(session);

			session.flush(f);
		} else {
			heartBeatLogger.logResponse(session);
		}

	}
	
	private void createHeartBeatLogger(SocketChannelContext context){
		
		if (context.getServerConfiguration().isSERVER_ENABLE_HEARTBEAT_LOG()) {
			heartBeatLogger = new HeartBeatLogger() {
				@Override
				public void logRequest(SocketSession session) {
					logger.info("heart beat request from: {}", session);
				}

				@Override
				public void logResponse(SocketSession session) {
					logger.info("heart beat response from: {}", session);
				}
			};
		}else{
			heartBeatLogger = new HeartBeatLogger() {
				@Override
				public void logRequest(SocketSession session) {
					logger.debug("heart beat request from: {}", session);
				}

				@Override
				public void logResponse(SocketSession session) {
					logger.debug("heart beat response from: {}", session);
				}
			};
		}
	}
	
	private interface HeartBeatLogger{
		void logRequest(SocketSession session);
		void logResponse(SocketSession session);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy