aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse/jgit/api
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2023-09-08 22:57:05 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2023-09-12 22:43:15 +0200
commit642f160236817ff1392ac96085cd5a3f3a96bc1f (patch)
tree32708d391ba3d2dbbde99134047631987e531f5d /org.eclipse.jgit/src/org/eclipse/jgit/api
parentd4d6c2b5af9b984ae824fb0073e1b368b39b1aa4 (diff)
downloadjgit-642f160236817ff1392ac96085cd5a3f3a96bc1f.tar.gz
jgit-642f160236817ff1392ac96085cd5a3f3a96bc1f.zip
Use ShutdownHook to gracefully handle JVM shutdown
in all classes which already registered their own shutdown hook - CloneCommand - GC#PidLock - FS#FileStoreAttributes - LocalDiskRepositoryTestCase#Cleanup Change-Id: I3efc1f83f3cbbf43eeeaaedcd2bee1ef31971a72
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/api')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/api/CloneCommand.java16
1 files changed, 5 insertions, 11 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/CloneCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/CloneCommand.java
index 107b00e274..3e034f1a6a 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/api/CloneCommand.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/CloneCommand.java
@@ -29,6 +29,7 @@ import org.eclipse.jgit.dircache.DirCacheCheckout;
import org.eclipse.jgit.errors.IncorrectObjectTypeException;
import org.eclipse.jgit.errors.MissingObjectException;
import org.eclipse.jgit.internal.JGitText;
+import org.eclipse.jgit.internal.util.ShutdownHook;
import org.eclipse.jgit.lib.AnyObjectId;
import org.eclipse.jgit.lib.BranchConfig.BranchRebaseMode;
import org.eclipse.jgit.lib.ConfigConstants;
@@ -100,6 +101,8 @@ public class CloneCommand extends TransportCommand<CloneCommand, Git> {
private List<String> shallowExcludes = new ArrayList<>();
+ private ShutdownHook.Listener shutdownListener = this::cleanup;
+
private enum FETCH_TYPE {
MULTIPLE_BRANCHES, ALL_BRANCHES, MIRROR
}
@@ -181,12 +184,7 @@ public class CloneCommand extends TransportCommand<CloneCommand, Git> {
@SuppressWarnings("resource") // Closed by caller
Repository repository = init();
FetchResult fetchResult = null;
- Thread cleanupHook = new Thread(() -> cleanup());
- try {
- Runtime.getRuntime().addShutdownHook(cleanupHook);
- } catch (IllegalStateException e) {
- // ignore - the VM is already shutting down
- }
+ ShutdownHook.INSTANCE.register(shutdownListener);
try {
fetchResult = fetch(repository, u);
} catch (IOException ioe) {
@@ -210,11 +208,7 @@ public class CloneCommand extends TransportCommand<CloneCommand, Git> {
cleanup();
throw e;
} finally {
- try {
- Runtime.getRuntime().removeShutdownHook(cleanupHook);
- } catch (IllegalStateException e) {
- // ignore - the VM is already shutting down
- }
+ ShutdownHook.INSTANCE.unregister(shutdownListener);
}
try {
checkout(repository, fetchResult);