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.multibindings.IntoSet; 30 31 /** 32 * Binding contributions to a set of {@link ClearableCache}s that will be cleared at the end of each 33 * processing round. 34 */ 35 @Module 36 interface ProcessingRoundCacheModule { 37 @Binds 38 @IntoSet anyBindingMethodValidator(AnyBindingMethodValidator cache)39 ClearableCache anyBindingMethodValidator(AnyBindingMethodValidator cache); 40 41 @Binds 42 @IntoSet injectValidator(InjectValidator cache)43 ClearableCache injectValidator(InjectValidator cache); 44 45 @Binds 46 @IntoSet moduleDescriptorFactory(ModuleDescriptor.Factory cache)47 ClearableCache moduleDescriptorFactory(ModuleDescriptor.Factory cache); 48 49 @Binds 50 @IntoSet bindingGraphFactory(BindingGraphFactory cache)51 ClearableCache bindingGraphFactory(BindingGraphFactory cache); 52 53 @Binds 54 @IntoSet componentValidator(ComponentValidator cache)55 ClearableCache componentValidator(ComponentValidator cache); 56 57 @Binds 58 @IntoSet componentCreatorValidator(ComponentCreatorValidator cache)59 ClearableCache componentCreatorValidator(ComponentCreatorValidator cache); 60 61 @Binds 62 @IntoSet kotlinMetadata(KotlinMetadataFactory cache)63 ClearableCache kotlinMetadata(KotlinMetadataFactory cache); 64 } 65