1
1
/*
2
- * Copyright (c) 2019, 2021 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2019, 2024 , 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
22
22
*/
23
23
package jdk .jpackage .test ;
24
24
25
+ import java .io .PrintWriter ;
25
26
import java .lang .reflect .InvocationTargetException ;
26
27
import java .lang .reflect .Method ;
27
28
import java .util .Collections ;
28
29
import java .util .Optional ;
29
30
import java .util .Set ;
31
+ import java .util .concurrent .atomic .AtomicBoolean ;
30
32
import java .util .stream .Collectors ;
31
33
import java .util .stream .Stream ;
34
+ import jdk .jpackage .internal .Log ;
32
35
33
36
/**
34
37
* jpackage type traits.
@@ -91,7 +94,7 @@ static PackageType fromSuffix(String packageFilename) {
91
94
return null ;
92
95
}
93
96
94
- private static boolean isBundlerSupported (String bundlerClass ) {
97
+ private static boolean isBundlerSupportedImpl (String bundlerClass ) {
95
98
try {
96
99
Class clazz = Class .forName (bundlerClass );
97
100
Method supported = clazz .getMethod ("supported" , boolean .class );
@@ -105,6 +108,30 @@ private static boolean isBundlerSupported(String bundlerClass) {
105
108
return false ;
106
109
}
107
110
111
+ private static boolean isBundlerSupported (String bundlerClass ) {
112
+ AtomicBoolean reply = new AtomicBoolean ();
113
+ try {
114
+ // Capture jpackage's activity on configuring bundlers.
115
+ // Log configuration is thread-local.
116
+ // Call Log.setPrintWriter and Log.setVerbose in a separate
117
+ // thread to keep the main log configuration intact.
118
+ var thread = new Thread (() -> {
119
+ Log .setPrintWriter (new PrintWriter (System .out ), new PrintWriter (System .err ));
120
+ Log .setVerbose ();
121
+ try {
122
+ reply .set (isBundlerSupportedImpl (bundlerClass ));
123
+ } finally {
124
+ Log .flush ();
125
+ }
126
+ });
127
+ thread .run ();
128
+ thread .join ();
129
+ } catch (InterruptedException ex ) {
130
+ Functional .rethrowUnchecked (ex );
131
+ }
132
+ return reply .get ();
133
+ }
134
+
108
135
private final String name ;
109
136
private final String suffix ;
110
137
private final boolean supported ;
0 commit comments