All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.datanucleus.cache.AbstractReferencedLevel2Cache Maven / Gradle / Ivy
Go to download
DataNucleus Core provides the primary components of a heterogenous Java persistence solution.
It supports persistence API's being layered on top of the core functionality.
/**********************************************************************
Copyright (c) 2004 Andy Jefferson 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;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Map;
import org.datanucleus.NucleusContext;
import org.datanucleus.PropertyNames;
import org.datanucleus.api.ApiAdapter;
import org.datanucleus.util.NucleusLogger;
import org.datanucleus.util.Localiser;
/**
* Abstract referenced implementation of a Level 2 cache, to be used as the base for weak/soft variants.
*
* Operates with 3 maps internally. One stores all pinned objects that have been selected to be retained by user's application.
* The second stores all other objects, and is the default location where objects are placed when being added here, using weak references meaning that they can
* get garbage collected as necessary by the JVM.
* The third stores objects keyed by the unique key that they relate to.
*
*
* Maintains collections of the classes and the identities that are to be pinned if they ever are put into the cache. These are defined by the pinAll(), pin() methods.
*
*
* All mutating methods, and the get method have been synchronized to prevent conflicts.
*
*/
public abstract class AbstractReferencedLevel2Cache implements Level2Cache
{
private static final long serialVersionUID = 1362763118213430097L;
/** Collection of pinned classes whose objects should be pinned if they ever reach the cache. */
protected Collection pinnedClasses;
/** Collection of ids whose objects should be pinned if they ever reach the cache. */
protected Collection pinnedIds;
/** Pinned objects cache. */
protected Map pinnedCache;
/** Unpinned objects cache. */
protected transient Map unpinnedCache; // transient since WeakValueMap is not serialisable
/** Unique Key cache. */
protected transient Map uniqueKeyCache; // transient since WeakValueMap is not serialisable
protected ApiAdapter apiAdapter;
private int maxSize = -1;
protected AbstractReferencedLevel2Cache()
{
// nothing to do
}
/**
* Constructor.
* @param nucleusCtx Context
*/
public AbstractReferencedLevel2Cache(NucleusContext nucleusCtx)
{
apiAdapter = nucleusCtx.getApiAdapter();
pinnedCache = new HashMap();
initialiseCaches();
maxSize = nucleusCtx.getConfiguration().getIntProperty(PropertyNames.PROPERTY_CACHE_L2_MAXSIZE);
}
protected abstract void initialiseCaches();
/**
* Method to close the cache when no longer needed. Provides a hook to release resources etc.
*/
public void close()
{
evictAll();
pinnedCache = null;
unpinnedCache = null;
uniqueKeyCache = null;
}
/**
* Method to evict an object from the cache.
* @param oid The id of the object to evict
*/
public void evict(Object oid)
{
if (oid == null)
{
return;
}
unpinnedCache.remove(oid);
pinnedCache.remove(oid);
}
/**
* Method to evict all objects from the L2 cache.
*/
public void evictAll()
{
unpinnedCache.clear();
pinnedCache.clear();
uniqueKeyCache.clear();
}
/**
* Method to evict all objects of the given types from the cache.
* @param pcClass The class to evict
* @param subclasses Whether to also evict subclasses
*/
public void evictAll(Class pcClass, boolean subclasses)
{
if (pcClass == null)
{
return;
}
Collection oidsToEvict = new HashSet();
// Find objects to evict from pinned
Collection pinnedObjects = pinnedCache.entrySet();
Iterator pinnedIter = pinnedObjects.iterator();
while (pinnedIter.hasNext())
{
Map.Entry entry = (Map.Entry) pinnedIter.next();
CachedPC pc = (CachedPC) entry.getValue();
if (pcClass.getName().equals(pc.getObjectClass().getName()) || (subclasses && pcClass.isAssignableFrom(pc.getObjectClass())))
{
oidsToEvict.add(entry.getKey());
}
}
// Find objects to evict from unpinned
Collection unpinnedObjects = unpinnedCache.entrySet();
Iterator unpinnedIter = unpinnedObjects.iterator();
while (unpinnedIter.hasNext())
{
Map.Entry entry = (Map.Entry) unpinnedIter.next();
CachedPC pc = (CachedPC) entry.getValue();
if (pc != null && (pcClass.getName().equals(pc.getObjectClass().getName()) || (subclasses && pcClass.isAssignableFrom(pc.getObjectClass()))))
{
oidsToEvict.add(entry.getKey());
}
}
// Evict the objects
if (!oidsToEvict.isEmpty())
{
evictAll(oidsToEvict);
}
}
/**
* Method to evict the objects with the specified ids.
* @param oids The ids of the objects to evict
*/
public void evictAll(Collection oids)
{
if (oids == null)
{
return;
}
Iterator iter = oids.iterator();
while (iter.hasNext())
{
evict(iter.next());
}
}
/**
* Method to evict the objects with the specified ids.
* @param oids The ids of the objects to evict
*/
public void evictAll(Object[] oids)
{
if (oids == null)
{
return;
}
for (int i = 0; i < oids.length; i++)
{
evict(oids[i]);
}
}
/**
* Accessor for an object from the cache. The returned object will not have a StateManager connected.
* This is because data stored in the Level 2 cache is StateManager and PersistenceManager independent.
* @param oid The Object ID
* @return The L2 cacheable object
*/
public CachedPC get(Object oid)
{
if (oid == null)
{
return null;
}
CachedPC pc = pinnedCache.get(oid);
if (pc != null)
{
return pc;
}
return unpinnedCache.get(oid);
}
/*
* (non-Javadoc)
* @see org.datanucleus.cache.Level2Cache#getAll(java.util.Collection)
*/
public Map getAll(Collection oids)
{
if (oids == null)
{
return null;
}
Map objs = new HashMap();
for (Object oid : oids)
{
CachedPC obj = get(oid);
if (obj != null)
{
objs.put(oid, obj);
}
}
return objs;
}
/**
* Accessor for the number of pinned objects in the cache.
* @return Number of pinned objects
*/
public int getNumberOfPinnedObjects()
{
return pinnedCache.size();
}
/**
* Accessor for the number of unpinned objects in the cache.
* @return Number of unpinned objects
*/
public int getNumberOfUnpinnedObjects()
{
return unpinnedCache.size();
}
/**
* Accessor for the total number of objects in the L2 cache.
* @return Number of objects
*/
public int getSize()
{
return getNumberOfPinnedObjects() + getNumberOfUnpinnedObjects();
}
/*
* (non-Javadoc)
* @see org.datanucleus.cache.Level2Cache#putAll(java.util.Map)
*/
public void putAll(Map objs)
{
if (objs == null)
{
return;
}
// TODO Support maxSize, and use putAll
// Just fallback to doing multiple puts
Iterator> entryIter = objs.entrySet().iterator();
while (entryIter.hasNext())
{
Map.Entry entry = entryIter.next();
put(entry.getKey(), entry.getValue());
}
}
/**
* Method to put an object in the cache.
* @param oid The Object id for this object
* @param pc The cacheable object
* @return The value previously associated with this oid
*/
public CachedPC put(Object oid, CachedPC pc)
{
if (oid == null || pc == null)
{
NucleusLogger.CACHE.warn(Localiser.msg("004011"));
return null;
}
else if (maxSize >= 0 && getSize() == maxSize)
{
return null;
}
// Check if we should pin this
// a). check if the object class type is to be pinned
boolean toBePinned = false;
if (pinnedClasses != null)
{
Iterator pinnedClsIter = pinnedClasses.iterator();
while (pinnedClsIter.hasNext())
{
PinnedClass pinCls = pinnedClsIter.next();
if (pinCls.cls.getName().equals(pc.getObjectClass().getName()) || (pinCls.subclasses && pinCls.cls.isAssignableFrom(pc.getObjectClass())))
{
toBePinned = true;
break;
}
}
}
// b). check if the id is to be pinned
if (pinnedIds != null && pinnedIds.contains(oid))
{
toBePinned = true;
}
Object obj = null;
if (pinnedCache.get(oid) != null)
{
// Update the pinned cache if object is already there
obj = pinnedCache.put(oid, pc);
if (obj != null)
{
return (CachedPC) obj;
}
}
else
{
if (toBePinned)
{
// Update the pinned cache
pinnedCache.put(oid, pc);
unpinnedCache.remove(oid); // Just in case it was unpinned previously
}
else
{
// Update the unpinned cache otherwise
obj = unpinnedCache.put(oid, pc);
if (obj != null)
{
return (CachedPC) obj;
}
}
}
return null;
}
/**
* Method to check if an object with the specified id is in the cache
* @param oid The object ID
* @return Whether it is present
*/
public boolean containsOid(Object oid)
{
return pinnedCache.containsKey(oid) || unpinnedCache.containsKey(oid);
}
/**
* Accessor for whether the cache is empty.
* @return Whether it is empty.
*/
public boolean isEmpty()
{
return pinnedCache.isEmpty() && unpinnedCache.isEmpty();
}
/* (non-Javadoc)
* @see org.datanucleus.cache.Level2Cache#getUnique(org.datanucleus.cache.CacheUniqueKey)
*/
@Override
public CachedPC getUnique(CacheUniqueKey key)
{
return uniqueKeyCache.get(key);
}
/* (non-Javadoc)
* @see org.datanucleus.cache.Level2Cache#putUnique(org.datanucleus.cache.CacheUniqueKey, org.datanucleus.cache.CachedPC)
*/
@Override
public CachedPC putUnique(CacheUniqueKey key, CachedPC pc)
{
return uniqueKeyCache.put(key, pc);
}
/* (non-Javadoc)
* @see org.datanucleus.cache.Level2Cache#putUniqueAll(java.util.Map)
*/
@Override
public void putUniqueAll(Map objs)
{
uniqueKeyCache.putAll(objs);
}
/* (non-Javadoc)
* @see org.datanucleus.cache.Level2Cache#removeUnique(org.datanucleus.cache.CacheUniqueKey)
*/
@Override
public void removeUnique(CacheUniqueKey key)
{
uniqueKeyCache.remove(key);
}
private void writeObject(ObjectOutputStream out) throws IOException
{
out.defaultWriteObject();
}
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException
{
// our "pseudo-constructor"
in.defaultReadObject();
initialiseCaches();
}
/**
* Method to pin an object to the cache.
* @param oid The id of the object to pin
*/
public void pin(Object oid)
{
if (oid == null)
{
return;
}
if (pinnedIds == null)
{
pinnedIds = new HashSet();
}
else if (!pinnedIds.contains(oid))
{
// Add this oid to the to-be-pinned collection
pinnedIds.add(oid);
}
CachedPC pc = unpinnedCache.get(oid);
if (pc != null)
{
pinnedCache.put(oid, pc);
unpinnedCache.remove(oid);
}
}
/**
* Method to pin all objects of the given types.
* @param cls The class
* @param subs Whether to include subclasses
*/
public void pinAll(Class cls, boolean subs)
{
if (cls == null)
{
return;
}
if (pinnedClasses == null)
{
pinnedClasses = new HashSet();
}
// Check if it already exists as a pinned class
PinnedClass pinnedCls = new PinnedClass(cls, subs);
if (pinnedClasses.contains(pinnedCls))
{
return;
}
pinnedClasses.add(pinnedCls);
// Update all currently unpinned objects to comply with the new class specification
Collection unpinnedObjects = unpinnedCache.values();
Iterator unpinnedIter = unpinnedObjects.iterator();
while (unpinnedIter.hasNext())
{
CachedPC obj = (CachedPC) unpinnedIter.next();
if ((subs && cls.isInstance(obj.getObjectClass())) || cls.getName().equals(obj.getObjectClass().getName()))
{
pin(obj);
}
}
}
/**
* Method to pin all of the supplied objects
* @param oids The Object ids to pin
*/
public void pinAll(Collection oids)
{
if (oids == null)
{
return;
}
Iterator iter = oids.iterator();
while (iter.hasNext())
{
pin(iter.next());
}
}
/**
* Method to pin all of the supplied objects
* @param oids The object ids to pin
*/
public void pinAll(Object[] oids)
{
if (oids == null)
{
return;
}
for (int i = 0; i < oids.length; i++)
{
pin(oids[i]);
}
}
/**
* Method to unpin an object
* @param oid The object id
*/
public void unpin(Object oid)
{
if (oid == null)
{
return;
}
CachedPC pc = pinnedCache.get(oid);
if (pc != null)
{
unpinnedCache.put(oid, pc);
pinnedCache.remove(oid);
}
if (pinnedIds != null && pinnedIds.contains(oid))
{
// Remove this oid from the to-be-pinned collection
pinnedIds.remove(oid);
}
}
/**
* Method to unpin all objects of the specified types.
* @param cls Base class
* @param subs Whether to include subclasses
*/
public void unpinAll(Class cls, boolean subs)
{
if (cls == null)
{
return;
}
// Remove the class from the pinned collection
if (pinnedClasses != null)
{
PinnedClass pinnedCls = new PinnedClass(cls, subs);
pinnedClasses.remove(pinnedCls);
}
// Unpin all objects of this type currently pinned
Collection pinnedObjects = pinnedCache.values();
Iterator pinnedIter = pinnedObjects.iterator();
while (pinnedIter.hasNext())
{
CachedPC obj = (CachedPC) pinnedIter.next();
if ((subs && cls.isInstance(obj.getObjectClass())) || cls.getName().equals(obj.getObjectClass().getName()))
{
unpin(obj);
}
}
}
/**
* Method to unpin all of the supplied objects
* @param oids The object ids to unpin
*/
public void unpinAll(Collection oids)
{
if (oids == null)
{
return;
}
Iterator iter = oids.iterator();
while (iter.hasNext())
{
unpin(iter.next());
}
}
/**
* Method to unpin all of the specified objects
* @param oids The object ids to unpin
*/
public void unpinAll(Object[] oids)
{
if (oids == null)
{
return;
}
for (int i = 0; i < oids.length; i++)
{
unpin(oids[i]);
}
}
/**
* Representation of a class whose objects will be pinned when put into the L2 cache.
*/
class PinnedClass
{
Class cls;
boolean subclasses;
/**
* Constructor
* @param cls the class
* @param subclasses include sub classes
*/
public PinnedClass(Class cls, boolean subclasses)
{
this.cls = cls;
this.subclasses = subclasses;
}
public int hashCode()
{
return cls.hashCode() ^ (subclasses ? 0 : 1);
}
public boolean equals(Object obj)
{
if (obj == null)
{
return false;
}
if (!(obj instanceof PinnedClass))
{
return false;
}
PinnedClass other = (PinnedClass)obj;
return other.cls.getName().equals(cls.getName()) && other.subclasses == subclasses;
}
}
}