net.sf.saxon.serialize.charcode.UTF16CharacterSet Maven / Gradle / Ivy
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2015 Saxonica Limited.
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package net.sf.saxon.serialize.charcode;
import net.sf.saxon.z.IntPredicate;
/**
* A class to hold some static constants and methods associated with processing UTF16 and surrogate pairs
*/
public class UTF16CharacterSet implements CharacterSet {
private static UTF16CharacterSet theInstance = new UTF16CharacterSet();
/**
* Private constructor to force the singular instance to be used
*/
private UTF16CharacterSet() {
}
/**
* Get the singular instance of this class
*
* @return the singular instance of this classthe singular instance of this class
*/
public static UTF16CharacterSet getInstance() {
return theInstance;
}
public boolean inCharset(int c) {
return true;
}
public String getCanonicalName() {
return "UTF-16";
}
public static final int NONBMP_MIN = 0x10000;
public static final int NONBMP_MAX = 0x10FFFF;
public static final char SURROGATE1_MIN = 0xD800;
public static final char SURROGATE1_MAX = 0xDBFF;
public static final char SURROGATE2_MIN = 0xDC00;
public static final char SURROGATE2_MAX = 0xDFFF;
/**
* Return the non-BMP character corresponding to a given surrogate pair
* surrogates.
*
* @param high The high surrogate.
* @param low The low surrogate.
* @return the Unicode codepoint represented by the surrogate pair
*/
public static int combinePair(char high, char low) {
return (high - SURROGATE1_MIN) * 0x400 + (low - SURROGATE2_MIN) + NONBMP_MIN;
}
/**
* Return the high surrogate of a non-BMP character
*
* @param ch The Unicode codepoint of the non-BMP character to be divided.
* @return the first character in the surrogate pair
*/
public static char highSurrogate(int ch) {
return (char) (((ch - NONBMP_MIN) >> 10) + SURROGATE1_MIN);
}
/**
* Return the low surrogate of a non-BMP character
*
* @param ch The Unicode codepoint of the non-BMP character to be divided.
* @return the second character in the surrogate pair
*/
public static char lowSurrogate(int ch) {
return (char) (((ch - NONBMP_MIN) & 0x3FF) + SURROGATE2_MIN);
}
/**
* Test whether a given character is a surrogate (high or low)
*
* @param c the character to test
* @return true if the character is the high or low half of a surrogate pair
*/
public static boolean isSurrogate(int c) {
return (c & 0xF800) == 0xD800;
}
/**
* Test whether the given character is a high surrogate
*
* @param ch The character to test.
* @return true if the character is the first character in a surrogate pair
*/
public static boolean isHighSurrogate(int ch) {
return (SURROGATE1_MIN <= ch && ch <= SURROGATE1_MAX);
}
/**
* Test whether the given character is a low surrogate
*
* @param ch The character to test.
* @return true if the character is the second character in a surrogate pair
*/
public static boolean isLowSurrogate(int ch) {
return (SURROGATE2_MIN <= ch && ch <= SURROGATE2_MAX);
}
/**
* Test whether a CharSequence contains any surrogates (i.e. any non-BMP characters
*
* @param s the string to be tested
*/
public static boolean containsSurrogates(/*@NotNull*/ CharSequence s) {
for (int i = 0; i < s.length(); i++) {
if (isSurrogate(s.charAt(i))) {
return true;
}
}
return false;
}
/**
* Test whether all the characters in a CharSequence are valid XML characters
*
* @param chars the character sequence to be tested
* @param predicate the predicate that all characters must satisfy
* @return the codepoint of the first invalid character in the character sequence (according to the supplied predicate);
* or -1 if all characters in the character sequence are valid
*/
public static int firstInvalidChar(CharSequence chars, IntPredicate predicate) {
for (int c = 0; c < chars.length(); c++) {
int ch32 = chars.charAt(c);
if (UTF16CharacterSet.isHighSurrogate(ch32)) {
char low = chars.charAt(c++);
ch32 = UTF16CharacterSet.combinePair((char) ch32, low);
}
if (!predicate.matches(ch32)) {
return ch32;
}
}
return -1;
}
public static void main(String[] args) {
System.err.println(Integer.toHexString(highSurrogate(0xeffff)));
System.err.println(Integer.toHexString(lowSurrogate(0xeffff)));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy