-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathStringUtilBenchmark.java
More file actions
147 lines (133 loc) · 5.27 KB
/
StringUtilBenchmark.java
File metadata and controls
147 lines (133 loc) · 5.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/*
* MIT License
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.github.packageurl.internal;
import static com.github.packageurl.internal.StringUtil.PCHAR;
import java.nio.charset.StandardCharsets;
import java.util.Locale;
import java.util.Random;
import java.util.concurrent.TimeUnit;
import org.openjdk.jmh.annotations.Benchmark;
import org.openjdk.jmh.annotations.BenchmarkMode;
import org.openjdk.jmh.annotations.Mode;
import org.openjdk.jmh.annotations.OutputTimeUnit;
import org.openjdk.jmh.annotations.Param;
import org.openjdk.jmh.annotations.Scope;
import org.openjdk.jmh.annotations.Setup;
import org.openjdk.jmh.annotations.State;
import org.openjdk.jmh.infra.Blackhole;
/**
* Measures the performance of performance StringUtil's decoding and encoding.
* <p>
* Run the benchmark with:
* </p>
* <pre>
* mvn -Pbenchmark
* </pre>
* <p>
* To pass arguments to JMH use:
* </p>
* <pre>
* mvn -Pbenchmark -Djmh.args="<arguments>"
* </pre>
*/
@BenchmarkMode(Mode.AverageTime)
@OutputTimeUnit(TimeUnit.MICROSECONDS)
@State(Scope.Benchmark)
public class StringUtilBenchmark {
private static final int DATA_COUNT = 1000;
private static final int DECODED_LENGTH = 256;
private static final byte[] UNRESERVED =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-._~".getBytes(StandardCharsets.US_ASCII);
@Param({"0", "0.1", "0.5"})
private double nonAsciiProb;
private String[] decodedData;
private String[] encodedData;
@Setup
public void setup() {
decodedData = createDecodedData();
encodedData = encodeData(decodedData);
}
private String[] createDecodedData() {
Random random = new Random();
String[] decodedData = new String[DATA_COUNT];
for (int i = 0; i < DATA_COUNT; i++) {
char[] chars = new char[DECODED_LENGTH];
for (int j = 0; j < DECODED_LENGTH; j++) {
if (random.nextDouble() < nonAsciiProb) {
chars[j] = (char) (Byte.MAX_VALUE + 1 + random.nextInt(Short.MAX_VALUE - Byte.MAX_VALUE - 1));
} else {
chars[j] = (char) UNRESERVED[random.nextInt(UNRESERVED.length)];
}
}
decodedData[i] = new String(chars);
}
return decodedData;
}
private static String[] encodeData(String[] decodedData) {
String[] encodedData = new String[decodedData.length];
for (int i = 0; i < encodedData.length; i++) {
encodedData[i] = StringUtil.percentEncode(decodedData[i], PCHAR);
if (!StringUtil.percentDecode(encodedData[i]).equals(decodedData[i])) {
throw new RuntimeException(
"Invalid implementation of `percentEncode` and `percentDecode`.\nOriginal data: "
+ encodedData[i] + "\nEncoded and decoded data: "
+ StringUtil.percentDecode(encodedData[i]));
}
}
return encodedData;
}
@Benchmark
public void baseline(Blackhole blackhole) {
for (int i = 0; i < DATA_COUNT; i++) {
byte[] buffer = decodedData[i].getBytes(StandardCharsets.UTF_8);
// Prevent JIT compiler from assuming the buffer was not modified
for (int idx = 0; idx < buffer.length; idx++) {
buffer[idx] ^= 0x20;
}
blackhole.consume(new String(buffer, StandardCharsets.UTF_8));
}
}
@Benchmark
public void toLowerCaseJre(Blackhole blackhole) {
for (int i = 0; i < DATA_COUNT; i++) {
blackhole.consume(decodedData[i].toLowerCase(Locale.ROOT));
}
}
@Benchmark
public void toLowerCase(Blackhole blackhole) {
for (int i = 0; i < DATA_COUNT; i++) {
blackhole.consume(StringUtil.toLowerCase(decodedData[i]));
}
}
@Benchmark
public void percentDecode(final Blackhole blackhole) {
for (int i = 0; i < DATA_COUNT; i++) {
blackhole.consume(StringUtil.percentDecode(encodedData[i]));
}
}
@Benchmark
public void percentEncode(final Blackhole blackhole) {
for (int i = 0; i < DATA_COUNT; i++) {
blackhole.consume(StringUtil.percentEncode(decodedData[i], PCHAR));
}
}
}