![JAR search and dependency download from the Maven repository](/logo.png)
org.elasticsearch.xcontent.XContentSubParser Maven / Gradle / Ivy
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
package org.elasticsearch.xcontent;
import org.elasticsearch.core.CheckedFunction;
import java.io.IOException;
import java.nio.CharBuffer;
import java.util.List;
import java.util.Map;
import java.util.function.Supplier;
/**
* Wrapper for a XContentParser that makes a single object/array look like a complete document.
*
* The wrapper prevents the parsing logic to consume tokens outside of the wrapped object as well
* as skipping to the end of the object in case of a parsing error. The wrapper is intended to be
* used for parsing objects that should be ignored if they are malformed.
*/
public class XContentSubParser implements XContentParser {
private final XContentParser parser;
private int level;
private boolean closed;
public XContentSubParser(XContentParser parser) {
this.parser = parser;
if (parser.currentToken() != Token.START_OBJECT && parser.currentToken() != Token.START_ARRAY) {
throw new IllegalStateException("The sub parser has to be created on the start of an object or array");
}
level = 1;
}
@Override
public XContentType contentType() {
return parser.contentType();
}
@Override
public void allowDuplicateKeys(boolean allowDuplicateKeys) {
parser.allowDuplicateKeys(allowDuplicateKeys);
}
@Override
public Token nextToken() throws IOException {
if (level > 0) {
Token token = parser.nextToken();
if (token == Token.START_OBJECT || token == Token.START_ARRAY) {
level++;
} else if (token == Token.END_OBJECT || token == Token.END_ARRAY) {
level--;
}
return token;
} else {
return null; // we have reached the end of the wrapped object
}
}
@Override
public void skipChildren() throws IOException {
Token token = parser.currentToken();
if (token != Token.START_OBJECT && token != Token.START_ARRAY) {
// skip if not starting on an object or an array
return;
}
int backToLevel = level - 1;
while (nextToken() != null) {
if (level <= backToLevel) {
return;
}
}
}
@Override
public Token currentToken() {
return parser.currentToken();
}
@Override
public String currentName() throws IOException {
return parser.currentName();
}
@Override
public Map map() throws IOException {
return parser.map();
}
@Override
public Map mapOrdered() throws IOException {
return parser.mapOrdered();
}
@Override
public Map mapStrings() throws IOException {
return parser.mapStrings();
}
@Override
public Map map(Supplier
© 2015 - 2025 Weber Informatics LLC | Privacy Policy