org.jboss.as.ee.component.BasicComponentCreateService Maven / Gradle / Ivy
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.jboss.as.ee.component;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.util.IdentityHashMap;
import java.util.Map;
import org.jboss.as.ee.logging.EeLogger;
import org.jboss.as.naming.context.NamespaceContextSelector;
import org.jboss.invocation.InterceptorFactory;
import org.jboss.invocation.Interceptors;
import org.jboss.msc.service.Service;
import org.jboss.msc.service.ServiceName;
import org.jboss.msc.service.StartContext;
import org.jboss.msc.service.StartException;
import org.jboss.msc.service.StopContext;
/**
* A service for creating a component.
*
* @author David M. Lloyd
* @author Richard Opalka
*/
public class BasicComponentCreateService implements Service {
private final ServiceName serviceName;
private final String componentName;
private final Class> componentClass;
private final InterceptorFactory postConstruct;
private final InterceptorFactory preDestroy;
private final Map componentInterceptors;
private final NamespaceContextSelector namespaceContextSelector;
private BasicComponent component;
/**
* Construct a new instance.
*
* @param componentConfiguration the component configuration
*/
public BasicComponentCreateService(final ComponentConfiguration componentConfiguration) {
serviceName = componentConfiguration.getComponentDescription().getCreateServiceName();
componentName = componentConfiguration.getComponentName();
postConstruct = Interceptors.getChainedInterceptorFactory(componentConfiguration.getPostConstructInterceptors());
preDestroy = Interceptors.getChainedInterceptorFactory(componentConfiguration.getPreDestroyInterceptors());
final IdentityHashMap componentInterceptors = new IdentityHashMap();
for (Method method : componentConfiguration.getDefinedComponentMethods()) {
if(requiresInterceptors(method, componentConfiguration)) {
componentInterceptors.put(method, Interceptors.getChainedInterceptorFactory(componentConfiguration.getComponentInterceptors(method)));
}
}
componentClass = componentConfiguration.getComponentClass();
this.componentInterceptors = componentInterceptors;
this.namespaceContextSelector = componentConfiguration.getNamespaceContextSelector();
}
protected boolean requiresInterceptors(final Method method, final ComponentConfiguration componentConfiguration) {
return Modifier.isPublic(method.getModifiers()) && !Modifier.isFinal(method.getModifiers()) && componentConfiguration.getComponentDescription().isIntercepted();
}
/**
* {@inheritDoc}
*/
public synchronized void start(final StartContext context) throws StartException {
component = createComponent();
}
/**
* Create the component.
*
* @return the component instance
*/
protected BasicComponent createComponent() {
return new BasicComponent(this);
}
/**
* {@inheritDoc}
*/
public synchronized void stop(final StopContext context) {
component = null;
}
/**
* {@inheritDoc}
*/
public synchronized Component getValue() throws IllegalStateException, IllegalArgumentException {
Component component = this.component;
if (component == null) {
throw EeLogger.ROOT_LOGGER.serviceNotStarted();
}
return component;
}
/**
* Get the component name.
*
* @return the component name
*/
public String getComponentName() {
return componentName;
}
/**
* Get the post-construct interceptor factory.
*
* @return the post-construct interceptor factory
*/
public InterceptorFactory getPostConstruct() {
return postConstruct;
}
/**
* Get the pre-destroy interceptor factory.
*
* @return the pre-destroy interceptor factory
*/
public InterceptorFactory getPreDestroy() {
return preDestroy;
}
/**
* Get the component interceptor factory map.
*
* @return the component interceptor factories
*/
public Map getComponentInterceptors() {
return componentInterceptors;
}
/**
* Get the component class.
*
* @return the component class
*/
public Class> getComponentClass() {
return componentClass;
}
/**
*
* @return the namespace context selector for the component, or null if it does not have one
*/
public NamespaceContextSelector getNamespaceContextSelector() {
return namespaceContextSelector;
}
public ServiceName getServiceName() {
return this.serviceName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy