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

com.github.fge.jsonschema.walk.SchemaWalker Maven / Gradle / Ivy

There is a newer version: 1.2.5
Show newest version
/*
 * Copyright (c) 2013, Francis Galiegue 
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the Lesser GNU General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * Lesser GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */

package com.github.fge.jsonschema.walk;

import com.github.fge.jackson.jsonpointer.JsonPointer;
import com.github.fge.jsonschema.exceptions.ProcessingException;
import com.github.fge.jsonschema.report.ProcessingReport;
import com.github.fge.jsonschema.tree.SchemaTree;
import com.github.fge.jsonschema.walk.collectors.PointerCollector;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import com.google.common.collect.Sets;

import java.util.List;
import java.util.Map;

/**
 * Main schema walker class
 *
 * 

This class walks a JSON Schema (in the shape of a {@link SchemaTree} * recursively. In order to visit subschemas, it relies on a series of {@link * PointerCollector} instances (provided by a dictionary) to get the knowledge * of what schemas to visit next.

* *

Only subschemas are visited: unknown keywords, or keywords not having any * subschemas, are ignored.

* *

Important: the initial schema must be syntactically valid. *

* * @see SimpleSchemaWalker * @see ResolvingSchemaWalker */ public abstract class SchemaWalker { /** * The current schema tree being walked */ protected SchemaTree tree; /** * The list of pointer collectors */ private final Map collectors; protected SchemaWalker(final SchemaTree tree, final SchemaWalkingConfiguration cfg) { this.tree = tree; collectors = cfg.collectors.entries(); } /** * Walk a tree with a listener * * @param listener the listener * @param report the processing report to use * @param the value type produced by the listener * @throws ProcessingException processing failure */ public final void walk(final SchemaListener listener, final ProcessingReport report) throws ProcessingException { doWalk(JsonPointer.empty(), listener, report); } /** * Change the current tree to another tree, if any * * @param listener the listener * @param report the report * @param type of value produced by the listener * @throws ProcessingException processing failure * @see ResolvingSchemaWalker */ public abstract void resolveTree(final SchemaListener listener, final ProcessingReport report) throws ProcessingException; private void doWalk(final JsonPointer pwd, final SchemaListener listener, final ProcessingReport report) throws ProcessingException { listener.onEnter(pwd); resolveTree(listener, report); listener.onWalk(tree); final Map map = Maps.newTreeMap(); map.putAll(collectors); map.keySet().retainAll(Sets.newHashSet(tree.getNode().fieldNames())); /* * Collect pointers for further processing. */ final List pointers = Lists.newArrayList(); for (final PointerCollector collector: map.values()) collector.collect(pointers, tree); /* * Operate on these pointers. */ SchemaTree current; for (final JsonPointer pointer: pointers) { current = tree; tree = tree.append(pointer); doWalk(pointer, listener, report); tree = current; } listener.onExit(pwd); } @Override public abstract String toString(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy