jetbrains.exodus.core.dataStructures.ConcurrentObjectCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xodus-utils Show documentation
Show all versions of xodus-utils Show documentation
Xodus is pure Java transactional schema-less embedded database
The newest version!
/**
* Copyright 2010 - 2022 JetBrains s.r.o.
*
* 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
*
* https://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 jetbrains.exodus.core.dataStructures;
import jetbrains.exodus.core.dataStructures.hash.HashUtil;
import jetbrains.exodus.util.MathUtil;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
@SuppressWarnings("unchecked")
public class ConcurrentObjectCache extends ObjectCacheBase {
static final int DEFAULT_NUMBER_OF_GENERATIONS = 3;
private final int numberOfGenerations;
private final int generationSize;
private final int mask;
private final CacheEntry[] cache;
public ConcurrentObjectCache() {
this(DEFAULT_SIZE);
}
public ConcurrentObjectCache(final int size) {
this(size, DEFAULT_NUMBER_OF_GENERATIONS);
}
public ConcurrentObjectCache(final int size, final int numberOfGenerations) {
super(size);
this.numberOfGenerations = numberOfGenerations;
generationSize = HashUtil.getFloorPrime(size / numberOfGenerations);
mask = (1 << MathUtil.integerLogarithm(generationSize)) - 1;
cache = new CacheEntry[numberOfGenerations * generationSize];
}
@Override
public V tryKeyLocked(@NotNull final K key) {
return tryKey(key);
}
@Override
public void clear() {
// do nothing
}
@Override
public void lock() {
}
@Override
public void unlock() {
}
@Override
public V cacheObject(@NotNull final K key, @NotNull final V x) {
int cacheIndex = HashUtil.indexFor(key.hashCode(), generationSize, mask) * numberOfGenerations;
for (int i = 0; i < numberOfGenerations; ++i, ++cacheIndex) {
final CacheEntry entry = cache[cacheIndex];
if (entry != null && entry.key.equals(key)) {
cache[cacheIndex] = new CacheEntry<>(key, x);
// in concurrent environment we can't definitely know if a value is pushed out from the cache
return null;
}
}
cache[cacheIndex - 1] = new CacheEntry<>(key, x);
return null;
}
@Override
public V remove(@NotNull final K key) {
int cacheIndex = HashUtil.indexFor(key.hashCode(), generationSize, mask) * numberOfGenerations;
for (int i = 0; i < numberOfGenerations; ++i, ++cacheIndex) {
final CacheEntry entry = cache[cacheIndex];
if (entry != null && entry.key.equals(key)) {
final V result = entry.value;
entry.value = null;
return result;
}
}
return null;
}
@Override
public V tryKey(@NotNull final K key) {
incAttempts();
int cacheIndex = HashUtil.indexFor(key.hashCode(), generationSize, mask) * numberOfGenerations;
CacheEntry entry = cache[cacheIndex];
if (entry != null && entry.key.equals(key)) {
incHits();
return entry.value;
}
for (int i = 1; i < numberOfGenerations; ++i) {
entry = cache[++cacheIndex];
if (entry != null && entry.key.equals(key)) {
incHits();
final CacheEntry temp = cache[cacheIndex - 1];
cache[cacheIndex - 1] = entry;
cache[cacheIndex] = temp;
return entry.value;
}
}
return null;
}
@Override
public V getObject(@NotNull final K key) {
int cacheIndex = HashUtil.indexFor(key.hashCode(), generationSize, mask) * numberOfGenerations;
for (int i = 0; i < numberOfGenerations; ++i, ++cacheIndex) {
final CacheEntry entry = cache[cacheIndex];
if (entry != null && entry.key.equals(key)) {
return entry.value;
}
}
return null;
}
@Override
public int count() {
throw new UnsupportedOperationException();
}
@Override
public CriticalSection newCriticalSection() {
return TRIVIAL_CRITICAL_SECTION;
}
private static class CacheEntry {
@NotNull
private final K key;
@Nullable
private V value;
private CacheEntry(@NotNull final K key, @Nullable final V value) {
this.key = key;
this.value = value;
}
}
}