All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.gov.nasa.worldwind.formats.rpf.Base34Converter Maven / Gradle / Ivy

Go to download

World Wind is a collection of components that interactively display 3D geographic information within Java applications or applets.

There is a newer version: 2.0.0-986
Show newest version
/*
 * Copyright (C) 2012 United States Government as represented by the Administrator of the
 * National Aeronautics and Space Administration.
 * All Rights Reserved.
 */
package gov.nasa.worldwind.formats.rpf;

import gov.nasa.worldwind.util.Logging;

/**
 * @author dcollins
 * @version $Id: Base34Converter.java 1171 2013-02-11 21:45:02Z dcollins $
 */
class Base34Converter
{
    /* [Section 30.6, MIL-C-89038] */
    /* [Section A.3.6, MIL-PRF-89041A] */
    private static final char[] BASE34_ALPHABET ={
            '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
            'H', 'J', 'K', 'L', 'M', 'N', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'};

    /* [Section 30.6, MIL-C-89038] */
    /* [Section A.3.6, MIL-PRF-89041A] */
    public static char[] valueOf(int i, char[] dest, int offset, int count)
    {
        if (dest == null)
        {
            String message = Logging.getMessage("nullValue.ArrayIsNull");
            Logging.logger().fine(message);
            throw new IllegalArgumentException(message);
        }
        if (offset < 0 || count < 0 || (offset + count) >= dest.length)
        {
            String message = Logging.getMessage("generic.ArgumentOutOfRange");
            Logging.logger().fine(message);
            throw new IndexOutOfBoundsException(message);
        }

        for (int digit = count + offset - 1; digit >= offset; digit--)
        {
            dest[digit] = BASE34_ALPHABET[i % 34];
            i /= 34;
        }
        return dest;
    }

    /* [Section 30.6, MIL-C-89038] */
    /* [Section A.3.6, MIL-PRF-89041A] */
    public static int parseChars(char[] src, int offset, int count)
    {
        if (src == null)
        {
            String message = Logging.getMessage("nullValue.ArrayIsNull");
            Logging.logger().fine(message);
            throw new IllegalArgumentException(message);
        }
        if (offset < 0 || count < 0 || (offset + count) >= src.length)
        {
            String message = Logging.getMessage("generic.ArgumentOutOfRange");
            Logging.logger().fine(message);
            throw new IndexOutOfBoundsException(message);
        }

        int i = 0;
        for (int digit = offset; digit < offset + count; digit++)
        {
            int index;
            char charUpper = Character.toUpperCase(src[digit]);
            if (charUpper >= '0' && charUpper <= '9')
                index = charUpper - '0';
            else if (charUpper >= 'A' && charUpper <= 'H')
                index = 10 + charUpper - 'A';
            else if (charUpper >= 'J' && charUpper <= 'N')
                index = 18 + charUpper - 'J';
            else if (charUpper >= 'P' && charUpper <= 'Z')
                index = 23 + charUpper - 'P';
            else
            {
                String message = Logging.getMessage("Base34Converter.Base34Error");
                Logging.logger().fine(message);
                throw new IllegalArgumentException(message);
            }
            i = (i * 34) + index;
        }
        return i;
    }

    public static boolean isBase34(char[] src, int offset, int count)
    {
        if (src == null)
        {
            String message = Logging.getMessage("nullValue.ArrayIsNull");
            Logging.logger().fine(message);
            throw new IllegalArgumentException(message);
        }
        if (offset < 0 || count < 0 || (offset + count) >= src.length)
        {
            String message = Logging.getMessage("generic.ArgumentOutOfRange");
            Logging.logger().fine(message);
            throw new IndexOutOfBoundsException(message);
        }

        for (int digit = offset; digit < offset + count; digit++)
        {
            char charUpper = Character.toUpperCase(src[digit]);
            if (!(charUpper >= '0' && charUpper <= '9')
                && !(charUpper >= 'A' && charUpper <= 'H')
                && !(charUpper >= 'J' && charUpper <= 'N')
                && !(charUpper >= 'P' && charUpper <= 'Z'))
                return false;
        }
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy