colesico.framework.dslvalidator.ValidationContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of colesico-validation Show documentation
Show all versions of colesico-validation Show documentation
Colesico framework data bean validation assistant and simple dsl validator
/*
* Copyright © 2014-2020 Vladlen V. Larionov and others as noted.
*
* 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 colesico.framework.dslvalidator;
import colesico.framework.validation.ValidationError;
import colesico.framework.validation.ValidationIssue;
import org.apache.commons.lang3.StringUtils;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
/**
* Validation context
*
* @author Vladlen Larionov
*/
public final class ValidationContext {
// Name of value
private final String subject;
// Value to be validated
private V value;
// Validation parameters - any values that can be used by validators.
private Object[] params;
// Validation errors
private final List errors = new ArrayList<>();
// Reference to parent context
private final ValidationContext> superContext;
// Nested contexts ref. (subject->context)
private final Map nestedContexts = new LinkedHashMap<>();
private ValidationContext(ValidationContext superContext, String subject, V value, Object... params) {
this.subject = subject;
this.value = value;
this.superContext = superContext;
this.params = params;
}
/**
* Produce Root ValidationContext
*
* @param value
* @param
* @return
*/
public static ValidationContext ofRoot(String subject, V value, Object... params) {
return new ValidationContext(null, subject, value, params);
}
/**
* Produce nested ValidationContext
*
* @param superContext
* @param subject
* @param value
* @param
* @return
*/
public static ValidationContext ofNested(ValidationContext> superContext, String subject, V value, Object... params) {
ValidationContext childContext = new ValidationContext(superContext, subject, value, params);
superContext.getNestedContexts().put(childContext.getSubject(), childContext);
return childContext;
}
/**
* Returns root validation context
*/
public ValidationContext getRootContext() {
ValidationContext curCtx = this;
while (curCtx.getSuperContext() != null) {
curCtx = curCtx.getSuperContext();
}
return curCtx;
}
/**
* Finds deep nested context specified by subjects path
*/
public ValidationContext findNestedContext(String... path) {
ValidationContext ctx = this;
for (String subject : path) {
ctx = (ValidationContext) ctx.getNestedContexts().get(subject);
if (ctx == null) {
return null;
}
}
return ctx;
}
public String getSubject() {
return subject;
}
/**
* Returns value from this context
*/
public V getValue() {
return value;
}
public void setValue(V value) {
this.value = value;
}
public Object[] getParams() {
return params;
}
public T getParam(int index) {
if (params != null && index < params.length) {
return (T) params[index];
}
return null;
}
public T getRootParam(int index) {
return getRootContext().getParam(index);
}
public Object[] getRootParams() {
return getRootContext().getParams();
}
public void setParams(Object[] params) {
this.params = params;
}
public List getErrors() {
return errors;
}
public boolean hasErrors() {
return !errors.isEmpty();
}
public void addError(String code, String message) {
ValidationError error = new ValidationError(code, message);
errors.add(error);
}
public Map getNestedContexts() {
return nestedContexts;
}
public ValidationContext> getSuperContext() {
return superContext;
}
public ValidationIssue toIssue() {
ValidationIssue rootIssue = exportErrors();
return rootIssue;
}
protected ValidationIssue exportErrors() {
ValidationIssue issue = new ValidationIssue(getSubject());
for (ValidationContext> childContext : nestedContexts.values()) {
ValidationIssue childIssue = childContext.exportErrors();
if (childIssue != null) {
issue.addSubissue(childIssue);
}
}
if (hasErrors()) {
// export errors
for (ValidationError error : this.errors) {
issue.addError(error);
}
return issue;
} else if (issue.hasSubissues()) {
return issue;
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy