jdk/src/jdk.httpserver/share/classes/sun/net/httpserver/ServerImpl.java
author chegar
Thu, 02 Apr 2015 11:43:11 +0100
changeset 29920 f81c14f472ab
parent 27779 e269428daa22
child 35313 9e703c485544
permissions -rw-r--r--
8042322: Enhance thread contexts in networking and nio Reviewed-by: alanb, michaelm
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
27720
aa3983c8fbee 8015692: java.net.BindException is thrown on Windows XP when HTTP server is started and stopped in the loop.
msheppar
parents: 25859
diff changeset
     2
 * Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5463
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5463
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5463
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5463
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5463
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.net.httpserver;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.net.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.nio.channels.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.util.concurrent.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.util.logging.Logger;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.util.logging.Level;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import javax.net.ssl.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import com.sun.net.httpserver.*;
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 11014
diff changeset
    37
import java.security.AccessController;
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 11014
diff changeset
    38
import java.security.PrivilegedAction;
29920
f81c14f472ab 8042322: Enhance thread contexts in networking and nio
chegar
parents: 27779
diff changeset
    39
import sun.misc.ManagedLocalsThread;
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
    40
import sun.net.httpserver.HttpConnection.State;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * Provides implementation for both HTTP and HTTPS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
class ServerImpl implements TimeSource {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    private String protocol;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    private boolean https;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    private Executor executor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    private HttpsConfigurator httpsConfig;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    private SSLContext sslContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    private ContextList contexts;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    private InetSocketAddress address;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    private ServerSocketChannel schan;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    private Selector selector;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    private SelectionKey listenerKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    private Set<HttpConnection> idleConnections;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    private Set<HttpConnection> allConnections;
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
    59
    /* following two are used to keep track of the times
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
    60
     * when a connection/request is first received
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
    61
     * and when we start to send the response
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
    62
     */
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
    63
    private Set<HttpConnection> reqConnections;
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
    64
    private Set<HttpConnection> rspConnections;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    private List<Event> events;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    private Object lolock = new Object();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    private volatile boolean finished = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    private volatile boolean terminating = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    private boolean bound = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    private boolean started = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    private volatile long time;  /* current time */
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
    72
    private volatile long subticks = 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    private volatile long ticks; /* number of clock ticks since server started */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    private HttpServer wrapper;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    final static int CLOCK_TICK = ServerConfig.getClockTick();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    final static long IDLE_INTERVAL = ServerConfig.getIdleInterval();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    final static int MAX_IDLE_CONNECTIONS = ServerConfig.getMaxIdleConnections();
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
    79
    final static long TIMER_MILLIS = ServerConfig.getTimerMillis ();
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
    80
    final static long MAX_REQ_TIME=getTimeMillis(ServerConfig.getMaxReqTime());
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
    81
    final static long MAX_RSP_TIME=getTimeMillis(ServerConfig.getMaxRspTime());
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
    82
    final static boolean timer1Enabled = MAX_REQ_TIME != -1 || MAX_RSP_TIME != -1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
    84
    private Timer timer, timer1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    private Logger logger;
27720
aa3983c8fbee 8015692: java.net.BindException is thrown on Windows XP when HTTP server is started and stopped in the loop.
msheppar
parents: 25859
diff changeset
    86
    private Thread dispatcherThread;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    ServerImpl (
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        HttpServer wrapper, String protocol, InetSocketAddress addr, int backlog
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    ) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        this.protocol = protocol;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        this.wrapper = wrapper;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        this.logger = Logger.getLogger ("com.sun.net.httpserver");
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
    95
        ServerConfig.checkLegacyProperties (logger);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        https = protocol.equalsIgnoreCase ("https");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        this.address = addr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        contexts = new ContextList();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        schan = ServerSocketChannel.open();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        if (addr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            ServerSocket socket = schan.socket();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
            socket.bind (addr, backlog);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
            bound = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        selector = Selector.open ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        schan.configureBlocking (false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        listenerKey = schan.register (selector, SelectionKey.OP_ACCEPT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        dispatcher = new Dispatcher();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        idleConnections = Collections.synchronizedSet (new HashSet<HttpConnection>());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        allConnections = Collections.synchronizedSet (new HashSet<HttpConnection>());
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   111
        reqConnections = Collections.synchronizedSet (new HashSet<HttpConnection>());
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   112
        rspConnections = Collections.synchronizedSet (new HashSet<HttpConnection>());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        time = System.currentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        timer = new Timer ("server-timer", true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        timer.schedule (new ServerTimerTask(), CLOCK_TICK, CLOCK_TICK);
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   116
        if (timer1Enabled) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   117
            timer1 = new Timer ("server-timer1", true);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   118
            timer1.schedule (new ServerTimerTask1(),TIMER_MILLIS,TIMER_MILLIS);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   119
            logger.config ("HttpServer timer1 enabled period in ms:  "+TIMER_MILLIS);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   120
            logger.config ("MAX_REQ_TIME:  "+MAX_REQ_TIME);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   121
            logger.config ("MAX_RSP_TIME:  "+MAX_RSP_TIME);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   122
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        events = new LinkedList<Event>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        logger.config ("HttpServer created "+protocol+" "+ addr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    public void bind (InetSocketAddress addr, int backlog) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        if (bound) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
            throw new BindException ("HttpServer already bound");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        if (addr == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            throw new NullPointerException ("null address");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        ServerSocket socket = schan.socket();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        socket.bind (addr, backlog);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        bound = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    public void start () {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        if (!bound || started || finished) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            throw new IllegalStateException ("server in wrong state");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        if (executor == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            executor = new DefaultExecutor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        }
29920
f81c14f472ab 8042322: Enhance thread contexts in networking and nio
chegar
parents: 27779
diff changeset
   146
        dispatcherThread = new ManagedLocalsThread(dispatcher);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        started = true;
27720
aa3983c8fbee 8015692: java.net.BindException is thrown on Windows XP when HTTP server is started and stopped in the loop.
msheppar
parents: 25859
diff changeset
   148
        dispatcherThread.start();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    public void setExecutor (Executor executor) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        if (started) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
            throw new IllegalStateException ("server already started");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        this.executor = executor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    private static class DefaultExecutor implements Executor {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        public void execute (Runnable task) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            task.run();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    public Executor getExecutor () {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        return executor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    public void setHttpsConfigurator (HttpsConfigurator config) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        if (config == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
            throw new NullPointerException ("null HttpsConfigurator");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        if (started) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
            throw new IllegalStateException ("server already started");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        this.httpsConfig = config;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        sslContext = config.getSSLContext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    public HttpsConfigurator getHttpsConfigurator () {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        return httpsConfig;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    public void stop (int delay) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        if (delay < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
            throw new IllegalArgumentException ("negative delay parameter");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        terminating = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        try { schan.close(); } catch (IOException e) {}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        selector.wakeup();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        long latest = System.currentTimeMillis() + delay * 1000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        while (System.currentTimeMillis() < latest) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
            delay();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            if (finished) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        finished = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        selector.wakeup();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        synchronized (allConnections) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
            for (HttpConnection c : allConnections) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
                c.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        allConnections.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        idleConnections.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        timer.cancel();
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   207
        if (timer1Enabled) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   208
            timer1.cancel();
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   209
        }
27779
e269428daa22 8066130: com.sun.net.httpserver stop() throws NullPointerException if it is not started
msheppar
parents: 27720
diff changeset
   210
        if (dispatcherThread != null) {
e269428daa22 8066130: com.sun.net.httpserver stop() throws NullPointerException if it is not started
msheppar
parents: 27720
diff changeset
   211
            try {
e269428daa22 8066130: com.sun.net.httpserver stop() throws NullPointerException if it is not started
msheppar
parents: 27720
diff changeset
   212
                dispatcherThread.join();
e269428daa22 8066130: com.sun.net.httpserver stop() throws NullPointerException if it is not started
msheppar
parents: 27720
diff changeset
   213
            } catch (InterruptedException e) {
e269428daa22 8066130: com.sun.net.httpserver stop() throws NullPointerException if it is not started
msheppar
parents: 27720
diff changeset
   214
                Thread.currentThread().interrupt();
e269428daa22 8066130: com.sun.net.httpserver stop() throws NullPointerException if it is not started
msheppar
parents: 27720
diff changeset
   215
                logger.log(Level.FINER, "ServerImpl.stop: ", e);
e269428daa22 8066130: com.sun.net.httpserver stop() throws NullPointerException if it is not started
msheppar
parents: 27720
diff changeset
   216
            }
27720
aa3983c8fbee 8015692: java.net.BindException is thrown on Windows XP when HTTP server is started and stopped in the loop.
msheppar
parents: 25859
diff changeset
   217
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    Dispatcher dispatcher;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    public synchronized HttpContextImpl createContext (String path, HttpHandler handler) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        if (handler == null || path == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
            throw new NullPointerException ("null handler, or path parameter");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        HttpContextImpl context = new HttpContextImpl (protocol, path, handler, this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        contexts.add (context);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        logger.config ("context created: " + path);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        return context;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
    public synchronized HttpContextImpl createContext (String path) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        if (path == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
            throw new NullPointerException ("null path parameter");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        HttpContextImpl context = new HttpContextImpl (protocol, path, null, this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        contexts.add (context);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        logger.config ("context created: " + path);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        return context;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    public synchronized void removeContext (String path) throws IllegalArgumentException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        if (path == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
            throw new NullPointerException ("null path parameter");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        contexts.remove (protocol, path);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        logger.config ("context removed: " + path);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    public synchronized void removeContext (HttpContext context) throws IllegalArgumentException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        if (!(context instanceof HttpContextImpl)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
            throw new IllegalArgumentException ("wrong HttpContext type");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        contexts.remove ((HttpContextImpl)context);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
        logger.config ("context removed: " + context.getPath());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    public InetSocketAddress getAddress() {
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 11014
diff changeset
   259
        return AccessController.doPrivileged(
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 11014
diff changeset
   260
                new PrivilegedAction<InetSocketAddress>() {
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 11014
diff changeset
   261
                    public InetSocketAddress run() {
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 11014
diff changeset
   262
                        return
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 11014
diff changeset
   263
                            (InetSocketAddress)schan.socket()
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 11014
diff changeset
   264
                                .getLocalSocketAddress();
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 11014
diff changeset
   265
                    }
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 11014
diff changeset
   266
                });
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    Selector getSelector () {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        return selector;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
    void addEvent (Event r) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        synchronized (lolock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
            events.add (r);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
            selector.wakeup();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    /* main server listener task */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    class Dispatcher implements Runnable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        private void handleEvent (Event r) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
            ExchangeImpl t = r.exchange;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
            HttpConnection c = t.getConnection();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
                if (r instanceof WriteFinishedEvent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                    int exchanges = endExchange();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
                    if (terminating && exchanges == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                        finished = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
                    }
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   294
                    responseCompleted (c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
                    LeftOverInputStream is = t.getOriginalInputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
                    if (!is.isEOF()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
                        t.close = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                    if (t.close || idleConnections.size() >= MAX_IDLE_CONNECTIONS) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
                        c.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
                        allConnections.remove (c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
                        if (is.isDataBuffered()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
                            /* don't re-enable the interestops, just handle it */
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   305
                            requestStarted (c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
                            handle (c.getChannel(), c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
                        } else {
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   308
                            connsToRegister.add (c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
            } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
                logger.log (
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
                    Level.FINER, "Dispatcher (1)", e
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
                );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
                c.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   320
        final LinkedList<HttpConnection> connsToRegister =
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   321
                new LinkedList<HttpConnection>();
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   322
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   323
        void reRegister (HttpConnection c) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   324
            /* re-register with selector */
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   325
            try {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   326
                SocketChannel chan = c.getChannel();
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   327
                chan.configureBlocking (false);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   328
                SelectionKey key = chan.register (selector, SelectionKey.OP_READ);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   329
                key.attach (c);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   330
                c.selectionKey = key;
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   331
                c.time = getTime() + IDLE_INTERVAL;
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   332
                idleConnections.add (c);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   333
            } catch (IOException e) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   334
                dprint(e);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   335
                logger.log(Level.FINER, "Dispatcher(8)", e);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   336
                c.close();
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   337
            }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   338
        }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   339
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
            while (!finished) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
                try {
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   343
                    List<Event> list = null;
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   344
                    synchronized (lolock) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   345
                        if (events.size() > 0) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   346
                            list = events;
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   347
                            events = new LinkedList<Event>();
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   348
                        }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   349
                    }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   350
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   351
                    if (list != null) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   352
                        for (Event r: list) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
                            handleEvent (r);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
17463
9392f1567896 8014254: Selector in HttpServer introduces a 1000 ms delay when using KeepAlive
khazra
parents: 11014
diff changeset
   357
                    for (HttpConnection c : connsToRegister) {
9392f1567896 8014254: Selector in HttpServer introduces a 1000 ms delay when using KeepAlive
khazra
parents: 11014
diff changeset
   358
                        reRegister(c);
9392f1567896 8014254: Selector in HttpServer introduces a 1000 ms delay when using KeepAlive
khazra
parents: 11014
diff changeset
   359
                    }
9392f1567896 8014254: Selector in HttpServer introduces a 1000 ms delay when using KeepAlive
khazra
parents: 11014
diff changeset
   360
                    connsToRegister.clear();
9392f1567896 8014254: Selector in HttpServer introduces a 1000 ms delay when using KeepAlive
khazra
parents: 11014
diff changeset
   361
9392f1567896 8014254: Selector in HttpServer introduces a 1000 ms delay when using KeepAlive
khazra
parents: 11014
diff changeset
   362
                    selector.select(1000);
9392f1567896 8014254: Selector in HttpServer introduces a 1000 ms delay when using KeepAlive
khazra
parents: 11014
diff changeset
   363
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
                    /* process the selected list now  */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
                    Set<SelectionKey> selected = selector.selectedKeys();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
                    Iterator<SelectionKey> iter = selected.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
                    while (iter.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
                        SelectionKey key = iter.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
                        iter.remove ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
                        if (key.equals (listenerKey)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
                            if (terminating) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
                                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
                            SocketChannel chan = schan.accept();
10130
254e206a89d8 7068416: Lightweight HTTP Server should support TCP_NODELAY
chegar
parents: 7668
diff changeset
   375
254e206a89d8 7068416: Lightweight HTTP Server should support TCP_NODELAY
chegar
parents: 7668
diff changeset
   376
                            // Set TCP_NODELAY, if appropriate
254e206a89d8 7068416: Lightweight HTTP Server should support TCP_NODELAY
chegar
parents: 7668
diff changeset
   377
                            if (ServerConfig.noDelay()) {
254e206a89d8 7068416: Lightweight HTTP Server should support TCP_NODELAY
chegar
parents: 7668
diff changeset
   378
                                chan.socket().setTcpNoDelay(true);
254e206a89d8 7068416: Lightweight HTTP Server should support TCP_NODELAY
chegar
parents: 7668
diff changeset
   379
                            }
254e206a89d8 7068416: Lightweight HTTP Server should support TCP_NODELAY
chegar
parents: 7668
diff changeset
   380
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
                            if (chan == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
                                continue; /* cancel something ? */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
                            chan.configureBlocking (false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
                            SelectionKey newkey = chan.register (selector, SelectionKey.OP_READ);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
                            HttpConnection c = new HttpConnection ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
                            c.selectionKey = newkey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
                            c.setChannel (chan);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
                            newkey.attach (c);
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   390
                            requestStarted (c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
                            allConnections.add (c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
                        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
                            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
                                if (key.isReadable()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
                                    boolean closed;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
                                    SocketChannel chan = (SocketChannel)key.channel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
                                    HttpConnection conn = (HttpConnection)key.attachment();
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   398
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   399
                                    key.cancel();
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   400
                                    chan.configureBlocking (true);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   401
                                    if (idleConnections.remove(conn)) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   402
                                        // was an idle connection so add it
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   403
                                        // to reqConnections set.
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   404
                                        requestStarted (conn);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   405
                                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
                                    handle (chan, conn);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
                                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
                                    assert false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
                                }
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   410
                            } catch (CancelledKeyException e) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   411
                                handleException(key, null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
                            } catch (IOException e) {
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   413
                                handleException(key, e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
                    }
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   417
                    // call the selector just to process the cancelled keys
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   418
                    selector.selectNow();
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   419
                } catch (IOException e) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   420
                    logger.log (Level.FINER, "Dispatcher (4)", e);
907
11f377f9319d 6728076: Test case for 6536211 is failing on all platforms
michaelm
parents: 905
diff changeset
   421
                } catch (Exception e) {
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   422
                    logger.log (Level.FINER, "Dispatcher (7)", e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
            }
11014
456742d63643 7110484: HttpServer.stop() not closing selector
michaelm
parents: 10596
diff changeset
   425
            try {selector.close(); } catch (Exception e) {}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   428
        private void handleException (SelectionKey key, Exception e) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   429
            HttpConnection conn = (HttpConnection)key.attachment();
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   430
            if (e != null) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   431
                logger.log (Level.FINER, "Dispatcher (2)", e);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   432
            }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   433
            closeConnection(conn);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   434
        }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   435
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        public void handle (SocketChannel chan, HttpConnection conn)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
                Exchange t = new Exchange (chan, protocol, conn);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
                executor.execute (t);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
            } catch (HttpError e1) {
907
11f377f9319d 6728076: Test case for 6536211 is failing on all platforms
michaelm
parents: 905
diff changeset
   443
                logger.log (Level.FINER, "Dispatcher (4)", e1);
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   444
                closeConnection(conn);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
            } catch (IOException e) {
907
11f377f9319d 6728076: Test case for 6536211 is failing on all platforms
michaelm
parents: 905
diff changeset
   446
                logger.log (Level.FINER, "Dispatcher (5)", e);
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   447
                closeConnection(conn);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
    static boolean debug = ServerConfig.debugEnabled ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
    static synchronized void dprint (String s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
        if (debug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
            System.out.println (s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
    static synchronized void dprint (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
        if (debug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
            System.out.println (e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
            e.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
    Logger getLogger () {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        return logger;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   471
    private void closeConnection(HttpConnection conn) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   472
        conn.close();
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   473
        allConnections.remove(conn);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   474
        switch (conn.getState()) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   475
        case REQUEST:
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   476
            reqConnections.remove(conn);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   477
            break;
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   478
        case RESPONSE:
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   479
            rspConnections.remove(conn);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   480
            break;
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   481
        case IDLE:
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   482
            idleConnections.remove(conn);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   483
            break;
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   484
        }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   485
        assert !reqConnections.remove(conn);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   486
        assert !rspConnections.remove(conn);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   487
        assert !idleConnections.remove(conn);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   488
    }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   489
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   490
        /* per exchange task */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    class Exchange implements Runnable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
        SocketChannel chan;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        HttpConnection connection;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
        HttpContextImpl context;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
        InputStream rawin;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        OutputStream rawout;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        String protocol;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
        ExchangeImpl tx;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        HttpContextImpl ctx;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
        boolean rejected = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
        Exchange (SocketChannel chan, String protocol, HttpConnection conn) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
            this.chan = chan;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
            this.connection = conn;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            this.protocol = protocol;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        public void run () {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
            /* context will be null for new connections */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
            context = connection.getHttpContext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
            boolean newconnection;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
            SSLEngine engine = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
            String requestLine = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
            SSLStreams sslStreams = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
                if (context != null ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
                    this.rawin = connection.getInputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
                    this.rawout = connection.getRawOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
                    newconnection = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
                    /* figure out what kind of connection this is */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
                    newconnection = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
                    if (https) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
                        if (sslContext == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
                            logger.warning ("SSL connection received. No https contxt created");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
                            throw new HttpError ("No SSL context established");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
                        sslStreams = new SSLStreams (ServerImpl.this, sslContext, chan);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
                        rawin = sslStreams.getInputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
                        rawout = sslStreams.getOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
                        engine = sslStreams.getSSLEngine();
2612
d7fb0809c7e4 6630639: lightweight HttpServer leaks file descriptors on no-data connections
michaelm
parents: 2
diff changeset
   533
                        connection.sslStreams = sslStreams;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
                        rawin = new BufferedInputStream(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
                            new Request.ReadStream (
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
                                ServerImpl.this, chan
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
                        ));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
                        rawout = new Request.WriteStream (
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
                            ServerImpl.this, chan
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
                        );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
                    }
2612
d7fb0809c7e4 6630639: lightweight HttpServer leaks file descriptors on no-data connections
michaelm
parents: 2
diff changeset
   543
                    connection.raw = rawin;
d7fb0809c7e4 6630639: lightweight HttpServer leaks file descriptors on no-data connections
michaelm
parents: 2
diff changeset
   544
                    connection.rawout = rawout;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
                Request req = new Request (rawin, rawout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
                requestLine = req.requestLine();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
                if (requestLine == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
                    /* connection closed */
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   550
                    closeConnection(connection);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
                    return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
                int space = requestLine.indexOf (' ');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
                if (space == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
                    reject (Code.HTTP_BAD_REQUEST,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
                            requestLine, "Bad request line");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
                    return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
                String method = requestLine.substring (0, space);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
                int start = space+1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
                space = requestLine.indexOf(' ', start);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
                if (space == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
                    reject (Code.HTTP_BAD_REQUEST,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
                            requestLine, "Bad request line");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
                    return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
                String uriStr = requestLine.substring (start, space);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
                URI uri = new URI (uriStr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
                start = space+1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
                String version = requestLine.substring (start);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
                Headers headers = req.headers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
                String s = headers.getFirst ("Transfer-encoding");
1511
65ddd8f149f3 6756771: com.sun.net.httpserver.HttpServer should handle POSTs larger than 2Gig
chegar
parents: 1247
diff changeset
   573
                long clen = 0L;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
                if (s !=null && s.equalsIgnoreCase ("chunked")) {
1511
65ddd8f149f3 6756771: com.sun.net.httpserver.HttpServer should handle POSTs larger than 2Gig
chegar
parents: 1247
diff changeset
   575
                    clen = -1L;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
                    s = headers.getFirst ("Content-Length");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
                    if (s != null) {
1511
65ddd8f149f3 6756771: com.sun.net.httpserver.HttpServer should handle POSTs larger than 2Gig
chegar
parents: 1247
diff changeset
   579
                        clen = Long.parseLong(s);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
                    }
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   581
                    if (clen == 0) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   582
                        requestCompleted (connection);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   583
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
                ctx = contexts.findContext (protocol, uri.getPath());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
                if (ctx == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
                    reject (Code.HTTP_NOT_FOUND,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
                            requestLine, "No context found for request");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
                    return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
                connection.setContext (ctx);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
                if (ctx.getHandler() == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
                    reject (Code.HTTP_INTERNAL_ERROR,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
                            requestLine, "No handler for context");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
                    return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
                tx = new ExchangeImpl (
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
                    method, uri, req, clen, connection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
                );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
                String chdr = headers.getFirst("Connection");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
                Headers rheaders = tx.getResponseHeaders();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
                if (chdr != null && chdr.equalsIgnoreCase ("close")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
                    tx.close = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
                if (version.equalsIgnoreCase ("http/1.0")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
                    tx.http10 = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
                    if (chdr == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
                        tx.close = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
                        rheaders.set ("Connection", "close");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
                    } else if (chdr.equalsIgnoreCase ("keep-alive")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
                        rheaders.set ("Connection", "keep-alive");
10596
39b3a979e600 7090158: Networking Libraries don't build with javac -Werror
chegar
parents: 10130
diff changeset
   613
                        int idle=(int)(ServerConfig.getIdleInterval()/1000);
39b3a979e600 7090158: Networking Libraries don't build with javac -Werror
chegar
parents: 10130
diff changeset
   614
                        int max=ServerConfig.getMaxIdleConnections();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
                        String val = "timeout="+idle+", max="+max;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
                        rheaders.set ("Keep-Alive", val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
                if (newconnection) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
                    connection.setParameters (
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
                        rawin, rawout, chan, engine, sslStreams,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
                        sslContext, protocol, ctx, rawin
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
                    );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
                /* check if client sent an Expect 100 Continue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
                 * In that case, need to send an interim response.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
                 * In future API may be modified to allow app to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
                 * be involved in this process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
                String exp = headers.getFirst("Expect");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
                if (exp != null && exp.equalsIgnoreCase ("100-continue")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
                    logReply (100, requestLine, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
                    sendReply (
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
                        Code.HTTP_CONTINUE, false, null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
                    );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
                /* uf is the list of filters seen/set by the user.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
                 * sf is the list of filters established internally
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
                 * and which are not visible to the user. uc and sc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
                 * are the corresponding Filter.Chains.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
                 * They are linked together by a LinkHandler
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
                 * so that they can both be invoked in one call.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
                List<Filter> sf = ctx.getSystemFilters();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
                List<Filter> uf = ctx.getFilters();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
                Filter.Chain sc = new Filter.Chain(sf, ctx.getHandler());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
                Filter.Chain uc = new Filter.Chain(uf, new LinkHandler (sc));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
                /* set up the two stream references */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
                tx.getRequestBody();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
                tx.getResponseBody();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
                if (https) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
                    uc.doFilter (new HttpsExchangeImpl (tx));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
                    uc.doFilter (new HttpExchangeImpl (tx));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
            } catch (IOException e1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
                logger.log (Level.FINER, "ServerImpl.Exchange (1)", e1);
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   662
                closeConnection(connection);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
            } catch (NumberFormatException e3) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
                reject (Code.HTTP_BAD_REQUEST,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
                        requestLine, "NumberFormatException thrown");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
            } catch (URISyntaxException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
                reject (Code.HTTP_BAD_REQUEST,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
                        requestLine, "URISyntaxException thrown");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
            } catch (Exception e4) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
                logger.log (Level.FINER, "ServerImpl.Exchange (2)", e4);
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   671
                closeConnection(connection);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
        /* used to link to 2 or more Filter.Chains together */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
        class LinkHandler implements HttpHandler {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
            Filter.Chain nextChain;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
            LinkHandler (Filter.Chain nextChain) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
                this.nextChain = nextChain;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
            public void handle (HttpExchange exchange) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
                nextChain.doFilter (exchange);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
        void reject (int code, String requestStr, String message) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
            rejected = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
            logReply (code, requestStr, message);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
            sendReply (
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   693
                code, false, "<h1>"+code+Code.msg(code)+"</h1>"+message
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
            );
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   695
            closeConnection(connection);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
        void sendReply (
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
            int code, boolean closeNow, String text)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
            try {
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   702
                StringBuilder builder = new StringBuilder (512);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   703
                builder.append ("HTTP/1.1 ")
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   704
                    .append (code).append (Code.msg(code)).append ("\r\n");
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   705
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
                if (text != null && text.length() != 0) {
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   707
                    builder.append ("Content-Length: ")
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   708
                        .append (text.length()).append ("\r\n")
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   709
                        .append ("Content-Type: text/html\r\n");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
                } else {
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   711
                    builder.append ("Content-Length: 0\r\n");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
                    text = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
                if (closeNow) {
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   715
                    builder.append ("Connection: close\r\n");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
                }
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   717
                builder.append ("\r\n").append (text);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   718
                String s = builder.toString();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
                byte[] b = s.getBytes("ISO8859_1");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
                rawout.write (b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
                rawout.flush();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
                if (closeNow) {
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   723
                    closeConnection(connection);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
            } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
                logger.log (Level.FINER, "ServerImpl.sendReply", e);
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   727
                closeConnection(connection);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
    void logReply (int code, String requestStr, String text) {
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   734
        if (!logger.isLoggable(Level.FINE)) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   735
            return;
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   736
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        if (text == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
            text = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
        }
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   740
        String r;
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   741
        if (requestStr.length() > 80) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   742
           r = requestStr.substring (0, 80) + "<TRUNCATED>";
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   743
        } else {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   744
           r = requestStr;
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   745
        }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   746
        String message = r + " [" + code + " " +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
                    Code.msg(code) + "] ("+text+")";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
        logger.fine (message);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
    long getTicks() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
        return ticks;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
    public long getTime() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
        return time;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
    void delay () {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
        Thread.yield();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
            Thread.sleep (200);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
        } catch (InterruptedException e) {}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
    private int exchangeCount = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
    synchronized void startExchange () {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
        exchangeCount ++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
    synchronized int endExchange () {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
        exchangeCount --;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
        assert exchangeCount >= 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
        return exchangeCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
    HttpServer getWrapper () {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
        return wrapper;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   782
    void requestStarted (HttpConnection c) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   783
        c.creationTime = getTime();
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   784
        c.setState (State.REQUEST);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   785
        reqConnections.add (c);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   786
    }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   787
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   788
    // called after a request has been completely read
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   789
    // by the server. This stops the timer which would
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   790
    // close the connection if the request doesn't arrive
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   791
    // quickly enough. It then starts the timer
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   792
    // that ensures the client reads the response in a timely
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   793
    // fashion.
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   794
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   795
    void requestCompleted (HttpConnection c) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   796
        assert c.getState() == State.REQUEST;
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   797
        reqConnections.remove (c);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   798
        c.rspStartedTime = getTime();
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   799
        rspConnections.add (c);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   800
        c.setState (State.RESPONSE);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   801
    }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   802
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   803
    // called after response has been sent
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   804
    void responseCompleted (HttpConnection c) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   805
        assert c.getState() == State.RESPONSE;
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   806
        rspConnections.remove (c);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   807
        c.setState (State.IDLE);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   808
    }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   809
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
     * TimerTask run every CLOCK_TICK ms
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
    class ServerTimerTask extends TimerTask {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
        public void run () {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
            LinkedList<HttpConnection> toClose = new LinkedList<HttpConnection>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
            time = System.currentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
            ticks ++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
            synchronized (idleConnections) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
                for (HttpConnection c : idleConnections) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
                    if (c.time <= time) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
                        toClose.add (c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
                for (HttpConnection c : toClose) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
                    idleConnections.remove (c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
                    allConnections.remove (c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
                    c.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
    }
7271
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   832
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   833
    class ServerTimerTask1 extends TimerTask {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   834
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   835
        // runs every TIMER_MILLIS
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   836
        public void run () {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   837
            LinkedList<HttpConnection> toClose = new LinkedList<HttpConnection>();
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   838
            time = System.currentTimeMillis();
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   839
            synchronized (reqConnections) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   840
                if (MAX_REQ_TIME != -1) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   841
                    for (HttpConnection c : reqConnections) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   842
                        if (c.creationTime + TIMER_MILLIS + MAX_REQ_TIME <= time) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   843
                            toClose.add (c);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   844
                        }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   845
                    }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   846
                    for (HttpConnection c : toClose) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   847
                        logger.log (Level.FINE, "closing: no request: " + c);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   848
                        reqConnections.remove (c);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   849
                        allConnections.remove (c);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   850
                        c.close();
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   851
                    }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   852
                }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   853
            }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   854
            toClose = new LinkedList<HttpConnection>();
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   855
            synchronized (rspConnections) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   856
                if (MAX_RSP_TIME != -1) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   857
                    for (HttpConnection c : rspConnections) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   858
                        if (c.rspStartedTime + TIMER_MILLIS +MAX_RSP_TIME <= time) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   859
                            toClose.add (c);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   860
                        }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   861
                    }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   862
                    for (HttpConnection c : toClose) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   863
                        logger.log (Level.FINE, "closing: no response: " + c);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   864
                        rspConnections.remove (c);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   865
                        allConnections.remove (c);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   866
                        c.close();
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   867
                    }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   868
                }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   869
            }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   870
        }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   871
    }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   872
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   873
    void logStackTrace (String s) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   874
        logger.finest (s);
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   875
        StringBuilder b = new StringBuilder ();
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   876
        StackTraceElement[] e = Thread.currentThread().getStackTrace();
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   877
        for (int i=0; i<e.length; i++) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   878
            b.append (e[i].toString()).append("\n");
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   879
        }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   880
        logger.finest (b.toString());
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   881
    }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   882
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   883
    static long getTimeMillis(long secs) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   884
        if (secs == -1) {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   885
            return -1;
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   886
        } else {
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   887
            return secs * 1000;
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   888
        }
17d3fc18872d 6725892: Http server stability issues
michaelm
parents: 5506
diff changeset
   889
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
}