Caverphone2.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.  *      https://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.codec.language;

  18. /**
  19.  * Encodes a string into a Caverphone 2.0 value.
  20.  *
  21.  * This is an algorithm created by the Caversham Project at the University of Otago. It implements the Caverphone 2.0
  22.  * algorithm:
  23.  *
  24.  * @see <a href="https://en.wikipedia.org/wiki/Caverphone">Wikipedia - Caverphone</a>
  25.  * @see <a href="https://caversham.otago.ac.nz/files/working/ctp150804.pdf">Caverphone 2.0 specification</a>
  26.  * @since 1.5
  27.  *
  28.  * <p>This class is immutable and thread-safe.</p>
  29.  */
  30. public class Caverphone2 extends AbstractCaverphone {

  31.     private static final String TEN_1 = "1111111111";

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

  38.     /**
  39.      * Encodes the given String into a Caverphone 2.0 value.
  40.      *
  41.      * @param source
  42.      *            String the source string
  43.      * @return A Caverphone code for the given String
  44.      */
  45.     @Override
  46.     public String encode(final String source) {
  47.         String txt = source;
  48.         if (SoundexUtils.isEmpty(txt)) {
  49.             return TEN_1;
  50.         }

  51.         // 1. Convert to lowercase
  52.         txt = txt.toLowerCase(java.util.Locale.ENGLISH);

  53.         // 2. Remove anything not A-Z
  54.         txt = txt.replaceAll("[^a-z]", "");

  55.         // 2.5. Remove final e
  56.         txt = txt.replaceAll("e$", ""); // 2.0 only

  57.         // 3. Handle various start options
  58.         txt = txt.replaceAll("^cough", "cou2f");
  59.         txt = txt.replaceAll("^rough", "rou2f");
  60.         txt = txt.replaceAll("^tough", "tou2f");
  61.         txt = txt.replaceAll("^enough", "enou2f"); // 2.0 only
  62.         txt = txt.replaceAll("^trough", "trou2f"); // 2.0 only
  63.                                                    // note the spec says ^enough here again, c+p error I assume
  64.         txt = txt.replaceAll("^gn", "2n");

  65.         // End
  66.         txt = txt.replaceAll("mb$", "m2");

  67.         // 4. Handle replacements
  68.         txt = txt.replace("cq", "2q");
  69.         txt = txt.replace("ci", "si");
  70.         txt = txt.replace("ce", "se");
  71.         txt = txt.replace("cy", "sy");
  72.         txt = txt.replace("tch", "2ch");
  73.         txt = txt.replace("c", "k");
  74.         txt = txt.replace("q", "k");
  75.         txt = txt.replace("x", "k");
  76.         txt = txt.replace("v", "f");
  77.         txt = txt.replace("dg", "2g");
  78.         txt = txt.replace("tio", "sio");
  79.         txt = txt.replace("tia", "sia");
  80.         txt = txt.replace("d", "t");
  81.         txt = txt.replace("ph", "fh");
  82.         txt = txt.replace("b", "p");
  83.         txt = txt.replace("sh", "s2");
  84.         txt = txt.replace("z", "s");
  85.         txt = txt.replaceAll("^[aeiou]", "A");
  86.         txt = txt.replaceAll("[aeiou]", "3");
  87.         txt = txt.replace("j", "y"); // 2.0 only
  88.         txt = txt.replaceAll("^y3", "Y3"); // 2.0 only
  89.         txt = txt.replaceAll("^y", "A"); // 2.0 only
  90.         txt = txt.replace("y", "3"); // 2.0 only
  91.         txt = txt.replace("3gh3", "3kh3");
  92.         txt = txt.replace("gh", "22");
  93.         txt = txt.replace("g", "k");
  94.         txt = txt.replaceAll("s+", "S");
  95.         txt = txt.replaceAll("t+", "T");
  96.         txt = txt.replaceAll("p+", "P");
  97.         txt = txt.replaceAll("k+", "K");
  98.         txt = txt.replaceAll("f+", "F");
  99.         txt = txt.replaceAll("m+", "M");
  100.         txt = txt.replaceAll("n+", "N");
  101.         txt = txt.replace("w3", "W3");
  102.         txt = txt.replace("wh3", "Wh3");
  103.         txt = txt.replaceAll("w$", "3"); // 2.0 only
  104.         txt = txt.replace("w", "2");
  105.         txt = txt.replaceAll("^h", "A");
  106.         txt = txt.replace("h", "2");
  107.         txt = txt.replace("r3", "R3");
  108.         txt = txt.replaceAll("r$", "3"); // 2.0 only
  109.         txt = txt.replace("r", "2");
  110.         txt = txt.replace("l3", "L3");
  111.         txt = txt.replaceAll("l$", "3"); // 2.0 only
  112.         txt = txt.replace("l", "2");

  113.         // 5. Handle removals
  114.         txt = txt.replace("2", "");
  115.         txt = txt.replaceAll("3$", "A"); // 2.0 only
  116.         txt = txt.replace("3", "");

  117.         // 6. put ten 1s on the end
  118.         txt += TEN_1;

  119.         // 7. take the first ten characters as the code
  120.         return txt.substring(0, TEN_1.length());
  121.     }

  122. }