Ensures that we close all sockets and socket servers before exiting.

This makes the program more stable, and ensures that the connection is established every time we start.
This commit is contained in:
Markil3
2021-08-23 08:31:27 -06:00
parent 9c2cea1662
commit b35e2eefd8
6 changed files with 119 additions and 30 deletions

View File

@@ -76,13 +76,14 @@ public class MessageHandler implements Runnable, MessageSerializer
Future<Object> messageResponse;
ByteBuffer numBuffer = ByteBuffer.allocate(4);
HashSet<Integer> toRemove = new HashSet<>();
boolean running = true;
try
{
browserIn = new BufferedInputStream(this.input);
browserOut = new BufferedOutputStream(this.output);
while (!this.onRun())
while (!this.onRun() && running)
{
try
{
@@ -111,6 +112,7 @@ public class MessageHandler implements Runnable, MessageSerializer
catch (IOException | ClassNotFoundException e)
{
logger.error("Could not retrieve message", e);
running = false;
}
/*
@@ -134,6 +136,7 @@ public class MessageHandler implements Runnable, MessageSerializer
catch (IOException e)
{
logger.error("Could not send response message for " + responses.getKey(), e);
running = false;
}
}
toRemove.forEach(this.messageResponses::remove);
@@ -158,7 +161,8 @@ public class MessageHandler implements Runnable, MessageSerializer
}
catch (IOException e)
{
logger.error("Could not send response message for " + update, e);
logger.error("Could not send response message for" + update, e);
running = false;
}
}
}
@@ -176,11 +180,13 @@ public class MessageHandler implements Runnable, MessageSerializer
*/
synchronized (this.messageResponses)
{
logger.debug("Releasing {} dangling messages", this.messageResponses.size());
this.messageResponses.values().forEach(future -> future.cancel(false));
}
/*
* Close the streams.
*/
logger.debug("Closing streams");
try
{
if (browserIn != null)
@@ -205,10 +211,21 @@ public class MessageHandler implements Runnable, MessageSerializer
{
logger.error("Could not close browser output", e1);
}
finally
{
this.onClose();
}
}
}
}
/**
* Callback for when closing the application.
*/
protected void onClose()
{
}
/**
* Triggers the message listeners.
*

View File

@@ -187,6 +187,7 @@ public abstract class MessageRunner implements Runnable, MessageSerializer
*/
synchronized (this.sendQueue)
{
logger.debug("Clearing up {} messages", this.sendQueue.size());
while (this.sendQueue.size() > 0)
{
packet = this.sendQueue.poll();
@@ -200,6 +201,7 @@ public abstract class MessageRunner implements Runnable, MessageSerializer
/*
* Close the streams.
*/
logger.debug("Closing streams.");
try
{
if (browserIn != null)
@@ -224,10 +226,21 @@ public abstract class MessageRunner implements Runnable, MessageSerializer
{
logger.error("Could not close browser output", e1);
}
finally
{
this.onClose();
}
}
}
}
/**
* Callback for when closing the application.
*/
protected void onClose()
{
}
/**
* Sends an object to the remote.
*