Coverage Report - org.apache.onami.factoryannotation.ProvisionCacheIdentityProviderFacade
 
Classes in this File Line Coverage Branch Coverage Complexity
ProvisionCacheIdentityProviderFacade
92%
12/13
100%
2/2
1.5
 
 1  
 /*
 2  
  * Licensed to the Apache Software Foundation (ASF) under one
 3  
  * or more contributor license agreements.  See the NOTICE file
 4  
  * distributed with this work for additional information
 5  
  * regarding copyright ownership.  The ASF licenses this file
 6  
  * to you under the Apache License, Version 2.0 (the
 7  
  * "License"); you may not use this file except in compliance
 8  
  * with the License.  You may obtain a copy of the License at
 9  
  *
 10  
  *   http://www.apache.org/licenses/LICENSE-2.0
 11  
  *
 12  
  * Unless required by applicable law or agreed to in writing,
 13  
  * software distributed under the License is distributed on an
 14  
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 15  
  * KIND, either express or implied.  See the License for the
 16  
  * specific language governing permissions and limitations
 17  
  * under the License.
 18  
  */
 19  
 package org.apache.onami.factoryannotation;
 20  
 
 21  
 import java.lang.annotation.Annotation;
 22  
 import java.util.HashMap;
 23  
 import java.util.Map;
 24  
 
 25  
 import com.google.inject.Key;
 26  
 import com.google.inject.TypeLiteral;
 27  
 
 28  
 class ProvisionCacheIdentityProviderFacade<T, A extends Annotation>
 29  
     implements FactoryAnnotationProvider<T, A>
 30  
 {
 31  
 
 32  8
     private final Map<Key<T>, T> provisionCache = new HashMap<Key<T>, T>();
 33  
 
 34  
     private final FactoryAnnotationProvider<T, A> factoryAnnotationProvider;
 35  
 
 36  
     private final TypeLiteral<T> typeLiteral;
 37  
 
 38  
     public ProvisionCacheIdentityProviderFacade( final FactoryAnnotationProvider<T, A> factoryAnnotationProvider,
 39  
                                                  final TypeLiteral<T> typeLiteral )
 40  8
     {
 41  
 
 42  8
         this.factoryAnnotationProvider = factoryAnnotationProvider;
 43  8
         this.typeLiteral = typeLiteral;
 44  8
     }
 45  
 
 46  
     public Class<T> getInjectionType()
 47  
     {
 48  0
         return factoryAnnotationProvider.getInjectionType();
 49  
     }
 50  
 
 51  
     public T buildValue( A annotation )
 52  
     {
 53  24
         final Key<T> key = buildCacheKey( typeLiteral, annotation );
 54  
 
 55  24
         if ( provisionCache.containsKey( key ) )
 56  
         {
 57  8
             return provisionCache.get( key );
 58  
         }
 59  
 
 60  16
         final T value = factoryAnnotationProvider.buildValue( annotation );
 61  16
         provisionCache.put( key, value );
 62  
 
 63  16
         return value;
 64  
     }
 65  
 
 66  
     private Key<T> buildCacheKey( final TypeLiteral<T> typeLiteral, final A annotation )
 67  
     {
 68  
 
 69  24
         return Key.get( typeLiteral, annotation );
 70  
     }
 71  
 
 72  
 }