/* * Copyright (C) 2023 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.functional.kotlinsrc.multibindings import dagger.Component import dagger.Lazy import dagger.Module import dagger.Provides import dagger.multibindings.IntoMap import dagger.multibindings.StringKey import java.util.concurrent.atomic.AtomicInteger import javax.inject.Provider import javax.inject.Singleton /** * Bindings that use `Lazy` as the value in a multibound map. A regression was uncovered when * using `MapType.valuesAreFrameworkType()`, which treats [Lazy] as a framework type and incorrectly * suggested [dagger.internal.MapProviderFactory] for a `Map>` instead of a plain * [dagger.internal.MapFactory]. See b/65084589. */ class LazyMaps { @Module internal object TestModule { @Provides @Singleton fun provideAtomicInteger(): AtomicInteger = AtomicInteger() @Provides fun provideString(atomicInteger: AtomicInteger): String = "value-${atomicInteger.incrementAndGet()}" /* TODO(b/65118638) Replace once @Binds @IntoMap Lazy methods work properly. @Binds @IntoMap @StringKey("binds-key") abstract Lazy mapContributionAsBinds(Lazy lazy); */ @Provides @IntoMap @StringKey("key") fun mapContribution(lazy: Lazy): Lazy = lazy } @Singleton @Component(modules = [TestModule::class]) interface TestComponent { fun mapOfLazy(): Map> fun mapOfProviderOfLazy(): Map>> fun providerForMapOfLazy(): Provider>> fun providerForMapOfProviderOfLazy(): Provider>>> } }