Skip to content

Commit 9dfe91d

Browse files
[MSHARED-1359] Optimize classloader in BeanShellScriptInterpreter
1 parent 5f1df6e commit 9dfe91d

File tree

2 files changed

+17
-13
lines changed

2 files changed

+17
-13
lines changed

src/main/java/org/apache/maven/shared/scriptinterpreter/BeanShellScriptInterpreter.java

+13-3
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,26 @@
4040
*/
4141
class BeanShellScriptInterpreter implements ScriptInterpreter {
4242

43-
private URLClassLoader classLoader;
43+
private static class AppendableURLClassLoader extends URLClassLoader {
44+
AppendableURLClassLoader() {
45+
super(new URL[] {}, Thread.currentThread().getContextClassLoader());
46+
}
47+
48+
@Override
49+
public void addURL(URL url) {
50+
super.addURL(url);
51+
}
52+
}
53+
54+
private final AppendableURLClassLoader classLoader = new AppendableURLClassLoader();
4455

4556
@Override
4657
public void setClassPath(List<String> classPath) {
4758
if (classPath == null || classPath.isEmpty()) {
4859
return;
4960
}
5061

51-
URL[] urls = classPath.stream().map(this::toUrl).toArray(URL[]::new);
52-
classLoader = new URLClassLoader(urls, Thread.currentThread().getContextClassLoader());
62+
classPath.stream().map(this::toUrl).forEach(classLoader::addURL);
5363
}
5464

5565
private URL toUrl(String path) {

src/main/java/org/apache/maven/shared/scriptinterpreter/ScriptRunner.java

+4-10
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
import java.io.IOException;
2424
import java.io.PrintStream;
2525
import java.nio.file.Files;
26-
import java.util.ArrayList;
2726
import java.util.HashMap;
2827
import java.util.LinkedHashMap;
2928
import java.util.List;
@@ -54,11 +53,6 @@ public class ScriptRunner implements Closeable {
5453
*/
5554
private Map<String, Object> globalVariables;
5655

57-
/**
58-
* The additional class path for the script interpreter, never <code>null</code>.
59-
*/
60-
private List<String> classPath;
61-
6256
/**
6357
* The file encoding of the hook scripts or <code>null</code> to use platform encoding.
6458
*/
@@ -72,7 +66,6 @@ public ScriptRunner() {
7266
scriptInterpreters.put("bsh", new BeanShellScriptInterpreter());
7367
scriptInterpreters.put("groovy", new GroovyScriptInterpreter());
7468
globalVariables = new HashMap<>();
75-
classPath = new ArrayList<>();
7669
}
7770

7871
/**
@@ -104,7 +97,9 @@ public void setGlobalVariable(String name, Object value) {
10497
* artifacts from the plugin class path.
10598
*/
10699
public void setClassPath(List<String> classPath) {
107-
this.classPath = (classPath != null) ? new ArrayList<>(classPath) : new ArrayList<>();
100+
if (classPath != null && !classPath.isEmpty()) {
101+
scriptInterpreters.values().forEach(scriptInterpreter -> scriptInterpreter.setClassPath(classPath));
102+
}
108103
}
109104

110105
/**
@@ -114,7 +109,7 @@ public void setClassPath(List<String> classPath) {
114109
* default encoding.
115110
*/
116111
public void setScriptEncoding(String encoding) {
117-
this.encoding = (encoding != null && encoding.length() > 0) ? encoding : null;
112+
this.encoding = (encoding != null && !encoding.isEmpty()) ? encoding : null;
118113
}
119114

120115
/**
@@ -221,7 +216,6 @@ private void executeRun(
221216
scriptVariables.put("basedir", scriptFile.getParentFile());
222217
scriptVariables.put("context", context);
223218

224-
interpreter.setClassPath(classPath);
225219
result = interpreter.evaluateScript(script, scriptVariables, out);
226220
if (logger != null) {
227221
logger.consumeLine("Finished " + scriptDescription + ": " + scriptFile);

0 commit comments

Comments
 (0)