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

jsimple.json.readerwriter.JsonObjectReader Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2012-2015, Microsoft Mobile
 *
 * 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
 * AUTHORS OR COPYRIGHT HOLDERS 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.
 */

package jsimple.json.readerwriter;

import jsimple.json.JsonException;
import jsimple.json.text.JsonParsingException;
import jsimple.json.text.Token;
import jsimple.json.text.TokenType;

/**
 * JsonObjectReader lets the caller parse the items in an array one by one, iterating through them & processing them as
 * they're parsed.  If the array is very big--often when it's the outermost object in a JSON text--then this method is
 * more memory efficient than parsing the whole array into memory at once.
 *
 * @author Bret Johnson
 * @since 7/28/12 11:09 PM
 */
public class JsonObjectReader {
    protected Token token;
    private JsonObjectType objectType = emptyObjectType;   // This is the default, if no explicit ObjectType is set
    private boolean beginningPosition = true;
    private boolean endPosition = false;

    private static final JsonObjectType emptyObjectType = new JsonObjectType();

    public JsonObjectReader(Token token) {
        this.token = token;
        token.checkAndAdvance(TokenType.LEFT_BRACE);
    }

    public String readPropertyName() {
        if (endPosition)
            throw new JsonException("JSON Object has no more name/value pairs");

        if (beginningPosition)
            beginningPosition = false;
        else token.checkAndAdvance(TokenType.COMMA);

        token.check(TokenType.PRIMITIVE);
        Object nameObject = token.getPrimitiveValue();
        if (!(nameObject instanceof String))
            throw new JsonParsingException("string for object key", token);
        token.advance();

        token.checkAndAdvance(TokenType.COLON);

        return (String) nameObject;
    }

    public JsonProperty readProperty() {
        String name = readPropertyName();
        JsonProperty property = objectType.getProperty(name);
        if (property == null)
            property = new JsonProperty(name);
        return property;
    }

    public Object readPropertyValue() {
        TokenType type = token.getType();
        switch (type) {
            case PRIMITIVE:
                Object value = token.getPrimitiveValue();
                token.advance();
                return value;
            case LEFT_BRACKET:
                return new JsonArrayReader(token);
            case LEFT_BRACE:
                return new JsonObjectReader(token);
            default:
                if (atEnd())
                    throw new JsonException("No more object properties");
                else throw new JsonParsingException("start of property value", token);
        }
    }

    public boolean atEnd() {
        if (!endPosition && token.getType() == TokenType.RIGHT_BRACE) {
            token.advance();
            endPosition = true;
        }

        return endPosition;
    }

    public void setObjectType(JsonObjectType objectType) {
        this.objectType = objectType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy