|
| 1 | +/* |
| 2 | + * Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 5 | + * This code is free software; you can redistribute it and/or modify it |
| 6 | + * under the terms of the GNU General Public License version 2 only, as |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + */ |
| 23 | +package org.openjdk.bench.jdk.nio.zipfs; |
| 24 | + |
| 25 | +import org.openjdk.jmh.annotations.*; |
| 26 | +import org.openjdk.jmh.infra.Blackhole; |
| 27 | + |
| 28 | +import java.io.IOException; |
| 29 | +import java.io.InputStream; |
| 30 | +import java.nio.file.FileSystem; |
| 31 | +import java.nio.file.Files; |
| 32 | +import java.nio.file.Path; |
| 33 | +import java.nio.file.spi.FileSystemProvider; |
| 34 | +import java.util.Map; |
| 35 | +import java.util.Random; |
| 36 | +import java.util.concurrent.TimeUnit; |
| 37 | + |
| 38 | +@BenchmarkMode(Mode.AverageTime) |
| 39 | +@Warmup(iterations = 5, time = 500, timeUnit = TimeUnit.MILLISECONDS) |
| 40 | +@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS) |
| 41 | +@State(Scope.Benchmark) |
| 42 | +@Threads(Threads.MAX) |
| 43 | +@OutputTimeUnit(TimeUnit.MILLISECONDS) |
| 44 | +@Fork(value = 3) |
| 45 | +public class ZipFileSystemBenchmark { |
| 46 | + private static final String FILE_NAME = "filename"; |
| 47 | + private FileSystemProvider jarFsProvider; |
| 48 | + private Path readPath; |
| 49 | + private FileSystem fileSystem; |
| 50 | + private Path zip; |
| 51 | + |
| 52 | + @Setup(Level.Trial) public void setup() throws IOException { |
| 53 | + jarFsProvider = FileSystemProvider.installedProviders().stream().filter(x -> x.getScheme().equals("jar")).findFirst().get(); |
| 54 | + zip = Files.createTempFile("zipfs-benchmark", ".jar"); |
| 55 | + createTestZip(); |
| 56 | + fileSystem = jarFsProvider.newFileSystem(zip, Map.of()); |
| 57 | + Path rootRead = fileSystem.getRootDirectories().iterator().next(); |
| 58 | + readPath = rootRead.resolve(FILE_NAME); |
| 59 | + } |
| 60 | + |
| 61 | + private void createTestZip() throws IOException { |
| 62 | + Files.delete(zip); |
| 63 | + FileSystem writableFileSystem = jarFsProvider.newFileSystem(zip, Map.of("create", "true")); |
| 64 | + byte[] data = new byte[16 * 1024 * 1024]; |
| 65 | + new Random(31).nextBytes(data); |
| 66 | + Path root = writableFileSystem.getRootDirectories().iterator().next(); |
| 67 | + Files.write(root.resolve(FILE_NAME), data); |
| 68 | + writableFileSystem.close(); |
| 69 | + } |
| 70 | + |
| 71 | + @TearDown public void tearDown() throws IOException { |
| 72 | + if (fileSystem != null) { |
| 73 | + fileSystem.close(); |
| 74 | + } |
| 75 | + Files.deleteIfExists(zip); |
| 76 | + } |
| 77 | + |
| 78 | + // Performance should remain constant when varying the number of threads up to the |
| 79 | + // number of physical cores if the NIO implementation on the platform supports |
| 80 | + // concurrent reads to a single FileChannel instance. At the time of writing, NIO on Windows |
| 81 | + // serializes access. |
| 82 | + @Benchmark public void read(Blackhole bh) throws IOException { |
| 83 | + InputStream inputStream = Files.newInputStream(readPath); |
| 84 | + byte[] buffer = new byte[8192]; |
| 85 | + while (inputStream.read(buffer) != -1) { |
| 86 | + bh.consume(buffer); |
| 87 | + } |
| 88 | + } |
| 89 | +} |
0 commit comments