updated console output per issue #1000

This commit is contained in:
Jeremy Long
2017-12-12 07:09:16 -05:00
parent 2d9ad67b14
commit 3555733bbf

View File

@@ -102,16 +102,7 @@ public class H2DBLock {
try { try {
final File dir = settings.getDataDirectory(); final File dir = settings.getDataDirectory();
lockFile = new File(dir, "dc.update.lock"); lockFile = new File(dir, "dc.update.lock");
if (!lockFile.getParentFile().isDirectory() && !lockFile.mkdir()) { checkState();
throw new H2DBLockException("Unable to create path to data directory.");
}
if (lockFile.isFile() && getFileAge(lockFile) > 30) {
LOGGER.debug("An old db update lock file was found: {}", lockFile.getAbsolutePath());
if (!lockFile.delete()) {
LOGGER.warn("An old db update lock file was found but the system was unable to delete "
+ "the file. Consider manually deleting {}", lockFile.getAbsolutePath());
}
}
int ctr = 0; int ctr = 0;
do { do {
try { try {
@@ -165,6 +156,24 @@ public class H2DBLock {
} }
} }
private void checkState() throws H2DBLockException {
if (!lockFile.getParentFile().isDirectory() && !lockFile.mkdir()) {
throw new H2DBLockException("Unable to create path to data directory.");
}
if (lockFile.isFile()) {
if (getFileAge(lockFile) > 30) {
LOGGER.debug("An old db update lock file was found: {}", lockFile.getAbsolutePath());
if (!lockFile.delete()) {
LOGGER.warn("An old db update lock file was found but the system was unable to delete "
+ "the file. Consider manually deleting {}", lockFile.getAbsolutePath());
}
} else {
LOGGER.info("Lock file found `{}`", lockFile);
LOGGER.info("Existing update in progress; waiting for update to complete");
}
}
}
/** /**
* Releases the lock on the H2 database. * Releases the lock on the H2 database.
*/ */