Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
830 lines
30 KiB
Java
830 lines
30 KiB
Java
/*
|
|
* Copyright (c) 2024, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
* accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU General Public License version
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
* questions.
|
|
*/
|
|
|
|
/*
|
|
* @test
|
|
* @bug 8333849 8358958
|
|
* @summary Test ByteChannel and AsycnhronousByteChannel implementations with ByteBuffers
|
|
* that are views of a MemorySegment
|
|
* @run junit/othervm MemorySegments
|
|
*/
|
|
|
|
import java.io.IOException;
|
|
import java.lang.foreign.Arena;
|
|
import java.net.InetAddress;
|
|
import java.net.InetSocketAddress;
|
|
import java.net.SocketAddress;
|
|
import java.nio.ByteBuffer;
|
|
import java.nio.channels.AsynchronousFileChannel;
|
|
import java.nio.channels.AsynchronousServerSocketChannel;
|
|
import java.nio.channels.AsynchronousSocketChannel;
|
|
import java.nio.channels.CompletionHandler;
|
|
import java.nio.channels.DatagramChannel;
|
|
import java.nio.channels.FileChannel;
|
|
import java.nio.channels.ServerSocketChannel;
|
|
import java.nio.channels.SocketChannel;
|
|
import java.nio.file.Files;
|
|
import java.nio.file.Path;
|
|
import java.util.Random;
|
|
import java.util.concurrent.CountDownLatch;
|
|
import java.util.concurrent.ExecutionException;
|
|
import java.util.concurrent.Future;
|
|
import java.util.concurrent.TimeUnit;
|
|
import java.util.function.Supplier;
|
|
import java.util.stream.Stream;
|
|
import static java.nio.file.StandardOpenOption.*;
|
|
|
|
import org.junit.jupiter.api.RepeatedTest;
|
|
import org.junit.jupiter.params.ParameterizedTest;
|
|
import org.junit.jupiter.params.provider.MethodSource;
|
|
import static org.junit.jupiter.api.Assertions.*;
|
|
|
|
class MemorySegments {
|
|
private static final int SIZE = 100; // buffer size used by tests
|
|
|
|
/**
|
|
* Return a stream of suppliers for each Arena type. A supplier is used to avoid JUnit
|
|
* closing the Arena and failing (as some Arenas are not closable).
|
|
*/
|
|
static Stream<Supplier<Arena>> arenaSuppliers() {
|
|
return Stream.of(Arena::global, Arena::ofAuto, Arena::ofConfined, Arena::ofShared);
|
|
}
|
|
|
|
/**
|
|
* SocketChannel read/write(ByteBuffer).
|
|
*/
|
|
@ParameterizedTest
|
|
@MethodSource("arenaSuppliers")
|
|
void testSocketChannelReadWrite(Supplier<Arena> arenaSupplier) throws IOException {
|
|
Arena arena = arenaSupplier.get();
|
|
try (ServerSocketChannel ssc = ServerSocketChannel.open()) {
|
|
ssc.bind(new InetSocketAddress(InetAddress.getLoopbackAddress(), 0));
|
|
|
|
try (SocketChannel sc1 = SocketChannel.open(ssc.getLocalAddress());
|
|
SocketChannel sc2 = ssc.accept()) {
|
|
|
|
// write
|
|
ByteBuffer src = arena.allocate(SIZE).asByteBuffer();
|
|
fillRandom(src);
|
|
int nwritten = sc1.write(src);
|
|
assertTrue(nwritten > 0);
|
|
assertTrue(nwritten <= SIZE);
|
|
assertEquals(nwritten, src.position());
|
|
|
|
// read
|
|
ByteBuffer dst = arena.allocate(SIZE + 100).asByteBuffer();
|
|
int nread = sc2.read(dst);
|
|
assertTrue(nread > 0);
|
|
assertTrue(nread <= nwritten);
|
|
assertEquals(nread, dst.position());
|
|
|
|
// check contents
|
|
dst.flip();
|
|
assertEquals(src.slice(0, nread), dst);
|
|
}
|
|
|
|
} finally {
|
|
tryClose(arena);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* SocketChannel write(ByteBuffer[]).
|
|
*/
|
|
@ParameterizedTest
|
|
@MethodSource("arenaSuppliers")
|
|
void testSocketChannelGatheringWrite(Supplier<Arena> arenaSupplier) throws IOException {
|
|
Arena arena = arenaSupplier.get();
|
|
try (ServerSocketChannel ssc = ServerSocketChannel.open()) {
|
|
ssc.bind(new InetSocketAddress(InetAddress.getLoopbackAddress(), 0));
|
|
|
|
try (SocketChannel sc1 = SocketChannel.open(ssc.getLocalAddress());
|
|
SocketChannel sc2 = ssc.accept()) {
|
|
|
|
// gathering write
|
|
ByteBuffer src = arena.allocate(SIZE * 2).asByteBuffer();
|
|
fillRandom(src);
|
|
ByteBuffer src1 = src.slice(0, SIZE);
|
|
ByteBuffer src2 = src.slice(SIZE, SIZE);
|
|
var srcs = new ByteBuffer[] { src1, src2 };
|
|
int nwritten = (int) sc1.write(srcs);
|
|
assertTrue(nwritten > 0);
|
|
assertEquals(Math.min(nwritten, SIZE), src1.position());
|
|
assertEquals(nwritten, src1.position() + src2.position());
|
|
|
|
// read
|
|
ByteBuffer dst = arena.allocate(SIZE * 2 + 50).asByteBuffer();
|
|
int nread = sc2.read(dst);
|
|
assertTrue(nread > 0);
|
|
assertTrue(nread <= nwritten);
|
|
assertEquals(nread, dst.position());
|
|
|
|
// check contents
|
|
dst.flip();
|
|
assertEquals(src.slice(0, nread), dst);
|
|
}
|
|
|
|
} finally {
|
|
tryClose(arena);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* SocketChannel read(ByteBuffer[]).
|
|
*/
|
|
@ParameterizedTest
|
|
@MethodSource("arenaSuppliers")
|
|
void testSocketChannelScatteringRead(Supplier<Arena> arenaSupplier) throws IOException {
|
|
Arena arena = arenaSupplier.get();
|
|
try (ServerSocketChannel ssc = ServerSocketChannel.open()) {
|
|
ssc.bind(new InetSocketAddress(InetAddress.getLoopbackAddress(), 0));
|
|
|
|
try (SocketChannel sc1 = SocketChannel.open(ssc.getLocalAddress());
|
|
SocketChannel sc2 = ssc.accept()) {
|
|
|
|
// write
|
|
ByteBuffer src = arena.allocate(SIZE).asByteBuffer();
|
|
fillRandom(src);
|
|
int nwritten = sc1.write(src);
|
|
assertTrue(nwritten > 0);
|
|
assertTrue(nwritten <= SIZE);
|
|
assertEquals(nwritten, src.position());
|
|
|
|
// scattering read
|
|
ByteBuffer dst = arena.allocate(SIZE + 50).asByteBuffer();
|
|
ByteBuffer dst1 = dst.slice(0, 50);
|
|
ByteBuffer dst2 = dst.slice(50, dst.capacity() - 50);
|
|
var dsts = new ByteBuffer[]{ dst1, dst2 };
|
|
int nread = (int) sc2.read(dsts);
|
|
assertTrue(nread > 0);
|
|
assertTrue(nread <= nwritten);
|
|
assertTrue(dst1.position() > 0);
|
|
assertEquals(nread, dst1.position() + dst2.position());
|
|
|
|
// check contents
|
|
src.flip();
|
|
assertEquals(src, dst.slice(0, nread));
|
|
}
|
|
|
|
} finally {
|
|
tryClose(arena);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* DatagramChannel send/receive(ByteBuffer).
|
|
*/
|
|
@ParameterizedTest
|
|
@MethodSource("arenaSuppliers")
|
|
void testDatagramChannelSendReceive(Supplier<Arena> arenaSupplier) throws IOException {
|
|
Arena arena = arenaSupplier.get();
|
|
try (DatagramChannel dc = DatagramChannel.open()) {
|
|
dc.bind(new InetSocketAddress(InetAddress.getLoopbackAddress(), 0));
|
|
SocketAddress target = dc.getLocalAddress();
|
|
|
|
// send
|
|
ByteBuffer src = arena.allocate(SIZE).asByteBuffer();
|
|
fillRandom(src);
|
|
int n = dc.send(src, target);
|
|
assertEquals(SIZE, n);
|
|
assertFalse(src.hasRemaining());
|
|
|
|
// receive
|
|
ByteBuffer dst = arena.allocate(SIZE + 100).asByteBuffer();
|
|
SocketAddress remote = dc.receive(dst);
|
|
assertEquals(remote, target);
|
|
assertEquals(SIZE, dst.position());
|
|
|
|
// check contents
|
|
src.clear();
|
|
dst.flip();
|
|
assertEquals(src, dst);
|
|
} finally {
|
|
tryClose(arena);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* DatagramChannel read/write(ByteBuffer).
|
|
*/
|
|
@ParameterizedTest
|
|
@MethodSource("arenaSuppliers")
|
|
void testDatagramChannelReadWrite(Supplier<Arena> arenaSupplier) throws IOException {
|
|
Arena arena = arenaSupplier.get();
|
|
try (DatagramChannel dc = DatagramChannel.open()) {
|
|
dc.bind(new InetSocketAddress(InetAddress.getLoopbackAddress(), 0));
|
|
SocketAddress target = dc.getLocalAddress();
|
|
dc.connect(target);
|
|
|
|
// write
|
|
ByteBuffer src = arena.allocate(SIZE).asByteBuffer();
|
|
fillRandom(src);
|
|
int n = dc.write(src);
|
|
assertEquals(SIZE, n);
|
|
assertFalse(src.hasRemaining());
|
|
|
|
// read
|
|
ByteBuffer dst = arena.allocate(SIZE + 100).asByteBuffer();
|
|
n = dc.read(dst);
|
|
assertEquals(SIZE, n);
|
|
assertEquals(SIZE, dst.position());
|
|
|
|
// check contents
|
|
src.clear();
|
|
dst.flip();
|
|
assertEquals(src, dst);
|
|
} finally {
|
|
tryClose(arena);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* DatagramChannel write(ByteBuffer[]).
|
|
*/
|
|
@ParameterizedTest
|
|
@MethodSource("arenaSuppliers")
|
|
void testDatagramChannelGatheringWrite(Supplier<Arena> arenaSupplier) throws IOException {
|
|
Arena arena = arenaSupplier.get();
|
|
try (DatagramChannel dc = DatagramChannel.open()) {
|
|
dc.bind(new InetSocketAddress(InetAddress.getLoopbackAddress(), 0));
|
|
SocketAddress target = dc.getLocalAddress();
|
|
dc.connect(target);
|
|
|
|
// gathering write
|
|
ByteBuffer src1 = arena.allocate(SIZE).asByteBuffer();
|
|
ByteBuffer src2 = arena.allocate(SIZE).asByteBuffer();
|
|
fillRandom(src1);
|
|
fillRandom(src2);
|
|
var srcs = new ByteBuffer[] { src1, src2 };
|
|
int nwritten = (int) dc.write(srcs);
|
|
assertEquals(SIZE*2, nwritten);
|
|
assertFalse(src1.hasRemaining());
|
|
assertFalse(src2.hasRemaining());
|
|
|
|
// read
|
|
ByteBuffer dst = arena.allocate(SIZE*2 + 50).asByteBuffer();
|
|
int nread = dc.read(dst);
|
|
assertEquals(SIZE*2, nread);
|
|
assertEquals(SIZE*2, dst.position());
|
|
|
|
// check contents
|
|
src1.flip();
|
|
src2.flip();
|
|
assertEquals(src1, dst.slice(0, SIZE));
|
|
assertEquals(src2, dst.slice(SIZE, SIZE));
|
|
} finally {
|
|
tryClose(arena);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* DatagramChannel read(ByteBuffer[]).
|
|
*/
|
|
@ParameterizedTest
|
|
@MethodSource("arenaSuppliers")
|
|
void testDatagramChannelScatteringRead(Supplier<Arena> arenaSupplier) throws IOException {
|
|
Arena arena = arenaSupplier.get();
|
|
try (DatagramChannel dc = DatagramChannel.open()) {
|
|
dc.bind(new InetSocketAddress(InetAddress.getLoopbackAddress(), 0));
|
|
SocketAddress target = dc.getLocalAddress();
|
|
dc.connect(target);
|
|
|
|
// write
|
|
ByteBuffer src = arena.allocate(SIZE*2).asByteBuffer();
|
|
fillRandom(src);
|
|
int nwritten = dc.write(src);
|
|
assertEquals(SIZE*2, nwritten);
|
|
assertEquals(nwritten, src.position());
|
|
|
|
// scattering read
|
|
ByteBuffer dst1 = arena.allocate(SIZE).asByteBuffer();
|
|
ByteBuffer dst2 = arena.allocate(SIZE + 50).asByteBuffer();
|
|
var dsts = new ByteBuffer[] { dst1, dst2 };
|
|
int nread = (int) dc.read(dsts);
|
|
assertEquals(SIZE*2, nread);
|
|
assertEquals(nread, dst1.position() + dst2.position());
|
|
|
|
// check contents
|
|
dst1.flip();
|
|
assertEquals(src.slice(0, SIZE), dst1);
|
|
dst2.flip();
|
|
assertEquals(src.slice(SIZE, SIZE), dst2);
|
|
} finally {
|
|
tryClose(arena);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* AsynchronousSocketChannel read/write(ByteBuffer).
|
|
*/
|
|
@ParameterizedTest
|
|
@MethodSource("arenaSuppliers")
|
|
void testAsyncSocketChannelReadWrite(Supplier<Arena> arenaSupplier) throws Exception {
|
|
boolean shared = isShared(arenaSupplier);
|
|
boolean confined = isConfined(arenaSupplier);
|
|
Arena arena = arenaSupplier.get();
|
|
|
|
try (var listener = AsynchronousServerSocketChannel.open();
|
|
AsynchronousSocketChannel ch1 = AsynchronousSocketChannel.open()) {
|
|
listener.bind(new InetSocketAddress(InetAddress.getLoopbackAddress(), 0));
|
|
|
|
ch1.connect(listener.getLocalAddress()).get();
|
|
try (AsynchronousSocketChannel ch2 = listener.accept().get()) {
|
|
ByteBuffer dst = arena.allocate(SIZE + 100).asByteBuffer();
|
|
ByteBuffer src = arena.allocate(SIZE).asByteBuffer();
|
|
fillRandom(src);
|
|
|
|
if (confined) {
|
|
// read and write should fail with IAE
|
|
assertThrows(IllegalArgumentException.class, () -> ch1.read(dst));
|
|
assertThrows(IllegalArgumentException.class, () -> ch2.write(src));
|
|
} else {
|
|
// async read
|
|
Future<Integer> readTask = ch1.read(dst);
|
|
|
|
// shared arena cannot be closed while read in progress
|
|
if (shared) {
|
|
assertThrows(IllegalStateException.class, arena::close);
|
|
}
|
|
|
|
// async write
|
|
Future<Integer> writeTask = ch2.write(src);
|
|
|
|
// finish write
|
|
int nwritten = writeTask.get();
|
|
assertTrue(nwritten > 0);
|
|
assertTrue(nwritten <= SIZE);
|
|
assertEquals(nwritten, src.position());
|
|
|
|
// finish read
|
|
int nread = readTask.get();
|
|
assertTrue(nread > 0);
|
|
assertTrue(nread <= nwritten);
|
|
assertEquals(nread, dst.position());
|
|
|
|
// check contents
|
|
dst.flip();
|
|
assertEquals(src.slice(0, nread), dst);
|
|
}
|
|
}
|
|
} finally {
|
|
tryClose(arena);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* AsynchronousSocketChannel write(ByteBuffer[]).
|
|
*/
|
|
@ParameterizedTest
|
|
@MethodSource("arenaSuppliers")
|
|
void testAsyncSocketChannelGatheringWrite(Supplier<Arena> arenaSupplier) throws Throwable {
|
|
boolean confined = isConfined(arenaSupplier);
|
|
Arena arena = arenaSupplier.get();
|
|
|
|
try (var listener = AsynchronousServerSocketChannel.open();
|
|
AsynchronousSocketChannel ch1 = AsynchronousSocketChannel.open()) {
|
|
listener.bind(new InetSocketAddress(InetAddress.getLoopbackAddress(), 0));
|
|
|
|
ch1.connect(listener.getLocalAddress()).get();
|
|
try (AsynchronousSocketChannel ch2 = listener.accept().get()) {
|
|
|
|
ByteBuffer src = arena.allocate(SIZE * 2).asByteBuffer();
|
|
fillRandom(src);
|
|
ByteBuffer src1 = src.slice(0, SIZE);
|
|
ByteBuffer src2 = src.slice(SIZE, SIZE);
|
|
var srcs = new ByteBuffer[] { src1, src2 };
|
|
|
|
var writeHandler = new Handler<Long>();
|
|
if (confined) {
|
|
assertThrows(IllegalArgumentException.class,
|
|
() -> ch1.write(srcs, 0, 2, 0, TimeUnit.SECONDS, null, writeHandler));
|
|
} else {
|
|
// async gathering write
|
|
ch1.write(srcs, 0, 2, 0, TimeUnit.SECONDS, null, writeHandler);
|
|
|
|
// finish gathering write
|
|
int nwritten = (int) (long) writeHandler.join();
|
|
assertTrue(nwritten > 0);
|
|
assertEquals(Math.min(nwritten, SIZE), src1.position());
|
|
assertEquals(nwritten, src1.position() + src2.position());
|
|
|
|
// async read + finish read
|
|
ByteBuffer dst = arena.allocate(SIZE * 2 + 50).asByteBuffer();
|
|
int nread = ch2.read(dst).get();
|
|
assertTrue(nread > 0);
|
|
assertTrue(nread <= nwritten);
|
|
assertEquals(nread, dst.position());
|
|
|
|
// check contents
|
|
dst.flip();
|
|
assertEquals(src.slice(0, nread), dst);
|
|
}
|
|
}
|
|
} finally {
|
|
tryClose(arena);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* AsynchronousSocketChannel read(ByteBuffer[]).
|
|
*/
|
|
@ParameterizedTest
|
|
@MethodSource("arenaSuppliers")
|
|
void testAsyncSocketChannelScatteringRead(Supplier<Arena> arenaSupplier) throws Throwable {
|
|
boolean shared = isShared(arenaSupplier);
|
|
boolean confined = isConfined(arenaSupplier);
|
|
Arena arena = arenaSupplier.get();
|
|
|
|
try (var listener = AsynchronousServerSocketChannel.open();
|
|
AsynchronousSocketChannel ch1 = AsynchronousSocketChannel.open()) {
|
|
listener.bind(new InetSocketAddress(InetAddress.getLoopbackAddress(), 0));
|
|
|
|
ch1.connect(listener.getLocalAddress()).get();
|
|
try (AsynchronousSocketChannel ch2 = listener.accept().get()) {
|
|
|
|
ByteBuffer dst = arena.allocate(SIZE + 50).asByteBuffer();
|
|
ByteBuffer dst1 = dst.slice(0, 50);
|
|
ByteBuffer dst2 = dst.slice(50, dst.capacity() - 50);
|
|
var dsts = new ByteBuffer[]{dst1, dst2};
|
|
var readHandler = new Handler<Long>();
|
|
|
|
if (confined) {
|
|
assertThrows(IllegalArgumentException.class,
|
|
() -> ch1.read(dsts, 0, 2, 0, TimeUnit.SECONDS, null, readHandler));
|
|
} else {
|
|
// async scattering read
|
|
ch1.read(dsts, 0, 2, 0, TimeUnit.SECONDS, null, readHandler);
|
|
|
|
// shared arena cannot be closed while read in progress
|
|
if (shared) {
|
|
assertThrows(IllegalStateException.class, arena::close);
|
|
}
|
|
|
|
// async write + finish write
|
|
ByteBuffer src = arena.allocate(SIZE).asByteBuffer();
|
|
fillRandom(src);
|
|
int nwritten = ch2.write(src).get();
|
|
assertTrue(nwritten > 0);
|
|
assertTrue(nwritten <= SIZE);
|
|
assertEquals(nwritten, src.position());
|
|
|
|
// finish scattering read
|
|
int nread = (int) (long) readHandler.join();
|
|
assertTrue(nread > 0);
|
|
assertTrue(nread <= nwritten);
|
|
assertTrue(dst1.position() > 0);
|
|
assertEquals(nread, dst1.position() + dst2.position());
|
|
|
|
// check contents
|
|
src.flip();
|
|
assertEquals(src, dst.slice(0, nread));
|
|
}
|
|
}
|
|
} finally {
|
|
tryClose(arena);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* FileChannel read/write(ByteBuffer).
|
|
*/
|
|
@ParameterizedTest
|
|
@MethodSource("arenaSuppliers")
|
|
void testFileChannelReadWrite(Supplier<Arena> arenaSupplier) throws IOException {
|
|
Arena arena = arenaSupplier.get();
|
|
Path file = Files.createTempFile(Path.of("."), "test", "dat");
|
|
try (FileChannel fc = FileChannel.open(file, READ, WRITE)) {
|
|
|
|
// write
|
|
ByteBuffer src = arena.allocate(SIZE).asByteBuffer();
|
|
fillRandom(src);
|
|
int nwritten = fc.write(src);
|
|
assertTrue(nwritten > 0);
|
|
assertTrue(nwritten <= SIZE);
|
|
assertEquals(nwritten, src.position());
|
|
assertEquals(nwritten, (int) fc.position());
|
|
assertEquals(nwritten, (int) fc.size());
|
|
|
|
// read
|
|
ByteBuffer dst = arena.allocate(SIZE + 100).asByteBuffer();
|
|
fc.position(0);
|
|
int nread = fc.read(dst);
|
|
assertTrue(nread > 0);
|
|
assertTrue(nread <= nwritten);
|
|
assertEquals(nread, dst.position());
|
|
assertEquals(nread, (int) fc.position());
|
|
|
|
// check contents
|
|
dst.flip();
|
|
assertEquals(src.slice(0, nread), dst);
|
|
|
|
// reset
|
|
fc.truncate(0L);
|
|
src.clear();
|
|
dst.clear();
|
|
|
|
// write with position
|
|
nwritten = fc.write(src, 10L);
|
|
assertTrue(nwritten > 0);
|
|
assertTrue(nwritten <= SIZE);
|
|
assertEquals(nwritten, src.position());
|
|
assertEquals(0, (int) fc.position());
|
|
assertEquals(nwritten + 10, (int) fc.size());
|
|
|
|
// read with position
|
|
nread = fc.read(dst, 10L);
|
|
assertTrue(nread > 0);
|
|
assertTrue(nread <= nwritten);
|
|
assertEquals(nread, dst.position());
|
|
assertEquals(0, (int)fc.position());
|
|
|
|
// check contents
|
|
dst.flip();
|
|
assertEquals(src.slice(0, nread), dst);
|
|
} finally {
|
|
tryClose(arena);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* FileChannel write(ByteBuffer[]).
|
|
*/
|
|
@ParameterizedTest
|
|
@MethodSource("arenaSuppliers")
|
|
void testFileChannelGatheringWrite(Supplier<Arena> arenaSupplier) throws IOException {
|
|
Arena arena = arenaSupplier.get();
|
|
Path file = Files.createTempFile(Path.of(""), "test", "dat");
|
|
try (FileChannel fc = FileChannel.open(file, READ, WRITE)) {
|
|
|
|
// gathering write
|
|
ByteBuffer src = arena.allocate(SIZE * 2).asByteBuffer();
|
|
fillRandom(src);
|
|
ByteBuffer src1 = src.slice(0, SIZE);
|
|
ByteBuffer src2 = src.slice(SIZE, SIZE);
|
|
var srcs = new ByteBuffer[] { src1, src2 };
|
|
int nwritten = (int) fc.write(srcs);
|
|
assertTrue(nwritten > 0);
|
|
assertEquals(Math.min(nwritten, SIZE), src1.position());
|
|
assertEquals(nwritten, src1.position() + src2.position());
|
|
assertEquals(nwritten, (int) fc.position());
|
|
assertEquals(nwritten, (int) fc.size());
|
|
|
|
// read
|
|
ByteBuffer dst = arena.allocate(SIZE*2 + 50).asByteBuffer();
|
|
fc.position(0);
|
|
int nread = fc.read(dst);
|
|
assertTrue(nread > 0);
|
|
assertTrue(nread <= nwritten);
|
|
assertEquals(nread, dst.position());
|
|
assertEquals(nread, (int) fc.position());
|
|
|
|
// check contents
|
|
dst.flip();
|
|
assertEquals(src.slice(0, nread), dst);
|
|
} finally {
|
|
tryClose(arena);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* FileChannel read(ByteBuffer[]).
|
|
*/
|
|
@ParameterizedTest
|
|
@MethodSource("arenaSuppliers")
|
|
void testFileChannelScatteringRead(Supplier<Arena> arenaSupplier) throws IOException {
|
|
Arena arena = arenaSupplier.get();
|
|
Path file = Files.createTempFile(Path.of(""), "test", "dat");
|
|
try (FileChannel fc = FileChannel.open(file, READ, WRITE)) {
|
|
|
|
// write
|
|
ByteBuffer src = arena.allocate(SIZE).asByteBuffer();
|
|
fillRandom(src);
|
|
int nwritten = fc.write(src);
|
|
assertTrue(nwritten > 0);
|
|
assertTrue(nwritten <= SIZE);
|
|
assertEquals(nwritten, src.position());
|
|
assertEquals(nwritten, (int) fc.position());
|
|
assertEquals(nwritten, (int) fc.size());
|
|
|
|
// scattering read
|
|
ByteBuffer dst = arena.allocate(SIZE + 50).asByteBuffer();
|
|
ByteBuffer dst1 = dst.slice(0, 50);
|
|
ByteBuffer dst2 = dst.slice(50, dst.capacity() - 50);
|
|
var dsts = new ByteBuffer[] { dst1, dst2 };
|
|
fc.position(0);
|
|
int nread = (int) fc.read(dsts);
|
|
assertTrue(nread > 0);
|
|
assertTrue(nread <= nwritten);
|
|
assertTrue(dst1.position() > 0);
|
|
assertEquals(nread, dst1.position() + dst2.position());
|
|
assertEquals(nread, (int) fc.position());
|
|
|
|
// check contents
|
|
dst.limit(nread);
|
|
assertEquals(src.slice(0, nread), dst);
|
|
} finally {
|
|
tryClose(arena);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* AsynchronousFileChannel read/write(ByteBuffer).
|
|
*/
|
|
@ParameterizedTest
|
|
@MethodSource("arenaSuppliers")
|
|
void testAsyncFileChannelReadWrite(Supplier<Arena> arenaSupplier) throws Throwable {
|
|
boolean confined = isConfined(arenaSupplier);
|
|
Arena arena = arenaSupplier.get();
|
|
|
|
Path file = Files.createTempFile(Path.of(""), "foo", ".dat");
|
|
try (AsynchronousFileChannel ch = AsynchronousFileChannel.open(file, READ, WRITE)) {
|
|
ByteBuffer dst = arena.allocate(SIZE + 100).asByteBuffer();
|
|
ByteBuffer src = arena.allocate(SIZE).asByteBuffer();
|
|
fillRandom(src);
|
|
|
|
if (confined) {
|
|
// read and write should fail with IAE
|
|
assertThrows(IllegalArgumentException.class, () -> ch.read(dst, 0L));
|
|
assertThrows(IllegalArgumentException.class, () -> ch.write(src, 0L));
|
|
} else {
|
|
// async write
|
|
Future<Integer> writeTask = ch.write(src, 0L);
|
|
|
|
// finish write
|
|
int nwritten = writeTask.get();
|
|
assertTrue(nwritten > 0);
|
|
assertTrue(nwritten <= SIZE);
|
|
assertEquals(nwritten, src.position());
|
|
|
|
// async read
|
|
Future<Integer> readTask = ch.read(dst, 0L);
|
|
|
|
// finish read
|
|
int nread = readTask.get();
|
|
assertTrue(nread > 0);
|
|
assertTrue(nread <= nwritten);
|
|
assertEquals(nread, dst.position());
|
|
|
|
// check contents
|
|
dst.flip();
|
|
assertEquals(src.slice(0, nread), dst);
|
|
}
|
|
} finally {
|
|
tryClose(arena);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Test closing a shared arena while AsynchronousFileChannel.write in progress.
|
|
*/
|
|
@RepeatedTest(20)
|
|
void testAsyncFileChannelWriteRacingArenaClose() throws Exception {
|
|
Path file = Files.createTempFile(Path.of(""), "foo", ".dat");
|
|
|
|
// use SYNC option to cause write operation to be slow
|
|
try (AsynchronousFileChannel ch = AsynchronousFileChannel.open(file, READ, WRITE, SYNC)) {
|
|
Arena arena = Arena.ofShared();
|
|
boolean closed = false;
|
|
try {
|
|
ByteBuffer src = arena.allocate(SIZE).asByteBuffer();
|
|
fillRandom(src);
|
|
|
|
// need copy of source buffer so that writing can be tested after arena is closed
|
|
ByteBuffer srcCopy = copyOf(src);
|
|
|
|
// async write
|
|
Future<Integer> writeTask = ch.write(src, 0L);
|
|
|
|
// attempt to close arena, races with write operation
|
|
try {
|
|
arena.close();
|
|
closed = true;
|
|
} catch (IllegalStateException e) {
|
|
// in use
|
|
}
|
|
|
|
// finish write
|
|
int nwritten = writeTask.get();
|
|
assertTrue(nwritten > 0);
|
|
assertTrue(nwritten <= SIZE);
|
|
|
|
// read and check contents
|
|
ByteBuffer dst = ByteBuffer.allocate(SIZE + 100);
|
|
int nread = ch.read(dst, 0L).get();
|
|
dst.flip();
|
|
assertEquals(srcCopy.slice(0, nread), dst);
|
|
} finally {
|
|
if (!closed) {
|
|
arena.close();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* CompletionHandler with a join method to wait for operation to complete.
|
|
*/
|
|
private static class Handler<V> implements CompletionHandler<V, Void> {
|
|
volatile V result;
|
|
volatile Throwable ex;
|
|
final CountDownLatch latch = new CountDownLatch(1);
|
|
@Override
|
|
public void completed(V result, Void att) {
|
|
this.result = result;
|
|
latch.countDown();
|
|
}
|
|
@Override
|
|
public void failed(Throwable ex, Void att) {
|
|
this.ex = ex;
|
|
latch.countDown();
|
|
}
|
|
V join() throws ExecutionException, InterruptedException {
|
|
latch.await();
|
|
Throwable ex = this.ex;
|
|
if (ex != null) {
|
|
throw new ExecutionException(ex);
|
|
}
|
|
return result;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Fill the buffer with random bytes.
|
|
*/
|
|
private void fillRandom(ByteBuffer bb) {
|
|
Random r = new Random();
|
|
int pos = bb.position();
|
|
while (bb.hasRemaining()) {
|
|
bb.put((byte) r.nextInt(256));
|
|
}
|
|
bb.position(pos);
|
|
}
|
|
|
|
/**
|
|
* Return a copy of a buffer.
|
|
*/
|
|
private ByteBuffer copyOf(ByteBuffer buf) {
|
|
ByteBuffer copy = ByteBuffer.allocate(buf.capacity());
|
|
buf.put(copy);
|
|
buf.flip();
|
|
copy.flip();
|
|
assertEquals(buf, copy);
|
|
return copy;
|
|
}
|
|
|
|
/**
|
|
* Returns true if the supplier produces shared arenas.
|
|
*/
|
|
private boolean isShared(Supplier<Arena> arenaSupplier) {
|
|
if (!isConfined(arenaSupplier)) {
|
|
try {
|
|
arenaSupplier.get().close();
|
|
return true;
|
|
} catch (UnsupportedOperationException e) { }
|
|
}
|
|
// confined or non-closeable
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Returns true if the supplier produces thread-confined arenas.
|
|
*/
|
|
private boolean isConfined(Supplier<Arena> arenaSupplier) {
|
|
Arena arena = arenaSupplier.get();
|
|
boolean confined = !arena.allocate(0).isAccessibleBy(new Thread());
|
|
tryClose(arena);
|
|
return confined;
|
|
}
|
|
|
|
/**
|
|
* Attempt to close the given Arena.
|
|
*/
|
|
private boolean tryClose(Arena arena) {
|
|
try {
|
|
arena.close();
|
|
return true;
|
|
} catch (UnsupportedOperationException e) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|