mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-28 13:45:20 +01:00
Revert: Use faster wildcard parsing method
This commit is contained in:
parent
4874f9d051
commit
384fbf5464
@ -26,32 +26,27 @@ import me.lucko.luckperms.api.Tristate;
|
|||||||
import me.lucko.luckperms.common.calculators.PermissionProcessor;
|
import me.lucko.luckperms.common.calculators.PermissionProcessor;
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.regex.Pattern;
|
|
||||||
|
|
||||||
public class WildcardProcessor implements PermissionProcessor {
|
public class WildcardProcessor implements PermissionProcessor {
|
||||||
private static final Pattern SPLIT = Pattern.compile("\\.");
|
|
||||||
private Map<String, Boolean> map = null;
|
private Map<String, Boolean> map = null;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Tristate hasPermission(String s) {
|
public Tristate hasPermission(String permission) {
|
||||||
if (s.startsWith(".") || !s.contains(".")) {
|
String node = permission;
|
||||||
throw new IllegalArgumentException();
|
|
||||||
}
|
|
||||||
|
|
||||||
String[] parts = SPLIT.split(s);
|
while (true) {
|
||||||
StringBuilder sb = new StringBuilder();
|
int endIndex = node.lastIndexOf('.');
|
||||||
|
if (endIndex == -1) {
|
||||||
for (int i = parts.length - 2; i >= 0; i--) {
|
break;
|
||||||
for (int i1 = 0; i1 <= i; i1++) {
|
|
||||||
sb.append(parts[i1]).append(".");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Boolean b = map.get(sb.append("*").toString());
|
node = node.substring(0, endIndex);
|
||||||
if (b != null) {
|
if (!node.isEmpty()) {
|
||||||
return Tristate.fromBoolean(b);
|
Boolean b = map.get(node + ".*");
|
||||||
|
if (b != null) {
|
||||||
|
return Tristate.fromBoolean(b);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
sb.setLength(0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Boolean b = map.get("'*'");
|
Boolean b = map.get("'*'");
|
||||||
|
@ -26,32 +26,27 @@ import me.lucko.luckperms.api.Tristate;
|
|||||||
import me.lucko.luckperms.common.calculators.PermissionProcessor;
|
import me.lucko.luckperms.common.calculators.PermissionProcessor;
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.regex.Pattern;
|
|
||||||
|
|
||||||
public class SpongeWildcardProcessor implements PermissionProcessor {
|
public class SpongeWildcardProcessor implements PermissionProcessor {
|
||||||
private static final Pattern SPLIT = Pattern.compile("\\.");
|
|
||||||
private Map<String, Boolean> map = null;
|
private Map<String, Boolean> map = null;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Tristate hasPermission(String s) {
|
public Tristate hasPermission(String permission) {
|
||||||
if (s.startsWith(".") || !s.contains(".")) {
|
String node = permission;
|
||||||
throw new IllegalArgumentException();
|
|
||||||
}
|
|
||||||
|
|
||||||
String[] parts = SPLIT.split(s);
|
while (true) {
|
||||||
StringBuilder sb = new StringBuilder();
|
int endIndex = node.lastIndexOf('.');
|
||||||
|
if (endIndex == -1) {
|
||||||
for (int i = parts.length - 2; i >= 0; i--) {
|
break;
|
||||||
for (int i1 = 0; i1 <= i; i1++) {
|
|
||||||
sb.append(parts[i1]).append(".");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Boolean b = map.get(sb.deleteCharAt(sb.length() - 1).toString());
|
node = node.substring(0, endIndex);
|
||||||
if (b != null) {
|
if (!node.isEmpty()) {
|
||||||
return Tristate.fromBoolean(b);
|
Boolean b = map.get(node);
|
||||||
|
if (b != null) {
|
||||||
|
return Tristate.fromBoolean(b);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
sb.setLength(0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return Tristate.UNDEFINED;
|
return Tristate.UNDEFINED;
|
||||||
|
Loading…
Reference in New Issue
Block a user