de.quantummaid.injectmaid.Definitions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of injectmaid Show documentation
Show all versions of injectmaid Show documentation
InjectMaid is a lightweight dependency injection framework that does not rely on annotations.
/*
* Copyright (c) 2020 Richard Hauswald - https://quantummaid.de/.
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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 de.quantummaid.injectmaid;
import de.quantummaid.reflectmaid.ResolvedType;
import lombok.AccessLevel;
import lombok.EqualsAndHashCode;
import lombok.RequiredArgsConstructor;
import lombok.ToString;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import static de.quantummaid.injectmaid.InjectMaidException.injectMaidException;
import static java.lang.String.format;
import static java.util.Comparator.comparing;
import static java.util.stream.Collectors.joining;
import static java.util.stream.Collectors.toList;
@ToString
@EqualsAndHashCode
@RequiredArgsConstructor(access = AccessLevel.PRIVATE)
public final class Definitions {
private final List scopes;
private final Map> definitions;
public static Definitions definitions(final List scopes,
final Map> definitions) {
return new Definitions(scopes, definitions);
}
public boolean hasDefinitionFor(final ResolvedType type, final Scope scope) {
if (!definitions.containsKey(type)) {
return false;
}
return definitions.get(type).stream()
.filter(definition -> definition.scope().contains(scope))
.max(comparing(definition -> definition.scope().size()))
.isPresent();
}
public Definition definitionFor(final ResolvedType type, final Scope scope) {
if (!definitions.containsKey(type)) {
throw injectMaidException(format("Cannot instantiate unregistered type '%s'", type.description()));
}
return definitions.get(type).stream()
.filter(definition -> definition.scope().contains(scope))
.max(comparing(definition -> definition.scope().size()))
.orElseThrow(() -> injectMaidException(format(
"Tried to instantiate unregistered type '%s'", type.description())));
}
public List definitionsOnScope(final Scope scope) {
return definitions.values().stream()
.flatMap(Collection::stream)
.filter(definition -> definition.scope().equals(scope))
.collect(toList());
}
public List allScopes() {
return scopes;
}
public String dump() {
return definitions.values().stream()
.flatMap(Collection::stream)
.map(definition -> String.format("%s %s (%s)",
definition.scope().render(),
definition.type().description(),
definition.reusePolicy()))
.sorted()
.collect(joining("\n"));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy