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

org.infinispan.cdi.common.util.Synthetic Maven / Gradle / Ivy

The newest version!
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 jakarta.enterprise.util.AnnotationLiteral;
import jakarta.inject.Qualifier;

/**
 * 

* A synthetic qualifier that can be used to replace other user-supplied * configuration at deployment. *

*

*

* * @author Stuart Douglas <[email protected]> * @author Pete Muir */ @Retention(RetentionPolicy.RUNTIME) @Qualifier public @interface Synthetic { long index(); String namespace(); public static class SyntheticLiteral extends AnnotationLiteral 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; } } /** *

* Provides a unique Synthetic qualifier for the specified namespace *

*

*

* {@link Provider} is thread safe. *

* * @author Pete Muir */ public static class Provider { // Map of generic Object to a SyntheticQualifier private final Map synthetics; private final String namespace; private AtomicLong count; public Provider(String namespace) { this.synthetics = new HashMap(); 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(); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy