org.datanucleus.cache.AbstractReferencedLevel2Cache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datanucleus-core Show documentation
Show all versions of datanucleus-core Show documentation
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