001/*
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements.  See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License.  You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017
018package org.apache.commons.codec.language;
019
020import org.apache.commons.codec.EncoderException;
021import org.apache.commons.codec.StringEncoder;
022
023/**
024 * Encodes a string into a Caverphone value.
025 *
026 * This is an algorithm created by the Caversham Project at the University of Otago. It implements the Caverphone 2.0
027 * algorithm:
028 *
029 * <p>This class is immutable and thread-safe.</p>
030 *
031 * @see <a href="https://en.wikipedia.org/wiki/Caverphone">Wikipedia - Caverphone</a>
032 * @since 1.5
033 */
034public abstract class AbstractCaverphone implements StringEncoder {
035
036    /**
037     * Encodes an Object using the caverphone algorithm. This method is provided in order to satisfy the requirements of
038     * the Encoder interface, and will throw an EncoderException if the supplied object is not of type {@link String}.
039     *
040     * @param source
041     *            Object to encode
042     * @return An object (or type {@link String}) containing the caverphone code which corresponds to the String
043     *         supplied.
044     * @throws EncoderException
045     *             if the parameter supplied is not of type {@link String}.
046     */
047    @Override
048    public Object encode(final Object source) throws EncoderException {
049        if (!(source instanceof String)) {
050            throw new EncoderException("Parameter supplied to Caverphone encode is not of type java.lang.String");
051        }
052        return this.encode((String) source);
053    }
054
055    /**
056     * Tests if the encodings of two strings are equal.
057     *
058     * This method might be promoted to a new AbstractStringEncoder superclass.
059     *
060     * @param str1
061     *            First of two strings to compare
062     * @param str2
063     *            Second of two strings to compare
064     * @return {@code true} if the encodings of these strings are identical, {@code false} otherwise.
065     * @throws EncoderException
066     *             thrown if there is an error condition during the encoding process.
067     */
068    public boolean isEncodeEqual(final String str1, final String str2) throws EncoderException {
069        return this.encode(str1).equals(this.encode(str2));
070    }
071
072}