porcelain.py 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710
  1. # porcelain.py -- Porcelain-like layer on top of Dulwich
  2. # Copyright (C) 2013 Jelmer Vernooij <jelmer@jelmer.uk>
  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. """Simple wrapper that provides porcelain-like functions on top of Dulwich.
  21. Currently implemented:
  22. * archive
  23. * add
  24. * branch{_create,_delete,_list}
  25. * check-ignore
  26. * checkout
  27. * clone
  28. * commit
  29. * commit-tree
  30. * daemon
  31. * describe
  32. * diff-tree
  33. * fetch
  34. * init
  35. * ls-files
  36. * ls-remote
  37. * ls-tree
  38. * pull
  39. * push
  40. * rm
  41. * remote{_add}
  42. * receive-pack
  43. * reset
  44. * rev-list
  45. * tag{_create,_delete,_list}
  46. * upload-pack
  47. * update-server-info
  48. * status
  49. * symbolic-ref
  50. These functions are meant to behave similarly to the git subcommands.
  51. Differences in behaviour are considered bugs.
  52. Functions should generally accept both unicode strings and bytestrings
  53. """
  54. from collections import namedtuple
  55. from contextlib import (
  56. closing,
  57. contextmanager,
  58. )
  59. from io import BytesIO, RawIOBase
  60. import datetime
  61. import os
  62. from pathlib import Path
  63. import posixpath
  64. import shutil
  65. import stat
  66. import sys
  67. import time
  68. from typing import (
  69. Dict,
  70. Optional,
  71. Tuple,
  72. Union,
  73. )
  74. from dulwich.archive import (
  75. tar_stream,
  76. )
  77. from dulwich.client import (
  78. get_transport_and_path,
  79. )
  80. from dulwich.config import (
  81. StackedConfig,
  82. )
  83. from dulwich.diff_tree import (
  84. CHANGE_ADD,
  85. CHANGE_DELETE,
  86. CHANGE_MODIFY,
  87. CHANGE_RENAME,
  88. CHANGE_COPY,
  89. RENAME_CHANGE_TYPES,
  90. )
  91. from dulwich.errors import (
  92. SendPackError,
  93. )
  94. from dulwich.graph import (
  95. can_fast_forward,
  96. )
  97. from dulwich.ignore import IgnoreFilterManager
  98. from dulwich.index import (
  99. blob_from_path_and_stat,
  100. get_unstaged_changes,
  101. )
  102. from dulwich.object_store import (
  103. tree_lookup_path,
  104. )
  105. from dulwich.objects import (
  106. Commit,
  107. Tag,
  108. format_timezone,
  109. parse_timezone,
  110. pretty_format_tree_entry,
  111. )
  112. from dulwich.objectspec import (
  113. parse_commit,
  114. parse_object,
  115. parse_ref,
  116. parse_reftuples,
  117. parse_tree,
  118. )
  119. from dulwich.pack import (
  120. write_pack_index,
  121. write_pack_objects,
  122. )
  123. from dulwich.patch import write_tree_diff
  124. from dulwich.protocol import (
  125. Protocol,
  126. ZERO_SHA,
  127. )
  128. from dulwich.refs import (
  129. ANNOTATED_TAG_SUFFIX,
  130. LOCAL_BRANCH_PREFIX,
  131. strip_peeled_refs,
  132. RefsContainer,
  133. )
  134. from dulwich.repo import (BaseRepo, Repo)
  135. from dulwich.server import (
  136. FileSystemBackend,
  137. TCPGitServer,
  138. ReceivePackHandler,
  139. UploadPackHandler,
  140. update_server_info as server_update_server_info,
  141. )
  142. # Module level tuple definition for status output
  143. GitStatus = namedtuple('GitStatus', 'staged unstaged untracked')
  144. class NoneStream(RawIOBase):
  145. """Fallback if stdout or stderr are unavailable, does nothing."""
  146. def read(self, size=-1):
  147. return None
  148. def readall(self):
  149. return None
  150. def readinto(self, b):
  151. return None
  152. def write(self, b):
  153. return None
  154. default_bytes_out_stream = (
  155. getattr(sys.stdout, 'buffer', None) or NoneStream())
  156. default_bytes_err_stream = (
  157. getattr(sys.stderr, 'buffer', None) or NoneStream())
  158. DEFAULT_ENCODING = 'utf-8'
  159. class Error(Exception):
  160. """Porcelain-based error. """
  161. def __init__(self, msg, inner=None):
  162. super(Error, self).__init__(msg)
  163. self.inner = inner
  164. class RemoteExists(Error):
  165. """Raised when the remote already exists."""
  166. def open_repo(path_or_repo):
  167. """Open an argument that can be a repository or a path for a repository."""
  168. if isinstance(path_or_repo, BaseRepo):
  169. return path_or_repo
  170. return Repo(path_or_repo)
  171. @contextmanager
  172. def _noop_context_manager(obj):
  173. """Context manager that has the same api as closing but does nothing."""
  174. yield obj
  175. def open_repo_closing(path_or_repo):
  176. """Open an argument that can be a repository or a path for a repository.
  177. returns a context manager that will close the repo on exit if the argument
  178. is a path, else does nothing if the argument is a repo.
  179. """
  180. if isinstance(path_or_repo, BaseRepo):
  181. return _noop_context_manager(path_or_repo)
  182. return closing(Repo(path_or_repo))
  183. def path_to_tree_path(repopath, path, tree_encoding=DEFAULT_ENCODING):
  184. """Convert a path to a path usable in an index, e.g. bytes and relative to
  185. the repository root.
  186. Args:
  187. repopath: Repository path, absolute or relative to the cwd
  188. path: A path, absolute or relative to the cwd
  189. Returns: A path formatted for use in e.g. an index
  190. """
  191. path = Path(path).resolve()
  192. repopath = Path(repopath).resolve()
  193. relpath = path.relative_to(repopath)
  194. if sys.platform == 'win32':
  195. return str(relpath).replace(os.path.sep, '/').encode(tree_encoding)
  196. else:
  197. return bytes(relpath)
  198. class DivergedBranches(Error):
  199. """Branches have diverged and fast-forward is not possible."""
  200. def check_diverged(store, current_sha, new_sha):
  201. """Check if updating to a sha can be done with fast forwarding.
  202. Args:
  203. store: Object store
  204. current_sha: Current head sha
  205. new_sha: New head sha
  206. """
  207. try:
  208. can = can_fast_forward(store, current_sha, new_sha)
  209. except KeyError:
  210. can = False
  211. if not can:
  212. raise DivergedBranches(current_sha, new_sha)
  213. def archive(repo, committish=None, outstream=default_bytes_out_stream,
  214. errstream=default_bytes_err_stream):
  215. """Create an archive.
  216. Args:
  217. repo: Path of repository for which to generate an archive.
  218. committish: Commit SHA1 or ref to use
  219. outstream: Output stream (defaults to stdout)
  220. errstream: Error stream (defaults to stderr)
  221. """
  222. if committish is None:
  223. committish = "HEAD"
  224. with open_repo_closing(repo) as repo_obj:
  225. c = parse_commit(repo_obj, committish)
  226. for chunk in tar_stream(
  227. repo_obj.object_store, repo_obj.object_store[c.tree],
  228. c.commit_time):
  229. outstream.write(chunk)
  230. def update_server_info(repo="."):
  231. """Update server info files for a repository.
  232. Args:
  233. repo: path to the repository
  234. """
  235. with open_repo_closing(repo) as r:
  236. server_update_server_info(r)
  237. def symbolic_ref(repo, ref_name, force=False):
  238. """Set git symbolic ref into HEAD.
  239. Args:
  240. repo: path to the repository
  241. ref_name: short name of the new ref
  242. force: force settings without checking if it exists in refs/heads
  243. """
  244. with open_repo_closing(repo) as repo_obj:
  245. ref_path = _make_branch_ref(ref_name)
  246. if not force and ref_path not in repo_obj.refs.keys():
  247. raise Error('fatal: ref `%s` is not a ref' % ref_name)
  248. repo_obj.refs.set_symbolic_ref(b'HEAD', ref_path)
  249. def commit(repo=".", message=None, author=None, committer=None, encoding=None):
  250. """Create a new commit.
  251. Args:
  252. repo: Path to repository
  253. message: Optional commit message
  254. author: Optional author name and email
  255. committer: Optional committer name and email
  256. Returns: SHA1 of the new commit
  257. """
  258. # FIXME: Support --all argument
  259. # FIXME: Support --signoff argument
  260. if getattr(message, 'encode', None):
  261. message = message.encode(encoding or DEFAULT_ENCODING)
  262. if getattr(author, 'encode', None):
  263. author = author.encode(encoding or DEFAULT_ENCODING)
  264. if getattr(committer, 'encode', None):
  265. committer = committer.encode(encoding or DEFAULT_ENCODING)
  266. with open_repo_closing(repo) as r:
  267. return r.do_commit(
  268. message=message, author=author, committer=committer,
  269. encoding=encoding)
  270. def commit_tree(repo, tree, message=None, author=None, committer=None):
  271. """Create a new commit object.
  272. Args:
  273. repo: Path to repository
  274. tree: An existing tree object
  275. author: Optional author name and email
  276. committer: Optional committer name and email
  277. """
  278. with open_repo_closing(repo) as r:
  279. return r.do_commit(
  280. message=message, tree=tree, committer=committer, author=author)
  281. def init(path=".", bare=False):
  282. """Create a new git repository.
  283. Args:
  284. path: Path to repository.
  285. bare: Whether to create a bare repository.
  286. Returns: A Repo instance
  287. """
  288. if not os.path.exists(path):
  289. os.mkdir(path)
  290. if bare:
  291. return Repo.init_bare(path)
  292. else:
  293. return Repo.init(path)
  294. def clone(source, target=None, bare=False, checkout=None,
  295. errstream=default_bytes_err_stream, outstream=None,
  296. origin=b"origin", depth=None, **kwargs):
  297. """Clone a local or remote git repository.
  298. Args:
  299. source: Path or URL for source repository
  300. target: Path to target repository (optional)
  301. bare: Whether or not to create a bare repository
  302. checkout: Whether or not to check-out HEAD after cloning
  303. errstream: Optional stream to write progress to
  304. outstream: Optional stream to write progress to (deprecated)
  305. origin: Name of remote from the repository used to clone
  306. depth: Depth to fetch at
  307. Returns: The new repository
  308. """
  309. # TODO(jelmer): This code overlaps quite a bit with Repo.clone
  310. if outstream is not None:
  311. import warnings
  312. warnings.warn(
  313. "outstream= has been deprecated in favour of errstream=.",
  314. DeprecationWarning, stacklevel=3)
  315. errstream = outstream
  316. if checkout is None:
  317. checkout = (not bare)
  318. if checkout and bare:
  319. raise Error("checkout and bare are incompatible")
  320. if target is None:
  321. target = source.split("/")[-1]
  322. if not os.path.exists(target):
  323. os.mkdir(target)
  324. if bare:
  325. r = Repo.init_bare(target)
  326. else:
  327. r = Repo.init(target)
  328. reflog_message = b'clone: from ' + source.encode('utf-8')
  329. try:
  330. target_config = r.get_config()
  331. if not isinstance(source, bytes):
  332. source = source.encode(DEFAULT_ENCODING)
  333. target_config.set((b'remote', origin), b'url', source)
  334. target_config.set(
  335. (b'remote', origin), b'fetch',
  336. b'+refs/heads/*:refs/remotes/' + origin + b'/*')
  337. target_config.write_to_path()
  338. fetch_result = fetch(
  339. r, origin, errstream=errstream, message=reflog_message,
  340. depth=depth, **kwargs)
  341. # TODO(jelmer): Support symref capability,
  342. # https://github.com/jelmer/dulwich/issues/485
  343. try:
  344. head = r[fetch_result.refs[b'HEAD']]
  345. except KeyError:
  346. head = None
  347. else:
  348. r[b'HEAD'] = head.id
  349. if checkout and not bare and head is not None:
  350. errstream.write(b'Checking out ' + head.id + b'\n')
  351. r.reset_index(head.tree)
  352. except BaseException:
  353. shutil.rmtree(target)
  354. r.close()
  355. raise
  356. return r
  357. def add(repo=".", paths=None):
  358. """Add files to the staging area.
  359. Args:
  360. repo: Repository for the files
  361. paths: Paths to add. No value passed stages all modified files.
  362. Returns: Tuple with set of added files and ignored files
  363. """
  364. ignored = set()
  365. with open_repo_closing(repo) as r:
  366. repo_path = Path(r.path).resolve()
  367. ignore_manager = IgnoreFilterManager.from_repo(r)
  368. if not paths:
  369. paths = list(
  370. get_untracked_paths(
  371. str(Path(os.getcwd()).resolve()),
  372. str(repo_path), r.open_index()))
  373. relpaths = []
  374. if not isinstance(paths, list):
  375. paths = [paths]
  376. for p in paths:
  377. relpath = str(Path(p).resolve().relative_to(repo_path))
  378. # FIXME: Support patterns, directories.
  379. if ignore_manager.is_ignored(relpath):
  380. ignored.add(relpath)
  381. continue
  382. relpaths.append(relpath)
  383. r.stage(relpaths)
  384. return (relpaths, ignored)
  385. def _is_subdir(subdir, parentdir):
  386. """Check whether subdir is parentdir or a subdir of parentdir
  387. If parentdir or subdir is a relative path, it will be disamgibuated
  388. relative to the pwd.
  389. """
  390. parentdir_abs = os.path.realpath(parentdir) + os.path.sep
  391. subdir_abs = os.path.realpath(subdir) + os.path.sep
  392. return subdir_abs.startswith(parentdir_abs)
  393. # TODO: option to remove ignored files also, in line with `git clean -fdx`
  394. def clean(repo=".", target_dir=None):
  395. """Remove any untracked files from the target directory recursively
  396. Equivalent to running `git clean -fd` in target_dir.
  397. Args:
  398. repo: Repository where the files may be tracked
  399. target_dir: Directory to clean - current directory if None
  400. """
  401. if target_dir is None:
  402. target_dir = os.getcwd()
  403. with open_repo_closing(repo) as r:
  404. if not _is_subdir(target_dir, r.path):
  405. raise Error("target_dir must be in the repo's working dir")
  406. index = r.open_index()
  407. ignore_manager = IgnoreFilterManager.from_repo(r)
  408. paths_in_wd = _walk_working_dir_paths(target_dir, r.path)
  409. # Reverse file visit order, so that files and subdirectories are
  410. # removed before containing directory
  411. for ap, is_dir in reversed(list(paths_in_wd)):
  412. if is_dir:
  413. # All subdirectories and files have been removed if untracked,
  414. # so dir contains no tracked files iff it is empty.
  415. is_empty = len(os.listdir(ap)) == 0
  416. if is_empty:
  417. os.rmdir(ap)
  418. else:
  419. ip = path_to_tree_path(r.path, ap)
  420. is_tracked = ip in index
  421. rp = os.path.relpath(ap, r.path)
  422. is_ignored = ignore_manager.is_ignored(rp)
  423. if not is_tracked and not is_ignored:
  424. os.remove(ap)
  425. def remove(repo=".", paths=None, cached=False):
  426. """Remove files from the staging area.
  427. Args:
  428. repo: Repository for the files
  429. paths: Paths to remove
  430. """
  431. with open_repo_closing(repo) as r:
  432. index = r.open_index()
  433. for p in paths:
  434. full_path = os.fsencode(os.path.abspath(p))
  435. tree_path = path_to_tree_path(r.path, p)
  436. try:
  437. index_sha = index[tree_path].sha
  438. except KeyError:
  439. raise Error('%s did not match any files' % p)
  440. if not cached:
  441. try:
  442. st = os.lstat(full_path)
  443. except OSError:
  444. pass
  445. else:
  446. try:
  447. blob = blob_from_path_and_stat(full_path, st)
  448. except IOError:
  449. pass
  450. else:
  451. try:
  452. committed_sha = tree_lookup_path(
  453. r.__getitem__, r[r.head()].tree, tree_path)[1]
  454. except KeyError:
  455. committed_sha = None
  456. if blob.id != index_sha and index_sha != committed_sha:
  457. raise Error(
  458. 'file has staged content differing '
  459. 'from both the file and head: %s' % p)
  460. if index_sha != committed_sha:
  461. raise Error(
  462. 'file has staged changes: %s' % p)
  463. os.remove(full_path)
  464. del index[tree_path]
  465. index.write()
  466. rm = remove
  467. def commit_decode(commit, contents, default_encoding=DEFAULT_ENCODING):
  468. if commit.encoding:
  469. encoding = commit.encoding.decode('ascii')
  470. else:
  471. encoding = default_encoding
  472. return contents.decode(encoding, "replace")
  473. def commit_encode(commit, contents, default_encoding=DEFAULT_ENCODING):
  474. if commit.encoding:
  475. encoding = commit.encoding.decode('ascii')
  476. else:
  477. encoding = default_encoding
  478. return contents.encode(encoding)
  479. def print_commit(commit, decode, outstream=sys.stdout):
  480. """Write a human-readable commit log entry.
  481. Args:
  482. commit: A `Commit` object
  483. outstream: A stream file to write to
  484. """
  485. outstream.write("-" * 50 + "\n")
  486. outstream.write("commit: " + commit.id.decode('ascii') + "\n")
  487. if len(commit.parents) > 1:
  488. outstream.write(
  489. "merge: " +
  490. "...".join([c.decode('ascii') for c in commit.parents[1:]]) + "\n")
  491. outstream.write("Author: " + decode(commit.author) + "\n")
  492. if commit.author != commit.committer:
  493. outstream.write("Committer: " + decode(commit.committer) + "\n")
  494. time_tuple = time.gmtime(commit.author_time + commit.author_timezone)
  495. time_str = time.strftime("%a %b %d %Y %H:%M:%S", time_tuple)
  496. timezone_str = format_timezone(commit.author_timezone).decode('ascii')
  497. outstream.write("Date: " + time_str + " " + timezone_str + "\n")
  498. outstream.write("\n")
  499. outstream.write(decode(commit.message) + "\n")
  500. outstream.write("\n")
  501. def print_tag(tag, decode, outstream=sys.stdout):
  502. """Write a human-readable tag.
  503. Args:
  504. tag: A `Tag` object
  505. decode: Function for decoding bytes to unicode string
  506. outstream: A stream to write to
  507. """
  508. outstream.write("Tagger: " + decode(tag.tagger) + "\n")
  509. time_tuple = time.gmtime(tag.tag_time + tag.tag_timezone)
  510. time_str = time.strftime("%a %b %d %Y %H:%M:%S", time_tuple)
  511. timezone_str = format_timezone(tag.tag_timezone).decode('ascii')
  512. outstream.write("Date: " + time_str + " " + timezone_str + "\n")
  513. outstream.write("\n")
  514. outstream.write(decode(tag.message) + "\n")
  515. outstream.write("\n")
  516. def show_blob(repo, blob, decode, outstream=sys.stdout):
  517. """Write a blob to a stream.
  518. Args:
  519. repo: A `Repo` object
  520. blob: A `Blob` object
  521. decode: Function for decoding bytes to unicode string
  522. outstream: A stream file to write to
  523. """
  524. outstream.write(decode(blob.data))
  525. def show_commit(repo, commit, decode, outstream=sys.stdout):
  526. """Show a commit to a stream.
  527. Args:
  528. repo: A `Repo` object
  529. commit: A `Commit` object
  530. decode: Function for decoding bytes to unicode string
  531. outstream: Stream to write to
  532. """
  533. print_commit(commit, decode=decode, outstream=outstream)
  534. if commit.parents:
  535. parent_commit = repo[commit.parents[0]]
  536. base_tree = parent_commit.tree
  537. else:
  538. base_tree = None
  539. diffstream = BytesIO()
  540. write_tree_diff(
  541. diffstream,
  542. repo.object_store, base_tree, commit.tree)
  543. diffstream.seek(0)
  544. outstream.write(commit_decode(commit, diffstream.getvalue()))
  545. def show_tree(repo, tree, decode, outstream=sys.stdout):
  546. """Print a tree to a stream.
  547. Args:
  548. repo: A `Repo` object
  549. tree: A `Tree` object
  550. decode: Function for decoding bytes to unicode string
  551. outstream: Stream to write to
  552. """
  553. for n in tree:
  554. outstream.write(decode(n) + "\n")
  555. def show_tag(repo, tag, decode, outstream=sys.stdout):
  556. """Print a tag to a stream.
  557. Args:
  558. repo: A `Repo` object
  559. tag: A `Tag` object
  560. decode: Function for decoding bytes to unicode string
  561. outstream: Stream to write to
  562. """
  563. print_tag(tag, decode, outstream)
  564. show_object(repo, repo[tag.object[1]], decode, outstream)
  565. def show_object(repo, obj, decode, outstream):
  566. return {
  567. b"tree": show_tree,
  568. b"blob": show_blob,
  569. b"commit": show_commit,
  570. b"tag": show_tag,
  571. }[obj.type_name](repo, obj, decode, outstream)
  572. def print_name_status(changes):
  573. """Print a simple status summary, listing changed files.
  574. """
  575. for change in changes:
  576. if not change:
  577. continue
  578. if isinstance(change, list):
  579. change = change[0]
  580. if change.type == CHANGE_ADD:
  581. path1 = change.new.path
  582. path2 = ''
  583. kind = 'A'
  584. elif change.type == CHANGE_DELETE:
  585. path1 = change.old.path
  586. path2 = ''
  587. kind = 'D'
  588. elif change.type == CHANGE_MODIFY:
  589. path1 = change.new.path
  590. path2 = ''
  591. kind = 'M'
  592. elif change.type in RENAME_CHANGE_TYPES:
  593. path1 = change.old.path
  594. path2 = change.new.path
  595. if change.type == CHANGE_RENAME:
  596. kind = 'R'
  597. elif change.type == CHANGE_COPY:
  598. kind = 'C'
  599. yield '%-8s%-20s%-20s' % (kind, path1, path2)
  600. def log(repo=".", paths=None, outstream=sys.stdout, max_entries=None,
  601. reverse=False, name_status=False):
  602. """Write commit logs.
  603. Args:
  604. repo: Path to repository
  605. paths: Optional set of specific paths to print entries for
  606. outstream: Stream to write log output to
  607. reverse: Reverse order in which entries are printed
  608. name_status: Print name status
  609. max_entries: Optional maximum number of entries to display
  610. """
  611. with open_repo_closing(repo) as r:
  612. walker = r.get_walker(
  613. max_entries=max_entries, paths=paths, reverse=reverse)
  614. for entry in walker:
  615. def decode(x):
  616. return commit_decode(entry.commit, x)
  617. print_commit(entry.commit, decode, outstream)
  618. if name_status:
  619. outstream.writelines(
  620. [line+'\n' for line in print_name_status(entry.changes())])
  621. # TODO(jelmer): better default for encoding?
  622. def show(repo=".", objects=None, outstream=sys.stdout,
  623. default_encoding=DEFAULT_ENCODING):
  624. """Print the changes in a commit.
  625. Args:
  626. repo: Path to repository
  627. objects: Objects to show (defaults to [HEAD])
  628. outstream: Stream to write to
  629. default_encoding: Default encoding to use if none is set in the
  630. commit
  631. """
  632. if objects is None:
  633. objects = ["HEAD"]
  634. if not isinstance(objects, list):
  635. objects = [objects]
  636. with open_repo_closing(repo) as r:
  637. for objectish in objects:
  638. o = parse_object(r, objectish)
  639. if isinstance(o, Commit):
  640. def decode(x):
  641. return commit_decode(o, x, default_encoding)
  642. else:
  643. def decode(x):
  644. return x.decode(default_encoding)
  645. show_object(r, o, decode, outstream)
  646. def diff_tree(repo, old_tree, new_tree, outstream=sys.stdout):
  647. """Compares the content and mode of blobs found via two tree objects.
  648. Args:
  649. repo: Path to repository
  650. old_tree: Id of old tree
  651. new_tree: Id of new tree
  652. outstream: Stream to write to
  653. """
  654. with open_repo_closing(repo) as r:
  655. write_tree_diff(outstream, r.object_store, old_tree, new_tree)
  656. def rev_list(repo, commits, outstream=sys.stdout):
  657. """Lists commit objects in reverse chronological order.
  658. Args:
  659. repo: Path to repository
  660. commits: Commits over which to iterate
  661. outstream: Stream to write to
  662. """
  663. with open_repo_closing(repo) as r:
  664. for entry in r.get_walker(include=[r[c].id for c in commits]):
  665. outstream.write(entry.commit.id + b"\n")
  666. def tag(*args, **kwargs):
  667. import warnings
  668. warnings.warn("tag has been deprecated in favour of tag_create.",
  669. DeprecationWarning)
  670. return tag_create(*args, **kwargs)
  671. def tag_create(
  672. repo, tag, author=None, message=None, annotated=False,
  673. objectish="HEAD", tag_time=None, tag_timezone=None,
  674. sign=False):
  675. """Creates a tag in git via dulwich calls:
  676. Args:
  677. repo: Path to repository
  678. tag: tag string
  679. author: tag author (optional, if annotated is set)
  680. message: tag message (optional)
  681. annotated: whether to create an annotated tag
  682. objectish: object the tag should point at, defaults to HEAD
  683. tag_time: Optional time for annotated tag
  684. tag_timezone: Optional timezone for annotated tag
  685. sign: GPG Sign the tag
  686. """
  687. with open_repo_closing(repo) as r:
  688. object = parse_object(r, objectish)
  689. if annotated:
  690. # Create the tag object
  691. tag_obj = Tag()
  692. if author is None:
  693. # TODO(jelmer): Don't use repo private method.
  694. author = r._get_user_identity(r.get_config_stack())
  695. tag_obj.tagger = author
  696. tag_obj.message = message
  697. tag_obj.name = tag
  698. tag_obj.object = (type(object), object.id)
  699. if tag_time is None:
  700. tag_time = int(time.time())
  701. tag_obj.tag_time = tag_time
  702. if tag_timezone is None:
  703. # TODO(jelmer) Use current user timezone rather than UTC
  704. tag_timezone = 0
  705. elif isinstance(tag_timezone, str):
  706. tag_timezone = parse_timezone(tag_timezone)
  707. tag_obj.tag_timezone = tag_timezone
  708. if sign:
  709. import gpg
  710. with gpg.Context(armor=True) as c:
  711. tag_obj.signature, unused_result = c.sign(
  712. tag_obj.as_raw_string())
  713. r.object_store.add_object(tag_obj)
  714. tag_id = tag_obj.id
  715. else:
  716. tag_id = object.id
  717. r.refs[_make_tag_ref(tag)] = tag_id
  718. def list_tags(*args, **kwargs):
  719. import warnings
  720. warnings.warn("list_tags has been deprecated in favour of tag_list.",
  721. DeprecationWarning)
  722. return tag_list(*args, **kwargs)
  723. def tag_list(repo, outstream=sys.stdout):
  724. """List all tags.
  725. Args:
  726. repo: Path to repository
  727. outstream: Stream to write tags to
  728. """
  729. with open_repo_closing(repo) as r:
  730. tags = sorted(r.refs.as_dict(b"refs/tags"))
  731. return tags
  732. def tag_delete(repo, name):
  733. """Remove a tag.
  734. Args:
  735. repo: Path to repository
  736. name: Name of tag to remove
  737. """
  738. with open_repo_closing(repo) as r:
  739. if isinstance(name, bytes):
  740. names = [name]
  741. elif isinstance(name, list):
  742. names = name
  743. else:
  744. raise Error("Unexpected tag name type %r" % name)
  745. for name in names:
  746. del r.refs[_make_tag_ref(name)]
  747. def reset(repo, mode, treeish="HEAD"):
  748. """Reset current HEAD to the specified state.
  749. Args:
  750. repo: Path to repository
  751. mode: Mode ("hard", "soft", "mixed")
  752. treeish: Treeish to reset to
  753. """
  754. if mode != "hard":
  755. raise Error("hard is the only mode currently supported")
  756. with open_repo_closing(repo) as r:
  757. tree = parse_tree(r, treeish)
  758. r.reset_index(tree.id)
  759. def get_remote_repo(
  760. repo: Repo,
  761. remote_location: Optional[Union[str, bytes]] = None
  762. ) -> Tuple[Optional[str], str]:
  763. config = repo.get_config()
  764. if remote_location is None:
  765. remote_location = get_branch_remote(repo)
  766. if isinstance(remote_location, str):
  767. encoded_location = remote_location.encode()
  768. else:
  769. encoded_location = remote_location
  770. section = (b'remote', encoded_location)
  771. remote_name = None # type: Optional[str]
  772. if config.has_section(section):
  773. remote_name = encoded_location.decode()
  774. url = config.get(section, 'url')
  775. encoded_location = url
  776. else:
  777. remote_name = None
  778. config = None
  779. return (remote_name, encoded_location.decode())
  780. def push(repo, remote_location=None, refspecs=None,
  781. outstream=default_bytes_out_stream,
  782. errstream=default_bytes_err_stream,
  783. force=False, **kwargs):
  784. """Remote push with dulwich via dulwich.client
  785. Args:
  786. repo: Path to repository
  787. remote_location: Location of the remote
  788. refspecs: Refs to push to remote
  789. outstream: A stream file to write output
  790. errstream: A stream file to write errors
  791. force: Force overwriting refs
  792. """
  793. # Open the repo
  794. with open_repo_closing(repo) as r:
  795. (remote_name, remote_location) = get_remote_repo(r, remote_location)
  796. # Get the client and path
  797. client, path = get_transport_and_path(
  798. remote_location, config=r.get_config_stack(), **kwargs)
  799. selected_refs = []
  800. remote_changed_refs = {}
  801. def update_refs(refs):
  802. selected_refs.extend(parse_reftuples(
  803. r.refs, refs, refspecs, force=force))
  804. new_refs = {}
  805. # TODO: Handle selected_refs == {None: None}
  806. for (lh, rh, force_ref) in selected_refs:
  807. if lh is None:
  808. new_refs[rh] = ZERO_SHA
  809. remote_changed_refs[rh] = None
  810. else:
  811. if not force_ref:
  812. check_diverged(r.object_store, refs[rh], r.refs[lh])
  813. new_refs[rh] = r.refs[lh]
  814. remote_changed_refs[rh] = r.refs[lh]
  815. return new_refs
  816. err_encoding = getattr(errstream, 'encoding', None) or DEFAULT_ENCODING
  817. remote_location_bytes = client.get_url(path).encode(err_encoding)
  818. try:
  819. result = client.send_pack(
  820. path, update_refs,
  821. generate_pack_data=r.generate_pack_data,
  822. progress=errstream.write)
  823. errstream.write(
  824. b"Push to " + remote_location_bytes + b" successful.\n")
  825. except SendPackError as e:
  826. raise Error(
  827. "Push to " + remote_location_bytes +
  828. " failed -> " + e.args[0].decode(), inner=e)
  829. for ref, error in (result.ref_status or {}).items():
  830. if status is not None:
  831. errstream.write(
  832. b"Push of ref %s failed: %s" %
  833. (ref, error.encode(err_encoding)))
  834. else:
  835. errstream.write(b'Ref %s updated' % ref)
  836. if remote_name is not None:
  837. _import_remote_refs(r.refs, remote_name, remote_changed_refs)
  838. def pull(repo, remote_location=None, refspecs=None,
  839. outstream=default_bytes_out_stream,
  840. errstream=default_bytes_err_stream, fast_forward=True,
  841. force=False, **kwargs):
  842. """Pull from remote via dulwich.client
  843. Args:
  844. repo: Path to repository
  845. remote_location: Location of the remote
  846. refspec: refspecs to fetch
  847. outstream: A stream file to write to output
  848. errstream: A stream file to write to errors
  849. """
  850. # Open the repo
  851. with open_repo_closing(repo) as r:
  852. (remote_name, remote_location) = get_remote_repo(r, remote_location)
  853. if refspecs is None:
  854. refspecs = [b"HEAD"]
  855. selected_refs = []
  856. def determine_wants(remote_refs):
  857. selected_refs.extend(
  858. parse_reftuples(remote_refs, r.refs, refspecs, force=force))
  859. return [
  860. remote_refs[lh] for (lh, rh, force_ref) in selected_refs
  861. if remote_refs[lh] not in r.object_store]
  862. client, path = get_transport_and_path(
  863. remote_location, config=r.get_config_stack(), **kwargs)
  864. fetch_result = client.fetch(
  865. path, r, progress=errstream.write, determine_wants=determine_wants)
  866. for (lh, rh, force_ref) in selected_refs:
  867. try:
  868. check_diverged(
  869. r.object_store, r.refs[rh], fetch_result.refs[lh])
  870. except DivergedBranches:
  871. if fast_forward:
  872. raise
  873. else:
  874. raise NotImplementedError('merge is not yet supported')
  875. r.refs[rh] = fetch_result.refs[lh]
  876. if selected_refs:
  877. r[b'HEAD'] = fetch_result.refs[selected_refs[0][1]]
  878. # Perform 'git checkout .' - syncs staged changes
  879. tree = r[b"HEAD"].tree
  880. r.reset_index(tree=tree)
  881. if remote_name is not None:
  882. _import_remote_refs(r.refs, remote_name, fetch_result.refs)
  883. def status(repo=".", ignored=False):
  884. """Returns staged, unstaged, and untracked changes relative to the HEAD.
  885. Args:
  886. repo: Path to repository or repository object
  887. ignored: Whether to include ignored files in `untracked`
  888. Returns: GitStatus tuple,
  889. staged - dict with lists of staged paths (diff index/HEAD)
  890. unstaged - list of unstaged paths (diff index/working-tree)
  891. untracked - list of untracked, un-ignored & non-.git paths
  892. """
  893. with open_repo_closing(repo) as r:
  894. # 1. Get status of staged
  895. tracked_changes = get_tree_changes(r)
  896. # 2. Get status of unstaged
  897. index = r.open_index()
  898. normalizer = r.get_blob_normalizer()
  899. filter_callback = normalizer.checkin_normalize
  900. unstaged_changes = list(
  901. get_unstaged_changes(index, r.path, filter_callback)
  902. )
  903. ignore_manager = IgnoreFilterManager.from_repo(r)
  904. untracked_paths = get_untracked_paths(r.path, r.path, index)
  905. if ignored:
  906. untracked_changes = list(untracked_paths)
  907. else:
  908. untracked_changes = [
  909. p for p in untracked_paths
  910. if not ignore_manager.is_ignored(p)]
  911. return GitStatus(tracked_changes, unstaged_changes, untracked_changes)
  912. def _walk_working_dir_paths(frompath, basepath):
  913. """Get path, is_dir for files in working dir from frompath
  914. Args:
  915. frompath: Path to begin walk
  916. basepath: Path to compare to
  917. """
  918. for dirpath, dirnames, filenames in os.walk(frompath):
  919. # Skip .git and below.
  920. if '.git' in dirnames:
  921. dirnames.remove('.git')
  922. if dirpath != basepath:
  923. continue
  924. if '.git' in filenames:
  925. filenames.remove('.git')
  926. if dirpath != basepath:
  927. continue
  928. if dirpath != frompath:
  929. yield dirpath, True
  930. for filename in filenames:
  931. filepath = os.path.join(dirpath, filename)
  932. yield filepath, False
  933. def get_untracked_paths(frompath, basepath, index):
  934. """Get untracked paths.
  935. Args:
  936. ;param frompath: Path to walk
  937. basepath: Path to compare to
  938. index: Index to check against
  939. """
  940. for ap, is_dir in _walk_working_dir_paths(frompath, basepath):
  941. if not is_dir:
  942. ip = path_to_tree_path(basepath, ap)
  943. if ip not in index:
  944. yield os.path.relpath(ap, frompath)
  945. def get_tree_changes(repo):
  946. """Return add/delete/modify changes to tree by comparing index to HEAD.
  947. Args:
  948. repo: repo path or object
  949. Returns: dict with lists for each type of change
  950. """
  951. with open_repo_closing(repo) as r:
  952. index = r.open_index()
  953. # Compares the Index to the HEAD & determines changes
  954. # Iterate through the changes and report add/delete/modify
  955. # TODO: call out to dulwich.diff_tree somehow.
  956. tracked_changes = {
  957. 'add': [],
  958. 'delete': [],
  959. 'modify': [],
  960. }
  961. try:
  962. tree_id = r[b'HEAD'].tree
  963. except KeyError:
  964. tree_id = None
  965. for change in index.changes_from_tree(r.object_store, tree_id):
  966. if not change[0][0]:
  967. tracked_changes['add'].append(change[0][1])
  968. elif not change[0][1]:
  969. tracked_changes['delete'].append(change[0][0])
  970. elif change[0][0] == change[0][1]:
  971. tracked_changes['modify'].append(change[0][0])
  972. else:
  973. raise NotImplementedError('git mv ops not yet supported')
  974. return tracked_changes
  975. def daemon(path=".", address=None, port=None):
  976. """Run a daemon serving Git requests over TCP/IP.
  977. Args:
  978. path: Path to the directory to serve.
  979. address: Optional address to listen on (defaults to ::)
  980. port: Optional port to listen on (defaults to TCP_GIT_PORT)
  981. """
  982. # TODO(jelmer): Support git-daemon-export-ok and --export-all.
  983. backend = FileSystemBackend(path)
  984. server = TCPGitServer(backend, address, port)
  985. server.serve_forever()
  986. def web_daemon(path=".", address=None, port=None):
  987. """Run a daemon serving Git requests over HTTP.
  988. Args:
  989. path: Path to the directory to serve
  990. address: Optional address to listen on (defaults to ::)
  991. port: Optional port to listen on (defaults to 80)
  992. """
  993. from dulwich.web import (
  994. make_wsgi_chain,
  995. make_server,
  996. WSGIRequestHandlerLogger,
  997. WSGIServerLogger)
  998. backend = FileSystemBackend(path)
  999. app = make_wsgi_chain(backend)
  1000. server = make_server(address, port, app,
  1001. handler_class=WSGIRequestHandlerLogger,
  1002. server_class=WSGIServerLogger)
  1003. server.serve_forever()
  1004. def upload_pack(path=".", inf=None, outf=None):
  1005. """Upload a pack file after negotiating its contents using smart protocol.
  1006. Args:
  1007. path: Path to the repository
  1008. inf: Input stream to communicate with client
  1009. outf: Output stream to communicate with client
  1010. """
  1011. if outf is None:
  1012. outf = getattr(sys.stdout, 'buffer', sys.stdout)
  1013. if inf is None:
  1014. inf = getattr(sys.stdin, 'buffer', sys.stdin)
  1015. path = os.path.expanduser(path)
  1016. backend = FileSystemBackend(path)
  1017. def send_fn(data):
  1018. outf.write(data)
  1019. outf.flush()
  1020. proto = Protocol(inf.read, send_fn)
  1021. handler = UploadPackHandler(backend, [path], proto)
  1022. # FIXME: Catch exceptions and write a single-line summary to outf.
  1023. handler.handle()
  1024. return 0
  1025. def receive_pack(path=".", inf=None, outf=None):
  1026. """Receive a pack file after negotiating its contents using smart protocol.
  1027. Args:
  1028. path: Path to the repository
  1029. inf: Input stream to communicate with client
  1030. outf: Output stream to communicate with client
  1031. """
  1032. if outf is None:
  1033. outf = getattr(sys.stdout, 'buffer', sys.stdout)
  1034. if inf is None:
  1035. inf = getattr(sys.stdin, 'buffer', sys.stdin)
  1036. path = os.path.expanduser(path)
  1037. backend = FileSystemBackend(path)
  1038. def send_fn(data):
  1039. outf.write(data)
  1040. outf.flush()
  1041. proto = Protocol(inf.read, send_fn)
  1042. handler = ReceivePackHandler(backend, [path], proto)
  1043. # FIXME: Catch exceptions and write a single-line summary to outf.
  1044. handler.handle()
  1045. return 0
  1046. def _make_branch_ref(name):
  1047. if getattr(name, 'encode', None):
  1048. name = name.encode(DEFAULT_ENCODING)
  1049. return LOCAL_BRANCH_PREFIX + name
  1050. def _make_tag_ref(name):
  1051. if getattr(name, 'encode', None):
  1052. name = name.encode(DEFAULT_ENCODING)
  1053. return b"refs/tags/" + name
  1054. def branch_delete(repo, name):
  1055. """Delete a branch.
  1056. Args:
  1057. repo: Path to the repository
  1058. name: Name of the branch
  1059. """
  1060. with open_repo_closing(repo) as r:
  1061. if isinstance(name, list):
  1062. names = name
  1063. else:
  1064. names = [name]
  1065. for name in names:
  1066. del r.refs[_make_branch_ref(name)]
  1067. def branch_create(repo, name, objectish=None, force=False):
  1068. """Create a branch.
  1069. Args:
  1070. repo: Path to the repository
  1071. name: Name of the new branch
  1072. objectish: Target object to point new branch at (defaults to HEAD)
  1073. force: Force creation of branch, even if it already exists
  1074. """
  1075. with open_repo_closing(repo) as r:
  1076. if objectish is None:
  1077. objectish = "HEAD"
  1078. object = parse_object(r, objectish)
  1079. refname = _make_branch_ref(name)
  1080. ref_message = b"branch: Created from " + objectish.encode('utf-8')
  1081. if force:
  1082. r.refs.set_if_equals(refname, None, object.id, message=ref_message)
  1083. else:
  1084. if not r.refs.add_if_new(refname, object.id, message=ref_message):
  1085. raise Error(
  1086. "Branch with name %s already exists." % name)
  1087. def branch_list(repo):
  1088. """List all branches.
  1089. Args:
  1090. repo: Path to the repository
  1091. """
  1092. with open_repo_closing(repo) as r:
  1093. return r.refs.keys(base=LOCAL_BRANCH_PREFIX)
  1094. def active_branch(repo):
  1095. """Return the active branch in the repository, if any.
  1096. Args:
  1097. repo: Repository to open
  1098. Returns:
  1099. branch name
  1100. Raises:
  1101. KeyError: if the repository does not have a working tree
  1102. IndexError: if HEAD is floating
  1103. """
  1104. with open_repo_closing(repo) as r:
  1105. active_ref = r.refs.follow(b'HEAD')[0][1]
  1106. if not active_ref.startswith(LOCAL_BRANCH_PREFIX):
  1107. raise ValueError(active_ref)
  1108. return active_ref[len(LOCAL_BRANCH_PREFIX):]
  1109. def get_branch_remote(repo):
  1110. """Return the active branch's remote name, if any.
  1111. Args:
  1112. repo: Repository to open
  1113. Returns:
  1114. remote name
  1115. Raises:
  1116. KeyError: if the repository does not have a working tree
  1117. """
  1118. with open_repo_closing(repo) as r:
  1119. branch_name = active_branch(r.path)
  1120. config = r.get_config()
  1121. try:
  1122. remote_name = config.get((b'branch', branch_name), b'remote')
  1123. except KeyError:
  1124. remote_name = b'origin'
  1125. return remote_name
  1126. def _import_remote_refs(
  1127. refs_container: RefsContainer, remote_name: str,
  1128. refs: Dict[str, str], message: Optional[bytes] = None,
  1129. prune: bool = False, prune_tags: bool = False):
  1130. stripped_refs = strip_peeled_refs(refs)
  1131. branches = {
  1132. n[len(LOCAL_BRANCH_PREFIX):]: v for (n, v) in stripped_refs.items()
  1133. if n.startswith(LOCAL_BRANCH_PREFIX)}
  1134. refs_container.import_refs(
  1135. b'refs/remotes/' + remote_name.encode(), branches, message=message,
  1136. prune=prune)
  1137. tags = {
  1138. n[len(b'refs/tags/'):]: v for (n, v) in stripped_refs.items()
  1139. if n.startswith(b'refs/tags/') and
  1140. not n.endswith(ANNOTATED_TAG_SUFFIX)}
  1141. refs_container.import_refs(
  1142. b'refs/tags', tags, message=message,
  1143. prune=prune_tags)
  1144. def fetch(repo, remote_location=None,
  1145. outstream=sys.stdout, errstream=default_bytes_err_stream,
  1146. message=None, depth=None, prune=False, prune_tags=False, force=False,
  1147. **kwargs):
  1148. """Fetch objects from a remote server.
  1149. Args:
  1150. repo: Path to the repository
  1151. remote_location: String identifying a remote server
  1152. outstream: Output stream (defaults to stdout)
  1153. errstream: Error stream (defaults to stderr)
  1154. message: Reflog message (defaults to b"fetch: from <remote_name>")
  1155. depth: Depth to fetch at
  1156. prune: Prune remote removed refs
  1157. prune_tags: Prune reomte removed tags
  1158. Returns:
  1159. Dictionary with refs on the remote
  1160. """
  1161. with open_repo_closing(repo) as r:
  1162. (remote_name, remote_location) = get_remote_repo(r, remote_location)
  1163. if message is None:
  1164. message = b'fetch: from ' + remote_location.encode("utf-8")
  1165. client, path = get_transport_and_path(
  1166. remote_location, config=r.get_config_stack(), **kwargs)
  1167. fetch_result = client.fetch(path, r, progress=errstream.write,
  1168. depth=depth)
  1169. if remote_name is not None:
  1170. _import_remote_refs(
  1171. r.refs, remote_name, fetch_result.refs, message, prune=prune,
  1172. prune_tags=prune_tags)
  1173. return fetch_result
  1174. def ls_remote(remote, config=None, **kwargs):
  1175. """List the refs in a remote.
  1176. Args:
  1177. remote: Remote repository location
  1178. config: Configuration to use
  1179. Returns:
  1180. Dictionary with remote refs
  1181. """
  1182. if config is None:
  1183. config = StackedConfig.default()
  1184. client, host_path = get_transport_and_path(remote, config=config, **kwargs)
  1185. return client.get_refs(host_path)
  1186. def repack(repo):
  1187. """Repack loose files in a repository.
  1188. Currently this only packs loose objects.
  1189. Args:
  1190. repo: Path to the repository
  1191. """
  1192. with open_repo_closing(repo) as r:
  1193. r.object_store.pack_loose_objects()
  1194. def pack_objects(repo, object_ids, packf, idxf, delta_window_size=None):
  1195. """Pack objects into a file.
  1196. Args:
  1197. repo: Path to the repository
  1198. object_ids: List of object ids to write
  1199. packf: File-like object to write to
  1200. idxf: File-like object to write to (can be None)
  1201. """
  1202. with open_repo_closing(repo) as r:
  1203. entries, data_sum = write_pack_objects(
  1204. packf,
  1205. r.object_store.iter_shas((oid, None) for oid in object_ids),
  1206. delta_window_size=delta_window_size)
  1207. if idxf is not None:
  1208. entries = sorted([(k, v[0], v[1]) for (k, v) in entries.items()])
  1209. write_pack_index(idxf, entries, data_sum)
  1210. def ls_tree(repo, treeish=b"HEAD", outstream=sys.stdout, recursive=False,
  1211. name_only=False):
  1212. """List contents of a tree.
  1213. Args:
  1214. repo: Path to the repository
  1215. tree_ish: Tree id to list
  1216. outstream: Output stream (defaults to stdout)
  1217. recursive: Whether to recursively list files
  1218. name_only: Only print item name
  1219. """
  1220. def list_tree(store, treeid, base):
  1221. for (name, mode, sha) in store[treeid].iteritems():
  1222. if base:
  1223. name = posixpath.join(base, name)
  1224. if name_only:
  1225. outstream.write(name + b"\n")
  1226. else:
  1227. outstream.write(pretty_format_tree_entry(name, mode, sha))
  1228. if stat.S_ISDIR(mode) and recursive:
  1229. list_tree(store, sha, name)
  1230. with open_repo_closing(repo) as r:
  1231. tree = parse_tree(r, treeish)
  1232. list_tree(r.object_store, tree.id, "")
  1233. def remote_add(repo, name, url):
  1234. """Add a remote.
  1235. Args:
  1236. repo: Path to the repository
  1237. name: Remote name
  1238. url: Remote URL
  1239. """
  1240. if not isinstance(name, bytes):
  1241. name = name.encode(DEFAULT_ENCODING)
  1242. if not isinstance(url, bytes):
  1243. url = url.encode(DEFAULT_ENCODING)
  1244. with open_repo_closing(repo) as r:
  1245. c = r.get_config()
  1246. section = (b'remote', name)
  1247. if c.has_section(section):
  1248. raise RemoteExists(section)
  1249. c.set(section, b"url", url)
  1250. c.write_to_path()
  1251. def check_ignore(repo, paths, no_index=False):
  1252. """Debug gitignore files.
  1253. Args:
  1254. repo: Path to the repository
  1255. paths: List of paths to check for
  1256. no_index: Don't check index
  1257. Returns: List of ignored files
  1258. """
  1259. with open_repo_closing(repo) as r:
  1260. index = r.open_index()
  1261. ignore_manager = IgnoreFilterManager.from_repo(r)
  1262. for path in paths:
  1263. if not no_index and path_to_tree_path(r.path, path) in index:
  1264. continue
  1265. if os.path.isabs(path):
  1266. path = os.path.relpath(path, r.path)
  1267. if ignore_manager.is_ignored(path):
  1268. yield path
  1269. def update_head(repo, target, detached=False, new_branch=None):
  1270. """Update HEAD to point at a new branch/commit.
  1271. Note that this does not actually update the working tree.
  1272. Args:
  1273. repo: Path to the repository
  1274. detach: Create a detached head
  1275. target: Branch or committish to switch to
  1276. new_branch: New branch to create
  1277. """
  1278. with open_repo_closing(repo) as r:
  1279. if new_branch is not None:
  1280. to_set = _make_branch_ref(new_branch)
  1281. else:
  1282. to_set = b"HEAD"
  1283. if detached:
  1284. # TODO(jelmer): Provide some way so that the actual ref gets
  1285. # updated rather than what it points to, so the delete isn't
  1286. # necessary.
  1287. del r.refs[to_set]
  1288. r.refs[to_set] = parse_commit(r, target).id
  1289. else:
  1290. r.refs.set_symbolic_ref(to_set, parse_ref(r, target))
  1291. if new_branch is not None:
  1292. r.refs.set_symbolic_ref(b"HEAD", to_set)
  1293. def check_mailmap(repo, contact):
  1294. """Check canonical name and email of contact.
  1295. Args:
  1296. repo: Path to the repository
  1297. contact: Contact name and/or email
  1298. Returns: Canonical contact data
  1299. """
  1300. with open_repo_closing(repo) as r:
  1301. from dulwich.mailmap import Mailmap
  1302. try:
  1303. mailmap = Mailmap.from_path(os.path.join(r.path, '.mailmap'))
  1304. except FileNotFoundError:
  1305. mailmap = Mailmap()
  1306. return mailmap.lookup(contact)
  1307. def fsck(repo):
  1308. """Check a repository.
  1309. Args:
  1310. repo: A path to the repository
  1311. Returns: Iterator over errors/warnings
  1312. """
  1313. with open_repo_closing(repo) as r:
  1314. # TODO(jelmer): check pack files
  1315. # TODO(jelmer): check graph
  1316. # TODO(jelmer): check refs
  1317. for sha in r.object_store:
  1318. o = r.object_store[sha]
  1319. try:
  1320. o.check()
  1321. except Exception as e:
  1322. yield (sha, e)
  1323. def stash_list(repo):
  1324. """List all stashes in a repository."""
  1325. with open_repo_closing(repo) as r:
  1326. from dulwich.stash import Stash
  1327. stash = Stash.from_repo(r)
  1328. return enumerate(list(stash.stashes()))
  1329. def stash_push(repo):
  1330. """Push a new stash onto the stack."""
  1331. with open_repo_closing(repo) as r:
  1332. from dulwich.stash import Stash
  1333. stash = Stash.from_repo(r)
  1334. stash.push()
  1335. def stash_pop(repo):
  1336. """Pop a new stash from the stack."""
  1337. with open_repo_closing(repo) as r:
  1338. from dulwich.stash import Stash
  1339. stash = Stash.from_repo(r)
  1340. stash.pop()
  1341. def ls_files(repo):
  1342. """List all files in an index."""
  1343. with open_repo_closing(repo) as r:
  1344. return sorted(r.open_index())
  1345. def describe(repo):
  1346. """Describe the repository version.
  1347. Args:
  1348. projdir: git repository root
  1349. Returns: a string description of the current git revision
  1350. Examples: "gabcdefh", "v0.1" or "v0.1-5-gabcdefh".
  1351. """
  1352. # Get the repository
  1353. with open_repo_closing(repo) as r:
  1354. # Get a list of all tags
  1355. refs = r.get_refs()
  1356. tags = {}
  1357. for key, value in refs.items():
  1358. key = key.decode()
  1359. obj = r.get_object(value)
  1360. if u'tags' not in key:
  1361. continue
  1362. _, tag = key.rsplit(u'/', 1)
  1363. try:
  1364. commit = obj.object
  1365. except AttributeError:
  1366. continue
  1367. else:
  1368. commit = r.get_object(commit[1])
  1369. tags[tag] = [
  1370. datetime.datetime(*time.gmtime(commit.commit_time)[:6]),
  1371. commit.id.decode('ascii'),
  1372. ]
  1373. sorted_tags = sorted(tags.items(),
  1374. key=lambda tag: tag[1][0],
  1375. reverse=True)
  1376. # If there are no tags, return the current commit
  1377. if len(sorted_tags) == 0:
  1378. return 'g{}'.format(r[r.head()].id.decode('ascii')[:7])
  1379. # We're now 0 commits from the top
  1380. commit_count = 0
  1381. # Get the latest commit
  1382. latest_commit = r[r.head()]
  1383. # Walk through all commits
  1384. walker = r.get_walker()
  1385. for entry in walker:
  1386. # Check if tag
  1387. commit_id = entry.commit.id.decode('ascii')
  1388. for tag in sorted_tags:
  1389. tag_name = tag[0]
  1390. tag_commit = tag[1][1]
  1391. if commit_id == tag_commit:
  1392. if commit_count == 0:
  1393. return tag_name
  1394. else:
  1395. return '{}-{}-g{}'.format(
  1396. tag_name,
  1397. commit_count,
  1398. latest_commit.id.decode('ascii')[:7])
  1399. commit_count += 1
  1400. # Return plain commit if no parent tag can be found
  1401. return 'g{}'.format(latest_commit.id.decode('ascii')[:7])
  1402. def get_object_by_path(repo, path, committish=None):
  1403. """Get an object by path.
  1404. Args:
  1405. repo: A path to the repository
  1406. path: Path to look up
  1407. committish: Commit to look up path in
  1408. Returns: A `ShaFile` object
  1409. """
  1410. if committish is None:
  1411. committish = "HEAD"
  1412. # Get the repository
  1413. with open_repo_closing(repo) as r:
  1414. commit = parse_commit(r, committish)
  1415. base_tree = commit.tree
  1416. if not isinstance(path, bytes):
  1417. path = commit_encode(commit, path)
  1418. (mode, sha) = tree_lookup_path(
  1419. r.object_store.__getitem__,
  1420. base_tree, path)
  1421. return r[sha]
  1422. def write_tree(repo):
  1423. """Write a tree object from the index.
  1424. Args:
  1425. repo: Repository for which to write tree
  1426. Returns: tree id for the tree that was written
  1427. """
  1428. with open_repo_closing(repo) as r:
  1429. return r.open_index().commit(r.object_store)