Open Kilda Java Documentation
ValidatingConfigurationProvider.java
Go to the documentation of this file.
1 /* Copyright 2018 Telstra Open Source
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 package org.openkilda.config.provider;
17 
18 import static java.lang.String.format;
19 import static java.util.Objects.requireNonNull;
20 import static java.util.stream.Collectors.toSet;
21 
22 import com.sabre.oss.conf4j.factory.ConfigurationFactory;
23 import com.sabre.oss.conf4j.source.ConfigurationSource;
24 
25 import java.util.Set;
26 import javax.validation.ConstraintViolation;
27 import javax.validation.Validation;
28 import javax.validation.Validator;
29 
40  protected final ConfigurationSource source;
41  protected final ConfigurationFactory factory;
42  private final Validator validator;
43 
44  public ValidatingConfigurationProvider(ConfigurationSource source, ConfigurationFactory factory) {
45  this.source = source;
46  this.factory = factory;
47 
48  validator = Validation.buildDefaultValidatorFactory().getValidator();
49  }
50 
57  public <T> T getConfiguration(Class<T> configurationType) {
58  requireNonNull(configurationType, "configurationType cannot be null");
59 
60  T instance = factory.createConfiguration(configurationType, source);
61 
62  Set<ConstraintViolation<T>> errors = validator.validate(instance);
63  if (!errors.isEmpty()) {
64  Set<String> errorDetails = errors.stream()
65  .map(v -> v.getPropertyPath() + " " + v.getMessage())
66  .collect(toSet());
67 
68  throw new ConfigurationException(
69  format("The configuration value(s) for %s violate constraint(s): %s",
70  configurationType.getSimpleName(), String.join(";", errorDetails)), errorDetails);
71  }
72 
73  return instance;
74  }
75 }
ValidatingConfigurationProvider(ConfigurationSource source, ConfigurationFactory factory)