Skip to content

Commit 75ebbed

Browse files
author
Leonid Mesnik
committedApr 11, 2023
jtreg thread factory plugin updated.
1 parent 28bc5c7 commit 75ebbed

File tree

5 files changed

+10
-51
lines changed

5 files changed

+10
-51
lines changed
 

‎make/Main.gmk

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2011, 2022, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2011, 2023, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -752,7 +752,7 @@ ifeq ($(BUILD_JTREG_TEST_THREAD_FACTORY), true)
752752
$(eval $(call SetupTarget, build-test-test-thread-factory, \
753753
MAKEFILE := test/BuildJtregTestThreadFactory, \
754754
TARGET := build, \
755-
DEPS := interim-langtools, \
755+
DEPS := interim-langtools exploded-image, \
756756
))
757757

758758
# Copies the jtreg test thread factory into the test image

‎make/RunTests.gmk

+3-1
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,9 @@ define SetupRunJtregTestBody
772772
ifneq ($$(JTREG_TEST_THREAD_FACTORY), )
773773
$1_JTREG_BASIC_OPTIONS += -testThreadFactoryPath:$$(JTREG_TEST_THREAD_FACTORY_JAR)
774774
$1_JTREG_BASIC_OPTIONS += -testThreadFactory:$$(JTREG_TEST_THREAD_FACTORY)
775-
$1_JTREG_BASIC_OPTIONS += -exclude:$$(addprefix $$($1_TEST_ROOT)/, ProblemList-$$(JTREG_TEST_THREAD_FACTORY).txt)
775+
$1_JTREG_BASIC_OPTIONS += $$(addprefix $$(JTREG_PROBLEM_LIST_PREFIX), $$(wildcard \
776+
$$(addprefix $$($1_TEST_ROOT)/, ProblemList-$$(JTREG_TEST_THREAD_FACTORY).txt) \
777+
))
776778
endif
777779

778780
ifneq ($$(JTREG_LAUNCHER_OPTIONS), )

‎make/autoconf/spec.gmk.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2011, 2022, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2011, 2023, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it

‎make/test/BuildJtregTestThreadFactory.gmk

+1-3
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,10 @@ TTF_BASEDIR := $(TOPDIR)/test/jtreg_test_thread_factory
3737
TTF_SUPPORT := $(SUPPORT_OUTPUTDIR)/test/jtreg_test_thread_factory
3838
TTF_JAR := $(TTF_SUPPORT)/jtregTestThreadFactory.jar
3939

40-
TTF_CLASSPATH := $(JTREG_JAR)
41-
4240
$(eval $(call SetupJavaCompilation, BUILD_JTREG_TEST_THREAD_FACTORY, \
41+
TARGET_RELEASE := $(TARGET_RELEASE_NEWJDK_UPGRADED), \
4342
SRC := $(TTF_BASEDIR)/src/share/classes, \
4443
BIN := $(TTF_SUPPORT)/classes, \
45-
DISABLED_WARNINGS := preview, \
4644
JAR := $(TTF_JAR), \
4745
))
4846

Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
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.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,70 +23,29 @@
2323
* questions.
2424
*/
2525

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;
3126
import java.util.concurrent.ThreadFactory;
3227

3328
public class Virtual implements ThreadFactory {
3429

3530
static {
3631
// This property is used by ProcessTools and some tests
37-
// Should be set for all tests
3832
try {
3933
System.setProperty("main.wrapper", "Virtual");
4034
} catch (Throwable t) {
41-
// Might be securty-related exceptions
35+
// might be thrown by security manager
4236
}
4337
}
4438

45-
private ThreadFactory factory;
46-
4739
public Virtual() {
48-
try {
49-
factory = VirtualAPI.factory();
50-
} catch (Throwable t) {
51-
factory = task -> new Thread(task);
52-
}
5340
}
5441

5542

5643
@Override
5744
public Thread newThread(Runnable task) {
5845
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);
8247
} catch (Throwable t) {
8348
throw new RuntimeException(t);
8449
}
8550
}
86-
87-
private static VirtualAPI instance = new VirtualAPI();
88-
89-
public static ThreadFactory factory() {
90-
return instance.virtualThreadFactory;
91-
}
9251
}

0 commit comments

Comments
 (0)
Please sign in to comment.