LookupTranslator.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. import java.util.HashMap;
  21. import java.util.HashSet;

  22. /**
  23.  * Translates a value using a lookup table.
  24.  *
  25.  * @since 1.0
  26.  */
  27. public class LookupTranslator extends CharSequenceTranslator {

  28.     private final HashMap<String, String> lookupMap;
  29.     private final HashSet<Character> prefixSet;
  30.     private final int shortest;
  31.     private final int longest;

  32.     /**
  33.      * Define the lookup table to be used in translation
  34.      *
  35.      * Note that, as of Lang 3.1, the key to the lookup table is converted to a
  36.      * java.lang.String. This is because we need the key to support hashCode and
  37.      * equals(Object), allowing it to be the key for a HashMap. See LANG-882.
  38.      *
  39.      * @param lookup CharSequence[][] table of size [*][2]
  40.      */
  41.     public LookupTranslator(final CharSequence[]... lookup) {
  42.         lookupMap = new HashMap<>();
  43.         prefixSet = new HashSet<>();
  44.         int _shortest = Integer.MAX_VALUE;
  45.         int _longest = 0;
  46.         if (lookup != null) {
  47.             for (final CharSequence[] seq : lookup) {
  48.                 this.lookupMap.put(seq[0].toString(), seq[1].toString());
  49.                 this.prefixSet.add(seq[0].charAt(0));
  50.                 final int sz = seq[0].length();
  51.                 if (sz < _shortest) {
  52.                     _shortest = sz;
  53.                 }
  54.                 if (sz > _longest) {
  55.                     _longest = sz;
  56.                 }
  57.             }
  58.         }
  59.         shortest = _shortest;
  60.         longest = _longest;
  61.     }

  62.     /**
  63.      * {@inheritDoc}
  64.      */
  65.     @Override
  66.     public int translate(final CharSequence input, final int index, final Writer out) throws IOException {
  67.         // check if translation exists for the input at position index
  68.         if (prefixSet.contains(input.charAt(index))) {
  69.             int max = longest;
  70.             if (index + longest > input.length()) {
  71.                 max = input.length() - index;
  72.             }
  73.             // implement greedy algorithm by trying maximum match first
  74.             for (int i = max; i >= shortest; i--) {
  75.                 final CharSequence subSeq = input.subSequence(index, index + i);
  76.                 final String result = lookupMap.get(subSeq.toString());

  77.                 if (result != null) {
  78.                     out.write(result);
  79.                     return i;
  80.                 }
  81.             }
  82.         }
  83.         return 0;
  84.     }
  85. }