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

com.canoo.dp.impl.validation.AbstractPropertyValidator Maven / Gradle / Ivy

/*
 * Copyright 2015-2018 Canoo Engineering AG.
 *
 * 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.canoo.dp.impl.validation;

import com.canoo.platform.remoting.Property;
import org.apiguardian.api.API;

import javax.validation.ConstraintValidator;
import javax.validation.ConstraintValidatorContext;
import javax.validation.ValidationException;
import java.lang.annotation.Annotation;

import static org.apiguardian.api.API.Status.INTERNAL;

/**
 * Abstract class for valdition of Dolphin Platform properties
 * @param  defines the annotation of the constraints
 * @param  the data type that can be validated by this class
 */
@API(since = "0.19.0", status = INTERNAL)
public abstract class AbstractPropertyValidator implements ConstraintValidator {

    private Class supportedValueClass;

    /**
     * Constructor
     * @param supportedValueClass the data type that can be validated by this class
     */
    public AbstractPropertyValidator(Class supportedValueClass) {
        this.supportedValueClass = supportedValueClass;
    }

    @Override
    public void initialize(T constraintAnnotation) {
    }

    /**
     * Checks if the given value is valid
     * @param value the value, guaranteed to be a non-null
     * @param context the context
     * @return true if the value is valid
     */
    protected abstract boolean checkValid(U value,
                           ConstraintValidatorContext context);

    /**
     * Returns true if null should be valid
     * @return true if null should be valid
     */
    protected boolean onNullValue() {
        return true;
    }

    @Override
    public boolean isValid(Property property,
                           ConstraintValidatorContext context) {
        /*
         * TODO: onNullValue should not even be considered when property type is unsupported,
         * e.g. when we are validating Max constraint on Date we should throw runtime exception regardless
         * whether it was null or not.
         * Type check comes first, then onNullValue ***with*** data class as argument.
         */
        if (property == null) {
            return onNullValue();
        }

        Object value = property.get();

        if(value == null) {
            return onNullValue();
        }
        if(supportedValueClass.isAssignableFrom(value.getClass()) ||
                supportedValueClass.equals(Boolean.class) && value.getClass().equals(Boolean.TYPE)) {
            return checkValid((U) value, context);
        }


        throw new ValidationException("Property contains value of type " + value.getClass() + " instead of " + supportedValueClass);
    }

}