mirror of
https://github.com/NoCheatPlus/NoCheatPlus.git
synced 2024-11-06 18:50:54 +01:00
Alter synchronization for TickTask queues.
This commit is contained in:
parent
5fc17e0c11
commit
9ed8a150bc
@ -1,7 +1,6 @@
|
||||
package fr.neatmonster.nocheatplus.utilities;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.HashSet;
|
||||
import java.util.LinkedHashSet;
|
||||
import java.util.LinkedList;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
@ -47,10 +46,10 @@ public class TickTask implements Runnable {
|
||||
}
|
||||
|
||||
/** Permissions to update: player name -> check type. */
|
||||
private static final Set<PermissionUpdateEntry> permissionUpdates = Collections.synchronizedSet(new HashSet<PermissionUpdateEntry>(50));
|
||||
private static final Set<PermissionUpdateEntry> permissionUpdates = new LinkedHashSet<PermissionUpdateEntry>(50);
|
||||
|
||||
/** Actions to execute. */
|
||||
public static final List<ViolationData> delayedActions = Collections.synchronizedList(new LinkedList<ViolationData>());
|
||||
public static final List<ViolationData> delayedActions = new LinkedList<ViolationData>();
|
||||
|
||||
/** Task id of the running TickTask */
|
||||
protected static int taskId = -1;
|
||||
@ -76,6 +75,7 @@ public class TickTask implements Runnable {
|
||||
public void executeActions() {
|
||||
final List<ViolationData> copyActions = new LinkedList<ViolationData>();
|
||||
synchronized (delayedActions) {
|
||||
if (delayedActions.isEmpty()) return;
|
||||
copyActions.addAll(delayedActions);
|
||||
delayedActions.clear();
|
||||
}
|
||||
@ -91,6 +91,7 @@ public class TickTask implements Runnable {
|
||||
public static void updatePermissions() {
|
||||
final List<PermissionUpdateEntry> copyPermissions = new LinkedList<PermissionUpdateEntry>();
|
||||
synchronized (permissionUpdates) {
|
||||
if (permissionUpdates.isEmpty()) return;
|
||||
copyPermissions.addAll(permissionUpdates);
|
||||
permissionUpdates.clear();
|
||||
}
|
||||
@ -118,9 +119,11 @@ public class TickTask implements Runnable {
|
||||
* @param checkType
|
||||
*/
|
||||
public static void requestPermissionUpdate(final String playerName, final CheckType checkType){
|
||||
synchronized(permissionUpdates){
|
||||
if (locked) return;
|
||||
permissionUpdates.add(new PermissionUpdateEntry(playerName, checkType));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Request actions execution.<br>
|
||||
@ -128,9 +131,11 @@ public class TickTask implements Runnable {
|
||||
* @param actions
|
||||
*/
|
||||
public static void requestActionsExecution(final ViolationData actions) {
|
||||
synchronized (delayedActions) {
|
||||
if (locked) return;
|
||||
delayedActions.add(actions);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the tasks tick count. It is increased with every server tick.<br>
|
||||
@ -183,7 +188,8 @@ public class TickTask implements Runnable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Control if new elements can be added to request queues.
|
||||
* Control if new elements can be added to request queues.<br>
|
||||
* NOTE: This is just a flag, no sync is done here.
|
||||
* @param locked
|
||||
*/
|
||||
public static void setLocked(boolean locked){
|
||||
@ -194,9 +200,13 @@ public class TickTask implements Runnable {
|
||||
* Empty queues (call after setLocked(true)
|
||||
*/
|
||||
public static void purge(){
|
||||
synchronized (permissionUpdates) {
|
||||
permissionUpdates.clear();
|
||||
}
|
||||
synchronized (delayedActions) {
|
||||
delayedActions.clear();
|
||||
}
|
||||
}
|
||||
|
||||
//////////////////////////
|
||||
// Instance methods
|
||||
@ -207,8 +217,8 @@ public class TickTask implements Runnable {
|
||||
tick ++;
|
||||
final long time = System.currentTimeMillis();
|
||||
// The isEmpty checks are faster than synchronizing fully always, the actions get delayed one tick at most.
|
||||
if (!delayedActions.isEmpty()) executeActions();
|
||||
if (!permissionUpdates.isEmpty()) updatePermissions();
|
||||
executeActions();
|
||||
updatePermissions();
|
||||
if (timeLast > time) {
|
||||
LogUtil.logSevere("[NoCheatPlus] System time ran backwards (" + timeLast + "->" + time + "), clear all data and history...");
|
||||
DataManager.clearData(CheckType.ALL);
|
||||
|
Loading…
Reference in New Issue
Block a user