1 /* 2 * Copyright (C) 2019 The Dagger Authors. 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package dagger.internal.codegen; 18 19 import dagger.Binds; 20 import dagger.Module; 21 import dagger.internal.codegen.base.ClearableCache; 22 import dagger.internal.codegen.binding.BindingGraphFactory; 23 import dagger.internal.codegen.binding.ModuleDescriptor; 24 import dagger.internal.codegen.kotlin.KotlinMetadataFactory; 25 import dagger.internal.codegen.validation.AnyBindingMethodValidator; 26 import dagger.internal.codegen.validation.ComponentCreatorValidator; 27 import dagger.internal.codegen.validation.ComponentValidator; 28 import dagger.internal.codegen.validation.InjectValidator; 29 import dagger.internal.codegen.validation.SuperficialValidator; 30 import dagger.multibindings.IntoSet; 31 32 /** 33 * Binding contributions to a set of {@link ClearableCache}s that will be cleared at the end of each 34 * processing round. 35 */ 36 @Module 37 interface ProcessingRoundCacheModule { 38 @Binds 39 @IntoSet anyBindingMethodValidator(AnyBindingMethodValidator cache)40 ClearableCache anyBindingMethodValidator(AnyBindingMethodValidator cache); 41 42 @Binds 43 @IntoSet injectValidator(InjectValidator cache)44 ClearableCache injectValidator(InjectValidator cache); 45 46 @Binds 47 @IntoSet moduleDescriptorFactory(ModuleDescriptor.Factory cache)48 ClearableCache moduleDescriptorFactory(ModuleDescriptor.Factory cache); 49 50 @Binds 51 @IntoSet bindingGraphFactory(BindingGraphFactory cache)52 ClearableCache bindingGraphFactory(BindingGraphFactory cache); 53 54 @Binds 55 @IntoSet componentValidator(ComponentValidator cache)56 ClearableCache componentValidator(ComponentValidator cache); 57 58 @Binds 59 @IntoSet componentCreatorValidator(ComponentCreatorValidator cache)60 ClearableCache componentCreatorValidator(ComponentCreatorValidator cache); 61 62 @Binds 63 @IntoSet kotlinMetadata(KotlinMetadataFactory cache)64 ClearableCache kotlinMetadata(KotlinMetadataFactory cache); 65 66 @Binds 67 @IntoSet superficialValidator(SuperficialValidator cache)68 ClearableCache superficialValidator(SuperficialValidator cache); 69 } 70