-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 1. update 1.3.11 2. add CharsetUtil * add ut for CharsetUtil * add ut * add ut * update format * update format --------- Co-authored-by: “HzjNeverStop” <“441627022@qq.com”>
- Loading branch information
1 parent
9ed95ec
commit efa6342
Showing
3 changed files
with
270 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
202 changes: 202 additions & 0 deletions
202
src/main/java/com/alipay/sofa/common/utils/CharsetUtil.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,202 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.alipay.sofa.common.utils; | ||
|
||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
import java.nio.charset.StandardCharsets; | ||
|
||
/** | ||
* Util to determine Charsets, the implements fork from guava. | ||
* | ||
* @author huzijie | ||
* @version CharsetUtil.java, v 0.1 2023年04月14日 2:06 PM huzijie Exp $ | ||
* @see com.google.common.base.Utf8#isWellFormed(byte[]) | ||
*/ | ||
public class CharsetUtil { | ||
|
||
public static Logger CHARSET_MONITOR_LOG = LoggerFactory.getLogger("CHARSET_MONITOR_LOG"); | ||
|
||
public static final int MODE_ASSERT = 0; | ||
|
||
public static final int MODE_MONITOR = 1; | ||
|
||
/** | ||
* Asserts the given byte array is well formed in UTF-8 encoding format. | ||
* @param bytes The byte array to be checked. | ||
*/ | ||
public static void assertUTF8WellFormed(byte[] bytes) { | ||
checkUTF8WellFormed(bytes, MODE_ASSERT); | ||
} | ||
|
||
/** | ||
* Asserts that a portion of the given byte array is well formed in UTF-8 encoding format. | ||
* @param bytes The byte array to be checked. | ||
* @param off The starting position in the array to be checked. | ||
* @param len The length of the portion to be checked. | ||
*/ | ||
public static void assertUTF8WellFormed(byte[] bytes, int off, int len) { | ||
checkUTF8WellFormed(bytes, off, len, MODE_ASSERT); | ||
} | ||
|
||
/** | ||
* Monitor the given byte array is well formed in UTF-8 encoding format. | ||
* @param bytes The byte array to be checked. | ||
*/ | ||
public static void monitorUTF8WellFormed(byte[] bytes) { | ||
checkUTF8WellFormed(bytes, MODE_MONITOR); | ||
} | ||
|
||
/** | ||
* Monitor that a portion of the given byte array is well formed in UTF-8 encoding format. | ||
* @param bytes The byte array to be checked. | ||
* @param off The starting position in the array to be checked. | ||
* @param len The length of the portion to be checked. | ||
*/ | ||
public static void monitorUTF8WellFormed(byte[] bytes, int off, int len) { | ||
checkUTF8WellFormed(bytes, off, len, MODE_MONITOR); | ||
} | ||
|
||
/** | ||
* Checks whether the given byte array is well formed in UTF-8 encoding format. | ||
* @param bytes The byte array to be checked. | ||
* @param mode The checking mode when bytes isn't well formed in UTF-8 encoding forma . | ||
* <p>In mode 0, it will throw IllegalArgumentException. | ||
* <p>In mode 1, it will print error log in slf4j logger: CHARSET_MONITOR_LOG | ||
*/ | ||
public static void checkUTF8WellFormed(byte[] bytes, int mode) { | ||
checkUTF8WellFormed(bytes, 0, bytes.length, mode); | ||
} | ||
|
||
/** | ||
* Checks whether a portion of the given byte array is well formed in UTF-8 encoding format. | ||
* @param bytes The byte array to be checked. | ||
* @param off The starting position in the array to be checked. | ||
* @param len The length of the portion to be checked. | ||
* @param mode The checking mode when bytes isn't well formed in UTF-8 encoding forma . | ||
* <p>In mode 0, it will throw IllegalArgumentException. | ||
* <p>In mode 1, it will print error log in slf4j logger: CHARSET_MONITOR_LOG | ||
*/ | ||
public static void checkUTF8WellFormed(byte[] bytes, int off, int len, int mode) { | ||
if (!isUTF8WellFormed(bytes, off, len)) { | ||
switch (mode) { | ||
case MODE_ASSERT: | ||
throw new IllegalArgumentException("Input byte array is not well formed utf-8"); | ||
case MODE_MONITOR: | ||
CHARSET_MONITOR_LOG.error("Detect not well formed utf-8 input: {}", new String( | ||
bytes, off, len, StandardCharsets.UTF_8)); | ||
default: | ||
} | ||
} | ||
} | ||
|
||
/** | ||
* | ||
* Determines whether the given byte array is well formed in UTF-8 encoding format according to Unicode 6.0. | ||
* @param bytes The byte array to be checked. | ||
* | ||
* @return true if the byte array is in well formed UTF-8 encoding format, false otherwise | ||
*/ | ||
public static boolean isUTF8WellFormed(byte[] bytes) { | ||
return isUTF8WellFormed(bytes, 0, bytes.length); | ||
} | ||
|
||
/** | ||
* | ||
* Determines whether a portion of the given byte array is well formed in UTF-8 encoding format according to Unicode 6.0. | ||
* @see com.google.common.base.Utf8#isWellFormed(byte[], int, int) | ||
* @param bytes The byte array to be checked. | ||
* @param off The starting position in the array to be checked. | ||
* @param len The length of the portion to be checked. | ||
* | ||
* @return true if the byte array is in well formed UTF-8 encoding format, false otherwise | ||
*/ | ||
public static boolean isUTF8WellFormed(byte[] bytes, int off, int len) { | ||
int end = off + len; | ||
if (off < 0 || end < off || end > bytes.length) { | ||
throw new IndexOutOfBoundsException("Illegal input arguments, start: " + off | ||
+ ", end: " + end + ", size: " + bytes.length); | ||
} | ||
// Look for the first non-ASCII character. | ||
for (int i = off; i < end; i++) { | ||
if (bytes[i] < 0) { | ||
return isWellFormedSlowPath(bytes, i, end); | ||
} | ||
} | ||
return true; | ||
} | ||
|
||
private static boolean isWellFormedSlowPath(byte[] bytes, int off, int end) { | ||
int index = off; | ||
while (true) { | ||
int byte1; | ||
|
||
// Optimize for interior runs of ASCII bytes. | ||
do { | ||
if (index >= end) { | ||
return true; | ||
} | ||
} while ((byte1 = bytes[index++]) >= 0); | ||
|
||
if (byte1 < (byte) 0xE0) { | ||
// Two-byte form. | ||
if (index == end) { | ||
return false; | ||
} | ||
// Simultaneously check for illegal trailing-byte in leading position | ||
// and overlong 2-byte form. | ||
if (byte1 < (byte) 0xC2 || bytes[index++] > (byte) 0xBF) { | ||
return false; | ||
} | ||
} else if (byte1 < (byte) 0xF0) { | ||
// Three-byte form. | ||
if (index + 1 >= end) { | ||
return false; | ||
} | ||
int byte2 = bytes[index++]; | ||
if (byte2 > (byte) 0xBF | ||
// Overlong? 5 most significant bits must not all be zero. | ||
|| (byte1 == (byte) 0xE0 && byte2 < (byte) 0xA0) | ||
// Check for illegal surrogate codepoints. | ||
|| (byte1 == (byte) 0xED && (byte) 0xA0 <= byte2) | ||
// Third byte trailing-byte test. | ||
|| bytes[index++] > (byte) 0xBF) { | ||
return false; | ||
} | ||
} else { | ||
// Four-byte form. | ||
if (index + 2 >= end) { | ||
return false; | ||
} | ||
int byte2 = bytes[index++]; | ||
if (byte2 > (byte) 0xBF | ||
// Check that 1 <= plane <= 16. Tricky optimized form of: | ||
// if (byte1 > (byte) 0xF4 | ||
// || byte1 == (byte) 0xF0 && byte2 < (byte) 0x90 | ||
// || byte1 == (byte) 0xF4 && byte2 > (byte) 0x8F) | ||
|| (((byte1 << 28) + (byte2 - (byte) 0x90)) >> 30) != 0 | ||
// Third byte trailing-byte test | ||
|| bytes[index++] > (byte) 0xBF | ||
// Fourth byte trailing-byte test | ||
|| bytes[index++] > (byte) 0xBF) { | ||
return false; | ||
} | ||
} | ||
} | ||
} | ||
} |
67 changes: 67 additions & 0 deletions
67
src/test/java/com/alipay/sofa/common/utils/CharsetUtilTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.alipay.sofa.common.utils; | ||
|
||
import org.junit.Assert; | ||
import org.junit.Test; | ||
|
||
import java.io.UnsupportedEncodingException; | ||
import java.nio.charset.StandardCharsets; | ||
|
||
/** | ||
* @author huzijie | ||
* @version CharsetUtilTest.java, v 0.1 2023年05月26日 10:29 AM huzijie Exp $ | ||
*/ | ||
public class CharsetUtilTest { | ||
|
||
private final String input = "一个中文字符串"; | ||
private final byte[] utf8 = input.getBytes(StandardCharsets.UTF_8); | ||
private final byte[] gbk = input.getBytes("GBK"); | ||
|
||
public CharsetUtilTest() throws UnsupportedEncodingException { | ||
} | ||
|
||
@Test | ||
public void testAssertUtf8WellFormed() { | ||
CharsetUtil.assertUTF8WellFormed(utf8); | ||
Assert.assertThrows(IllegalArgumentException.class, () -> CharsetUtil.assertUTF8WellFormed(gbk)); | ||
} | ||
|
||
@Test | ||
public void testMonitorUtf8WellFormed() { | ||
CharsetUtil.monitorUTF8WellFormed(utf8); | ||
CharsetUtil.monitorUTF8WellFormed(gbk); | ||
} | ||
|
||
@Test | ||
public void testCheckUtf8WellFormed() { | ||
CharsetUtil.checkUTF8WellFormed(utf8, 0); | ||
Assert.assertThrows(IllegalArgumentException.class, () -> CharsetUtil.checkUTF8WellFormed(gbk, 0)); | ||
|
||
CharsetUtil.checkUTF8WellFormed(utf8, 1); | ||
CharsetUtil.checkUTF8WellFormed(gbk, 1); | ||
} | ||
|
||
@Test | ||
public void testIsUtf8WellFormed() { | ||
Assert.assertTrue(CharsetUtil.isUTF8WellFormed(utf8)); | ||
Assert.assertFalse(CharsetUtil.isUTF8WellFormed(gbk)); | ||
|
||
Assert.assertTrue(CharsetUtil.isUTF8WellFormed(utf8, 0, 3)); | ||
Assert.assertFalse(CharsetUtil.isUTF8WellFormed(gbk, 0, 3)); | ||
} | ||
} |