Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8290504: Close streams returned by ModuleReader::list #9557

Closed
wants to merge 6 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -28,6 +28,7 @@
import java.lang.module.ResolvedModule;
import java.net.URL;
import java.util.Enumeration;
import java.util.stream.Stream;

/**
* Usage: Main $MODULE
@@ -79,8 +80,9 @@ public static void main(String[] args) throws Exception {
.map(ResolvedModule::reference)
.orElseThrow(() -> new RuntimeException(mn + " not resolved!!"));

try (ModuleReader reader = mref.open()) {
reader.list().forEach(name -> {
try (ModuleReader reader = mref.open();
Stream<String> stream = reader.list()) {
stream.forEach(name -> {
testFindUnchecked(name);

// if the resource is a directory then find without trailing slash
Original file line number Diff line number Diff line change
@@ -62,9 +62,10 @@ public class CallerSensitiveAccess {
*/
@DataProvider(name = "callerSensitiveMethods")
static Object[][] callerSensitiveMethods() {
return callerSensitiveMethods(Object.class.getModule())
.map(m -> new Object[] { m, shortDescription(m) })
.toArray(Object[][]::new);
try (Stream<Method> stream = callerSensitiveMethods(Object.class.getModule())) {
return stream.map(m -> new Object[]{m, shortDescription(m)})
.toArray(Object[][]::new);
}
}

/**
@@ -100,11 +101,13 @@ public void testPublicLookupUnreflect(@NoInjection Method method, String desc) t
*/
@DataProvider(name = "accessibleCallerSensitiveMethods")
static Object[][] accessibleCallerSensitiveMethods() {
return callerSensitiveMethods(Object.class.getModule())
try (Stream<Method> stream = callerSensitiveMethods(Object.class.getModule())) {
return stream
.filter(m -> Modifier.isPublic(m.getModifiers()))
.map(m -> { m.setAccessible(true); return m; })
.map(m -> new Object[] { m, shortDescription(m) })
.toArray(Object[][]::new);
}
}

/**
6 changes: 5 additions & 1 deletion test/jdk/java/lang/module/ModuleReader/ModuleReaderTest.java
Original file line number Diff line number Diff line change
@@ -54,6 +54,7 @@
import java.util.Set;
import java.util.stream.Collectors;
import java.util.spi.ToolProvider;
import java.util.stream.Stream;

import jdk.internal.module.ModulePath;
import jdk.test.lib.compiler.CompilerUtils;
@@ -413,7 +414,10 @@ void testRead(ModuleReader reader, String name, byte[] expectedBytes)
* Test ModuleReader#list
*/
void testList(ModuleReader reader, String name) throws IOException {
List<String> list = reader.list().collect(Collectors.toList());
final List<String> list;
try (Stream<String> stream = reader.list()) {
list = stream.toList();
}
Set<String> names = new HashSet<>(list);
assertTrue(names.size() == list.size()); // no duplicates

Original file line number Diff line number Diff line change
@@ -44,6 +44,7 @@
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Set;
import java.util.stream.Stream;

import jdk.test.lib.util.JarUtils;

@@ -108,8 +109,9 @@ private void testZipFileSystem(Path zip) throws Exception {
private void listAllModules(ModuleFinder finder) throws Exception {
for (ModuleReference mref : finder.findAll()) {
System.out.println(mref.descriptor());
try (ModuleReader reader = mref.open()) {
reader.list().forEach(name -> System.out.format(" %s%n", name));
try (ModuleReader reader = mref.open();
Stream<String> stream = reader.list()) {
stream.forEach(name -> System.out.format(" %s%n", name));
}
}
}