ServerSocketAdaptor.java 7.1 KB
Newer Older
D
duke 已提交
1
/*
A
alanb 已提交
2
 * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
3 4 5 6
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
7
 * published by the Free Software Foundation.  Oracle designates this
D
duke 已提交
8
 * particular file as subject to the "Classpath" exception as provided
9
 * by Oracle in the LICENSE file that accompanied this code.
D
duke 已提交
10 11 12 13 14 15 16 17 18 19 20
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
21 22 23
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
D
duke 已提交
24 25 26 27
 */

package sun.nio.ch;

A
alanb 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41
import java.io.IOException;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.ServerSocket;
import java.net.Socket;
import java.net.SocketAddress;
import java.net.SocketException;
import java.net.SocketTimeoutException;
import java.net.StandardSocketOptions;
import java.nio.channels.ClosedChannelException;
import java.nio.channels.IllegalBlockingModeException;
import java.nio.channels.NotYetBoundException;
import java.nio.channels.ServerSocketChannel;
import java.nio.channels.SocketChannel;
D
duke 已提交
42 43 44 45 46 47 48 49 50


// Make a server-socket channel look like a server socket.
//
// The methods in this class are defined in exactly the same order as in
// java.net.ServerSocket so as to simplify tracking future changes to that
// class.
//

A
alanb 已提交
51
class ServerSocketAdaptor                        // package-private
D
duke 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
    extends ServerSocket
{

    // The channel being adapted
    private final ServerSocketChannelImpl ssc;

    // Timeout "option" value for accepts
    private volatile int timeout = 0;

    public static ServerSocket create(ServerSocketChannelImpl ssc) {
        try {
            return new ServerSocketAdaptor(ssc);
        } catch (IOException x) {
            throw new Error(x);
        }
    }

    // ## super will create a useless impl
    private ServerSocketAdaptor(ServerSocketChannelImpl ssc)
        throws IOException
    {
        this.ssc = ssc;
    }


    public void bind(SocketAddress local) throws IOException {
        bind(local, 50);
    }

    public void bind(SocketAddress local, int backlog) throws IOException {
        if (local == null)
            local = new InetSocketAddress(0);
        try {
            ssc.bind(local, backlog);
        } catch (Exception x) {
            Net.translateException(x);
        }
    }

    public InetAddress getInetAddress() {
        if (!ssc.isBound())
            return null;
94 95
        return Net.getRevealedLocalAddress(ssc.localAddress()).getAddress();

D
duke 已提交
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
    }

    public int getLocalPort() {
        if (!ssc.isBound())
            return -1;
        return Net.asInetSocketAddress(ssc.localAddress()).getPort();
    }


    public Socket accept() throws IOException {
        synchronized (ssc.blockingLock()) {
            if (!ssc.isBound())
                throw new IllegalBlockingModeException();
            try {
                if (timeout == 0) {
A
alanb 已提交
111 112
                    // for compatibility reasons: accept connection if available
                    // when configured non-blocking
D
duke 已提交
113 114 115 116 117 118
                    SocketChannel sc = ssc.accept();
                    if (sc == null && !ssc.isBlocking())
                        throw new IllegalBlockingModeException();
                    return sc.socket();
                }

A
alanb 已提交
119 120
                if (!ssc.isBlocking())
                    throw new IllegalBlockingModeException();
D
duke 已提交
121 122 123 124 125 126 127 128 129 130
                ssc.configureBlocking(false);
                try {
                    SocketChannel sc;
                    if ((sc = ssc.accept()) != null)
                        return sc.socket();
                    long to = timeout;
                    for (;;) {
                        if (!ssc.isOpen())
                            throw new ClosedChannelException();
                        long st = System.currentTimeMillis();
131
                        int result = ssc.poll(Net.POLLIN, to);
132
                        if (result > 0 && ((sc = ssc.accept()) != null))
D
duke 已提交
133 134 135 136 137 138
                            return sc.socket();
                        to -= System.currentTimeMillis() - st;
                        if (to <= 0)
                            throw new SocketTimeoutException();
                    }
                } finally {
A
alanb 已提交
139
                    try {
D
duke 已提交
140
                        ssc.configureBlocking(true);
A
alanb 已提交
141
                    } catch (ClosedChannelException e) { }
D
duke 已提交
142 143 144 145 146 147 148 149 150 151
                }
            } catch (Exception x) {
                Net.translateException(x);
                assert false;
                return null;            // Never happens
            }
        }
    }

    public void close() throws IOException {
152
        ssc.close();
D
duke 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
    }

    public ServerSocketChannel getChannel() {
        return ssc;
    }

    public boolean isBound() {
        return ssc.isBound();
    }

    public boolean isClosed() {
        return !ssc.isOpen();
    }

    public void setSoTimeout(int timeout) throws SocketException {
        this.timeout = timeout;
    }

    public int getSoTimeout() throws SocketException {
        return timeout;
    }

    public void setReuseAddress(boolean on) throws SocketException {
176
        try {
177
            ssc.setOption(StandardSocketOptions.SO_REUSEADDR, on);
178 179 180
        } catch (IOException x) {
            Net.translateToSocketException(x);
        }
D
duke 已提交
181 182 183
    }

    public boolean getReuseAddress() throws SocketException {
184
        try {
185
            return ssc.getOption(StandardSocketOptions.SO_REUSEADDR).booleanValue();
186 187 188 189
        } catch (IOException x) {
            Net.translateToSocketException(x);
            return false;       // Never happens
        }
D
duke 已提交
190 191 192 193 194 195
    }

    public String toString() {
        if (!isBound())
            return "ServerSocket[unbound]";
        return "ServerSocket[addr=" + getInetAddress() +
A
alanb 已提交
196
               ",localport=" + getLocalPort()  + "]";
D
duke 已提交
197 198 199
    }

    public void setReceiveBufferSize(int size) throws SocketException {
200 201 202 203
        // size 0 valid for ServerSocketChannel, invalid for ServerSocket
        if (size <= 0)
            throw new IllegalArgumentException("size cannot be 0 or negative");
        try {
204
            ssc.setOption(StandardSocketOptions.SO_RCVBUF, size);
205 206 207
        } catch (IOException x) {
            Net.translateToSocketException(x);
        }
D
duke 已提交
208 209 210
    }

    public int getReceiveBufferSize() throws SocketException {
211
        try {
212
            return ssc.getOption(StandardSocketOptions.SO_RCVBUF).intValue();
213 214 215 216
        } catch (IOException x) {
            Net.translateToSocketException(x);
            return -1;          // Never happens
        }
D
duke 已提交
217 218 219
    }

}