src/java.base/share/classes/java/net/HttpCookie.java
author chegar
Fri, 18 Oct 2019 21:25:01 +0100
branchdatagramsocketimpl-branch
changeset 58697 e3ff12d14d43
parent 53018 8bf9268df0e2
permissions -rw-r--r--
datagramsocketimpl-branch: minor refactoring
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
52427
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 51724
diff changeset
     2
 * Copyright (c) 2005, 2018, 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: 4324
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: 4324
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: 4324
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4324
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4324
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.util.List;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.StringTokenizer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.NoSuchElementException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.text.SimpleDateFormat;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.util.TimeZone;
14787
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
    33
import java.util.Calendar;
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
    34
import java.util.GregorianCalendar;
1945
95b9d549a3b4 6791927: Wrong Locale in HttpCookie::expiryDate2DeltaSeconds
jccollet
parents: 1932
diff changeset
    35
import java.util.Locale;
9548
225dbdc1cb74 7041136: Use Objects.equals in JDK platform classes
darcy
parents: 7668
diff changeset
    36
import java.util.Objects;
52427
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 51724
diff changeset
    37
import jdk.internal.access.JavaNetHttpCookieAccess;
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 51724
diff changeset
    38
import jdk.internal.access.SharedSecrets;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
/**
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
    41
 * An HttpCookie object represents an HTTP cookie, which carries state
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * information between server and user agent. Cookie is widely adopted
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * to create stateful sessions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
    45
 * <p> There are 3 HTTP cookie specifications:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 *   Netscape draft<br>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *   RFC 2109 - <a href="http://www.ietf.org/rfc/rfc2109.txt">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * <i>http://www.ietf.org/rfc/rfc2109.txt</i></a><br>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *   RFC 2965 - <a href="http://www.ietf.org/rfc/rfc2965.txt">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * <i>http://www.ietf.org/rfc/rfc2965.txt</i></a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
    54
 * <p> HttpCookie class can accept all these 3 forms of syntax.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * @author Edward Wang
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
public final class HttpCookie implements Cloneable {
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
    60
    // ---------------- Fields --------------
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    // The value of the cookie itself.
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
    63
    private final String name;  // NAME= ... "$Name" style is reserved
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    private String value;       // value of NAME
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    // Attributes encoded in the header's cookie fields.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    private String comment;     // Comment=VALUE ... describes cookie's use
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    private String commentURL;  // CommentURL="http URL" ... describes cookie's use
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    private boolean toDiscard;  // Discard ... discard cookie unconditionally
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    private String domain;      // Domain=VALUE ... domain that sees cookie
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    private long maxAge = MAX_AGE_UNSPECIFIED;  // Max-Age=VALUE ... cookies auto-expire
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    private String path;        // Path=VALUE ... URLs that see the cookie
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    private String portlist;    // Port[="portlist"] ... the port cookie may be returned to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    private boolean secure;     // Secure ... e.g. use SSL
1234
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
    75
    private boolean httpOnly;   // HttpOnly ... i.e. not accessible to scripts
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    private int version = 1;    // Version=1 ... RFC 2965 style
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
23927
225d01ae6469 8038821: Fix typos in java.net
chegar
parents: 21346
diff changeset
    78
    // The original header this cookie was constructed from, if it was
11284
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
    79
    // constructed by parsing a header, otherwise null.
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
    80
    private final String header;
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
    81
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    // Hold the creation time (in seconds) of the http cookie for later
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    // expiration calculation
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
    84
    private final long whenCreated;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    // Since the positive and zero max-age have their meanings,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    // this value serves as a hint as 'not specify max-age'
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 29986
diff changeset
    88
    private static final long MAX_AGE_UNSPECIFIED = -1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
480
c309ca1d3a86 6644726: Cookie management issues
jccollet
parents: 2
diff changeset
    90
    // date formats used by Netscape's cookie draft
c309ca1d3a86 6644726: Cookie management issues
jccollet
parents: 2
diff changeset
    91
    // as well as formats seen on various sites
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 29986
diff changeset
    92
    private static final String[] COOKIE_DATE_FORMATS = {
480
c309ca1d3a86 6644726: Cookie management issues
jccollet
parents: 2
diff changeset
    93
        "EEE',' dd-MMM-yyyy HH:mm:ss 'GMT'",
c309ca1d3a86 6644726: Cookie management issues
jccollet
parents: 2
diff changeset
    94
        "EEE',' dd MMM yyyy HH:mm:ss 'GMT'",
14787
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
    95
        "EEE MMM dd yyyy HH:mm:ss 'GMT'Z",
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
    96
        "EEE',' dd-MMM-yy HH:mm:ss 'GMT'",
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
    97
        "EEE',' dd MMM yy HH:mm:ss 'GMT'",
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
    98
        "EEE MMM dd yy HH:mm:ss 'GMT'Z"
480
c309ca1d3a86 6644726: Cookie management issues
jccollet
parents: 2
diff changeset
    99
    };
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    // constant strings represent set-cookie header token
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 29986
diff changeset
   102
    private static final String SET_COOKIE = "set-cookie:";
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 29986
diff changeset
   103
    private static final String SET_COOKIE2 = "set-cookie2:";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   105
    // ---------------- Ctors --------------
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * Constructs a cookie with a specified name and value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   110
     * <p> The name must conform to RFC 2965. That means it can contain
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * only ASCII alphanumeric characters and cannot contain commas,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * semicolons, or white space or begin with a $ character. The cookie's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * name cannot be changed after creation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   115
     * <p> The value can be anything the server chooses to send. Its
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * value is probably of interest only to the server. The cookie's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * value can be changed after creation with the
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   118
     * {@code setValue} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   120
     * <p> By default, cookies are created according to the RFC 2965
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * cookie specification. The version can be changed with the
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   122
     * {@code setVersion} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   125
     * @param  name
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   126
     *         a {@code String} specifying the name of the cookie
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   128
     * @param  value
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   129
     *         a {@code String} specifying the value of the cookie
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   131
     * @throws  IllegalArgumentException
17926
1a74b1b8cad1 7188517: Check on '$' character is missing in the HttpCookie class constructor
jzavgren
parents: 14787
diff changeset
   132
     *          if the cookie name contains illegal characters
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   133
     * @throws  NullPointerException
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   134
     *          if {@code name} is {@code null}
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   135
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * @see #setValue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * @see #setVersion
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    public HttpCookie(String name, String value) {
11284
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   140
        this(name, value, null /*header*/);
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   141
    }
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   142
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   143
    private HttpCookie(String name, String value, String header) {
51724
8abb0fa2c334 8210311: IllegalArgumentException in CookieManager - Comparison method violates its general contract
michaelm
parents: 47216
diff changeset
   144
        this(name, value, header, System.currentTimeMillis());
8abb0fa2c334 8210311: IllegalArgumentException in CookieManager - Comparison method violates its general contract
michaelm
parents: 47216
diff changeset
   145
    }
8abb0fa2c334 8210311: IllegalArgumentException in CookieManager - Comparison method violates its general contract
michaelm
parents: 47216
diff changeset
   146
8abb0fa2c334 8210311: IllegalArgumentException in CookieManager - Comparison method violates its general contract
michaelm
parents: 47216
diff changeset
   147
    /**
8abb0fa2c334 8210311: IllegalArgumentException in CookieManager - Comparison method violates its general contract
michaelm
parents: 47216
diff changeset
   148
     * Package private for testing purposes.
8abb0fa2c334 8210311: IllegalArgumentException in CookieManager - Comparison method violates its general contract
michaelm
parents: 47216
diff changeset
   149
     */
8abb0fa2c334 8210311: IllegalArgumentException in CookieManager - Comparison method violates its general contract
michaelm
parents: 47216
diff changeset
   150
    HttpCookie(String name, String value, String header, long creationTime) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        name = name.trim();
53018
8bf9268df0e2 8215281: Use String.isEmpty() when applicable in java.base
redestad
parents: 52499
diff changeset
   152
        if (name.isEmpty() || !isToken(name) || name.charAt(0) == '$') {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
            throw new IllegalArgumentException("Illegal cookie name");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        this.name = name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        this.value = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        toDiscard = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        secure = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
51724
8abb0fa2c334 8210311: IllegalArgumentException in CookieManager - Comparison method violates its general contract
michaelm
parents: 47216
diff changeset
   161
        whenCreated = creationTime;
480
c309ca1d3a86 6644726: Cookie management issues
jccollet
parents: 2
diff changeset
   162
        portlist = null;
11284
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   163
        this.header = header;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * Constructs cookies from set-cookie or set-cookie2 header string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * RFC 2965 section 3.2.2 set-cookie2 syntax indicates that one header line
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * may contain more than one cookie definitions, so this is a static
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * utility method instead of another constructor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   172
     * @param  header
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   173
     *         a {@code String} specifying the set-cookie header. The header
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   174
     *         should start with "set-cookie", or "set-cookie2" token; or it
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   175
     *         should have no leading token at all.
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   176
     *
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   177
     * @return  a List of cookie parsed from header line string
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   178
     *
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   179
     * @throws  IllegalArgumentException
17926
1a74b1b8cad1 7188517: Check on '$' character is missing in the HttpCookie class constructor
jzavgren
parents: 14787
diff changeset
   180
     *          if header string violates the cookie specification's syntax or
1a74b1b8cad1 7188517: Check on '$' character is missing in the HttpCookie class constructor
jzavgren
parents: 14787
diff changeset
   181
     *          the cookie name contains illegal characters.
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   182
     * @throws  NullPointerException
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   183
     *          if the header string is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    public static List<HttpCookie> parse(String header) {
11284
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   186
        return parse(header, false);
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   187
    }
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   188
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   189
    // Private version of parse() that will store the original header used to
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   190
    // create the cookie, in the cookie itself. This can be useful for filtering
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   191
    // Set-Cookie[2] headers, using the internal parsing logic defined in this
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   192
    // class.
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   193
    private static List<HttpCookie> parse(String header, boolean retainHeader) {
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   194
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        int version = guessCookieVersion(header);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        // if header start with set-cookie or set-cookie2, strip it off
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        if (startsWithIgnoreCase(header, SET_COOKIE2)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
            header = header.substring(SET_COOKIE2.length());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        } else if (startsWithIgnoreCase(header, SET_COOKIE)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
            header = header.substring(SET_COOKIE.length());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   204
        List<HttpCookie> cookies = new java.util.ArrayList<>();
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   205
        // The Netscape cookie may have a comma in its expires attribute, while
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   206
        // the comma is the delimiter in rfc 2965/2109 cookie header string.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        // so the parse logic is slightly different
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        if (version == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
            // Netscape draft cookie
11284
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   210
            HttpCookie cookie = parseInternal(header, retainHeader);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
            cookie.setVersion(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
            cookies.add(cookie);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
            // rfc2965/2109 cookie
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
            // if header string contains more than one cookie,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
            // it'll separate them with comma
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
            List<String> cookieStrings = splitMultiCookies(header);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
            for (String cookieStr : cookieStrings) {
11284
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   219
                HttpCookie cookie = parseInternal(cookieStr, retainHeader);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
                cookie.setVersion(1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
                cookies.add(cookie);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        return cookies;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   228
    // ---------------- Public operations --------------
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    /**
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   231
     * Reports whether this HTTP cookie has expired or not.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   233
     * @return  {@code true} to indicate this HTTP cookie has expired;
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   234
     *          otherwise, {@code false}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    public boolean hasExpired() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        if (maxAge == 0) return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        // if not specify max-age, this cookie should be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        // discarded when user agent is to be closed, but
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        // it is not expired.
40564
242110f0c920 8005068: HttpCookie does not correctly handle negative maxAge values
snikandrova
parents: 32834
diff changeset
   242
        if (maxAge < 0) return false;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        long deltaSecond = (System.currentTimeMillis() - whenCreated) / 1000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        if (deltaSecond > maxAge)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * Specifies a comment that describes a cookie's purpose.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * The comment is useful if the browser presents the cookie
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   254
     * to the user. Comments are not supported by Netscape Version 0 cookies.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   256
     * @param  purpose
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   257
     *         a {@code String} specifying the comment to display to the user
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   259
     * @see  #getComment
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    public void setComment(String purpose) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        comment = purpose;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * Returns the comment describing the purpose of this cookie, or
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   267
     * {@code null} if the cookie has no comment.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   269
     * @return  a {@code String} containing the comment, or {@code null} if none
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   271
     * @see  #setComment
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
    public String getComment() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        return comment;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    /**
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   278
     * Specifies a comment URL that describes a cookie's purpose.
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   279
     * The comment URL is useful if the browser presents the cookie
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   280
     * to the user. Comment URL is RFC 2965 only.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   282
     * @param  purpose
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   283
     *         a {@code String} specifying the comment URL to display to the user
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   285
     * @see  #getCommentURL
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
    public void setCommentURL(String purpose) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        commentURL = purpose;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    /**
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   292
     * Returns the comment URL describing the purpose of this cookie, or
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   293
     * {@code null} if the cookie has no comment URL.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   295
     * @return  a {@code String} containing the comment URL, or {@code null}
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   296
     *          if none
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   298
     * @see  #setCommentURL
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
    public String getCommentURL() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        return commentURL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     * Specify whether user agent should discard the cookie unconditionally.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     * This is RFC 2965 only attribute.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   308
     * @param  discard
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   309
     *         {@code true} indicates to discard cookie unconditionally
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   311
     * @see  #getDiscard
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
    public void setDiscard(boolean discard) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
        toDiscard = discard;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    /**
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   318
     * Returns the discard attribute of the cookie
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   320
     * @return  a {@code boolean} to represent this cookie's discard attribute
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   322
     * @see  #setDiscard
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    public boolean getDiscard() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        return toDiscard;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * Specify the portlist of the cookie, which restricts the port(s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * to which a cookie may be sent back in a Cookie header.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   332
     * @param  ports
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   333
     *         a {@code String} specify the port list, which is comma separated
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   334
     *         series of digits
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   335
     *
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   336
     * @see  #getPortlist
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    public void setPortlist(String ports) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        portlist = ports;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    /**
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   343
     * Returns the port list attribute of the cookie
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   345
     * @return  a {@code String} contains the port list or {@code null} if none
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   346
     *
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   347
     * @see  #setPortlist
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
    public String getPortlist() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        return portlist;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * Specifies the domain within which this cookie should be presented.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   356
     * <p> The form of the domain name is specified by RFC 2965. A domain
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   357
     * name begins with a dot ({@code .foo.com}) and means that
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     * the cookie is visible to servers in a specified Domain Name System
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   359
     * (DNS) zone (for example, {@code www.foo.com}, but not
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   360
     * {@code a.b.foo.com}). By default, cookies are only returned
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * to the server that sent them.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   363
     * @param  pattern
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   364
     *         a {@code String} containing the domain name within which this
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   365
     *         cookie is visible; form is according to RFC 2965
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   367
     * @see  #getDomain
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    public void setDomain(String pattern) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        if (pattern != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
            domain = pattern.toLowerCase();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
            domain = pattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
    /**
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   377
     * Returns the domain name set for this cookie. The form of the domain name
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   378
     * is set by RFC 2965.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   380
     * @return  a {@code String} containing the domain name
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   382
     * @see  #setDomain
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    public String getDomain() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
        return domain;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * Sets the maximum age of the cookie in seconds.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   391
     * <p> A positive value indicates that the cookie will expire
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * after that many seconds have passed. Note that the value is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * the <i>maximum</i> age when the cookie will expire, not the cookie's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     * current age.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   396
     * <p> A negative value means that the cookie is not stored persistently
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   397
     * and will be deleted when the Web browser exits. A zero value causes the
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   398
     * cookie to be deleted.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   400
     * @param  expiry
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   401
     *         an integer specifying the maximum age of the cookie in seconds;
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   402
     *         if zero, the cookie should be discarded immediately; otherwise,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   403
     *         the cookie's max age is unspecified.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   405
     * @see  #getMaxAge
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
    public void setMaxAge(long expiry) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
        maxAge = expiry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
    /**
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   412
     * Returns the maximum age of the cookie, specified in seconds. By default,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   413
     * {@code -1} indicating the cookie will persist until browser shutdown.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   415
     * @return  an integer specifying the maximum age of the cookie in seconds
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   417
     * @see  #setMaxAge
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
    public long getMaxAge() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
        return maxAge;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    /**
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   424
     * Specifies a path for the cookie to which the client should return
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   425
     * the cookie.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   427
     * <p> The cookie is visible to all the pages in the directory
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * you specify, and all the pages in that directory's subdirectories.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * A cookie's path must include the servlet that set the cookie,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * for example, <i>/catalog</i>, which makes the cookie
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * visible to all directories on the server under <i>/catalog</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   433
     * <p> Consult RFC 2965 (available on the Internet) for more
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     * information on setting path names for cookies.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   436
     * @param  uri
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   437
     *         a {@code String} specifying a path
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   439
     * @see  #getPath
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
    public void setPath(String uri) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
        path = uri;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    /**
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   446
     * Returns the path on the server to which the browser returns this cookie.
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   447
     * The cookie is visible to all subpaths on the server.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   449
     * @return  a {@code String} specifying a path that contains a servlet name,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   450
     *          for example, <i>/catalog</i>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   452
     * @see  #setPath
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
    public String getPath() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
        return path;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
    /**
480
c309ca1d3a86 6644726: Cookie management issues
jccollet
parents: 2
diff changeset
   459
     * Indicates whether the cookie should only be sent using a secure protocol,
c309ca1d3a86 6644726: Cookie management issues
jccollet
parents: 2
diff changeset
   460
     * such as HTTPS or SSL.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   462
     * <p> The default value is {@code false}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   464
     * @param  flag
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   465
     *         If {@code true}, the cookie can only be sent over a secure
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   466
     *         protocol like HTTPS. If {@code false}, it can be sent over
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   467
     *         any protocol.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   469
     * @see  #getSecure
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
    public void setSecure(boolean flag) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        secure = flag;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
    /**
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   476
     * Returns {@code true} if sending this cookie should be restricted to a
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   477
     * secure protocol, or {@code false} if the it can be sent using any
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   478
     * protocol.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   480
     * @return  {@code false} if the cookie can be sent over any standard
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 17926
diff changeset
   481
     *          protocol; otherwise, {@code true}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   483
     * @see  #setSecure
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
    public boolean getSecure() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
        return secure;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     * Returns the name of the cookie. The name cannot be changed after
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     * creation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   493
     * @return  a {@code String} specifying the cookie's name
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
    public String getName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
        return name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     * Assigns a new value to a cookie after the cookie is created.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     * If you use a binary value, you may want to use BASE64 encoding.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   503
     * <p> With Version 0 cookies, values should not contain white space,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   504
     * brackets, parentheses, equals signs, commas, double quotes, slashes,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   505
     * question marks, at signs, colons, and semicolons. Empty values may not
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   506
     * behave the same way on all browsers.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   508
     * @param  newValue
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   509
     *         a {@code String} specifying the new value
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   511
     * @see  #getValue
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
    public void setValue(String newValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
        value = newValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * Returns the value of the cookie.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   520
     * @return  a {@code String} containing the cookie's present value
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   522
     * @see  #setValue
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
    public String getValue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
        return value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
    /**
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   529
     * Returns the version of the protocol this cookie complies with. Version 1
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   530
     * complies with RFC 2965/2109, and version 0 complies with the original
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   531
     * cookie specification drafted by Netscape. Cookies provided by a browser
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   532
     * use and identify the browser's cookie version.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   534
     * @return  0 if the cookie complies with the original Netscape
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   535
     *          specification; 1 if the cookie complies with RFC 2965/2109
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   537
     * @see  #setVersion
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
    public int getVersion() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
        return version;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
     * Sets the version of the cookie protocol this cookie complies
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
     * with. Version 0 complies with the original Netscape cookie
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     * specification. Version 1 complies with RFC 2965/2109.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   548
     * @param  v
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   549
     *         0 if the cookie should comply with the original Netscape
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   550
     *         specification; 1 if the cookie should comply with RFC 2965/2109
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   552
     * @throws  IllegalArgumentException
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   553
     *          if {@code v} is neither 0 nor 1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   555
     * @see  #getVersion
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
    public void setVersion(int v) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
        if (v != 0 && v != 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
            throw new IllegalArgumentException("cookie version should be 0 or 1");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
        version = v;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
1234
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   565
    /**
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   566
     * Returns {@code true} if this cookie contains the <i>HttpOnly</i>
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   567
     * attribute. This means that the cookie should not be accessible to
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   568
     * scripting engines, like javascript.
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   569
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   570
     * @return  {@code true} if this cookie should be considered HTTPOnly
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   571
     *
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   572
     * @see  #setHttpOnly(boolean)
1234
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   573
     */
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   574
    public boolean isHttpOnly() {
1234
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   575
        return httpOnly;
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   576
    }
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   577
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   578
    /**
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   579
     * Indicates whether the cookie should be considered HTTP Only. If set to
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   580
     * {@code true} it means the cookie should not be accessible to scripting
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   581
     * engines like javascript.
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   582
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   583
     * @param  httpOnly
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   584
     *         if {@code true} make the cookie HTTP only, i.e. only visible as
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   585
     *         part of an HTTP request.
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   586
     *
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   587
     * @see  #isHttpOnly()
1234
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   588
     */
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   589
    public void setHttpOnly(boolean httpOnly) {
1234
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   590
        this.httpOnly = httpOnly;
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   591
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
    /**
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   594
     * The utility method to check whether a host name is in a domain or not.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   596
     * <p> This concept is described in the cookie specification.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
     * To understand the concept, some terminologies need to be defined first:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
     * effective host name = hostname if host name contains dot<br>
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   600
     * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   601
     * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;or = hostname.local if not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     * <p>Host A's name domain-matches host B's if:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
     * <blockquote><ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
     *   <li>their host name strings string-compare equal; or</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
     *   <li>A is a HDN string and has the form NB, where N is a non-empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
     *   name string, B has the form .B', and B' is a HDN string.  (So,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     *   x.y.com domain-matches .Y.com but not Y.com.)</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     * </ul></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
     * <p>A host isn't in a domain (RFC 2965 sec. 3.3.2) if:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     * <blockquote><ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     *   <li>The value for the Domain attribute contains no embedded dots,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     *   and the value is not .local.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     *   <li>The effective host name that derives from the request-host does
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     *   not domain-match the Domain attribute.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
     *   <li>The request-host is a HDN (not IP address) and has the form HD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     *   where D is the value of the Domain attribute, and H is a string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     *   that contains one or more dots.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     * </ul></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
     * <p>Examples:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
     * <blockquote><ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
     *   <li>A Set-Cookie2 from request-host y.x.foo.com for Domain=.foo.com
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
     *   would be rejected, because H is y.x and contains a dot.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
     *   <li>A Set-Cookie2 from request-host x.foo.com for Domain=.foo.com
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
     *   would be accepted.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
     *   <li>A Set-Cookie2 with Domain=.com or Domain=.com., will always be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
     *   rejected, because there is no embedded dot.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
     *   <li>A Set-Cookie2 from request-host example for Domain=.local will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
     *   be accepted, because the effective host name for the request-
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     *   host is example.local, and example.local domain-matches .local.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     * </ul></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   635
     * @param  domain
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   636
     *         the domain name to check host name with
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   637
     *
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   638
     * @param  host
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   639
     *         the host name in question
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   640
     *
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   641
     * @return  {@code true} if they domain-matches; {@code false} if not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
    public static boolean domainMatches(String domain, String host) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
        if (domain == null || host == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
        // if there's no embedded dot in domain and domain is not .local
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
        boolean isLocalDomain = ".local".equalsIgnoreCase(domain);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
        int embeddedDotInDomain = domain.indexOf('.');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
        if (embeddedDotInDomain == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
            embeddedDotInDomain = domain.indexOf('.', 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
        if (!isLocalDomain
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   653
            && (embeddedDotInDomain == -1 ||
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   654
                embeddedDotInDomain == domain.length() - 1))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
10352
edde66d3118f 7023713: HttpCookie.domainMatches("hostname.local", "hostname") should return true
chegar
parents: 9548
diff changeset
   657
        // if the host name contains no dot and the domain name
edde66d3118f 7023713: HttpCookie.domainMatches("hostname.local", "hostname") should return true
chegar
parents: 9548
diff changeset
   658
        // is .local or host.local
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
        int firstDotInHost = host.indexOf('.');
10352
edde66d3118f 7023713: HttpCookie.domainMatches("hostname.local", "hostname") should return true
chegar
parents: 9548
diff changeset
   660
        if (firstDotInHost == -1 &&
edde66d3118f 7023713: HttpCookie.domainMatches("hostname.local", "hostname") should return true
chegar
parents: 9548
diff changeset
   661
            (isLocalDomain ||
edde66d3118f 7023713: HttpCookie.domainMatches("hostname.local", "hostname") should return true
chegar
parents: 9548
diff changeset
   662
             domain.equalsIgnoreCase(host + ".local"))) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
            return true;
10352
edde66d3118f 7023713: HttpCookie.domainMatches("hostname.local", "hostname") should return true
chegar
parents: 9548
diff changeset
   664
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
        int domainLength = domain.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
        int lengthDiff = host.length() - domainLength;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
        if (lengthDiff == 0) {
52499
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 52427
diff changeset
   669
            // if the host name and the domain name are just string-compare equal
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
            return host.equalsIgnoreCase(domain);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
        else if (lengthDiff > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
            // need to check H & D component
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
            String H = host.substring(0, lengthDiff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
            String D = host.substring(lengthDiff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
            return (H.indexOf('.') == -1 && D.equalsIgnoreCase(domain));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
        else if (lengthDiff == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
            // if domain is actually .host
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
            return (domain.charAt(0) == '.' &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
                        host.equalsIgnoreCase(domain.substring(1)));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     * Constructs a cookie header string representation of this cookie,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     * which is in the format defined by corresponding cookie specification,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     * but without the leading "Cookie:" token.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     * @return  a string form of the cookie. The string has the defined format
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     */
480
c309ca1d3a86 6644726: Cookie management issues
jccollet
parents: 2
diff changeset
   695
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
        if (getVersion() > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
            return toRFC2965HeaderString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
            return toNetscapeHeaderString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
    /**
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   705
     * Test the equality of two HTTP cookies.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   707
     * <p> The result is {@code true} only if two cookies come from same domain
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   708
     * (case-insensitive), have same name (case-insensitive), and have same path
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   709
     * (case-sensitive).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   711
     * @return  {@code true} if two HTTP cookies equal to each other;
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   712
     *          otherwise, {@code false}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     */
480
c309ca1d3a86 6644726: Cookie management issues
jccollet
parents: 2
diff changeset
   714
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
    public boolean equals(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
        if (obj == this)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
        if (!(obj instanceof HttpCookie))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
        HttpCookie other = (HttpCookie)obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
        // One http cookie equals to another cookie (RFC 2965 sec. 3.3.3) if:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
        //   1. they come from same domain (case-insensitive),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
        //   2. have same name (case-insensitive),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
        //   3. and have same path (case-sensitive).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
        return equalsIgnoreCase(getName(), other.getName()) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
               equalsIgnoreCase(getDomain(), other.getDomain()) &&
9548
225dbdc1cb74 7041136: Use Objects.equals in JDK platform classes
darcy
parents: 7668
diff changeset
   728
               Objects.equals(getPath(), other.getPath());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
    /**
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   732
     * Returns the hash code of this HTTP cookie. The result is the sum of
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   733
     * hash code value of three significant components of this cookie: name,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   734
     * domain, and path. That is, the hash code is the value of the expression:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
     * getName().toLowerCase().hashCode()<br>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
     * + getDomain().toLowerCase().hashCode()<br>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
     * + getPath().hashCode()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   741
     * @return  this HTTP cookie's hash code
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
     */
480
c309ca1d3a86 6644726: Cookie management issues
jccollet
parents: 2
diff changeset
   743
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
        int h1 = name.toLowerCase().hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
        int h2 = (domain!=null) ? domain.toLowerCase().hashCode() : 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
        int h3 = (path!=null) ? path.hashCode() : 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
        return h1 + h2 + h3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
     * Create and return a copy of this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   755
     * @return  a clone of this HTTP cookie
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
     */
480
c309ca1d3a86 6644726: Cookie management issues
jccollet
parents: 2
diff changeset
   757
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
    public Object clone() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
            return super.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
        } catch (CloneNotSupportedException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
            throw new RuntimeException(e.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
    }
51724
8abb0fa2c334 8210311: IllegalArgumentException in CookieManager - Comparison method violates its general contract
michaelm
parents: 47216
diff changeset
   765
    // ---------------- Package private operations --------------
8abb0fa2c334 8210311: IllegalArgumentException in CookieManager - Comparison method violates its general contract
michaelm
parents: 47216
diff changeset
   766
8abb0fa2c334 8210311: IllegalArgumentException in CookieManager - Comparison method violates its general contract
michaelm
parents: 47216
diff changeset
   767
    long getCreationTime() {
8abb0fa2c334 8210311: IllegalArgumentException in CookieManager - Comparison method violates its general contract
michaelm
parents: 47216
diff changeset
   768
        return whenCreated;
8abb0fa2c334 8210311: IllegalArgumentException in CookieManager - Comparison method violates its general contract
michaelm
parents: 47216
diff changeset
   769
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   771
    // ---------------- Private operations --------------
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
    // Note -- disabled for now to allow full Netscape compatibility
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
    // from RFC 2068, token special case characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
    // private static final String tspecials = "()<>@,;:\\\"/[]?={} \t";
21346
793a4fec2332 8020758: HttpCookie constructor does not throw IAE when name contains a space
chegar
parents: 19069
diff changeset
   777
    private static final String tspecials = ",; ";  // deliberately includes space
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
    /*
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   780
     * Tests a string and returns true if the string counts as a token.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   782
     * @param  value
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   783
     *         the {@code String} to be tested
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   784
     *
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   785
     * @return  {@code true} if the {@code String} is a token;
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   786
     *          {@code false} if it is not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
    private static boolean isToken(String value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
        int len = value.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
        for (int i = 0; i < len; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
            char c = value.charAt(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
            if (c < 0x20 || c >= 0x7f || tspecials.indexOf(c) != -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
     * Parse header string to cookie object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   803
     * @param  header
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   804
     *         header string; should contain only one NAME=VALUE pair
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   806
     * @return  an HttpCookie being extracted
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   808
     * @throws  IllegalArgumentException
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   809
     *          if header string violates the cookie specification
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
     */
11284
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   811
    private static HttpCookie parseInternal(String header,
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   812
                                            boolean retainHeader)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
        HttpCookie cookie = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
        String namevaluePair = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
        StringTokenizer tokenizer = new StringTokenizer(header, ";");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
        // there should always have at least on name-value pair;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
        // it's cookie's name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
            namevaluePair = tokenizer.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
            int index = namevaluePair.indexOf('=');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
            if (index != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
                String name = namevaluePair.substring(0, index).trim();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
                String value = namevaluePair.substring(index + 1).trim();
11284
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   827
                if (retainHeader)
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   828
                    cookie = new HttpCookie(name,
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   829
                                            stripOffSurroundingQuote(value),
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   830
                                            header);
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   831
                else
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   832
                    cookie = new HttpCookie(name,
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   833
                                            stripOffSurroundingQuote(value));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
                // no "=" in name-value pair; it's an error
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
                throw new IllegalArgumentException("Invalid cookie name-value pair");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
        } catch (NoSuchElementException ignored) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
            throw new IllegalArgumentException("Empty cookie header string");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
        // remaining name-value pairs are cookie's attributes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
        while (tokenizer.hasMoreTokens()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
            namevaluePair = tokenizer.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
            int index = namevaluePair.indexOf('=');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
            String name, value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
            if (index != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
                name = namevaluePair.substring(0, index).trim();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
                value = namevaluePair.substring(index + 1).trim();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
                name = namevaluePair.trim();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
                value = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
            // assign attribute to cookie
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
            assignAttribute(cookie, name, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
        return cookie;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
     * assign cookie attribute value to attribute name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
     * use a map to simulate method dispatch
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
    static interface CookieAttributeAssignor {
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   867
            public void assign(HttpCookie cookie,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   868
                               String attrName,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   869
                               String attrValue);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
    }
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   871
    static final java.util.Map<String, CookieAttributeAssignor> assignors =
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   872
            new java.util.HashMap<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
    static {
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   874
        assignors.put("comment", new CookieAttributeAssignor() {
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   875
                public void assign(HttpCookie cookie,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   876
                                   String attrName,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   877
                                   String attrValue) {
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   878
                    if (cookie.getComment() == null)
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   879
                        cookie.setComment(attrValue);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
            });
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   882
        assignors.put("commenturl", new CookieAttributeAssignor() {
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   883
                public void assign(HttpCookie cookie,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   884
                                   String attrName,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   885
                                   String attrValue) {
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   886
                    if (cookie.getCommentURL() == null)
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   887
                        cookie.setCommentURL(attrValue);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
            });
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   890
        assignors.put("discard", new CookieAttributeAssignor() {
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   891
                public void assign(HttpCookie cookie,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   892
                                   String attrName,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   893
                                   String attrValue) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
                    cookie.setDiscard(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
        assignors.put("domain", new CookieAttributeAssignor(){
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   898
                public void assign(HttpCookie cookie,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   899
                                   String attrName,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   900
                                   String attrValue) {
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   901
                    if (cookie.getDomain() == null)
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   902
                        cookie.setDomain(attrValue);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
        assignors.put("max-age", new CookieAttributeAssignor(){
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   906
                public void assign(HttpCookie cookie,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   907
                                   String attrName,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   908
                                   String attrValue) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
                    try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
                        long maxage = Long.parseLong(attrValue);
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   911
                        if (cookie.getMaxAge() == MAX_AGE_UNSPECIFIED)
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   912
                            cookie.setMaxAge(maxage);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
                    } catch (NumberFormatException ignored) {
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   914
                        throw new IllegalArgumentException(
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   915
                                "Illegal cookie max-age attribute");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
        assignors.put("path", new CookieAttributeAssignor(){
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   920
                public void assign(HttpCookie cookie,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   921
                                   String attrName,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   922
                                   String attrValue) {
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   923
                    if (cookie.getPath() == null)
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   924
                        cookie.setPath(attrValue);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
        assignors.put("port", new CookieAttributeAssignor(){
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   928
                public void assign(HttpCookie cookie,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   929
                                   String attrName,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   930
                                   String attrValue) {
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   931
                    if (cookie.getPortlist() == null)
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   932
                        cookie.setPortlist(attrValue == null ? "" : attrValue);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
        assignors.put("secure", new CookieAttributeAssignor(){
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   936
                public void assign(HttpCookie cookie,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   937
                                   String attrName,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   938
                                   String attrValue) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
                    cookie.setSecure(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
            });
1234
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   942
        assignors.put("httponly", new CookieAttributeAssignor(){
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   943
                public void assign(HttpCookie cookie,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   944
                                   String attrName,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   945
                                   String attrValue) {
1234
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   946
                    cookie.setHttpOnly(true);
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   947
                }
e3dc213d4879 6692802: HttpCookie needs to support HttpOnly attribute
jccollet
parents: 715
diff changeset
   948
            });
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
        assignors.put("version", new CookieAttributeAssignor(){
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   950
                public void assign(HttpCookie cookie,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   951
                                   String attrName,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   952
                                   String attrValue) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
                    try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
                        int version = Integer.parseInt(attrValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
                        cookie.setVersion(version);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
                    } catch (NumberFormatException ignored) {
4324
5fd48b8b450b 6901170: HttpCookie parsing of version and max-age mis-handled
jccollet
parents: 1945
diff changeset
   957
                        // Just ignore bogus version, it will default to 0 or 1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
        assignors.put("expires", new CookieAttributeAssignor(){ // Netscape only
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   962
                public void assign(HttpCookie cookie,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   963
                                   String attrName,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   964
                                   String attrValue) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
                    if (cookie.getMaxAge() == MAX_AGE_UNSPECIFIED) {
40564
242110f0c920 8005068: HttpCookie does not correctly handle negative maxAge values
snikandrova
parents: 32834
diff changeset
   966
                        long delta = cookie.expiryDate2DeltaSeconds(attrValue);
242110f0c920 8005068: HttpCookie does not correctly handle negative maxAge values
snikandrova
parents: 32834
diff changeset
   967
                        cookie.setMaxAge(delta > 0 ? delta : 0);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
    private static void assignAttribute(HttpCookie cookie,
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   973
                                        String attrName,
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
   974
                                        String attrValue)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
        // strip off the surrounding "-sign if there's any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
        attrValue = stripOffSurroundingQuote(attrValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
        CookieAttributeAssignor assignor = assignors.get(attrName.toLowerCase());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
        if (assignor != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
            assignor.assign(cookie, attrName, attrValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
        } else {
1932
d3506bce7d27 6790677: java.net.HttpCookie.parse(String) should ignore unrecognized attributes, RFC2965
jccollet
parents: 1234
diff changeset
   983
            // Ignore the attribute as per RFC 2965
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
11284
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   987
    static {
32834
e1dca5fe4de3 8137056: Move SharedSecrets and interface friends out of sun.misc
chegar
parents: 32649
diff changeset
   988
        SharedSecrets.setJavaNetHttpCookieAccess(
e1dca5fe4de3 8137056: Move SharedSecrets and interface friends out of sun.misc
chegar
parents: 32649
diff changeset
   989
            new JavaNetHttpCookieAccess() {
11284
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   990
                public List<HttpCookie> parse(String header) {
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   991
                    return HttpCookie.parse(header, true);
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   992
                }
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   993
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   994
                public String header(HttpCookie cookie) {
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   995
                    return cookie.header;
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   996
                }
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   997
            }
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   998
        );
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
   999
    }
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
  1000
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
  1001
    /*
23927
225d01ae6469 8038821: Fix typos in java.net
chegar
parents: 21346
diff changeset
  1002
     * Returns the original header this cookie was constructed from, if it was
11284
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
  1003
     * constructed by parsing a header, otherwise null.
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
  1004
     */
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
  1005
    private String header() {
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
  1006
        return header;
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
  1007
    }
2750cfd2352c 7095980: Ensure HttpURLConnection (and supporting APIs) don't expose HttpOnly cookies
chegar
parents: 11105
diff changeset
  1008
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
     * Constructs a string representation of this cookie. The string format is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
     * as Netscape spec, but without leading "Cookie:" token.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
    private String toNetscapeHeaderString() {
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
  1014
        return getName() + "=" + getValue();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
     * Constructs a string representation of this cookie. The string format is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
     * as RFC 2965/2109, but without leading "Cookie:" token.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
    private String toRFC2965HeaderString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
        StringBuilder sb = new StringBuilder();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
        sb.append(getName()).append("=\"").append(getValue()).append('"');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
        if (getPath() != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
            sb.append(";$Path=\"").append(getPath()).append('"');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
        if (getDomain() != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
            sb.append(";$Domain=\"").append(getDomain()).append('"');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
        if (getPortlist() != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
            sb.append(";$Port=\"").append(getPortlist()).append('"');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
        return sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
6317
8046f5f96da1 6965924: java.net.HttpCookie using static SimpleDateFormat which is not thread safe
chegar
parents: 5506
diff changeset
  1035
    static final TimeZone GMT = TimeZone.getTimeZone("GMT");
8046f5f96da1 6965924: java.net.HttpCookie using static SimpleDateFormat which is not thread safe
chegar
parents: 5506
diff changeset
  1036
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
    /*
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
  1038
     * @param  dateString
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
  1039
     *         a date string in one of the formats defined in Netscape cookie spec
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
  1041
     * @return  delta seconds between this cookie's creation time and the time
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
  1042
     *          specified by dateString
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
    private long expiryDate2DeltaSeconds(String dateString) {
14787
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
  1045
        Calendar cal = new GregorianCalendar(GMT);
6317
8046f5f96da1 6965924: java.net.HttpCookie using static SimpleDateFormat which is not thread safe
chegar
parents: 5506
diff changeset
  1046
        for (int i = 0; i < COOKIE_DATE_FORMATS.length; i++) {
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
  1047
            SimpleDateFormat df = new SimpleDateFormat(COOKIE_DATE_FORMATS[i],
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
  1048
                                                       Locale.US);
14787
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
  1049
            cal.set(1970, 0, 1, 0, 0, 0);
6317
8046f5f96da1 6965924: java.net.HttpCookie using static SimpleDateFormat which is not thread safe
chegar
parents: 5506
diff changeset
  1050
            df.setTimeZone(GMT);
14787
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
  1051
            df.setLenient(false);
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
  1052
            df.set2DigitYearStart(cal.getTime());
480
c309ca1d3a86 6644726: Cookie management issues
jccollet
parents: 2
diff changeset
  1053
            try {
14787
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
  1054
                cal.setTime(df.parse(dateString));
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
  1055
                if (!COOKIE_DATE_FORMATS[i].contains("yyyy")) {
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
  1056
                    // 2-digit years following the standard set
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
  1057
                    // out it rfc 6265
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
  1058
                    int year = cal.get(Calendar.YEAR);
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
  1059
                    year %= 100;
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
  1060
                    if (year < 70) {
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
  1061
                        year += 2000;
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
  1062
                    } else {
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
  1063
                        year += 1900;
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
  1064
                    }
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
  1065
                    cal.set(Calendar.YEAR, year);
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
  1066
                }
54eb3f090934 8000525: Java.net.httpcookie api does not support 2-digit year format
robm
parents: 13259
diff changeset
  1067
                return (cal.getTimeInMillis() - whenCreated) / 1000;
480
c309ca1d3a86 6644726: Cookie management issues
jccollet
parents: 2
diff changeset
  1068
            } catch (Exception e) {
6317
8046f5f96da1 6965924: java.net.HttpCookie using static SimpleDateFormat which is not thread safe
chegar
parents: 5506
diff changeset
  1069
                // Ignore, try the next date format
480
c309ca1d3a86 6644726: Cookie management issues
jccollet
parents: 2
diff changeset
  1070
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
        }
480
c309ca1d3a86 6644726: Cookie management issues
jccollet
parents: 2
diff changeset
  1072
        return 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
     * try to guess the cookie version through set-cookie header string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
    private static int guessCookieVersion(String header) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
        int version = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
        header = header.toLowerCase();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
        if (header.indexOf("expires=") != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
            // only netscape cookie using 'expires'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
            version = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
        } else if (header.indexOf("version=") != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
            // version is mandatory for rfc 2965/2109 cookie
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
            version = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
        } else if (header.indexOf("max-age") != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
            // rfc 2965/2109 use 'max-age'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
            version = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
        } else if (startsWithIgnoreCase(header, SET_COOKIE2)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
            // only rfc 2965 cookie starts with 'set-cookie2'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
            version = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
        return version;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
    private static String stripOffSurroundingQuote(String str) {
4324
5fd48b8b450b 6901170: HttpCookie parsing of version and max-age mis-handled
jccollet
parents: 1945
diff changeset
  1100
        if (str != null && str.length() > 2 &&
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
            str.charAt(0) == '"' && str.charAt(str.length() - 1) == '"') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
            return str.substring(1, str.length() - 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
        }
4324
5fd48b8b450b 6901170: HttpCookie parsing of version and max-age mis-handled
jccollet
parents: 1945
diff changeset
  1104
        if (str != null && str.length() > 2 &&
5fd48b8b450b 6901170: HttpCookie parsing of version and max-age mis-handled
jccollet
parents: 1945
diff changeset
  1105
            str.charAt(0) == '\'' && str.charAt(str.length() - 1) == '\'') {
5fd48b8b450b 6901170: HttpCookie parsing of version and max-age mis-handled
jccollet
parents: 1945
diff changeset
  1106
            return str.substring(1, str.length() - 1);
5fd48b8b450b 6901170: HttpCookie parsing of version and max-age mis-handled
jccollet
parents: 1945
diff changeset
  1107
        }
5fd48b8b450b 6901170: HttpCookie parsing of version and max-age mis-handled
jccollet
parents: 1945
diff changeset
  1108
        return str;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
    private static boolean equalsIgnoreCase(String s, String t) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
        if (s == t) return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
        if ((s != null) && (t != null)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
            return s.equalsIgnoreCase(t);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
    private static boolean startsWithIgnoreCase(String s, String start) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
        if (s == null || start == null) return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
        if (s.length() >= start.length() &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
                start.equalsIgnoreCase(s.substring(0, start.length()))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
     * Split cookie header string according to rfc 2965:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
     *   1) split where it is a comma;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
     *   2) but not the comma surrounding by double-quotes, which is the comma
52499
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 52427
diff changeset
  1134
     *      inside port list or embedded URIs.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
  1136
     * @param  header
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
  1137
     *         the cookie header string to split
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
     *
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
  1139
     * @return  list of strings; never null
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
    private static List<String> splitMultiCookies(String header) {
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 25859
diff changeset
  1142
        List<String> cookies = new java.util.ArrayList<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
        int quoteCount = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
        int p, q;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
        for (p = 0, q = 0; p < header.length(); p++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
            char c = header.charAt(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
            if (c == '"') quoteCount++;
11105
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
  1149
            if (c == ',' && (quoteCount % 2 == 0)) {
4dcb5baa61f3 7115150: java.net.HttpCookie code cleanup, style, formatting, typos
chegar
parents: 10352
diff changeset
  1150
                // it is comma and not surrounding by double-quotes
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
                cookies.add(header.substring(q, p));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
                q = p + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
        cookies.add(header.substring(q));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
        return cookies;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
}