All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.avanza.astrix.beans.factory.AstrixBeanInstance Maven / Gradle / Ivy

/*
 * Copyright 2014 Avanza Bank AB
 *
 * 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 com.avanza.astrix.beans.factory;

import java.util.HashSet;
import java.util.Set;

import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;

import com.avanza.astrix.beans.core.AstrixBeanKey;
import com.avanza.astrix.modules.ObjectCache;
/**
 * 
 * @author Elias Lindholm (elilin)
 *
 * @param 
 */
final class AstrixBeanInstance {
	
	private final T instance;
	private final AstrixBeanKey beanKey;
	private final Set> dependencies;
	
	private AstrixBeanInstance(AstrixBeanKey beanKey, T instance, Set> transitiveDependencies) {
		this.beanKey = beanKey;
		this.instance = instance;
		this.dependencies = transitiveDependencies;
	}
	
	static  AstrixBeanInstance create(AstrixBeans factoryBeanContext, StandardFactoryBean factory) {
		TransitiveDependencyCollector dependencyCollectingContext = new TransitiveDependencyCollector(factoryBeanContext);
		T instance = factory.create(dependencyCollectingContext);
		return new AstrixBeanInstance(factory.getBeanKey(), instance, dependencyCollectingContext.getTransitiveDependencies());
	}
	
	public T get() {
		return instance;
	}
	
	public AstrixBeanKey getKey() {
		return beanKey;
	}
	
	/**
	 * Returns a key for each bean that was requested during creation of this bean, i.e
	 * all its direct and transitive dependencies.
	 * @return
	 */
	public Set> getDependencies() {
		return dependencies;
	}
	
	@PreDestroy
	public final void destroy() {
		ObjectCache.destroy(get());
	}
	
	@PostConstruct
	public final void init() {
		ObjectCache.init(get());
	}
	
	private static class TransitiveDependencyCollector implements AstrixBeans {
		private final AstrixBeans beanCreationContext;
		private final Set> transitiveDependencies = new HashSet<>();
		
		public TransitiveDependencyCollector(AstrixBeans beanCreationContext) {
			this.beanCreationContext = beanCreationContext;
		}
		@Override
		public  T getBean(AstrixBeanKey key) {
			this.transitiveDependencies.add(key);
			return beanCreationContext.getBean(key);
		}
		
		public Set> getTransitiveDependencies() {
			return transitiveDependencies;
		}
		
		@Override
		public  Set> getBeansOfType(Class type) {
			return beanCreationContext.getBeansOfType(type);
		}
	}
	
	@Override
	public String toString() {
		return this.beanKey.toString();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy