porcelain.py 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. # porcelain.py -- Porcelain-like layer on top of Dulwich
  2. # Copyright (C) 2013 Jelmer Vernooij <jelmer@samba.org>
  3. #
  4. # This program is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU General Public License
  6. # as published by the Free Software Foundation; either version 2
  7. # or (at your option) a later version of the License.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  17. # MA 02110-1301, USA.
  18. import os
  19. import sys
  20. from dulwich import index
  21. from dulwich.client import get_transport_and_path
  22. from dulwich.patch import write_tree_diff
  23. from dulwich.repo import (BaseRepo, Repo)
  24. from dulwich.server import update_server_info as server_update_server_info
  25. """Simple wrapper that provides porcelain-like functions on top of Dulwich.
  26. Currently implemented:
  27. * archive
  28. * add
  29. * clone
  30. * commit
  31. * commit-tree
  32. * diff-tree
  33. * init
  34. * remove
  35. * rev-list
  36. * update-server-info
  37. * symbolic-ref
  38. These functions are meant to behave similarly to the git subcommands.
  39. Differences in behaviour are considered bugs.
  40. """
  41. __docformat__ = 'restructuredText'
  42. def open_repo(path_or_repo):
  43. """Open an argument that can be a repository or a path for a repository."""
  44. if isinstance(path_or_repo, BaseRepo):
  45. return path_or_repo
  46. return Repo(path_or_repo)
  47. def archive(location, committish=None, outstream=sys.stdout,
  48. errstream=sys.stderr):
  49. """Create an archive.
  50. :param location: Location of repository for which to generate an archive.
  51. :param committish: Commit SHA1 or ref to use
  52. :param outstream: Output stream (defaults to stdout)
  53. :param errstream: Error stream (defaults to stderr)
  54. """
  55. client, path = get_transport_and_path(location)
  56. if committish is None:
  57. committish = "HEAD"
  58. client.archive(path, committish, outstream.write, errstream.write)
  59. def update_server_info(repo="."):
  60. """Update server info files for a repository.
  61. :param repo: path to the repository
  62. """
  63. r = open_repo(repo)
  64. server_update_server_info(r)
  65. def symbolic_ref(repo, ref_name, force=False):
  66. """Set git symbolic ref into HEAD.
  67. :param repo: path to the repository
  68. :param ref_name: short name of the new ref
  69. :param force: force settings without checking if it exists in refs/heads
  70. """
  71. repo_obj = open_repo(repo)
  72. ref_path = 'refs/heads/%s' % ref_name
  73. if not force and ref_path not in repo_obj.refs.keys():
  74. raise ValueError('fatal: ref `%s` is not a ref' % ref_name)
  75. repo_obj.refs.set_symbolic_ref('HEAD', ref_path)
  76. def commit(repo=".", message=None, author=None, committer=None):
  77. """Create a new commit.
  78. :param repo: Path to repository
  79. :param message: Optional commit message
  80. :param author: Optional author name and email
  81. :param committer: Optional committer name and email
  82. :return: SHA1 of the new commit
  83. """
  84. # FIXME: Support --all argument
  85. # FIXME: Support --signoff argument
  86. r = open_repo(repo)
  87. return r.do_commit(message=message, author=author,
  88. committer=committer)
  89. def commit_tree(repo, tree, message=None, author=None, committer=None):
  90. """Create a new commit object.
  91. :param repo: Path to repository
  92. :param tree: An existing tree object
  93. :param author: Optional author name and email
  94. :param committer: Optional committer name and email
  95. """
  96. r = open_repo(repo)
  97. return r.do_commit(message=message, tree=tree, committer=committer,
  98. author=author)
  99. def init(path=".", bare=False):
  100. """Create a new git repository.
  101. :param path: Path to repository.
  102. :param bare: Whether to create a bare repository.
  103. :return: A Repo instance
  104. """
  105. if not os.path.exists(path):
  106. os.mkdir(path)
  107. if bare:
  108. return Repo.init_bare(path)
  109. else:
  110. return Repo.init(path)
  111. def clone(source, target=None, bare=False, checkout=None, outstream=sys.stdout):
  112. """Clone a local or remote git repository.
  113. :param source: Path or URL for source repository
  114. :param target: Path to target repository (optional)
  115. :param bare: Whether or not to create a bare repository
  116. :param outstream: Optional stream to write progress to
  117. :return: The new repository
  118. """
  119. if checkout is None:
  120. checkout = (not bare)
  121. if checkout and bare:
  122. raise ValueError("checkout and bare are incompatible")
  123. client, host_path = get_transport_and_path(source)
  124. if target is None:
  125. target = host_path.split("/")[-1]
  126. if not os.path.exists(target):
  127. os.mkdir(target)
  128. if bare:
  129. r = Repo.init_bare(target)
  130. else:
  131. r = Repo.init(target)
  132. remote_refs = client.fetch(host_path, r,
  133. determine_wants=r.object_store.determine_wants_all,
  134. progress=outstream.write)
  135. r["HEAD"] = remote_refs["HEAD"]
  136. if checkout:
  137. outstream.write('Checking out HEAD')
  138. index.build_index_from_tree(r.path, r.index_path(),
  139. r.object_store, r["HEAD"].tree)
  140. return r
  141. def add(repo=".", paths=None):
  142. """Add files to the staging area.
  143. :param repo: Repository for the files
  144. :param paths: Paths to add
  145. """
  146. # FIXME: Support patterns, directories, no argument.
  147. r = open_repo(repo)
  148. r.stage(paths)
  149. def rm(repo=".", paths=None):
  150. """Remove files from the staging area.
  151. :param repo: Repository for the files
  152. :param paths: Paths to remove
  153. """
  154. r = open_repo(repo)
  155. index = r.open_index()
  156. for p in paths:
  157. del index[p]
  158. index.write()
  159. def print_commit(commit, outstream):
  160. """Write a human-readable commit log entry.
  161. :param commit: A `Commit` object
  162. :param outstream: A stream file to write to
  163. """
  164. outstream.write("-" * 50 + "\n")
  165. outstream.write("commit: %s\n" % commit.id)
  166. if len(commit.parents) > 1:
  167. outstream.write("merge: %s\n" % "...".join(commit.parents[1:]))
  168. outstream.write("author: %s\n" % commit.author)
  169. outstream.write("committer: %s\n" % commit.committer)
  170. outstream.write("\n")
  171. outstream.write(commit.message + "\n")
  172. outstream.write("\n")
  173. def log(repo=".", outstream=sys.stdout):
  174. """Write commit logs.
  175. :param repo: Path to repository
  176. :param outstream: Stream to write log output to
  177. """
  178. r = open_repo(repo)
  179. walker = r.get_walker()
  180. for entry in walker:
  181. print_commit(entry.commit, outstream)
  182. def show(repo=".", committish=None, outstream=sys.stdout):
  183. """Print the changes in a commit.
  184. :param repo: Path to repository
  185. :param committish: Commit to write
  186. :param outstream: Stream to write to
  187. """
  188. if committish is None:
  189. committish = "HEAD"
  190. r = open_repo(repo)
  191. commit = r[committish]
  192. parent_commit = r[commit.parents[0]]
  193. print_commit(commit, outstream)
  194. write_tree_diff(outstream, r.object_store, parent_commit.tree, commit.tree)
  195. def diff_tree(repo, old_tree, new_tree, outstream=sys.stdout):
  196. """Compares the content and mode of blobs found via two tree objects.
  197. :param repo: Path to repository
  198. :param old_tree: Id of old tree
  199. :param new_tree: Id of new tree
  200. :param outstream: Stream to write to
  201. """
  202. r = open_repo(repo)
  203. write_tree_diff(outstream, r.object_store, old_tree, new_tree)
  204. def rev_list(repo, commits, outstream=sys.stdout):
  205. """Lists commit objects in reverse chronological order.
  206. :param repo: Path to repository
  207. :param commits: Commits over which to iterate
  208. :param outstream: Stream to write to
  209. """
  210. r = open_repo(repo)
  211. for entry in r.get_walker(include=[r[c].id for c in commits]):
  212. outstream.write("%s\n" % entry.commit.id)