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

com.github.fge.jsonschema.load.SchemaLoader 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.load;

import com.fasterxml.jackson.databind.JsonNode;
import com.github.fge.jsonschema.CoreMessageBundle;
import com.github.fge.jsonschema.exceptions.ProcessingException;
import com.github.fge.jsonschema.exceptions.unchecked.ProcessingError;
import com.github.fge.jsonschema.load.configuration.LoadingConfiguration;
import com.github.fge.jsonschema.load.configuration.LoadingConfigurationBuilder;
import com.github.fge.jsonschema.ref.JsonRef;
import com.github.fge.jsonschema.report.ProcessingMessage;
import com.github.fge.jsonschema.tree.SchemaTree;
import com.google.common.cache.CacheBuilder;
import com.google.common.cache.CacheLoader;
import com.google.common.cache.LoadingCache;

import javax.annotation.concurrent.ThreadSafe;
import java.net.URI;
import java.util.concurrent.ExecutionException;

/**
 * JSON Schema loader
 *
 * 

All schema registering and downloading is done through this class.

* *

Note that if the id of a schema is not absolute (that is, the URI itself * is absolute and it has no fragment part, or an empty fragment), then the * whole schema will be considered anonymous.

* */ @ThreadSafe public final class SchemaLoader { private static final CoreMessageBundle BUNDLE = CoreMessageBundle.getInstance(); /** * The URI manager */ private final URIManager manager; /** * The default namespace */ private final JsonRef namespace; /** * Schema cache */ private final LoadingCache cache; /** * Our dereferencing mode */ private final Dereferencing dereferencing; /** * Create a new schema loader with a given loading configuration * * @param cfg the configuration * @see LoadingConfiguration * @see LoadingConfigurationBuilder */ public SchemaLoader(final LoadingConfiguration cfg) { namespace = JsonRef.fromURI(cfg.getNamespace()); dereferencing = cfg.getDereferencing(); manager = new URIManager(cfg); cache = CacheBuilder.newBuilder() .build(new CacheLoader() { @Override public JsonNode load(final URI key) throws ProcessingException { return manager.getContent(key); } }); cache.putAll(cfg.getPreloadedSchemas()); } /** * Create a new schema loader with the default loading configuration */ public SchemaLoader() { this(LoadingConfiguration.byDefault()); } /** * Create a new tree from a schema * *

Note that it will always create an "anonymous" tree, that is a tree * with an empty loading URI.

* * @param schema the schema * @return a new tree * @see Dereferencing#newTree(JsonNode) * @throws ProcessingError schema is null */ public SchemaTree load(final JsonNode schema) { BUNDLE.checkNotNull(schema, "loadingCfg.nullSchema"); return dereferencing.newTree(schema); } /** * Get a schema tree from the given URI * *

Note that if the URI is relative, it will be resolved against this * registry's namespace, if any.

* * @param uri the URI * @return a schema tree * @throws ProcessingException URI is not an absolute JSON reference, or * failed to dereference this URI * @throws NullPointerException URI is null */ public SchemaTree get(final URI uri) throws ProcessingException { final JsonRef ref = namespace.resolve(JsonRef.fromURI(uri)); if (!ref.isAbsolute()) throw new ProcessingException(new ProcessingMessage() .message(BUNDLE.getKey("refProcessing.uriNotAbsolute")) .put("uri", ref)); final URI realURI = ref.toURI(); try { final JsonNode node = cache.get(realURI); return dereferencing.newTree(ref, node); } catch (ExecutionException e) { throw (ProcessingException) e.getCause(); } } @Override public String toString() { return cache.toString(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy