
org.datanucleus.cache.jcache.JCacheLevel2Cache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datanucleus-cache Show documentation
Show all versions of datanucleus-cache Show documentation
DataNucleus third-party Caching plugin
/**********************************************************************
Copyright (c) 2009 Erik Bengtson and others. All rights reserved.
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.
Contributors:
...
**********************************************************************/
package org.datanucleus.cache.jcache;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import net.sf.jsr107cache.Cache;
import net.sf.jsr107cache.CacheException;
import net.sf.jsr107cache.CacheManager;
import org.datanucleus.NucleusContext;
import org.datanucleus.cache.AbstractLevel2Cache;
import org.datanucleus.cache.CachedPC;
import org.datanucleus.exceptions.NucleusException;
import org.datanucleus.identity.IdentityUtils;
import org.datanucleus.metadata.AbstractClassMetaData;
import org.datanucleus.metadata.IdentityType;
import org.datanucleus.util.NucleusLogger;
/**
* Simple implementation of a plugin for use of early version of javax.cache (0.2 and earlier) product with DataNucleus.
*/
public class JCacheLevel2Cache extends AbstractLevel2Cache
{
private static final long serialVersionUID = -6746653492839665978L;
/** The cache to use. */
private final Cache cache;
/**
* Constructor.
* @param nucleusCtx Context
*/
public JCacheLevel2Cache(NucleusContext nucleusCtx)
{
super(nucleusCtx);
try
{
Cache tmpcache = CacheManager.getInstance().getCache(cacheName);
if (tmpcache == null)
{
Map props = new HashMap();
if (timeout > 0)
{
// Used by Google Memcache to set expiration timeout in millis
props.put(1, timeout);
}
cache = CacheManager.getInstance().getCacheFactory().createCache(props);
CacheManager.getInstance().registerCache(cacheName, cache);
}
else
{
cache = tmpcache;
}
}
catch (CacheException e)
{
throw new NucleusException("Error creating cache", e);
}
}
/**
* Method to close the cache when no longer needed. Provides a hook to release resources etc.
*/
public void close()
{
if (clearAtClose)
{
evictAll();
}
}
/**
* Accessor for whether the cache contains the specified id.
* @see org.datanucleus.cache.Level2Cache#containsOid(java.lang.Object)
*/
public boolean containsOid(Object oid)
{
return (get(oid) != null);
}
/**
* Accessor for an object in the cache.
* @see org.datanucleus.cache.Level2Cache#get(java.lang.Object)
*/
public CachedPC get(Object oid)
{
return (CachedPC) cache.get(oid);
}
/* (non-Javadoc)
* @see org.datanucleus.cache.AbstractLevel2Cache#getAll(java.util.Collection)
*/
@Override
public Map
© 2015 - 2025 Weber Informatics LLC | Privacy Policy