summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.archive/src
diff options
context:
space:
mode:
authorJonathan Nieder <jrn@google.com>2013-05-28 16:51:32 -0700
committerJonathan Nieder <jrn@google.com>2013-05-28 16:51:32 -0700
commit68d92182e6ce177c4ee97bab470ae867997a5530 (patch)
treefa651f097a677c0f5a3bfaa18c91e35883c7f511 /org.eclipse.jgit.archive/src
parentf99fa9d23e93fdd34124e2100d629680894477d7 (diff)
downloadjgit-68d92182e6ce177c4ee97bab470ae867997a5530.tar.gz
jgit-68d92182e6ce177c4ee97bab470ae867997a5530.zip
Maintain list of archive formats in one place
Add a static start() method to FormatActivator to allow outside classes such as the Archive subcommand of the jgit program to use it without a BundleContext. This way, the list of formats only has to be maintained in one place. While at it, build a list of registered formats at start() time, so stop() doesn't have to repeat the same list of formats. Suggested-by: Shawn Pearce <spearce@spearce.org> Change-Id: I55cb3095043568740880cc9e4f7cde05f49c363c
Diffstat (limited to 'org.eclipse.jgit.archive/src')
-rw-r--r--org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/FormatActivator.java55
1 files changed, 51 insertions, 4 deletions
diff --git a/org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/FormatActivator.java b/org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/FormatActivator.java
index 8c0a581530..bf027d0d8e 100644
--- a/org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/FormatActivator.java
+++ b/org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/FormatActivator.java
@@ -42,18 +42,65 @@
*/
package org.eclipse.jgit.archive;
+import java.util.ArrayList;
+import java.util.List;
+
import org.eclipse.jgit.api.ArchiveCommand;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
+/**
+ * This activator registers all format types from the
+ * org.eclipse.jgit.archive package for use via the ArchiveCommand
+ * API.
+ *
+ * This registration happens automatically behind the scenes
+ * when the package is loaded as an OSGi bundle (and the corresponding
+ * deregistration happens when the bundle is unloaded, to avoid
+ * leaks).
+ *
+ * The static start() and stop() methods allow registering the same
+ * list of formats manually in cases where OSGi bundle activation
+ * cannot be used.
+ */
public class FormatActivator implements BundleActivator {
+ private static final List<String> myFormats = new ArrayList<String>();
+
+ private static final void register(String name, ArchiveCommand.Format<?> fmt) {
+ myFormats.add(name);
+ ArchiveCommand.registerFormat(name, fmt);
+ }
+
+ /**
+ * Register all included archive formats so they can be used
+ * as arguments to the ArchiveCommand.setFormat() method.
+ *
+ * Should not be called twice without a call to stop() in between.
+ * Not thread-safe.
+ */
+ public static void start() {
+ register("tar", new TarFormat());
+ register("zip", new ZipFormat());
+ }
+
+ /**
+ * Clean up by deregistering all formats that were registered
+ * by start().
+ *
+ * Not thread-safe.
+ */
+ public static void stop() {
+ for (String name : myFormats) {
+ ArchiveCommand.unregisterFormat(name);
+ }
+ myFormats.clear();
+ }
+
public void start(BundleContext context) throws Exception {
- ArchiveCommand.registerFormat("tar", new TarFormat());
- ArchiveCommand.registerFormat("zip", new ZipFormat());
+ start();
}
public void stop(BundleContext context) throws Exception {
- ArchiveCommand.unregisterFormat("zip");
- ArchiveCommand.unregisterFormat("tar");
+ stop();
}
}