com.maxifier.mxcache.impl.resource.nodes.ViewableSingletonFloatDependencyNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mxcache-runtime Show documentation
Show all versions of mxcache-runtime Show documentation
Constains all classes necessary for launching a MxCache-instrumentated application
/*
* Copyright (c) 2008-2014 Maxifier Ltd. All Rights Reserved.
*/
package com.maxifier.mxcache.impl.resource.nodes;
import com.maxifier.mxcache.caches.Cache;
import com.maxifier.mxcache.caches.FloatCache;
import com.maxifier.mxcache.caches.CleaningNode;
import com.maxifier.mxcache.impl.resource.DependencyNode;
import com.maxifier.mxcache.impl.resource.DependencyTracker;
import com.maxifier.mxcache.storage.FloatStorage;
import javax.annotation.Nonnull;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* THIS IS GENERATED CLASS! DON'T EDIT IT MANUALLY!
*
* GENERATED FROM ViewableSingletonP2PDependencyNode.template
*
* @author Elena Saymanina ([email protected]) (29.05.13)
*/
public class ViewableSingletonFloatDependencyNode extends SingletonDependencyNode implements ResourceViewable {
private static final Logger logger = LoggerFactory.getLogger(ViewableSingletonFloatDependencyNode.class);
@Override
public synchronized void addNode(@Nonnull CleaningNode cache) {
super.addNode(cache);
if (!(cache instanceof FloatStorage)) {
String owner = "";
if (cache instanceof Cache) {
owner = ((Cache) cache).getDescriptor().toString();
}
logger.error("@ResourceView is incorrect specified for method {}. Return type {} is not supported by ResourceView", owner, cache.getClass());
}
}
@Override
public boolean isChanged() {
if (instance instanceof FloatStorage && instance instanceof FloatCache) {
FloatStorage storage = (FloatStorage) instance;
FloatCache cache = (FloatCache) instance;
DependencyNode prevNode = DependencyTracker.track(DependencyTracker.NOCACHE_NODE);
try {
return storage.isCalculated() && !DependencyTracker.isDependentResourceView(cache) && cache.getOrCreate() != storage.load();
} finally {
DependencyTracker.exit(prevNode);
}
} else {
return true;
}
}
}