📄 socketsessionconfigimpl.java
字号:
/* * 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.nio;import java.io.IOException;import java.net.InetAddress;import java.net.InetSocketAddress;import java.net.ServerSocket;import java.net.Socket;import java.net.SocketException;import java.net.UnknownHostException;import java.util.LinkedHashMap;import java.util.Map;import java.util.Map.Entry;import org.apache.mina.common.ExceptionMonitor;import org.apache.mina.common.IoConnectorConfig;import org.apache.mina.common.support.BaseIoSessionConfig;/** * An {@link IoConnectorConfig} for {@link SocketConnector}. * * @author The Apache Directory Project (mina-dev@directory.apache.org) * @version $Rev: 555855 $, $Date: 2007-07-13 12:19:00 +0900 (금, 13 7월 2007) $ */public class SocketSessionConfigImpl extends BaseIoSessionConfig implements SocketSessionConfig { private static Map<InetSocketAddress, InetAddress> TEST_ADDRESSES = new LinkedHashMap<InetSocketAddress, InetAddress>(); private static boolean SET_RECEIVE_BUFFER_SIZE_AVAILABLE = false; private static boolean SET_SEND_BUFFER_SIZE_AVAILABLE = false; private static boolean GET_TRAFFIC_CLASS_AVAILABLE = false; private static boolean SET_TRAFFIC_CLASS_AVAILABLE = false; private static boolean DEFAULT_REUSE_ADDRESS = false; private static int DEFAULT_RECEIVE_BUFFER_SIZE = 1024; private static int DEFAULT_SEND_BUFFER_SIZE = 1024; private static int DEFAULT_TRAFFIC_CLASS = 0; private static boolean DEFAULT_KEEP_ALIVE = false; private static boolean DEFAULT_OOB_INLINE = false; private static int DEFAULT_SO_LINGER = -1; private static boolean DEFAULT_TCP_NO_DELAY = false; static { initializeTestAddresses(); boolean success = false; for (Entry<InetSocketAddress, InetAddress> e : TEST_ADDRESSES .entrySet()) { success = initializeDefaultSocketParameters(e.getKey(), e .getValue()); if (success) { break; } } if (!success) { initializeFallbackDefaultSocketParameters(); } } private static void initializeFallbackDefaultSocketParameters() { Socket unconnectedSocket = new Socket(); // Use a unconnected socket. try { initializeDefaultSocketParameters(unconnectedSocket); } catch (SocketException se) { ExceptionMonitor.getInstance().exceptionCaught(se); try { unconnectedSocket.close(); } catch (IOException ioe) { ExceptionMonitor.getInstance().exceptionCaught(ioe); } } } private static void initializeTestAddresses() { try { // IPv6 localhost TEST_ADDRESSES.put(new InetSocketAddress(InetAddress .getByAddress(new byte[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 }), 0), InetAddress .getByAddress(new byte[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 })); // IPv4 localhost TEST_ADDRESSES.put(new InetSocketAddress(InetAddress .getByAddress(new byte[] { 127, 0, 0, 1 }), 0), InetAddress .getByAddress(new byte[] { 127, 0, 0, 1 })); // Bind to wildcard interface and connect to IPv6 localhost TEST_ADDRESSES.put(new InetSocketAddress(0), InetAddress .getByAddress(new byte[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 })); // Bind to wildcard interface and connect to IPv4 localhost TEST_ADDRESSES.put(new InetSocketAddress(0), InetAddress .getByAddress(new byte[] { 127, 0, 0, 1 })); } catch (UnknownHostException e) { ExceptionMonitor.getInstance().exceptionCaught(e); } } private static boolean initializeDefaultSocketParameters( InetSocketAddress bindAddress, InetAddress connectAddress) { ServerSocket ss = null; Socket socket = null; try { ss = new ServerSocket(); ss.bind(bindAddress); socket = new Socket(); // Timeout is set to 10 seconds in case of infinite blocking // on some platform. socket.connect(new InetSocketAddress(connectAddress, ss .getLocalPort()), 10000); initializeDefaultSocketParameters(socket); return true; } catch (IOException e) { return false; } finally { if (socket != null) { try { socket.close(); } catch (IOException e) { ExceptionMonitor.getInstance().exceptionCaught(e); } } if (ss != null) { try { ss.close(); } catch (IOException e) { ExceptionMonitor.getInstance().exceptionCaught(e); } } } } private static void initializeDefaultSocketParameters(Socket socket) throws SocketException { DEFAULT_REUSE_ADDRESS = socket.getReuseAddress(); DEFAULT_RECEIVE_BUFFER_SIZE = socket.getReceiveBufferSize(); DEFAULT_SEND_BUFFER_SIZE = socket.getSendBufferSize(); DEFAULT_KEEP_ALIVE = socket.getKeepAlive(); DEFAULT_OOB_INLINE = socket.getOOBInline(); DEFAULT_SO_LINGER = socket.getSoLinger(); DEFAULT_TCP_NO_DELAY = socket.getTcpNoDelay(); // Check if setReceiveBufferSize is supported. try { socket.setReceiveBufferSize(DEFAULT_RECEIVE_BUFFER_SIZE); SET_RECEIVE_BUFFER_SIZE_AVAILABLE = true; } catch (SocketException e) { SET_RECEIVE_BUFFER_SIZE_AVAILABLE = false; } // Check if setSendBufferSize is supported. try { socket.setSendBufferSize(DEFAULT_SEND_BUFFER_SIZE); SET_SEND_BUFFER_SIZE_AVAILABLE = true; } catch (SocketException e) { SET_SEND_BUFFER_SIZE_AVAILABLE = false; } // Check if getTrafficClass is supported. try { DEFAULT_TRAFFIC_CLASS = socket.getTrafficClass(); GET_TRAFFIC_CLASS_AVAILABLE = true; } catch (SocketException e) { GET_TRAFFIC_CLASS_AVAILABLE = false; DEFAULT_TRAFFIC_CLASS = 0; } } public static boolean isSetReceiveBufferSizeAvailable() { return SET_RECEIVE_BUFFER_SIZE_AVAILABLE; } public static boolean isSetSendBufferSizeAvailable() { return SET_SEND_BUFFER_SIZE_AVAILABLE; } public static boolean isGetTrafficClassAvailable() { return GET_TRAFFIC_CLASS_AVAILABLE; } public static boolean isSetTrafficClassAvailable() { return SET_TRAFFIC_CLASS_AVAILABLE; } private boolean reuseAddress = DEFAULT_REUSE_ADDRESS; private int receiveBufferSize = DEFAULT_RECEIVE_BUFFER_SIZE; private int sendBufferSize = DEFAULT_SEND_BUFFER_SIZE; private int trafficClass = DEFAULT_TRAFFIC_CLASS; private boolean keepAlive = DEFAULT_KEEP_ALIVE; private boolean oobInline = DEFAULT_OOB_INLINE; private int soLinger = DEFAULT_SO_LINGER; private boolean tcpNoDelay = DEFAULT_TCP_NO_DELAY; /** * Creates a new instance. */ public SocketSessionConfigImpl() { } public boolean isReuseAddress() { return reuseAddress; } public void setReuseAddress(boolean reuseAddress) { this.reuseAddress = reuseAddress; } public int getReceiveBufferSize() { return receiveBufferSize; } public void setReceiveBufferSize(int receiveBufferSize) { this.receiveBufferSize = receiveBufferSize; } public int getSendBufferSize() { return sendBufferSize; } public void setSendBufferSize(int sendBufferSize) { this.sendBufferSize = sendBufferSize; } public int getTrafficClass() { return trafficClass; } public void setTrafficClass(int trafficClass) { this.trafficClass = trafficClass; } public boolean isKeepAlive() { return keepAlive; } public void setKeepAlive(boolean keepAlive) { this.keepAlive = keepAlive; } public boolean isOobInline() { return oobInline; } public void setOobInline(boolean oobInline) { this.oobInline = oobInline; } public int getSoLinger() { return soLinger; } public void setSoLinger(int soLinger) { this.soLinger = soLinger; } public boolean isTcpNoDelay() { return tcpNoDelay; } public void setTcpNoDelay(boolean tcpNoDelay) { this.tcpNoDelay = tcpNoDelay; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -