|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2022, 2023, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
|
23 | 23 | * questions.
|
24 | 24 | */
|
25 | 25 |
|
26 |
| -import java.lang.invoke.MethodHandle; |
27 |
| -import java.lang.invoke.MethodHandles; |
28 |
| -import java.lang.invoke.MethodType; |
29 |
| -import java.util.ArrayList; |
30 |
| -import java.util.List; |
31 | 26 | import java.util.concurrent.ThreadFactory;
|
32 | 27 |
|
33 | 28 | public class Virtual implements ThreadFactory {
|
34 | 29 |
|
35 | 30 | static {
|
36 | 31 | // This property is used by ProcessTools and some tests
|
37 |
| - // Should be set for all tests |
38 | 32 | try {
|
39 | 33 | System.setProperty("main.wrapper", "Virtual");
|
40 | 34 | } catch (Throwable t) {
|
41 |
| - // Might be securty-related exceptions |
| 35 | + // might be thrown by security manager |
42 | 36 | }
|
43 | 37 | }
|
44 | 38 |
|
45 |
| - private ThreadFactory factory; |
46 |
| - |
47 | 39 | public Virtual() {
|
48 |
| - try { |
49 |
| - factory = VirtualAPI.factory(); |
50 |
| - } catch (Throwable t) { |
51 |
| - factory = task -> new Thread(task); |
52 |
| - } |
53 | 40 | }
|
54 | 41 |
|
55 | 42 |
|
56 | 43 | @Override
|
57 | 44 | public Thread newThread(Runnable task) {
|
58 | 45 | try {
|
59 |
| - return factory.newThread(task); |
60 |
| - } catch (Throwable t) { |
61 |
| - throw new RuntimeException(t); |
62 |
| - } |
63 |
| - } |
64 |
| -} |
65 |
| - |
66 |
| -class VirtualAPI { |
67 |
| - |
68 |
| - private MethodHandles.Lookup publicLookup = MethodHandles.publicLookup(); |
69 |
| - |
70 |
| - private ThreadFactory virtualThreadFactory; |
71 |
| - |
72 |
| - |
73 |
| - VirtualAPI() { |
74 |
| - try { |
75 |
| - Class<?> vbuilderClass = Class.forName("java.lang.Thread$Builder$OfVirtual"); |
76 |
| - MethodType vofMT = MethodType.methodType(vbuilderClass); |
77 |
| - MethodHandle ofVirtualMH = publicLookup.findStatic(Thread.class, "ofVirtual", vofMT); |
78 |
| - Object virtualBuilder = ofVirtualMH.invoke(); |
79 |
| - MethodType factoryMT = MethodType.methodType(ThreadFactory.class); |
80 |
| - MethodHandle vfactoryMH = publicLookup.findVirtual(vbuilderClass, "factory", factoryMT); |
81 |
| - virtualThreadFactory = (ThreadFactory) vfactoryMH.invoke(virtualBuilder); |
| 46 | + return Thread.ofVirtual().factory().newThread(task); |
82 | 47 | } catch (Throwable t) {
|
83 | 48 | throw new RuntimeException(t);
|
84 | 49 | }
|
85 | 50 | }
|
86 |
| - |
87 |
| - private static VirtualAPI instance = new VirtualAPI(); |
88 |
| - |
89 |
| - public static ThreadFactory factory() { |
90 |
| - return instance.virtualThreadFactory; |
91 |
| - } |
92 | 51 | }
|
0 commit comments