mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-04-18 22:50:25 +02:00
updated console output per issue #1000
This commit is contained in:
@@ -102,16 +102,7 @@ public class H2DBLock {
|
||||
try {
|
||||
final File dir = settings.getDataDirectory();
|
||||
lockFile = new File(dir, "dc.update.lock");
|
||||
if (!lockFile.getParentFile().isDirectory() && !lockFile.mkdir()) {
|
||||
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());
|
||||
}
|
||||
}
|
||||
checkState();
|
||||
int ctr = 0;
|
||||
do {
|
||||
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.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user