org.cp.elements.service.support.AbstractCacheableService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cp-elements Show documentation
Show all versions of cp-elements Show documentation
Java Simplified. Extensions and Useful Constructs for the Java Platform.
Codeprimate Elements (a.k.a. cp-elements) is a Java library and micro-framework used to simplify
the development of software applications written in Java. Elements packages several APIs into one
library in order to address various application concerns and aspects of software design and development
collectively and conveniently. Elements is a highly simple, yet robust and proven library built on
solid OO principles, software design patterns and best practices to effectively solve common
and reoccurring problems in software development.
/*
* Copyright 2016 Author or Authors.
*
* 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.cp.elements.service.support;
import java.util.Optional;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.function.Supplier;
import org.cp.elements.data.caching.Cache;
import org.cp.elements.data.caching.provider.ConcurrentMapCache;
import org.cp.elements.data.caching.support.CachingTemplate;
/**
* {@link AbstractCacheableService} is an abstract base class extended by application service classes
* in order to keep track of the cacheable state of the service's operations.
*
* @author John Blum
* @since 1.0.0
*/
@SuppressWarnings("unused")
public class AbstractCacheableService, VALUE> {
private final AtomicBoolean cacheMiss = new AtomicBoolean(false);
private final Cache cache = newCache();
/**
* Returns an {@link Optional} reference to the configured {@link Cache}.
*
* @return an {@link Optional} reference to the configured {@link Cache}.
* @see org.cp.elements.data.caching.Cache
* @see java.util.Optional
*/
protected Optional> getCache() {
return Optional.ofNullable(this.cache);
}
/**
* Constructs a new instance of the {@link Cache} interface.
*
* The {@link Cache} is used to provide caching services to this application service component.
*
* @return a new instance of the {@link Cache} interface.
* @see org.cp.elements.data.caching.Cache
*/
protected Cache newCache() {
return new ConcurrentMapCache<>();
}
/**
* Determines whether this application service component has been configured with caching enabled.
*
* The default implementation returns {@literal true} if a {@link Cache} instance is present.
*
* @return a boolean value indicating whether this application service component
* has been configured with caching enabled.
* @see #getCache()
*/
protected boolean isCachingEnabled() {
return getCache().isPresent();
}
/**
* Determines whether the cacheable service operation resulted in a cache hit.
*
* @return a boolean value indicating whether the cacehable service operation
* resulted in a cache hit.
* @see #isCacheMiss()
*/
public boolean isCacheHit() {
return !isCacheMiss();
}
/**
* Determines whether the cacheable service operation resulted in a cache miss.
*
* @return a boolean value indicating whether the cacehable service operation
* resulted in a cache miss.
* @see #isCacheHit()
*/
public boolean isCacheMiss() {
return this.cacheMiss.getAndSet(false);
}
/**
* Sets the state of the cacheable service as a cache miss for the current operation.
*
* @return a boolean value indicating whether the current cacheable service operation
* was the first cache miss in the transaction.
*/
protected boolean setCacheMiss() {
return this.cacheMiss.compareAndSet(false, true);
}
/**
* Enables an application service method to optionally apply and use caching to carry out its function.
*
* @param key {@link KEY key} used to look up an existing {@link VALUE value} in the {@link Cache}.
* @param cacheLoader {@link Supplier} used to compute/execute the application serivce method function
* if the {@link Cache} does not contain an already computed {@link VALUE value} or caching is not enabled.
* @return the cached or computed {@link VALUE value}.
* @see org.cp.elements.data.caching.support.CachingTemplate#withCaching(Comparable, Supplier)
* @see org.cp.elements.data.caching.Cache
* @see java.util.function.Supplier
* @see #isCachingEnabled()
* @see #getCache()
*/
protected VALUE withCaching(KEY key, Supplier cacheLoader) {
return getCache()
.map(CachingTemplate::with)
.map(template -> template.withCaching(key, () -> {
setCacheMiss();
return cacheLoader.get();
}))
.orElseGet(cacheLoader);
}
}