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