jdk/src/java.base/share/classes/java/net/URLStreamHandler.java
author martin
Tue, 15 Sep 2015 21:56:04 -0700
changeset 32649 2ee9017c7597
parent 26720 6b160d97c51d
child 43215 f3d46da34ae9
permissions -rw-r--r--
8136583: Core libraries should use blessed modifier order Summary: Run blessed-modifier-order script (see bug) Reviewed-by: psandoz, chegar, alanb, plevart
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
     2
 * Copyright (c) 1995, 2013, 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: 2
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: 2
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: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
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 java.net;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.InputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.File;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.io.OutputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.util.Hashtable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import sun.net.util.IPAddressUtil;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import sun.net.www.ParseUtil;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
/**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
    37
 * The abstract class {@code URLStreamHandler} is the common
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * superclass for all stream protocol handlers. A stream protocol
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * handler knows how to make a connection for a particular protocol
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
    40
 * type, such as {@code http} or {@code https}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * <p>
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
    42
 * In most cases, an instance of a {@code URLStreamHandler}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * subclass is not created directly by an application. Rather, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * first time a protocol name is encountered when constructing a
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
    45
 * {@code URL}, the appropriate stream protocol handler is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * automatically loaded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * @author  James Gosling
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * @see     java.net.URL#URL(java.lang.String, java.lang.String, int, java.lang.String)
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 22064
diff changeset
    50
 * @since   1.0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
public abstract class URLStreamHandler {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * Opens a connection to the object referenced by the
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
    55
     * {@code URL} argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     * This method should be overridden by a subclass.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     * <p>If for the handler's protocol (such as HTTP or JAR), there
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     * exists a public, specialized URLConnection subclass belonging
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     * to one of the following packages or one of their subpackages:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * java.lang, java.io, java.util, java.net, the connection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * returned will be of that subclass. For example, for HTTP an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * HttpURLConnection will be returned, and for JAR a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * JarURLConnection will be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * @param      u   the URL that this connects to.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
    67
     * @return     a {@code URLConnection} object for the {@code URL}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * @exception  IOException  if an I/O error occurs while opening the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     *               connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 26720
diff changeset
    71
    protected abstract URLConnection openConnection(URL u) throws IOException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * Same as openConnection(URL), except that the connection will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     * made through the specified proxy; Protocol handlers that do not
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * support proxying will ignore the proxy parameter and make a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     * normal connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     *
22064
e3c4398c54cd 7018010: References to ProxySelector is without link
rriggs
parents: 19069
diff changeset
    79
     * Calling this method preempts the system's default
e3c4398c54cd 7018010: References to ProxySelector is without link
rriggs
parents: 19069
diff changeset
    80
     * {@link java.net.ProxySelector ProxySelector} settings.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * @param      u   the URL that this connects to.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * @param      p   the proxy through which the connection will be made.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     *                 If direct connection is desired, Proxy.NO_PROXY
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     *                 should be specified.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
    86
     * @return     a {@code URLConnection} object for the {@code URL}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * @exception  IOException  if an I/O error occurs while opening the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     *               connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * @exception  IllegalArgumentException if either u or p is null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     *               or p has the wrong type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * @exception  UnsupportedOperationException if the subclass that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     *               implements the protocol doesn't support this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     * @since      1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    protected URLConnection openConnection(URL u, Proxy p) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        throw new UnsupportedOperationException("Method not implemented.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   100
     * Parses the string representation of a {@code URL} into a
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   101
     * {@code URL} object.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * If there is any inherited context, then it has already been
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   104
     * copied into the {@code URL} argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * <p>
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   106
     * The {@code parseURL} method of {@code URLStreamHandler}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * parses the string representation as if it were an
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   108
     * {@code http} specification. Most URL protocol families have a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * similar parsing. A stream protocol handler for a protocol that has
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * a different syntax must override this routine.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   112
     * @param   u       the {@code URL} to receive the result of parsing
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     *                  the spec.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   114
     * @param   spec    the {@code String} representing the URL that
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     *                  must be parsed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * @param   start   the character index at which to begin parsing. This is
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   117
     *                  just past the '{@code :}' (if there is one) that
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     *                  specifies the determination of the protocol name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * @param   limit   the character position to stop parsing at. This is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     *                  end of the string or the position of the
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   121
     *                  "{@code #}" character, if present. All information
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     *                  after the sharp sign indicates an anchor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    protected void parseURL(URL u, String spec, int start, int limit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        // These fields may receive context content if this was relative URL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        String protocol = u.getProtocol();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        String authority = u.getAuthority();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        String userInfo = u.getUserInfo();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        String host = u.getHost();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        int port = u.getPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        String path = u.getPath();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        String query = u.getQuery();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        // This field has already been parsed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        String ref = u.getRef();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        boolean isRelPath = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        boolean queryOnly = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
// FIX: should not assume query if opaque
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        // Strip off the query part
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        if (start < limit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            int queryStart = spec.indexOf('?');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            queryOnly = queryStart == start;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
            if ((queryStart != -1) && (queryStart < limit)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
                query = spec.substring(queryStart+1, limit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
                if (limit > queryStart)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
                    limit = queryStart;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
                spec = spec.substring(0, queryStart);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        int i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        // Parse the authority part if any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        boolean isUNCName = (start <= limit - 4) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
                        (spec.charAt(start) == '/') &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                        (spec.charAt(start + 1) == '/') &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                        (spec.charAt(start + 2) == '/') &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                        (spec.charAt(start + 3) == '/');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        if (!isUNCName && (start <= limit - 2) && (spec.charAt(start) == '/') &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            (spec.charAt(start + 1) == '/')) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
            start += 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
            i = spec.indexOf('/', start);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            if (i < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
                i = spec.indexOf('?', start);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
                if (i < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
                    i = limit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
            host = authority = spec.substring(start, i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
            int ind = authority.indexOf('@');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
            if (ind != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                userInfo = authority.substring(0, ind);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
                host = authority.substring(ind+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                userInfo = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            if (host != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                // If the host is surrounded by [ and ] then its an IPv6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
                // literal address as specified in RFC2732
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
                if (host.length()>0 && (host.charAt(0) == '[')) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                    if ((ind = host.indexOf(']')) > 2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
                        String nhost = host ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
                        host = nhost.substring(0,ind+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
                        if (!IPAddressUtil.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
                            isIPv6LiteralAddress(host.substring(1, ind))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
                            throw new IllegalArgumentException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
                                "Invalid host: "+ host);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
                        port = -1 ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
                        if (nhost.length() > ind+1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
                            if (nhost.charAt(ind+1) == ':') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
                                ++ind ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
                                // port can be null according to RFC2396
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
                                if (nhost.length() > (ind + 1)) {
26720
6b160d97c51d 8055032: Improve numerical parsing in java.net and sun.net
redestad
parents: 25859
diff changeset
   199
                                    port = Integer.parseInt(nhost, ind + 1,
6b160d97c51d 8055032: Improve numerical parsing in java.net and sun.net
redestad
parents: 25859
diff changeset
   200
                                        nhost.length(), 10);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
                            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
                                throw new IllegalArgumentException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
                                    "Invalid authority field: " + authority);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
                        throw new IllegalArgumentException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
                            "Invalid authority field: " + authority);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
                    ind = host.indexOf(':');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
                    port = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
                    if (ind >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
                        // port can be null according to RFC2396
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
                        if (host.length() > (ind + 1)) {
26720
6b160d97c51d 8055032: Improve numerical parsing in java.net and sun.net
redestad
parents: 25859
diff changeset
   217
                            port = Integer.parseInt(host, ind + 1,
6b160d97c51d 8055032: Improve numerical parsing in java.net and sun.net
redestad
parents: 25859
diff changeset
   218
                                    host.length(), 10);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
                        host = host.substring(0, ind);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
                host = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
            if (port < -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
                throw new IllegalArgumentException("Invalid port number :" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
                                                   port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            start = i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
            // If the authority is defined then the path is defined by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
            // spec only; See RFC 2396 Section 5.2.4.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
            if (authority != null && authority.length() > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
                path = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        if (host == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
            host = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        // Parse the file path if any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        if (start < limit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
            if (spec.charAt(start) == '/') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
                path = spec.substring(start, limit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
            } else if (path != null && path.length() > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
                isRelPath = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
                int ind = path.lastIndexOf('/');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
                String seperator = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
                if (ind == -1 && authority != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
                    seperator = "/";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
                path = path.substring(0, ind + 1) + seperator +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
                         spec.substring(start, limit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
                String seperator = (authority != null) ? "/" : "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
                path = seperator + spec.substring(start, limit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        } else if (queryOnly && path != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
            int ind = path.lastIndexOf('/');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
            if (ind < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
                ind = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
            path = path.substring(0, ind) + "/";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        if (path == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
            path = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        if (isRelPath) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
            // Remove embedded /./
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
            while ((i = path.indexOf("/./")) >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
                path = path.substring(0, i) + path.substring(i + 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
            // Remove embedded /../ if possible
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
            i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
            while ((i = path.indexOf("/../", i)) >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
                /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
                 * A "/../" will cancel the previous segment and itself,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
                 * unless that segment is a "/../" itself
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
                 * i.e. "/a/b/../c" becomes "/a/c"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
                 * but "/../../a" should stay unchanged
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
                if (i > 0 && (limit = path.lastIndexOf('/', i - 1)) >= 0 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
                    (path.indexOf("/../", limit) != 0)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
                    path = path.substring(0, limit) + path.substring(i + 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
                    i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
                    i = i + 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
            // Remove trailing .. if possible
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
            while (path.endsWith("/..")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                i = path.indexOf("/..");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
                if ((limit = path.lastIndexOf('/', i - 1)) >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                    path = path.substring(0, limit+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
            // Remove starting .
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
            if (path.startsWith("./") && path.length() > 2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                path = path.substring(2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
            // Remove trailing .
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            if (path.endsWith("/."))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
                path = path.substring(0, path.length() -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        setURL(u, protocol, host, port, authority, userInfo, path, query, ref);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * Returns the default port for a URL parsed by this handler. This method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * is meant to be overidden by handlers with default port numbers.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   312
     * @return the default port for a {@code URL} parsed by this handler.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
    protected int getDefaultPort() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * Provides the default equals calculation. May be overidden by handlers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * for other protocols that have different requirements for equals().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * This method requires that none of its arguments is null. This is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * guaranteed by the fact that it is only called by java.net.URL class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * @param u1 a URL object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * @param u2 a URL object
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   326
     * @return {@code true} if the two urls are
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * considered equal, ie. they refer to the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * fragment in the same file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
    protected boolean equals(URL u1, URL u2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
        String ref1 = u1.getRef();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
        String ref2 = u2.getRef();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        return (ref1 == ref2 || (ref1 != null && ref1.equals(ref2))) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
               sameFile(u1, u2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * Provides the default hash calculation. May be overidden by handlers for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     * other protocols that have different requirements for hashCode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * calculation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * @param u a URL object
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   343
     * @return an {@code int} suitable for hash table indexing
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    protected int hashCode(URL u) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        int h = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        // Generate the protocol part.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        String protocol = u.getProtocol();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        if (protocol != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
            h += protocol.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        // Generate the host part.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        InetAddress addr = getHostAddress(u);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        if (addr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
            h += addr.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
            String host = u.getHost();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
            if (host != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
                h += host.toLowerCase().hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        // Generate the file part.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        String file = u.getFile();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
        if (file != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
            h += file.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        // Generate the port part.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        if (u.getPort() == -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
            h += getDefaultPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
            h += u.getPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        // Generate the ref part.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
        String ref = u.getRef();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
        if (ref != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
            h += ref.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        return h;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     * Compare two urls to see whether they refer to the same file,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * i.e., having the same protocol, host, port, and path.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     * This method requires that none of its arguments is null. This is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * guaranteed by the fact that it is only called indirectly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * by java.net.URL class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * @param u1 a URL object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * @param u2 a URL object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     * @return true if u1 and u2 refer to the same file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
    protected boolean sameFile(URL u1, URL u2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        // Compare the protocols.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        if (!((u1.getProtocol() == u2.getProtocol()) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
              (u1.getProtocol() != null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
               u1.getProtocol().equalsIgnoreCase(u2.getProtocol()))))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        // Compare the files.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
        if (!(u1.getFile() == u2.getFile() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
              (u1.getFile() != null && u1.getFile().equals(u2.getFile()))))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
        // Compare the ports.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        int port1, port2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
        port1 = (u1.getPort() != -1) ? u1.getPort() : u1.handler.getDefaultPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        port2 = (u2.getPort() != -1) ? u2.getPort() : u2.handler.getDefaultPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
        if (port1 != port2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        // Compare the hosts.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        if (!hostsEqual(u1, u2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * Get the IP address of our host. An empty host field or a DNS failure
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     * will result in a null return.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     * @param u a URL object
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   425
     * @return an {@code InetAddress} representing the host
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
    protected synchronized InetAddress getHostAddress(URL u) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
        if (u.hostAddress != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
            return u.hostAddress;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        String host = u.getHost();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
        if (host == null || host.equals("")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
                u.hostAddress = InetAddress.getByName(host);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
            } catch (UnknownHostException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
            } catch (SecurityException se) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
        return u.hostAddress;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     * Compares the host components of two URLs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * @param u1 the URL of the first host to compare
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     * @param u2 the URL of the second host to compare
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   452
     * @return  {@code true} if and only if they
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   453
     * are equal, {@code false} otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
    protected boolean hostsEqual(URL u1, URL u2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
        InetAddress a1 = getHostAddress(u1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
        InetAddress a2 = getHostAddress(u2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        // if we have internet address for both, compare them
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        if (a1 != null && a2 != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
            return a1.equals(a2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        // else, if both have host names, compare them
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        } else if (u1.getHost() != null && u2.getHost() != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
            return u1.getHost().equalsIgnoreCase(u2.getHost());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
         else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
            return u1.getHost() == null && u2.getHost() == null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   470
     * Converts a {@code URL} of a specific protocol to a
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   471
     * {@code String}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     * @param   u   the URL.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   474
     * @return  a string representation of the {@code URL} argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    protected String toExternalForm(URL u) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
        // pre-compute length of StringBuffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
        int len = u.getProtocol().length() + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
        if (u.getAuthority() != null && u.getAuthority().length() > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
            len += 2 + u.getAuthority().length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
        if (u.getPath() != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
            len += u.getPath().length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        if (u.getQuery() != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
            len += 1 + u.getQuery().length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
        if (u.getRef() != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
            len += 1 + u.getRef().length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
24969
afa6934dd8e8 8041679: Replace uses of StringBuffer with StringBuilder within core library classes
psandoz
parents: 24865
diff changeset
   491
        StringBuilder result = new StringBuilder(len);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
        result.append(u.getProtocol());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
        result.append(":");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        if (u.getAuthority() != null && u.getAuthority().length() > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
            result.append("//");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
            result.append(u.getAuthority());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        if (u.getPath() != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
            result.append(u.getPath());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
        if (u.getQuery() != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
            result.append('?');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
            result.append(u.getQuery());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
        if (u.getRef() != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            result.append("#");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
            result.append(u.getRef());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        return result.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   513
     * Sets the fields of the {@code URL} argument to the indicated values.
16055
311a101eb72c 4880778: URL final class has protected methods
jzavgren
parents: 14342
diff changeset
   514
     * Only classes derived from URLStreamHandler are able
311a101eb72c 4880778: URL final class has protected methods
jzavgren
parents: 14342
diff changeset
   515
     * to use this method to set the values of the URL fields.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
     * @param   u         the URL to modify.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * @param   protocol  the protocol name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     * @param   host      the remote host value for the URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     * @param   port      the port on the remote machine.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     * @param   authority the authority part for the URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * @param   userInfo the userInfo part of the URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * @param   path      the path component of the URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     * @param   query     the query part for the URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     * @param   ref       the reference.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     * @exception       SecurityException       if the protocol handler of the URL is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     *                                  different from this one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     * @see     java.net.URL#set(java.lang.String, java.lang.String, int, java.lang.String, java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
       protected void setURL(URL u, String protocol, String host, int port,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
                             String authority, String userInfo, String path,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
                             String query, String ref) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
        if (this != u.handler) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
            throw new SecurityException("handler for url different from " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
                                        "this handler");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
        // ensure that no one can reset the protocol on a given URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
        u.set(u.getProtocol(), host, port, authority, userInfo, path, query, ref);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   543
     * Sets the fields of the {@code URL} argument to the indicated values.
16055
311a101eb72c 4880778: URL final class has protected methods
jzavgren
parents: 14342
diff changeset
   544
     * Only classes derived from URLStreamHandler are able
311a101eb72c 4880778: URL final class has protected methods
jzavgren
parents: 14342
diff changeset
   545
     * to use this method to set the values of the URL fields.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     * @param   u         the URL to modify.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     * @param   protocol  the protocol name. This value is ignored since 1.2.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     * @param   host      the remote host value for the URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     * @param   port      the port on the remote machine.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     * @param   file      the file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     * @param   ref       the reference.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     * @exception       SecurityException       if the protocol handler of the URL is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     *                                  different from this one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     * @deprecated Use setURL(URL, String, String, int, String, String, String,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
     *             String);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
    protected void setURL(URL u, String protocol, String host, int port,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
                          String file, String ref) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
         * Only old URL handlers call this, so assume that the host
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
         * field might contain "user:passwd@host". Fix as necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
        String authority = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
        String userInfo = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
        if (host != null && host.length() != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
            authority = (port == -1) ? host : host + ":" + port;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
            int at = host.lastIndexOf('@');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
            if (at != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
                userInfo = host.substring(0, at);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
                host = host.substring(at+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
         * Assume file might contain query part. Fix as necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
        String path = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
        String query = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
        if (file != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
            int q = file.lastIndexOf('?');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
            if (q != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
                query = file.substring(q+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
                path = file.substring(0, q);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
            } else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
                path = file;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
        setURL(u, protocol, host, port, authority, userInfo, path, query, ref);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
}