use of jgnash.engine.message.LocalServerListener in project jgnash by ccavanaugh.
the class JpaNetworkServer method run.
private boolean run(final DataStoreType dataStoreType, final String fileName, final int port, final char[] password) {
boolean result = false;
final DistributedLockServer distributedLockServer = new DistributedLockServer(port + LOCK_SERVER_INCREMENT);
final boolean lockServerStarted = distributedLockServer.startServer(password);
final AttachmentTransferServer attachmentTransferServer = new AttachmentTransferServer(port + TRANSFER_SERVER_INCREMENT, AttachmentUtils.getAttachmentDirectory(Paths.get(fileName)));
final boolean attachmentServerStarted = attachmentTransferServer.startServer(password);
if (attachmentServerStarted && lockServerStarted) {
final Engine engine = createEngine(dataStoreType, fileName, port, password);
if (engine != null) {
// Start the message bus and pass the file name so it can be reported to the client
final MessageBusServer messageBusServer = new MessageBusServer(port + MESSAGE_SERVER_INCREMENT);
result = messageBusServer.startServer(dataStoreType, fileName, password);
if (result) {
// don't continue if the server is not started successfully
// Start the backup thread that ensures an XML backup is created at set intervals
final ScheduledExecutorService backupExecutor = Executors.newSingleThreadScheduledExecutor(new DefaultDaemonThreadFactory());
// run commit every backup period after startup
backupExecutor.scheduleWithFixedDelay(() -> {
if (dirty) {
exportXML(engine, fileName);
EngineFactory.removeOldCompressedXML(fileName, engine.getRetainedBackupLimit());
dirty = false;
}
}, BACKUP_PERIOD, BACKUP_PERIOD, TimeUnit.HOURS);
final LocalServerListener listener = event -> {
if (event.startsWith(STOP_SERVER_MESSAGE)) {
logger.info("Remote shutdown request was received");
stopServer();
}
dirty = true;
};
messageBusServer.addLocalListener(listener);
// wait here forever
try {
while (!stop) {
// check for condition, handle a spurious wake up
// wait forever for notify() from stopServer()
wait();
}
} catch (final InterruptedException ex) {
logger.log(Level.SEVERE, ex.getLocalizedMessage(), ex);
}
messageBusServer.removeLocalListener(listener);
backupExecutor.shutdown();
exportXML(engine, fileName);
messageBusServer.stopServer();
EngineFactory.closeEngine(SERVER_ENGINE);
EngineFactory.removeOldCompressedXML(fileName, engine.getRetainedBackupLimit());
distributedLockManager.disconnectFromServer();
distributedAttachmentManager.disconnectFromServer();
distributedLockServer.stopServer();
attachmentTransferServer.stopServer();
em.close();
factory.close();
}
}
} else {
if (lockServerStarted) {
distributedLockServer.stopServer();
}
if (attachmentServerStarted) {
attachmentTransferServer.stopServer();
}
}
return result;
}
Aggregations