src/java.base/share/classes/java/net/URLStreamHandler.java
author rriggs
Fri, 07 Dec 2018 11:51:17 -0500
changeset 52902 e3398b2e1ab0
parent 52499 768b1c612100
child 53018 8bf9268df0e2
permissions -rw-r--r--
8214971: Replace use of string.equals("") with isEmpty() Reviewed-by: jlaskey, prappo, lancea, dfuchs, redestad
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
47004
b7e72fc752c9 8186684: Fix broken links in java.base API docs
jjg
parents: 43215
diff changeset
     2
 * Copyright (c) 1995, 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
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);
43215
f3d46da34ae9 8167223: URL handling improvements
michaelm
parents: 32649
diff changeset
   164
            if (i < 0 || i > limit) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
                i = spec.indexOf('?', start);
43215
f3d46da34ae9 8167223: URL handling improvements
michaelm
parents: 32649
diff changeset
   166
                if (i < 0 || i > limit)
2
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) {
43215
f3d46da34ae9 8167223: URL handling improvements
michaelm
parents: 32649
diff changeset
   174
                if (ind != authority.lastIndexOf('@')) {
f3d46da34ae9 8167223: URL handling improvements
michaelm
parents: 32649
diff changeset
   175
                    // more than one '@' in authority. This is not server based
f3d46da34ae9 8167223: URL handling improvements
michaelm
parents: 32649
diff changeset
   176
                    userInfo = null;
f3d46da34ae9 8167223: URL handling improvements
michaelm
parents: 32649
diff changeset
   177
                    host = null;
f3d46da34ae9 8167223: URL handling improvements
michaelm
parents: 32649
diff changeset
   178
                } else {
f3d46da34ae9 8167223: URL handling improvements
michaelm
parents: 32649
diff changeset
   179
                    userInfo = authority.substring(0, ind);
f3d46da34ae9 8167223: URL handling improvements
michaelm
parents: 32649
diff changeset
   180
                    host = authority.substring(ind+1);
f3d46da34ae9 8167223: URL handling improvements
michaelm
parents: 32649
diff changeset
   181
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                userInfo = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
            if (host != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
                // If the host is surrounded by [ and ] then its an IPv6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
                // literal address as specified in RFC2732
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
                if (host.length()>0 && (host.charAt(0) == '[')) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
                    if ((ind = host.indexOf(']')) > 2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
                        String nhost = host ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
                        host = nhost.substring(0,ind+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
                        if (!IPAddressUtil.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
                            isIPv6LiteralAddress(host.substring(1, ind))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
                            throw new IllegalArgumentException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
                                "Invalid host: "+ host);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
                        port = -1 ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
                        if (nhost.length() > ind+1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
                            if (nhost.charAt(ind+1) == ':') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
                                ++ind ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
                                // port can be null according to RFC2396
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
                                if (nhost.length() > (ind + 1)) {
26720
6b160d97c51d 8055032: Improve numerical parsing in java.net and sun.net
redestad
parents: 25859
diff changeset
   205
                                    port = Integer.parseInt(nhost, ind + 1,
6b160d97c51d 8055032: Improve numerical parsing in java.net and sun.net
redestad
parents: 25859
diff changeset
   206
                                        nhost.length(), 10);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
                            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
                                throw new IllegalArgumentException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
                                    "Invalid authority field: " + authority);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
                        throw new IllegalArgumentException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
                            "Invalid authority field: " + authority);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
                    ind = host.indexOf(':');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
                    port = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
                    if (ind >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
                        // port can be null according to RFC2396
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
                        if (host.length() > (ind + 1)) {
26720
6b160d97c51d 8055032: Improve numerical parsing in java.net and sun.net
redestad
parents: 25859
diff changeset
   223
                            port = Integer.parseInt(host, ind + 1,
6b160d97c51d 8055032: Improve numerical parsing in java.net and sun.net
redestad
parents: 25859
diff changeset
   224
                                    host.length(), 10);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
                        host = host.substring(0, ind);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
                host = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
            if (port < -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
                throw new IllegalArgumentException("Invalid port number :" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
                                                   port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
            start = i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
            // If the authority is defined then the path is defined by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
            // spec only; See RFC 2396 Section 5.2.4.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
            if (authority != null && authority.length() > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
                path = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        if (host == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
            host = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        // Parse the file path if any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        if (start < limit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
            if (spec.charAt(start) == '/') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
                path = spec.substring(start, limit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
            } else if (path != null && path.length() > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
                isRelPath = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
                int ind = path.lastIndexOf('/');
52499
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 48260
diff changeset
   253
                String separator = "";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
                if (ind == -1 && authority != null)
52499
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 48260
diff changeset
   255
                    separator = "/";
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 48260
diff changeset
   256
                path = path.substring(0, ind + 1) + separator +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
                         spec.substring(start, limit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
            } else {
52499
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 48260
diff changeset
   260
                String separator = (authority != null) ? "/" : "";
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 48260
diff changeset
   261
                path = separator + spec.substring(start, limit);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        } else if (queryOnly && path != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
            int ind = path.lastIndexOf('/');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
            if (ind < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
                ind = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
            path = path.substring(0, ind) + "/";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        if (path == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
            path = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        if (isRelPath) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
            // Remove embedded /./
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
            while ((i = path.indexOf("/./")) >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
                path = path.substring(0, i) + path.substring(i + 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
            // Remove embedded /../ if possible
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
            i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
            while ((i = path.indexOf("/../", i)) >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
                /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
                 * A "/../" will cancel the previous segment and itself,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
                 * unless that segment is a "/../" itself
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
                 * i.e. "/a/b/../c" becomes "/a/c"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
                 * but "/../../a" should stay unchanged
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
                if (i > 0 && (limit = path.lastIndexOf('/', i - 1)) >= 0 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
                    (path.indexOf("/../", limit) != 0)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
                    path = path.substring(0, limit) + path.substring(i + 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
                    i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
                    i = i + 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
            // Remove trailing .. if possible
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
            while (path.endsWith("/..")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
                i = path.indexOf("/..");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
                if ((limit = path.lastIndexOf('/', i - 1)) >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
                    path = path.substring(0, limit+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
            // Remove starting .
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
            if (path.startsWith("./") && path.length() > 2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
                path = path.substring(2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
            // Remove trailing .
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
            if (path.endsWith("/."))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
                path = path.substring(0, path.length() -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
        setURL(u, protocol, host, port, authority, userInfo, path, query, ref);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * Returns the default port for a URL parsed by this handler. This method
52499
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 48260
diff changeset
   317
     * is meant to be overridden by handlers with default port numbers.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   318
     * @return the default port for a {@code URL} parsed by this handler.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
    protected int getDefaultPort() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
    /**
52499
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 48260
diff changeset
   326
     * Provides the default equals calculation. May be overridden by handlers
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * for other protocols that have different requirements for equals().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * This method requires that none of its arguments is null. This is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * guaranteed by the fact that it is only called by java.net.URL class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * @param u1 a URL object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * @param u2 a URL object
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   332
     * @return {@code true} if the two urls are
52499
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 48260
diff changeset
   333
     * considered equal, i.e. they refer to the same
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * fragment in the same file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    protected boolean equals(URL u1, URL u2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        String ref1 = u1.getRef();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        String ref2 = u2.getRef();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        return (ref1 == ref2 || (ref1 != null && ref1.equals(ref2))) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
               sameFile(u1, u2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    /**
52499
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 48260
diff changeset
   345
     * Provides the default hash calculation. May be overridden by handlers for
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * other protocols that have different requirements for hashCode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * calculation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     * @param u a URL object
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   349
     * @return an {@code int} suitable for hash table indexing
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
    protected int hashCode(URL u) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
        int h = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        // Generate the protocol part.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        String protocol = u.getProtocol();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        if (protocol != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
            h += protocol.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
        // Generate the host part.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        InetAddress addr = getHostAddress(u);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        if (addr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
            h += addr.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
            String host = u.getHost();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
            if (host != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
                h += host.toLowerCase().hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        // Generate the file part.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
        String file = u.getFile();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
        if (file != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
            h += file.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        // Generate the port part.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
        if (u.getPort() == -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
            h += getDefaultPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
            h += u.getPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        // Generate the ref part.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        String ref = u.getRef();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        if (ref != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
            h += ref.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        return h;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * Compare two urls to see whether they refer to the same file,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     * i.e., having the same protocol, host, port, and path.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * This method requires that none of its arguments is null. This is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * guaranteed by the fact that it is only called indirectly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     * by java.net.URL class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * @param u1 a URL object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * @param u2 a URL object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * @return true if u1 and u2 refer to the same file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
    protected boolean sameFile(URL u1, URL u2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        // Compare the protocols.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
        if (!((u1.getProtocol() == u2.getProtocol()) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
              (u1.getProtocol() != null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
               u1.getProtocol().equalsIgnoreCase(u2.getProtocol()))))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        // Compare the files.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
        if (!(u1.getFile() == u2.getFile() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
              (u1.getFile() != null && u1.getFile().equals(u2.getFile()))))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        // Compare the ports.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        int port1, port2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        port1 = (u1.getPort() != -1) ? u1.getPort() : u1.handler.getDefaultPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        port2 = (u2.getPort() != -1) ? u2.getPort() : u2.handler.getDefaultPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        if (port1 != port2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        // Compare the hosts.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
        if (!hostsEqual(u1, u2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * Get the IP address of our host. An empty host field or a DNS failure
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * will result in a null return.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * @param u a URL object
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   431
     * @return an {@code InetAddress} representing the host
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
    protected synchronized InetAddress getHostAddress(URL u) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        if (u.hostAddress != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
            return u.hostAddress;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
        String host = u.getHost();
52902
e3398b2e1ab0 8214971: Replace use of string.equals("") with isEmpty()
rriggs
parents: 52499
diff changeset
   440
        if (host == null || host.isEmpty()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
                u.hostAddress = InetAddress.getByName(host);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
            } catch (UnknownHostException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
            } catch (SecurityException se) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
        return u.hostAddress;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     * Compares the host components of two URLs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     * @param u1 the URL of the first host to compare
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     * @param u2 the URL of the second host to compare
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   458
     * @return  {@code true} if and only if they
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   459
     * are equal, {@code false} otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
    protected boolean hostsEqual(URL u1, URL u2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        InetAddress a1 = getHostAddress(u1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        InetAddress a2 = getHostAddress(u2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        // if we have internet address for both, compare them
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        if (a1 != null && a2 != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
            return a1.equals(a2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        // else, if both have host names, compare them
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
        } else if (u1.getHost() != null && u2.getHost() != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
            return u1.getHost().equalsIgnoreCase(u2.getHost());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
         else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
            return u1.getHost() == null && u2.getHost() == null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   476
     * Converts a {@code URL} of a specific protocol to a
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   477
     * {@code String}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     * @param   u   the URL.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   480
     * @return  a string representation of the {@code URL} argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
    protected String toExternalForm(URL u) {
48260
8ca86cfb126f 8193034: Optimize URL.toExternalForm
martin
parents: 47216
diff changeset
   483
        String s;
8ca86cfb126f 8193034: Optimize URL.toExternalForm
martin
parents: 47216
diff changeset
   484
        return u.getProtocol()
8ca86cfb126f 8193034: Optimize URL.toExternalForm
martin
parents: 47216
diff changeset
   485
            + ':'
8ca86cfb126f 8193034: Optimize URL.toExternalForm
martin
parents: 47216
diff changeset
   486
            + (((s = u.getAuthority()) != null && s.length() > 0)
8ca86cfb126f 8193034: Optimize URL.toExternalForm
martin
parents: 47216
diff changeset
   487
               ? "//" + s : "")
8ca86cfb126f 8193034: Optimize URL.toExternalForm
martin
parents: 47216
diff changeset
   488
            + (((s = u.getPath()) != null) ? s : "")
8ca86cfb126f 8193034: Optimize URL.toExternalForm
martin
parents: 47216
diff changeset
   489
            + (((s = u.getQuery()) != null) ? '?' + s : "")
8ca86cfb126f 8193034: Optimize URL.toExternalForm
martin
parents: 47216
diff changeset
   490
            + (((s = u.getRef()) != null) ? '#' + s : "");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   494
     * 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
   495
     * Only classes derived from URLStreamHandler are able
311a101eb72c 4880778: URL final class has protected methods
jzavgren
parents: 14342
diff changeset
   496
     * to use this method to set the values of the URL fields.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     * @param   u         the URL to modify.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     * @param   protocol  the protocol name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     * @param   host      the remote host value for the URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     * @param   port      the port on the remote machine.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     * @param   authority the authority part for the URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     * @param   userInfo the userInfo part of the URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     * @param   path      the path component of the URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     * @param   query     the query part for the URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     * @param   ref       the reference.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     * @exception       SecurityException       if the protocol handler of the URL is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     *                                  different from this one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
       protected void setURL(URL u, String protocol, String host, int port,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
                             String authority, String userInfo, String path,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
                             String query, String ref) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
        if (this != u.handler) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
            throw new SecurityException("handler for url different from " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
                                        "this handler");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        // ensure that no one can reset the protocol on a given URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
        u.set(u.getProtocol(), host, port, authority, userInfo, path, query, ref);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 16055
diff changeset
   523
     * 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
   524
     * Only classes derived from URLStreamHandler are able
311a101eb72c 4880778: URL final class has protected methods
jzavgren
parents: 14342
diff changeset
   525
     * to use this method to set the values of the URL fields.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     * @param   u         the URL to modify.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     * @param   protocol  the protocol name. This value is ignored since 1.2.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     * @param   host      the remote host value for the URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     * @param   port      the port on the remote machine.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     * @param   file      the file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     * @param   ref       the reference.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     * @exception       SecurityException       if the protocol handler of the URL is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     *                                  different from this one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     * @deprecated Use setURL(URL, String, String, int, String, String, String,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     *             String);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
    protected void setURL(URL u, String protocol, String host, int port,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
                          String file, String ref) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
         * Only old URL handlers call this, so assume that the host
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
         * field might contain "user:passwd@host". Fix as necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        String authority = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
        String userInfo = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
        if (host != null && host.length() != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
            authority = (port == -1) ? host : host + ":" + port;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
            int at = host.lastIndexOf('@');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
            if (at != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
                userInfo = host.substring(0, at);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
                host = host.substring(at+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
         * Assume file might contain query part. Fix as necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
        String path = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
        String query = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
        if (file != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
            int q = file.lastIndexOf('?');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
            if (q != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
                query = file.substring(q+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
                path = file.substring(0, q);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
            } else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
                path = file;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        setURL(u, protocol, host, port, authority, userInfo, path, query, ref);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
}