177 lines
7.3 KiB
Java
177 lines
7.3 KiB
Java
/*
|
|
* Copyright (C) 2017 The Dagger Authors.
|
|
*
|
|
* 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 dagger.internal.codegen;
|
|
|
|
import static com.google.common.base.Preconditions.checkArgument;
|
|
import static com.google.common.collect.Iterables.getOnlyElement;
|
|
import static dagger.internal.codegen.BindingRequest.bindingRequest;
|
|
import static dagger.internal.codegen.MapKeys.getMapKeyExpression;
|
|
import static dagger.internal.codegen.javapoet.CodeBlocks.toParametersCodeBlock;
|
|
import static dagger.internal.codegen.langmodel.Accessibility.isTypeAccessibleFrom;
|
|
import static dagger.model.BindingKind.MULTIBOUND_MAP;
|
|
import static javax.lang.model.util.ElementFilter.methodsIn;
|
|
|
|
import com.google.common.collect.ImmutableMap;
|
|
import com.google.common.collect.Maps;
|
|
import com.squareup.javapoet.ClassName;
|
|
import com.squareup.javapoet.CodeBlock;
|
|
import dagger.internal.MapBuilder;
|
|
import dagger.internal.codegen.javapoet.Expression;
|
|
import dagger.internal.codegen.langmodel.DaggerElements;
|
|
import dagger.internal.codegen.langmodel.DaggerTypes;
|
|
import dagger.model.BindingKind;
|
|
import dagger.model.DependencyRequest;
|
|
import java.util.Collections;
|
|
import java.util.Optional;
|
|
import javax.lang.model.type.DeclaredType;
|
|
import javax.lang.model.type.TypeMirror;
|
|
|
|
/** A {@link BindingExpression} for multibound maps. */
|
|
final class MapBindingExpression extends MultibindingExpression {
|
|
/** Maximum number of key-value pairs that can be passed to ImmutableMap.of(K, V, K, V, ...). */
|
|
private static final int MAX_IMMUTABLE_MAP_OF_KEY_VALUE_PAIRS = 5;
|
|
|
|
private final ProvisionBinding binding;
|
|
private final ImmutableMap<DependencyRequest, ContributionBinding> dependencies;
|
|
private final ComponentBindingExpressions componentBindingExpressions;
|
|
private final DaggerTypes types;
|
|
private final DaggerElements elements;
|
|
|
|
MapBindingExpression(
|
|
ResolvedBindings resolvedBindings,
|
|
ComponentImplementation componentImplementation,
|
|
BindingGraph graph,
|
|
ComponentBindingExpressions componentBindingExpressions,
|
|
DaggerTypes types,
|
|
DaggerElements elements) {
|
|
super(resolvedBindings, componentImplementation);
|
|
this.binding = (ProvisionBinding) resolvedBindings.contributionBinding();
|
|
BindingKind bindingKind = this.binding.kind();
|
|
checkArgument(bindingKind.equals(MULTIBOUND_MAP), bindingKind);
|
|
this.componentBindingExpressions = componentBindingExpressions;
|
|
this.types = types;
|
|
this.elements = elements;
|
|
this.dependencies =
|
|
Maps.toMap(
|
|
binding.dependencies(),
|
|
dep -> graph.contributionBindings().get(dep.key()).contributionBinding());
|
|
}
|
|
|
|
@Override
|
|
protected Expression buildDependencyExpression(ClassName requestingClass) {
|
|
Optional<CodeBlock> superMethodCall = superMethodCall();
|
|
// TODO(ronshapiro): We should also make an ImmutableMap version of MapFactory
|
|
boolean isImmutableMapAvailable = isImmutableMapAvailable();
|
|
// TODO(ronshapiro, gak): Use Maps.immutableEnumMap() if it's available?
|
|
if (isImmutableMapAvailable
|
|
&& dependencies.size() <= MAX_IMMUTABLE_MAP_OF_KEY_VALUE_PAIRS
|
|
&& !superMethodCall.isPresent()) {
|
|
return Expression.create(
|
|
immutableMapType(),
|
|
CodeBlock.builder()
|
|
.add("$T.", ImmutableMap.class)
|
|
.add(maybeTypeParameters(requestingClass))
|
|
.add(
|
|
"of($L)",
|
|
dependencies
|
|
.keySet()
|
|
.stream()
|
|
.map(dependency -> keyAndValueExpression(dependency, requestingClass))
|
|
.collect(toParametersCodeBlock()))
|
|
.build());
|
|
}
|
|
switch (dependencies.size()) {
|
|
case 0:
|
|
return collectionsStaticFactoryInvocation(requestingClass, CodeBlock.of("emptyMap()"));
|
|
case 1:
|
|
return collectionsStaticFactoryInvocation(
|
|
requestingClass,
|
|
CodeBlock.of(
|
|
"singletonMap($L)",
|
|
keyAndValueExpression(getOnlyElement(dependencies.keySet()), requestingClass)));
|
|
default:
|
|
CodeBlock.Builder instantiation = CodeBlock.builder();
|
|
instantiation
|
|
.add("$T.", isImmutableMapAvailable ? ImmutableMap.class : MapBuilder.class)
|
|
.add(maybeTypeParameters(requestingClass));
|
|
if (isImmutableMapBuilderWithExpectedSizeAvailable()) {
|
|
instantiation.add("builderWithExpectedSize($L)", dependencies.size());
|
|
} else if (isImmutableMapAvailable) {
|
|
instantiation.add("builder()");
|
|
} else {
|
|
instantiation.add("newMapBuilder($L)", dependencies.size());
|
|
}
|
|
for (DependencyRequest dependency : getNewContributions(dependencies.keySet())) {
|
|
instantiation.add(".put($L)", keyAndValueExpression(dependency, requestingClass));
|
|
}
|
|
if (superMethodCall.isPresent()) {
|
|
instantiation.add(CodeBlock.of(".putAll($L)", superMethodCall.get()));
|
|
}
|
|
return Expression.create(
|
|
isImmutableMapAvailable ? immutableMapType() : binding.key().type(),
|
|
instantiation.add(".build()").build());
|
|
}
|
|
}
|
|
|
|
private DeclaredType immutableMapType() {
|
|
MapType mapType = MapType.from(binding.key());
|
|
return types.getDeclaredType(
|
|
elements.getTypeElement(ImmutableMap.class), mapType.keyType(), mapType.valueType());
|
|
}
|
|
|
|
private CodeBlock keyAndValueExpression(DependencyRequest dependency, ClassName requestingClass) {
|
|
return CodeBlock.of(
|
|
"$L, $L",
|
|
getMapKeyExpression(dependencies.get(dependency), requestingClass, elements),
|
|
componentBindingExpressions
|
|
.getDependencyExpression(bindingRequest(dependency), requestingClass)
|
|
.codeBlock());
|
|
}
|
|
|
|
private Expression collectionsStaticFactoryInvocation(
|
|
ClassName requestingClass, CodeBlock methodInvocation) {
|
|
return Expression.create(
|
|
binding.key().type(),
|
|
CodeBlock.builder()
|
|
.add("$T.", Collections.class)
|
|
.add(maybeTypeParameters(requestingClass))
|
|
.add(methodInvocation)
|
|
.build());
|
|
}
|
|
|
|
private CodeBlock maybeTypeParameters(ClassName requestingClass) {
|
|
TypeMirror bindingKeyType = binding.key().type();
|
|
MapType mapType = MapType.from(binding.key());
|
|
return isTypeAccessibleFrom(bindingKeyType, requestingClass.packageName())
|
|
? CodeBlock.of("<$T, $T>", mapType.keyType(), mapType.valueType())
|
|
: CodeBlock.of("");
|
|
}
|
|
|
|
private boolean isImmutableMapBuilderWithExpectedSizeAvailable() {
|
|
if (isImmutableMapAvailable()) {
|
|
return methodsIn(elements.getTypeElement(ImmutableMap.class).getEnclosedElements())
|
|
.stream()
|
|
.anyMatch(method -> method.getSimpleName().contentEquals("builderWithExpectedSize"));
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private boolean isImmutableMapAvailable() {
|
|
return elements.getTypeElement(ImmutableMap.class) != null;
|
|
}
|
|
}
|