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

package sun.net.httpserver;

import com.sun.net.httpserver.*;
import com.sun.net.httpserver.spi.*;
M
michaelm 已提交
30 31
import java.util.logging.Logger;
import java.security.PrivilegedAction;
D
duke 已提交
32 33 34 35 36 37 38 39 40 41

/**
 * Parameters that users will not likely need to set
 * but are useful for debugging
 */

class ServerConfig {

    static int clockTick;

M
michaelm 已提交
42
    static final int DEFAULT_CLOCK_TICK = 10000 ; // 10 sec.
D
duke 已提交
43 44

    /* These values must be a reasonable multiple of clockTick */
45
    static final long DEFAULT_IDLE_INTERVAL = 30 ; // 5 min
M
michaelm 已提交
46
    static final int DEFAULT_MAX_IDLE_CONNECTIONS = 200 ;
D
duke 已提交
47

M
michaelm 已提交
48 49 50 51 52
    static final long DEFAULT_MAX_REQ_TIME = -1; // default: forever
    static final long DEFAULT_MAX_RSP_TIME = -1; // default: forever
    static final long DEFAULT_TIMER_MILLIS = 1000;

    static final long DEFAULT_DRAIN_AMOUNT = 64 * 1024;
D
duke 已提交
53 54 55 56

    static long idleInterval;
    static long drainAmount;    // max # of bytes to drain from an inputstream
    static int maxIdleConnections;
M
michaelm 已提交
57 58 59 60 61

    // max time a request or response is allowed to take
    static long maxReqTime;
    static long maxRspTime;
    static long timerMillis;
D
duke 已提交
62 63 64 65 66 67 68
    static boolean debug = false;

    static {

        idleInterval = ((Long)java.security.AccessController.doPrivileged(
                new sun.security.action.GetLongAction(
                "sun.net.httpserver.idleInterval",
M
michaelm 已提交
69
                DEFAULT_IDLE_INTERVAL))).longValue() * 1000;
D
duke 已提交
70 71 72 73

        clockTick = ((Integer)java.security.AccessController.doPrivileged(
                new sun.security.action.GetIntegerAction(
                "sun.net.httpserver.clockTick",
M
michaelm 已提交
74
                DEFAULT_CLOCK_TICK))).intValue();
D
duke 已提交
75 76 77 78

        maxIdleConnections = ((Integer)java.security.AccessController.doPrivileged(
                new sun.security.action.GetIntegerAction(
                "sun.net.httpserver.maxIdleConnections",
M
michaelm 已提交
79
                DEFAULT_MAX_IDLE_CONNECTIONS))).intValue();
D
duke 已提交
80

M
michaelm 已提交
81
        drainAmount = ((Long)java.security.AccessController.doPrivileged(
D
duke 已提交
82
                new sun.security.action.GetLongAction(
M
michaelm 已提交
83 84
                "sun.net.httpserver.drainAmount",
                DEFAULT_DRAIN_AMOUNT))).longValue();
D
duke 已提交
85

M
michaelm 已提交
86
        maxReqTime = ((Long)java.security.AccessController.doPrivileged(
D
duke 已提交
87
                new sun.security.action.GetLongAction(
M
michaelm 已提交
88 89
                "sun.net.httpserver.maxReqTime",
                DEFAULT_MAX_REQ_TIME))).longValue();
D
duke 已提交
90

M
michaelm 已提交
91
        maxRspTime = ((Long)java.security.AccessController.doPrivileged(
D
duke 已提交
92
                new sun.security.action.GetLongAction(
M
michaelm 已提交
93 94
                "sun.net.httpserver.maxRspTime",
                DEFAULT_MAX_RSP_TIME))).longValue();
D
duke 已提交
95

M
michaelm 已提交
96
        timerMillis = ((Long)java.security.AccessController.doPrivileged(
D
duke 已提交
97
                new sun.security.action.GetLongAction(
M
michaelm 已提交
98 99
                "sun.net.httpserver.timerMillis",
                DEFAULT_TIMER_MILLIS))).longValue();
D
duke 已提交
100 101 102 103 104 105 106

        debug = ((Boolean)java.security.AccessController.doPrivileged(
                new sun.security.action.GetBooleanAction(
                "sun.net.httpserver.debug"))).booleanValue();
    }


M
michaelm 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
    static void checkLegacyProperties (final Logger logger) {

        // legacy properties that are no longer used
        // print a warning to logger if they are set.

        java.security.AccessController.doPrivileged(
            new PrivilegedAction<Void>() {
                public Void run () {
                    if (System.getProperty("sun.net.httpserver.readTimeout")
                                                !=null)
                    {
                        logger.warning ("sun.net.httpserver.readTimeout "+
                            "property is no longer used. "+
                            "Use sun.net.httpserver.maxReqTime instead."
                        );
                    }
                    if (System.getProperty("sun.net.httpserver.writeTimeout")
                                                !=null)
                    {
                        logger.warning ("sun.net.httpserver.writeTimeout "+
                            "property is no longer used. Use "+
                            "sun.net.httpserver.maxRspTime instead."
                        );
                    }
                    if (System.getProperty("sun.net.httpserver.selCacheTimeout")
                                                !=null)
                    {
                        logger.warning ("sun.net.httpserver.selCacheTimeout "+
                            "property is no longer used."
                        );
                    }
                    return null;
                }
            }
        );
D
duke 已提交
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
    }

    static boolean debugEnabled () {
        return debug;
    }

    static long getIdleInterval () {
        return idleInterval;
    }

    static int getClockTick () {
        return clockTick;
    }

    static int getMaxIdleConnections () {
        return maxIdleConnections;
    }

    static long getDrainAmount () {
        return drainAmount;
    }
M
michaelm 已提交
163 164 165 166 167 168 169 170 171 172 173 174

    static long getMaxReqTime () {
        return maxReqTime;
    }

    static long getMaxRspTime () {
        return maxRspTime;
    }

    static long getTimerMillis () {
        return timerMillis;
    }
D
duke 已提交
175
}