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

com.speedment.common.codegen.internal.DefaultTransformFactory Maven / Gradle / Ivy

Go to download

A Speedment bundle that shades all dependencies into one jar. This is useful when deploying an application on a server.

The newest version!
/*
 *
 * Copyright (c) 2006-2019, Speedment, Inc. All Rights Reserved.
 *
 * 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.speedment.common.codegen.internal;

import com.speedment.common.codegen.Transform;
import com.speedment.common.codegen.TransformFactory;

import java.util.AbstractMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.function.Supplier;

import static com.speedment.common.codegen.internal.util.NullUtil.requireNonNulls;
import static java.util.Objects.requireNonNull;
import static java.util.stream.Collectors.toSet;

/**
 * The default implementation of the {@link TransformFactory} interface.
 *
 * @author Emil Forslund
 */
public class DefaultTransformFactory implements TransformFactory {

    private final Map, Set, Supplier>>>> transforms;
    private final String name;

    /**
     * Instantiates the factory.
     *
     * @param name the unique name to use
     */
    public DefaultTransformFactory(String name) {
        this.name = requireNonNull(name);
        this.transforms = new ConcurrentHashMap<>();
    }

    @Override
    public String getName() {
        return name;
    }

    @Override
    public > TransformFactory install(Class from, Class to, Supplier transform) {
        requireNonNulls(from, to, transform);

        transforms.computeIfAbsent(from, f -> new HashSet<>())
            .add(new AbstractMap.SimpleEntry<>(to, transform));

        return this;
    }

    @Override
    @SuppressWarnings("unchecked")
    public > Set, T>> allFrom(Class model) {
        requireNonNull(model);
        return transforms.entrySet().stream()
            .filter(e -> e.getKey().isAssignableFrom(model))
            .flatMap(e -> e.getValue().stream())
            .map(e -> toEntry(e.getKey(), (T) e.getValue().get()))
            .collect(toSet());
    }

    private static > Map.Entry, T> toEntry(Class key, T value) {
        return new AbstractMap.SimpleEntry<>(key, value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy