com.github.fge.jsonschema.cfg.ValidationConfigurationBuilder Maven / Gradle / Ivy
/*
* 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.cfg;
import com.github.fge.jsonschema.SchemaVersion;
import com.github.fge.jsonschema.exceptions.unchecked.ValidationConfigurationError;
import com.github.fge.jsonschema.library.DraftV3Library;
import com.github.fge.jsonschema.library.DraftV4Library;
import com.github.fge.jsonschema.library.Library;
import com.github.fge.jsonschema.ref.JsonRef;
import com.github.fge.jsonschema.report.ProcessingMessage;
import com.github.fge.jsonschema.util.Thawed;
import com.google.common.collect.Maps;
import java.util.Map;
import static com.github.fge.jsonschema.messages.ConfigurationMessages.*;
public final class ValidationConfigurationBuilder
implements Thawed
{
private static final Map DEFAULT_LIBRARIES;
static {
DEFAULT_LIBRARIES = Maps.newEnumMap(SchemaVersion.class);
DEFAULT_LIBRARIES.put(SchemaVersion.DRAFTV3, DraftV3Library.get());
DEFAULT_LIBRARIES.put(SchemaVersion.DRAFTV4, DraftV4Library.get());
}
final Map libraries;
Library defaultLibrary = DEFAULT_LIBRARIES.get(SchemaVersion.DRAFTV4);
boolean useFormat = true;
ValidationConfigurationBuilder()
{
libraries = Maps.newHashMap();
JsonRef ref;
Library library;
for (final Map.Entry entry:
DEFAULT_LIBRARIES.entrySet()) {
ref = JsonRef.fromURI(entry.getKey().getLocation());
library = entry.getValue();
libraries.put(ref, library);
}
}
ValidationConfigurationBuilder(final ValidationConfiguration cfg)
{
libraries = Maps.newHashMap(cfg.libraries);
defaultLibrary = cfg.defaultLibrary;
useFormat = cfg.useFormat;
}
public ValidationConfigurationBuilder addLibrary(final String uri,
final Library library)
{
final JsonRef ref = RefSanityChecks.absoluteRef(uri);
if (library == null)
throw new ValidationConfigurationError(new ProcessingMessage()
.message(NULL_LIBRARY));
if (libraries.containsKey(ref))
throw new ValidationConfigurationError(new ProcessingMessage()
.message(DUP_LIBRARY).put("uri", ref));
libraries.put(ref, library);
return this;
}
public ValidationConfigurationBuilder setDefaultVersion(
final SchemaVersion version)
{
/*
* They are always in, so this is safe
*/
defaultLibrary = DEFAULT_LIBRARIES.get(version);
return this;
}
public ValidationConfigurationBuilder setDefaultLibrary(final String uri,
final Library library)
{
addLibrary(uri, library);
defaultLibrary = library;
return this;
}
public ValidationConfigurationBuilder useFormat(final boolean useFormat)
{
this.useFormat = useFormat;
return this;
}
@Override
public ValidationConfiguration freeze()
{
return new ValidationConfiguration(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy