mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2024-11-26 12:35:11 +01:00
Close storages that failed to load and misconfigured maps dont stop loading the others
This commit is contained in:
parent
478ccf52a5
commit
60a8f5f98e
@ -53,6 +53,7 @@
|
||||
import org.spongepowered.configurate.gson.GsonConfigurationLoader;
|
||||
import org.spongepowered.configurate.loader.HeaderMode;
|
||||
|
||||
import java.io.Closeable;
|
||||
import java.io.IOException;
|
||||
import java.lang.reflect.Type;
|
||||
import java.net.URL;
|
||||
@ -67,7 +68,7 @@
|
||||
* This is the attempt to generalize as many actions as possible to have CLI and Plugins run on the same general setup-code.
|
||||
*/
|
||||
@DebugDump
|
||||
public class BlueMapService {
|
||||
public class BlueMapService implements Closeable {
|
||||
private final ServerInterface serverInterface;
|
||||
private final BlueMapConfigProvider configs;
|
||||
|
||||
@ -154,24 +155,33 @@ public synchronized void createOrUpdateWebApp(boolean force) throws Configuratio
|
||||
}
|
||||
}
|
||||
|
||||
public synchronized Map<String, World> getWorlds() throws ConfigurationException, InterruptedException {
|
||||
public synchronized Map<String, World> getWorlds() throws InterruptedException {
|
||||
if (worlds == null) loadWorldsAndMaps();
|
||||
return worlds;
|
||||
}
|
||||
|
||||
public synchronized Map<String, BmMap> getMaps() throws ConfigurationException, InterruptedException {
|
||||
public synchronized Map<String, BmMap> getMaps() throws InterruptedException {
|
||||
if (maps == null) loadWorldsAndMaps();
|
||||
return maps;
|
||||
}
|
||||
|
||||
private synchronized void loadWorldsAndMaps() throws ConfigurationException, InterruptedException {
|
||||
private synchronized void loadWorldsAndMaps() throws InterruptedException {
|
||||
maps = new HashMap<>();
|
||||
worlds = new HashMap<>();
|
||||
|
||||
for (var entry : configs.getMapConfigs().entrySet()) {
|
||||
MapConfig mapConfig = entry.getValue();
|
||||
try {
|
||||
loadMapConfig(entry.getKey(), entry.getValue());
|
||||
} catch (ConfigurationException ex) {
|
||||
Logger.global.logError(ex);
|
||||
}
|
||||
}
|
||||
|
||||
String id = entry.getKey();
|
||||
worlds = Collections.unmodifiableMap(worlds);
|
||||
maps = Collections.unmodifiableMap(maps);
|
||||
}
|
||||
|
||||
private synchronized void loadMapConfig(String id, MapConfig mapConfig) throws ConfigurationException, InterruptedException {
|
||||
String name = mapConfig.getName();
|
||||
if (name == null) name = id;
|
||||
|
||||
@ -180,11 +190,11 @@ private synchronized void loadWorldsAndMaps() throws ConfigurationException, Int
|
||||
// if there is no world configured, we assume the map is static, or supplied from a different server
|
||||
if (worldFolder == null) {
|
||||
Logger.global.logInfo("The map '" + name + "' has no world configured. The map will be displayed, but not updated!");
|
||||
continue;
|
||||
return;
|
||||
}
|
||||
|
||||
if (!Files.isDirectory(worldFolder)) {
|
||||
throw new ConfigurationException("Failed to load map '" + id + "': \n" +
|
||||
throw new ConfigurationException(
|
||||
"'" + worldFolder.toAbsolutePath().normalize() + "' does not exist or is no directory!\n" +
|
||||
"Check if the 'world' setting in the config-file for that map is correct, or remove the entire config-file if you don't want that map.");
|
||||
}
|
||||
@ -193,8 +203,8 @@ private synchronized void loadWorldsAndMaps() throws ConfigurationException, Int
|
||||
try {
|
||||
worldId = getWorldId(worldFolder);
|
||||
} catch (IOException ex) {
|
||||
throw new ConfigurationException("Failed to load map '" + id + "': \n" +
|
||||
"Could not load the ID for the world!\n" +
|
||||
throw new ConfigurationException(
|
||||
"Could not load the ID for the world (" + worldFolder.toAbsolutePath().normalize() + ")!\n" +
|
||||
"Make sure BlueMap has read and write access/permissions to the world-files for this map.",
|
||||
ex);
|
||||
}
|
||||
@ -205,7 +215,8 @@ private synchronized void loadWorldsAndMaps() throws ConfigurationException, Int
|
||||
world = new MCAWorld(worldFolder, mapConfig.getWorldSkyLight(), mapConfig.isIgnoreMissingLightData());
|
||||
worlds.put(worldId, world);
|
||||
} catch (IOException ex) {
|
||||
throw new ConfigurationException("Failed to load world (" + worldId + ") for map '" + id + "'!\n" +
|
||||
throw new ConfigurationException(
|
||||
"Failed to load world '" + worldId + "' (" + worldFolder.toAbsolutePath().normalize() + ")!\n" +
|
||||
"Is the level.dat of that world present and not corrupted?",
|
||||
ex);
|
||||
}
|
||||
@ -214,6 +225,7 @@ private synchronized void loadWorldsAndMaps() throws ConfigurationException, Int
|
||||
Storage storage = getStorage(mapConfig.getStorage());
|
||||
|
||||
try {
|
||||
|
||||
BmMap map = new BmMap(
|
||||
id,
|
||||
name,
|
||||
@ -242,18 +254,13 @@ private synchronized void loadWorldsAndMaps() throws ConfigurationException, Int
|
||||
}
|
||||
|
||||
} catch (ConfigurateException | JsonParseException ex) {
|
||||
throw new ConfigurationException("Failed to load map '" + id + "': \n" +
|
||||
"Failed to create the markers for this map!\n" +
|
||||
throw new ConfigurationException(
|
||||
"Failed to create the markers for map '" + id + "'!\n" +
|
||||
"Make sure your marker-configuration for this map is valid.",
|
||||
ex);
|
||||
} catch (IOException ex) {
|
||||
} catch (IOException | ConfigurationException ex) {
|
||||
throw new ConfigurationException("Failed to load map '" + id + "'!", ex);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
worlds = Collections.unmodifiableMap(worlds);
|
||||
maps = Collections.unmodifiableMap(maps);
|
||||
}
|
||||
|
||||
public synchronized Storage getStorage(String storageId) throws ConfigurationException {
|
||||
@ -272,8 +279,20 @@ public synchronized Storage getStorage(String storageId) throws ConfigurationExc
|
||||
storage = storageConfig.createStorage();
|
||||
storage.initialize();
|
||||
} catch (Exception ex) {
|
||||
throw new ConfigurationException("Failed to load and initialize the storage '" + storageId + "'!",
|
||||
ex);
|
||||
ConfigurationException confEx = new ConfigurationException(
|
||||
"Failed to load and initialize the storage '" + storageId + "'!",
|
||||
ex
|
||||
);
|
||||
|
||||
if (storage != null) {
|
||||
try {
|
||||
storage.close();
|
||||
} catch (Exception closeEx) {
|
||||
confEx.addSuppressed(closeEx);
|
||||
}
|
||||
}
|
||||
|
||||
throw confEx;
|
||||
}
|
||||
|
||||
storages.put(storageId, storage);
|
||||
@ -404,4 +423,23 @@ public BlueMapConfigProvider getConfigs() {
|
||||
return configs;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void close() throws IOException {
|
||||
IOException exception = null;
|
||||
|
||||
for (Storage storage : storages.values()) {
|
||||
try {
|
||||
if (storage != null) {
|
||||
storage.close();
|
||||
}
|
||||
} catch (IOException ex) {
|
||||
if (exception == null) exception = ex;
|
||||
else exception.addSuppressed(ex);
|
||||
}
|
||||
}
|
||||
|
||||
if (exception != null)
|
||||
throw exception;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -372,19 +372,17 @@ public void unload() {
|
||||
if (webServer != null) webServer.close();
|
||||
webServer = null;
|
||||
|
||||
//close storages
|
||||
if (maps != null) {
|
||||
maps.values().forEach(map -> {
|
||||
//close bluemap
|
||||
if (blueMap != null) {
|
||||
try {
|
||||
map.getStorage().close();
|
||||
blueMap.close();
|
||||
} catch (IOException ex) {
|
||||
Logger.global.logWarning("Failed to close map-storage for map '" + map.getId() + "': " + ex);
|
||||
Logger.global.logError("Failed to close a bluemap-service!", ex);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
//clear resources and configs
|
||||
blueMap = null;
|
||||
|
||||
//clear resources
|
||||
worlds = null;
|
||||
maps = null;
|
||||
|
||||
|
@ -28,6 +28,10 @@ public abstract class Logger {
|
||||
|
||||
public static Logger global = stdOut();
|
||||
|
||||
public void logError(Throwable throwable) {
|
||||
logError(throwable.getMessage(), throwable);
|
||||
}
|
||||
|
||||
public abstract void logError(String message, Throwable throwable);
|
||||
|
||||
public abstract void logWarning(String message);
|
||||
@ -56,6 +60,13 @@ public abstract class Logger {
|
||||
*/
|
||||
public abstract void noFloodDebug(String key, String message);
|
||||
|
||||
/**
|
||||
* Only log the error if no message has been logged before with the same content.
|
||||
*/
|
||||
public void noFloodError(Throwable throwable){
|
||||
noFloodError(throwable.getMessage(), throwable);
|
||||
}
|
||||
|
||||
/**
|
||||
* Only log the error if no message has been logged before with the same content.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user