|
| 1 | +/* |
| 2 | + * Copyright (c) 2024, 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 | + |
| 24 | +package org.openjdk.bench.java.io; |
| 25 | + |
| 26 | +import org.openjdk.jmh.annotations.Benchmark; |
| 27 | +import org.openjdk.jmh.annotations.BenchmarkMode; |
| 28 | +import org.openjdk.jmh.annotations.Fork; |
| 29 | +import org.openjdk.jmh.annotations.Level; |
| 30 | +import org.openjdk.jmh.annotations.Measurement; |
| 31 | +import org.openjdk.jmh.annotations.Mode; |
| 32 | +import org.openjdk.jmh.annotations.OutputTimeUnit; |
| 33 | +import org.openjdk.jmh.annotations.Scope; |
| 34 | +import org.openjdk.jmh.annotations.Setup; |
| 35 | +import org.openjdk.jmh.annotations.State; |
| 36 | +import org.openjdk.jmh.annotations.Warmup; |
| 37 | +import org.openjdk.jmh.infra.Blackhole; |
| 38 | + |
| 39 | +import java.io.ByteArrayInputStream; |
| 40 | +import java.io.ByteArrayOutputStream; |
| 41 | +import java.io.DataInputStream; |
| 42 | +import java.io.DataOutputStream; |
| 43 | +import java.io.IOException; |
| 44 | +import java.io.ObjectInputStream; |
| 45 | +import java.io.ObjectOutputStream; |
| 46 | +import java.util.concurrent.ThreadLocalRandom; |
| 47 | +import java.util.concurrent.TimeUnit; |
| 48 | + |
| 49 | +@BenchmarkMode(Mode.AverageTime) |
| 50 | +@OutputTimeUnit(TimeUnit.MICROSECONDS) |
| 51 | +@Fork(value = 3, warmups = 0) |
| 52 | +@Measurement(iterations = 5, time = 1) |
| 53 | +@Warmup(iterations = 2, time = 2) |
| 54 | +@State(Scope.Thread) |
| 55 | +public class ObjectInputStreamTest { |
| 56 | + private ByteArrayInputStream utfDataAsciiMixed; |
| 57 | + private ByteArrayInputStream utfDataMixed; |
| 58 | + |
| 59 | + private ByteArrayInputStream utfDataAsciiSmall; |
| 60 | + private ByteArrayInputStream utfDataSmall; |
| 61 | + |
| 62 | + private ByteArrayInputStream utfDataAsciiLarge; |
| 63 | + private ByteArrayInputStream utfDataLarge; |
| 64 | + |
| 65 | + // Overhead of creating an ObjectInputStream is significant, need to increase the number of data elements |
| 66 | + // to balance work |
| 67 | + private static final int REPEATS = 20; |
| 68 | + |
| 69 | + |
| 70 | + @Setup(Level.Iteration) |
| 71 | + public void setup() throws IOException, ClassNotFoundException, NoSuchMethodException, IllegalAccessException { |
| 72 | + ByteArrayOutputStream baos = new ByteArrayOutputStream(); |
| 73 | + ObjectOutputStream dataOut = new ObjectOutputStream(baos); |
| 74 | + for (int i = 0; i < REPEATS; i++) { |
| 75 | + dataOut.writeUTF("small"); |
| 76 | + dataOut.writeUTF("slightly longer string that is more likely to trigger use of simd intrinsics"); |
| 77 | + } |
| 78 | + dataOut.flush(); |
| 79 | + utfDataAsciiMixed = new ByteArrayInputStream(baos.toByteArray()); |
| 80 | + |
| 81 | + baos = new ByteArrayOutputStream(); |
| 82 | + dataOut = new ObjectOutputStream(baos); |
| 83 | + for (int i = 0; i < REPEATS; i++) { |
| 84 | + dataOut.writeUTF("slightly longer string that is more likely to trigger use of simd intrinsics"); |
| 85 | + dataOut.writeUTF("slightly longer string that is more likely to trigger use of simd intrinsics"); |
| 86 | + } |
| 87 | + dataOut.flush(); |
| 88 | + utfDataAsciiLarge = new ByteArrayInputStream(baos.toByteArray()); |
| 89 | + |
| 90 | + baos = new ByteArrayOutputStream(); |
| 91 | + dataOut = new ObjectOutputStream(baos); |
| 92 | + for (int i = 0; i < REPEATS; i++) { |
| 93 | + dataOut.writeUTF("smol"); |
| 94 | + dataOut.writeUTF("smally"); |
| 95 | + } |
| 96 | + dataOut.flush(); |
| 97 | + utfDataAsciiSmall = new ByteArrayInputStream(baos.toByteArray()); |
| 98 | + |
| 99 | + baos = new ByteArrayOutputStream(); |
| 100 | + dataOut = new ObjectOutputStream(baos); |
| 101 | + for (int i = 0; i < REPEATS; i++) { |
| 102 | + dataOut.writeUTF("sm\u00FFll"); |
| 103 | + dataOut.writeUTF("slightly longer string th\u01F3t is more likely to trigger use of simd intrinsics"); |
| 104 | + } |
| 105 | + dataOut.flush(); |
| 106 | + utfDataMixed = new ByteArrayInputStream(baos.toByteArray()); |
| 107 | + |
| 108 | + baos = new ByteArrayOutputStream(); |
| 109 | + dataOut = new ObjectOutputStream(baos); |
| 110 | + for (int i = 0; i < REPEATS; i++) { |
| 111 | + dataOut.writeUTF("sm\u00F3l"); |
| 112 | + dataOut.writeUTF("small\u0132"); |
| 113 | + } |
| 114 | + dataOut.flush(); |
| 115 | + utfDataSmall = new ByteArrayInputStream(baos.toByteArray()); |
| 116 | + |
| 117 | + baos = new ByteArrayOutputStream(); |
| 118 | + dataOut = new ObjectOutputStream(baos); |
| 119 | + for (int i = 0; i < REPEATS; i++) { |
| 120 | + dataOut.writeUTF("slightly longer string that is more likely to trigg\u0131r use of simd intrinsics"); |
| 121 | + dataOut.writeUTF("slightly longer string th\u0131t is more likely to trigger use of simd intrinsics"); |
| 122 | + } |
| 123 | + dataOut.flush(); |
| 124 | + utfDataLarge = new ByteArrayInputStream(baos.toByteArray()); |
| 125 | + } |
| 126 | + |
| 127 | + @Benchmark |
| 128 | + public void readUTFAsciiMixed(Blackhole bh) throws Exception { |
| 129 | + utfDataAsciiMixed.reset(); |
| 130 | + ObjectInputStream ois = new ObjectInputStream(utfDataAsciiMixed); |
| 131 | + for (int i = 0; i < REPEATS; i++) { |
| 132 | + bh.consume(ois.readUTF()); |
| 133 | + bh.consume(ois.readUTF()); |
| 134 | + } |
| 135 | + } |
| 136 | + |
| 137 | + @Benchmark |
| 138 | + public void readUTFAsciiSmall(Blackhole bh) throws Exception { |
| 139 | + utfDataAsciiSmall.reset(); |
| 140 | + ObjectInputStream ois = new ObjectInputStream(utfDataAsciiSmall); |
| 141 | + for (int i = 0; i < REPEATS; i++) { |
| 142 | + bh.consume(ois.readUTF()); |
| 143 | + bh.consume(ois.readUTF()); |
| 144 | + } |
| 145 | + } |
| 146 | + |
| 147 | + @Benchmark |
| 148 | + public void readUTFAsciiLarge(Blackhole bh) throws Exception { |
| 149 | + utfDataAsciiLarge.reset(); |
| 150 | + ObjectInputStream ois = new ObjectInputStream(utfDataAsciiLarge); |
| 151 | + for (int i = 0; i < REPEATS; i++) { |
| 152 | + bh.consume(ois.readUTF()); |
| 153 | + bh.consume(ois.readUTF()); |
| 154 | + } |
| 155 | + } |
| 156 | + |
| 157 | + @Benchmark |
| 158 | + public void readUTFMixed(Blackhole bh) throws Exception { |
| 159 | + utfDataMixed.reset(); |
| 160 | + ObjectInputStream ois = new ObjectInputStream(utfDataMixed); |
| 161 | + for (int i = 0; i < REPEATS; i++) { |
| 162 | + bh.consume(ois.readUTF()); |
| 163 | + bh.consume(ois.readUTF()); |
| 164 | + } |
| 165 | + } |
| 166 | + |
| 167 | + @Benchmark |
| 168 | + public void readUTFSmall(Blackhole bh) throws Exception { |
| 169 | + utfDataSmall.reset(); |
| 170 | + ObjectInputStream ois = new ObjectInputStream(utfDataSmall); |
| 171 | + for (int i = 0; i < REPEATS; i++) { |
| 172 | + bh.consume(ois.readUTF()); |
| 173 | + bh.consume(ois.readUTF()); |
| 174 | + } |
| 175 | + } |
| 176 | + |
| 177 | + @Benchmark |
| 178 | + public void readUTFLarge(Blackhole bh) throws Exception { |
| 179 | + utfDataLarge.reset(); |
| 180 | + ObjectInputStream ois = new ObjectInputStream(utfDataLarge); |
| 181 | + for (int i = 0; i < REPEATS; i++) { |
| 182 | + bh.consume(ois.readUTF()); |
| 183 | + bh.consume(ois.readUTF()); |
| 184 | + } |
| 185 | + } |
| 186 | +} |
0 commit comments