SedolCheckDigit.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.validator.routines.checkdigit;

  18. /**
  19.  * Modulus 10 <b>SEDOL</b> (UK Securities) Check Digit calculation/validation.
  20.  *
  21.  * <p>
  22.  * SEDOL Numbers are 7 character alphanumeric codes used
  23.  * to identify UK Securities (SEDOL stands for Stock Exchange Daily Official List).
  24.  * </p>
  25.  * <p>
  26.  * Check digit calculation is based on <i>modulus 10</i> with digits being weighted
  27.  * based on their position, from left to right, as follows:
  28.  * </p>
  29.  * <pre><code>
  30.  *      position:  1  2  3  4  5  6  7
  31.  *     weighting:  1  3  1  7  3  9  1
  32.  * </code></pre>
  33.  * <p>
  34.  * See <a href="https://en.wikipedia.org/wiki/SEDOL">Wikipedia - SEDOL</a>
  35.  * for more details.
  36.  * </p>
  37.  *
  38.  * @since 1.4
  39.  */
  40. public final class SedolCheckDigit extends ModulusCheckDigit {

  41.     private static final long serialVersionUID = -8976881621148878443L;

  42.     private static final int MAX_ALPHANUMERIC_VALUE = 35; // Character.getNumericValue('Z')

  43.     /** Singleton SEDOL check digit instance */
  44.     public static final CheckDigit SEDOL_CHECK_DIGIT = new SedolCheckDigit();

  45.     /** Weighting given to digits depending on their right position */
  46.     private static final int[] POSITION_WEIGHT = {1, 3, 1, 7, 3, 9, 1};

  47.     /**
  48.      * Constructs a modulus 10 Check Digit routine for ISBN-10.
  49.      */
  50.     public SedolCheckDigit() {
  51.     }

  52.     /**
  53.      * Calculate the modulus for an SEDOL code.
  54.      *
  55.      * @param code The code to calculate the modulus for.
  56.      * @param includesCheckDigit Whether the code includes the Check Digit or not.
  57.      * @return The modulus value
  58.      * @throws CheckDigitException if an error occurs calculating the modulus
  59.      * for the specified code
  60.      */
  61.     @Override
  62.     protected int calculateModulus(final String code, final boolean includesCheckDigit) throws CheckDigitException {
  63.         if (code.length() > POSITION_WEIGHT.length) {
  64.             throw new CheckDigitException("Invalid Code Length = " + code.length());
  65.         }
  66.         return super.calculateModulus(code, includesCheckDigit);
  67.     }

  68.     /**
  69.      * Convert a character at a specified position to an integer value.
  70.      *
  71.      * @param character The character to convert
  72.      * @param leftPos The position of the character in the code, counting from left to right
  73.      * @param rightPos The positionof the character in the code, counting from right to left
  74.      * @return The integer value of the character
  75.      * @throws CheckDigitException if character is not alphanumeric
  76.      */
  77.     @Override
  78.     protected int toInt(final char character, final int leftPos, final int rightPos) throws CheckDigitException {
  79.         final int charValue = Character.getNumericValue(character);
  80.         // the check digit is only allowed to reach 9
  81.         final int charMax = rightPos == 1 ? 9 : MAX_ALPHANUMERIC_VALUE; // CHECKSTYLE IGNORE MagicNumber
  82.         if (charValue < 0 || charValue > charMax) {
  83.             throw new CheckDigitException("Invalid Character[" + leftPos + "," + rightPos + "] = '" + charValue + "' out of range 0 to " + charMax);
  84.         }
  85.         return charValue;
  86.     }

  87.     /**
  88.      * Calculates the <i>weighted</i> value of a character in the
  89.      * code at a specified position.
  90.      *
  91.      * @param charValue The numeric value of the character.
  92.      * @param leftPos The position of the character in the code, counting from left to right
  93.      * @param rightPos The positionof the character in the code, counting from right to left
  94.      * @return The weighted value of the character.
  95.      */
  96.     @Override
  97.     protected int weightedValue(final int charValue, final int leftPos, final int rightPos) {
  98.         return charValue * POSITION_WEIGHT[leftPos - 1];
  99.     }

  100. }