com.intellij.psi.util.CachedValuesManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-api Show documentation
Show all versions of core-api Show documentation
A packaging of the IntelliJ Community Edition core-api library.
This is release number 1 of trunk branch 142.
The newest version!
/*
* Copyright 2000-2014 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
*
* 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 com.intellij.psi.util;
import com.intellij.openapi.components.ServiceManager;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.Key;
import com.intellij.openapi.util.NotNullLazyKey;
import com.intellij.openapi.util.UserDataHolder;
import com.intellij.openapi.util.UserDataHolderEx;
import com.intellij.psi.PsiElement;
import com.intellij.util.ArrayUtil;
import com.intellij.util.ConcurrencyUtil;
import com.intellij.util.containers.ContainerUtil;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.concurrent.ConcurrentMap;
/**
* A service used to create and store {@link CachedValue} objects.
*
* By default cached values are stored in the user data of associated objects implementing {@link UserDataHolder}.
*
* @see #createCachedValue(CachedValueProvider, boolean)
* @see #getCachedValue(PsiElement, CachedValueProvider)
* @see #getCachedValue(UserDataHolder, CachedValueProvider)
*/
public abstract class CachedValuesManager {
private static final NotNullLazyKey INSTANCE_KEY = ServiceManager.createLazyKey(CachedValuesManager.class);
public static CachedValuesManager getManager(@NotNull Project project) {
return INSTANCE_KEY.getValue(project);
}
/**
* Creates new CachedValue instance with given provider. If the return value is marked as trackable, it's treated as
* yet another dependency and must comply its specification. See {@link CachedValueProvider.Result#getDependencyItems()} for
* the details.
*
* @param provider computes values.
* @param trackValue if value tracking required. T should be trackable in this case.
* @return new CachedValue instance.
*/
@NotNull
public abstract CachedValue createCachedValue(@NotNull CachedValueProvider provider, boolean trackValue);
@NotNull
public abstract ParameterizedCachedValue createParameterizedCachedValue(@NotNull ParameterizedCachedValueProvider provider, boolean trackValue);
/**
* Rarely needed because it tracks the return value as a dependency.
* @return a CachedValue like in {@link #createCachedValue(CachedValueProvider, boolean)}, with trackable return value.
*/
@NotNull
public CachedValue createCachedValue(@NotNull CachedValueProvider provider) {
return createCachedValue(provider, true);
}
public T getParameterizedCachedValue(@NotNull D dataHolder,
@NotNull Key> key,
@NotNull ParameterizedCachedValueProvider provider,
boolean trackValue,
P parameter) {
ParameterizedCachedValue value;
if (dataHolder instanceof UserDataHolderEx) {
UserDataHolderEx dh = (UserDataHolderEx)dataHolder;
value = dh.getUserData(key);
if (value == null) {
value = createParameterizedCachedValue(provider, trackValue);
value = dh.putUserDataIfAbsent(key, value);
}
}
else {
synchronized (dataHolder) {
value = dataHolder.getUserData(key);
if (value == null) {
value = createParameterizedCachedValue(provider, trackValue);
dataHolder.putUserData(key, value);
}
}
}
return value.getValue(parameter);
}
/**
* Utility method storing created cached values in a {@link UserDataHolder}.
*
* @param dataHolder holder to store the cached value, e.g. a PsiElement.
* @param key key to store the cached value.
* @param provider provider creating the cached value.
* @param trackValue if value tracking required. T should be trackable in this case.
* @return up-to-date value.
*/
public abstract T getCachedValue(@NotNull D dataHolder,
@NotNull Key> key,
@NotNull CachedValueProvider provider,
boolean trackValue);
/**
* Create a cached value with the given provider and non-tracked return value, store it in the first argument's user data. If it's already stored, reuse it.
* @return The cached value
*/
public T getCachedValue(@NotNull D dataHolder, @NotNull CachedValueProvider provider) {
return getCachedValue(dataHolder, this.getKeyForClass(provider.getClass()), provider, false);
}
/**
* Create a cached value with the given provider and non-tracked return value, store it in PSI element's user data. If it's already stored, reuse it.
* @return The cached value
*/
public static T getCachedValue(@NotNull final PsiElement psi, @NotNull final CachedValueProvider provider) {
CachedValuesManager manager = getManager(psi.getProject());
return manager.getCachedValue(psi, manager.getKeyForClass(provider.getClass()), new CachedValueProvider() {
@Nullable
@Override
public Result compute() {
Result result = provider.compute();
if (result != null && !psi.isPhysical()) {
return Result.create(result.getValue(), ArrayUtil.append(result.getDependencyItems(), psi));
}
return result;
}
}, false);
}
private final ConcurrentMap> keyForProvider = ContainerUtil.newConcurrentMap();
@NotNull
public Key> getKeyForClass(@NotNull Class> providerClass) {
String name = providerClass.getName();
assert name != null : providerClass + " doesn't have a name; can't be used for cache value provider";
Key key = keyForProvider.get(name);
if (key == null) {
key = ConcurrencyUtil.cacheOrGet(keyForProvider, name, Key.create(name));
}
//noinspection unchecked
return (Key)key;
}
}