![JAR search and dependency download from the Maven repository](/logo.png)
com.maxifier.mxcache.impl.caches.abs.AbstractLongCache Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2014 Maxifier Ltd. All Rights Reserved.
*/
package com.maxifier.mxcache.impl.caches.abs;
import com.maxifier.mxcache.CacheFactory;
import com.maxifier.mxcache.caches.*;
import com.maxifier.mxcache.impl.MutableStatistics;
import com.maxifier.mxcache.impl.CacheId;
import com.maxifier.mxcache.impl.CalculatableHelper;
import com.maxifier.mxcache.impl.resource.*;
import com.maxifier.mxcache.provider.CacheDescriptor;
import com.maxifier.mxcache.storage.*;
/**
* THIS IS GENERATED CLASS! DON'T EDIT IT MANUALLY!
*
* GENERATED FROM P2PCache.template
*
* @author Andrey Yakoushin ([email protected])
* @author Alexander Kochurov ([email protected])
*/
public abstract class AbstractLongCache extends AbstractCache implements LongCache, LongStorage {
private final LongCalculatable calculatable;
public AbstractLongCache(Object owner, LongCalculatable calculatable, MutableStatistics statistics) {
super(owner, statistics);
this.calculatable = calculatable;
}
@Override
public long getOrCreate() {
if (DependencyTracker.isBypassCaches()) {
return calculatable.calculate(owner);
} else {
lock();
try {
if (isCalculated()) {
DependencyTracker.mark(getDependencyNode());
hit();
return load();
}
DependencyNode callerNode = DependencyTracker.track(getDependencyNode());
try {
while(true) {
try {
return create();
} catch (ResourceOccupied e) {
if (callerNode != null) {
throw e;
} else {
unlock();
try {
e.getResource().waitForEndOfModification();
} finally {
lock();
}
if (isCalculated()) {
hit();
return load();
}
}
}
}
} finally {
DependencyTracker.exit(callerNode);
}
} finally {
unlock();
}
}
}
protected long create() {
long start = System.nanoTime();
long t = calculatable.calculate(owner);
long end = System.nanoTime();
miss(end - start);
save(t);
return t;
}
@Override
public CacheDescriptor getDescriptor() {
CacheId id = CalculatableHelper.getId(calculatable.getClass());
return CacheFactory.getProvider().getDescriptor(id);
}
@Override
public String toString() {
return getDescriptor() + ": " + owner;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy