UltimateStacker/src/main/java/com/songoda/ultimatestacker/database/DataManager.java

146 lines
5.3 KiB
Java
Raw Normal View History

2019-08-02 15:59:10 +02:00
package com.songoda.ultimatestacker.database;
import com.songoda.ultimatestacker.spawner.SpawnerStack;
import org.bukkit.Bukkit;
import org.bukkit.Location;
import org.bukkit.plugin.Plugin;
import java.sql.*;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.function.Consumer;
public class DataManager {
private final DatabaseConnector databaseConnector;
private final Plugin plugin;
public DataManager(DatabaseConnector databaseConnector, Plugin plugin) {
this.databaseConnector = databaseConnector;
this.plugin = plugin;
}
/**
* @return the prefix to be used by all table names
*/
public String getTablePrefix() {
return this.plugin.getDescription().getName().toLowerCase() + '_';
}
public void bulkUpdateSpawners(Collection<SpawnerStack> spawnerStacks) {
this.databaseConnector.connect(connection -> {
2019-08-03 06:23:36 +02:00
String updateSpawner = "UPDATE " + this.getTablePrefix() + "spawners SET amount = ? WHERE id = ?";
2019-08-02 15:59:10 +02:00
try (PreparedStatement statement = connection.prepareStatement(updateSpawner)) {
for (SpawnerStack spawnerStack : spawnerStacks) {
statement.setInt(1, spawnerStack.getAmount());
2019-08-03 06:23:36 +02:00
statement.setInt(2, spawnerStack.getId());
2019-08-02 15:59:10 +02:00
statement.executeUpdate();
statement.addBatch();
}
statement.executeBatch();
}
});
}
public void updateSpawner(SpawnerStack spawnerStack) {
this.async(() -> this.databaseConnector.connect(connection -> {
2019-08-02 20:51:15 +02:00
String updateSpawner = "UPDATE " + this.getTablePrefix() + "spawners SET amount = ? WHERE id = ?";
2019-08-02 15:59:10 +02:00
try (PreparedStatement statement = connection.prepareStatement(updateSpawner)) {
statement.setInt(1, spawnerStack.getAmount());
2019-08-02 20:51:15 +02:00
statement.setInt(2, spawnerStack.getId());
2019-08-02 15:59:10 +02:00
statement.executeUpdate();
}
}));
}
public void createSpawner(SpawnerStack spawnerStack) {
this.async(() -> this.databaseConnector.connect(connection -> {
2019-08-02 20:51:15 +02:00
String createSpawner = "INSERT INTO " + this.getTablePrefix() + "spawners (amount, world, x, y, z) VALUES (?, ?, ?, ?, ?)";
2019-08-02 15:59:10 +02:00
try (PreparedStatement statement = connection.prepareStatement(createSpawner)) {
statement.setInt(1, spawnerStack.getAmount());
statement.setString(2, spawnerStack.getWorld().getName());
statement.setInt(3, spawnerStack.getX());
statement.setInt(4, spawnerStack.getY());
statement.setInt(5, spawnerStack.getZ());
statement.executeUpdate();
}
2019-08-02 20:51:15 +02:00
int spawnerId = this.lastInsertedId(connection);
this.sync(() -> spawnerStack.setId(spawnerId));
2019-08-02 15:59:10 +02:00
}));
}
public void deleteSpawner(SpawnerStack spawnerStack) {
this.async(() -> this.databaseConnector.connect(connection -> {
2019-08-02 20:51:15 +02:00
String deleteSpawner = "DELETE FROM " + this.getTablePrefix() + "spawners WHERE id = ?";
2019-08-02 15:59:10 +02:00
try (PreparedStatement statement = connection.prepareStatement(deleteSpawner)) {
2019-08-02 20:51:15 +02:00
statement.setInt(1, spawnerStack.getId());
2019-08-02 15:59:10 +02:00
statement.executeUpdate();
}
}));
}
public void getSpawners(Consumer<Map<Location, SpawnerStack>> callback) {
this.async(() -> this.databaseConnector.connect(connection -> {
String selectSpawners = "SELECT * FROM " + this.getTablePrefix() + "spawners";
Map<Location, SpawnerStack> spawners = new HashMap<>();
try (Statement statement = connection.createStatement()) {
ResultSet result = statement.executeQuery(selectSpawners);
while (result.next()) {
2019-08-02 20:51:15 +02:00
int spawnerId = result.getInt("id");
2019-08-02 15:59:10 +02:00
int amount = result.getInt("amount");
String world = result.getString("world");
int x = result.getInt("x");
int y = result.getInt("y");
int z = result.getInt("z");
Location location = new Location(Bukkit.getWorld(world), x, y, z);
SpawnerStack spawnerStack = new SpawnerStack(location, amount);
2019-08-02 20:51:15 +02:00
spawnerStack.setId(spawnerId);
2019-08-02 15:59:10 +02:00
spawners.put(location, spawnerStack);
}
2019-08-09 02:52:41 +02:00
} catch (Exception e) {
e.printStackTrace();
2019-08-02 15:59:10 +02:00
}
this.sync(() -> callback.accept(spawners));
}));
}
private int lastInsertedId(Connection connection) {
String query;
if (this.databaseConnector instanceof SQLiteConnector) {
query = "SELECT last_insert_rowid()";
} else {
query = "SELECT LAST_INSERT_ID()";
}
try (Statement statement = connection.createStatement()) {
ResultSet result = statement.executeQuery(query);
result.next();
return result.getInt(1);
} catch (SQLException e) {
e.printStackTrace();
return -1;
}
}
public void async(Runnable runnable) {
Bukkit.getScheduler().runTaskAsynchronously(this.plugin, runnable);
}
public void sync(Runnable runnable) {
Bukkit.getScheduler().runTask(this.plugin, runnable);
}
}