test/jdk/com/sun/net/httpserver/SimpleFileServer.java
author dholmes
Wed, 06 Nov 2019 21:18:42 -0500
changeset 58956 9a0a5e70eeb2
parent 47216 71c04702a3d5
permissions -rw-r--r--
8233454: Test fails with assert(!is_init_completed(), "should only happen during init") after JDK-8229516 Reviewed-by: jiefu, dcubed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
45531
fb3dbffad37b 8180044: java/net/httpclient/ManyRequests.java failed due to timeout
dfuchs
parents: 36131
diff changeset
     2
 * Copyright (c) 2005, 2017, 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
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
import java.util.concurrent.*;
36131
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 5506
diff changeset
    26
import java.util.logging.*;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.net.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import javax.net.ssl.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import com.sun.net.httpserver.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * Implements a basic static content HTTP server
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * which understands text/html, text/plain content types
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * Must be given an abs pathname to the document root.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * Directory listings together with text + html files
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * can be served.
36131
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 5506
diff changeset
    40
 *
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 5506
diff changeset
    41
 * File Server created on files sub-path
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 5506
diff changeset
    42
 *
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 5506
diff changeset
    43
 * Echo server created on echo sub-path
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 */
45535
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    45
public class SimpleFileServer {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
45535
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    47
    public static void main (String[] args) throws Exception {
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    48
        if (args.length != 3) {
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    49
            System.out.println ("usage: java FileServerHandler rootDir port logfilename");
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    50
            System.exit(1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        }
45535
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    52
        Logger logger = Logger.getLogger("com.sun.net.httpserver");
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    53
        ConsoleHandler ch = new ConsoleHandler();
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    54
        logger.setLevel(Level.ALL);
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    55
        ch.setLevel(Level.ALL);
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    56
        logger.addHandler(ch);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
45535
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    58
        String rootDir = args[0];
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    59
        int port = Integer.parseInt (args[1]);
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    60
        String logfile = args[2];
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    61
        HttpServer server = HttpServer.create (new InetSocketAddress (port), 0);
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    62
        HttpHandler h = new FileServerHandler (rootDir);
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    63
        HttpHandler h1 = new EchoHandler ();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
45535
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    65
        HttpContext c = server.createContext ("/files", h);
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    66
        c.getFilters().add (new LogFilter (new File (logfile)));
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    67
        HttpContext c1 = server.createContext ("/echo", h1);
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    68
        c.getFilters().add (new LogFilter (new File (logfile)));
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    69
        c1.getFilters().add (new LogFilter (new File (logfile)));
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    70
        server.setExecutor (Executors.newCachedThreadPool());
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    71
        server.start ();
36131
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 5506
diff changeset
    72
    }
45535
4b19310ae4ee 8181867: [tests] Reorganize EchoHandlers
dfuchs
parents: 45531
diff changeset
    73
}