Network/src/io/netty/bootstrap/DatagramSessionChannelConfi...

208 lines
4.6 KiB
Java

/*
* Copyright 2018 dorkbox, llc.
*
* 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 io.netty.bootstrap;
import java.util.Map;
import dorkbox.network.connection.EndPoint;
import io.netty.buffer.ByteBufAllocator;
import io.netty.channel.Channel;
import io.netty.channel.ChannelConfig;
import io.netty.channel.ChannelOption;
import io.netty.channel.DefaultMessageSizeEstimator;
import io.netty.channel.MessageSizeEstimator;
import io.netty.channel.RecvByteBufAllocator;
import io.netty.channel.WriteBufferWaterMark;
import io.netty.channel.socket.DatagramChannelConfig;
/**
* The default {@link DatagramChannelConfig} implementation.
*/
public class DatagramSessionChannelConfig implements ChannelConfig {
private static final MessageSizeEstimator DEFAULT_MSG_SIZE_ESTIMATOR = DefaultMessageSizeEstimator.DEFAULT;
private volatile MessageSizeEstimator msgSizeEstimator = DEFAULT_MSG_SIZE_ESTIMATOR;
private final Channel channel;
/**
* Creates a new instance.
*/
public
DatagramSessionChannelConfig(Channel channel) {
this.channel = channel;
}
@Override
public
Map<ChannelOption<?>, Object> getOptions() {
return null;
}
@Override
public
boolean setOptions(final Map<ChannelOption<?>, ?> options) {
return false;
}
@Override
public
<T> T getOption(final ChannelOption<T> option) {
return channel.config().getOption(option);
}
@Override
public
<T> boolean setOption(final ChannelOption<T> option, final T value) {
return false;
}
@Override
public
int getConnectTimeoutMillis() {
return 0;
}
@Override
public
ChannelConfig setConnectTimeoutMillis(final int connectTimeoutMillis) {
return this;
}
@Override
public
int getMaxMessagesPerRead() {
return 0;
}
@Override
public
ChannelConfig setMaxMessagesPerRead(final int maxMessagesPerRead) {
return this;
}
@Override
public
int getWriteSpinCount() {
return 0;
}
@Override
public
ChannelConfig setWriteSpinCount(final int writeSpinCount) {
return this;
}
@Override
public
ByteBufAllocator getAllocator() {
return channel.config().getAllocator();
}
@Override
public
ChannelConfig setAllocator(final ByteBufAllocator allocator) {
return this;
}
@Override
public
<T extends RecvByteBufAllocator> T getRecvByteBufAllocator() {
return channel.config().getRecvByteBufAllocator();
}
@Override
public
ChannelConfig setRecvByteBufAllocator(final RecvByteBufAllocator allocator) {
return this;
}
@Override
public
boolean isAutoRead() {
// we implement our own reading from within the DatagramServer context.
return false;
}
@Override
public
ChannelConfig setAutoRead(final boolean autoRead) {
return this;
}
@Override
public
boolean isAutoClose() {
return false;
}
@Override
public
ChannelConfig setAutoClose(final boolean autoClose) {
return this;
}
@Override
public
int getWriteBufferHighWaterMark() {
return EndPoint.udpMaxSize;
}
@Override
public
ChannelConfig setWriteBufferHighWaterMark(final int writeBufferHighWaterMark) {
return this;
}
@Override
public
int getWriteBufferLowWaterMark() {
return 0;
}
@Override
public
ChannelConfig setWriteBufferLowWaterMark(final int writeBufferLowWaterMark) {
return this;
}
@Override
public
MessageSizeEstimator getMessageSizeEstimator() {
return msgSizeEstimator;
}
@Override
public
ChannelConfig setMessageSizeEstimator(final MessageSizeEstimator estimator) {
this.msgSizeEstimator = estimator;
return this;
}
@Override
public
WriteBufferWaterMark getWriteBufferWaterMark() {
return null;
}
@Override
public
ChannelConfig setWriteBufferWaterMark(final WriteBufferWaterMark writeBufferWaterMark) {
return this;
}
}