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

net.thisptr.jackson.jq.JsonQuery Maven / Gradle / Ivy

There is a newer version: 198
Show newest version
package net.thisptr.jackson.jq;

import java.util.ArrayList;
import java.util.List;

import net.thisptr.jackson.jq.exception.JsonQueryException;
import net.thisptr.jackson.jq.internal.IsolatedScopeQuery;
import net.thisptr.jackson.jq.internal.javacc.JsonQueryParser;
import net.thisptr.jackson.jq.internal.javacc.ParseException;
import net.thisptr.jackson.jq.internal.javacc.TokenMgrError;

import com.fasterxml.jackson.databind.JsonNode;

public abstract class JsonQuery {
	private static Scope defaultScope = new Scope();

	public abstract List apply(final Scope scope, final JsonNode in) throws JsonQueryException;

	public List apply(final JsonNode in) throws JsonQueryException {
		return apply(defaultScope, in);
	}

	public List apply(final Scope scope, final List in) throws JsonQueryException {
		final List out = new ArrayList<>();
		for (final JsonNode i : in)
			out.addAll(apply(scope, i));
		return out;
	}

	public List apply(final List in) throws JsonQueryException {
		return apply(defaultScope, in);
	}

	public static JsonQuery compile(final String path) throws JsonQueryException {
		try {
			return new IsolatedScopeQuery(JsonQueryParser.compile(path));
		} catch (final TokenMgrError | ParseException e) {
			throw new JsonQueryException(e);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy