dagger.hilt.android.processor.internal.bindvalue.BindValueGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hilt-compiler Show documentation
Show all versions of hilt-compiler Show documentation
A fast dependency injector for Android and Java.
The newest version!
/*
* Copyright (C) 2020 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.hilt.android.processor.internal.bindvalue;
import static com.google.common.base.CaseFormat.LOWER_CAMEL;
import static com.google.common.base.CaseFormat.UPPER_CAMEL;
import static java.util.Comparator.comparing;
import androidx.room.compiler.processing.JavaPoetExtKt;
import androidx.room.compiler.processing.XFiler.Mode;
import androidx.room.compiler.processing.XProcessingEnv;
import com.google.common.collect.ImmutableSet;
import com.squareup.javapoet.ClassName;
import com.squareup.javapoet.CodeBlock;
import com.squareup.javapoet.JavaFile;
import com.squareup.javapoet.MethodSpec;
import com.squareup.javapoet.ParameterSpec;
import com.squareup.javapoet.TypeSpec;
import dagger.Module;
import dagger.Provides;
import dagger.hilt.android.processor.internal.bindvalue.BindValueMetadata.BindValueElement;
import dagger.hilt.processor.internal.ClassNames;
import dagger.hilt.processor.internal.Components;
import dagger.hilt.processor.internal.Processors;
import dagger.internal.codegen.xprocessing.XAnnotations;
import dagger.internal.codegen.xprocessing.XElements;
import dagger.multibindings.ElementsIntoSet;
import dagger.multibindings.IntoMap;
import dagger.multibindings.IntoSet;
import java.io.IOException;
import javax.lang.model.element.Modifier;
/**
* Generates a SINGLETON module for all {@code BindValue} annotated fields in a test class.
*/
final class BindValueGenerator {
private static final String SUFFIX = "_BindValueModule";
private final XProcessingEnv env;
private final BindValueMetadata metadata;
private final ClassName testClassName;
private final ClassName className;
BindValueGenerator(XProcessingEnv env, BindValueMetadata metadata) {
this.env = env;
this.metadata = metadata;
testClassName = metadata.testElement().getClassName();
className = Processors.append(testClassName, SUFFIX);
}
// @Module
// @InstallIn(SingletonComponent.class)
// public final class FooTest_BindValueModule {
// // providesMethods ...
// }
void generate() throws IOException {
TypeSpec.Builder builder = TypeSpec.classBuilder(className);
JavaPoetExtKt.addOriginatingElement(builder, metadata.testElement())
.addAnnotation(Processors.getOriginatingElementAnnotation(metadata.testElement()))
.addModifiers(Modifier.PUBLIC, Modifier.FINAL)
.addAnnotation(Module.class)
.addAnnotation(
Components.getInstallInAnnotationSpec(ImmutableSet.of(ClassNames.SINGLETON_COMPONENT)))
.addMethod(providesTestMethod());
Processors.addGeneratedAnnotation(builder, env, getClass());
metadata.bindValueElements().stream()
.map(this::providesMethod)
.sorted(comparing(MethodSpec::toString))
.forEachOrdered(builder::addMethod);
env.getFiler()
.write(JavaFile.builder(className.packageName(), builder.build()).build(), Mode.Isolating);
}
// @Provides
// static FooTest providesFooTest(@ApplicationContext Context context) {
// return (FooTest)
// ((TestApplicationComponentManager)
// ((TestApplicationComponentManagerHolder) context).componentManager())
// .getTestInstance();
// }
private MethodSpec providesTestMethod() {
String methodName = "provides" + testClassName.simpleName();
MethodSpec.Builder builder =
MethodSpec.methodBuilder(methodName)
.addAnnotation(Provides.class)
.addModifiers(Modifier.STATIC)
.addParameter(
ParameterSpec.builder(ClassNames.CONTEXT, "context")
.addAnnotation(ClassNames.APPLICATION_CONTEXT)
.build())
.returns(testClassName)
.addStatement(
"return ($T) (($T) (($T) context).componentManager()).getTestInstance()",
testClassName,
ClassNames.TEST_APPLICATION_COMPONENT_MANAGER,
ClassNames.TEST_APPLICATION_COMPONENT_MANAGER_HOLDER);
return builder.build();
}
// @Provides
// @BarQualifier
// static Bar providesBarQualifierBar(FooTest test) {
// return test.bar;
// }
private MethodSpec providesMethod(BindValueElement bindValue) {
// We only allow fields in the Test class, which should have unique variable names.
String methodName =
"provides" + LOWER_CAMEL.to(UPPER_CAMEL, bindValue.fieldElement().getName());
MethodSpec.Builder builder =
MethodSpec.methodBuilder(methodName)
.addAnnotation(Provides.class)
.addModifiers(Modifier.STATIC)
.returns(bindValue.fieldElement().getType().getTypeName());
if (XElements.isStatic(bindValue.fieldElement())) {
builder.addStatement("return $T.$L", testClassName, bindValue.fieldElement().getName());
} else {
builder
.addParameter(testClassName, "test")
.addStatement(
"return $L",
bindValue.getterElement().isPresent()
? CodeBlock.of("test.$L()", bindValue.getterElement().get().getJvmName())
: CodeBlock.of("test.$L", bindValue.fieldElement().getName()));
}
ClassName annotationClassName = bindValue.annotationName();
if (BindValueMetadata.BIND_VALUE_INTO_MAP_ANNOTATIONS.contains(annotationClassName)) {
builder.addAnnotation(IntoMap.class);
// It is safe to call get() on the Optional returned by mapKey()
// because a @BindValueIntoMap is required to have one and is checked in
// BindValueMetadata.BindValueElement.create().
builder.addAnnotation(XAnnotations.getAnnotationSpec(bindValue.mapKey().get()));
} else if (BindValueMetadata.BIND_VALUE_INTO_SET_ANNOTATIONS.contains(annotationClassName)) {
builder.addAnnotation(IntoSet.class);
} else if (BindValueMetadata.BIND_ELEMENTS_INTO_SET_ANNOTATIONS.contains(annotationClassName)) {
builder.addAnnotation(ElementsIntoSet.class);
}
bindValue.qualifier().ifPresent(q -> builder.addAnnotation(XAnnotations.getAnnotationSpec(q)));
return builder.build();
}
}