|
| 1 | +/* |
| 2 | + * Copyright (c) 2021, 2022, Oracle and/or its affiliates. All rights reserved. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 5 | + * This code is free software; you can redistribute it and/or modify it |
| 6 | + * under the terms of the GNU General Public License version 2 only, as |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + */ |
| 23 | + |
| 24 | +/* |
| 25 | + * @test |
| 26 | + * @summary Test ThreadFlock with scope locals |
| 27 | + * @modules java.base/jdk.internal.misc |
| 28 | + * @modules jdk.incubator.concurrent |
| 29 | + * @compile --enable-preview -source ${jdk.version} ScopeLocalsTest.java |
| 30 | + * @run testng/othervm --enable-preview ScopeLocalsTest |
| 31 | + */ |
| 32 | + |
| 33 | +import java.util.*; |
| 34 | +import java.util.concurrent.*; |
| 35 | +import java.util.concurrent.atomic.AtomicReference; |
| 36 | +import jdk.internal.misc.ThreadFlock; |
| 37 | +import jdk.incubator.concurrent.ScopeLocal; |
| 38 | +import jdk.incubator.concurrent.StructureViolationException; |
| 39 | + |
| 40 | +import org.testng.annotations.DataProvider; |
| 41 | +import org.testng.annotations.Test; |
| 42 | +import static org.testng.Assert.*; |
| 43 | + |
| 44 | +@Test |
| 45 | +public class ScopeLocalsTest { |
| 46 | + |
| 47 | + @DataProvider(name = "factories") |
| 48 | + public Object[][] factories() { |
| 49 | + var defaultThreadFactory = Executors.defaultThreadFactory(); |
| 50 | + var virtualThreadFactory = Thread.ofVirtual().factory(); |
| 51 | + return new Object[][]{ |
| 52 | + { defaultThreadFactory, }, |
| 53 | + { virtualThreadFactory, }, |
| 54 | + }; |
| 55 | + } |
| 56 | + |
| 57 | + /** |
| 58 | + * Test inheritance of scope-local bindings. |
| 59 | + */ |
| 60 | + @Test(dataProvider = "factories") |
| 61 | + public void testInheritsScopeLocals(ThreadFactory factory) throws Exception { |
| 62 | + ScopeLocal<String> NAME = ScopeLocal.newInstance(); |
| 63 | + String value = ScopeLocal.where(NAME, "fred").call(() -> { |
| 64 | + var result = new AtomicReference<String>(); |
| 65 | + try (var flock = ThreadFlock.open(null)) { |
| 66 | + Thread thread = factory.newThread(() -> { |
| 67 | + // child |
| 68 | + result.set(NAME.get()); |
| 69 | + }); |
| 70 | + flock.start(thread); |
| 71 | + } |
| 72 | + return result.get(); |
| 73 | + }); |
| 74 | + assertEquals(value, "fred"); |
| 75 | + } |
| 76 | + |
| 77 | + /** |
| 78 | + * Test exiting a scope local operation should close nested thread flocks. |
| 79 | + */ |
| 80 | + public void testStructureViolation1() { |
| 81 | + ScopeLocal<String> name = ScopeLocal.newInstance(); |
| 82 | + class Box { |
| 83 | + ThreadFlock flock1; |
| 84 | + ThreadFlock flock2; |
| 85 | + } |
| 86 | + var box = new Box(); |
| 87 | + try { |
| 88 | + ScopeLocal.where(name, "x1").run(() -> { |
| 89 | + box.flock1 = ThreadFlock.open(null); |
| 90 | + box.flock2 = ThreadFlock.open(null); |
| 91 | + }); |
| 92 | + assertTrue(false); |
| 93 | + } catch (StructureViolationException expected) { } |
| 94 | + assertTrue(box.flock1.isClosed()); |
| 95 | + assertTrue(box.flock2.isClosed()); |
| 96 | + } |
| 97 | + |
| 98 | + /** |
| 99 | + * Test closing a thread flock with enclosing scope local operations and |
| 100 | + * thread flocks. This test closes enclosing flock1. |
| 101 | + */ |
| 102 | + public void testStructureViolation2() { |
| 103 | + ScopeLocal<String> name = ScopeLocal.newInstance(); |
| 104 | + try (var flock1 = ThreadFlock.open("flock1")) { |
| 105 | + ScopeLocal.where(name, "x1").run(() -> { |
| 106 | + try (var flock2 = ThreadFlock.open("flock2")) { |
| 107 | + ScopeLocal.where(name, "x2").run(() -> { |
| 108 | + try (var flock3 = ThreadFlock.open("flock3")) { |
| 109 | + ScopeLocal.where(name, "x3").run(() -> { |
| 110 | + var flock4 = ThreadFlock.open("flock4"); |
| 111 | + |
| 112 | + try { |
| 113 | + flock1.close(); |
| 114 | + assertTrue(false); |
| 115 | + } catch (StructureViolationException expected) { } |
| 116 | + |
| 117 | + assertTrue(flock1.isClosed()); |
| 118 | + assertTrue(flock2.isClosed()); |
| 119 | + assertTrue(flock3.isClosed()); |
| 120 | + assertTrue(flock4.isClosed()); |
| 121 | + |
| 122 | + }); |
| 123 | + } |
| 124 | + }); |
| 125 | + } |
| 126 | + }); |
| 127 | + } |
| 128 | + } |
| 129 | + |
| 130 | + /** |
| 131 | + * Test closing a thread flock with enclosing scope local operations and |
| 132 | + * thread flocks. This test closes enclosing flock2. |
| 133 | + */ |
| 134 | + public void testStructureViolation3() { |
| 135 | + ScopeLocal<String> name = ScopeLocal.newInstance(); |
| 136 | + try (var flock1 = ThreadFlock.open("flock1")) { |
| 137 | + ScopeLocal.where(name, "x1").run(() -> { |
| 138 | + try (var flock2 = ThreadFlock.open("flock2")) { |
| 139 | + ScopeLocal.where(name, "x2").run(() -> { |
| 140 | + try (var flock3 = ThreadFlock.open("flock3")) { |
| 141 | + ScopeLocal.where(name, "x3").run(() -> { |
| 142 | + var flock4 = ThreadFlock.open("flock4"); |
| 143 | + |
| 144 | + try { |
| 145 | + flock2.close(); |
| 146 | + assertTrue(false); |
| 147 | + } catch (StructureViolationException expected) { } |
| 148 | + |
| 149 | + assertFalse(flock1.isClosed()); |
| 150 | + assertTrue(flock2.isClosed()); |
| 151 | + assertTrue(flock3.isClosed()); |
| 152 | + assertTrue(flock4.isClosed()); |
| 153 | + }); |
| 154 | + } |
| 155 | + }); |
| 156 | + } |
| 157 | + }); |
| 158 | + } |
| 159 | + } |
| 160 | + |
| 161 | + /** |
| 162 | + * Test closing a thread flock with enclosing scope local operations and |
| 163 | + * thread flocks. This test closes enclosing flock3. |
| 164 | + */ |
| 165 | + public void testStructureViolation4() { |
| 166 | + ScopeLocal<String> name = ScopeLocal.newInstance(); |
| 167 | + try (var flock1 = ThreadFlock.open("flock1")) { |
| 168 | + ScopeLocal.where(name, "x1").run(() -> { |
| 169 | + try (var flock2 = ThreadFlock.open("flock2")) { |
| 170 | + ScopeLocal.where(name, "x2").run(() -> { |
| 171 | + try (var flock3 = ThreadFlock.open("flock3")) { |
| 172 | + ScopeLocal.where(name, "x3").run(() -> { |
| 173 | + var flock4 = ThreadFlock.open("flock4"); |
| 174 | + |
| 175 | + try { |
| 176 | + flock3.close(); |
| 177 | + assertTrue(false); |
| 178 | + } catch (StructureViolationException expected) { } |
| 179 | + |
| 180 | + assertFalse(flock1.isClosed()); |
| 181 | + assertFalse(flock2.isClosed()); |
| 182 | + assertTrue(flock3.isClosed()); |
| 183 | + assertTrue(flock4.isClosed()); |
| 184 | + }); |
| 185 | + } |
| 186 | + }); |
| 187 | + } |
| 188 | + }); |
| 189 | + } |
| 190 | + } |
| 191 | + |
| 192 | + /** |
| 193 | + * Test that start throws StructureViolationException if scope-local bindings |
| 194 | + * have changed. |
| 195 | + */ |
| 196 | + @Test(dataProvider = "factories") |
| 197 | + public void testStructureViolation5(ThreadFactory factory) throws Exception { |
| 198 | + ScopeLocal<String> NAME = ScopeLocal.newInstance(); |
| 199 | + try (var flock = ThreadFlock.open(null)) { |
| 200 | + ScopeLocal.where(NAME, "fred").run(() -> { |
| 201 | + Thread thread = factory.newThread(() -> { }); |
| 202 | + expectThrows(StructureViolationException.class, () -> flock.start(thread)); |
| 203 | + }); |
| 204 | + } |
| 205 | + } |
| 206 | +} |
0 commit comments