Geyser/connector/src/main/java/org/geysermc/connector/GeyserConnector.java

220 lines
8.1 KiB
Java
Raw Normal View History

2019-07-08 17:55:14 +00:00
/*
* Copyright (c) 2019-2020 GeyserMC. http://geysermc.org
2019-07-08 17:55:14 +00:00
*
2019-07-11 21:30:35 +00:00
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
2019-07-08 17:55:14 +00:00
*
2019-07-11 21:30:35 +00:00
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
2019-07-08 17:55:14 +00:00
*
* @author GeyserMC
* @link https://github.com/GeyserMC/Geyser
*/
package org.geysermc.connector;
import com.nukkitx.protocol.bedrock.BedrockPacketCodec;
2019-07-08 23:35:32 +00:00
import com.nukkitx.protocol.bedrock.BedrockServer;
2020-04-17 16:34:09 +00:00
import com.nukkitx.protocol.bedrock.v390.Bedrock_v390;
2019-07-08 19:19:41 +00:00
import lombok.Getter;
2020-01-04 05:58:58 +00:00
import org.geysermc.common.AuthType;
import org.geysermc.common.PlatformType;
import org.geysermc.common.bootstrap.IGeyserBootstrap;
import org.geysermc.common.logger.IGeyserLogger;
2019-07-08 17:55:14 +00:00
import org.geysermc.connector.command.GeyserCommandMap;
2019-08-06 01:59:54 +00:00
import org.geysermc.connector.metrics.Metrics;
import org.geysermc.connector.network.ConnectorServerEventHandler;
import org.geysermc.connector.network.remote.RemoteServer;
import org.geysermc.connector.network.session.GeyserSession;
import org.geysermc.connector.network.translators.Translators;
2019-07-21 23:52:30 +00:00
import org.geysermc.connector.thread.PingPassthroughThread;
2019-11-06 00:55:59 +00:00
import org.geysermc.connector.utils.Toolbox;
import org.geysermc.common.IGeyserConfiguration;
2019-07-08 17:55:14 +00:00
2019-07-08 23:35:32 +00:00
import java.net.InetSocketAddress;
2019-09-15 23:46:05 +00:00
import java.text.DecimalFormat;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.CompletableFuture;
import java.util.UUID;
2019-07-08 17:55:14 +00:00
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
2019-07-21 23:52:30 +00:00
import java.util.concurrent.TimeUnit;
2019-07-08 17:55:14 +00:00
2019-08-09 01:42:55 +00:00
@Getter
public class GeyserConnector {
2019-07-08 17:55:14 +00:00
2020-04-17 16:34:09 +00:00
public static final BedrockPacketCodec BEDROCK_PACKET_CODEC = Bedrock_v390.V390_CODEC;
public static final String NAME = "Geyser";
public static final String VERSION = "1.0-SNAPSHOT";
2019-07-08 17:55:14 +00:00
private final Map<InetSocketAddress, GeyserSession> players = new HashMap<>();
2019-08-09 01:42:55 +00:00
2019-07-08 17:55:14 +00:00
private static GeyserConnector instance;
private RemoteServer remoteServer;
2020-01-04 05:58:58 +00:00
private AuthType authType;
2019-07-08 19:19:41 +00:00
private GeyserCommandMap commandMap;
2019-07-08 23:22:50 +00:00
2019-07-08 19:19:41 +00:00
private boolean shuttingDown = false;
2019-07-08 17:55:14 +00:00
private final ScheduledExecutorService generalThreadPool;
2019-07-21 23:52:30 +00:00
private PingPassthroughThread passthroughThread;
2019-12-21 17:38:45 +00:00
private BedrockServer bedrockServer;
private PlatformType platformType;
private IGeyserBootstrap bootstrap;
2019-12-21 17:38:45 +00:00
2019-08-09 01:42:55 +00:00
private Metrics metrics;
2019-08-06 01:59:54 +00:00
private GeyserConnector(PlatformType platformType, IGeyserBootstrap bootstrap) {
2019-09-15 23:46:05 +00:00
long startupTime = System.currentTimeMillis();
2019-09-14 23:21:55 +00:00
2019-07-08 17:55:14 +00:00
instance = this;
this.bootstrap = bootstrap;
IGeyserLogger logger = bootstrap.getGeyserLogger();
IGeyserConfiguration config = bootstrap.getGeyserConfig();
this.platformType = platformType;
2019-07-13 19:00:51 +00:00
logger.info("******************************************");
2019-07-08 17:55:14 +00:00
logger.info("");
2019-11-28 04:33:45 +00:00
logger.info("Loading " + NAME + " version " + VERSION);
2019-07-08 17:55:14 +00:00
logger.info("");
logger.info("******************************************");
this.generalThreadPool = Executors.newScheduledThreadPool(config.getGeneralThreadPool());
logger.setDebug(config.isDebugMode());
2019-11-06 00:55:59 +00:00
Toolbox.init();
Translators.start();
2019-07-11 22:39:28 +00:00
2019-07-08 17:55:14 +00:00
commandMap = new GeyserCommandMap(this);
remoteServer = new RemoteServer(config.getRemote().getAddress(), config.getRemote().getPort());
2019-11-30 12:34:45 +00:00
authType = AuthType.getByName(config.getRemote().getAuthType());
2019-07-08 23:35:32 +00:00
2019-07-21 23:52:30 +00:00
passthroughThread = new PingPassthroughThread(this);
if (config.isPingPassthrough())
generalThreadPool.scheduleAtFixedRate(passthroughThread, 1, 1, TimeUnit.SECONDS);
2019-12-21 17:38:45 +00:00
bedrockServer = new BedrockServer(new InetSocketAddress(config.getBedrock().getAddress(), config.getBedrock().getPort()));
bedrockServer.setHandler(new ConnectorServerEventHandler(this));
2019-07-08 23:35:32 +00:00
bedrockServer.bind().whenComplete((avoid, throwable) -> {
if (throwable == null) {
2019-09-15 23:46:05 +00:00
logger.info("Started Geyser on " + config.getBedrock().getAddress() + ":" + config.getBedrock().getPort());
2019-07-08 23:35:32 +00:00
} else {
2019-09-15 23:46:05 +00:00
logger.severe("Failed to start Geyser on " + config.getBedrock().getAddress() + ":" + config.getBedrock().getPort());
2019-07-08 23:35:32 +00:00
throwable.printStackTrace();
}
}).join();
if (config.getMetrics().isEnabled()) {
metrics = new Metrics(this, "GeyserMC", config.getMetrics().getUniqueId(), false, java.util.logging.Logger.getLogger(""));
metrics.addCustomChart(new Metrics.SingleLineChart("servers", () -> 1));
metrics.addCustomChart(new Metrics.SingleLineChart("players", players::size));
2020-01-04 05:58:58 +00:00
metrics.addCustomChart(new Metrics.SimplePie("authMode", authType.name()::toLowerCase));
metrics.addCustomChart(new Metrics.SimplePie("platform", platformType::getPlatformName));
}
2019-09-15 23:46:05 +00:00
double completeTime = (System.currentTimeMillis() - startupTime) / 1000D;
logger.info(String.format("Done (%ss)! Run /geyser help for help!", new DecimalFormat("#.###").format(completeTime)));
2019-07-08 17:55:14 +00:00
}
public void shutdown() {
bootstrap.getGeyserLogger().info("Shutting down Geyser.");
2019-07-08 17:55:14 +00:00
shuttingDown = true;
if (players.size() >= 1) {
2020-04-08 00:03:25 +00:00
bootstrap.getGeyserLogger().info("Kicking " + players.size() + " player(s)");
for (GeyserSession playerSession : players.values()) {
playerSession.disconnect("Geyser Proxy shutting down.");
}
CompletableFuture<Void> future = CompletableFuture.runAsync(new Runnable() {
@Override
public void run() {
// Simulate a long-running Job
try {
while (true) {
if (players.size() == 0) {
return;
}
TimeUnit.MILLISECONDS.sleep(100);
}
} catch (InterruptedException e) {
throw new IllegalStateException(e);
}
}
});
// Block and wait for the future to complete
try {
future.get();
bootstrap.getGeyserLogger().info("Kicked all players");
} catch (Exception e) {
// Quietly fail
}
}
2019-07-08 17:55:14 +00:00
generalThreadPool.shutdown();
2019-12-21 17:38:45 +00:00
bedrockServer.close();
players.clear();
remoteServer = null;
authType = null;
commandMap.getCommands().clear();
commandMap = null;
bootstrap.getGeyserLogger().info("Geyser shutdown successfully.");
2019-07-08 17:55:14 +00:00
}
2019-08-06 01:59:54 +00:00
public void addPlayer(GeyserSession player) {
players.put(player.getSocketAddress(), player);
2019-08-09 01:42:55 +00:00
}
public void removePlayer(GeyserSession player) {
players.remove(player.getSocketAddress());
2019-08-09 01:42:55 +00:00
}
public static GeyserConnector start(PlatformType platformType, IGeyserBootstrap bootstrap) {
return new GeyserConnector(platformType, bootstrap);
}
public void reload() {
shutdown();
bootstrap.onEnable();
}
public IGeyserLogger getLogger() {
return bootstrap.getGeyserLogger();
}
public IGeyserConfiguration getConfig() {
return bootstrap.getGeyserConfig();
}
public static GeyserConnector getInstance() {
return instance;
}
2019-07-08 17:55:14 +00:00
}