Skip to content

Commit 706d1b7

Browse files
committedOct 25, 2022
8295798: (ch) Test java/nio/channels/Channels/ReadXBytes.java is very slow on Windows
Reviewed-by: alanb, bpb
1 parent 89dafc0 commit 706d1b7

File tree

1 file changed

+23
-18
lines changed

1 file changed

+23
-18
lines changed
 

‎test/jdk/java/nio/channels/Channels/ReadXBytes.java

+23-18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2021, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -100,24 +100,29 @@ static Path createFile(long length) throws IOException {
100100
// Creates a temporary file of a specified length with random content
101101
static Path createFileWithRandomContent(long length) throws IOException {
102102
Path file = createFile(length);
103-
try (FileChannel fc = FileChannel.open(file, WRITE);) {
104-
long pos = 0L;
105-
// if the length exceeds 2 GB, skip the first 2 GB - 1 MB bytes
106-
if (length >= 2L*1024*1024*1024) {
107-
// write the last (length - 2GB - 1MB) bytes
108-
pos = 2047L*1024*1024;
109-
} else if (length > 0) {
110-
// write either the first or last bytes only
111-
long p = Math.min(Math.abs(RAND.nextLong()), length - 1);
112-
pos = RAND.nextBoolean() ? p : length - 1 - p;
113-
}
114-
fc.position(pos);
115-
int bufLength = Math.min(32768, (int)Math.min(length - pos, BIG_LENGTH));
116-
byte[] buf = new byte[bufLength];
117-
while (pos < length) {
103+
try (FileChannel fc = FileChannel.open(file, WRITE)) {
104+
if (length < 65536) {
105+
// if the length is less than 64k, write the entire file
106+
byte[] buf = new byte[(int)length];
107+
RAND.nextBytes(buf);
108+
ByteBuffer bb = ByteBuffer.wrap(buf);
109+
while (bb.hasRemaining()) {
110+
fc.write(bb);
111+
}
112+
} else {
113+
// write the first and the last 32k only
114+
byte[] buf = new byte[32768];
118115
RAND.nextBytes(buf);
119-
int len = (int)Math.min(bufLength, length - pos);
120-
pos += fc.write(ByteBuffer.wrap(buf, 0, len));
116+
ByteBuffer bb = ByteBuffer.wrap(buf);
117+
while (bb.hasRemaining()) {
118+
fc.write(bb);
119+
}
120+
bb.clear();
121+
fc.position(length - buf.length);
122+
RAND.nextBytes(buf);
123+
while (bb.hasRemaining()) {
124+
fc.write(bb);
125+
}
121126
}
122127
}
123128
return file;

0 commit comments

Comments
 (0)
Please sign in to comment.