Skip to content

Commit 8a44e09

Browse files
committedNov 23, 2021
8268725: jshell does not support the --enable-native-access option
Reviewed-by: sundar
1 parent 7b67a49 commit 8a44e09

File tree

3 files changed

+71
-0
lines changed

3 files changed

+71
-0
lines changed
 

‎src/jdk.jshell/share/classes/jdk/internal/jshell/tool/JShellTool.java

+6
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,7 @@ private enum OptionKind {
274274
ADD_EXPORTS("--add-exports", false),
275275
ENABLE_PREVIEW("--enable-preview", true),
276276
SOURCE_RELEASE("-source", true, true, true, false, false), // virtual option, generated by --enable-preview
277+
ENABLE_NATIVE_ACCESS("--enable-native-access", true, true, false, true, true),
277278
TO_COMPILER("-C", false, false, true, false, false),
278279
TO_REMOTE_VM("-R", false, false, false, true, false),;
279280
final String optionFlag;
@@ -363,6 +364,7 @@ private class OptionParserBase {
363364
private final OptionSpec<String> argAddModules = parser.accepts("add-modules").withRequiredArg();
364365
private final OptionSpec<String> argAddExports = parser.accepts("add-exports").withRequiredArg();
365366
private final OptionSpecBuilder argEnablePreview = parser.accepts("enable-preview");
367+
private final OptionSpecBuilder argEnableNativeAccess = parser.accepts("enable-native-access");
366368
private final NonOptionArgumentSpec<String> argNonOptions = parser.nonOptions();
367369

368370
private Options opts = new Options();
@@ -471,6 +473,10 @@ Options parse(OptionSet options) {
471473
OptionKind.SOURCE_RELEASE.optionFlag,
472474
System.getProperty("java.specification.version")));
473475
}
476+
if (options.has(argEnableNativeAccess)) {
477+
opts.addAll(OptionKind.ENABLE_NATIVE_ACCESS, List.of(
478+
OptionKind.ENABLE_NATIVE_ACCESS.optionFlag, "ALL-UNNAMED"));
479+
}
474480

475481
if (failed) {
476482
exitCode = 1;

‎src/jdk.jshell/share/classes/jdk/internal/jshell/tool/resources/l10n.properties

+2
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,8 @@ where possible options include:\n\
207207
\ --add-modules <module>(,<module>)*\n\
208208
\ Specify modules to resolve, or all modules on the\n\
209209
\ module path if <module> is ALL-MODULE-PATHs\n\
210+
\ --enable-native-access\n\
211+
\ Allow code to run restricted native methods\n\
210212
\ --enable-preview Allow code to depend on preview features of this release\n\
211213
\ --startup <file> One run replacement for the startup definitions\n\
212214
\ --no-startup Do not run the startup definitions\n\
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
/*
2+
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
/*
25+
* @test
26+
* @bug 8268725
27+
* @summary Tests for the --enable-native-access option
28+
* @modules jdk.jshell
29+
* @run testng ToolEnableNativeAccessTest
30+
*/
31+
32+
import org.testng.annotations.Test;
33+
34+
import static org.testng.Assert.assertTrue;
35+
36+
public class ToolEnableNativeAccessTest extends ReplToolTesting {
37+
38+
@Test
39+
public void testOptionDebug() {
40+
test(
41+
(a) -> assertCommand(a, "/debug b",
42+
"RemoteVM Options: []\n"
43+
+ "Compiler options: []"),
44+
(a) -> assertCommand(a, "/env --enable-native-access",
45+
"| Setting new options and restoring state."),
46+
(a) -> assertCommandCheckOutput(a, "/debug b", s -> {
47+
assertTrue(s.contains("RemoteVM Options: [--enable-native-access, ALL-UNNAMED]"));
48+
assertTrue(s.contains("Compiler options: []"));
49+
})
50+
);
51+
}
52+
53+
@Test
54+
public void testCommandLineFlag() {
55+
test(new String[] {"--enable-native-access"},
56+
(a) -> assertCommandCheckOutput(a, "/debug b", s -> {
57+
assertTrue(s.contains("RemoteVM Options: [--enable-native-access, ALL-UNNAMED]"));
58+
assertTrue(s.contains("Compiler options: []"));
59+
})
60+
);
61+
}
62+
63+
}

0 commit comments

Comments
 (0)
Please sign in to comment.