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

org.dalesbred.internal.instantiation.ConversionMap Maven / Gradle / Ivy

There is a newer version: 1.3.6
Show newest version
/*
 * Copyright (c) 2017 Evident Solutions Oy
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

package org.dalesbred.internal.instantiation;

import org.jetbrains.annotations.NotNull;

import java.lang.reflect.Type;
import java.util.*;

import static java.util.Collections.emptyList;
import static org.dalesbred.internal.utils.Primitives.wrap;
import static org.dalesbred.internal.utils.TypeUtils.*;

final class ConversionMap {

    private final @NotNull Map> mappings = new HashMap<>();

    void register(@NotNull Type source, @NotNull Type target, @NotNull TypeConversion conversion) {
        mappings.computeIfAbsent(wrap(source), a -> new ArrayList<>()).add(new ConversionRegistration(target, conversion));
    }

    @NotNull
    Optional findConversion(@NotNull Type source, @NotNull Type target) {
        for (Type cl = wrap(source); cl != null; cl = genericSuperClass(cl)) {
            Optional conversion = findConversionsRegisteredFor(cl, target);
            if (conversion.isPresent())
                return conversion;
        }

        for (Type cl : genericInterfaces(source)) {
            Optional conversion = findConversionsRegisteredFor(cl, target);
            if (conversion.isPresent())
                return conversion;
        }

        return Optional.empty();
    }

    private @NotNull Optional findConversionsRegisteredFor(@NotNull Type source, @NotNull Type target) {
        List candidates = mappings.getOrDefault(source, emptyList());

        for (int i = candidates.size() - 1; i >= 0; i--) {
            ConversionRegistration conversion = candidates.get(i);
            if (isAssignable(target, conversion.target))
                return Optional.of(conversion.conversion);
        }

        return Optional.empty();
    }

    private static final class ConversionRegistration {

        private final @NotNull Type target;

        private final @NotNull TypeConversion conversion;

        private ConversionRegistration(@NotNull Type target, @NotNull TypeConversion conversion) {
            this.target = target;
            this.conversion = conversion;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy