244f6ac222
Reviewed-by: sspitsyn, cjplummer
81 lines
2.8 KiB
Java
81 lines
2.8 KiB
Java
/*
|
|
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
* accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU General Public License version
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
* questions.
|
|
*/
|
|
|
|
package nsk.share;
|
|
|
|
import java.lang.reflect.InvocationTargetException;
|
|
import java.lang.reflect.Method;
|
|
import java.util.concurrent.atomic.AtomicReference;
|
|
|
|
|
|
public final class MainWrapper {
|
|
public static final String OLD_MAIN_THREAD_NAME = "old-m-a-i-n";
|
|
|
|
static AtomicReference<Throwable> ue = new AtomicReference<>();
|
|
public MainWrapper() {
|
|
}
|
|
|
|
public static void main(String[] args) throws Throwable {
|
|
String wrapperName = args[0];
|
|
String className = args[1];
|
|
String[] classArgs = new String[args.length - 2];
|
|
System.arraycopy(args, 2, classArgs, 0, args.length - 2);
|
|
|
|
// Some tests use this property to understand if virtual threads are used
|
|
System.setProperty("test.thread.factory", wrapperName);
|
|
|
|
Runnable task = () -> {
|
|
try {
|
|
Class<?> c = Class.forName(className);
|
|
Method mainMethod = c.getMethod("main", new Class[] { String[].class });
|
|
mainMethod.setAccessible(true);
|
|
mainMethod.invoke(null, new Object[] { classArgs });
|
|
} catch (InvocationTargetException e) {
|
|
e.printStackTrace();
|
|
ue.set(e.getCause());
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
};
|
|
|
|
Thread t;
|
|
if (wrapperName.equals("Virtual")) {
|
|
t = unstartedVirtualThread(task);
|
|
} else {
|
|
t = new Thread(task);
|
|
}
|
|
t.setName("main");
|
|
Thread.currentThread().setName(OLD_MAIN_THREAD_NAME);
|
|
t.start();
|
|
t.join();
|
|
if (ue.get() != null) {
|
|
throw ue.get();
|
|
}
|
|
}
|
|
|
|
static Thread unstartedVirtualThread(Runnable task) {
|
|
return Thread.ofVirtual().unstarted(task);
|
|
}
|
|
|
|
}
|