io.rxmicro.cdi.internal.CircularDependenciesResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxmicro-cdi Show documentation
Show all versions of rxmicro-cdi Show documentation
The module that is an implementation of the Dependency Injection design pattern, that is integrated to the RxMicro framework.
/*
* Copyright (c) 2020. https://rxmicro.io
*
* 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 io.rxmicro.cdi.internal;
import io.rxmicro.common.RxMicroException;
import java.util.ArrayDeque;
import java.util.Deque;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.stream.Collectors;
import static io.rxmicro.common.util.Formats.format;
import static java.lang.String.join;
import static java.util.Map.entry;
/**
* @author nedis
* @since 0.1
*/
public final class CircularDependenciesResolver {
private static final int MAX_DEPENDENCY_DEPTH = 50;
private final Deque> deque = new ArrayDeque<>();
public void push(final Object instance,
final String injectionPoint) {
deque.push(entry(instance, injectionPoint));
if (deque.size() >= MAX_DEPENDENCY_DEPTH) {
throw new CircularDependenciesDetectedException(join(";", getCircularDependencies()));
}
}
private List getCircularDependencies() {
final Map countMap = new HashMap<>();
for (final Map.Entry