package org.infinispan.cdi.common.util; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.util.HashMap; import java.util.Map; import java.util.concurrent.atomic.AtomicLong; import javax.enterprise.util.AnnotationLiteral; import javax.inject.Qualifier; /** * <p> * A synthetic qualifier that can be used to replace other user-supplied * configuration at deployment. * </p> * <p/> * <p/> * * @author Stuart Douglas <stuart@baileyroberts.com.au> * @author Pete Muir */ @Retention(RetentionPolicy.RUNTIME) @Qualifier public @interface Synthetic { long index(); String namespace(); public static class SyntheticLiteral extends AnnotationLiteral<Synthetic> implements Synthetic { private final Long index; private final String namespace; public SyntheticLiteral(String namespace, Long index) { this.namespace = namespace; this.index = index; } public long index() { return index; } public String namespace() { return namespace; } } /** * <p> * Provides a unique Synthetic qualifier for the specified namespace * </p> * <p/> * <p> * {@link Provider} is thread safe. * </p> * * @author Pete Muir */ public static class Provider { // Map of generic Object to a SyntheticQualifier private final Map<Object, Synthetic> synthetics; private final String namespace; private AtomicLong count; public Provider(String namespace) { this.synthetics = new HashMap<Object, Synthetic>(); this.namespace = namespace; this.count = new AtomicLong(); } /** * Get a synthetic qualifier. The provided annotation is used to map the * generated qualifier, allowing later retrieval. * * @param annotation * @return */ public Synthetic get(Object object) { // This may give us data races, but these don't matter as Annotation use it's type and it's members values // for equality, it does not use instance equality. // Note that count is atomic if (!synthetics.containsKey(object)) { synthetics.put(object, new Synthetic.SyntheticLiteral(namespace, count.getAndIncrement())); } return synthetics.get(object); } /** * Get a synthetic qualifier. The qualifier will not be stored for later * retrieval. * * @return */ public Synthetic get() { return new Synthetic.SyntheticLiteral(namespace, count.getAndIncrement()); } public void clear() { this.synthetics.clear(); } } }