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

co.elastic.apm.agent.tracer.configuration.RangeValidator Maven / Gradle / Ivy

There is a newer version: 1.52.1
Show newest version
/*
 * Licensed to Elasticsearch B.V. under one or more contributor
 * license agreements. See the NOTICE file distributed with
 * this work for additional information regarding copyright
 * ownership. Elasticsearch B.V. licenses this file to you 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 co.elastic.apm.agent.tracer.configuration;

import org.stagemonitor.configuration.ConfigurationOption;

import javax.annotation.Nullable;

public class RangeValidator implements ConfigurationOption.Validator {

    @Nullable
    private final T min;
    @Nullable
    private final T max;
    private final boolean mustBeInRange;

    private RangeValidator(@Nullable T min, @Nullable T max, boolean mustBeInRange) {
        this.min = min;
        this.max = max;
        this.mustBeInRange = mustBeInRange;
    }

    public static  RangeValidator isInRange(T min, T max) {
        return new RangeValidator<>(min, max, true);
    }

    public static  RangeValidator isNotInRange(T min, T max) {
        return new RangeValidator<>(min, max, false);
    }

    public static  RangeValidator min(T min) {
        return new RangeValidator<>(min, null, true);
    }

    public static  RangeValidator max(T max) {
        return new RangeValidator<>(null, max, true);
    }

    @Override
    public void assertValid(@Nullable T value) {
        if (value != null) {
            boolean isInRange = true;
            if (min != null) {
                isInRange = min.compareTo(value) <= 0;
            }
            if (max != null) {
                isInRange &= value.compareTo(max) <= 0;
            }

            if (!isInRange && mustBeInRange) {
                throw new IllegalArgumentException(value + " must be in the range [" + min + "," + max + "]");
            }

            if (isInRange && !mustBeInRange) {
                throw new IllegalArgumentException(value + " must not be in the range [" + min + "," + max + "]");
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy