
org.apache.mina.transport.socket.AbstractSocketSessionConfig Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.mina.transport.socket;
import org.apache.mina.core.session.AbstractIoSessionConfig;
import org.apache.mina.core.session.IoSessionConfig;
/**
* TODO Add documentation
*
* @author Apache MINA Project
*/
public abstract class AbstractSocketSessionConfig extends AbstractIoSessionConfig implements SocketSessionConfig {
protected AbstractSocketSessionConfig() {
// Do nothing
}
@Override
protected final void doSetAll(IoSessionConfig config) {
if (!(config instanceof SocketSessionConfig)) {
return;
}
if (config instanceof AbstractSocketSessionConfig) {
// Minimize unnecessary system calls by checking all 'propertyChanged' properties.
AbstractSocketSessionConfig cfg = (AbstractSocketSessionConfig) config;
if (cfg.isKeepAliveChanged()) {
setKeepAlive(cfg.isKeepAlive());
}
if (cfg.isOobInlineChanged()) {
setOobInline(cfg.isOobInline());
}
if (cfg.isReceiveBufferSizeChanged()) {
setReceiveBufferSize(cfg.getReceiveBufferSize());
}
if (cfg.isReuseAddressChanged()) {
setReuseAddress(cfg.isReuseAddress());
}
if (cfg.isSendBufferSizeChanged()) {
setSendBufferSize(cfg.getSendBufferSize());
}
if (cfg.isSoLingerChanged()) {
setSoLinger(cfg.getSoLinger());
}
if (cfg.isTcpNoDelayChanged()) {
setTcpNoDelay(cfg.isTcpNoDelay());
}
if (cfg.isTrafficClassChanged() && getTrafficClass() != cfg.getTrafficClass()) {
setTrafficClass(cfg.getTrafficClass());
}
} else {
SocketSessionConfig cfg = (SocketSessionConfig) config;
setKeepAlive(cfg.isKeepAlive());
setOobInline(cfg.isOobInline());
setReceiveBufferSize(cfg.getReceiveBufferSize());
setReuseAddress(cfg.isReuseAddress());
setSendBufferSize(cfg.getSendBufferSize());
setSoLinger(cfg.getSoLinger());
setTcpNoDelay(cfg.isTcpNoDelay());
if (getTrafficClass() != cfg.getTrafficClass()) {
setTrafficClass(cfg.getTrafficClass());
}
}
}
/**
* Returns true if and only if the keepAlive property
* has been changed by its setter method. The system call related with
* the property is made only when this method returns true. By
* default, this method always returns true to simplify implementation
* of subclasses, but overriding the default behavior is always encouraged.
*/
protected boolean isKeepAliveChanged() {
return true;
}
/**
* Returns true if and only if the oobInline property
* has been changed by its setter method. The system call related with
* the property is made only when this method returns true. By
* default, this method always returns true to simplify implementation
* of subclasses, but overriding the default behavior is always encouraged.
*/
protected boolean isOobInlineChanged() {
return true;
}
/**
* Returns true if and only if the receiveBufferSize property
* has been changed by its setter method. The system call related with
* the property is made only when this method returns true. By
* default, this method always returns true to simplify implementation
* of subclasses, but overriding the default behavior is always encouraged.
*/
protected boolean isReceiveBufferSizeChanged() {
return true;
}
/**
* Returns true if and only if the reuseAddress property
* has been changed by its setter method. The system call related with
* the property is made only when this method returns true. By
* default, this method always returns true to simplify implementation
* of subclasses, but overriding the default behavior is always encouraged.
*/
protected boolean isReuseAddressChanged() {
return true;
}
/**
* Returns true if and only if the sendBufferSize property
* has been changed by its setter method. The system call related with
* the property is made only when this method returns true. By
* default, this method always returns true to simplify implementation
* of subclasses, but overriding the default behavior is always encouraged.
*/
protected boolean isSendBufferSizeChanged() {
return true;
}
/**
* Returns true if and only if the soLinger property
* has been changed by its setter method. The system call related with
* the property is made only when this method returns true. By
* default, this method always returns true to simplify implementation
* of subclasses, but overriding the default behavior is always encouraged.
*/
protected boolean isSoLingerChanged() {
return true;
}
/**
* Returns true if and only if the tcpNoDelay property
* has been changed by its setter method. The system call related with
* the property is made only when this method returns true. By
* default, this method always returns true to simplify implementation
* of subclasses, but overriding the default behavior is always encouraged.
*/
protected boolean isTcpNoDelayChanged() {
return true;
}
/**
* Returns true if and only if the trafficClass property
* has been changed by its setter method. The system call related with
* the property is made only when this method returns true. By
* default, this method always returns true to simplify implementation
* of subclasses, but overriding the default behavior is always encouraged.
*/
protected boolean isTrafficClassChanged() {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy