CPD Results
The following document contains the results of PMD's CPD 6.55.0.
Duplications
File |
Project |
Line |
org/apache/commons/jcs3/jcache/extras/cdi/CacheManagerBean.java |
Apache Commons JCS :: JCache Extras |
47 |
org/apache/commons/jcs3/jcache/extras/cdi/CacheProviderBean.java |
Apache Commons JCS :: JCache Extras |
47 |
types.add(CacheManager.class);
types.add(Object.class);
qualifiers = new HashSet<>();
qualifiers.add(DefaultLiteral.INSTANCE);
qualifiers.add(AnyLiteral.INSTANCE);
}
@Override
public Set<Type> getTypes()
{
return types;
}
@Override
public Set<Annotation> getQualifiers()
{
return qualifiers;
}
@Override
public Class<? extends Annotation> getScope()
{
return ApplicationScoped.class;
}
@Override
public String getName()
{
return null;
}
@Override
public boolean isNullable()
{
return false;
}
@Override
public Set<InjectionPoint> getInjectionPoints()
{
return emptySet();
}
@Override
public Class<?> getBeanClass()
{
return CacheManager.class; |
File |
Project |
Line |
org/apache/commons/jcs3/auxiliary/lateral/LateralCacheNoWait.java |
Apache Commons JCS :: Core |
186 |
org/apache/commons/jcs3/auxiliary/lateral/LateralCacheNoWaitFacade.java |
Apache Commons JCS :: Core |
258 |
}
/**
* Gets multiple items from the cache based on the given set of keys.
* <p>
* @param keys
* @return a map of K key to ICacheElement<K, V> element, or an empty map if there is no
* data in cache for any of these keys
*/
@Override
public Map<K, ICacheElement<K, V>> getMultiple(final Set<K> keys)
{
if ( keys != null && !keys.isEmpty() )
{
return keys.stream()
.collect(Collectors.toMap(
key -> key,
this::get)).entrySet().stream()
.filter(entry -> entry.getValue() != null)
.collect(Collectors.toMap(
Entry::getKey,
Entry::getValue));
}
return new HashMap<>();
}
/**
* Synchronously reads from the lateral cache.
* <p>
* @param pattern
* @return ICacheElement<K, V> if found, else empty
*/
@Override
public Map<K, ICacheElement<K, V>> getMatching(final String pattern)
{ |
File |
Project |
Line |
org/apache/commons/jcs3/auxiliary/remote/http/server/AbstractRemoteCacheService.java |
Apache Commons JCS :: Core |
134 |
org/apache/commons/jcs3/auxiliary/remote/server/RemoteCacheServer.java |
Apache Commons JCS :: Core |
353 |
}
log.debug( "In update, put [{0}] in [{1}]", item::getKey,
item::getCacheName);
}
/**
* Returns a cache value from the specified remote cache; or null if the cache or key does not
* exist.
* <p>
* @param cacheName
* @param key
* @return ICacheElement
* @throws IOException
*/
@Override
public ICacheElement<K, V> get( final String cacheName, final K key )
throws IOException
{
return this.get( cacheName, key, 0 );
}
/**
* Returns a cache bean from the specified cache; or null if the key does not exist.
* <p>
* Adding the requestor id, allows the cache to determine the source of the get.
* <p>
* The internal processing is wrapped in event logging calls.
* <p>
* @param cacheName
* @param key
* @param requesterId
* @return ICacheElement
* @throws IOException
*/
@Override
public ICacheElement<K, V> get( final String cacheName, final K key, final long requesterId )
throws IOException
{
ICacheElement<K, V> element = null;
final ICacheEvent<K> cacheEvent = createICacheEvent( cacheName, key, requesterId, ICacheEventLogger.GET_EVENT );
try
{
element = processGet( cacheName, key, requesterId );
}
finally
{
logICacheEvent( cacheEvent );
}
return element;
} |
File |
Project |
Line |
org/apache/commons/jcs3/engine/memory/AbstractDoubleLinkedListMemoryCache.java |
Apache Commons JCS :: Core |
402 |
org/apache/commons/jcs3/utils/struct/AbstractLRUMap.java |
Apache Commons JCS :: Core |
407 |
getCacheName(), key);
log.error("key class={0}", key.getClass());
log.error("key hashCode={0}", key.hashCode());
log.error("key toString={0}", key.toString());
if (key instanceof GroupAttrName)
{
final GroupAttrName<?> name = (GroupAttrName<?>) key;
log.error("GroupID hashCode={0}", name.groupId.hashCode());
log.error("GroupID.class={0}", name.groupId.getClass());
log.error("AttrName hashCode={0}", name.attrName.hashCode());
log.error("AttrName.class={0}", name.attrName.getClass());
}
dumpMap();
}
else if (map.get(key) == null) |
File |
Project |
Line |
org/apache/commons/jcs3/auxiliary/remote/http/server/AbstractRemoteCacheService.java |
Apache Commons JCS :: Core |
261 |
org/apache/commons/jcs3/auxiliary/remote/server/RemoteCacheServer.java |
Apache Commons JCS :: Core |
601 |
@Override
public Map<K, ICacheElement<K, V>> getMultiple( final String cacheName, final Set<K> keys )
throws IOException
{
return this.getMultiple( cacheName, keys, 0 );
}
/**
* Gets multiple items from the cache based on the given set of keys.
* <p>
* The internal processing is wrapped in event logging calls.
* <p>
* @param cacheName
* @param keys
* @param requesterId
* @return a map of K key to ICacheElement<K, V> element, or an empty map if there is no
* data in cache for any of these keys
* @throws IOException
*/
@Override
public Map<K, ICacheElement<K, V>> getMultiple( final String cacheName, final Set<K> keys, final long requesterId )
throws IOException
{
final ICacheEvent<Serializable> cacheEvent = createICacheEvent( cacheName, (Serializable) keys, requesterId,
ICacheEventLogger.GETMULTIPLE_EVENT );
try
{
return processGetMultiple( cacheName, keys, requesterId );
}
finally
{
logICacheEvent( cacheEvent );
}
} |
File |
Project |
Line |
org/apache/commons/jcs3/auxiliary/remote/http/server/AbstractRemoteCacheService.java |
Apache Commons JCS :: Core |
208 |
org/apache/commons/jcs3/auxiliary/remote/server/RemoteCacheServer.java |
Apache Commons JCS :: Core |
487 |
@Override
public Map<K, ICacheElement<K, V>> getMatching( final String cacheName, final String pattern )
throws IOException
{
return getMatching( cacheName, pattern, 0 );
}
/**
* Retrieves all matching keys.
* <p>
* @param cacheName
* @param pattern
* @param requesterId
* @return Map of keys and wrapped objects
* @throws IOException
*/
@Override
public Map<K, ICacheElement<K, V>> getMatching( final String cacheName, final String pattern, final long requesterId )
throws IOException
{
final ICacheEvent<String> cacheEvent = createICacheEvent( cacheName, pattern, requesterId,
ICacheEventLogger.GETMATCHING_EVENT );
try
{
return processGetMatching( cacheName, pattern, requesterId );
}
finally
{
logICacheEvent( cacheEvent );
}
} |
|