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

io.soluble.pjb.bridge.ParserString Maven / Gradle / Ivy

There is a newer version: 7.1.3
Show newest version
/*-*- mode: Java; tab-width:8 -*-*/

package io.soluble.pjb.bridge;

/*
 * Copyright (C) 2003-2007 Jost Boekemeier
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 */

/**
 * This class holds the parser string.
 *
 * @author jostb
 */
final class ParserString {
    protected byte[] string;
    protected int off;
    protected int length;
    private JavaBridge bridge;

    /* 0..9, A..F, a..f */
    static final byte[] digits = {
            (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127,
            (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127,
            (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127,
            (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127,
            (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127,
            (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127,
            (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127,
            (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127,
            (byte) 0, (byte) 1, (byte) 2, (byte) 3, (byte) 4, (byte) 5, (byte) 6,
            (byte) 7, (byte) 8, (byte) 9, (byte) 127, (byte) 127, (byte) 127, (byte) 127,
            (byte) 127, (byte) 127, (byte) 127, (byte) 10, (byte) 11, (byte) 12, (byte) 13,
            (byte) 14, (byte) 15, (byte) 127, (byte) 127, (byte) 127, (byte) 127,
            (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127,
            (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127,
            (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 127,
            (byte) 127, (byte) 127, (byte) 127, (byte) 127, (byte) 10, (byte) 11, (byte) 12,
            (byte) 13, (byte) 14, (byte) 15};

    /**
     * Create a new ParserString
     */
    protected ParserString(JavaBridge bridge) {
        this.bridge = bridge;
    }

    /**
     * Returns the UTF8 string representation. Useful for debugging only
     *
     * @return The UTF-8 encoded string.
     */
    public String getUTF8StringValue() {
        try {
            return new String(string, off, length, Util.UTF8);
        } catch (java.io.UnsupportedEncodingException e) {
            Util.printStackTrace(e);
            return new String(string, off, length);
        }
    }

    /**
     * Returns the string encoded via java_set_file_encoding().
     *
     * @return The encoded string value.
     * @see io.soluble.pjb.Options#getEncoding()
     */
    public String getStringValue() {
        return bridge.getString(string, off, length);
    }

    /**
     * Returns the cached string encoded via java_set_file_encoding().
     *
     * @return The encoded string value.
     * @see io.soluble.pjb.Options#getEncoding()
     */
    public String getCachedStringValue() {
        return bridge.getCachedString(string, off, length);
    }

    /**
     * Returns the ASCII string representation. Useful for serialized objects, float, long.
     *
     * @return The ASCII encoded string.
     */
    public String getASCIIStringValue() {
        return bridge.stringCache.getString(string, off, length, Util.ASCII);
    }

    /**
     * Returns the int value.
     *
     * @return The int value.
     */
    public int getClassicIntValue() {
        int sign;
        if (length == 0) return 0;
        int off = this.off;
        int length = this.length;
        int val = 0;

        if (string[off] == '-') {
            off++;
            length--;
            sign = -1;
        } else if (string[off] == '+') {
            off++;
            length--;
            sign = 1;
        } else sign = 1;

        int pos = 1;
        while (length-- > 0) {
            val += ((int) (string[off + length] - (byte) '0')) * pos;
            pos *= 10;
        }
        return val * sign;
    }

    /**
     * Returns the long value.
     *
     * @return The long value.
     */
    public long getClassicLongValue() {
        long sign;
        if (length == 0) return 0;
        int off = this.off;
        int length = this.length;
        long val = 0;

        if (string[off] == '-') {
            off++;
            length--;
            sign = -1;
        } else if (string[off] == '+') {
            off++;
            length--;
            sign = 1;
        } else sign = 1;

        long pos = 1;
        while (length-- > 0) {
            val += ((long) (string[off + length] - (byte) '0')) * pos;
            pos *= 10;
        }
        return val * sign;
    }

    /**
     * Returns the int value.
     *
     * @return The int value.
     */
    public int getIntValue() {
        if (length == 0) return 0;
        int val = 0;
        int pos = 0;
        byte[] string = this.string;
        int off = this.off;

        while (true) {
            val += digits[string[off++]];
            if (++pos == length) break;
            val <<= 4;
        }
        return val;
    }

    /**
     * Returns the long value.
     *
     * @return The long value.
     */
    public long getLongValue() {
        if (length == 0) return 0;
        long val = 0;
        int pos = 0;
        byte[] string = this.string;
        int off = this.off;

        while (true) {
            val += digits[string[off++]];
            if (++pos == length) break;
            val <<= 4;
        }
        return val;
    }

    /**
     * Returns the double value.
     *
     * @return The double value.
     */
    public double getDoubleValue() {
        return (Double.parseDouble(getASCIIStringValue()));
    }

    /**
     * Returns the UTF8 string representation. Useful for debugging only
     *
     * @return The description of the string.
     */
    public String toString() {
        return "{" + getUTF8StringValue() + " @:" + String.valueOf(off) + " l:" + String.valueOf(length) + "}";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy