blob: 05a0e41feb02637b0c805d57d68c9333f8da87a1 [file] [log] [blame]
/*
* Copyright (C) 2015 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.checkNotNull;
import static dagger.internal.codegen.BindingType.PROVISION;
import com.squareup.javapoet.ClassName;
import com.squareup.javapoet.CodeBlock;
import dagger.internal.codegen.FrameworkFieldInitializer.FrameworkInstanceCreationExpression;
import dagger.model.RequestKind;
import dagger.producers.Producer;
import java.util.Optional;
/** An {@link Producer} creation expression for provision bindings. */
final class ProducerFromProviderCreationExpression implements FrameworkInstanceCreationExpression {
private final ContributionBinding binding;
private final GeneratedComponentModel generatedComponentModel;
private final ComponentBindingExpressions componentBindingExpressions;
ProducerFromProviderCreationExpression(
ContributionBinding binding,
GeneratedComponentModel generatedComponentModel,
ComponentBindingExpressions componentBindingExpressions) {
this.binding = checkNotNull(binding);
this.generatedComponentModel = checkNotNull(generatedComponentModel);
this.componentBindingExpressions = checkNotNull(componentBindingExpressions);
}
@Override
public CodeBlock creationExpression() {
return FrameworkType.PROVIDER.to(
RequestKind.PRODUCER,
componentBindingExpressions
.getDependencyExpression(
FrameworkDependency.create(binding.key(), PROVISION),
generatedComponentModel.name())
.codeBlock());
}
@Override
public Optional<ClassName> alternativeFrameworkClass() {
return Optional.of(ClassName.get(Producer.class));
}
}