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

net.sourceforge.plantuml.json.JsonParser Maven / Gradle / Ivy

There is a newer version: 1.2024.8
Show newest version
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
/* +=======================================================================
 * |
 * |      PlantUML : a free UML diagram generator
 * |
 * +=======================================================================
 *
 * (C) Copyright 2009-2024, Arnaud Roques
 *
 * Project Info:  https://plantuml.com
 *
 * If you like this project or if you find it useful, you can support us at:
 *
 * https://plantuml.com/patreon (only 1$ per month!)
 * https://plantuml.com/liberapay (only 1€ per month!)
 * https://plantuml.com/paypal
 *
 *
 * PlantUML is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License V2.
 *
 * THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
 * LICENSE ("AGREEMENT"). [GNU General Public License V2]
 *
 * ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES
 * RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
 *
 * You may obtain a copy of the License at
 *
 * https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * PlantUML can occasionally display sponsored or advertising messages. Those
 * messages are usually generated on welcome or error images and never on
 * functional diagrams.
 * See https://plantuml.com/professional if you want to remove them
 *
 * Images (whatever their format : PNG, SVG, EPS...) generated by running PlantUML
 * are owned by the author of their corresponding sources code (that is, their
 * textual description in PlantUML language). Those images are not covered by
 * this GPL v2 license.
 *
 * The generated images can then be used without any reference to the GPL v2 license.
 * It is not even necessary to stipulate that they have been generated with PlantUML,
 * although this will be appreciated by the PlantUML team.
 *
 * There is an exception : if the textual description in PlantUML language is also covered
 * by any license, then the generated images are logically covered
 * by the very same license.
 *
 * This is the IGY distribution (Install GraphViz by Yourself).
 * You have to install GraphViz and to setup the GRAPHVIZ_DOT environment variable
 * (see https://plantuml.com/graphviz-dot )
 *
 * Icons provided by OpenIconic :  https://useiconic.com/open
 * Archimate sprites provided by Archi :  http://www.archimatetool.com
 * Stdlib AWS provided by https://github.com/milo-minderbinder/AWS-PlantUML
 * Stdlib Icons provided https://github.com/tupadr3/plantuml-icon-font-sprites
 * ASCIIMathML (c) Peter Jipsen http://www.chapman.edu/~jipsen
 * ASCIIMathML (c) David Lippman http://www.pierce.ctc.edu/dlippman
 * CafeUndZopfli ported by Eugene Klyuchnikov https://github.com/eustas/CafeUndZopfli
 * Brotli (c) by the Brotli Authors https://github.com/google/brotli
 * Themes (c) by Brett Schwarz https://github.com/bschwarz/puml-themes
 * Twemoji (c) by Twitter at https://twemoji.twitter.com/
 *
 */
package net.sourceforge.plantuml.json;

import java.io.IOException;
import java.io.Reader;
import java.io.StringReader;

/**
 * A streaming parser for JSON text. The parser reports all events to a given
 * handler.
 */
public class JsonParser {

	private static final char END_OF_TEXT = '\u0003';

	private static final int MAX_NESTING_LEVEL = 1000;
	private static final int MIN_BUFFER_SIZE = 10;
	private static final int DEFAULT_BUFFER_SIZE = 1024;

	private final JsonHandler handler;
	private Reader reader;
	private char[] buffer;
	private int bufferOffset;
	private int index;
	private int fill;
	private int line;
	private int lineOffset;
	private char current;
	private StringBuilder captureBuffer;
	private int captureStart;
	private int nestingLevel;

	/*
	 * | bufferOffset v [a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t] < input
	 * [l|m|n|o|p|q|r|s|t|?|?] < buffer ^ ^ | index fill
	 */

	/**
	 * Creates a new JsonParser with the given handler. The parser will report all
	 * parser events to this handler.
	 *
	 * @param handler the handler to process parser events
	 */
	@SuppressWarnings("unchecked")
	public JsonParser(JsonHandler handler) {
		if (handler == null) {
			throw new NullPointerException("handler is null");
		}
		this.handler = (JsonHandler) handler;
		handler.parser = this;
	}

	/**
	 * Parses the given input string. The input must contain a valid JSON value,
	 * optionally padded with whitespace.
	 *
	 * @param string the input string, must be valid JSON
	 * @throws ParseException if the input is not valid JSON
	 */
	public void parse(String string) {
		if (string == null) {
			throw new NullPointerException("string is null");
		}
		int bufferSize = Math.max(MIN_BUFFER_SIZE, Math.min(DEFAULT_BUFFER_SIZE, string.length()));
		try {
			parse(new StringReader(string), bufferSize);
		} catch (IOException exception) {
			// StringReader does not throw IOException
			throw new RuntimeException(exception);
		}
	}

	/**
	 * Reads the entire input from the given reader and parses it as JSON. The input
	 * must contain a valid JSON value, optionally padded with whitespace.
	 * 

* Characters are read in chunks into a default-sized input buffer. Hence, * wrapping a reader in an additional BufferedReader likely won't * improve reading performance. *

* * @param reader the reader to read the input from * @throws IOException if an I/O error occurs in the reader * @throws ParseException if the input is not valid JSON */ public void parse(Reader reader) throws IOException { parse(reader, DEFAULT_BUFFER_SIZE); } /** * Reads the entire input from the given reader and parses it as JSON. The input * must contain a valid JSON value, optionally padded with whitespace. *

* Characters are read in chunks into an input buffer of the given size. Hence, * wrapping a reader in an additional BufferedReader likely won't * improve reading performance. *

* * @param reader the reader to read the input from * @param buffersize the size of the input buffer in chars * @throws IOException if an I/O error occurs in the reader * @throws ParseException if the input is not valid JSON */ public void parse(Reader reader, int buffersize) throws IOException { if (reader == null) { throw new NullPointerException("reader is null"); } if (buffersize <= 0) { throw new IllegalArgumentException("buffersize is zero or negative"); } this.reader = reader; buffer = new char[buffersize]; bufferOffset = 0; index = 0; fill = 0; line = 1; lineOffset = 0; current = 0; captureStart = -1; read(); skipWhiteSpace(); readValue(); skipWhiteSpace(); if (!isEndOfText()) { throw error("Unexpected character"); } } private void readValue() throws IOException { switch (current) { case 'n': readNull(); break; case 't': readTrue(); break; case 'f': readFalse(); break; case '"': readString(); break; case '[': readArray(); break; case '{': readObject(); break; case '-': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': readNumber(); break; default: throw expected("value"); } } private void readArray() throws IOException { Object array = handler.startArray(); read(); if (++nestingLevel > MAX_NESTING_LEVEL) { throw error("Nesting too deep"); } skipWhiteSpace(); if (readChar(']')) { nestingLevel--; handler.endArray(array); return; } do { skipWhiteSpace(); handler.startArrayValue(array); readValue(); handler.endArrayValue(array); skipWhiteSpace(); } while (readChar(',')); if (!readChar(']')) { throw expected("',' or ']'"); } nestingLevel--; handler.endArray(array); } private void readObject() throws IOException { Object object = handler.startObject(); read(); if (++nestingLevel > MAX_NESTING_LEVEL) { throw error("Nesting too deep"); } skipWhiteSpace(); if (readChar('}')) { nestingLevel--; handler.endObject(object); return; } do { skipWhiteSpace(); if (readChar('/')) { skipComment(); } handler.startObjectName(object); String name = readName(); handler.endObjectName(object, name); skipWhiteSpace(); if (!readChar(':')) { throw expected("':'"); } skipWhiteSpace(); handler.startObjectValue(object, name); readValue(); handler.endObjectValue(object, name); skipWhiteSpace(); if (readChar('/')) { skipComment(); } } while (readChar(',')); if (!readChar('}')) { throw expected("',' or '}'"); } nestingLevel--; handler.endObject(object); } private void skipComment() throws IOException { if (!readChar('/')) throw expected("Error in comment"); while (current != '\n' && current != '\r') { read(); } skipWhiteSpace(); } private String readName() throws IOException { if (current != '"') { throw expected("name"); } return readStringInternal(); } private void readNull() throws IOException { handler.startNull(); read(); readRequiredChar('u'); readRequiredChar('l'); readRequiredChar('l'); handler.endNull(); } private void readTrue() throws IOException { handler.startBoolean(); read(); readRequiredChar('r'); readRequiredChar('u'); readRequiredChar('e'); handler.endBoolean(true); } private void readFalse() throws IOException { handler.startBoolean(); read(); readRequiredChar('a'); readRequiredChar('l'); readRequiredChar('s'); readRequiredChar('e'); handler.endBoolean(false); } private void readRequiredChar(char ch) throws IOException { if (!readChar(ch)) { throw expected("'" + ch + "'"); } } private void readString() throws IOException { handler.startString(); handler.endString(readStringInternal()); } private String readStringInternal() throws IOException { read(); startCapture(); while (current != '"') { if (current == '\\') { pauseCapture(); readEscape(); startCapture(); } else if (current < 0x20) { throw expected("valid string character"); } else { read(); } } String string = endCapture(); read(); return string; } private void readEscape() throws IOException { read(); switch (current) { case '"': case '/': case '\\': captureBuffer.append((char) current); break; case 'b': captureBuffer.append('\b'); break; case 'f': captureBuffer.append('\f'); break; case 'n': captureBuffer.append('\n'); break; case 'r': captureBuffer.append('\r'); break; case 't': captureBuffer.append('\t'); break; case 'u': char[] hexChars = new char[4]; for (int i = 0; i < 4; i++) { read(); if (!isHexDigit()) { throw expected("hexadecimal digit"); } hexChars[i] = (char) current; } captureBuffer.append((char) Integer.parseInt(new String(hexChars), 16)); break; default: throw expected("valid escape sequence"); } read(); } private void readNumber() throws IOException { handler.startNumber(); startCapture(); readChar('-'); int firstDigit = current; if (!readDigit()) { throw expected("digit"); } if (firstDigit != '0') { while (readDigit()) { } } readFraction(); readExponent(); handler.endNumber(endCapture()); } private boolean readFraction() throws IOException { if (!readChar('.')) { return false; } if (!readDigit()) { throw expected("digit"); } while (readDigit()) { } return true; } private boolean readExponent() throws IOException { if (!readChar('e') && !readChar('E')) { return false; } if (!readChar('+')) { readChar('-'); } if (!readDigit()) { throw expected("digit"); } while (readDigit()) { } return true; } private boolean readChar(char ch) throws IOException { if (current != ch) { return false; } read(); return true; } private boolean readDigit() throws IOException { if (!isDigit()) { return false; } read(); return true; } private void skipWhiteSpace() throws IOException { while (isWhiteSpace()) { read(); } } private void read() throws IOException { if (index == fill) { if (captureStart != -1) { captureBuffer.append(buffer, captureStart, fill - captureStart); captureStart = 0; } bufferOffset += fill; fill = reader.read(buffer, 0, buffer.length); index = 0; if (fill == -1) { current = END_OF_TEXT; index++; return; } } if (current == '\n') { line++; lineOffset = bufferOffset + index; } current = buffer[index++]; } private void startCapture() { if (captureBuffer == null) { captureBuffer = new StringBuilder(); } captureStart = index - 1; } private void pauseCapture() { int end = current == END_OF_TEXT ? index : index - 1; captureBuffer.append(buffer, captureStart, end - captureStart); captureStart = -1; } private String endCapture() { int start = captureStart; int end = index - 1; captureStart = -1; if (captureBuffer.length() > 0) { captureBuffer.append(buffer, start, end - start); String captured = captureBuffer.toString(); captureBuffer.setLength(0); return captured; } return new String(buffer, start, end - start); } Location getLocation() { int offset = bufferOffset + index - 1; int column = offset - lineOffset + 1; return new Location(offset, line, column); } private ParseException expected(String expected) { if (isEndOfText()) { return error("Unexpected end of input"); } return error("Expected " + expected); } private ParseException error(String message) { return new ParseException(message, getLocation()); } private boolean isWhiteSpace() { return current == ' ' || current == '\t' || current == '\n' || current == '\r'; } private boolean isDigit() { return current >= '0' && current <= '9'; } private boolean isHexDigit() { return current >= '0' && current <= '9' || current >= 'a' && current <= 'f' || current >= 'A' && current <= 'F'; } private boolean isEndOfText() { return current == END_OF_TEXT; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy