UnicodeEscaper.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.text.translate;

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

  20. /**
  21.  * Translates codepoints to their Unicode escaped value.
  22.  *
  23.  * @since 1.0
  24.  */
  25. public class UnicodeEscaper extends CodePointTranslator {

  26.     private final int below;
  27.     private final int above;
  28.     private final boolean between;

  29.     /**
  30.      * <p>Constructs a <code>UnicodeEscaper</code> for all characters. </p>
  31.      */
  32.     public UnicodeEscaper(){
  33.         this(0, Integer.MAX_VALUE, true);
  34.     }

  35.     /**
  36.      * <p>Constructs a <code>UnicodeEscaper</code> for the specified range. This is
  37.      * the underlying method for the other constructors/builders. The <code>below</code>
  38.      * and <code>above</code> boundaries are inclusive when <code>between</code> is
  39.      * <code>true</code> and exclusive when it is <code>false</code>. </p>
  40.      *
  41.      * @param below int value representing the lowest codepoint boundary
  42.      * @param above int value representing the highest codepoint boundary
  43.      * @param between whether to escape between the boundaries or outside them
  44.      */
  45.     protected UnicodeEscaper(final int below, final int above, final boolean between) {
  46.         this.below = below;
  47.         this.above = above;
  48.         this.between = between;
  49.     }

  50.     /**
  51.      * <p>Constructs a <code>UnicodeEscaper</code> below the specified value (exclusive). </p>
  52.      *
  53.      * @param codepoint below which to escape
  54.      * @return the newly created {@code UnicodeEscaper} instance
  55.      */
  56.     public static UnicodeEscaper below(final int codepoint) {
  57.         return outsideOf(codepoint, Integer.MAX_VALUE);
  58.     }

  59.     /**
  60.      * <p>Constructs a <code>UnicodeEscaper</code> above the specified value (exclusive). </p>
  61.      *
  62.      * @param codepoint above which to escape
  63.      * @return the newly created {@code UnicodeEscaper} instance
  64.      */
  65.     public static UnicodeEscaper above(final int codepoint) {
  66.         return outsideOf(0, codepoint);
  67.     }

  68.     /**
  69.      * <p>Constructs a <code>UnicodeEscaper</code> outside of the specified values (exclusive). </p>
  70.      *
  71.      * @param codepointLow below which to escape
  72.      * @param codepointHigh above which to escape
  73.      * @return the newly created {@code UnicodeEscaper} instance
  74.      */
  75.     public static UnicodeEscaper outsideOf(final int codepointLow, final int codepointHigh) {
  76.         return new UnicodeEscaper(codepointLow, codepointHigh, false);
  77.     }

  78.     /**
  79.      * <p>Constructs a <code>UnicodeEscaper</code> between the specified values (inclusive). </p>
  80.      *
  81.      * @param codepointLow above which to escape
  82.      * @param codepointHigh below which to escape
  83.      * @return the newly created {@code UnicodeEscaper} instance
  84.      */
  85.     public static UnicodeEscaper between(final int codepointLow, final int codepointHigh) {
  86.         return new UnicodeEscaper(codepointLow, codepointHigh, true);
  87.     }

  88.     /**
  89.      * {@inheritDoc}
  90.      */
  91.     @Override
  92.     public boolean translate(final int codepoint, final Writer out) throws IOException {
  93.         if (between) {
  94.             if (codepoint < below || codepoint > above) {
  95.                 return false;
  96.             }
  97.         } else {
  98.             if (codepoint >= below && codepoint <= above) {
  99.                 return false;
  100.             }
  101.         }

  102.         // TODO: Handle potential + sign per various Unicode escape implementations
  103.         if (codepoint > 0xffff) {
  104.             out.write(toUtf16Escape(codepoint));
  105.         } else {
  106.           out.write("\\u");
  107.           out.write(HEX_DIGITS[(codepoint >> 12) & 15]);
  108.           out.write(HEX_DIGITS[(codepoint >> 8) & 15]);
  109.           out.write(HEX_DIGITS[(codepoint >> 4) & 15]);
  110.           out.write(HEX_DIGITS[(codepoint) & 15]);
  111.         }
  112.         return true;
  113.     }

  114.     /**
  115.      * Converts the given codepoint to a hex string of the form {@code "\\uXXXX"}
  116.      *
  117.      * @param codepoint
  118.      *            a Unicode code point
  119.      * @return the hex string for the given codepoint
  120.      *
  121.      */
  122.     protected String toUtf16Escape(final int codepoint) {
  123.         return "\\u" + hex(codepoint);
  124.     }
  125. }