use of com.oracle.coherence.spring.annotation.View in project coherence-spring by coherence-community.
the class NamedCacheConfiguration method getCacheInternal.
/**
* Create a {@link NamedCache} instance.
* <p>
* If the injection point has a type of {@link ContinuousQueryCache} or is qualified with the {@link View}
* annotation then a {@link ContinuousQueryCache} instance will be returned otherwise a {@link NamedCache} will be
* returned.
* @param injectionPoint the {@link InjectionPoint} that the {@link NamedCache} will be retrieved from
* @param isCQC a flag specifying whether to return a {@link ContinuousQueryCache}
* @param <K> the type of the cache keys
* @param <V> the type of the cache values
* @return a {@link NamedCache} instance to inject into the injection point
*/
private <K, V> NamedCache<K, V> getCacheInternal(InjectionPoint injectionPoint, boolean isCQC) {
final MergedAnnotations mergedAnnotations;
if (injectionPoint.getMethodParameter() != null) {
mergedAnnotations = MergedAnnotations.from(injectionPoint.getMethodParameter().getParameterAnnotations());
} else {
mergedAnnotations = MergedAnnotations.from(injectionPoint.getAnnotatedElement());
}
final MergedAnnotation<Name> mergedNameAnnotation = mergedAnnotations.get(Name.class);
final MergedAnnotation<SessionName> mergedSessionNameAnnotation = mergedAnnotations.get(SessionName.class);
final MergedAnnotation<View> mergedViewAnnotation = mergedAnnotations.get(View.class);
final String sessionName;
final String cacheName = this.determineCacheName(injectionPoint, mergedNameAnnotation);
if (!mergedSessionNameAnnotation.isPresent() || mergedSessionNameAnnotation.synthesize().value().trim().isEmpty()) {
sessionName = Coherence.DEFAULT_NAME;
} else {
sessionName = mergedSessionNameAnnotation.synthesize().value();
}
if (logger.isDebugEnabled()) {
logger.debug(String.format("Going to retrieve NamedCache '%s' for session '%s'.", cacheName, sessionName));
}
if (cacheName == null || cacheName.trim().isEmpty()) {
throw new IllegalArgumentException("Cannot determine cache/map name. No @Name qualifier and injection point is not named");
}
final Session session = Coherence.findSession(sessionName).orElseThrow(() -> new IllegalStateException(String.format("No Session is configured with name '%s'.", sessionName)));
final NamedCache<K, V> cache = session.getCache(cacheName);
if (isCQC || mergedViewAnnotation.isPresent()) {
boolean hasValues = (!mergedViewAnnotation.isPresent()) || mergedViewAnnotation.synthesize().cacheValues();
final Filter filter = this.filterService.getFilter(injectionPoint);
final ValueExtractor extractor = this.extractorService.getExtractor(injectionPoint, true);
return new ContinuousQueryCache<>(cache, filter, hasValues, null, extractor);
}
return cache;
}
Aggregations