com.speedment.common.codegen.internal.DefaultTransformFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codegen Show documentation
Show all versions of codegen Show documentation
An object-oriented code generator for Java that is built using the
Model-View-Controller (MVC) design philosophy.
/**
*
* 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 extends Transform, ?>>>>> 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);
}
}