/* * JBoss, Home of Professional Open Source * Copyright 2013, Red Hat, Inc., 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.weld.bean; import static org.jboss.weld.serialization.spi.BeanIdentifier.BEAN_ID_SEPARATOR; import javax.enterprise.inject.spi.BeanAttributes; import javax.enterprise.inject.spi.Extension; import org.jboss.weld.annotated.enhanced.EnhancedAnnotatedField; import org.jboss.weld.annotated.enhanced.EnhancedAnnotatedMethod; import org.jboss.weld.annotated.enhanced.EnhancedAnnotatedType; import org.jboss.weld.annotated.slim.AnnotatedTypeIdentifier; import org.jboss.weld.bean.builtin.AbstractBuiltInBean; import org.jboss.weld.manager.BeanManagerImpl; import org.jboss.weld.util.AnnotatedTypes; import org.jboss.weld.util.Beans; import org.jboss.weld.util.reflection.DeclaredMemberIndexer; public class BeanIdentifiers { private BeanIdentifiers() { } public static final String PREFIX = "WELD" + BEAN_ID_SEPARATOR; public static final String PREFIX_BUILDER = "BUILDER" + BEAN_ID_SEPARATOR; public static StringBuilder getPrefix(Class<?> beanType) { return new StringBuilder(PREFIX).append(beanType.getSimpleName()).append(BEAN_ID_SEPARATOR); } public static String forManagedBean(EnhancedAnnotatedType<?> type) { return forManagedBean(type.slim().getIdentifier()); } public static String forManagedBean(AnnotatedTypeIdentifier identifier) { return getPrefix(ManagedBean.class).append(identifier.asString()).toString(); } public static String forDecorator(EnhancedAnnotatedType<?> type) { return getPrefix(DecoratorImpl.class).append(type.slim().getIdentifier().asString()).toString(); } public static String forInterceptor(EnhancedAnnotatedType<?> type) { return getPrefix(InterceptorImpl.class).append(type.slim().getIdentifier().asString()).toString(); } public static String forNewManagedBean(EnhancedAnnotatedType<?> type) { return getPrefix(NewManagedBean.class).append(type.slim().getIdentifier().asString()).toString(); } public static String forProducerField(EnhancedAnnotatedField<?, ?> field, AbstractClassBean<?> declaringBean) { StringBuilder sb = getPrefix(ProducerField.class).append(declaringBean.getAnnotated().getIdentifier().asString()) .append(BEAN_ID_SEPARATOR); if (declaringBean.getEnhancedAnnotated().isDiscovered()) { sb.append(field.getName()); } else { sb.append(AnnotatedTypes.createFieldId(field)); } return sb.toString(); } public static String forProducerMethod(EnhancedAnnotatedMethod<?, ?> method, AbstractClassBean<?> declaringBean) { if (declaringBean.getEnhancedAnnotated().isDiscovered()) { return forProducerMethod(declaringBean.getAnnotated().getIdentifier(), DeclaredMemberIndexer.getIndexForMethod(method.getJavaMember())); } return getPrefix(ProducerMethod.class).append(method.getDeclaringType().slim().getIdentifier()).append(AnnotatedTypes.createCallableId(method)).toString(); } public static String forProducerMethod(AnnotatedTypeIdentifier identifier, int memberIndex) { return getPrefix(ProducerMethod.class).append(identifier.asString()).append(BEAN_ID_SEPARATOR).append(memberIndex).toString(); } public static String forSyntheticBean(BeanAttributes<?> attributes, Class<?> beanClass) { return getPrefix(AbstractSyntheticBean.class).append(beanClass.getName()).append(BEAN_ID_SEPARATOR) .append(Beans.createBeanAttributesId(attributes)).toString(); } public static String forBuiltInBean(BeanManagerImpl manager, Class<?> type, String suffix) { StringBuilder builder = getPrefix(AbstractBuiltInBean.class).append(manager.getId()).append(BEAN_ID_SEPARATOR).append(type.getSimpleName()); if (suffix != null) { builder.append(BEAN_ID_SEPARATOR).append(suffix); } return builder.toString(); } public static String forExtension(EnhancedAnnotatedType<?> type) { return getPrefix(Extension.class).append(type.slim().getIdentifier().asString()).toString(); } public static String forBuilderBean(BeanAttributes<?> attributes, Class<?> beanClass) { return new StringBuilder(PREFIX_BUILDER).append(beanClass.getName()).append(BEAN_ID_SEPARATOR) .append(Beans.createBeanAttributesId(attributes)).toString(); } }