client.py 51 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360
  1. # client.py -- Implementation of the client side git protocols
  2. # Copyright (C) 2008-2013 Jelmer Vernooij <jelmer@samba.org>
  3. #
  4. # Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
  5. # General Public License as public by the Free Software Foundation; version 2.0
  6. # or (at your option) any later version. You can redistribute it and/or
  7. # modify it under the terms of either of these two licenses.
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. #
  15. # You should have received a copy of the licenses; if not, see
  16. # <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
  17. # and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
  18. # License, Version 2.0.
  19. #
  20. """Client side support for the Git protocol.
  21. The Dulwich client supports the following capabilities:
  22. * thin-pack
  23. * multi_ack_detailed
  24. * multi_ack
  25. * side-band-64k
  26. * ofs-delta
  27. * quiet
  28. * report-status
  29. * delete-refs
  30. Known capabilities that are not supported:
  31. * shallow
  32. * no-progress
  33. * include-tag
  34. """
  35. from contextlib import closing
  36. from io import BytesIO, BufferedReader
  37. import dulwich
  38. import select
  39. import socket
  40. import subprocess
  41. import sys
  42. try:
  43. from urllib import quote as urlquote
  44. from urllib import unquote as urlunquote
  45. except ImportError:
  46. from urllib.parse import quote as urlquote
  47. from urllib.parse import unquote as urlunquote
  48. try:
  49. import urllib2
  50. import urlparse
  51. except ImportError:
  52. import urllib.request as urllib2
  53. import urllib.parse as urlparse
  54. from dulwich.errors import (
  55. GitProtocolError,
  56. NotGitRepository,
  57. SendPackError,
  58. UpdateRefsError,
  59. )
  60. from dulwich.protocol import (
  61. _RBUFSIZE,
  62. capability_agent,
  63. CAPABILITY_DELETE_REFS,
  64. CAPABILITY_MULTI_ACK,
  65. CAPABILITY_MULTI_ACK_DETAILED,
  66. CAPABILITY_OFS_DELTA,
  67. CAPABILITY_QUIET,
  68. CAPABILITY_REPORT_STATUS,
  69. CAPABILITY_SIDE_BAND_64K,
  70. CAPABILITY_THIN_PACK,
  71. CAPABILITIES_REF,
  72. COMMAND_DONE,
  73. COMMAND_HAVE,
  74. COMMAND_WANT,
  75. SIDE_BAND_CHANNEL_DATA,
  76. SIDE_BAND_CHANNEL_PROGRESS,
  77. SIDE_BAND_CHANNEL_FATAL,
  78. PktLineParser,
  79. Protocol,
  80. ProtocolFile,
  81. TCP_GIT_PORT,
  82. ZERO_SHA,
  83. extract_capabilities,
  84. )
  85. from dulwich.pack import (
  86. write_pack_objects,
  87. )
  88. from dulwich.refs import (
  89. read_info_refs,
  90. )
  91. def _fileno_can_read(fileno):
  92. """Check if a file descriptor is readable."""
  93. return len(select.select([fileno], [], [], 0)[0]) > 0
  94. def _win32_peek_avail(handle):
  95. """Wrapper around PeekNamedPipe to check how many bytes are available."""
  96. from ctypes import byref, wintypes, windll
  97. c_avail = wintypes.DWORD()
  98. c_message = wintypes.DWORD()
  99. success = windll.kernel32.PeekNamedPipe(
  100. handle, None, 0, None, byref(c_avail),
  101. byref(c_message))
  102. if not success:
  103. raise OSError(wintypes.GetLastError())
  104. return c_avail.value
  105. COMMON_CAPABILITIES = [CAPABILITY_OFS_DELTA, CAPABILITY_SIDE_BAND_64K]
  106. FETCH_CAPABILITIES = ([CAPABILITY_THIN_PACK, CAPABILITY_MULTI_ACK,
  107. CAPABILITY_MULTI_ACK_DETAILED] +
  108. COMMON_CAPABILITIES)
  109. SEND_CAPABILITIES = [CAPABILITY_REPORT_STATUS] + COMMON_CAPABILITIES
  110. class ReportStatusParser(object):
  111. """Handle status as reported by servers with 'report-status' capability.
  112. """
  113. def __init__(self):
  114. self._done = False
  115. self._pack_status = None
  116. self._ref_status_ok = True
  117. self._ref_statuses = []
  118. def check(self):
  119. """Check if there were any errors and, if so, raise exceptions.
  120. :raise SendPackError: Raised when the server could not unpack
  121. :raise UpdateRefsError: Raised when refs could not be updated
  122. """
  123. if self._pack_status not in (b'unpack ok', None):
  124. raise SendPackError(self._pack_status)
  125. if not self._ref_status_ok:
  126. ref_status = {}
  127. ok = set()
  128. for status in self._ref_statuses:
  129. if b' ' not in status:
  130. # malformed response, move on to the next one
  131. continue
  132. status, ref = status.split(b' ', 1)
  133. if status == b'ng':
  134. if b' ' in ref:
  135. ref, status = ref.split(b' ', 1)
  136. else:
  137. ok.add(ref)
  138. ref_status[ref] = status
  139. # TODO(jelmer): don't assume encoding of refs is ascii.
  140. raise UpdateRefsError(', '.join([
  141. refname.decode('ascii') for refname in ref_status
  142. if refname not in ok]) +
  143. ' failed to update', ref_status=ref_status)
  144. def handle_packet(self, pkt):
  145. """Handle a packet.
  146. :raise GitProtocolError: Raised when packets are received after a
  147. flush packet.
  148. """
  149. if self._done:
  150. raise GitProtocolError("received more data after status report")
  151. if pkt is None:
  152. self._done = True
  153. return
  154. if self._pack_status is None:
  155. self._pack_status = pkt.strip()
  156. else:
  157. ref_status = pkt.strip()
  158. self._ref_statuses.append(ref_status)
  159. if not ref_status.startswith(b'ok '):
  160. self._ref_status_ok = False
  161. def read_pkt_refs(proto):
  162. server_capabilities = None
  163. refs = {}
  164. # Receive refs from server
  165. for pkt in proto.read_pkt_seq():
  166. (sha, ref) = pkt.rstrip(b'\n').split(None, 1)
  167. if sha == b'ERR':
  168. raise GitProtocolError(ref)
  169. if server_capabilities is None:
  170. (ref, server_capabilities) = extract_capabilities(ref)
  171. refs[ref] = sha
  172. if len(refs) == 0:
  173. return None, set([])
  174. if refs == {CAPABILITIES_REF: ZERO_SHA}:
  175. refs = {}
  176. return refs, set(server_capabilities)
  177. # TODO(durin42): this doesn't correctly degrade if the server doesn't
  178. # support some capabilities. This should work properly with servers
  179. # that don't support multi_ack.
  180. class GitClient(object):
  181. """Git smart server client.
  182. """
  183. def __init__(self, thin_packs=True, report_activity=None, quiet=False):
  184. """Create a new GitClient instance.
  185. :param thin_packs: Whether or not thin packs should be retrieved
  186. :param report_activity: Optional callback for reporting transport
  187. activity.
  188. """
  189. self._report_activity = report_activity
  190. self._report_status_parser = None
  191. self._fetch_capabilities = set(FETCH_CAPABILITIES)
  192. self._fetch_capabilities.add(capability_agent())
  193. self._send_capabilities = set(SEND_CAPABILITIES)
  194. self._send_capabilities.add(capability_agent())
  195. if quiet:
  196. self._send_capabilities.add(CAPABILITY_QUIET)
  197. if not thin_packs:
  198. self._fetch_capabilities.remove(CAPABILITY_THIN_PACK)
  199. def get_url(self, path):
  200. """Retrieves full url to given path.
  201. :param path: Repository path (as string)
  202. :return: Url to path (as string)
  203. """
  204. raise NotImplementedError(self.get_url)
  205. @classmethod
  206. def from_parsedurl(cls, parsedurl, **kwargs):
  207. """Create an instance of this client from a urlparse.parsed object.
  208. :param parsedurl: Result of urlparse.urlparse()
  209. :return: A `GitClient` object
  210. """
  211. raise NotImplementedError(cls.from_parsedurl)
  212. def send_pack(self, path, update_refs, generate_pack_contents,
  213. progress=None, write_pack=write_pack_objects):
  214. """Upload a pack to a remote repository.
  215. :param path: Repository path (as bytestring)
  216. :param update_refs: Function to determine changes to remote refs.
  217. Receive dict with existing remote refs, returns dict with
  218. changed refs (name -> sha, where sha=ZERO_SHA for deletions)
  219. :param generate_pack_contents: Function that can return a sequence of
  220. the shas of the objects to upload.
  221. :param progress: Optional progress function
  222. :param write_pack: Function called with (file, iterable of objects) to
  223. write the objects returned by generate_pack_contents to the server.
  224. :raises SendPackError: if server rejects the pack data
  225. :raises UpdateRefsError: if the server supports report-status
  226. and rejects ref updates
  227. :return: new_refs dictionary containing the changes that were made
  228. {refname: new_ref}, including deleted refs.
  229. """
  230. raise NotImplementedError(self.send_pack)
  231. def fetch(self, path, target, determine_wants=None, progress=None):
  232. """Fetch into a target repository.
  233. :param path: Path to fetch from (as bytestring)
  234. :param target: Target repository to fetch into
  235. :param determine_wants: Optional function to determine what refs
  236. to fetch. Receives dictionary of name->sha, should return
  237. list of shas to fetch. Defaults to all shas.
  238. :param progress: Optional progress function
  239. :return: Dictionary with all remote refs (not just those fetched)
  240. """
  241. if determine_wants is None:
  242. determine_wants = target.object_store.determine_wants_all
  243. if CAPABILITY_THIN_PACK in self._fetch_capabilities:
  244. # TODO(jelmer): Avoid reading entire file into memory and
  245. # only processing it after the whole file has been fetched.
  246. f = BytesIO()
  247. def commit():
  248. if f.tell():
  249. f.seek(0)
  250. target.object_store.add_thin_pack(f.read, None)
  251. def abort():
  252. pass
  253. else:
  254. f, commit, abort = target.object_store.add_pack()
  255. try:
  256. result = self.fetch_pack(
  257. path, determine_wants, target.get_graph_walker(), f.write,
  258. progress)
  259. except:
  260. abort()
  261. raise
  262. else:
  263. commit()
  264. return result
  265. def fetch_pack(self, path, determine_wants, graph_walker, pack_data,
  266. progress=None):
  267. """Retrieve a pack from a git smart server.
  268. :param path: Remote path to fetch from
  269. :param determine_wants: Function determine what refs
  270. to fetch. Receives dictionary of name->sha, should return
  271. list of shas to fetch.
  272. :param graph_walker: Object with next() and ack().
  273. :param pack_data: Callback called for each bit of data in the pack
  274. :param progress: Callback for progress reports (strings)
  275. :return: Dictionary with all remote refs (not just those fetched)
  276. """
  277. raise NotImplementedError(self.fetch_pack)
  278. def get_refs(self, path):
  279. """Retrieve the current refs from a git smart server.
  280. :param path: Path to the repo to fetch from. (as bytestring)
  281. """
  282. raise NotImplementedError(self.get_refs)
  283. def _parse_status_report(self, proto):
  284. unpack = proto.read_pkt_line().strip()
  285. if unpack != b'unpack ok':
  286. st = True
  287. # flush remaining error data
  288. while st is not None:
  289. st = proto.read_pkt_line()
  290. raise SendPackError(unpack)
  291. statuses = []
  292. errs = False
  293. ref_status = proto.read_pkt_line()
  294. while ref_status:
  295. ref_status = ref_status.strip()
  296. statuses.append(ref_status)
  297. if not ref_status.startswith(b'ok '):
  298. errs = True
  299. ref_status = proto.read_pkt_line()
  300. if errs:
  301. ref_status = {}
  302. ok = set()
  303. for status in statuses:
  304. if b' ' not in status:
  305. # malformed response, move on to the next one
  306. continue
  307. status, ref = status.split(b' ', 1)
  308. if status == b'ng':
  309. if b' ' in ref:
  310. ref, status = ref.split(b' ', 1)
  311. else:
  312. ok.add(ref)
  313. ref_status[ref] = status
  314. raise UpdateRefsError(', '.join([
  315. refname for refname in ref_status if refname not in ok]) +
  316. b' failed to update', ref_status=ref_status)
  317. def _read_side_band64k_data(self, proto, channel_callbacks):
  318. """Read per-channel data.
  319. This requires the side-band-64k capability.
  320. :param proto: Protocol object to read from
  321. :param channel_callbacks: Dictionary mapping channels to packet
  322. handlers to use. None for a callback discards channel data.
  323. """
  324. for pkt in proto.read_pkt_seq():
  325. channel = ord(pkt[:1])
  326. pkt = pkt[1:]
  327. try:
  328. cb = channel_callbacks[channel]
  329. except KeyError:
  330. raise AssertionError('Invalid sideband channel %d' % channel)
  331. else:
  332. if cb is not None:
  333. cb(pkt)
  334. def _handle_receive_pack_head(self, proto, capabilities, old_refs,
  335. new_refs):
  336. """Handle the head of a 'git-receive-pack' request.
  337. :param proto: Protocol object to read from
  338. :param capabilities: List of negotiated capabilities
  339. :param old_refs: Old refs, as received from the server
  340. :param new_refs: Refs to change
  341. :return: (have, want) tuple
  342. """
  343. want = []
  344. have = [x for x in old_refs.values() if not x == ZERO_SHA]
  345. sent_capabilities = False
  346. for refname in new_refs:
  347. if not isinstance(refname, bytes):
  348. raise TypeError('refname is not a bytestring: %r' % refname)
  349. old_sha1 = old_refs.get(refname, ZERO_SHA)
  350. if not isinstance(old_sha1, bytes):
  351. raise TypeError('old sha1 for %s is not a bytestring: %r' %
  352. (refname, old_sha1))
  353. new_sha1 = new_refs.get(refname, ZERO_SHA)
  354. if not isinstance(new_sha1, bytes):
  355. raise TypeError('old sha1 for %s is not a bytestring %r' %
  356. (refname, new_sha1))
  357. if old_sha1 != new_sha1:
  358. if sent_capabilities:
  359. proto.write_pkt_line(old_sha1 + b' ' + new_sha1 + b' ' +
  360. refname)
  361. else:
  362. proto.write_pkt_line(
  363. old_sha1 + b' ' + new_sha1 + b' ' + refname + b'\0' +
  364. b' '.join(capabilities))
  365. sent_capabilities = True
  366. if new_sha1 not in have and new_sha1 != ZERO_SHA:
  367. want.append(new_sha1)
  368. proto.write_pkt_line(None)
  369. return (have, want)
  370. def _handle_receive_pack_tail(self, proto, capabilities, progress=None):
  371. """Handle the tail of a 'git-receive-pack' request.
  372. :param proto: Protocol object to read from
  373. :param capabilities: List of negotiated capabilities
  374. :param progress: Optional progress reporting function
  375. """
  376. if b"side-band-64k" in capabilities:
  377. if progress is None:
  378. def progress(x):
  379. pass
  380. channel_callbacks = {2: progress}
  381. if CAPABILITY_REPORT_STATUS in capabilities:
  382. channel_callbacks[1] = PktLineParser(
  383. self._report_status_parser.handle_packet).parse
  384. self._read_side_band64k_data(proto, channel_callbacks)
  385. else:
  386. if CAPABILITY_REPORT_STATUS in capabilities:
  387. for pkt in proto.read_pkt_seq():
  388. self._report_status_parser.handle_packet(pkt)
  389. if self._report_status_parser is not None:
  390. self._report_status_parser.check()
  391. def _handle_upload_pack_head(self, proto, capabilities, graph_walker,
  392. wants, can_read):
  393. """Handle the head of a 'git-upload-pack' request.
  394. :param proto: Protocol object to read from
  395. :param capabilities: List of negotiated capabilities
  396. :param graph_walker: GraphWalker instance to call .ack() on
  397. :param wants: List of commits to fetch
  398. :param can_read: function that returns a boolean that indicates
  399. whether there is extra graph data to read on proto
  400. """
  401. assert isinstance(wants, list) and isinstance(wants[0], bytes)
  402. proto.write_pkt_line(COMMAND_WANT + b' ' + wants[0] + b' ' +
  403. b' '.join(capabilities) + b'\n')
  404. for want in wants[1:]:
  405. proto.write_pkt_line(COMMAND_WANT + b' ' + want + b'\n')
  406. proto.write_pkt_line(None)
  407. have = next(graph_walker)
  408. while have:
  409. proto.write_pkt_line(COMMAND_HAVE + b' ' + have + b'\n')
  410. if can_read():
  411. pkt = proto.read_pkt_line()
  412. parts = pkt.rstrip(b'\n').split(b' ')
  413. if parts[0] == b'ACK':
  414. graph_walker.ack(parts[1])
  415. if parts[2] in (b'continue', b'common'):
  416. pass
  417. elif parts[2] == b'ready':
  418. break
  419. else:
  420. raise AssertionError(
  421. "%s not in ('continue', 'ready', 'common)" %
  422. parts[2])
  423. have = next(graph_walker)
  424. proto.write_pkt_line(COMMAND_DONE + b'\n')
  425. def _handle_upload_pack_tail(self, proto, capabilities, graph_walker,
  426. pack_data, progress=None, rbufsize=_RBUFSIZE):
  427. """Handle the tail of a 'git-upload-pack' request.
  428. :param proto: Protocol object to read from
  429. :param capabilities: List of negotiated capabilities
  430. :param graph_walker: GraphWalker instance to call .ack() on
  431. :param pack_data: Function to call with pack data
  432. :param progress: Optional progress reporting function
  433. :param rbufsize: Read buffer size
  434. """
  435. pkt = proto.read_pkt_line()
  436. while pkt:
  437. parts = pkt.rstrip(b'\n').split(b' ')
  438. if parts[0] == b'ACK':
  439. graph_walker.ack(parts[1])
  440. if len(parts) < 3 or parts[2] not in (
  441. b'ready', b'continue', b'common'):
  442. break
  443. pkt = proto.read_pkt_line()
  444. if CAPABILITY_SIDE_BAND_64K in capabilities:
  445. if progress is None:
  446. # Just ignore progress data
  447. def progress(x):
  448. pass
  449. self._read_side_band64k_data(proto, {
  450. SIDE_BAND_CHANNEL_DATA: pack_data,
  451. SIDE_BAND_CHANNEL_PROGRESS: progress}
  452. )
  453. else:
  454. while True:
  455. data = proto.read(rbufsize)
  456. if data == b"":
  457. break
  458. pack_data(data)
  459. class TraditionalGitClient(GitClient):
  460. """Traditional Git client."""
  461. DEFAULT_ENCODING = 'utf-8'
  462. def __init__(self, path_encoding=DEFAULT_ENCODING, **kwargs):
  463. self._remote_path_encoding = path_encoding
  464. super(TraditionalGitClient, self).__init__(**kwargs)
  465. def _connect(self, cmd, path):
  466. """Create a connection to the server.
  467. This method is abstract - concrete implementations should
  468. implement their own variant which connects to the server and
  469. returns an initialized Protocol object with the service ready
  470. for use and a can_read function which may be used to see if
  471. reads would block.
  472. :param cmd: The git service name to which we should connect.
  473. :param path: The path we should pass to the service. (as bytestirng)
  474. """
  475. raise NotImplementedError()
  476. def send_pack(self, path, update_refs, generate_pack_contents,
  477. progress=None, write_pack=write_pack_objects):
  478. """Upload a pack to a remote repository.
  479. :param path: Repository path (as bytestring)
  480. :param update_refs: Function to determine changes to remote refs.
  481. Receive dict with existing remote refs, returns dict with
  482. changed refs (name -> sha, where sha=ZERO_SHA for deletions)
  483. :param generate_pack_contents: Function that can return a sequence of
  484. the shas of the objects to upload.
  485. :param progress: Optional callback called with progress updates
  486. :param write_pack: Function called with (file, iterable of objects) to
  487. write the objects returned by generate_pack_contents to the server.
  488. :raises SendPackError: if server rejects the pack data
  489. :raises UpdateRefsError: if the server supports report-status
  490. and rejects ref updates
  491. :return: new_refs dictionary containing the changes that were made
  492. {refname: new_ref}, including deleted refs.
  493. """
  494. proto, unused_can_read = self._connect(b'receive-pack', path)
  495. with proto:
  496. old_refs, server_capabilities = read_pkt_refs(proto)
  497. negotiated_capabilities = (
  498. self._send_capabilities & server_capabilities)
  499. if CAPABILITY_REPORT_STATUS in negotiated_capabilities:
  500. self._report_status_parser = ReportStatusParser()
  501. report_status_parser = self._report_status_parser
  502. try:
  503. new_refs = orig_new_refs = update_refs(dict(old_refs))
  504. except:
  505. proto.write_pkt_line(None)
  506. raise
  507. if CAPABILITY_DELETE_REFS not in server_capabilities:
  508. # Server does not support deletions. Fail later.
  509. new_refs = dict(orig_new_refs)
  510. for ref, sha in orig_new_refs.items():
  511. if sha == ZERO_SHA:
  512. if CAPABILITY_REPORT_STATUS in negotiated_capabilities:
  513. report_status_parser._ref_statuses.append(
  514. b'ng ' + sha +
  515. b' remote does not support deleting refs')
  516. report_status_parser._ref_status_ok = False
  517. del new_refs[ref]
  518. if new_refs is None:
  519. proto.write_pkt_line(None)
  520. return old_refs
  521. if len(new_refs) == 0 and len(orig_new_refs):
  522. # NOOP - Original new refs filtered out by policy
  523. proto.write_pkt_line(None)
  524. if report_status_parser is not None:
  525. report_status_parser.check()
  526. return old_refs
  527. (have, want) = self._handle_receive_pack_head(
  528. proto, negotiated_capabilities, old_refs, new_refs)
  529. if (not want and
  530. set(new_refs.items()).issubset(set(old_refs.items()))):
  531. return new_refs
  532. objects = generate_pack_contents(have, want)
  533. dowrite = len(objects) > 0
  534. dowrite = dowrite or any(old_refs.get(ref) != sha
  535. for (ref, sha) in new_refs.items()
  536. if sha != ZERO_SHA)
  537. if dowrite:
  538. write_pack(proto.write_file(), objects)
  539. self._handle_receive_pack_tail(
  540. proto, negotiated_capabilities, progress)
  541. return new_refs
  542. def fetch_pack(self, path, determine_wants, graph_walker, pack_data,
  543. progress=None):
  544. """Retrieve a pack from a git smart server.
  545. :param path: Remote path to fetch from
  546. :param determine_wants: Function determine what refs
  547. to fetch. Receives dictionary of name->sha, should return
  548. list of shas to fetch.
  549. :param graph_walker: Object with next() and ack().
  550. :param pack_data: Callback called for each bit of data in the pack
  551. :param progress: Callback for progress reports (strings)
  552. :return: Dictionary with all remote refs (not just those fetched)
  553. """
  554. proto, can_read = self._connect(b'upload-pack', path)
  555. with proto:
  556. refs, server_capabilities = read_pkt_refs(proto)
  557. negotiated_capabilities = (
  558. self._fetch_capabilities & server_capabilities)
  559. if refs is None:
  560. proto.write_pkt_line(None)
  561. return refs
  562. try:
  563. wants = determine_wants(refs)
  564. except:
  565. proto.write_pkt_line(None)
  566. raise
  567. if wants is not None:
  568. wants = [cid for cid in wants if cid != ZERO_SHA]
  569. if not wants:
  570. proto.write_pkt_line(None)
  571. return refs
  572. self._handle_upload_pack_head(
  573. proto, negotiated_capabilities, graph_walker, wants, can_read)
  574. self._handle_upload_pack_tail(
  575. proto, negotiated_capabilities, graph_walker, pack_data,
  576. progress)
  577. return refs
  578. def get_refs(self, path):
  579. """Retrieve the current refs from a git smart server."""
  580. # stock `git ls-remote` uses upload-pack
  581. proto, _ = self._connect(b'upload-pack', path)
  582. with proto:
  583. refs, _ = read_pkt_refs(proto)
  584. proto.write_pkt_line(None)
  585. return refs
  586. def archive(self, path, committish, write_data, progress=None,
  587. write_error=None):
  588. proto, can_read = self._connect(b'upload-archive', path)
  589. with proto:
  590. proto.write_pkt_line(b"argument " + committish)
  591. proto.write_pkt_line(None)
  592. pkt = proto.read_pkt_line()
  593. if pkt == b"NACK\n":
  594. return
  595. elif pkt == b"ACK\n":
  596. pass
  597. elif pkt.startswith(b"ERR "):
  598. raise GitProtocolError(pkt[4:].rstrip(b"\n"))
  599. else:
  600. raise AssertionError("invalid response %r" % pkt)
  601. ret = proto.read_pkt_line()
  602. if ret is not None:
  603. raise AssertionError("expected pkt tail")
  604. self._read_side_band64k_data(proto, {
  605. SIDE_BAND_CHANNEL_DATA: write_data,
  606. SIDE_BAND_CHANNEL_PROGRESS: progress,
  607. SIDE_BAND_CHANNEL_FATAL: write_error})
  608. class TCPGitClient(TraditionalGitClient):
  609. """A Git Client that works over TCP directly (i.e. git://)."""
  610. def __init__(self, host, port=None, **kwargs):
  611. if port is None:
  612. port = TCP_GIT_PORT
  613. self._host = host
  614. self._port = port
  615. super(TCPGitClient, self).__init__(**kwargs)
  616. @classmethod
  617. def from_parsedurl(cls, parsedurl, **kwargs):
  618. return cls(parsedurl.hostname, port=parsedurl.port, **kwargs)
  619. def get_url(self, path):
  620. netloc = self._host
  621. if self._port is not None and self._port != TCP_GIT_PORT:
  622. netloc += ":%d" % self._port
  623. return urlparse.urlunsplit(("git", netloc, path, '', ''))
  624. def _connect(self, cmd, path):
  625. if not isinstance(cmd, bytes):
  626. raise TypeError(cmd)
  627. if not isinstance(path, bytes):
  628. path = path.encode(self._remote_path_encoding)
  629. sockaddrs = socket.getaddrinfo(
  630. self._host, self._port, socket.AF_UNSPEC, socket.SOCK_STREAM)
  631. s = None
  632. err = socket.error("no address found for %s" % self._host)
  633. for (family, socktype, proto, canonname, sockaddr) in sockaddrs:
  634. s = socket.socket(family, socktype, proto)
  635. s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
  636. try:
  637. s.connect(sockaddr)
  638. break
  639. except socket.error as err:
  640. if s is not None:
  641. s.close()
  642. s = None
  643. if s is None:
  644. raise err
  645. # -1 means system default buffering
  646. rfile = s.makefile('rb', -1)
  647. # 0 means unbuffered
  648. wfile = s.makefile('wb', 0)
  649. def close():
  650. rfile.close()
  651. wfile.close()
  652. s.close()
  653. proto = Protocol(rfile.read, wfile.write, close,
  654. report_activity=self._report_activity)
  655. if path.startswith(b"/~"):
  656. path = path[1:]
  657. # TODO(jelmer): Alternative to ascii?
  658. proto.send_cmd(
  659. b'git-' + cmd, path, b'host=' + self._host.encode('ascii'))
  660. return proto, lambda: _fileno_can_read(s)
  661. class SubprocessWrapper(object):
  662. """A socket-like object that talks to a subprocess via pipes."""
  663. def __init__(self, proc):
  664. self.proc = proc
  665. if sys.version_info[0] == 2:
  666. self.read = proc.stdout.read
  667. else:
  668. self.read = BufferedReader(proc.stdout).read
  669. self.write = proc.stdin.write
  670. def can_read(self):
  671. if sys.platform == 'win32':
  672. from msvcrt import get_osfhandle
  673. handle = get_osfhandle(self.proc.stdout.fileno())
  674. return _win32_peek_avail(handle) != 0
  675. else:
  676. return _fileno_can_read(self.proc.stdout.fileno())
  677. def close(self):
  678. self.proc.stdin.close()
  679. self.proc.stdout.close()
  680. if self.proc.stderr:
  681. self.proc.stderr.close()
  682. self.proc.wait()
  683. def find_git_command():
  684. """Find command to run for system Git (usually C Git).
  685. """
  686. if sys.platform == 'win32': # support .exe, .bat and .cmd
  687. try: # to avoid overhead
  688. import win32api
  689. except ImportError: # run through cmd.exe with some overhead
  690. return ['cmd', '/c', 'git']
  691. else:
  692. status, git = win32api.FindExecutable('git')
  693. return [git]
  694. else:
  695. return ['git']
  696. class SubprocessGitClient(TraditionalGitClient):
  697. """Git client that talks to a server using a subprocess."""
  698. def __init__(self, **kwargs):
  699. self._connection = None
  700. self._stderr = None
  701. self._stderr = kwargs.get('stderr')
  702. if 'stderr' in kwargs:
  703. del kwargs['stderr']
  704. super(SubprocessGitClient, self).__init__(**kwargs)
  705. @classmethod
  706. def from_parsedurl(cls, parsedurl, **kwargs):
  707. return cls(**kwargs)
  708. git_command = None
  709. def _connect(self, service, path):
  710. if not isinstance(service, bytes):
  711. raise TypeError(service)
  712. if isinstance(path, bytes):
  713. path = path.decode(self._remote_path_encoding)
  714. if self.git_command is None:
  715. git_command = find_git_command()
  716. argv = git_command + [service.decode('ascii'), path]
  717. p = SubprocessWrapper(
  718. subprocess.Popen(argv, bufsize=0, stdin=subprocess.PIPE,
  719. stdout=subprocess.PIPE,
  720. stderr=self._stderr))
  721. return Protocol(p.read, p.write, p.close,
  722. report_activity=self._report_activity), p.can_read
  723. class LocalGitClient(GitClient):
  724. """Git Client that just uses a local Repo."""
  725. def __init__(self, thin_packs=True, report_activity=None):
  726. """Create a new LocalGitClient instance.
  727. :param thin_packs: Whether or not thin packs should be retrieved
  728. :param report_activity: Optional callback for reporting transport
  729. activity.
  730. """
  731. self._report_activity = report_activity
  732. # Ignore the thin_packs argument
  733. def get_url(self, path):
  734. return urlparse.urlunsplit(('file', '', path, '', ''))
  735. @classmethod
  736. def from_parsedurl(cls, parsedurl, **kwargs):
  737. return cls(**kwargs)
  738. @classmethod
  739. def _open_repo(cls, path):
  740. from dulwich.repo import Repo
  741. if not isinstance(path, str):
  742. path = path.decode(sys.getfilesystemencoding())
  743. return closing(Repo(path))
  744. def send_pack(self, path, update_refs, generate_pack_contents,
  745. progress=None, write_pack=write_pack_objects):
  746. """Upload a pack to a remote repository.
  747. :param path: Repository path (as bytestring)
  748. :param update_refs: Function to determine changes to remote refs.
  749. Receive dict with existing remote refs, returns dict with
  750. changed refs (name -> sha, where sha=ZERO_SHA for deletions)
  751. :param generate_pack_contents: Function that can return a sequence of
  752. the shas of the objects to upload.
  753. :param progress: Optional progress function
  754. :param write_pack: Function called with (file, iterable of objects) to
  755. write the objects returned by generate_pack_contents to the server.
  756. :raises SendPackError: if server rejects the pack data
  757. :raises UpdateRefsError: if the server supports report-status
  758. and rejects ref updates
  759. :return: new_refs dictionary containing the changes that were made
  760. {refname: new_ref}, including deleted refs.
  761. """
  762. if not progress:
  763. def progress(x):
  764. pass
  765. with self._open_repo(path) as target:
  766. old_refs = target.get_refs()
  767. new_refs = update_refs(dict(old_refs))
  768. have = [sha1 for sha1 in old_refs.values() if sha1 != ZERO_SHA]
  769. want = []
  770. for refname, new_sha1 in new_refs.items():
  771. if (new_sha1 not in have and
  772. new_sha1 not in want and
  773. new_sha1 != ZERO_SHA):
  774. want.append(new_sha1)
  775. if (not want and
  776. set(new_refs.items()).issubset(set(old_refs.items()))):
  777. return new_refs
  778. target.object_store.add_objects(generate_pack_contents(have, want))
  779. for refname, new_sha1 in new_refs.items():
  780. old_sha1 = old_refs.get(refname, ZERO_SHA)
  781. if new_sha1 != ZERO_SHA:
  782. if not target.refs.set_if_equals(
  783. refname, old_sha1, new_sha1):
  784. progress('unable to set %s to %s' %
  785. (refname, new_sha1))
  786. else:
  787. if not target.refs.remove_if_equals(refname, old_sha1):
  788. progress('unable to remove %s' % refname)
  789. return new_refs
  790. def fetch(self, path, target, determine_wants=None, progress=None):
  791. """Fetch into a target repository.
  792. :param path: Path to fetch from (as bytestring)
  793. :param target: Target repository to fetch into
  794. :param determine_wants: Optional function determine what refs
  795. to fetch. Receives dictionary of name->sha, should return
  796. list of shas to fetch. Defaults to all shas.
  797. :param progress: Optional progress function
  798. :return: Dictionary with all remote refs (not just those fetched)
  799. """
  800. with self._open_repo(path) as r:
  801. return r.fetch(target, determine_wants=determine_wants,
  802. progress=progress)
  803. def fetch_pack(self, path, determine_wants, graph_walker, pack_data,
  804. progress=None):
  805. """Retrieve a pack from a git smart server.
  806. :param path: Remote path to fetch from
  807. :param determine_wants: Function determine what refs
  808. to fetch. Receives dictionary of name->sha, should return
  809. list of shas to fetch.
  810. :param graph_walker: Object with next() and ack().
  811. :param pack_data: Callback called for each bit of data in the pack
  812. :param progress: Callback for progress reports (strings)
  813. :return: Dictionary with all remote refs (not just those fetched)
  814. """
  815. with self._open_repo(path) as r:
  816. objects_iter = r.fetch_objects(
  817. determine_wants, graph_walker, progress)
  818. # Did the process short-circuit (e.g. in a stateless RPC call)?
  819. # Note that the client still expects a 0-object pack in most cases.
  820. if objects_iter is None:
  821. return
  822. write_pack_objects(ProtocolFile(None, pack_data), objects_iter)
  823. return r.get_refs()
  824. def get_refs(self, path):
  825. """Retrieve the current refs from a git smart server."""
  826. with self._open_repo(path) as target:
  827. return target.get_refs()
  828. # What Git client to use for local access
  829. default_local_git_client_cls = LocalGitClient
  830. class SSHVendor(object):
  831. """A client side SSH implementation."""
  832. def connect_ssh(self, host, command, username=None, port=None):
  833. # This function was deprecated in 0.9.1
  834. import warnings
  835. warnings.warn(
  836. "SSHVendor.connect_ssh has been renamed to SSHVendor.run_command",
  837. DeprecationWarning)
  838. return self.run_command(host, command, username=username, port=port)
  839. def run_command(self, host, command, username=None, port=None):
  840. """Connect to an SSH server.
  841. Run a command remotely and return a file-like object for interaction
  842. with the remote command.
  843. :param host: Host name
  844. :param command: Command to run (as argv array)
  845. :param username: Optional ame of user to log in as
  846. :param port: Optional SSH port to use
  847. """
  848. raise NotImplementedError(self.run_command)
  849. class SubprocessSSHVendor(SSHVendor):
  850. """SSH vendor that shells out to the local 'ssh' command."""
  851. def run_command(self, host, command, username=None, port=None):
  852. # FIXME: This has no way to deal with passwords..
  853. args = ['ssh', '-x']
  854. if port is not None:
  855. args.extend(['-p', str(port)])
  856. if username is not None:
  857. host = '%s@%s' % (username, host)
  858. args.append(host)
  859. proc = subprocess.Popen(args + [command], bufsize=0,
  860. stdin=subprocess.PIPE,
  861. stdout=subprocess.PIPE)
  862. return SubprocessWrapper(proc)
  863. def ParamikoSSHVendor(**kwargs):
  864. import warnings
  865. warnings.warn(
  866. "ParamikoSSHVendor has been moved to dulwich.contrib.paramiko_vendor.",
  867. DeprecationWarning)
  868. from dulwich.contrib.paramiko_vendor import ParamikoSSHVendor
  869. return ParamikoSSHVendor(**kwargs)
  870. # Can be overridden by users
  871. get_ssh_vendor = SubprocessSSHVendor
  872. class SSHGitClient(TraditionalGitClient):
  873. def __init__(self, host, port=None, username=None, vendor=None, **kwargs):
  874. self.host = host
  875. self.port = port
  876. self.username = username
  877. super(SSHGitClient, self).__init__(**kwargs)
  878. self.alternative_paths = {}
  879. if vendor is not None:
  880. self.ssh_vendor = vendor
  881. else:
  882. self.ssh_vendor = get_ssh_vendor()
  883. def get_url(self, path):
  884. netloc = self.host
  885. if self.port is not None:
  886. netloc += ":%d" % self.port
  887. if self.username is not None:
  888. netloc = urlquote(self.username, '@/:') + "@" + netloc
  889. return urlparse.urlunsplit(('ssh', netloc, path, '', ''))
  890. @classmethod
  891. def from_parsedurl(cls, parsedurl, **kwargs):
  892. return cls(host=parsedurl.hostname, port=parsedurl.port,
  893. username=parsedurl.username, **kwargs)
  894. def _get_cmd_path(self, cmd):
  895. cmd = self.alternative_paths.get(cmd, b'git-' + cmd)
  896. assert isinstance(cmd, bytes)
  897. return cmd
  898. def _connect(self, cmd, path):
  899. if not isinstance(cmd, bytes):
  900. raise TypeError(cmd)
  901. if isinstance(path, bytes):
  902. path = path.decode(self._remote_path_encoding)
  903. if path.startswith("/~"):
  904. path = path[1:]
  905. argv = (self._get_cmd_path(cmd).decode(self._remote_path_encoding) +
  906. " '" + path + "'")
  907. con = self.ssh_vendor.run_command(
  908. self.host, argv, port=self.port, username=self.username)
  909. return (Protocol(con.read, con.write, con.close,
  910. report_activity=self._report_activity),
  911. con.can_read)
  912. def default_user_agent_string():
  913. return "dulwich/%s" % ".".join([str(x) for x in dulwich.__version__])
  914. def default_urllib2_opener(config):
  915. if config is not None:
  916. proxy_server = config.get("http", "proxy")
  917. else:
  918. proxy_server = None
  919. handlers = []
  920. if proxy_server is not None:
  921. handlers.append(urllib2.ProxyHandler({"http": proxy_server}))
  922. opener = urllib2.build_opener(*handlers)
  923. if config is not None:
  924. user_agent = config.get("http", "useragent")
  925. else:
  926. user_agent = None
  927. if user_agent is None:
  928. user_agent = default_user_agent_string()
  929. opener.addheaders = [('User-agent', user_agent)]
  930. return opener
  931. class HttpGitClient(GitClient):
  932. def __init__(self, base_url, dumb=None, opener=None, config=None,
  933. username=None, password=None, **kwargs):
  934. self._base_url = base_url.rstrip("/") + "/"
  935. self._username = username
  936. self._password = password
  937. self.dumb = dumb
  938. if opener is None:
  939. self.opener = default_urllib2_opener(config)
  940. else:
  941. self.opener = opener
  942. if username is not None:
  943. pass_man = urllib2.HTTPPasswordMgrWithDefaultRealm()
  944. pass_man.add_password(None, base_url, username, password)
  945. self.opener.add_handler(urllib2.HTTPBasicAuthHandler(pass_man))
  946. GitClient.__init__(self, **kwargs)
  947. def get_url(self, path):
  948. return self._get_url(path).rstrip("/")
  949. @classmethod
  950. def from_parsedurl(cls, parsedurl, **kwargs):
  951. auth, host = urllib2.splituser(parsedurl.netloc)
  952. password = parsedurl.password
  953. if password is not None:
  954. password = urlunquote(password)
  955. username = parsedurl.username
  956. if username is not None:
  957. username = urlunquote(username)
  958. # TODO(jelmer): This also strips the username
  959. parsedurl = parsedurl._replace(netloc=host)
  960. return cls(urlparse.urlunparse(parsedurl),
  961. password=password, username=username, **kwargs)
  962. def __repr__(self):
  963. return "%s(%r, dumb=%r)" % (
  964. type(self).__name__, self._base_url, self.dumb)
  965. def _get_url(self, path):
  966. if not isinstance(path, str):
  967. # TODO(jelmer): this is unrelated to the local filesystem;
  968. # This is not necessarily the right encoding to decode the path
  969. # with.
  970. path = path.decode(sys.getfilesystemencoding())
  971. return urlparse.urljoin(self._base_url, path).rstrip("/") + "/"
  972. def _http_request(self, url, headers={}, data=None):
  973. req = urllib2.Request(url, headers=headers, data=data)
  974. try:
  975. resp = self.opener.open(req)
  976. except urllib2.HTTPError as e:
  977. if e.code == 404:
  978. raise NotGitRepository()
  979. if e.code != 200:
  980. raise GitProtocolError("unexpected http response %d" % e.code)
  981. return resp
  982. def _discover_references(self, service, url):
  983. assert url[-1] == "/"
  984. url = urlparse.urljoin(url, "info/refs")
  985. headers = {}
  986. if self.dumb is not False:
  987. url += "?service=%s" % service.decode('ascii')
  988. headers["Content-Type"] = "application/x-%s-request" % (
  989. service.decode('ascii'))
  990. resp = self._http_request(url, headers)
  991. try:
  992. content_type = resp.info().gettype()
  993. except AttributeError:
  994. content_type = resp.info().get_content_type()
  995. try:
  996. self.dumb = (not content_type.startswith("application/x-git-"))
  997. if not self.dumb:
  998. proto = Protocol(resp.read, None)
  999. # The first line should mention the service
  1000. try:
  1001. [pkt] = list(proto.read_pkt_seq())
  1002. except ValueError:
  1003. raise GitProtocolError(
  1004. "unexpected number of packets received")
  1005. if pkt.rstrip(b'\n') != (b'# service=' + service):
  1006. raise GitProtocolError(
  1007. "unexpected first line %r from smart server" % pkt)
  1008. return read_pkt_refs(proto)
  1009. else:
  1010. return read_info_refs(resp), set()
  1011. finally:
  1012. resp.close()
  1013. def _smart_request(self, service, url, data):
  1014. assert url[-1] == "/"
  1015. url = urlparse.urljoin(url, service)
  1016. headers = {
  1017. "Content-Type": "application/x-%s-request" % service
  1018. }
  1019. resp = self._http_request(url, headers, data)
  1020. try:
  1021. content_type = resp.info().gettype()
  1022. except AttributeError:
  1023. content_type = resp.info().get_content_type()
  1024. if content_type != (
  1025. "application/x-%s-result" % service):
  1026. raise GitProtocolError("Invalid content-type from server: %s"
  1027. % content_type)
  1028. return resp
  1029. def send_pack(self, path, update_refs, generate_pack_contents,
  1030. progress=None, write_pack=write_pack_objects):
  1031. """Upload a pack to a remote repository.
  1032. :param path: Repository path (as bytestring)
  1033. :param update_refs: Function to determine changes to remote refs.
  1034. Receive dict with existing remote refs, returns dict with
  1035. changed refs (name -> sha, where sha=ZERO_SHA for deletions)
  1036. :param generate_pack_contents: Function that can return a sequence of
  1037. the shas of the objects to upload.
  1038. :param progress: Optional progress function
  1039. :param write_pack: Function called with (file, iterable of objects) to
  1040. write the objects returned by generate_pack_contents to the server.
  1041. :raises SendPackError: if server rejects the pack data
  1042. :raises UpdateRefsError: if the server supports report-status
  1043. and rejects ref updates
  1044. :return: new_refs dictionary containing the changes that were made
  1045. {refname: new_ref}, including deleted refs.
  1046. """
  1047. url = self._get_url(path)
  1048. old_refs, server_capabilities = self._discover_references(
  1049. b"git-receive-pack", url)
  1050. negotiated_capabilities = self._send_capabilities & server_capabilities
  1051. if CAPABILITY_REPORT_STATUS in negotiated_capabilities:
  1052. self._report_status_parser = ReportStatusParser()
  1053. new_refs = update_refs(dict(old_refs))
  1054. if new_refs is None:
  1055. # Determine wants function is aborting the push.
  1056. return old_refs
  1057. if self.dumb:
  1058. raise NotImplementedError(self.fetch_pack)
  1059. req_data = BytesIO()
  1060. req_proto = Protocol(None, req_data.write)
  1061. (have, want) = self._handle_receive_pack_head(
  1062. req_proto, negotiated_capabilities, old_refs, new_refs)
  1063. if not want and set(new_refs.items()).issubset(set(old_refs.items())):
  1064. return new_refs
  1065. objects = generate_pack_contents(have, want)
  1066. if len(objects) > 0:
  1067. write_pack(req_proto.write_file(), objects)
  1068. resp = self._smart_request("git-receive-pack", url,
  1069. data=req_data.getvalue())
  1070. try:
  1071. resp_proto = Protocol(resp.read, None)
  1072. self._handle_receive_pack_tail(
  1073. resp_proto, negotiated_capabilities, progress)
  1074. return new_refs
  1075. finally:
  1076. resp.close()
  1077. def fetch_pack(self, path, determine_wants, graph_walker, pack_data,
  1078. progress=None):
  1079. """Retrieve a pack from a git smart server.
  1080. :param determine_wants: Callback that returns list of commits to fetch
  1081. :param graph_walker: Object with next() and ack().
  1082. :param pack_data: Callback called for each bit of data in the pack
  1083. :param progress: Callback for progress reports (strings)
  1084. :return: Dictionary with all remote refs (not just those fetched)
  1085. """
  1086. url = self._get_url(path)
  1087. refs, server_capabilities = self._discover_references(
  1088. b"git-upload-pack", url)
  1089. negotiated_capabilities = (
  1090. self._fetch_capabilities & server_capabilities)
  1091. wants = determine_wants(refs)
  1092. if wants is not None:
  1093. wants = [cid for cid in wants if cid != ZERO_SHA]
  1094. if not wants:
  1095. return refs
  1096. if self.dumb:
  1097. raise NotImplementedError(self.send_pack)
  1098. req_data = BytesIO()
  1099. req_proto = Protocol(None, req_data.write)
  1100. self._handle_upload_pack_head(
  1101. req_proto, negotiated_capabilities, graph_walker, wants,
  1102. lambda: False)
  1103. resp = self._smart_request(
  1104. "git-upload-pack", url, data=req_data.getvalue())
  1105. try:
  1106. resp_proto = Protocol(resp.read, None)
  1107. self._handle_upload_pack_tail(
  1108. resp_proto, negotiated_capabilities, graph_walker, pack_data,
  1109. progress)
  1110. return refs
  1111. finally:
  1112. resp.close()
  1113. def get_refs(self, path):
  1114. """Retrieve the current refs from a git smart server."""
  1115. url = self._get_url(path)
  1116. refs, _ = self._discover_references(
  1117. b"git-upload-pack", url)
  1118. return refs
  1119. def get_transport_and_path_from_url(url, config=None, **kwargs):
  1120. """Obtain a git client from a URL.
  1121. :param url: URL to open (a unicode string)
  1122. :param config: Optional config object
  1123. :param thin_packs: Whether or not thin packs should be retrieved
  1124. :param report_activity: Optional callback for reporting transport
  1125. activity.
  1126. :return: Tuple with client instance and relative path.
  1127. """
  1128. parsed = urlparse.urlparse(url)
  1129. if parsed.scheme == 'git':
  1130. return (TCPGitClient.from_parsedurl(parsed, **kwargs),
  1131. parsed.path)
  1132. elif parsed.scheme in ('git+ssh', 'ssh'):
  1133. return SSHGitClient.from_parsedurl(parsed, **kwargs), parsed.path
  1134. elif parsed.scheme in ('http', 'https'):
  1135. return HttpGitClient.from_parsedurl(
  1136. parsed, config=config, **kwargs), parsed.path
  1137. elif parsed.scheme == 'file':
  1138. return default_local_git_client_cls.from_parsedurl(
  1139. parsed, **kwargs), parsed.path
  1140. raise ValueError("unknown scheme '%s'" % parsed.scheme)
  1141. def get_transport_and_path(location, **kwargs):
  1142. """Obtain a git client from a URL.
  1143. :param location: URL or path (a string)
  1144. :param config: Optional config object
  1145. :param thin_packs: Whether or not thin packs should be retrieved
  1146. :param report_activity: Optional callback for reporting transport
  1147. activity.
  1148. :return: Tuple with client instance and relative path.
  1149. """
  1150. # First, try to parse it as a URL
  1151. try:
  1152. return get_transport_and_path_from_url(location, **kwargs)
  1153. except ValueError:
  1154. pass
  1155. if (sys.platform == 'win32' and
  1156. location[0].isalpha() and location[1:3] == ':\\'):
  1157. # Windows local path
  1158. return default_local_git_client_cls(**kwargs), location
  1159. if ':' in location and '@' not in location:
  1160. # SSH with no user@, zero or one leading slash.
  1161. (hostname, path) = location.split(':', 1)
  1162. return SSHGitClient(hostname, **kwargs), path
  1163. elif ':' in location:
  1164. # SSH with user@host:foo.
  1165. user_host, path = location.split(':', 1)
  1166. if '@' in user_host:
  1167. user, host = user_host.rsplit('@', 1)
  1168. else:
  1169. user = None
  1170. host = user_host
  1171. return SSHGitClient(host, username=user, **kwargs), path
  1172. # Otherwise, assume it's a local path.
  1173. return default_local_git_client_cls(**kwargs), location