mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-24 11:38:40 +01:00
Refactor context manager
This commit is contained in:
parent
1bd7e5c9c4
commit
9e6788de2f
@ -31,12 +31,12 @@ import me.lucko.luckperms.api.Contexts;
|
|||||||
import me.lucko.luckperms.api.context.ImmutableContextSet;
|
import me.lucko.luckperms.api.context.ImmutableContextSet;
|
||||||
import me.lucko.luckperms.bukkit.LPBukkitPlugin;
|
import me.lucko.luckperms.bukkit.LPBukkitPlugin;
|
||||||
import me.lucko.luckperms.common.config.ConfigKeys;
|
import me.lucko.luckperms.common.config.ConfigKeys;
|
||||||
import me.lucko.luckperms.common.contexts.ContextManager;
|
import me.lucko.luckperms.common.contexts.AbstractContextManager;
|
||||||
|
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
@RequiredArgsConstructor
|
@RequiredArgsConstructor
|
||||||
public class BukkitContextManager extends ContextManager<Player> {
|
public class BukkitContextManager extends AbstractContextManager<Player> {
|
||||||
private final LPBukkitPlugin plugin;
|
private final LPBukkitPlugin plugin;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -31,12 +31,12 @@ import me.lucko.luckperms.api.Contexts;
|
|||||||
import me.lucko.luckperms.api.context.ImmutableContextSet;
|
import me.lucko.luckperms.api.context.ImmutableContextSet;
|
||||||
import me.lucko.luckperms.bungee.LPBungeePlugin;
|
import me.lucko.luckperms.bungee.LPBungeePlugin;
|
||||||
import me.lucko.luckperms.common.config.ConfigKeys;
|
import me.lucko.luckperms.common.config.ConfigKeys;
|
||||||
import me.lucko.luckperms.common.contexts.ContextManager;
|
import me.lucko.luckperms.common.contexts.AbstractContextManager;
|
||||||
|
|
||||||
import net.md_5.bungee.api.connection.ProxiedPlayer;
|
import net.md_5.bungee.api.connection.ProxiedPlayer;
|
||||||
|
|
||||||
@RequiredArgsConstructor
|
@RequiredArgsConstructor
|
||||||
public class BungeeContextManager extends ContextManager<ProxiedPlayer> {
|
public class BungeeContextManager extends AbstractContextManager<ProxiedPlayer> {
|
||||||
private final LPBungeePlugin plugin;
|
private final LPBungeePlugin plugin;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -0,0 +1,127 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of LuckPerms, licensed under the MIT License.
|
||||||
|
*
|
||||||
|
* Copyright (c) lucko (Luck) <luck@lucko.me>
|
||||||
|
* Copyright (c) contributors
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
* in the Software without restriction, including without limitation the rights
|
||||||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the Software is
|
||||||
|
* furnished to do so, subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included in all
|
||||||
|
* copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
* SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package me.lucko.luckperms.common.contexts;
|
||||||
|
|
||||||
|
import lombok.NonNull;
|
||||||
|
|
||||||
|
import com.github.benmanes.caffeine.cache.CacheLoader;
|
||||||
|
import com.github.benmanes.caffeine.cache.Caffeine;
|
||||||
|
import com.github.benmanes.caffeine.cache.LoadingCache;
|
||||||
|
|
||||||
|
import me.lucko.luckperms.api.Contexts;
|
||||||
|
import me.lucko.luckperms.api.context.ContextCalculator;
|
||||||
|
import me.lucko.luckperms.api.context.ImmutableContextSet;
|
||||||
|
import me.lucko.luckperms.api.context.MutableContextSet;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.concurrent.CopyOnWriteArrayList;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An abstract implementation of {@link ContextManager} which caches content lookups.
|
||||||
|
*
|
||||||
|
* @param <T> the calculator type
|
||||||
|
*/
|
||||||
|
public abstract class AbstractContextManager<T> implements ContextManager<T> {
|
||||||
|
|
||||||
|
private final List<ContextCalculator<T>> calculators = new CopyOnWriteArrayList<>();
|
||||||
|
private final List<ContextCalculator<?>> staticCalculators = new CopyOnWriteArrayList<>();
|
||||||
|
|
||||||
|
// caches context lookups
|
||||||
|
private final LoadingCache<T, Contexts> lookupCache = Caffeine.newBuilder()
|
||||||
|
.weakKeys()
|
||||||
|
.expireAfterWrite(50L, TimeUnit.MILLISECONDS) // expire roughly every tick
|
||||||
|
.build(new Loader());
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ImmutableContextSet getApplicableContext(@NonNull T subject) {
|
||||||
|
// this is actually already immutable, but the Contexts method signature returns the interface.
|
||||||
|
return getApplicableContexts(subject).getContexts().makeImmutable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Contexts getApplicableContexts(@NonNull T subject) {
|
||||||
|
return lookupCache.get(subject);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void registerCalculator(ContextCalculator<T> calculator) {
|
||||||
|
registerCalculator(calculator, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void registerCalculator(ContextCalculator<T> calculator, boolean isStatic) {
|
||||||
|
// calculators registered first should have priority (and be checked last.)
|
||||||
|
calculators.add(0, calculator);
|
||||||
|
|
||||||
|
if (isStatic) {
|
||||||
|
staticCalculators.add(0, calculator);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ImmutableContextSet getStaticContexts() {
|
||||||
|
MutableContextSet accumulator = MutableContextSet.create();
|
||||||
|
for (ContextCalculator<?> calculator : staticCalculators) {
|
||||||
|
calculator.giveApplicableContext(null, accumulator);
|
||||||
|
}
|
||||||
|
return accumulator.makeImmutable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void invalidateCache(@NonNull T subject){
|
||||||
|
lookupCache.invalidate(subject);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getCalculatorsSize() {
|
||||||
|
return calculators.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
// iterates the calculators in this manager and accumulates contexts from them all.
|
||||||
|
private void calculateApplicableContext(T subject, MutableContextSet accumulator) {
|
||||||
|
for (ContextCalculator<T> calculator : calculators) {
|
||||||
|
try {
|
||||||
|
calculator.giveApplicableContext(subject, accumulator);
|
||||||
|
} catch (Exception e) {
|
||||||
|
new RuntimeException("Exception thrown by ContextCalculator: " + calculator.getClass().getName(), e).printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private final class Loader implements CacheLoader<T, Contexts> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Contexts load(T subject) {
|
||||||
|
MutableContextSet accumulator = MutableContextSet.create();
|
||||||
|
calculateApplicableContext(subject, accumulator);
|
||||||
|
|
||||||
|
ImmutableContextSet ret = accumulator.makeImmutable();
|
||||||
|
return formContexts(subject, ret);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -27,17 +27,9 @@ package me.lucko.luckperms.common.contexts;
|
|||||||
|
|
||||||
import lombok.NonNull;
|
import lombok.NonNull;
|
||||||
|
|
||||||
import com.github.benmanes.caffeine.cache.Caffeine;
|
|
||||||
import com.github.benmanes.caffeine.cache.LoadingCache;
|
|
||||||
|
|
||||||
import me.lucko.luckperms.api.Contexts;
|
import me.lucko.luckperms.api.Contexts;
|
||||||
import me.lucko.luckperms.api.context.ContextCalculator;
|
import me.lucko.luckperms.api.context.ContextCalculator;
|
||||||
import me.lucko.luckperms.api.context.ImmutableContextSet;
|
import me.lucko.luckperms.api.context.ImmutableContextSet;
|
||||||
import me.lucko.luckperms.api.context.MutableContextSet;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.concurrent.CopyOnWriteArrayList;
|
|
||||||
import java.util.concurrent.TimeUnit;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Manages {@link ContextCalculator}s, and calculates applicable contexts for a
|
* Manages {@link ContextCalculator}s, and calculates applicable contexts for a
|
||||||
@ -45,23 +37,7 @@ import java.util.concurrent.TimeUnit;
|
|||||||
*
|
*
|
||||||
* @param <T> the calculator type
|
* @param <T> the calculator type
|
||||||
*/
|
*/
|
||||||
public abstract class ContextManager<T> {
|
public interface ContextManager<T> {
|
||||||
|
|
||||||
private final List<ContextCalculator<T>> calculators = new CopyOnWriteArrayList<>();
|
|
||||||
private final List<ContextCalculator<?>> staticCalculators = new CopyOnWriteArrayList<>();
|
|
||||||
|
|
||||||
// caches context lookups
|
|
||||||
private final LoadingCache<T, Contexts> lookupCache = Caffeine.newBuilder()
|
|
||||||
.weakKeys()
|
|
||||||
.expireAfterWrite(50L, TimeUnit.MILLISECONDS) // expire roughly every tick
|
|
||||||
.build(subject -> {
|
|
||||||
MutableContextSet accumulator = MutableContextSet.create();
|
|
||||||
calculateApplicableContext(subject, accumulator);
|
|
||||||
|
|
||||||
ImmutableContextSet ret = accumulator.makeImmutable();
|
|
||||||
return formContexts(subject, ret);
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Queries the ContextManager for current context values for the subject.
|
* Queries the ContextManager for current context values for the subject.
|
||||||
@ -69,10 +45,7 @@ public abstract class ContextManager<T> {
|
|||||||
* @param subject the subject
|
* @param subject the subject
|
||||||
* @return the applicable context for the subject
|
* @return the applicable context for the subject
|
||||||
*/
|
*/
|
||||||
public ImmutableContextSet getApplicableContext(@NonNull T subject) {
|
ImmutableContextSet getApplicableContext(@NonNull T subject);
|
||||||
// this is actually already immutable, but the Contexts method signature returns the interface.
|
|
||||||
return getApplicableContexts(subject).getContexts().makeImmutable();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Queries the ContextManager for current context values for the subject.
|
* Queries the ContextManager for current context values for the subject.
|
||||||
@ -80,9 +53,7 @@ public abstract class ContextManager<T> {
|
|||||||
* @param subject the subject
|
* @param subject the subject
|
||||||
* @return the applicable context for the subject
|
* @return the applicable context for the subject
|
||||||
*/
|
*/
|
||||||
public Contexts getApplicableContexts(@NonNull T subject) {
|
Contexts getApplicableContexts(@NonNull T subject);
|
||||||
return lookupCache.get(subject);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Forms a {@link Contexts} instance from an {@link ImmutableContextSet}.
|
* Forms a {@link Contexts} instance from an {@link ImmutableContextSet}.
|
||||||
@ -91,16 +62,14 @@ public abstract class ContextManager<T> {
|
|||||||
* @param contextSet the context set
|
* @param contextSet the context set
|
||||||
* @return a contexts instance
|
* @return a contexts instance
|
||||||
*/
|
*/
|
||||||
public abstract Contexts formContexts(T subject, ImmutableContextSet contextSet);
|
Contexts formContexts(T subject, ImmutableContextSet contextSet);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Registers a context calculator with the manager.
|
* Registers a context calculator with the manager.
|
||||||
*
|
*
|
||||||
* @param calculator the calculator
|
* @param calculator the calculator
|
||||||
*/
|
*/
|
||||||
public void registerCalculator(ContextCalculator<T> calculator) {
|
void registerCalculator(ContextCalculator<T> calculator);
|
||||||
registerCalculator(calculator, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Registers a context calculator with the manager.
|
* Registers a context calculator with the manager.
|
||||||
@ -108,56 +77,27 @@ public abstract class ContextManager<T> {
|
|||||||
* @param calculator the calculator
|
* @param calculator the calculator
|
||||||
* @param isStatic if the calculator is static. (if it allows a null subject parameter)
|
* @param isStatic if the calculator is static. (if it allows a null subject parameter)
|
||||||
*/
|
*/
|
||||||
public void registerCalculator(ContextCalculator<T> calculator, boolean isStatic) {
|
void registerCalculator(ContextCalculator<T> calculator, boolean isStatic);
|
||||||
// calculators registered first should have priority (and be checked last.)
|
|
||||||
calculators.add(0, calculator);
|
|
||||||
|
|
||||||
if (isStatic) {
|
|
||||||
staticCalculators.add(0, calculator);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the contexts from the static calculators in this manager.
|
* Gets the contexts from the static calculators in this manager.
|
||||||
*
|
*
|
||||||
* @return the current active static contexts
|
* @return the current active static contexts
|
||||||
*/
|
*/
|
||||||
public ImmutableContextSet getStaticContexts() {
|
ImmutableContextSet getStaticContexts();
|
||||||
MutableContextSet accumulator = MutableContextSet.create();
|
|
||||||
for (ContextCalculator<?> calculator : staticCalculators) {
|
|
||||||
calculator.giveApplicableContext(null, accumulator);
|
|
||||||
}
|
|
||||||
return accumulator.makeImmutable();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Invalidates the lookup cache for a given subject
|
* Invalidates the lookup cache for a given subject
|
||||||
*
|
*
|
||||||
* @param subject the subject
|
* @param subject the subject
|
||||||
*/
|
*/
|
||||||
public void invalidateCache(@NonNull T subject){
|
void invalidateCache(@NonNull T subject);
|
||||||
lookupCache.invalidate(subject);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the number of calculators registered with the manager.
|
* Gets the number of calculators registered with the manager.
|
||||||
*
|
*
|
||||||
* @return the number of calculators registered
|
* @return the number of calculators registered
|
||||||
*/
|
*/
|
||||||
public int getCalculatorsSize() {
|
int getCalculatorsSize();
|
||||||
return calculators.size();
|
|
||||||
}
|
|
||||||
|
|
||||||
// iterates the calculators in this manager and accumulates contexts from them all.
|
|
||||||
private void calculateApplicableContext(T subject, MutableContextSet accumulator) {
|
|
||||||
for (ContextCalculator<T> calculator : calculators) {
|
|
||||||
try {
|
|
||||||
calculator.giveApplicableContext(subject, accumulator);
|
|
||||||
} catch (Exception e) {
|
|
||||||
new RuntimeException("Exception thrown by ContextCalculator: " + calculator.getClass().getName(), e).printStackTrace();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -30,13 +30,13 @@ import lombok.RequiredArgsConstructor;
|
|||||||
import me.lucko.luckperms.api.Contexts;
|
import me.lucko.luckperms.api.Contexts;
|
||||||
import me.lucko.luckperms.api.context.ImmutableContextSet;
|
import me.lucko.luckperms.api.context.ImmutableContextSet;
|
||||||
import me.lucko.luckperms.common.config.ConfigKeys;
|
import me.lucko.luckperms.common.config.ConfigKeys;
|
||||||
import me.lucko.luckperms.common.contexts.ContextManager;
|
import me.lucko.luckperms.common.contexts.AbstractContextManager;
|
||||||
import me.lucko.luckperms.sponge.LPSpongePlugin;
|
import me.lucko.luckperms.sponge.LPSpongePlugin;
|
||||||
|
|
||||||
import org.spongepowered.api.service.permission.Subject;
|
import org.spongepowered.api.service.permission.Subject;
|
||||||
|
|
||||||
@RequiredArgsConstructor
|
@RequiredArgsConstructor
|
||||||
public class SpongeContextManager extends ContextManager<Subject> {
|
public class SpongeContextManager extends AbstractContextManager<Subject> {
|
||||||
private final LPSpongePlugin plugin;
|
private final LPSpongePlugin plugin;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user