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

org.cassandraunit.shaded.com.addthis.metrics.reporter.config.AbstractReporterConfig Maven / Gradle / Ivy

There is a newer version: 4.3.1.0
Show newest version
/*
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.addthis.metrics.reporter.config;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.yaml.snakeyaml.Yaml;
import org.yaml.snakeyaml.constructor.Constructor;

import javax.validation.ConstraintViolation;
import javax.validation.Validation;
import javax.validation.ValidatorFactory;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Set;
import java.util.SortedSet;
import java.util.TreeSet;

public abstract class AbstractReporterConfig
{
    private static final Logger log = LoggerFactory.getLogger(AbstractReporterConfig.class);

    protected static  T loadFromFile(String fileName, Class clazz) throws IOException
    {
        Yaml yaml = new Yaml(new Constructor(clazz));
        InputStream input = new FileInputStream(new File(fileName));
        return (T) yaml.load(input);
    }

    // Based on com.yammer.dropwizard.validation.Validator
    public static  boolean validate(T obj)
    {
        final ValidatorFactory factory = Validation.buildDefaultValidatorFactory();
        final Set> violations = factory.getValidator().validate(obj);
        final SortedSet errors = new TreeSet();
        for (ConstraintViolation v : violations)
        {
            errors.add(String.format("%s %s (was %s)",
                    v.getPropertyPath(),
                    v.getMessage(),
                    v.getInvalidValue()));
        }
        if (errors.isEmpty())
        {
            return true;
        }
        else
        {
            log.error("Failed to validate: {}", errors);
            return false;
        }
    }

    public static class ReporterConfigurationException extends RuntimeException
    {
        public ReporterConfigurationException(String msg)
        {
            super(msg);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy