Coverage Report - org.apache.shiro.guice.web.AbstractInjectionProvider
 
Classes in this File Line Coverage Branch Coverage Complexity
AbstractInjectionProvider
91%
22/24
100%
4/4
1.8
 
 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.shiro.guice.web;
 20  
 
 21  
 import java.lang.reflect.Constructor;
 22  
 import java.util.Collections;
 23  
 import java.util.HashSet;
 24  
 import java.util.Set;
 25  
 
 26  
 import com.google.inject.Inject;
 27  
 import com.google.inject.Injector;
 28  
 import com.google.inject.Key;
 29  
 import com.google.inject.ProvisionException;
 30  
 import com.google.inject.spi.Dependency;
 31  
 import com.google.inject.spi.InjectionPoint;
 32  
 import com.google.inject.spi.ProviderWithDependencies;
 33  
 
 34  
 class AbstractInjectionProvider<T> implements ProviderWithDependencies<T> {
 35  
     private Key<T> key;
 36  
 
 37  
     @Inject
 38  
     Injector injector;
 39  
 
 40  
     private InjectionPoint constructorInjectionPoint;
 41  
     private Set<Dependency<?>> dependencies;
 42  
 
 43  7
     public AbstractInjectionProvider(Key<T> key) {
 44  7
         this.key = key;
 45  7
         constructorInjectionPoint = InjectionPoint.forConstructorOf(key.getTypeLiteral());
 46  
 
 47  7
         Set<Dependency<?>> dependencyBuilder = new HashSet<Dependency<?>>();
 48  7
         dependencyBuilder.addAll(constructorInjectionPoint.getDependencies());
 49  7
         for (InjectionPoint injectionPoint : InjectionPoint.forInstanceMethodsAndFields(key.getTypeLiteral())) {
 50  6
             dependencyBuilder.addAll(injectionPoint.getDependencies());
 51  6
         }
 52  7
         this.dependencies = Collections.unmodifiableSet(dependencyBuilder);
 53  7
     }
 54  
 
 55  
     public T get() {
 56  5
         Constructor<T> constructor = getConstructor();
 57  5
         Object[] params = new Object[constructor.getParameterTypes().length];
 58  5
         for (Dependency<?> dependency : constructorInjectionPoint.getDependencies()) {
 59  2
             params[dependency.getParameterIndex()] = injector.getInstance(dependency.getKey());
 60  2
         }
 61  
         T t;
 62  
         try {
 63  5
             t = constructor.newInstance(params);
 64  0
         } catch (Exception e) {
 65  0
             throw new ProvisionException("Could not instantiate " + key + "", e);
 66  5
         }
 67  5
         injector.injectMembers(t);
 68  5
         return postProcess(t);
 69  
     }
 70  
 
 71  
     @SuppressWarnings({"unchecked"})
 72  
     private Constructor<T> getConstructor() {
 73  5
         return (Constructor<T>) constructorInjectionPoint.getMember();
 74  
     }
 75  
 
 76  
     protected T postProcess(T t) {
 77  
         // do nothing by default
 78  1
         return t;
 79  
     }
 80  
 
 81  
     public Set<Dependency<?>> getDependencies() {
 82  1
         return dependencies;
 83  
     }
 84  
 }