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

org.gradle.api.internal.provider.ValueSanitizers Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
/*
 * Copyright 2018 the original author or authors.
 *
 * 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 org.gradle.api.internal.provider;

import groovy.lang.GString;
import org.gradle.internal.Cast;
import org.gradle.util.CollectionUtils;

import javax.annotation.Nullable;
import java.util.Collection;

public class ValueSanitizers {
    private static final ValueSanitizer STRING_VALUE_SANITIZER = new ValueSanitizer() {
        @Override
        @Nullable
        public Object sanitize(@Nullable Object value) {
            if (value instanceof GString) {
                return value.toString();
            } else {
                return value;
            }
        }
    };
    private static final ValueSanitizer IDENTITY_SANITIZER = new ValueSanitizer() {
        @Override
        @Nullable
        public Object sanitize(@Nullable Object value) {
            return value;
        }
    };
    private static final ValueCollector IDENTITY_VALUE_COLLECTOR = new ValueCollector() {
        @Override
        public void add(@Nullable Object value, Collection dest) {
            dest.add(value);
        }

        @Override
        public void addAll(Iterable values, Collection dest) {
            CollectionUtils.addAll(dest, values);
        }
    };
    private static final ValueCollector STRING_VALUE_COLLECTOR = new ValueCollector() {
        @Override
        public void add(@Nullable Object value, Collection dest) {
            dest.add(STRING_VALUE_SANITIZER.sanitize(value));
        }

        @Override
        public void addAll(Iterable values, Collection dest) {
            for (Object value : values) {
                add(value, dest);
            }
        }
    };

    public static  ValueSanitizer forType(Class targetType) {
        if (String.class.equals(targetType)) {
            return Cast.uncheckedCast(STRING_VALUE_SANITIZER);
        } else {
            return Cast.uncheckedCast(IDENTITY_SANITIZER);
        }
    }

    public static  ValueCollector collectorFor(Class elementType) {
        if (String.class.equals(elementType)) {
            return Cast.uncheckedCast(STRING_VALUE_COLLECTOR);
        } else {
            return Cast.uncheckedCast(IDENTITY_VALUE_COLLECTOR);
        }
    }
}