From: "Shawn O. Pearce" <spearce@spearce.org>
To: Robin Rosenberg <robin.rosenberg@dewire.com>
Cc: git@vger.kernel.org
Subject: [JGIT PATCH 3/5] Modify "jgit daemon" so it can run outside of a repository
Date: Tue, 23 Dec 2008 10:03:41 -0800 [thread overview]
Message-ID: <1230055423-9944-4-git-send-email-spearce@spearce.org> (raw)
In-Reply-To: <1230055423-9944-3-git-send-email-spearce@spearce.org>
We no longer export the current repository, but instead export the
directory trees given. This behavior is more closely matches that
of "git daemon".
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
---
.../src/org/spearce/jgit/pgm/Daemon.java | 33 +++++--------------
1 files changed, 9 insertions(+), 24 deletions(-)
diff --git a/org.spearce.jgit.pgm/src/org/spearce/jgit/pgm/Daemon.java b/org.spearce.jgit.pgm/src/org/spearce/jgit/pgm/Daemon.java
index aafc82e..39b43b2 100644
--- a/org.spearce.jgit.pgm/src/org/spearce/jgit/pgm/Daemon.java
+++ b/org.spearce.jgit.pgm/src/org/spearce/jgit/pgm/Daemon.java
@@ -44,7 +44,6 @@
import org.kohsuke.args4j.Argument;
import org.kohsuke.args4j.Option;
-import org.spearce.jgit.lib.Repository;
import org.spearce.jgit.transport.DaemonService;
@Command(common = true, usage = "Export repositories over git://")
@@ -67,10 +66,15 @@
@Option(name = "--forbid-override", metaVar = "SERVICE", usage = "configure the service in daemon.servicename", multiValued = true)
final List<String> forbidOverride = new ArrayList<String>();
- @Argument(metaVar = "DIRECTORY", usage = "directories to export")
+ @Argument(required = true, metaVar = "DIRECTORY", usage = "directories to export")
final List<File> directory = new ArrayList<File>();
@Override
+ protected boolean requiresRepository() {
+ return false;
+ }
+
+ @Override
protected void run() throws Exception {
final org.spearce.jgit.transport.Daemon d;
@@ -88,13 +92,9 @@ protected void run() throws Exception {
for (final String n : forbidOverride)
service(d, n).setOverridable(false);
- if (directory.isEmpty()) {
- export(d, db);
- } else {
- for (final File f : directory) {
- out.println("Exporting " + f.getAbsolutePath());
- d.exportDirectory(f);
- }
+ for (final File f : directory) {
+ out.println("Exporting " + f.getAbsolutePath());
+ d.exportDirectory(f);
}
d.start();
out.println("Listening on " + d.getAddress());
@@ -107,19 +107,4 @@ private DaemonService service(final org.spearce.jgit.transport.Daemon d,
throw die("Service '" + n + "' not supported");
return svc;
}
-
- private void export(final org.spearce.jgit.transport.Daemon daemon,
- final Repository repo) {
- File d = repo.getDirectory();
- String name = d.getName();
- while (name.equals(".git") || name.equals(".")) {
- d = d.getParentFile();
- name = d.getName();
- }
- if (!name.endsWith(".git"))
- name += ".git";
-
- out.println("Exporting current repository as \"" + name + "\"");
- daemon.exportRepository(name, repo);
- }
}
--
1.6.1.rc4.301.g5497a
next prev parent reply other threads:[~2008-12-23 18:05 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-12-23 18:03 [JGIT PATCH 0/5] Add jgit init, clone, receive-pack; transport fixes Shawn O. Pearce
2008-12-23 18:03 ` [JGIT PATCH 1/5] Add "jgit receive-pack" and permit commands to start not in a repository Shawn O. Pearce
2008-12-23 18:03 ` [JGIT PATCH 2/5] Add "jgit init" command to create a new repository Shawn O. Pearce
2008-12-23 18:03 ` Shawn O. Pearce [this message]
2008-12-23 18:03 ` [JGIT PATCH 4/5] Add "jgit clone" to support cloning off URLs that are JGit specific Shawn O. Pearce
2008-12-23 18:03 ` [JGIT PATCH 5/5] Fix "fetch pulled too many objects" when auto-following tags Shawn O. Pearce
2008-12-31 7:12 ` [JGIT PATCH 4/5] Add "jgit clone" to support cloning off URLs that are JGit specific Robin Rosenberg
2008-12-31 7:35 ` Shawn O. Pearce
2008-12-31 19:04 ` [JGIT PATCH] Improve the sideband progress scaper to be more accurate Shawn O. Pearce
2009-01-03 22:12 ` Robin Rosenberg
2009-01-06 19:23 ` Nicolas Pitre
2009-01-06 19:27 ` Shawn O. Pearce
2009-01-06 20:55 ` Nicolas Pitre
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1230055423-9944-4-git-send-email-spearce@spearce.org \
--to=spearce@spearce.org \
--cc=git@vger.kernel.org \
--cc=robin.rosenberg@dewire.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).