Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package net.alloyggp.tournament.internal;
import java.util.Collections;
import java.util.List;
import java.util.Map.Entry;
import java.util.Set;
import java.util.SortedMap;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicBoolean;
import javax.annotation.Nullable;
import com.google.common.cache.CacheBuilder;
import com.google.common.cache.CacheLoader;
import com.google.common.cache.LoadingCache;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import com.google.common.collect.Ordering;
import net.alloyggp.tournament.api.TMatchResult;
import net.alloyggp.tournament.api.TSeeding;
/**
* This is a process-wide cache meant to short-circuit some of
* the computation involved in computing match setups and
* rankings. Stage runners may use it to store the state at the
* end of each round and reuse this state in later computations.
*/
public class TournamentStateCache {
private static final AtomicBoolean CACHE_ENABLED = new AtomicBoolean(true);
private static final LoadingCache>> STAGE_CACHES =
CacheBuilder.newBuilder()
.expireAfterAccess(5L, TimeUnit.MINUTES)
.maximumSize(100L)
.build(new CacheLoader>>() {
@Override
public SortedMap> load(CacheKey key) throws Exception {
return Collections.synchronizedSortedMap(Maps.>newTreeMap(
Ordering.natural().reverse()));
}
});
/**
* A key to find the appropriate sub-cache that stores entries
* for a particular stage in a tournament. The seeding and results
* before that stage are included, to prevent returning incorrect
* results if "counterfactual" computations have been performed.
*/
//TODO: Should we be using the tournament initial seeding instead of
//the stage initial seeding? This would matter if we allowed scores
//to carry over meaningfully in some way aside from the between-stage
//seedings. Currently it should not, and the per-stage seeding is
//much more accessible.
private static class CacheKey {
private final String tournamentInternalName;
private final TSeeding initialSeeding;
private final int stageNum;
private final ImmutableSet resultsFromEarlierStages;
public CacheKey(String tournamentInternalName, TSeeding initialSeeding, int stageNum,
ImmutableSet resultsFromEarlierStages) {
this.tournamentInternalName = tournamentInternalName;
this.initialSeeding = initialSeeding;
this.stageNum = stageNum;
this.resultsFromEarlierStages = resultsFromEarlierStages;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((initialSeeding == null) ? 0 : initialSeeding.hashCode());
result = prime * result + ((resultsFromEarlierStages == null) ? 0 : resultsFromEarlierStages.hashCode());
result = prime * result + stageNum;
result = prime * result + ((tournamentInternalName == null) ? 0 : tournamentInternalName.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
CacheKey other = (CacheKey) obj;
if (initialSeeding == null) {
if (other.initialSeeding != null) {
return false;
}
} else if (!initialSeeding.equals(other.initialSeeding)) {
return false;
}
if (resultsFromEarlierStages == null) {
if (other.resultsFromEarlierStages != null) {
return false;
}
} else if (!resultsFromEarlierStages.equals(other.resultsFromEarlierStages)) {
return false;
}
if (stageNum != other.stageNum) {
return false;
}
if (tournamentInternalName == null) {
if (other.tournamentInternalName != null) {
return false;
}
} else if (!tournamentInternalName.equals(other.tournamentInternalName)) {
return false;
}
return true;
}
@Override
public String toString() {
return "CacheKey [tournamentInternalName=" + tournamentInternalName + ", initialSeeding=" + initialSeeding
+ ", stageNum=" + stageNum + ", resultsFromEarlierStages=" + resultsFromEarlierStages + "]";
}
}
private static class CacheEntry {
public final ImmutableSet resultsSoFarInStage;
public final EndOfRoundState state;
private CacheEntry(ImmutableSet resultsSoFarInStage, EndOfRoundState state) {
this.resultsSoFarInStage = resultsSoFarInStage;
this.state = state;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((resultsSoFarInStage == null) ? 0 : resultsSoFarInStage.hashCode());
result = prime * result + ((state == null) ? 0 : state.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
CacheEntry other = (CacheEntry) obj;
if (resultsSoFarInStage == null) {
if (other.resultsSoFarInStage != null) {
return false;
}
} else if (!resultsSoFarInStage.equals(other.resultsSoFarInStage)) {
return false;
}
if (state == null) {
if (other.state != null) {
return false;
}
} else if (!state.equals(other.state)) {
return false;
}
return true;
}
}
/**
* Enables or disables caching. Tests use this for testing the cache.
*/
public static void setEnabled(boolean enabled) {
CACHE_ENABLED.set(enabled);
}
public static void cacheEndOfRoundState(String tournamentInternalName, TSeeding initialSeeding,
ImmutableSet resultsFromEarlierStages, int stageNum, Set resultsInStage, EndOfRoundState state) {
if (!CACHE_ENABLED.get()) {
return;
}
CacheKey key = new CacheKey(tournamentInternalName, initialSeeding, stageNum, resultsFromEarlierStages);
SortedMap> stageCache = STAGE_CACHES.getUnchecked(key);
int size = resultsInStage.size();
synchronized (stageCache) {
if (!stageCache.containsKey(size)) {
stageCache.put(size, Collections.synchronizedList(Lists.newArrayList()));
}
stageCache.get(size).add(new CacheEntry(ImmutableSet.copyOf(resultsInStage), state));
}
}
public static @Nullable EndOfRoundState getLatestCachedEndOfRoundState(String tournamentInternalName,
TSeeding initialSeeding, ImmutableSet resultsFromEarlierStages, int stageNum, ImmutableSet resultsInStage) {
if (!CACHE_ENABLED.get()) {
return null;
}
CacheKey key = new CacheKey(tournamentInternalName, initialSeeding, stageNum, resultsFromEarlierStages);
SortedMap> results = STAGE_CACHES.getUnchecked(key);
synchronized (results) {
//Key is the size of the "resultsInStage" set
//This goes from highest to lowest, so we'll find the largest subset
for (Entry> entry : results.entrySet()) {
if (entry.getKey() > resultsInStage.size()) {
continue;
}
synchronized (entry.getValue()) {
for (CacheEntry value : entry.getValue()) {
if (resultsInStage.containsAll(value.resultsSoFarInStage)) {
return value.state;
}
}
}
}
}
return null;
}
}