21
21
import java .io .File ;
22
22
import java .io .IOException ;
23
23
import java .io .PrintStream ;
24
+ import java .io .UncheckedIOException ;
25
+ import java .net .MalformedURLException ;
26
+ import java .net .URL ;
27
+ import java .net .URLClassLoader ;
24
28
import java .util .List ;
25
29
import java .util .Map ;
26
30
36
40
*/
37
41
class BeanShellScriptInterpreter implements ScriptInterpreter {
38
42
39
- /** {@inheritDoc} */
43
+ private URLClassLoader classLoader ;
44
+
40
45
@ Override
41
- public Object evaluateScript (
42
- String script ,
43
- List <String > classPath ,
44
- Map <String , ? extends Object > globalVariables ,
45
- PrintStream scriptOutput )
46
+ public void setClassPath (List <String > classPath ) {
47
+ if (classPath == null || classPath .isEmpty ()) {
48
+ return ;
49
+ }
50
+
51
+ URL [] urls = classPath .stream ().map (this ::toUrl ).toArray (URL []::new );
52
+ classLoader = new URLClassLoader (urls , Thread .currentThread ().getContextClassLoader ());
53
+ }
54
+
55
+ private URL toUrl (String path ) {
56
+ try {
57
+ return new File (path ).toURI ().toURL ();
58
+ } catch (MalformedURLException e ) {
59
+ throw new UncheckedIOException (e );
60
+ }
61
+ }
62
+
63
+ @ Override
64
+ public Object evaluateScript (String script , Map <String , ?> globalVariables , PrintStream scriptOutput )
46
65
throws ScriptEvaluationException {
47
66
PrintStream origOut = System .out ;
48
67
PrintStream origErr = System .err ;
@@ -67,15 +86,8 @@ public Object evaluateScript(
67
86
}
68
87
}
69
88
70
- if (classPath != null && !classPath .isEmpty ()) {
71
- for (String path : classPath ) {
72
- try {
73
- engine .getClassManager ()
74
- .addClassPath (new File (path ).toURI ().toURL ());
75
- } catch (IOException e ) {
76
- throw new RuntimeException ("bad class path: " + path , e );
77
- }
78
- }
89
+ if (classLoader != null ) {
90
+ engine .setClassLoader (classLoader );
79
91
}
80
92
81
93
if (globalVariables != null ) {
@@ -102,4 +114,11 @@ public Object evaluateScript(
102
114
System .setOut (origOut );
103
115
}
104
116
}
117
+
118
+ @ Override
119
+ public void close () throws IOException {
120
+ if (classLoader != null ) {
121
+ classLoader .close ();
122
+ }
123
+ }
105
124
}
0 commit comments