mirror of
https://github.com/webbukkit/dynmap.git
synced 2025-04-04 02:56:00 +02:00
More exception handling and messages.
This commit is contained in:
parent
b22a48d5cb
commit
b501f1d8cb
@ -99,6 +99,7 @@ public class MapManager extends Thread {
|
|||||||
/* initialize and start map manager */
|
/* initialize and start map manager */
|
||||||
public void startManager()
|
public void startManager()
|
||||||
{
|
{
|
||||||
|
synchronized(lock) {
|
||||||
running = true;
|
running = true;
|
||||||
this.start();
|
this.start();
|
||||||
try {
|
try {
|
||||||
@ -107,56 +108,63 @@ public class MapManager extends Thread {
|
|||||||
} catch(SecurityException e) {
|
} catch(SecurityException e) {
|
||||||
log.info("Failed to set minimum priority for worker thread!");
|
log.info("Failed to set minimum priority for worker thread!");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* stop map manager */
|
/* stop map manager */
|
||||||
public void stopManager()
|
public void stopManager()
|
||||||
{
|
{
|
||||||
if(!running)
|
synchronized(lock) {
|
||||||
return;
|
if(!running)
|
||||||
|
return;
|
||||||
log.info("Stopping map renderer...");
|
|
||||||
running = false;
|
log.info("Stopping map renderer...");
|
||||||
|
running = false;
|
||||||
try {
|
|
||||||
this.join();
|
try {
|
||||||
} catch(InterruptedException e) {
|
this.join();
|
||||||
log.info("Waiting for map renderer to stop is interrupted");
|
} catch(InterruptedException e) {
|
||||||
|
log.info("Waiting for map renderer to stop is interrupted");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* the worker/renderer thread */
|
/* the worker/renderer thread */
|
||||||
public void run()
|
public void run()
|
||||||
{
|
{
|
||||||
log.info("Map renderer has started.");
|
try {
|
||||||
|
log.info("Map renderer has started.");
|
||||||
while(running) {
|
|
||||||
boolean found = false;
|
while(running) {
|
||||||
|
boolean found = false;
|
||||||
MapTile t = staleQueue.popStaleTile();
|
|
||||||
if(t != null) {
|
MapTile t = staleQueue.popStaleTile();
|
||||||
debugger.debug("rendering tile " + t + "...");
|
if(t != null) {
|
||||||
t.getMap().render(t);
|
debugger.debug("rendering tile " + t + "...");
|
||||||
|
t.getMap().render(t);
|
||||||
staleQueue.onTileUpdated(t);
|
|
||||||
|
staleQueue.onTileUpdated(t);
|
||||||
try {
|
|
||||||
this.sleep(renderWait);
|
try {
|
||||||
} catch(InterruptedException e) {
|
Thread.sleep(renderWait);
|
||||||
|
} catch(InterruptedException e) {
|
||||||
|
}
|
||||||
|
|
||||||
|
found = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
found = true;
|
if(!found) {
|
||||||
}
|
try {
|
||||||
|
Thread.sleep(500);
|
||||||
if(!found) {
|
} catch(InterruptedException e) {
|
||||||
try {
|
}
|
||||||
this.sleep(500);
|
|
||||||
} catch(InterruptedException e) {
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
log.info("Map renderer has stopped.");
|
||||||
|
} catch(Exception ex) {
|
||||||
|
debugger.error("Exception on rendering-thread: " + ex.toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
log.info("Map renderer has stopped.");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void touch(int x, int y, int z) {
|
public void touch(int x, int y, int z) {
|
||||||
|
@ -34,18 +34,22 @@ public class WebServer extends Thread {
|
|||||||
|
|
||||||
public void run()
|
public void run()
|
||||||
{
|
{
|
||||||
while (running) {
|
try {
|
||||||
try {
|
while (running) {
|
||||||
Socket socket = sock.accept();
|
try {
|
||||||
WebServerRequest requestThread = new WebServerRequest(socket, mgr, server, debugger);
|
Socket socket = sock.accept();
|
||||||
requestThread.start();
|
WebServerRequest requestThread = new WebServerRequest(socket, mgr, server, debugger);
|
||||||
}
|
requestThread.start();
|
||||||
catch (IOException e) {
|
}
|
||||||
log.info("map WebServer.run() stops with IOException");
|
catch (IOException e) {
|
||||||
break;
|
log.info("map WebServer.run() stops with IOException");
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
log.info("map WebServer run() exiting");
|
||||||
|
} catch (Exception ex) {
|
||||||
|
debugger.error("Exception on WebServer-thread: " + ex.toString());
|
||||||
}
|
}
|
||||||
log.info("map WebServer run() exiting");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void shutdown()
|
public void shutdown()
|
||||||
|
@ -94,6 +94,9 @@ public class WebServerRequest extends Thread {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
catch(Exception ex) {
|
||||||
|
debugger.error("Exception on WebRequest-thread: " + ex.toString());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void handleUp(BufferedOutputStream out, String path) throws IOException {
|
public void handleUp(BufferedOutputStream out, String path) throws IOException {
|
||||||
|
@ -34,45 +34,45 @@ public class BukkitPlayerDebugger implements Debugger {
|
|||||||
prepend = pdfFile.getName() + ": ";
|
prepend = pdfFile.getName() + ": ";
|
||||||
}
|
}
|
||||||
|
|
||||||
public void enable() {
|
public synchronized void enable() {
|
||||||
plugin.getServer().getPluginManager().registerEvent(Event.Type.PLAYER_COMMAND, new CommandListener(), Priority.Normal, plugin);
|
plugin.getServer().getPluginManager().registerEvent(Event.Type.PLAYER_COMMAND, new CommandListener(), Priority.Normal, plugin);
|
||||||
plugin.getServer().getPluginManager().registerEvent(Event.Type.PLAYER_QUIT, new CommandListener(), Priority.Normal, plugin);
|
plugin.getServer().getPluginManager().registerEvent(Event.Type.PLAYER_QUIT, new CommandListener(), Priority.Normal, plugin);
|
||||||
log.info("Debugger enabled, use: " + debugCommand);
|
log.info("Debugger enabled, use: " + debugCommand);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void disable() {
|
public synchronized void disable() {
|
||||||
clearDebugees();
|
clearDebugees();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addDebugee(Player p) {
|
public synchronized void addDebugee(Player p) {
|
||||||
debugees.add(p);
|
debugees.add(p);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void removeDebugee(Player p) {
|
public synchronized void removeDebugee(Player p) {
|
||||||
debugees.remove(p);
|
debugees.remove(p);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void clearDebugees() {
|
public synchronized void clearDebugees() {
|
||||||
debugees.clear();
|
debugees.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void sendToDebuggees(String message) {
|
public synchronized void sendToDebuggees(String message) {
|
||||||
for (Player p : debugees) {
|
for (Player p : debugees) {
|
||||||
p.sendMessage(prepend + message);
|
p.sendMessage(prepend + message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void debug(String message) {
|
public synchronized void debug(String message) {
|
||||||
sendToDebuggees(message);
|
sendToDebuggees(message);
|
||||||
if (isLogging) log.info(prepend + message);
|
if (isLogging) log.info(prepend + message);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void error(String message) {
|
public synchronized void error(String message) {
|
||||||
sendToDebuggees(prepend + ChatColor.RED + message);
|
sendToDebuggees(prepend + ChatColor.RED + message);
|
||||||
if (isLogging) log.log(Level.SEVERE, prepend + message);
|
if (isLogging) log.log(Level.SEVERE, prepend + message);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void error(String message, Throwable thrown) {
|
public synchronized void error(String message, Throwable thrown) {
|
||||||
sendToDebuggees(prepend + ChatColor.RED + message);
|
sendToDebuggees(prepend + ChatColor.RED + message);
|
||||||
sendToDebuggees(thrown.toString());
|
sendToDebuggees(thrown.toString());
|
||||||
if (isLogging) log.log(Level.SEVERE, prepend + message);
|
if (isLogging) log.log(Level.SEVERE, prepend + message);
|
||||||
|
@ -13,6 +13,8 @@ import java.util.logging.Logger;
|
|||||||
|
|
||||||
import javax.imageio.ImageIO;
|
import javax.imageio.ImageIO;
|
||||||
|
|
||||||
|
import org.bukkit.Block;
|
||||||
|
import org.bukkit.Chunk;
|
||||||
import org.bukkit.World;
|
import org.bukkit.World;
|
||||||
import org.dynmap.MapManager;
|
import org.dynmap.MapManager;
|
||||||
import org.dynmap.MapTile;
|
import org.dynmap.MapTile;
|
||||||
@ -40,6 +42,21 @@ public class DefaultTileRenderer implements MapTileRenderer {
|
|||||||
int ix = tile.mx;
|
int ix = tile.mx;
|
||||||
int iy = tile.my;
|
int iy = tile.my;
|
||||||
int iz = tile.mz;
|
int iz = tile.mz;
|
||||||
|
|
||||||
|
Block block = tile.getMap().getWorld().getBlockAt(ix, iy, iz);
|
||||||
|
if (block == null) {
|
||||||
|
debugger.debug("Could not get block for rendering.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Chunk chunk = block.getChunk();
|
||||||
|
if (chunk == null) {
|
||||||
|
debugger.debug("Could not get chunk for rendering.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!world.isChunkLoaded(chunk)) {
|
||||||
|
debugger.debug("Chunk was not loaded, but we'll still continue render.");
|
||||||
|
}
|
||||||
|
|
||||||
int jx, jz;
|
int jx, jz;
|
||||||
|
|
||||||
int x, y;
|
int x, y;
|
||||||
|
Loading…
Reference in New Issue
Block a user