mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-24 14:16:45 +01:00
74 lines
2.3 KiB
Java
74 lines
2.3 KiB
Java
|
package com.gmail.nossr50.runnables.database;
|
||
|
|
||
|
import java.util.HashMap;
|
||
|
import java.util.List;
|
||
|
import java.util.Map;
|
||
|
import java.util.UUID;
|
||
|
|
||
|
import org.bukkit.scheduler.BukkitRunnable;
|
||
|
|
||
|
import com.gmail.nossr50.mcMMO;
|
||
|
import com.gmail.nossr50.config.HiddenConfig;
|
||
|
import com.gmail.nossr50.database.DatabaseManager;
|
||
|
import com.gmail.nossr50.datatypes.database.UpgradeType;
|
||
|
import com.gmail.nossr50.util.Misc;
|
||
|
import com.gmail.nossr50.util.uuid.UUIDFetcher;
|
||
|
|
||
|
public class UUIDUpdateAsyncTask extends BukkitRunnable {
|
||
|
private mcMMO plugin;
|
||
|
private static final int MAX_LOOKUP = Math.max(HiddenConfig.getInstance().getUUIDConvertAmount(), 100);
|
||
|
|
||
|
private List<String> userNames;
|
||
|
private int size;
|
||
|
private int checkedUsers;
|
||
|
private long startMillis;
|
||
|
|
||
|
public UUIDUpdateAsyncTask(mcMMO plugin, List<String> userNames) {
|
||
|
this.plugin = plugin;
|
||
|
this.userNames = userNames;
|
||
|
|
||
|
this.checkedUsers = 0;
|
||
|
this.startMillis = System.currentTimeMillis();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void run() {
|
||
|
size = userNames.size();
|
||
|
|
||
|
plugin.getLogger().info("Starting to check and update UUIDs, total amount of users: " + size);
|
||
|
|
||
|
List<String> userNamesSection;
|
||
|
Map<String, UUID> fetchedUUIDs = new HashMap<String, UUID>();
|
||
|
|
||
|
while (size != 0) {
|
||
|
if (size > MAX_LOOKUP) {
|
||
|
userNamesSection = userNames.subList(size - MAX_LOOKUP, size);
|
||
|
size -= MAX_LOOKUP;
|
||
|
}
|
||
|
else {
|
||
|
userNamesSection = userNames.subList(0, size);
|
||
|
size = 0;
|
||
|
}
|
||
|
|
||
|
try {
|
||
|
fetchedUUIDs.putAll(new UUIDFetcher(userNamesSection).call());
|
||
|
}
|
||
|
catch (Exception e) {
|
||
|
plugin.getLogger().severe("Unable to fetch UUIDs!");
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
checkedUsers += userNamesSection.size();
|
||
|
userNamesSection.clear();
|
||
|
size = userNames.size();
|
||
|
|
||
|
Misc.printProgress(checkedUsers, DatabaseManager.progressInterval, startMillis);
|
||
|
}
|
||
|
|
||
|
if (mcMMO.getDatabaseManager().saveUserUUIDs(fetchedUUIDs)) {
|
||
|
mcMMO.getUpgradeManager().setUpgradeCompleted(UpgradeType.ADD_UUIDS);
|
||
|
plugin.getLogger().info("UUID upgrade completed!");
|
||
|
}
|
||
|
}
|
||
|
}
|