src/java.base/share/classes/java/lang/InheritableThreadLocal.java
author darcy
Mon, 09 Sep 2019 10:13:42 -0700
changeset 58054 ee230ad8cfef
parent 47216 71c04702a3d5
permissions -rw-r--r--
8230723: Remove default constructors from java.lang and java.io Reviewed-by: bpb, rriggs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
58054
ee230ad8cfef 8230723: Remove default constructors from java.lang and java.io
darcy
parents: 47216
diff changeset
     2
 * Copyright (c) 1998, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.lang;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.lang.ref.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
/**
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
    30
 * This class extends {@code ThreadLocal} to provide inheritance of values
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * from parent thread to child thread: when a child thread is created, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * child receives initial values for all inheritable thread-local variables
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * for which the parent has values.  Normally the child's values will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * identical to the parent's; however, the child's value can be made an
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
    35
 * arbitrary function of the parent's by overriding the {@code childValue}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * method in this class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * <p>Inheritable thread-local variables are used in preference to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * ordinary thread-local variables when the per-thread-attribute being
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * maintained in the variable (e.g., User ID, Transaction ID) must be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * automatically transmitted to any child threads that are created.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 *
34716
7477a052aecc 8056152: API to create Threads that do not inherit inheritable thread-local initial values
chegar
parents: 32033
diff changeset
    43
 * <p>Note: During the creation of a new {@link
7477a052aecc 8056152: API to create Threads that do not inherit inheritable thread-local initial values
chegar
parents: 32033
diff changeset
    44
 * Thread#Thread(ThreadGroup,Runnable,String,long,boolean) thread}, it is
7477a052aecc 8056152: API to create Threads that do not inherit inheritable thread-local initial values
chegar
parents: 32033
diff changeset
    45
 * possible to <i>opt out</i> of receiving initial values for inheritable
7477a052aecc 8056152: API to create Threads that do not inherit inheritable thread-local initial values
chegar
parents: 32033
diff changeset
    46
 * thread-local variables.
7477a052aecc 8056152: API to create Threads that do not inherit inheritable thread-local initial values
chegar
parents: 32033
diff changeset
    47
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * @author  Josh Bloch and Doug Lea
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * @see     ThreadLocal
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * @since   1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
public class InheritableThreadLocal<T> extends ThreadLocal<T> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    /**
58054
ee230ad8cfef 8230723: Remove default constructors from java.lang and java.io
darcy
parents: 47216
diff changeset
    55
     * Creates an inheritable thread local variable.
ee230ad8cfef 8230723: Remove default constructors from java.lang and java.io
darcy
parents: 47216
diff changeset
    56
     */
ee230ad8cfef 8230723: Remove default constructors from java.lang and java.io
darcy
parents: 47216
diff changeset
    57
    public InheritableThreadLocal() {}
ee230ad8cfef 8230723: Remove default constructors from java.lang and java.io
darcy
parents: 47216
diff changeset
    58
ee230ad8cfef 8230723: Remove default constructors from java.lang and java.io
darcy
parents: 47216
diff changeset
    59
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     * Computes the child's initial value for this inheritable thread-local
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * variable as a function of the parent's value at the time the child
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * thread is created.  This method is called from within the parent
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * thread before the child is started.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * This method merely returns its input argument, and should be overridden
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * if a different behavior is desired.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * @param parentValue the parent thread's value
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * @return the child thread's initial value
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    protected T childValue(T parentValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        return parentValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * Get the map associated with a ThreadLocal.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * @param t the current thread
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    ThreadLocalMap getMap(Thread t) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
       return t.inheritableThreadLocals;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * Create the map associated with a ThreadLocal.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * @param t the current thread
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * @param firstValue value for the initial entry of the table.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    void createMap(Thread t, T firstValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        t.inheritableThreadLocals = new ThreadLocalMap(this, firstValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
}