|
@@ -419,7 +419,11 @@ class TraditionalGitClient(GitClient):
|
|
|
negotiated_capabilities = list(self._send_capabilities)
|
|
|
if 'report-status' not in server_capabilities:
|
|
|
negotiated_capabilities.remove('report-status')
|
|
|
- new_refs = determine_wants(old_refs)
|
|
|
+ try:
|
|
|
+ new_refs = determine_wants(old_refs)
|
|
|
+ except:
|
|
|
+ proto.write_pkt_line(None)
|
|
|
+ raise
|
|
|
if new_refs is None:
|
|
|
proto.write_pkt_line(None)
|
|
|
return old_refs
|
|
@@ -446,7 +450,11 @@ class TraditionalGitClient(GitClient):
|
|
|
proto, can_read = self._connect('upload-pack', path)
|
|
|
(refs, server_capabilities) = self._read_refs(proto)
|
|
|
negotiated_capabilities = list(self._fetch_capabilities)
|
|
|
- wants = determine_wants(refs)
|
|
|
+ try:
|
|
|
+ wants = determine_wants(refs)
|
|
|
+ except:
|
|
|
+ proto.write_pkt_line(None)
|
|
|
+ raise
|
|
|
if not wants:
|
|
|
proto.write_pkt_line(None)
|
|
|
return refs
|
|
@@ -456,6 +464,24 @@ class TraditionalGitClient(GitClient):
|
|
|
graph_walker, pack_data, progress)
|
|
|
return refs
|
|
|
|
|
|
+ def archive(self, path, committish, write_data, progress=None):
|
|
|
+ proto, can_read = self._connect('upload-archive', path)
|
|
|
+ proto.write_pkt_line("argument %s" % committish)
|
|
|
+ proto.write_pkt_line(None)
|
|
|
+ pkt = proto.read_pkt_line()
|
|
|
+ if pkt == "NACK\n":
|
|
|
+ return
|
|
|
+ elif pkt == "ACK\n":
|
|
|
+ pass
|
|
|
+ elif pkt.startswith("ERR "):
|
|
|
+ raise GitProtocolError(pkt[4:].rstrip("\n"))
|
|
|
+ else:
|
|
|
+ raise AssertionError("invalid response %r" % pkt)
|
|
|
+ ret = proto.read_pkt_line()
|
|
|
+ if ret is not None:
|
|
|
+ raise AssertionError("expected pkt tail")
|
|
|
+ self._read_side_band64k_data(proto, {1: write_data, 2: progress})
|
|
|
+
|
|
|
|
|
|
class TCPGitClient(TraditionalGitClient):
|
|
|
"""A Git Client that works over TCP directly (i.e. git://)."""
|
|
@@ -524,6 +550,10 @@ class SubprocessGitClient(TraditionalGitClient):
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
self._connection = None
|
|
|
+ self._stderr = None
|
|
|
+ self._stderr = kwargs.get('stderr')
|
|
|
+ if 'stderr' in kwargs:
|
|
|
+ del kwargs['stderr']
|
|
|
GitClient.__init__(self, *args, **kwargs)
|
|
|
|
|
|
def _connect(self, service, path):
|
|
@@ -531,7 +561,8 @@ class SubprocessGitClient(TraditionalGitClient):
|
|
|
argv = ['git', service, path]
|
|
|
p = SubprocessWrapper(
|
|
|
subprocess.Popen(argv, bufsize=0, stdin=subprocess.PIPE,
|
|
|
- stdout=subprocess.PIPE))
|
|
|
+ stdout=subprocess.PIPE,
|
|
|
+ stderr=self._stderr))
|
|
|
return Protocol(p.read, p.write,
|
|
|
report_activity=self._report_activity), p.can_read
|
|
|
|