25
25
* @test
26
26
* @bug 8268435 8274780
27
27
* @summary Verify ChannelInputStream methods readAllBytes and readNBytes
28
- * @requires vm.bits == 64
28
+ * @requires (sun.arch.data.model == "64" & os.maxMemory >= 16g)
29
29
* @library ..
30
30
* @library /test/lib
31
31
* @build jdk.test.lib.RandomFactory
32
32
* @modules java.base/jdk.internal.util
33
- * @run testng/othervm/timeout=900 -Xmx8G ReadXBytes
33
+ * @run testng/othervm/timeout=900 -Xmx12G ReadXBytes
34
34
* @key randomness
35
35
*/
36
36
import java .io .File ;
37
37
import java .io .FileInputStream ;
38
38
import java .io .FilterInputStream ;
39
39
import java .io .InputStream ;
40
40
import java .io .IOException ;
41
- import java .io . RandomAccessFile ;
41
+ import java .nio . ByteBuffer ;
42
42
import java .nio .channels .Channel ;
43
43
import java .nio .channels .Channels ;
44
44
import java .nio .channels .FileChannel ;
45
45
import java .nio .channels .ReadableByteChannel ;
46
46
import java .nio .channels .SeekableByteChannel ;
47
47
import java .nio .file .Files ;
48
48
import java .nio .file .Path ;
49
- import static java .nio .file .StandardOpenOption .READ ;
50
49
import java .util .List ;
51
50
import java .util .Random ;
52
51
import jdk .internal .util .ArraysSupport ;
53
52
53
+ import static java .nio .file .StandardOpenOption .*;
54
+
54
55
import jdk .test .lib .RandomFactory ;
55
56
56
57
import org .testng .Assert ;
@@ -72,30 +73,51 @@ public class ReadXBytes {
72
73
// A length greater than a 32-bit integer can accommodate
73
74
private static final long HUGE_LENGTH = Integer .MAX_VALUE + 27L ;
74
75
76
+ // Current directory
77
+ private static final Path DIR = Path .of (System .getProperty ("test.dir" , "." ));
78
+
75
79
// --- Framework ---
76
80
81
+ // Create a temporary file path
82
+ static Path createFilePath () {
83
+ String name = String .format ("ReadXBytes%d.tmp" , System .nanoTime ());
84
+ return DIR .resolve (name );
85
+ }
86
+
77
87
// Creates a temporary file of a specified length with undefined content
78
88
static Path createFile (long length ) throws IOException {
79
- File file = File .createTempFile ("foo" , ".bar" );
80
- file .deleteOnExit ();
81
- try (RandomAccessFile raf = new RandomAccessFile (file , "rw" )) {
82
- raf .setLength (length );
89
+ Path path = createFilePath ();
90
+ path .toFile ().deleteOnExit ();
91
+ try (FileChannel fc = FileChannel .open (path , CREATE_NEW , SPARSE , WRITE )) {
92
+ if (length > 0 ) {
93
+ fc .position (length - 1 );
94
+ fc .write (ByteBuffer .wrap (new byte [] {27 }));
95
+ }
83
96
}
84
- return file . toPath () ;
97
+ return path ;
85
98
}
86
99
87
100
// Creates a temporary file of a specified length with random content
88
101
static Path createFileWithRandomContent (long length ) throws IOException {
89
102
Path file = createFile (length );
90
- try (RandomAccessFile raf = new RandomAccessFile (file .toFile (), "rw" )) {
91
- long written = 0L ;
92
- int bufLength = Math .min (32768 , (int )Math .min (length , BIG_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 ));
93
116
byte [] buf = new byte [bufLength ];
94
- while (written < length ) {
117
+ while (pos < length ) {
95
118
RAND .nextBytes (buf );
96
- int len = (int )Math .min (bufLength , length - written );
97
- raf .write (buf , 0 , len );
98
- written += len ;
119
+ int len = (int )Math .min (bufLength , length - pos );
120
+ pos += fc .write (ByteBuffer .wrap (buf , 0 , len ));
99
121
}
100
122
}
101
123
return file ;
0 commit comments