8245309: Re-examine use of ThreadLocalCoders in sun.net.www.ParseUtil
Reviewed-by: shade, dfuchs, alanb, chegar
This commit is contained in:
parent
60c4902f61
commit
e0cf023263
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 1998, 2019, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1998, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -34,10 +34,10 @@ import java.nio.ByteBuffer;
|
|||||||
import java.nio.CharBuffer;
|
import java.nio.CharBuffer;
|
||||||
import java.nio.charset.CharacterCodingException;
|
import java.nio.charset.CharacterCodingException;
|
||||||
import java.nio.charset.CharsetDecoder;
|
import java.nio.charset.CharsetDecoder;
|
||||||
|
import java.nio.charset.CharsetEncoder;
|
||||||
import java.nio.charset.CoderResult;
|
import java.nio.charset.CoderResult;
|
||||||
import java.nio.charset.CodingErrorAction;
|
import java.nio.charset.CodingErrorAction;
|
||||||
|
|
||||||
import sun.nio.cs.ThreadLocalCoders;
|
|
||||||
import sun.nio.cs.UTF_8;
|
import sun.nio.cs.UTF_8;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -177,9 +177,9 @@ public final class ParseUtil {
|
|||||||
StringBuilder sb = new StringBuilder(n);
|
StringBuilder sb = new StringBuilder(n);
|
||||||
ByteBuffer bb = ByteBuffer.allocate(n);
|
ByteBuffer bb = ByteBuffer.allocate(n);
|
||||||
CharBuffer cb = CharBuffer.allocate(n);
|
CharBuffer cb = CharBuffer.allocate(n);
|
||||||
CharsetDecoder dec = ThreadLocalCoders.decoderFor(UTF_8.INSTANCE)
|
CharsetDecoder dec = UTF_8.INSTANCE.newDecoder()
|
||||||
.onMalformedInput(CodingErrorAction.REPORT)
|
.onMalformedInput(CodingErrorAction.REPORT)
|
||||||
.onUnmappableCharacter(CodingErrorAction.REPORT);
|
.onUnmappableCharacter(CodingErrorAction.REPORT);
|
||||||
|
|
||||||
char c = s.charAt(0);
|
char c = s.charAt(0);
|
||||||
for (int i = 0; i < n;) {
|
for (int i = 0; i < n;) {
|
||||||
@ -451,6 +451,7 @@ public final class ParseUtil {
|
|||||||
private static String quote(String s, long lowMask, long highMask) {
|
private static String quote(String s, long lowMask, long highMask) {
|
||||||
int n = s.length();
|
int n = s.length();
|
||||||
StringBuilder sb = null;
|
StringBuilder sb = null;
|
||||||
|
CharsetEncoder encoder = null;
|
||||||
boolean allowNonASCII = ((lowMask & L_ESCAPED) != 0);
|
boolean allowNonASCII = ((lowMask & L_ESCAPED) != 0);
|
||||||
for (int i = 0; i < s.length(); i++) {
|
for (int i = 0; i < s.length(); i++) {
|
||||||
char c = s.charAt(i);
|
char c = s.charAt(i);
|
||||||
@ -468,11 +469,14 @@ public final class ParseUtil {
|
|||||||
} else if (allowNonASCII
|
} else if (allowNonASCII
|
||||||
&& (Character.isSpaceChar(c)
|
&& (Character.isSpaceChar(c)
|
||||||
|| Character.isISOControl(c))) {
|
|| Character.isISOControl(c))) {
|
||||||
|
if (encoder == null) {
|
||||||
|
encoder = UTF_8.INSTANCE.newEncoder();
|
||||||
|
}
|
||||||
if (sb == null) {
|
if (sb == null) {
|
||||||
sb = new StringBuilder();
|
sb = new StringBuilder();
|
||||||
sb.append(s, 0, i);
|
sb.append(s, 0, i);
|
||||||
}
|
}
|
||||||
appendEncoded(sb, c);
|
appendEncoded(encoder, sb, c);
|
||||||
} else {
|
} else {
|
||||||
if (sb != null)
|
if (sb != null)
|
||||||
sb.append(c);
|
sb.append(c);
|
||||||
@ -494,11 +498,11 @@ public final class ParseUtil {
|
|||||||
&& match(s.charAt(pos + 2), L_HEX, H_HEX);
|
&& match(s.charAt(pos + 2), L_HEX, H_HEX);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void appendEncoded(StringBuilder sb, char c) {
|
private static void appendEncoded(CharsetEncoder encoder,
|
||||||
|
StringBuilder sb, char c) {
|
||||||
ByteBuffer bb = null;
|
ByteBuffer bb = null;
|
||||||
try {
|
try {
|
||||||
bb = ThreadLocalCoders.encoderFor(UTF_8.INSTANCE)
|
bb = encoder.encode(CharBuffer.wrap("" + c));
|
||||||
.encode(CharBuffer.wrap("" + c));
|
|
||||||
} catch (CharacterCodingException x) {
|
} catch (CharacterCodingException x) {
|
||||||
assert false;
|
assert false;
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,74 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
|
||||||
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
|
*
|
||||||
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
* under the terms of the GNU General Public License version 2 only, as
|
||||||
|
* published by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||||
|
* version 2 for more details (a copy is included in the LICENSE file that
|
||||||
|
* accompanied this code).
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License version
|
||||||
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||||
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
*
|
||||||
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||||
|
* or visit www.oracle.com if you need additional information or have any
|
||||||
|
* questions.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.openjdk.bench.java.net;
|
||||||
|
|
||||||
|
import org.openjdk.jmh.annotations.State;
|
||||||
|
import org.openjdk.jmh.annotations.Scope;
|
||||||
|
import org.openjdk.jmh.annotations.Benchmark;
|
||||||
|
import org.openjdk.jmh.annotations.Fork;
|
||||||
|
import org.openjdk.jmh.annotations.CompilerControl;
|
||||||
|
import org.openjdk.jmh.annotations.BenchmarkMode;
|
||||||
|
import org.openjdk.jmh.annotations.Mode;
|
||||||
|
import org.openjdk.jmh.annotations.OutputTimeUnit;
|
||||||
|
import org.openjdk.jmh.annotations.Setup;
|
||||||
|
|
||||||
|
import java.lang.invoke.MethodHandle;
|
||||||
|
import java.lang.invoke.MethodHandles;
|
||||||
|
import java.net.URI;
|
||||||
|
import java.net.URL;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
|
import static java.lang.invoke.MethodType.methodType;
|
||||||
|
|
||||||
|
@BenchmarkMode(Mode.AverageTime)
|
||||||
|
@OutputTimeUnit(TimeUnit.NANOSECONDS)
|
||||||
|
@State(Scope.Thread)
|
||||||
|
@Fork(value = 1, jvmArgsAppend = "--add-exports=java.base/sun.net.www=ALL-UNNAMED")
|
||||||
|
public class ThreadLocalParseUtil {
|
||||||
|
|
||||||
|
private static final MethodHandle MH_DECODE;
|
||||||
|
private static final MethodHandle MH_TO_URI;
|
||||||
|
|
||||||
|
static {
|
||||||
|
final MethodHandles.Lookup lookup = MethodHandles.lookup();
|
||||||
|
try {
|
||||||
|
Class<?> c = Class.forName("sun.net.www.ParseUtil");
|
||||||
|
MH_DECODE = lookup.findStatic(c, "decode", methodType(String.class, String.class));
|
||||||
|
MH_TO_URI = lookup.findStatic(c, "toURI", methodType(URI.class, URL.class));
|
||||||
|
} catch (ClassNotFoundException | NoSuchMethodException | IllegalAccessException e) {
|
||||||
|
throw new ExceptionInInitializerError(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Benchmark
|
||||||
|
public String decodeTest() throws Throwable {
|
||||||
|
return (String) MH_DECODE.invokeExact("/xyz/\u00A0\u00A0");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Benchmark
|
||||||
|
public URI appendEncodedTest() throws Throwable {
|
||||||
|
URL url = new URL("https://example.com/xyz/abc/def?query=#30");
|
||||||
|
return (URI) MH_TO_URI.invokeExact(url);
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user