SimpleResultCache.java
/*
* Copyright (c) 2001-2017, Zoltan Farkas All Rights Reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* Additionally licensed with:
*
* 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.spf4j.zel.vm;
import com.google.common.cache.Cache;
import com.google.common.cache.CacheBuilder;
import com.google.common.cache.CacheLoader;
import com.google.common.cache.LoadingCache;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.ExecutionException;
import javax.annotation.Nonnull;
import javax.annotation.concurrent.ThreadSafe;
import org.spf4j.base.Pair;
import org.spf4j.concurrent.UnboundedLoadingCache;
/**
* simple implementation for resultcache.
*
* @author zoly
*/
@ThreadSafe
public final class SimpleResultCache implements ResultCache {
private static final Object NULL = new Object();
private final LoadingCache<Program,
Pair<? extends ConcurrentMap<List<Object>, Object>, ? extends Cache<List<Object>, Object>>> cache;
static class CacheLoaderImpl extends
CacheLoader<Program,
Pair<? extends ConcurrentMap<List<Object>, Object>, ? extends Cache<List<Object>, Object>>> {
private final int maxSize;
CacheLoaderImpl(final int maxSize) {
this.maxSize = maxSize;
}
@Override
public Pair<? extends ConcurrentMap<List<Object>, Object>, ? extends Cache<List<Object>, Object>> load(
final Program key) throws Exception {
Cache<List<Object>, Object> trCache = CacheBuilder.newBuilder().maximumSize(maxSize).build();
return Pair.of(new ConcurrentHashMap<List<Object>, Object>(), trCache);
}
}
public SimpleResultCache() {
this(100000);
}
public SimpleResultCache(final int maxSize) {
cache = new UnboundedLoadingCache<Program,
Pair<? extends ConcurrentMap<List<Object>, Object>, ? extends Cache<List<Object>, Object>>>(16,
new CacheLoaderImpl(maxSize));
}
@Override
public void putPermanentResult(final Program program,
@Nonnull final List<Object> params, final Object result) {
final Pair<? extends ConcurrentMap<List<Object>, Object>, ? extends Cache<List<Object>, Object>> resultsMap
= cache.getUnchecked(program);
if (result == null) {
resultsMap.getFirst().put(params, NULL);
} else {
resultsMap.getFirst().put(params, result);
}
}
@Override
public void putTransientResult(final Program program,
@Nonnull final List<Object> params, final Object result) {
final Pair<? extends ConcurrentMap<List<Object>, Object>, ? extends Cache<List<Object>, Object>> resultsMap
= cache.getUnchecked(program);
if (result == null) {
resultsMap.getSecond().put(params, NULL);
} else {
resultsMap.getSecond().put(params, result);
}
}
@Override
public Object getResult(final Program program,
@Nonnull final List<Object> params, final Callable<Object> compute)
throws ExecutionException {
final Pair<? extends ConcurrentMap<List<Object>, Object>, ? extends Cache<List<Object>, Object>> prCache
= cache.getUnchecked(program);
Object result = prCache.getFirst().get(params);
if (result == null) {
result = prCache.getSecond().get(params, new CallableNullWrapper(compute));
}
if (result == NULL) {
result = null;
}
return result;
}
@Override
public String toString() {
return "SimpleResultCache{" + "cache=" + cache + '}';
}
private static class CallableNullWrapper implements Callable<Object> {
private final Callable<Object> compute;
CallableNullWrapper(final Callable<Object> compute) {
this.compute = compute;
}
@Override
public Object call() throws Exception {
Object result = compute.call();
if (result == null) {
return NULL;
} else {
return result;
}
}
}
}