RedisBungee/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungee.java

564 lines
24 KiB
Java
Raw Normal View History

2013-09-29 20:16:47 +00:00
/**
* Copyright © 2013 tuxed <write@imaginarycode.com>
* This work is free. You can redistribute it and/or modify it under the
* terms of the Do What The Fuck You Want To Public License, Version 2,
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details.
*/
package com.imaginarycode.minecraft.redisbungee;
import com.google.common.base.Functions;
import com.google.common.collect.*;
import com.google.common.io.ByteStreams;
2014-03-31 14:23:10 +00:00
import com.google.common.util.concurrent.ThreadFactoryBuilder;
import com.google.gson.Gson;
import com.imaginarycode.minecraft.redisbungee.events.PubSubMessageEvent;
import com.imaginarycode.minecraft.redisbungee.util.UUIDTranslator;
2014-04-19 20:08:49 +00:00
import lombok.Getter;
import lombok.NonNull;
2013-09-29 20:16:47 +00:00
import net.md_5.bungee.api.config.ServerInfo;
import net.md_5.bungee.api.connection.ProxiedPlayer;
import net.md_5.bungee.api.plugin.Plugin;
import net.md_5.bungee.config.Configuration;
import net.md_5.bungee.config.ConfigurationProvider;
import net.md_5.bungee.config.YamlConfiguration;
import redis.clients.jedis.*;
import redis.clients.jedis.exceptions.JedisConnectionException;
import redis.clients.jedis.exceptions.JedisException;
2013-09-29 20:16:47 +00:00
import java.io.*;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.*;
2014-03-31 14:23:10 +00:00
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
2013-09-29 20:16:47 +00:00
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.logging.Level;
2013-09-29 20:16:47 +00:00
2014-02-21 23:49:26 +00:00
import static com.google.common.base.Preconditions.checkArgument;
/**
* The RedisBungee plugin.
* <p>
* The only function of interest is {@link #getApi()}, which exposes some functions in this class.
*/
2014-04-19 20:08:49 +00:00
public final class RedisBungee extends Plugin {
private static Configuration configuration;
2014-04-19 20:08:49 +00:00
@Getter
private JedisPool pool;
@Getter
private RedisBungeeConsumer consumer;
@Getter
private UUIDTranslator uuidTranslator;
@Getter
private static Gson gson = new Gson();
@Getter
private String serverId;
private static RedisBungeeAPI api;
private static PubSubListener psl = null;
2014-04-19 19:54:30 +00:00
private List<String> serverIds;
private AtomicInteger nagAboutServers = new AtomicInteger();
private int globalCount;
2013-10-13 19:44:20 +00:00
/**
* Fetch the {@link RedisBungeeAPI} object created on plugin start.
2013-10-13 19:44:20 +00:00
*
* @return the {@link RedisBungeeAPI} object
2013-10-13 19:44:20 +00:00
*/
public static RedisBungeeAPI getApi() {
return api;
}
static Configuration getConfiguration() {
2013-11-15 22:55:57 +00:00
return configuration;
}
2014-04-04 03:03:27 +00:00
final List<String> getServerIds() {
2014-04-19 19:54:30 +00:00
return serverIds;
}
final List<String> getCurrentServerIds() {
2014-04-04 03:03:27 +00:00
Jedis jedis = pool.getResource();
try {
int nag = nagAboutServers.decrementAndGet();
if (nag <= 0) {
nagAboutServers.set(10);
}
2014-04-19 19:52:15 +00:00
ImmutableList.Builder<String> servers = ImmutableList.builder();
Map<String, String> heartbeats = jedis.hgetAll("heartbeats");
for (Map.Entry<String, String> entry : heartbeats.entrySet()) {
try {
long stamp = Long.valueOf(entry.getValue());
if (System.currentTimeMillis() < stamp + 30000)
2014-04-19 19:52:15 +00:00
servers.add(entry.getKey());
2014-06-06 21:38:41 +00:00
else if (nag <= 0) {
getLogger().severe(entry.getKey() + " is " + (System.currentTimeMillis() - stamp) + "ms behind! (Time not synchronized or server down?)");
}
2014-04-19 19:52:15 +00:00
} catch (NumberFormatException ignored) {
}
}
return servers.build();
2014-04-04 03:03:27 +00:00
} catch (JedisConnectionException e) {
getLogger().log(Level.SEVERE, "Unable to fetch all server IDs", e);
2014-05-22 21:49:00 +00:00
pool.returnBrokenResource(jedis);
return Collections.singletonList(serverId);
2014-04-04 03:03:27 +00:00
} finally {
pool.returnResource(jedis);
}
2014-01-26 00:06:33 +00:00
}
static PubSubListener getPubSubListener() {
return psl;
}
final Multimap<String, UUID> serversToPlayers() {
ImmutableMultimap.Builder<String, UUID> multimapBuilder = ImmutableMultimap.builder();
for (UUID p : getPlayers()) {
ServerInfo si = getServerFor(p);
2013-12-27 20:40:58 +00:00
if (si != null)
2014-01-26 00:06:33 +00:00
multimapBuilder = multimapBuilder.put(si.getName(), p);
2013-12-27 20:40:58 +00:00
}
2014-01-26 00:06:33 +00:00
return multimapBuilder.build();
2013-12-27 20:40:58 +00:00
}
final int getCount() {
return globalCount;
}
final int getCurrentCount() {
2014-01-09 21:15:15 +00:00
int c = getProxy().getOnlineCount();
if (pool != null) {
Jedis rsc = pool.getResource();
try {
List<String> serverIds = getServerIds();
Map<String, String> counts = rsc.hgetAll("playerCounts");
for (Map.Entry<String, String> entry : counts.entrySet()) {
if (!serverIds.contains(entry.getKey()))
continue;
if (entry.getKey().equals(serverId)) continue;
try {
c += Integer.valueOf(entry.getValue());
} catch (NumberFormatException e) {
rsc.hset("playerCounts", entry.getKey(), "0");
}
}
} catch (JedisConnectionException e) {
// Redis server has disappeared!
getLogger().log(Level.SEVERE, "Unable to get connection from pool - did your Redis server go away?", e);
pool.returnBrokenResource(rsc);
throw new RuntimeException("Unable to get total player count", e);
} finally {
pool.returnResource(rsc);
}
}
return c;
}
final Set<UUID> getLocalPlayers() {
ImmutableSet.Builder<UUID> setBuilder = ImmutableSet.builder();
for (ProxiedPlayer pp : getProxy().getPlayers())
setBuilder = setBuilder.add(pp.getUniqueId());
return setBuilder.build();
}
final Collection<String> getLocalPlayersAsUuidStrings() {
return Collections2.transform(getLocalPlayers(), Functions.toStringFunction());
2014-01-20 15:34:40 +00:00
}
final Set<UUID> getPlayers() {
ImmutableSet.Builder<UUID> setBuilder = ImmutableSet.<UUID>builder().addAll(getLocalPlayers());
2013-09-29 20:16:47 +00:00
if (pool != null) {
Jedis rsc = pool.getResource();
try {
2014-04-26 23:43:09 +00:00
List<String> keys = new ArrayList<>();
2014-04-19 19:54:30 +00:00
for (String i : getServerIds()) {
if (i.equals(serverId))
2014-04-26 23:43:09 +00:00
continue;
keys.add("server:" + i + ":usersOnline");
}
if (!keys.isEmpty()) {
Set<String> users = rsc.sunion(keys.toArray(new String[keys.size()]));
if (users != null && !users.isEmpty()) {
for (String user : users) {
try {
setBuilder = setBuilder.add(UUID.fromString(user));
} catch (IllegalArgumentException ignored) {
}
}
}
2013-09-29 20:16:47 +00:00
}
} catch (JedisConnectionException e) {
// Redis server has disappeared!
getLogger().log(Level.SEVERE, "Unable to get connection from pool - did your Redis server go away?", e);
pool.returnBrokenResource(rsc);
throw new RuntimeException("Unable to get all players online", e);
2013-09-29 20:16:47 +00:00
} finally {
pool.returnResource(rsc);
}
}
2014-01-26 00:06:33 +00:00
return setBuilder.build();
2013-09-29 20:16:47 +00:00
}
final Set<UUID> getPlayersOnServer(@NonNull String server) {
2014-01-09 21:15:15 +00:00
checkArgument(getProxy().getServerInfo(server) != null, "server doesn't exist");
return ImmutableSet.copyOf(serversToPlayers().get(server));
2013-12-27 20:40:58 +00:00
}
final ServerInfo getServerFor(@NonNull UUID uuid) {
2013-09-29 20:16:47 +00:00
ServerInfo server = null;
if (getProxy().getPlayer(uuid) != null) return getProxy().getPlayer(uuid).getServer().getInfo();
2013-09-29 20:16:47 +00:00
if (pool != null) {
Jedis tmpRsc = pool.getResource();
try {
2014-06-26 07:34:16 +00:00
String result = tmpRsc.hget("player:" + uuid, "server");
if (result != null)
server = getProxy().getServerInfo(result);
} catch (JedisConnectionException e) {
// Redis server has disappeared!
getLogger().log(Level.SEVERE, "Unable to get connection from pool - did your Redis server go away?", e);
pool.returnBrokenResource(tmpRsc);
throw new RuntimeException("Unable to get server for " + uuid, e);
2013-09-29 20:16:47 +00:00
} finally {
pool.returnResource(tmpRsc);
}
}
return server;
}
final long getLastOnline(@NonNull UUID uuid) {
2013-11-14 01:25:09 +00:00
long time = -1L;
if (getProxy().getPlayer(uuid) != null) return 0;
2013-09-29 20:16:47 +00:00
if (pool != null) {
Jedis tmpRsc = pool.getResource();
try {
2014-06-26 07:34:16 +00:00
String result = tmpRsc.hget("player:" + uuid, "online");
if (result != null)
2014-01-26 00:06:33 +00:00
try {
2014-06-26 07:34:16 +00:00
time = Long.valueOf(result);
2014-01-26 00:06:33 +00:00
} catch (NumberFormatException e) {
getLogger().info("I found a funny number for when " + uuid + " was last online!");
2014-01-26 00:06:33 +00:00
boolean found = false;
2014-04-04 03:03:27 +00:00
for (String proxyId : getServerIds()) {
if (proxyId.equals(serverId)) continue;
if (tmpRsc.sismember("server:" + proxyId + ":usersOnline", uuid.toString())) {
2014-01-26 00:06:33 +00:00
found = true;
break;
}
}
String value = "0";
if (!found) {
value = String.valueOf(System.currentTimeMillis());
getLogger().info(uuid + " isn't online. Setting to current time.");
2014-01-26 00:06:33 +00:00
} else {
getLogger().info(uuid + " is online. Setting to 0. Please check your BungeeCord instances.");
2014-01-26 00:06:33 +00:00
getLogger().info("If they are working properly, and this error does not resolve in a few minutes, please let Tux know!");
}
tmpRsc.hset("player:" + uuid, "online", value);
2014-01-26 00:06:33 +00:00
}
} catch (JedisConnectionException e) {
// Redis server has disappeared!
getLogger().log(Level.SEVERE, "Unable to get connection from pool - did your Redis server go away?", e);
pool.returnBrokenResource(tmpRsc);
throw new RuntimeException("Unable to get last time online for " + uuid, e);
2013-09-29 20:16:47 +00:00
} finally {
pool.returnResource(tmpRsc);
}
}
return time;
}
final InetAddress getIpAddress(@NonNull UUID uuid) {
if (getProxy().getPlayer(uuid) != null)
return getProxy().getPlayer(uuid).getAddress().getAddress();
InetAddress ia = null;
if (pool != null) {
Jedis tmpRsc = pool.getResource();
try {
2014-06-26 07:34:16 +00:00
String result = tmpRsc.hget("player:" + uuid, "ip");
if (result != null)
ia = InetAddress.getByName(result);
} catch (JedisConnectionException e) {
// Redis server has disappeared!
getLogger().log(Level.SEVERE, "Unable to get connection from pool - did your Redis server go away?", e);
pool.returnBrokenResource(tmpRsc);
throw new RuntimeException("Unable to fetch IP address for " + uuid, e);
} catch (UnknownHostException ignored) {
// Best to just return null
} finally {
pool.returnResource(tmpRsc);
}
}
return ia;
}
final void sendProxyCommand(@NonNull String proxyId, @NonNull String command) {
2014-04-04 03:03:27 +00:00
checkArgument(getServerIds().contains(proxyId) || proxyId.equals("allservers"), "proxyId is invalid");
2014-01-02 00:05:55 +00:00
Jedis jedis = pool.getResource();
try {
jedis.publish("redisbungee-" + proxyId, command);
} catch (JedisConnectionException e) {
// Redis server has disappeared!
getLogger().log(Level.SEVERE, "Unable to get connection from pool - did your Redis server go away?", e);
pool.returnBrokenResource(jedis);
throw new RuntimeException("Unable to publish command", e);
2014-01-02 00:05:55 +00:00
} finally {
pool.returnResource(jedis);
}
}
2013-09-29 20:16:47 +00:00
@Override
public void onEnable() {
try {
loadConfig();
} catch (IOException e) {
throw new RuntimeException("Unable to load/save config", e);
} catch (JedisConnectionException e) {
throw new RuntimeException("Unable to connect to your Redis server!", e);
2013-09-29 20:16:47 +00:00
}
if (pool != null) {
Jedis tmpRsc = pool.getResource();
try {
tmpRsc.hset("playerCounts", serverId, "0"); // reset
tmpRsc.hset("heartbeats", serverId, String.valueOf(System.currentTimeMillis()));
2013-09-29 20:16:47 +00:00
} finally {
pool.returnResource(tmpRsc);
}
2014-04-19 19:54:30 +00:00
serverIds = getCurrentServerIds();
globalCount = getCurrentCount();
uuidTranslator = new UUIDTranslator(this);
2013-10-31 23:07:37 +00:00
getProxy().getScheduler().schedule(this, new Runnable() {
@Override
public void run() {
Jedis rsc = pool.getResource();
try {
2014-06-17 19:47:52 +00:00
Pipeline pipeline = rsc.pipelined();
pipeline.hset("playerCounts", serverId, String.valueOf(getProxy().getOnlineCount()));
pipeline.hset("heartbeats", serverId, String.valueOf(System.currentTimeMillis()));
pipeline.sync();
} catch (JedisConnectionException e) {
// Redis server has disappeared!
getLogger().log(Level.SEVERE, "Unable to update proxy counts - did your Redis server go away?", e);
pool.returnBrokenResource(rsc);
2013-10-31 23:07:37 +00:00
} finally {
pool.returnResource(rsc);
}
2014-04-19 19:54:30 +00:00
serverIds = getCurrentServerIds();
globalCount = getCurrentCount();
2013-10-31 23:07:37 +00:00
}
}, 0, 3, TimeUnit.SECONDS);
consumer = new RedisBungeeConsumer(this);
new Thread(consumer, "RedisBungee Consumer Thread").start();
if (configuration.getBoolean("register-bungee-commands", true)) {
getProxy().getPluginManager().registerCommand(this, new RedisBungeeCommands.GlistCommand(this));
getProxy().getPluginManager().registerCommand(this, new RedisBungeeCommands.FindCommand(this));
getProxy().getPluginManager().registerCommand(this, new RedisBungeeCommands.LastSeenCommand(this));
getProxy().getPluginManager().registerCommand(this, new RedisBungeeCommands.IpCommand(this));
}
getProxy().getPluginManager().registerCommand(this, new RedisBungeeCommands.SendToAll(this));
getProxy().getPluginManager().registerCommand(this, new RedisBungeeCommands.ServerId(this));
getProxy().getPluginManager().registerCommand(this, new RedisBungeeCommands.ServerIds());
api = new RedisBungeeAPI(this);
getProxy().getPluginManager().registerListener(this, new RedisBungeeListener(this));
psl = new PubSubListener();
getProxy().getScheduler().runAsync(this, psl);
2014-01-20 15:34:40 +00:00
getProxy().getScheduler().schedule(this, new Runnable() {
@Override
public void run() {
2014-01-20 23:42:56 +00:00
Jedis tmpRsc = pool.getResource();
2014-01-20 15:34:40 +00:00
try {
Collection<String> players = getLocalPlayersAsUuidStrings();
for (String member : tmpRsc.smembers("server:" + serverId + ":usersOnline"))
2014-01-20 23:42:56 +00:00
if (!players.contains(member)) {
// Are they simply on a different proxy?
boolean found = false;
2014-04-04 03:03:27 +00:00
for (String proxyId : getServerIds()) {
if (proxyId.equals(serverId)) continue;
2014-01-20 23:42:56 +00:00
if (tmpRsc.sismember("server:" + proxyId + ":usersOnline", member)) {
// Just clean up the set.
found = true;
break;
}
}
if (!found) {
2014-04-19 20:08:49 +00:00
RedisUtil.cleanUpPlayer(member, tmpRsc);
2014-01-20 23:42:56 +00:00
getLogger().warning("Player found in set that was not found locally and globally: " + member);
} else {
tmpRsc.srem("server:" + serverId + ":usersOnline", member);
2014-01-20 23:42:56 +00:00
getLogger().warning("Player found in set that was not found locally, but is on another proxy: " + member);
}
}
} finally {
pool.returnResource(tmpRsc);
2014-01-20 15:34:40 +00:00
}
}
}, 0, 3, TimeUnit.MINUTES);
2013-09-29 20:16:47 +00:00
}
2014-01-22 20:32:49 +00:00
getProxy().registerChannel("RedisBungee");
2013-09-29 20:16:47 +00:00
}
@Override
public void onDisable() {
2013-10-18 21:14:58 +00:00
if (pool != null) {
// Poison the PubSub listener
getProxy().getScheduler().cancel(this);
getLogger().info("Waiting for consumer to finish writing data...");
consumer.stop();
2013-10-18 21:14:58 +00:00
Jedis tmpRsc = pool.getResource();
try {
tmpRsc.hdel("playerCounts", serverId);
2014-06-17 19:47:52 +00:00
tmpRsc.hdel("heartbeats", serverId);
if (tmpRsc.scard("server:" + serverId + ":usersOnline") > 0) {
Set<String> players = tmpRsc.smembers("server:" + serverId + ":usersOnline");
Pipeline pipeline = tmpRsc.pipelined();
for (String member : players)
RedisUtil.cleanUpPlayer(member, pipeline);
pipeline.sync();
2013-12-03 21:01:27 +00:00
}
2013-10-18 21:14:58 +00:00
} finally {
pool.returnResource(tmpRsc);
}
pool.destroy();
2013-10-18 21:14:58 +00:00
}
2013-09-29 20:16:47 +00:00
}
private void loadConfig() throws IOException, JedisConnectionException {
2013-09-29 20:16:47 +00:00
if (!getDataFolder().exists()) {
getDataFolder().mkdir();
}
File file = new File(getDataFolder(), "config.yml");
if (!file.exists()) {
file.createNewFile();
try (InputStream in = getResourceAsStream("example_config.yml");
OutputStream out = new FileOutputStream(file)) {
ByteStreams.copy(in, out);
2013-09-29 20:16:47 +00:00
}
}
configuration = ConfigurationProvider.getProvider(YamlConfiguration.class).load(file);
String redisServer = configuration.getString("redis-server", "localhost");
int redisPort = configuration.getInt("redis-port", 6379);
String redisPassword = configuration.getString("redis-password");
serverId = configuration.getString("server-id");
2013-09-29 20:16:47 +00:00
2014-06-17 19:47:52 +00:00
if (redisPassword != null && (redisPassword.isEmpty() || redisPassword.equals("none"))) {
redisPassword = null;
}
2013-09-29 20:16:47 +00:00
// Configuration sanity checks.
2014-06-17 19:47:52 +00:00
if (serverId == null || serverId.isEmpty()) {
throw new RuntimeException("server-id is not specified in the configuration or is empty");
}
2013-11-15 22:55:57 +00:00
2014-06-17 19:47:52 +00:00
if (redisServer != null && !redisServer.isEmpty()) {
JedisPoolConfig config = new JedisPoolConfig();
config.setMaxTotal(configuration.getInt("max-redis-connections", -1));
pool = new JedisPool(config, redisServer, redisPort, 0, redisPassword);
// Test the connection
Jedis rsc = null;
try {
rsc = pool.getResource();
rsc.exists(String.valueOf(System.currentTimeMillis()));
// If that worked, now we can check for an existing, alive Bungee:
File crashFile = new File(getDataFolder(), "restarted_from_crash.txt");
if (crashFile.exists())
crashFile.delete();
else if (rsc.hexists("heartbeats", serverId)) {
try {
Long value = Long.valueOf(rsc.hget("heartbeats", serverId));
if (value != null && System.currentTimeMillis() < value + 20000) {
getLogger().severe("You have launched a possible imposter BungeeCord instance. Another instance is already running.");
getLogger().severe("For data consistency reasons, RedisBungee will now disable itself.");
getLogger().severe("If this instance is coming up from a crash, create a file in your RedisBungee plugins directory with the name 'restarted_from_crash.txt' and RedisBungee will not perform this check.");
throw new RuntimeException("Possible imposter instance!");
}
2014-06-17 19:47:52 +00:00
} catch (NumberFormatException ignored) {
}
2014-06-17 19:47:52 +00:00
}
getLogger().log(Level.INFO, "Successfully connected to Redis.");
} catch (JedisConnectionException e) {
if (rsc != null)
pool.returnBrokenResource(rsc);
pool.destroy();
pool = null;
rsc = null;
throw e;
} finally {
if (rsc != null && pool != null) {
pool.returnResource(rsc);
}
2013-09-29 20:16:47 +00:00
}
} else {
throw new RuntimeException("No redis server specified!");
2013-09-29 20:16:47 +00:00
}
}
class PubSubListener implements Runnable {
private Jedis rsc;
private JedisPubSubHandler jpsh;
2014-01-20 15:34:40 +00:00
private PubSubListener() {
}
@Override
public void run() {
try {
rsc = pool.getResource();
jpsh = new JedisPubSubHandler();
rsc.subscribe(jpsh, "redisbungee-" + serverId, "redisbungee-allservers");
} catch (JedisException | ClassCastException ignored) {
}
}
public void addChannel(String... channel) {
jpsh.subscribe(channel);
}
public void removeChannel(String... channel) {
jpsh.unsubscribe(channel);
}
}
class JedisPubSubHandler extends JedisPubSub {
private final ExecutorService executor = Executors.newCachedThreadPool(new ThreadFactoryBuilder().setDaemon(true).setNameFormat("RedisBungee PubSub Handler - #%d").build());
2014-03-31 14:23:10 +00:00
@Override
public void onMessage(final String s, final String s2) {
2014-01-26 00:06:33 +00:00
if (s2.trim().length() == 0) return;
2014-03-31 14:23:10 +00:00
executor.submit(new Runnable() {
@Override
public void run() {
getProxy().getPluginManager().callEvent(new PubSubMessageEvent(s, s2));
2014-03-31 14:23:10 +00:00
}
});
}
@Override
public void onPMessage(String s, String s2, String s3) {
}
@Override
public void onSubscribe(String s, int i) {
}
@Override
public void onUnsubscribe(String s, int i) {
}
@Override
public void onPUnsubscribe(String s, int i) {
}
@Override
public void onPSubscribe(String s, int i) {
}
}
2013-09-29 20:16:47 +00:00
}