/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc. and/or its affiliates, and individual * contributors by the @authors tag. See the copyright.txt in the * distribution for a full listing of individual contributors. * * 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 org.jboss.solder.serviceHandler; import java.lang.reflect.Method; import javax.enterprise.context.spi.CreationalContext; import javax.enterprise.inject.spi.Bean; import javax.enterprise.inject.spi.BeanManager; import org.apache.deltaspike.core.util.metadata.builder.ContextualLifecycle; import javassist.util.proxy.MethodFilter; import javassist.util.proxy.ProxyFactory; import javassist.util.proxy.ProxyObject; //import org.jboss.solder.bean.ContextualLifecycle; /** * Bean lifecycle for ServiceHandler beans * * @param <T> * @param <H> * @author Stuart Douglas */ public class ServiceHandlerBeanLifecycle<T, H> implements ContextualLifecycle<T> { private final ProxyFactory factory; private final Class<? extends T> proxyClass; private final ServiceHandlerManager<H> handler; public ServiceHandlerBeanLifecycle(Class<? extends T> classToImplement, Class<H> handlerClass, BeanManager manager) { handler = new ServiceHandlerManager<H>(handlerClass, manager); // create the proxy factory = new ProxyFactory(); if (classToImplement.isInterface()) { Class<?>[] interfaces = new Class[1]; interfaces[0] = classToImplement; factory.setInterfaces(interfaces); } else { factory.setSuperclass(classToImplement); } factory.setFilter(new MethodFilter() { public boolean isHandled(Method m) { // ignore finalize() return !m.getName().equals("finalize"); } }); this.proxyClass = ((Class<?>) factory.createClass()).asSubclass(classToImplement); } public T create(Bean<T> bean, CreationalContext<T> creationalContext) { try { // Make sure to pass the creational context along, allowing dependents to be cleaned up properly @SuppressWarnings("unchecked") H handlerInstance = handler.create((CreationalContext) creationalContext); ServiceHandlerMethodHandler<T, H> methodHandler = new ServiceHandlerMethodHandler<T, H>(handler, handlerInstance); T instance = proxyClass.newInstance(); ((ProxyObject) instance).setHandler(methodHandler); return instance; } catch (IllegalAccessException e) { throw new RuntimeException(e); } catch (InstantiationException e) { throw new RuntimeException(e); } } public void destroy(Bean<T> bean, T instance, CreationalContext<T> creationalContext) { // handler.dispose(instance); } }