1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
29
29
* @library ..
30
30
* @library /test/lib
31
31
* @build jdk.test.lib.RandomFactory
32
- * @run main/othervm/timeout=240 -Xmx4G LargeGatheringWrite
32
+ * @run main/othervm/timeout=480 -Xmx4G LargeGatheringWrite
33
33
* @key randomness
34
34
*/
35
35
import java .io .IOException ;
@@ -51,7 +51,17 @@ public class LargeGatheringWrite {
51
51
52
52
private static final Random RND = RandomFactory .getRandom ();
53
53
54
+ private static long t0 ;
55
+
56
+ private static void printTime (String msg ) {
57
+ System .out .printf ("TIMESTAMP: %-16s: %f seconds%n" , msg ,
58
+ (System .nanoTime () - t0 )/1000000000.0 );
59
+ }
60
+
54
61
public static void main (String [] args ) throws IOException {
62
+ t0 = System .nanoTime ();
63
+ printTime ("start" );
64
+
55
65
// Create direct and heap buffers
56
66
ByteBuffer direct = ByteBuffer .allocateDirect (GB );
57
67
ByteBuffer heap = ByteBuffer .allocate (GB );
@@ -83,6 +93,7 @@ public static void main(String[] args) throws IOException {
83
93
// Write the data to a temporary file
84
94
Path tempFile = Files .createTempFile ("LargeGatheringWrite" , ".dat" );
85
95
96
+ printTime ("before writing" );
86
97
System .out .printf ("Writing %d bytes of data...%n" , totalLength );
87
98
try (FileChannel fcw = FileChannel .open (tempFile , CREATE , WRITE );) {
88
99
// Print size of individual writes and total number written
@@ -93,11 +104,14 @@ public static void main(String[] args) throws IOException {
93
104
bytesWritten += n ;
94
105
}
95
106
System .out .printf ("Total of %d bytes written\n " , bytesWritten );
107
+ printTime ("after writing" );
96
108
97
109
// Verify the content written
98
110
try (FileChannel fcr = FileChannel .open (tempFile , READ );) {
99
111
byte [] bytes = null ;
100
112
for (ByteBuffer buf : bigBuffers ) {
113
+ printTime ("before verifying" );
114
+
101
115
// For each buffer read the corresponding number of bytes
102
116
buf .rewind ();
103
117
int length = buf .remaining ();
@@ -117,10 +131,13 @@ public static void main(String[] args) throws IOException {
117
131
String msg = String .format ("mismatch: %d%n" , mismatch );
118
132
throw new RuntimeException (msg );
119
133
}
134
+
135
+ printTime ("after verifying" );
120
136
}
121
137
}
122
138
} finally {
123
139
Files .delete (tempFile );
124
140
}
141
+ printTime ("end" );
125
142
}
126
143
}
0 commit comments