patch.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. # patch.py -- For dealing with packed-style patches.
  2. # Copyright (C) 2009-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. """Classes for dealing with git am-style patches.
  21. These patches are basically unified diffs with some extra metadata tacked
  22. on.
  23. """
  24. import email.parser
  25. import time
  26. from difflib import SequenceMatcher
  27. from typing import BinaryIO, Optional, TextIO, Union
  28. from .objects import S_ISGITLINK, Blob, Commit
  29. from .pack import ObjectContainer
  30. FIRST_FEW_BYTES = 8000
  31. def write_commit_patch(f, commit, contents, progress, version=None, encoding=None):
  32. """Write a individual file patch.
  33. Args:
  34. commit: Commit object
  35. progress: Tuple with current patch number and total.
  36. Returns:
  37. tuple with filename and contents
  38. """
  39. encoding = encoding or getattr(f, "encoding", "ascii")
  40. if isinstance(contents, str):
  41. contents = contents.encode(encoding)
  42. (num, total) = progress
  43. f.write(
  44. b"From "
  45. + commit.id
  46. + b" "
  47. + time.ctime(commit.commit_time).encode(encoding)
  48. + b"\n"
  49. )
  50. f.write(b"From: " + commit.author + b"\n")
  51. f.write(
  52. b"Date: " + time.strftime("%a, %d %b %Y %H:%M:%S %Z").encode(encoding) + b"\n"
  53. )
  54. f.write(
  55. ("Subject: [PATCH %d/%d] " % (num, total)).encode(encoding)
  56. + commit.message
  57. + b"\n"
  58. )
  59. f.write(b"\n")
  60. f.write(b"---\n")
  61. try:
  62. import subprocess
  63. p = subprocess.Popen(
  64. ["diffstat"], stdout=subprocess.PIPE, stdin=subprocess.PIPE
  65. )
  66. except (ImportError, OSError):
  67. pass # diffstat not available?
  68. else:
  69. (diffstat, _) = p.communicate(contents)
  70. f.write(diffstat)
  71. f.write(b"\n")
  72. f.write(contents)
  73. f.write(b"-- \n")
  74. if version is None:
  75. from dulwich import __version__ as dulwich_version
  76. f.write(b"Dulwich %d.%d.%d\n" % dulwich_version)
  77. else:
  78. f.write(version.encode(encoding) + b"\n")
  79. def get_summary(commit):
  80. """Determine the summary line for use in a filename.
  81. Args:
  82. commit: Commit
  83. Returns: Summary string
  84. """
  85. decoded = commit.message.decode(errors="replace")
  86. return decoded.splitlines()[0].replace(" ", "-")
  87. # Unified Diff
  88. def _format_range_unified(start, stop):
  89. """Convert range to the "ed" format."""
  90. # Per the diff spec at http://www.unix.org/single_unix_specification/
  91. beginning = start + 1 # lines start numbering with one
  92. length = stop - start
  93. if length == 1:
  94. return f"{beginning}"
  95. if not length:
  96. beginning -= 1 # empty ranges begin at line just before the range
  97. return f"{beginning},{length}"
  98. def unified_diff(
  99. a,
  100. b,
  101. fromfile="",
  102. tofile="",
  103. fromfiledate="",
  104. tofiledate="",
  105. n=3,
  106. lineterm="\n",
  107. tree_encoding="utf-8",
  108. output_encoding="utf-8",
  109. ):
  110. """difflib.unified_diff that can detect "No newline at end of file" as
  111. original "git diff" does.
  112. Based on the same function in Python2.7 difflib.py
  113. """
  114. started = False
  115. for group in SequenceMatcher(None, a, b).get_grouped_opcodes(n):
  116. if not started:
  117. started = True
  118. fromdate = f"\t{fromfiledate}" if fromfiledate else ""
  119. todate = f"\t{tofiledate}" if tofiledate else ""
  120. yield f"--- {fromfile.decode(tree_encoding)}{fromdate}{lineterm}".encode(
  121. output_encoding
  122. )
  123. yield f"+++ {tofile.decode(tree_encoding)}{todate}{lineterm}".encode(
  124. output_encoding
  125. )
  126. first, last = group[0], group[-1]
  127. file1_range = _format_range_unified(first[1], last[2])
  128. file2_range = _format_range_unified(first[3], last[4])
  129. yield f"@@ -{file1_range} +{file2_range} @@{lineterm}".encode(output_encoding)
  130. for tag, i1, i2, j1, j2 in group:
  131. if tag == "equal":
  132. for line in a[i1:i2]:
  133. yield b" " + line
  134. continue
  135. if tag in ("replace", "delete"):
  136. for line in a[i1:i2]:
  137. if not line[-1:] == b"\n":
  138. line += b"\n\\ No newline at end of file\n"
  139. yield b"-" + line
  140. if tag in ("replace", "insert"):
  141. for line in b[j1:j2]:
  142. if not line[-1:] == b"\n":
  143. line += b"\n\\ No newline at end of file\n"
  144. yield b"+" + line
  145. def is_binary(content):
  146. """See if the first few bytes contain any null characters.
  147. Args:
  148. content: Bytestring to check for binary content
  149. """
  150. return b"\0" in content[:FIRST_FEW_BYTES]
  151. def shortid(hexsha):
  152. if hexsha is None:
  153. return b"0" * 7
  154. else:
  155. return hexsha[:7]
  156. def patch_filename(p, root):
  157. if p is None:
  158. return b"/dev/null"
  159. else:
  160. return root + b"/" + p
  161. def write_object_diff(f, store: ObjectContainer, old_file, new_file, diff_binary=False):
  162. """Write the diff for an object.
  163. Args:
  164. f: File-like object to write to
  165. store: Store to retrieve objects from, if necessary
  166. old_file: (path, mode, hexsha) tuple
  167. new_file: (path, mode, hexsha) tuple
  168. diff_binary: Whether to diff files even if they
  169. are considered binary files by is_binary().
  170. Note: the tuple elements should be None for nonexistent files
  171. """
  172. (old_path, old_mode, old_id) = old_file
  173. (new_path, new_mode, new_id) = new_file
  174. patched_old_path = patch_filename(old_path, b"a")
  175. patched_new_path = patch_filename(new_path, b"b")
  176. def content(mode, hexsha):
  177. if hexsha is None:
  178. return Blob.from_string(b"")
  179. elif S_ISGITLINK(mode):
  180. return Blob.from_string(b"Subproject commit " + hexsha + b"\n")
  181. else:
  182. return store[hexsha]
  183. def lines(content):
  184. if not content:
  185. return []
  186. else:
  187. return content.splitlines()
  188. f.writelines(
  189. gen_diff_header((old_path, new_path), (old_mode, new_mode), (old_id, new_id))
  190. )
  191. old_content = content(old_mode, old_id)
  192. new_content = content(new_mode, new_id)
  193. if not diff_binary and (is_binary(old_content.data) or is_binary(new_content.data)):
  194. binary_diff = (
  195. b"Binary files "
  196. + patched_old_path
  197. + b" and "
  198. + patched_new_path
  199. + b" differ\n"
  200. )
  201. f.write(binary_diff)
  202. else:
  203. f.writelines(
  204. unified_diff(
  205. lines(old_content),
  206. lines(new_content),
  207. patched_old_path,
  208. patched_new_path,
  209. )
  210. )
  211. # TODO(jelmer): Support writing unicode, rather than bytes.
  212. def gen_diff_header(paths, modes, shas):
  213. """Write a blob diff header.
  214. Args:
  215. paths: Tuple with old and new path
  216. modes: Tuple with old and new modes
  217. shas: Tuple with old and new shas
  218. """
  219. (old_path, new_path) = paths
  220. (old_mode, new_mode) = modes
  221. (old_sha, new_sha) = shas
  222. if old_path is None and new_path is not None:
  223. old_path = new_path
  224. if new_path is None and old_path is not None:
  225. new_path = old_path
  226. old_path = patch_filename(old_path, b"a")
  227. new_path = patch_filename(new_path, b"b")
  228. yield b"diff --git " + old_path + b" " + new_path + b"\n"
  229. if old_mode != new_mode:
  230. if new_mode is not None:
  231. if old_mode is not None:
  232. yield (f"old file mode {old_mode:o}\n").encode("ascii")
  233. yield (f"new file mode {new_mode:o}\n").encode("ascii")
  234. else:
  235. yield (f"deleted file mode {old_mode:o}\n").encode("ascii")
  236. yield b"index " + shortid(old_sha) + b".." + shortid(new_sha)
  237. if new_mode is not None and old_mode is not None:
  238. yield (f" {new_mode:o}").encode("ascii")
  239. yield b"\n"
  240. # TODO(jelmer): Support writing unicode, rather than bytes.
  241. def write_blob_diff(f, old_file, new_file):
  242. """Write blob diff.
  243. Args:
  244. f: File-like object to write to
  245. old_file: (path, mode, hexsha) tuple (None if nonexisting)
  246. new_file: (path, mode, hexsha) tuple (None if nonexisting)
  247. Note: The use of write_object_diff is recommended over this function.
  248. """
  249. (old_path, old_mode, old_blob) = old_file
  250. (new_path, new_mode, new_blob) = new_file
  251. patched_old_path = patch_filename(old_path, b"a")
  252. patched_new_path = patch_filename(new_path, b"b")
  253. def lines(blob):
  254. if blob is not None:
  255. return blob.splitlines()
  256. else:
  257. return []
  258. f.writelines(
  259. gen_diff_header(
  260. (old_path, new_path),
  261. (old_mode, new_mode),
  262. (getattr(old_blob, "id", None), getattr(new_blob, "id", None)),
  263. )
  264. )
  265. old_contents = lines(old_blob)
  266. new_contents = lines(new_blob)
  267. f.writelines(
  268. unified_diff(old_contents, new_contents, patched_old_path, patched_new_path)
  269. )
  270. def write_tree_diff(f, store, old_tree, new_tree, diff_binary=False):
  271. """Write tree diff.
  272. Args:
  273. f: File-like object to write to.
  274. old_tree: Old tree id
  275. new_tree: New tree id
  276. diff_binary: Whether to diff files even if they
  277. are considered binary files by is_binary().
  278. """
  279. changes = store.tree_changes(old_tree, new_tree)
  280. for (oldpath, newpath), (oldmode, newmode), (oldsha, newsha) in changes:
  281. write_object_diff(
  282. f,
  283. store,
  284. (oldpath, oldmode, oldsha),
  285. (newpath, newmode, newsha),
  286. diff_binary=diff_binary,
  287. )
  288. def git_am_patch_split(f: Union[TextIO, BinaryIO], encoding: Optional[str] = None):
  289. """Parse a git-am-style patch and split it up into bits.
  290. Args:
  291. f: File-like object to parse
  292. encoding: Encoding to use when creating Git objects
  293. Returns: Tuple with commit object, diff contents and git version
  294. """
  295. encoding = encoding or getattr(f, "encoding", "ascii")
  296. encoding = encoding or "ascii"
  297. contents = f.read()
  298. if isinstance(contents, bytes):
  299. bparser = email.parser.BytesParser()
  300. msg = bparser.parsebytes(contents)
  301. else:
  302. uparser = email.parser.Parser()
  303. msg = uparser.parsestr(contents)
  304. return parse_patch_message(msg, encoding)
  305. def parse_patch_message(msg, encoding=None):
  306. """Extract a Commit object and patch from an e-mail message.
  307. Args:
  308. msg: An email message (email.message.Message)
  309. encoding: Encoding to use to encode Git commits
  310. Returns: Tuple with commit object, diff contents and git version
  311. """
  312. c = Commit()
  313. c.author = msg["from"].encode(encoding)
  314. c.committer = msg["from"].encode(encoding)
  315. try:
  316. patch_tag_start = msg["subject"].index("[PATCH")
  317. except ValueError:
  318. subject = msg["subject"]
  319. else:
  320. close = msg["subject"].index("] ", patch_tag_start)
  321. subject = msg["subject"][close + 2 :]
  322. c.message = (subject.replace("\n", "") + "\n").encode(encoding)
  323. first = True
  324. body = msg.get_payload(decode=True)
  325. lines = body.splitlines(True)
  326. line_iter = iter(lines)
  327. for line in line_iter:
  328. if line == b"---\n":
  329. break
  330. if first:
  331. if line.startswith(b"From: "):
  332. c.author = line[len(b"From: ") :].rstrip()
  333. else:
  334. c.message += b"\n" + line
  335. first = False
  336. else:
  337. c.message += line
  338. diff = b""
  339. for line in line_iter:
  340. if line == b"-- \n":
  341. break
  342. diff += line
  343. try:
  344. version = next(line_iter).rstrip(b"\n")
  345. except StopIteration:
  346. version = None
  347. return c, diff, version