forked from spring-projects/spring-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial support for JCache-compliant providers
Issue: SPR-8774
- Loading branch information
Showing
5 changed files
with
320 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
131 changes: 131 additions & 0 deletions
131
spring-context/src/main/java/org/springframework/cache/jcache/JCacheCache.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
/* | ||
* Copyright 2002-2012 the original 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.springframework.cache.jcache; | ||
|
||
import java.io.Serializable; | ||
|
||
import javax.cache.Status; | ||
|
||
import org.springframework.cache.Cache; | ||
import org.springframework.cache.support.SimpleValueWrapper; | ||
import org.springframework.util.Assert; | ||
|
||
/** | ||
* {@link org.springframework.cache.Cache} implementation on top of a | ||
* {@link javax.cache.Cache} instance. | ||
* | ||
* @author Juergen Hoeller | ||
* @since 3.2 | ||
*/ | ||
public class JCacheCache implements Cache { | ||
|
||
private static final Object NULL_HOLDER = new NullHolder(); | ||
|
||
@SuppressWarnings("rawtypes") | ||
private final javax.cache.Cache cache; | ||
|
||
private final boolean allowNullValues; | ||
|
||
|
||
/** | ||
* Create an {@link org.springframework.cache.jcache.JCacheCache} instance. | ||
* @param jcache backing JCache Cache instance | ||
*/ | ||
public JCacheCache(javax.cache.Cache<?,?> jcache) { | ||
this(jcache, true); | ||
} | ||
|
||
/** | ||
* Create an {@link org.springframework.cache.jcache.JCacheCache} instance. | ||
* @param jcache backing JCache Cache instance | ||
* @param allowNullValues whether to accept and convert null values for this cache | ||
*/ | ||
public JCacheCache(javax.cache.Cache<?,?> jcache, boolean allowNullValues) { | ||
Assert.notNull(jcache, "Cache must not be null"); | ||
Status status = jcache.getStatus(); | ||
Assert.isTrue(Status.STARTED.equals(status), | ||
"A 'started' cache is required - current cache is " + status.toString()); | ||
this.cache = jcache; | ||
this.allowNullValues = allowNullValues; | ||
} | ||
|
||
|
||
public String getName() { | ||
return this.cache.getName(); | ||
} | ||
|
||
public javax.cache.Cache<?,?> getNativeCache() { | ||
return this.cache; | ||
} | ||
|
||
public boolean isAllowNullValues() { | ||
return this.allowNullValues; | ||
} | ||
|
||
@SuppressWarnings("unchecked") | ||
public ValueWrapper get(Object key) { | ||
Object value = this.cache.get(key); | ||
return (value != null ? new SimpleValueWrapper(fromStoreValue(value)) : null); | ||
} | ||
|
||
@SuppressWarnings("unchecked") | ||
public void put(Object key, Object value) { | ||
this.cache.put(key, toStoreValue(value)); | ||
} | ||
|
||
@SuppressWarnings("unchecked") | ||
public void evict(Object key) { | ||
this.cache.remove(key); | ||
} | ||
|
||
public void clear() { | ||
this.cache.removeAll(); | ||
} | ||
|
||
|
||
/** | ||
* Convert the given value from the internal store to a user value | ||
* returned from the get method (adapting <code>null</code>). | ||
* @param storeValue the store value | ||
* @return the value to return to the user | ||
*/ | ||
protected Object fromStoreValue(Object storeValue) { | ||
if (this.allowNullValues && storeValue == NULL_HOLDER) { | ||
return null; | ||
} | ||
return storeValue; | ||
} | ||
|
||
/** | ||
* Convert the given user value, as passed into the put method, | ||
* to a value in the internal store (adapting <code>null</code>). | ||
* @param userValue the given user value | ||
* @return the value to store | ||
*/ | ||
protected Object toStoreValue(Object userValue) { | ||
if (this.allowNullValues && userValue == null) { | ||
return NULL_HOLDER; | ||
} | ||
return userValue; | ||
} | ||
|
||
|
||
@SuppressWarnings("serial") | ||
private static class NullHolder implements Serializable { | ||
} | ||
|
||
} |
104 changes: 104 additions & 0 deletions
104
spring-context/src/main/java/org/springframework/cache/jcache/JCacheCacheManager.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
/* | ||
* Copyright 2002-2012 the original 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.springframework.cache.jcache; | ||
|
||
import java.util.Collection; | ||
import java.util.LinkedHashSet; | ||
|
||
import javax.cache.Status; | ||
|
||
import org.springframework.cache.Cache; | ||
import org.springframework.cache.support.AbstractCacheManager; | ||
import org.springframework.util.Assert; | ||
|
||
/** | ||
* {@link org.springframework.cache.CacheManager} implementation | ||
* backed by a JCache {@link javax.cache.CacheManager}. | ||
* | ||
* @author Juergen Hoeller | ||
* @since 3.2 | ||
*/ | ||
public class JCacheCacheManager extends AbstractCacheManager { | ||
|
||
private javax.cache.CacheManager cacheManager; | ||
|
||
private boolean allowNullValues = true; | ||
|
||
|
||
/** | ||
* Set the backing JCache {@link javax.cache.CacheManager}. | ||
*/ | ||
public void setCacheManager(javax.cache.CacheManager cacheManager) { | ||
this.cacheManager = cacheManager; | ||
} | ||
|
||
/** | ||
* Return the backing JCache {@link javax.cache.CacheManager}. | ||
*/ | ||
public javax.cache.CacheManager getCacheManager() { | ||
return this.cacheManager; | ||
} | ||
|
||
/** | ||
* Specify whether to accept and convert null values for all caches | ||
* in this cache manager. | ||
* <p>Default is "true", despite JSR-107 itself not supporting null values. | ||
* An internal holder object will be used to store user-level null values. | ||
*/ | ||
public void setAllowNullValues(boolean allowNullValues) { | ||
this.allowNullValues = allowNullValues; | ||
} | ||
|
||
/** | ||
* Return whether this cache manager accepts and converts null values | ||
* for all of its caches. | ||
*/ | ||
public boolean isAllowNullValues() { | ||
return this.allowNullValues; | ||
} | ||
|
||
|
||
@Override | ||
protected Collection<Cache> loadCaches() { | ||
Assert.notNull(this.cacheManager, "A backing CacheManager is required"); | ||
Status status = this.cacheManager.getStatus(); | ||
Assert.isTrue(Status.STARTED.equals(status), | ||
"A 'started' JCache CacheManager is required - current cache is " + status.toString()); | ||
|
||
Collection<Cache> caches = new LinkedHashSet<Cache>(); | ||
for (javax.cache.Cache<?,?> jcache : this.cacheManager.getCaches()) { | ||
caches.add(new JCacheCache(jcache, this.allowNullValues)); | ||
} | ||
return caches; | ||
} | ||
|
||
@Override | ||
public Cache getCache(String name) { | ||
Cache cache = super.getCache(name); | ||
if (cache == null) { | ||
// check the JCache cache again | ||
// (in case the cache was added at runtime) | ||
javax.cache.Cache<?,?> jcache = this.cacheManager.getCache(name); | ||
if (jcache != null) { | ||
cache = new JCacheCache(jcache, this.allowNullValues); | ||
addCache(cache); | ||
} | ||
} | ||
return cache; | ||
} | ||
|
||
} |
77 changes: 77 additions & 0 deletions
77
spring-context/src/main/java/org/springframework/cache/jcache/JCacheManagerFactoryBean.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* | ||
* Copyright 2002-2012 the original 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.springframework.cache.jcache; | ||
|
||
import javax.cache.CacheManager; | ||
import javax.cache.Caching; | ||
|
||
import org.springframework.beans.factory.BeanClassLoaderAware; | ||
import org.springframework.beans.factory.FactoryBean; | ||
import org.springframework.beans.factory.InitializingBean; | ||
|
||
/** | ||
* {@link FactoryBean} for a JCache {@link javax.cache.CacheManager}, | ||
* obtaining a pre-defined CacheManager by name through the standard | ||
* JCache {@link javax.cache.Caching} class. | ||
* | ||
* @author Juergen Hoeller | ||
* @since 3.2 | ||
* @see javax.cache.Caching#getCacheManager() | ||
* @see javax.cache.Caching#getCacheManager(String) | ||
*/ | ||
public class JCacheManagerFactoryBean implements FactoryBean<CacheManager>, BeanClassLoaderAware, InitializingBean { | ||
|
||
private String cacheManagerName = Caching.DEFAULT_CACHE_MANAGER_NAME; | ||
|
||
private ClassLoader beanClassLoader; | ||
|
||
private CacheManager cacheManager; | ||
|
||
|
||
/** | ||
* Specify the name of the desired CacheManager. | ||
* Default is JCache's default. | ||
* @see Caching#DEFAULT_CACHE_MANAGER_NAME | ||
*/ | ||
public void setCacheManagerName(String cacheManagerName) { | ||
this.cacheManagerName = cacheManagerName; | ||
} | ||
|
||
public void setBeanClassLoader(ClassLoader classLoader) { | ||
this.beanClassLoader = classLoader; | ||
} | ||
|
||
public void afterPropertiesSet() { | ||
this.cacheManager = (this.beanClassLoader != null ? | ||
Caching.getCacheManager(this.beanClassLoader, this.cacheManagerName) : | ||
Caching.getCacheManager(this.cacheManagerName)); | ||
} | ||
|
||
|
||
public CacheManager getObject() { | ||
return this.cacheManager; | ||
} | ||
|
||
public Class<?> getObjectType() { | ||
return (this.cacheManager != null ? this.cacheManager.getClass() : CacheManager.class); | ||
} | ||
|
||
public boolean isSingleton() { | ||
return true; | ||
} | ||
|
||
} |
7 changes: 7 additions & 0 deletions
7
spring-context/src/main/java/org/springframework/cache/jcache/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/** | ||
* Implementation package for JSR-107 (javax.cache aka "JCache") based caches. | ||
* Provides a {@link org.springframework.cache.CacheManager CacheManager} | ||
* and {@link org.springframework.cache.Cache Cache} implementation for | ||
* use in a Spring context, using a JSR-107 compliant cache provider. | ||
*/ | ||
package org.springframework.cache.jcache; |