mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-12-26 02:57:52 +01:00
Batch Insert for NicknamesTable
This commit is contained in:
parent
62f762cf7b
commit
f31c597300
@ -127,6 +127,7 @@ public class KillsTable extends UserIDTable {
|
|||||||
" JOIN " + usersTable + " on " + usersIDColumn + "=" + columnVictimUserID +
|
" JOIN " + usersTable + " on " + usersIDColumn + "=" + columnVictimUserID +
|
||||||
" WHERE " + columnKillerUserID + "=" + usersTable.statementSelectID);
|
" WHERE " + columnKillerUserID + "=" + usersTable.statementSelectID);
|
||||||
|
|
||||||
|
statement.setFetchSize(10000);
|
||||||
statement.setString(1, uuid.toString());
|
statement.setString(1, uuid.toString());
|
||||||
|
|
||||||
set = statement.executeQuery();
|
set = statement.executeQuery();
|
||||||
|
@ -9,9 +9,7 @@ import main.java.com.djrapitops.plan.database.sql.TableSqlParser;
|
|||||||
import java.sql.PreparedStatement;
|
import java.sql.PreparedStatement;
|
||||||
import java.sql.ResultSet;
|
import java.sql.ResultSet;
|
||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
import java.util.ArrayList;
|
import java.util.*;
|
||||||
import java.util.List;
|
|
||||||
import java.util.UUID;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Rsl1122
|
* @author Rsl1122
|
||||||
@ -22,6 +20,7 @@ public class NicknamesTable extends UserIDTable {
|
|||||||
private final String columnServerID = "server_id";
|
private final String columnServerID = "server_id";
|
||||||
|
|
||||||
private final ServerTable serverTable;
|
private final ServerTable serverTable;
|
||||||
|
private String insertStatement;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param db The database
|
* @param db The database
|
||||||
@ -30,6 +29,14 @@ public class NicknamesTable extends UserIDTable {
|
|||||||
public NicknamesTable(SQLDB db, boolean usingMySQL) {
|
public NicknamesTable(SQLDB db, boolean usingMySQL) {
|
||||||
super("plan_nicknames", db, usingMySQL);
|
super("plan_nicknames", db, usingMySQL);
|
||||||
serverTable = db.getServerTable();
|
serverTable = db.getServerTable();
|
||||||
|
insertStatement = "INSERT INTO " + tableName + " (" +
|
||||||
|
columnUserID + ", " +
|
||||||
|
columnServerID + ", " +
|
||||||
|
columnNick +
|
||||||
|
") VALUES (" +
|
||||||
|
usersTable.statementSelectID + ", " +
|
||||||
|
serverTable.statementSelectServerID + ", " +
|
||||||
|
"?)";
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -142,14 +149,7 @@ public class NicknamesTable extends UserIDTable {
|
|||||||
|
|
||||||
PreparedStatement statement = null;
|
PreparedStatement statement = null;
|
||||||
try {
|
try {
|
||||||
statement = prepareStatement("INSERT INTO " + tableName + " (" +
|
statement = prepareStatement(insertStatement);
|
||||||
columnUserID + ", " +
|
|
||||||
columnServerID + ", " +
|
|
||||||
columnNick +
|
|
||||||
") VALUES (" +
|
|
||||||
usersTable.statementSelectID + ", " +
|
|
||||||
serverTable.statementSelectServerID + ", " +
|
|
||||||
"?)");
|
|
||||||
statement.setString(1, uuid.toString());
|
statement.setString(1, uuid.toString());
|
||||||
statement.setString(2, Plan.getServerUUID().toString());
|
statement.setString(2, Plan.getServerUUID().toString());
|
||||||
statement.setString(3, displayName);
|
statement.setString(3, displayName);
|
||||||
@ -160,4 +160,73 @@ public class NicknamesTable extends UserIDTable {
|
|||||||
close(statement);
|
close(statement);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Map<UUID, Map<UUID, List<String>>> getAllNicknames() throws SQLException {
|
||||||
|
PreparedStatement statement = null;
|
||||||
|
ResultSet set = null;
|
||||||
|
try {
|
||||||
|
String usersIDColumn = usersTable + "." + usersTable.getColumnID();
|
||||||
|
String usersUUIDColumn = usersTable + "." + usersTable.getColumnUUID() + " as uuid";
|
||||||
|
String serverIDColumn = serverTable + "." + serverTable.getColumnID();
|
||||||
|
String serverUUIDColumn = serverTable + "." + serverTable.getColumnUUID() + " as s_uuid";
|
||||||
|
statement = prepareStatement("SELECT " +
|
||||||
|
columnNick + ", " +
|
||||||
|
usersUUIDColumn + ", " +
|
||||||
|
serverUUIDColumn +
|
||||||
|
" FROM " + tableName +
|
||||||
|
" JOIN " + usersTable + " on " + usersIDColumn + "=" + columnUserID +
|
||||||
|
" JOIN " + serverTable + " on " + serverIDColumn + "=" + columnServerID
|
||||||
|
);
|
||||||
|
statement.setFetchSize(5000);
|
||||||
|
set = statement.executeQuery();
|
||||||
|
Map<UUID, Map<UUID, List<String>>> map = new HashMap<>();
|
||||||
|
while (set.next()) {
|
||||||
|
UUID serverUUID = UUID.fromString(set.getString("s_uuid"));
|
||||||
|
UUID uuid = UUID.fromString(set.getString("uuid"));
|
||||||
|
|
||||||
|
Map<UUID, List<String>> serverMap = map.getOrDefault(serverUUID, new HashMap<>());
|
||||||
|
List<String> nicknames = serverMap.getOrDefault(uuid, new ArrayList<>());
|
||||||
|
|
||||||
|
nicknames.add(set.getString(columnNick));
|
||||||
|
|
||||||
|
serverMap.put(uuid, nicknames);
|
||||||
|
map.put(serverUUID, serverMap);
|
||||||
|
}
|
||||||
|
return map;
|
||||||
|
} finally {
|
||||||
|
endTransaction(statement);
|
||||||
|
close(set, statement);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void insertNicknames(Map<UUID, Map<UUID, List<String>>> allNicknames) throws SQLException {
|
||||||
|
if (allNicknames.isEmpty()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
PreparedStatement statement = null;
|
||||||
|
try {
|
||||||
|
statement = prepareStatement(insertStatement);
|
||||||
|
|
||||||
|
// Every Server
|
||||||
|
for (UUID serverUUID : allNicknames.keySet()) {
|
||||||
|
// Every User
|
||||||
|
for (Map.Entry<UUID, List<String>> entry : allNicknames.get(serverUUID).entrySet()) {
|
||||||
|
UUID uuid = entry.getKey();
|
||||||
|
// Every Nickname
|
||||||
|
List<String> nicknames = entry.getValue();
|
||||||
|
for (String nickname : nicknames) {
|
||||||
|
statement.setString(1, uuid.toString());
|
||||||
|
statement.setString(2, serverUUID.toString());
|
||||||
|
statement.setString(3, nickname);
|
||||||
|
statement.addBatch();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
statement.executeBatch();
|
||||||
|
commit(statement.getConnection());
|
||||||
|
} finally {
|
||||||
|
close(statement);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -10,6 +10,8 @@ import main.java.com.djrapitops.plan.database.databases.SQLDB;
|
|||||||
import main.java.com.djrapitops.plan.database.tables.Table;
|
import main.java.com.djrapitops.plan.database.tables.Table;
|
||||||
|
|
||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A Fake table used to store a lot of big table operations.
|
* A Fake table used to store a lot of big table operations.
|
||||||
@ -19,6 +21,10 @@ import java.sql.SQLException;
|
|||||||
* {@code fromT = new BatchOperationTable(from);}
|
* {@code fromT = new BatchOperationTable(from);}
|
||||||
* {@code toT = new BatchOperationTable(to);}
|
* {@code toT = new BatchOperationTable(to);}
|
||||||
* {@code fromT.copy(toT);}
|
* {@code fromT.copy(toT);}
|
||||||
|
* <p>
|
||||||
|
* The copy methods assume that the table has been cleared, or that no duplicate data will be entered for a user.
|
||||||
|
* <p>
|
||||||
|
* clearTable methods can be used to clear the table beforehand.
|
||||||
*
|
*
|
||||||
* @author Rsl1122
|
* @author Rsl1122
|
||||||
* @since 4.0.0
|
* @since 4.0.0
|
||||||
@ -37,6 +43,10 @@ public class BatchOperationTable extends Table {
|
|||||||
table.removeAllData();
|
table.removeAllData();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void clearTable(Collection<UUID> uuids, Table table) {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
public void copyActions(BatchOperationTable toDB) throws SQLException {
|
public void copyActions(BatchOperationTable toDB) throws SQLException {
|
||||||
toDB.db.getActionsTable().insertActions(db.getActionsTable().getAllActions());
|
toDB.db.getActionsTable().insertActions(db.getActionsTable().getAllActions());
|
||||||
}
|
}
|
||||||
@ -48,4 +58,8 @@ public class BatchOperationTable extends Table {
|
|||||||
public void copyIPsAndGeolocs(BatchOperationTable toDB) throws SQLException {
|
public void copyIPsAndGeolocs(BatchOperationTable toDB) throws SQLException {
|
||||||
toDB.db.getIpsTable().insertIPsAndGeolocations(db.getIpsTable().getAllIPsAndGeolocations());
|
toDB.db.getIpsTable().insertIPsAndGeolocations(db.getIpsTable().getAllIPsAndGeolocations());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void copyNicknames(BatchOperationTable toDB) throws SQLException {
|
||||||
|
toDB.db.getNicknamesTable().insertNicknames(db.getNicknamesTable().getAllNicknames());
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user