186 lines
7.9 KiB
Java
186 lines
7.9 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.writing;
|
||
|
|
|
||
|
|
import static com.google.common.base.Preconditions.checkArgument;
|
||
|
|
import static com.google.common.collect.Iterables.getOnlyElement;
|
||
|
|
import static dagger.internal.codegen.binding.BindingRequest.bindingRequest;
|
||
|
|
import static dagger.internal.codegen.binding.MapKeys.getMapKeyExpression;
|
||
|
|
import static dagger.internal.codegen.javapoet.CodeBlocks.toParametersCodeBlock;
|
||
|
|
import static dagger.internal.codegen.langmodel.Accessibility.isTypeAccessibleFrom;
|
||
|
|
import static dagger.internal.codegen.xprocessing.XElements.getSimpleName;
|
||
|
|
import static dagger.spi.model.BindingKind.MULTIBOUND_MAP;
|
||
|
|
|
||
|
|
import androidx.room.compiler.processing.XProcessingEnv;
|
||
|
|
import androidx.room.compiler.processing.XType;
|
||
|
|
import com.google.common.collect.ImmutableMap;
|
||
|
|
import com.google.common.collect.Maps;
|
||
|
|
import com.squareup.javapoet.ClassName;
|
||
|
|
import com.squareup.javapoet.CodeBlock;
|
||
|
|
import dagger.assisted.Assisted;
|
||
|
|
import dagger.assisted.AssistedFactory;
|
||
|
|
import dagger.assisted.AssistedInject;
|
||
|
|
import dagger.internal.MapBuilder;
|
||
|
|
import dagger.internal.codegen.base.MapType;
|
||
|
|
import dagger.internal.codegen.binding.BindingGraph;
|
||
|
|
import dagger.internal.codegen.binding.ContributionBinding;
|
||
|
|
import dagger.internal.codegen.binding.ProvisionBinding;
|
||
|
|
import dagger.internal.codegen.javapoet.Expression;
|
||
|
|
import dagger.internal.codegen.javapoet.TypeNames;
|
||
|
|
import dagger.spi.model.BindingKind;
|
||
|
|
import dagger.spi.model.DependencyRequest;
|
||
|
|
import java.util.Collections;
|
||
|
|
import javax.lang.model.type.TypeMirror;
|
||
|
|
|
||
|
|
/** A {@link RequestRepresentation} for multibound maps. */
|
||
|
|
final class MapRequestRepresentation extends RequestRepresentation {
|
||
|
|
/** 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 XProcessingEnv processingEnv;
|
||
|
|
private final ProvisionBinding binding;
|
||
|
|
private final ImmutableMap<DependencyRequest, ContributionBinding> dependencies;
|
||
|
|
private final ComponentRequestRepresentations componentRequestRepresentations;
|
||
|
|
private final boolean isExperimentalMergedMode;
|
||
|
|
|
||
|
|
@AssistedInject
|
||
|
|
MapRequestRepresentation(
|
||
|
|
@Assisted ProvisionBinding binding,
|
||
|
|
XProcessingEnv processingEnv,
|
||
|
|
BindingGraph graph,
|
||
|
|
ComponentImplementation componentImplementation,
|
||
|
|
ComponentRequestRepresentations componentRequestRepresentations) {
|
||
|
|
this.binding = binding;
|
||
|
|
this.processingEnv = processingEnv;
|
||
|
|
BindingKind bindingKind = this.binding.kind();
|
||
|
|
checkArgument(bindingKind.equals(MULTIBOUND_MAP), bindingKind);
|
||
|
|
this.componentRequestRepresentations = componentRequestRepresentations;
|
||
|
|
this.dependencies =
|
||
|
|
Maps.toMap(binding.dependencies(), dep -> graph.contributionBinding(dep.key()));
|
||
|
|
this.isExperimentalMergedMode =
|
||
|
|
componentImplementation.compilerMode().isExperimentalMergedMode();
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
Expression getDependencyExpression(ClassName requestingClass) {
|
||
|
|
// 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) {
|
||
|
|
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 : dependencies.keySet()) {
|
||
|
|
instantiation.add(".put($L)", keyAndValueExpression(dependency, requestingClass));
|
||
|
|
}
|
||
|
|
return Expression.create(
|
||
|
|
isImmutableMapAvailable ? immutableMapType() : binding.key().type().xprocessing(),
|
||
|
|
instantiation.add(".build()").build());
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private XType immutableMapType() {
|
||
|
|
MapType mapType = MapType.from(binding.key());
|
||
|
|
return processingEnv.getDeclaredType(
|
||
|
|
processingEnv.requireTypeElement(TypeNames.IMMUTABLE_MAP),
|
||
|
|
mapType.keyType(),
|
||
|
|
mapType.valueType());
|
||
|
|
}
|
||
|
|
|
||
|
|
private CodeBlock keyAndValueExpression(DependencyRequest dependency, ClassName requestingClass) {
|
||
|
|
return CodeBlock.of(
|
||
|
|
"$L, $L",
|
||
|
|
getMapKeyExpression(dependencies.get(dependency), requestingClass, processingEnv),
|
||
|
|
isExperimentalMergedMode
|
||
|
|
? componentRequestRepresentations
|
||
|
|
.getExperimentalSwitchingProviderDependencyRepresentation(
|
||
|
|
bindingRequest(dependency))
|
||
|
|
.getDependencyExpression(dependency.kind(), binding)
|
||
|
|
.codeBlock()
|
||
|
|
: componentRequestRepresentations
|
||
|
|
.getDependencyExpression(bindingRequest(dependency), requestingClass)
|
||
|
|
.codeBlock());
|
||
|
|
}
|
||
|
|
|
||
|
|
private Expression collectionsStaticFactoryInvocation(
|
||
|
|
ClassName requestingClass, CodeBlock methodInvocation) {
|
||
|
|
return Expression.create(
|
||
|
|
binding.key().type().java(),
|
||
|
|
CodeBlock.builder()
|
||
|
|
.add("$T.", Collections.class)
|
||
|
|
.add(maybeTypeParameters(requestingClass))
|
||
|
|
.add(methodInvocation)
|
||
|
|
.build());
|
||
|
|
}
|
||
|
|
|
||
|
|
private CodeBlock maybeTypeParameters(ClassName requestingClass) {
|
||
|
|
TypeMirror bindingKeyType = binding.key().type().java();
|
||
|
|
MapType mapType = MapType.from(binding.key());
|
||
|
|
return isTypeAccessibleFrom(bindingKeyType, requestingClass.packageName())
|
||
|
|
? CodeBlock.of(
|
||
|
|
"<$T, $T>", mapType.keyType().getTypeName(), mapType.valueType().getTypeName())
|
||
|
|
: CodeBlock.of("");
|
||
|
|
}
|
||
|
|
|
||
|
|
private boolean isImmutableMapBuilderWithExpectedSizeAvailable() {
|
||
|
|
return isImmutableMapAvailable()
|
||
|
|
&& processingEnv.requireTypeElement(TypeNames.IMMUTABLE_MAP).getDeclaredMethods().stream()
|
||
|
|
.anyMatch(method -> getSimpleName(method).contentEquals("builderWithExpectedSize"));
|
||
|
|
}
|
||
|
|
|
||
|
|
private boolean isImmutableMapAvailable() {
|
||
|
|
return processingEnv.findTypeElement(TypeNames.IMMUTABLE_MAP) != null;
|
||
|
|
}
|
||
|
|
|
||
|
|
@AssistedFactory
|
||
|
|
static interface Factory {
|
||
|
|
MapRequestRepresentation create(ProvisionBinding binding);
|
||
|
|
}
|
||
|
|
}
|