client.py 48 KB

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