fr.ird.observe.validation.ValidatorsManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-validation Show documentation
Show all versions of common-validation Show documentation
ObServe Toolkit Common Validation module
package fr.ird.observe.validation;
/*-
* #%L
* ObServe Toolkit :: Common Validation
* %%
* Copyright (C) 2017 - 2019 IRD, Ultreia.io
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the 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
* 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
* .
* #L%
*/
import com.google.common.collect.ImmutableSet;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import fr.ird.observe.dto.ObserveDto;
import fr.ird.observe.gson.ClassAdapter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.Reader;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.Collection;
/**
* Created by tchemit on 05/08/17.
*
* @author Tony Chemit - [email protected]
*/
public class ValidatorsManager implements ObserveDto {
private static final String RESOURCE_VALIDATORS = "/META-INF/validators/validation.json";
private final ImmutableSet validators;
public ValidatorsManager(Collection validators) {
this.validators = ImmutableSet.copyOf(validators);
}
public ValidatorsManager() {
try (Reader reader = new InputStreamReader(getClass().getResourceAsStream(RESOURCE_VALIDATORS))) {
ValidatorDto[] validators = getGson().fromJson(reader, ValidatorDto[].class);
this.validators = ImmutableSet.copyOf(validators);
} catch (Exception e) {
throw new ValidatorInitializationException(e);
}
}
public ImmutableSet getValidators() {
return validators;
}
public void store(Path target) throws IOException {
String validatorsJson = getGson().toJson(validators.toArray(new ValidatorDto[0]), ValidatorDto[].class);
Files.write(target, validatorsJson.getBytes(StandardCharsets.UTF_8));
}
protected Gson getGson() {
return new GsonBuilder().setPrettyPrinting().registerTypeAdapter(Class.class, new ClassAdapter()).create();
}
}