|
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
|
@@ -100,24 +100,29 @@ static Path createFile(long length) throws IOException {
|
100 | 100 | // Creates a temporary file of a specified length with random content
|
101 | 101 | static Path createFileWithRandomContent(long length) throws IOException {
|
102 | 102 | 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]; |
118 | 115 | 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 | + } |
121 | 126 | }
|
122 | 127 | }
|
123 | 128 | return file;
|
|
0 commit comments