UnicodeUnescaper.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.lang3.text.translate;

  18. import java.io.IOException;
  19. import java.io.Writer;

  20. /**
  21.  * Translates escaped Unicode values of the form \\u+\d\d\d\d back to
  22.  * Unicode. It supports multiple 'u' characters and will work with or
  23.  * without the +.
  24.  *
  25.  * @since 3.0
  26.  * @deprecated As of 3.6, use Apache Commons Text
  27.  * <a href="https://commons.apache.org/proper/commons-text/javadocs/api-release/org/apache/commons/text/translate/UnicodeUnescaper.html">
  28.  * UnicodeUnescaper</a> instead
  29.  */
  30. @Deprecated
  31. public class UnicodeUnescaper extends CharSequenceTranslator {

  32.     /**
  33.      * Constructs a new instance.
  34.      */
  35.     public UnicodeUnescaper() {
  36.         // empty
  37.     }

  38.     /**
  39.      * {@inheritDoc}
  40.      */
  41.     @Override
  42.     public int translate(final CharSequence input, final int index, final Writer out) throws IOException {
  43.         if (input.charAt(index) == '\\' && index + 1 < input.length() && input.charAt(index + 1) == 'u') {
  44.             // consume optional additional 'u' chars
  45.             int i = 2;
  46.             while (index + i < input.length() && input.charAt(index + i) == 'u') {
  47.                 i++;
  48.             }

  49.             if (index + i < input.length() && input.charAt(index + i) == '+') {
  50.                 i++;
  51.             }

  52.             if (index + i + 4 <= input.length()) {
  53.                 // Get 4 hex digits
  54.                 final CharSequence unicode = input.subSequence(index + i, index + i + 4);

  55.                 try {
  56.                     final int value = Integer.parseInt(unicode.toString(), 16);
  57.                     out.write((char) value);
  58.                 } catch (final NumberFormatException nfe) {
  59.                     throw new IllegalArgumentException("Unable to parse unicode value: " + unicode, nfe);
  60.                 }
  61.                 return i + 4;
  62.             }
  63.             throw new IllegalArgumentException("Less than 4 hex digits in unicode value: '" + input.subSequence(index, input.length())
  64.                     + "' due to end of CharSequence");
  65.         }
  66.         return 0;
  67.     }
  68. }