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

org.kaazing.mina.netty.socket.SocketChannelIoSessionConfig Maven / Gradle / Ivy

There is a newer version: 5.6.2
Show newest version
/**
 * Copyright 2007-2016, Kaazing Corporation. All rights reserved.
 *
 * 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 org.kaazing.mina.netty.socket;

import org.apache.mina.transport.socket.SocketSessionConfig;
import org.apache.mina.transport.socket.SocketSessionConfigEx;
import org.jboss.netty.channel.socket.SocketChannelConfig;

import org.kaazing.mina.core.session.IoSessionConfigEx;
import org.kaazing.mina.netty.ChannelIoSessionConfig;

public abstract class SocketChannelIoSessionConfig
                   extends ChannelIoSessionConfig implements SocketSessionConfigEx {

    public SocketChannelIoSessionConfig(T channelConfig) {
        super(channelConfig);
    }

    @Override
    protected void doSetAll(IoSessionConfigEx config) {

        super.doSetAll(config);

        if (config instanceof SocketChannelIoSessionConfig) {
            SocketChannelIoSessionConfig socketConfig = (SocketChannelIoSessionConfig) config;

            if (socketConfig.isReceiveBufferSizeChanged()) {
                setReceiveBufferSize(socketConfig.getReceiveBufferSize());
            }
            if (socketConfig.isSendBufferSizeChanged()) {
                setSendBufferSize(socketConfig.getSendBufferSize());
            }
            if (socketConfig.isSoLingerChanged()) {
                setSoLinger(socketConfig.getSoLinger());
            }
            if (socketConfig.isTrafficClassChanged()) {
                setTrafficClass(socketConfig.getTrafficClass());
            }
            if (socketConfig.isKeepAliveChanged()) {
                setKeepAlive(socketConfig.isKeepAlive());
            }
            if (socketConfig.isOobInlineChanged()) {
                setOobInline(socketConfig.isOobInline());
            }
            if (socketConfig.isReuseAddressChanged()) {
                setReuseAddress(socketConfig.isReuseAddress());
            }
            if (socketConfig.isTcpNoDelayChanged()) {
                setTcpNoDelay(socketConfig.isTcpNoDelay());
            }
        } else if (config instanceof SocketSessionConfig) {
            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());
            cfg.getTrafficClass();
        }
    }

    @Override
    public int getReceiveBufferSize() {
        return channelConfig.getReceiveBufferSize();
    }

    @Override
    public int getSendBufferSize() {
        return channelConfig.getSendBufferSize();
    }

    @Override
    public int getSoLinger() {
        return channelConfig.getSoLinger();
    }

    @Override
    public int getTrafficClass() {
        return channelConfig.getTrafficClass();
    }

    @Override
    public boolean isKeepAlive() {
        return channelConfig.isKeepAlive();
    }

    @Override
    public boolean isOobInline() {
        return false; // TODO
    }

    @Override
    public boolean isReuseAddress() {
        return channelConfig.isReuseAddress();
    }

    @Override
    public boolean isTcpNoDelay() {
        return channelConfig.isTcpNoDelay();
    }

    @Override
    public void setKeepAlive(boolean keepAlive) {
        channelConfig.setKeepAlive(keepAlive);
    }

    @Override
    public void setOobInline(boolean oobInline) {
        // TODO
    }

    @Override
    public void setReceiveBufferSize(int receiveBufferSize) {
        channelConfig.setReceiveBufferSize(receiveBufferSize);
    }

    @Override
    public void setReuseAddress(boolean reuseAddress) {
        channelConfig.setReuseAddress(reuseAddress);
    }

    @Override
    public void setSendBufferSize(int sendBufferSize) {
        channelConfig.setSendBufferSize(sendBufferSize);
    }

    @Override
    public void setSoLinger(int soLinger) {
        channelConfig.setSoLinger(soLinger);
    }

    @Override
    public void setTcpNoDelay(boolean tcpNoDelay) {
        channelConfig.setTcpNoDelay(tcpNoDelay);
    }

    @Override
    public void setTrafficClass(int trafficClass) {
        channelConfig.setTrafficClass(trafficClass);
    }

    /**
     * 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