package org.apache.lucene.util.cache; /** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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. */ /** * Base class for cache implementations. */ public abstract class Cache { /** * Simple Cache wrapper that synchronizes all * calls that access the cache. */ static class SynchronizedCache extends Cache { Object mutex; Cache cache; SynchronizedCache(Cache cache) { this.cache = cache; this.mutex = this; } SynchronizedCache(Cache cache, Object mutex) { this.cache = cache; this.mutex = mutex; } public void put(Object key, Object value) { synchronized(mutex) {cache.put(key, value);} } public Object get(Object key) { synchronized(mutex) {return cache.get(key);} } public boolean containsKey(Object key) { synchronized(mutex) {return cache.containsKey(key);} } public void close() { synchronized(mutex) {cache.close();} } Cache getSynchronizedCache() { return this; } } /** * Returns a thread-safe cache backed by the specified cache. * In order to guarantee thread-safety, all access to the backed cache must * be accomplished through the returned cache. */ public static Cache synchronizedCache(Cache cache) { return cache.getSynchronizedCache(); } /** * Called by {@link #synchronizedCache(Cache)}. This method * returns a {@link SynchronizedCache} instance that wraps * this instance by default and can be overridden to return * e. g. subclasses of {@link SynchronizedCache} or this * in case this cache is already synchronized. */ Cache getSynchronizedCache() { return new SynchronizedCache(this); } /** * Puts a (key, value)-pair into the cache. */ public abstract void put(Object key, Object value); /** * Returns the value for the given key. */ public abstract Object get(Object key); /** * Returns whether the given key is in this cache. */ public abstract boolean containsKey(Object key); /** * Closes the cache. */ public abstract void close(); }