objects.py 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569
  1. # objects.py -- Access to base git objects
  2. # Copyright (C) 2007 James Westby <jw+debian@jameswestby.net>
  3. # Copyright (C) 2008-2013 Jelmer Vernooij <jelmer@jelmer.uk>
  4. #
  5. # Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
  6. # General Public License as public by the Free Software Foundation; version 2.0
  7. # or (at your option) any later version. You can redistribute it and/or
  8. # modify it under the terms of either of these two licenses.
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. # You should have received a copy of the licenses; if not, see
  17. # <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
  18. # and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
  19. # License, Version 2.0.
  20. #
  21. """Access to base git objects."""
  22. import binascii
  23. from io import BytesIO
  24. from collections import namedtuple
  25. import os
  26. import posixpath
  27. import stat
  28. from typing import (
  29. Optional,
  30. Dict,
  31. Iterable,
  32. Union,
  33. Type,
  34. )
  35. import warnings
  36. import zlib
  37. from hashlib import sha1
  38. from dulwich.errors import (
  39. ChecksumMismatch,
  40. NotBlobError,
  41. NotCommitError,
  42. NotTagError,
  43. NotTreeError,
  44. ObjectFormatException,
  45. FileFormatException,
  46. )
  47. from dulwich.file import GitFile
  48. ZERO_SHA = b"0" * 40
  49. # Header fields for commits
  50. _TREE_HEADER = b"tree"
  51. _PARENT_HEADER = b"parent"
  52. _AUTHOR_HEADER = b"author"
  53. _COMMITTER_HEADER = b"committer"
  54. _ENCODING_HEADER = b"encoding"
  55. _MERGETAG_HEADER = b"mergetag"
  56. _GPGSIG_HEADER = b"gpgsig"
  57. # Header fields for objects
  58. _OBJECT_HEADER = b"object"
  59. _TYPE_HEADER = b"type"
  60. _TAG_HEADER = b"tag"
  61. _TAGGER_HEADER = b"tagger"
  62. S_IFGITLINK = 0o160000
  63. MAX_TIME = 9223372036854775807 # (2**63) - 1 - signed long int max
  64. BEGIN_PGP_SIGNATURE = b"-----BEGIN PGP SIGNATURE-----"
  65. class EmptyFileException(FileFormatException):
  66. """An unexpectedly empty file was encountered."""
  67. def S_ISGITLINK(m):
  68. """Check if a mode indicates a submodule.
  69. Args:
  70. m: Mode to check
  71. Returns: a ``boolean``
  72. """
  73. return stat.S_IFMT(m) == S_IFGITLINK
  74. def _decompress(string):
  75. dcomp = zlib.decompressobj()
  76. dcomped = dcomp.decompress(string)
  77. dcomped += dcomp.flush()
  78. return dcomped
  79. def sha_to_hex(sha):
  80. """Takes a string and returns the hex of the sha within"""
  81. hexsha = binascii.hexlify(sha)
  82. assert len(hexsha) == 40, "Incorrect length of sha1 string: %s" % hexsha
  83. return hexsha
  84. def hex_to_sha(hex):
  85. """Takes a hex sha and returns a binary sha"""
  86. assert len(hex) == 40, "Incorrect length of hexsha: %s" % hex
  87. try:
  88. return binascii.unhexlify(hex)
  89. except TypeError as exc:
  90. if not isinstance(hex, bytes):
  91. raise
  92. raise ValueError(exc.args[0])
  93. def valid_hexsha(hex):
  94. if len(hex) != 40:
  95. return False
  96. try:
  97. binascii.unhexlify(hex)
  98. except (TypeError, binascii.Error):
  99. return False
  100. else:
  101. return True
  102. def hex_to_filename(path, hex):
  103. """Takes a hex sha and returns its filename relative to the given path."""
  104. # os.path.join accepts bytes or unicode, but all args must be of the same
  105. # type. Make sure that hex which is expected to be bytes, is the same type
  106. # as path.
  107. if getattr(path, "encode", None) is not None:
  108. hex = hex.decode("ascii")
  109. dir = hex[:2]
  110. file = hex[2:]
  111. # Check from object dir
  112. return os.path.join(path, dir, file)
  113. def filename_to_hex(filename):
  114. """Takes an object filename and returns its corresponding hex sha."""
  115. # grab the last (up to) two path components
  116. names = filename.rsplit(os.path.sep, 2)[-2:]
  117. errmsg = "Invalid object filename: %s" % filename
  118. assert len(names) == 2, errmsg
  119. base, rest = names
  120. assert len(base) == 2 and len(rest) == 38, errmsg
  121. hex = (base + rest).encode("ascii")
  122. hex_to_sha(hex)
  123. return hex
  124. def object_header(num_type: int, length: int) -> bytes:
  125. """Return an object header for the given numeric type and text length."""
  126. return object_class(num_type).type_name + b" " + str(length).encode("ascii") + b"\0"
  127. def serializable_property(name: str, docstring: Optional[str] = None):
  128. """A property that helps tracking whether serialization is necessary."""
  129. def set(obj, value):
  130. setattr(obj, "_" + name, value)
  131. obj._needs_serialization = True
  132. def get(obj):
  133. return getattr(obj, "_" + name)
  134. return property(get, set, doc=docstring)
  135. def object_class(type):
  136. """Get the object class corresponding to the given type.
  137. Args:
  138. type: Either a type name string or a numeric type.
  139. Returns: The ShaFile subclass corresponding to the given type, or None if
  140. type is not a valid type name/number.
  141. """
  142. return _TYPE_MAP.get(type, None)
  143. def check_hexsha(hex, error_msg):
  144. """Check if a string is a valid hex sha string.
  145. Args:
  146. hex: Hex string to check
  147. error_msg: Error message to use in exception
  148. Raises:
  149. ObjectFormatException: Raised when the string is not valid
  150. """
  151. if not valid_hexsha(hex):
  152. raise ObjectFormatException("%s %s" % (error_msg, hex))
  153. def check_identity(identity, error_msg):
  154. """Check if the specified identity is valid.
  155. This will raise an exception if the identity is not valid.
  156. Args:
  157. identity: Identity string
  158. error_msg: Error message to use in exception
  159. """
  160. email_start = identity.find(b"<")
  161. email_end = identity.find(b">")
  162. if (
  163. email_start < 0
  164. or email_end < 0
  165. or email_end <= email_start
  166. or identity.find(b"<", email_start + 1) >= 0
  167. or identity.find(b">", email_end + 1) >= 0
  168. or not identity.endswith(b">")
  169. ):
  170. raise ObjectFormatException(error_msg)
  171. def check_time(time_seconds):
  172. """Check if the specified time is not prone to overflow error.
  173. This will raise an exception if the time is not valid.
  174. Args:
  175. time_info: author/committer/tagger info
  176. """
  177. # Prevent overflow error
  178. if time_seconds > MAX_TIME:
  179. raise ObjectFormatException("Date field should not exceed %s" % MAX_TIME)
  180. def git_line(*items):
  181. """Formats items into a space separated line."""
  182. return b" ".join(items) + b"\n"
  183. class FixedSha(object):
  184. """SHA object that behaves like hashlib's but is given a fixed value."""
  185. __slots__ = ("_hexsha", "_sha")
  186. def __init__(self, hexsha):
  187. if getattr(hexsha, "encode", None) is not None:
  188. hexsha = hexsha.encode("ascii")
  189. if not isinstance(hexsha, bytes):
  190. raise TypeError("Expected bytes for hexsha, got %r" % hexsha)
  191. self._hexsha = hexsha
  192. self._sha = hex_to_sha(hexsha)
  193. def digest(self):
  194. """Return the raw SHA digest."""
  195. return self._sha
  196. def hexdigest(self):
  197. """Return the hex SHA digest."""
  198. return self._hexsha.decode("ascii")
  199. class ShaFile(object):
  200. """A git SHA file."""
  201. __slots__ = ("_chunked_text", "_sha", "_needs_serialization")
  202. type_name = None # type: bytes
  203. type_num = None # type: int
  204. @staticmethod
  205. def _parse_legacy_object_header(magic, f):
  206. """Parse a legacy object, creating it but not reading the file."""
  207. bufsize = 1024
  208. decomp = zlib.decompressobj()
  209. header = decomp.decompress(magic)
  210. start = 0
  211. end = -1
  212. while end < 0:
  213. extra = f.read(bufsize)
  214. header += decomp.decompress(extra)
  215. magic += extra
  216. end = header.find(b"\0", start)
  217. start = len(header)
  218. header = header[:end]
  219. type_name, size = header.split(b" ", 1)
  220. try:
  221. int(size) # sanity check
  222. except ValueError as e:
  223. raise ObjectFormatException("Object size not an integer: %s" % e)
  224. obj_class = object_class(type_name)
  225. if not obj_class:
  226. raise ObjectFormatException("Not a known type: %s" % type_name)
  227. return obj_class()
  228. def _parse_legacy_object(self, map):
  229. """Parse a legacy object, setting the raw string."""
  230. text = _decompress(map)
  231. header_end = text.find(b"\0")
  232. if header_end < 0:
  233. raise ObjectFormatException("Invalid object header, no \\0")
  234. self.set_raw_string(text[header_end + 1 :])
  235. def as_legacy_object_chunks(self, compression_level=-1):
  236. """Return chunks representing the object in the experimental format.
  237. Returns: List of strings
  238. """
  239. compobj = zlib.compressobj(compression_level)
  240. yield compobj.compress(self._header())
  241. for chunk in self.as_raw_chunks():
  242. yield compobj.compress(chunk)
  243. yield compobj.flush()
  244. def as_legacy_object(self, compression_level=-1):
  245. """Return string representing the object in the experimental format."""
  246. return b"".join(
  247. self.as_legacy_object_chunks(compression_level=compression_level)
  248. )
  249. def as_raw_chunks(self):
  250. """Return chunks with serialization of the object.
  251. Returns: List of strings, not necessarily one per line
  252. """
  253. if self._needs_serialization:
  254. self._sha = None
  255. self._chunked_text = self._serialize()
  256. self._needs_serialization = False
  257. return self._chunked_text
  258. def as_raw_string(self):
  259. """Return raw string with serialization of the object.
  260. Returns: String object
  261. """
  262. return b"".join(self.as_raw_chunks())
  263. def __bytes__(self):
  264. """Return raw string serialization of this object."""
  265. return self.as_raw_string()
  266. def __hash__(self):
  267. """Return unique hash for this object."""
  268. return hash(self.id)
  269. def as_pretty_string(self):
  270. """Return a string representing this object, fit for display."""
  271. return self.as_raw_string()
  272. def set_raw_string(self, text, sha=None):
  273. """Set the contents of this object from a serialized string."""
  274. if not isinstance(text, bytes):
  275. raise TypeError("Expected bytes for text, got %r" % text)
  276. self.set_raw_chunks([text], sha)
  277. def set_raw_chunks(self, chunks, sha=None):
  278. """Set the contents of this object from a list of chunks."""
  279. self._chunked_text = chunks
  280. self._deserialize(chunks)
  281. if sha is None:
  282. self._sha = None
  283. else:
  284. self._sha = FixedSha(sha)
  285. self._needs_serialization = False
  286. @staticmethod
  287. def _parse_object_header(magic, f):
  288. """Parse a new style object, creating it but not reading the file."""
  289. num_type = (ord(magic[0:1]) >> 4) & 7
  290. obj_class = object_class(num_type)
  291. if not obj_class:
  292. raise ObjectFormatException("Not a known type %d" % num_type)
  293. return obj_class()
  294. def _parse_object(self, map):
  295. """Parse a new style object, setting self._text."""
  296. # skip type and size; type must have already been determined, and
  297. # we trust zlib to fail if it's otherwise corrupted
  298. byte = ord(map[0:1])
  299. used = 1
  300. while (byte & 0x80) != 0:
  301. byte = ord(map[used : used + 1])
  302. used += 1
  303. raw = map[used:]
  304. self.set_raw_string(_decompress(raw))
  305. @classmethod
  306. def _is_legacy_object(cls, magic):
  307. b0 = ord(magic[0:1])
  308. b1 = ord(magic[1:2])
  309. word = (b0 << 8) + b1
  310. return (b0 & 0x8F) == 0x08 and (word % 31) == 0
  311. @classmethod
  312. def _parse_file(cls, f):
  313. map = f.read()
  314. if not map:
  315. raise EmptyFileException("Corrupted empty file detected")
  316. if cls._is_legacy_object(map):
  317. obj = cls._parse_legacy_object_header(map, f)
  318. obj._parse_legacy_object(map)
  319. else:
  320. obj = cls._parse_object_header(map, f)
  321. obj._parse_object(map)
  322. return obj
  323. def __init__(self):
  324. """Don't call this directly"""
  325. self._sha = None
  326. self._chunked_text = []
  327. self._needs_serialization = True
  328. def _deserialize(self, chunks):
  329. raise NotImplementedError(self._deserialize)
  330. def _serialize(self):
  331. raise NotImplementedError(self._serialize)
  332. @classmethod
  333. def from_path(cls, path):
  334. """Open a SHA file from disk."""
  335. with GitFile(path, "rb") as f:
  336. return cls.from_file(f)
  337. @classmethod
  338. def from_file(cls, f):
  339. """Get the contents of a SHA file on disk."""
  340. try:
  341. obj = cls._parse_file(f)
  342. obj._sha = None
  343. return obj
  344. except (IndexError, ValueError):
  345. raise ObjectFormatException("invalid object header")
  346. @staticmethod
  347. def from_raw_string(type_num, string, sha=None):
  348. """Creates an object of the indicated type from the raw string given.
  349. Args:
  350. type_num: The numeric type of the object.
  351. string: The raw uncompressed contents.
  352. sha: Optional known sha for the object
  353. """
  354. obj = object_class(type_num)()
  355. obj.set_raw_string(string, sha)
  356. return obj
  357. @staticmethod
  358. def from_raw_chunks(type_num, chunks, sha=None):
  359. """Creates an object of the indicated type from the raw chunks given.
  360. Args:
  361. type_num: The numeric type of the object.
  362. chunks: An iterable of the raw uncompressed contents.
  363. sha: Optional known sha for the object
  364. """
  365. obj = object_class(type_num)()
  366. obj.set_raw_chunks(chunks, sha)
  367. return obj
  368. @classmethod
  369. def from_string(cls, string):
  370. """Create a ShaFile from a string."""
  371. obj = cls()
  372. obj.set_raw_string(string)
  373. return obj
  374. def _check_has_member(self, member, error_msg):
  375. """Check that the object has a given member variable.
  376. Args:
  377. member: the member variable to check for
  378. error_msg: the message for an error if the member is missing
  379. Raises:
  380. ObjectFormatException: with the given error_msg if member is
  381. missing or is None
  382. """
  383. if getattr(self, member, None) is None:
  384. raise ObjectFormatException(error_msg)
  385. def check(self):
  386. """Check this object for internal consistency.
  387. Raises:
  388. ObjectFormatException: if the object is malformed in some way
  389. ChecksumMismatch: if the object was created with a SHA that does
  390. not match its contents
  391. """
  392. # TODO: if we find that error-checking during object parsing is a
  393. # performance bottleneck, those checks should be moved to the class's
  394. # check() method during optimization so we can still check the object
  395. # when necessary.
  396. old_sha = self.id
  397. try:
  398. self._deserialize(self.as_raw_chunks())
  399. self._sha = None
  400. new_sha = self.id
  401. except Exception as e:
  402. raise ObjectFormatException(e)
  403. if old_sha != new_sha:
  404. raise ChecksumMismatch(new_sha, old_sha)
  405. def _header(self):
  406. return object_header(self.type, self.raw_length())
  407. def raw_length(self):
  408. """Returns the length of the raw string of this object."""
  409. ret = 0
  410. for chunk in self.as_raw_chunks():
  411. ret += len(chunk)
  412. return ret
  413. def sha(self):
  414. """The SHA1 object that is the name of this object."""
  415. if self._sha is None or self._needs_serialization:
  416. # this is a local because as_raw_chunks() overwrites self._sha
  417. new_sha = sha1()
  418. new_sha.update(self._header())
  419. for chunk in self.as_raw_chunks():
  420. new_sha.update(chunk)
  421. self._sha = new_sha
  422. return self._sha
  423. def copy(self):
  424. """Create a new copy of this SHA1 object from its raw string"""
  425. obj_class = object_class(self.get_type())
  426. return obj_class.from_raw_string(self.get_type(), self.as_raw_string(), self.id)
  427. @property
  428. def id(self):
  429. """The hex SHA of this object."""
  430. return self.sha().hexdigest().encode("ascii")
  431. def get_type(self):
  432. """Return the type number for this object class."""
  433. return self.type_num
  434. def set_type(self, type):
  435. """Set the type number for this object class."""
  436. self.type_num = type
  437. # DEPRECATED: use type_num or type_name as needed.
  438. type = property(get_type, set_type)
  439. def __repr__(self):
  440. return "<%s %s>" % (self.__class__.__name__, self.id)
  441. def __ne__(self, other):
  442. """Check whether this object does not match the other."""
  443. return not isinstance(other, ShaFile) or self.id != other.id
  444. def __eq__(self, other):
  445. """Return True if the SHAs of the two objects match."""
  446. return isinstance(other, ShaFile) and self.id == other.id
  447. def __lt__(self, other):
  448. """Return whether SHA of this object is less than the other."""
  449. if not isinstance(other, ShaFile):
  450. raise TypeError
  451. return self.id < other.id
  452. def __le__(self, other):
  453. """Check whether SHA of this object is less than or equal to the other."""
  454. if not isinstance(other, ShaFile):
  455. raise TypeError
  456. return self.id <= other.id
  457. def __cmp__(self, other):
  458. """Compare the SHA of this object with that of the other object."""
  459. if not isinstance(other, ShaFile):
  460. raise TypeError
  461. return cmp(self.id, other.id) # noqa: F821
  462. class Blob(ShaFile):
  463. """A Git Blob object."""
  464. __slots__ = ()
  465. type_name = b"blob"
  466. type_num = 3
  467. def __init__(self):
  468. super(Blob, self).__init__()
  469. self._chunked_text = []
  470. self._needs_serialization = False
  471. def _get_data(self):
  472. return self.as_raw_string()
  473. def _set_data(self, data):
  474. self.set_raw_string(data)
  475. data = property(
  476. _get_data, _set_data, doc="The text contained within the blob object."
  477. )
  478. def _get_chunked(self):
  479. return self._chunked_text
  480. def _set_chunked(self, chunks):
  481. self._chunked_text = chunks
  482. def _serialize(self):
  483. return self._chunked_text
  484. def _deserialize(self, chunks):
  485. self._chunked_text = chunks
  486. chunked = property(
  487. _get_chunked,
  488. _set_chunked,
  489. doc="The text in the blob object, as chunks (not necessarily lines)",
  490. )
  491. @classmethod
  492. def from_path(cls, path):
  493. blob = ShaFile.from_path(path)
  494. if not isinstance(blob, cls):
  495. raise NotBlobError(path)
  496. return blob
  497. def check(self):
  498. """Check this object for internal consistency.
  499. Raises:
  500. ObjectFormatException: if the object is malformed in some way
  501. """
  502. super(Blob, self).check()
  503. def splitlines(self):
  504. """Return list of lines in this blob.
  505. This preserves the original line endings.
  506. """
  507. chunks = self.chunked
  508. if not chunks:
  509. return []
  510. if len(chunks) == 1:
  511. return chunks[0].splitlines(True)
  512. remaining = None
  513. ret = []
  514. for chunk in chunks:
  515. lines = chunk.splitlines(True)
  516. if len(lines) > 1:
  517. ret.append((remaining or b"") + lines[0])
  518. ret.extend(lines[1:-1])
  519. remaining = lines[-1]
  520. elif len(lines) == 1:
  521. if remaining is None:
  522. remaining = lines.pop()
  523. else:
  524. remaining += lines.pop()
  525. if remaining is not None:
  526. ret.append(remaining)
  527. return ret
  528. def _parse_message(chunks):
  529. """Parse a message with a list of fields and a body.
  530. Args:
  531. chunks: the raw chunks of the tag or commit object.
  532. Returns: iterator of tuples of (field, value), one per header line, in the
  533. order read from the text, possibly including duplicates. Includes a
  534. field named None for the freeform tag/commit text.
  535. """
  536. f = BytesIO(b"".join(chunks))
  537. k = None
  538. v = ""
  539. eof = False
  540. def _strip_last_newline(value):
  541. """Strip the last newline from value"""
  542. if value and value.endswith(b"\n"):
  543. return value[:-1]
  544. return value
  545. # Parse the headers
  546. #
  547. # Headers can contain newlines. The next line is indented with a space.
  548. # We store the latest key as 'k', and the accumulated value as 'v'.
  549. for line in f:
  550. if line.startswith(b" "):
  551. # Indented continuation of the previous line
  552. v += line[1:]
  553. else:
  554. if k is not None:
  555. # We parsed a new header, return its value
  556. yield (k, _strip_last_newline(v))
  557. if line == b"\n":
  558. # Empty line indicates end of headers
  559. break
  560. (k, v) = line.split(b" ", 1)
  561. else:
  562. # We reached end of file before the headers ended. We still need to
  563. # return the previous header, then we need to return a None field for
  564. # the text.
  565. eof = True
  566. if k is not None:
  567. yield (k, _strip_last_newline(v))
  568. yield (None, None)
  569. if not eof:
  570. # We didn't reach the end of file while parsing headers. We can return
  571. # the rest of the file as a message.
  572. yield (None, f.read())
  573. f.close()
  574. class Tag(ShaFile):
  575. """A Git Tag object."""
  576. type_name = b"tag"
  577. type_num = 4
  578. __slots__ = (
  579. "_tag_timezone_neg_utc",
  580. "_name",
  581. "_object_sha",
  582. "_object_class",
  583. "_tag_time",
  584. "_tag_timezone",
  585. "_tagger",
  586. "_message",
  587. "_signature",
  588. )
  589. def __init__(self):
  590. super(Tag, self).__init__()
  591. self._tagger = None
  592. self._tag_time = None
  593. self._tag_timezone = None
  594. self._tag_timezone_neg_utc = False
  595. self._signature = None
  596. @classmethod
  597. def from_path(cls, filename):
  598. tag = ShaFile.from_path(filename)
  599. if not isinstance(tag, cls):
  600. raise NotTagError(filename)
  601. return tag
  602. def check(self):
  603. """Check this object for internal consistency.
  604. Raises:
  605. ObjectFormatException: if the object is malformed in some way
  606. """
  607. super(Tag, self).check()
  608. self._check_has_member("_object_sha", "missing object sha")
  609. self._check_has_member("_object_class", "missing object type")
  610. self._check_has_member("_name", "missing tag name")
  611. if not self._name:
  612. raise ObjectFormatException("empty tag name")
  613. check_hexsha(self._object_sha, "invalid object sha")
  614. if getattr(self, "_tagger", None):
  615. check_identity(self._tagger, "invalid tagger")
  616. self._check_has_member("_tag_time", "missing tag time")
  617. check_time(self._tag_time)
  618. last = None
  619. for field, _ in _parse_message(self._chunked_text):
  620. if field == _OBJECT_HEADER and last is not None:
  621. raise ObjectFormatException("unexpected object")
  622. elif field == _TYPE_HEADER and last != _OBJECT_HEADER:
  623. raise ObjectFormatException("unexpected type")
  624. elif field == _TAG_HEADER and last != _TYPE_HEADER:
  625. raise ObjectFormatException("unexpected tag name")
  626. elif field == _TAGGER_HEADER and last != _TAG_HEADER:
  627. raise ObjectFormatException("unexpected tagger")
  628. last = field
  629. def _serialize(self):
  630. chunks = []
  631. chunks.append(git_line(_OBJECT_HEADER, self._object_sha))
  632. chunks.append(git_line(_TYPE_HEADER, self._object_class.type_name))
  633. chunks.append(git_line(_TAG_HEADER, self._name))
  634. if self._tagger:
  635. if self._tag_time is None:
  636. chunks.append(git_line(_TAGGER_HEADER, self._tagger))
  637. else:
  638. chunks.append(
  639. git_line(
  640. _TAGGER_HEADER,
  641. self._tagger,
  642. str(self._tag_time).encode("ascii"),
  643. format_timezone(self._tag_timezone, self._tag_timezone_neg_utc),
  644. )
  645. )
  646. if self._message is not None:
  647. chunks.append(b"\n") # To close headers
  648. chunks.append(self._message)
  649. if self._signature is not None:
  650. chunks.append(self._signature)
  651. return chunks
  652. def _deserialize(self, chunks):
  653. """Grab the metadata attached to the tag"""
  654. self._tagger = None
  655. self._tag_time = None
  656. self._tag_timezone = None
  657. self._tag_timezone_neg_utc = False
  658. for field, value in _parse_message(chunks):
  659. if field == _OBJECT_HEADER:
  660. self._object_sha = value
  661. elif field == _TYPE_HEADER:
  662. obj_class = object_class(value)
  663. if not obj_class:
  664. raise ObjectFormatException("Not a known type: %s" % value)
  665. self._object_class = obj_class
  666. elif field == _TAG_HEADER:
  667. self._name = value
  668. elif field == _TAGGER_HEADER:
  669. (
  670. self._tagger,
  671. self._tag_time,
  672. (self._tag_timezone, self._tag_timezone_neg_utc),
  673. ) = parse_time_entry(value)
  674. elif field is None:
  675. if value is None:
  676. self._message = None
  677. self._signature = None
  678. else:
  679. try:
  680. sig_idx = value.index(BEGIN_PGP_SIGNATURE)
  681. except ValueError:
  682. self._message = value
  683. self._signature = None
  684. else:
  685. self._message = value[:sig_idx]
  686. self._signature = value[sig_idx:]
  687. else:
  688. raise ObjectFormatException("Unknown field %s" % field)
  689. def _get_object(self):
  690. """Get the object pointed to by this tag.
  691. Returns: tuple of (object class, sha).
  692. """
  693. return (self._object_class, self._object_sha)
  694. def _set_object(self, value):
  695. (self._object_class, self._object_sha) = value
  696. self._needs_serialization = True
  697. object = property(_get_object, _set_object)
  698. name = serializable_property("name", "The name of this tag")
  699. tagger = serializable_property(
  700. "tagger", "Returns the name of the person who created this tag"
  701. )
  702. tag_time = serializable_property(
  703. "tag_time",
  704. "The creation timestamp of the tag. As the number of seconds "
  705. "since the epoch",
  706. )
  707. tag_timezone = serializable_property(
  708. "tag_timezone", "The timezone that tag_time is in."
  709. )
  710. message = serializable_property("message", "the message attached to this tag")
  711. signature = serializable_property("signature", "Optional detached GPG signature")
  712. def sign(self, keyid: Optional[str] = None):
  713. import gpg
  714. with gpg.Context(armor=True) as c:
  715. if keyid is not None:
  716. key = c.get_key(keyid)
  717. with gpg.Context(armor=True, signers=[key]) as ctx:
  718. self.signature, unused_result = ctx.sign(
  719. self.as_raw_string(),
  720. mode=gpg.constants.sig.mode.DETACH,
  721. )
  722. else:
  723. self.signature, unused_result = c.sign(
  724. self.as_raw_string(), mode=gpg.constants.sig.mode.DETACH
  725. )
  726. def verify(self, keyids: Optional[Iterable[str]] = None):
  727. """Verify GPG signature for this tag (if it is signed).
  728. Args:
  729. keyids: Optional iterable of trusted keyids for this tag.
  730. If this tag is not signed by any key in keyids verification will
  731. fail. If not specified, this function only verifies that the tag
  732. has a valid signature.
  733. Raises:
  734. gpg.errors.BadSignatures: if GPG signature verification fails
  735. gpg.errors.MissingSignatures: if tag was not signed by a key
  736. specified in keyids
  737. """
  738. if self._signature is None:
  739. return
  740. import gpg
  741. with gpg.Context() as ctx:
  742. data, result = ctx.verify(
  743. self.as_raw_string()[: -len(self._signature)],
  744. signature=self._signature,
  745. )
  746. if keyids:
  747. keys = [
  748. ctx.get_key(key)
  749. for key in keyids
  750. ]
  751. for key in keys:
  752. for subkey in keys:
  753. for sig in result.signatures:
  754. if subkey.can_sign and subkey.fpr == sig.fpr:
  755. return
  756. raise gpg.errors.MissingSignatures(
  757. result, keys, results=(data, result)
  758. )
  759. class TreeEntry(namedtuple("TreeEntry", ["path", "mode", "sha"])):
  760. """Named tuple encapsulating a single tree entry."""
  761. def in_path(self, path):
  762. """Return a copy of this entry with the given path prepended."""
  763. if not isinstance(self.path, bytes):
  764. raise TypeError("Expected bytes for path, got %r" % path)
  765. return TreeEntry(posixpath.join(path, self.path), self.mode, self.sha)
  766. def parse_tree(text, strict=False):
  767. """Parse a tree text.
  768. Args:
  769. text: Serialized text to parse
  770. Returns: iterator of tuples of (name, mode, sha)
  771. Raises:
  772. ObjectFormatException: if the object was malformed in some way
  773. """
  774. count = 0
  775. length = len(text)
  776. while count < length:
  777. mode_end = text.index(b" ", count)
  778. mode_text = text[count:mode_end]
  779. if strict and mode_text.startswith(b"0"):
  780. raise ObjectFormatException("Invalid mode '%s'" % mode_text)
  781. try:
  782. mode = int(mode_text, 8)
  783. except ValueError:
  784. raise ObjectFormatException("Invalid mode '%s'" % mode_text)
  785. name_end = text.index(b"\0", mode_end)
  786. name = text[mode_end + 1 : name_end]
  787. count = name_end + 21
  788. sha = text[name_end + 1 : count]
  789. if len(sha) != 20:
  790. raise ObjectFormatException("Sha has invalid length")
  791. hexsha = sha_to_hex(sha)
  792. yield (name, mode, hexsha)
  793. def serialize_tree(items):
  794. """Serialize the items in a tree to a text.
  795. Args:
  796. items: Sorted iterable over (name, mode, sha) tuples
  797. Returns: Serialized tree text as chunks
  798. """
  799. for name, mode, hexsha in items:
  800. yield (
  801. ("%04o" % mode).encode("ascii") + b" " + name + b"\0" + hex_to_sha(hexsha)
  802. )
  803. def sorted_tree_items(entries, name_order):
  804. """Iterate over a tree entries dictionary.
  805. Args:
  806. name_order: If True, iterate entries in order of their name. If
  807. False, iterate entries in tree order, that is, treat subtree entries as
  808. having '/' appended.
  809. entries: Dictionary mapping names to (mode, sha) tuples
  810. Returns: Iterator over (name, mode, hexsha)
  811. """
  812. key_func = name_order and key_entry_name_order or key_entry
  813. for name, entry in sorted(entries.items(), key=key_func):
  814. mode, hexsha = entry
  815. # Stricter type checks than normal to mirror checks in the C version.
  816. mode = int(mode)
  817. if not isinstance(hexsha, bytes):
  818. raise TypeError("Expected bytes for SHA, got %r" % hexsha)
  819. yield TreeEntry(name, mode, hexsha)
  820. def key_entry(entry):
  821. """Sort key for tree entry.
  822. Args:
  823. entry: (name, value) tuplee
  824. """
  825. (name, value) = entry
  826. if stat.S_ISDIR(value[0]):
  827. name += b"/"
  828. return name
  829. def key_entry_name_order(entry):
  830. """Sort key for tree entry in name order."""
  831. return entry[0]
  832. def pretty_format_tree_entry(name, mode, hexsha, encoding="utf-8"):
  833. """Pretty format tree entry.
  834. Args:
  835. name: Name of the directory entry
  836. mode: Mode of entry
  837. hexsha: Hexsha of the referenced object
  838. Returns: string describing the tree entry
  839. """
  840. if mode & stat.S_IFDIR:
  841. kind = "tree"
  842. else:
  843. kind = "blob"
  844. return "%04o %s %s\t%s\n" % (
  845. mode,
  846. kind,
  847. hexsha.decode("ascii"),
  848. name.decode(encoding, "replace"),
  849. )
  850. class SubmoduleEncountered(Exception):
  851. """A submodule was encountered while resolving a path."""
  852. def __init__(self, path, sha):
  853. self.path = path
  854. self.sha = sha
  855. class Tree(ShaFile):
  856. """A Git tree object"""
  857. type_name = b"tree"
  858. type_num = 2
  859. __slots__ = "_entries"
  860. def __init__(self):
  861. super(Tree, self).__init__()
  862. self._entries = {}
  863. @classmethod
  864. def from_path(cls, filename):
  865. tree = ShaFile.from_path(filename)
  866. if not isinstance(tree, cls):
  867. raise NotTreeError(filename)
  868. return tree
  869. def __contains__(self, name):
  870. return name in self._entries
  871. def __getitem__(self, name):
  872. return self._entries[name]
  873. def __setitem__(self, name, value):
  874. """Set a tree entry by name.
  875. Args:
  876. name: The name of the entry, as a string.
  877. value: A tuple of (mode, hexsha), where mode is the mode of the
  878. entry as an integral type and hexsha is the hex SHA of the entry as
  879. a string.
  880. """
  881. mode, hexsha = value
  882. self._entries[name] = (mode, hexsha)
  883. self._needs_serialization = True
  884. def __delitem__(self, name):
  885. del self._entries[name]
  886. self._needs_serialization = True
  887. def __len__(self):
  888. return len(self._entries)
  889. def __iter__(self):
  890. return iter(self._entries)
  891. def add(self, name, mode, hexsha):
  892. """Add an entry to the tree.
  893. Args:
  894. mode: The mode of the entry as an integral type. Not all
  895. possible modes are supported by git; see check() for details.
  896. name: The name of the entry, as a string.
  897. hexsha: The hex SHA of the entry as a string.
  898. """
  899. if isinstance(name, int) and isinstance(mode, bytes):
  900. (name, mode) = (mode, name)
  901. warnings.warn(
  902. "Please use Tree.add(name, mode, hexsha)",
  903. category=DeprecationWarning,
  904. stacklevel=2,
  905. )
  906. self._entries[name] = mode, hexsha
  907. self._needs_serialization = True
  908. def iteritems(self, name_order=False):
  909. """Iterate over entries.
  910. Args:
  911. name_order: If True, iterate in name order instead of tree
  912. order.
  913. Returns: Iterator over (name, mode, sha) tuples
  914. """
  915. return sorted_tree_items(self._entries, name_order)
  916. def items(self):
  917. """Return the sorted entries in this tree.
  918. Returns: List with (name, mode, sha) tuples
  919. """
  920. return list(self.iteritems())
  921. def _deserialize(self, chunks):
  922. """Grab the entries in the tree"""
  923. try:
  924. parsed_entries = parse_tree(b"".join(chunks))
  925. except ValueError as e:
  926. raise ObjectFormatException(e)
  927. # TODO: list comprehension is for efficiency in the common (small)
  928. # case; if memory efficiency in the large case is a concern, use a
  929. # genexp.
  930. self._entries = dict([(n, (m, s)) for n, m, s in parsed_entries])
  931. def check(self):
  932. """Check this object for internal consistency.
  933. Raises:
  934. ObjectFormatException: if the object is malformed in some way
  935. """
  936. super(Tree, self).check()
  937. last = None
  938. allowed_modes = (
  939. stat.S_IFREG | 0o755,
  940. stat.S_IFREG | 0o644,
  941. stat.S_IFLNK,
  942. stat.S_IFDIR,
  943. S_IFGITLINK,
  944. # TODO: optionally exclude as in git fsck --strict
  945. stat.S_IFREG | 0o664,
  946. )
  947. for name, mode, sha in parse_tree(b"".join(self._chunked_text), True):
  948. check_hexsha(sha, "invalid sha %s" % sha)
  949. if b"/" in name or name in (b"", b".", b"..", b".git"):
  950. raise ObjectFormatException(
  951. "invalid name %s" % name.decode("utf-8", "replace")
  952. )
  953. if mode not in allowed_modes:
  954. raise ObjectFormatException("invalid mode %06o" % mode)
  955. entry = (name, (mode, sha))
  956. if last:
  957. if key_entry(last) > key_entry(entry):
  958. raise ObjectFormatException("entries not sorted")
  959. if name == last[0]:
  960. raise ObjectFormatException("duplicate entry %s" % name)
  961. last = entry
  962. def _serialize(self):
  963. return list(serialize_tree(self.iteritems()))
  964. def as_pretty_string(self):
  965. text = []
  966. for name, mode, hexsha in self.iteritems():
  967. text.append(pretty_format_tree_entry(name, mode, hexsha))
  968. return "".join(text)
  969. def lookup_path(self, lookup_obj, path):
  970. """Look up an object in a Git tree.
  971. Args:
  972. lookup_obj: Callback for retrieving object by SHA1
  973. path: Path to lookup
  974. Returns: A tuple of (mode, SHA) of the resulting path.
  975. """
  976. parts = path.split(b"/")
  977. sha = self.id
  978. mode = None
  979. for i, p in enumerate(parts):
  980. if not p:
  981. continue
  982. if mode is not None and S_ISGITLINK(mode):
  983. raise SubmoduleEncountered(b'/'.join(parts[:i]), sha)
  984. obj = lookup_obj(sha)
  985. if not isinstance(obj, Tree):
  986. raise NotTreeError(sha)
  987. mode, sha = obj[p]
  988. return mode, sha
  989. def parse_timezone(text):
  990. """Parse a timezone text fragment (e.g. '+0100').
  991. Args:
  992. text: Text to parse.
  993. Returns: Tuple with timezone as seconds difference to UTC
  994. and a boolean indicating whether this was a UTC timezone
  995. prefixed with a negative sign (-0000).
  996. """
  997. # cgit parses the first character as the sign, and the rest
  998. # as an integer (using strtol), which could also be negative.
  999. # We do the same for compatibility. See #697828.
  1000. if not text[0] in b"+-":
  1001. raise ValueError("Timezone must start with + or - (%(text)s)" % vars())
  1002. sign = text[:1]
  1003. offset = int(text[1:])
  1004. if sign == b"-":
  1005. offset = -offset
  1006. unnecessary_negative_timezone = offset >= 0 and sign == b"-"
  1007. signum = (offset < 0) and -1 or 1
  1008. offset = abs(offset)
  1009. hours = int(offset / 100)
  1010. minutes = offset % 100
  1011. return (
  1012. signum * (hours * 3600 + minutes * 60),
  1013. unnecessary_negative_timezone,
  1014. )
  1015. def format_timezone(offset, unnecessary_negative_timezone=False):
  1016. """Format a timezone for Git serialization.
  1017. Args:
  1018. offset: Timezone offset as seconds difference to UTC
  1019. unnecessary_negative_timezone: Whether to use a minus sign for
  1020. UTC or positive timezones (-0000 and --700 rather than +0000 / +0700).
  1021. """
  1022. if offset % 60 != 0:
  1023. raise ValueError("Unable to handle non-minute offset.")
  1024. if offset < 0 or unnecessary_negative_timezone:
  1025. sign = "-"
  1026. offset = -offset
  1027. else:
  1028. sign = "+"
  1029. return ("%c%02d%02d" % (sign, offset / 3600, (offset / 60) % 60)).encode("ascii")
  1030. def parse_time_entry(value):
  1031. """Parse time entry behavior
  1032. Args:
  1033. value: Bytes representing a git commit/tag line
  1034. Raises:
  1035. ObjectFormatException in case of parsing error (malformed
  1036. field date)
  1037. Returns: Tuple of (author, time, (timezone, timezone_neg_utc))
  1038. """
  1039. try:
  1040. sep = value.rindex(b"> ")
  1041. except ValueError:
  1042. return (value, None, (None, False))
  1043. try:
  1044. person = value[0 : sep + 1]
  1045. rest = value[sep + 2 :]
  1046. timetext, timezonetext = rest.rsplit(b" ", 1)
  1047. time = int(timetext)
  1048. timezone, timezone_neg_utc = parse_timezone(timezonetext)
  1049. except ValueError as e:
  1050. raise ObjectFormatException(e)
  1051. return person, time, (timezone, timezone_neg_utc)
  1052. def parse_commit(chunks):
  1053. """Parse a commit object from chunks.
  1054. Args:
  1055. chunks: Chunks to parse
  1056. Returns: Tuple of (tree, parents, author_info, commit_info,
  1057. encoding, mergetag, gpgsig, message, extra)
  1058. """
  1059. parents = []
  1060. extra = []
  1061. tree = None
  1062. author_info = (None, None, (None, None))
  1063. commit_info = (None, None, (None, None))
  1064. encoding = None
  1065. mergetag = []
  1066. message = None
  1067. gpgsig = None
  1068. for field, value in _parse_message(chunks):
  1069. # TODO(jelmer): Enforce ordering
  1070. if field == _TREE_HEADER:
  1071. tree = value
  1072. elif field == _PARENT_HEADER:
  1073. parents.append(value)
  1074. elif field == _AUTHOR_HEADER:
  1075. author_info = parse_time_entry(value)
  1076. elif field == _COMMITTER_HEADER:
  1077. commit_info = parse_time_entry(value)
  1078. elif field == _ENCODING_HEADER:
  1079. encoding = value
  1080. elif field == _MERGETAG_HEADER:
  1081. mergetag.append(Tag.from_string(value + b"\n"))
  1082. elif field == _GPGSIG_HEADER:
  1083. gpgsig = value
  1084. elif field is None:
  1085. message = value
  1086. else:
  1087. extra.append((field, value))
  1088. return (
  1089. tree,
  1090. parents,
  1091. author_info,
  1092. commit_info,
  1093. encoding,
  1094. mergetag,
  1095. gpgsig,
  1096. message,
  1097. extra,
  1098. )
  1099. class Commit(ShaFile):
  1100. """A git commit object"""
  1101. type_name = b"commit"
  1102. type_num = 1
  1103. __slots__ = (
  1104. "_parents",
  1105. "_encoding",
  1106. "_extra",
  1107. "_author_timezone_neg_utc",
  1108. "_commit_timezone_neg_utc",
  1109. "_commit_time",
  1110. "_author_time",
  1111. "_author_timezone",
  1112. "_commit_timezone",
  1113. "_author",
  1114. "_committer",
  1115. "_tree",
  1116. "_message",
  1117. "_mergetag",
  1118. "_gpgsig",
  1119. )
  1120. def __init__(self):
  1121. super(Commit, self).__init__()
  1122. self._parents = []
  1123. self._encoding = None
  1124. self._mergetag = []
  1125. self._gpgsig = None
  1126. self._extra = []
  1127. self._author_timezone_neg_utc = False
  1128. self._commit_timezone_neg_utc = False
  1129. @classmethod
  1130. def from_path(cls, path):
  1131. commit = ShaFile.from_path(path)
  1132. if not isinstance(commit, cls):
  1133. raise NotCommitError(path)
  1134. return commit
  1135. def _deserialize(self, chunks):
  1136. (
  1137. self._tree,
  1138. self._parents,
  1139. author_info,
  1140. commit_info,
  1141. self._encoding,
  1142. self._mergetag,
  1143. self._gpgsig,
  1144. self._message,
  1145. self._extra,
  1146. ) = parse_commit(chunks)
  1147. (
  1148. self._author,
  1149. self._author_time,
  1150. (self._author_timezone, self._author_timezone_neg_utc),
  1151. ) = author_info
  1152. (
  1153. self._committer,
  1154. self._commit_time,
  1155. (self._commit_timezone, self._commit_timezone_neg_utc),
  1156. ) = commit_info
  1157. def check(self):
  1158. """Check this object for internal consistency.
  1159. Raises:
  1160. ObjectFormatException: if the object is malformed in some way
  1161. """
  1162. super(Commit, self).check()
  1163. self._check_has_member("_tree", "missing tree")
  1164. self._check_has_member("_author", "missing author")
  1165. self._check_has_member("_committer", "missing committer")
  1166. self._check_has_member("_author_time", "missing author time")
  1167. self._check_has_member("_commit_time", "missing commit time")
  1168. for parent in self._parents:
  1169. check_hexsha(parent, "invalid parent sha")
  1170. check_hexsha(self._tree, "invalid tree sha")
  1171. check_identity(self._author, "invalid author")
  1172. check_identity(self._committer, "invalid committer")
  1173. check_time(self._author_time)
  1174. check_time(self._commit_time)
  1175. last = None
  1176. for field, _ in _parse_message(self._chunked_text):
  1177. if field == _TREE_HEADER and last is not None:
  1178. raise ObjectFormatException("unexpected tree")
  1179. elif field == _PARENT_HEADER and last not in (
  1180. _PARENT_HEADER,
  1181. _TREE_HEADER,
  1182. ):
  1183. raise ObjectFormatException("unexpected parent")
  1184. elif field == _AUTHOR_HEADER and last not in (
  1185. _TREE_HEADER,
  1186. _PARENT_HEADER,
  1187. ):
  1188. raise ObjectFormatException("unexpected author")
  1189. elif field == _COMMITTER_HEADER and last != _AUTHOR_HEADER:
  1190. raise ObjectFormatException("unexpected committer")
  1191. elif field == _ENCODING_HEADER and last != _COMMITTER_HEADER:
  1192. raise ObjectFormatException("unexpected encoding")
  1193. last = field
  1194. # TODO: optionally check for duplicate parents
  1195. def _serialize(self):
  1196. chunks = []
  1197. tree_bytes = self._tree.id if isinstance(self._tree, Tree) else self._tree
  1198. chunks.append(git_line(_TREE_HEADER, tree_bytes))
  1199. for p in self._parents:
  1200. chunks.append(git_line(_PARENT_HEADER, p))
  1201. chunks.append(
  1202. git_line(
  1203. _AUTHOR_HEADER,
  1204. self._author,
  1205. str(self._author_time).encode("ascii"),
  1206. format_timezone(self._author_timezone, self._author_timezone_neg_utc),
  1207. )
  1208. )
  1209. chunks.append(
  1210. git_line(
  1211. _COMMITTER_HEADER,
  1212. self._committer,
  1213. str(self._commit_time).encode("ascii"),
  1214. format_timezone(self._commit_timezone, self._commit_timezone_neg_utc),
  1215. )
  1216. )
  1217. if self.encoding:
  1218. chunks.append(git_line(_ENCODING_HEADER, self.encoding))
  1219. for mergetag in self.mergetag:
  1220. mergetag_chunks = mergetag.as_raw_string().split(b"\n")
  1221. chunks.append(git_line(_MERGETAG_HEADER, mergetag_chunks[0]))
  1222. # Embedded extra header needs leading space
  1223. for chunk in mergetag_chunks[1:]:
  1224. chunks.append(b" " + chunk + b"\n")
  1225. # No trailing empty line
  1226. if chunks[-1].endswith(b" \n"):
  1227. chunks[-1] = chunks[-1][:-2]
  1228. for k, v in self.extra:
  1229. if b"\n" in k or b"\n" in v:
  1230. raise AssertionError("newline in extra data: %r -> %r" % (k, v))
  1231. chunks.append(git_line(k, v))
  1232. if self.gpgsig:
  1233. sig_chunks = self.gpgsig.split(b"\n")
  1234. chunks.append(git_line(_GPGSIG_HEADER, sig_chunks[0]))
  1235. for chunk in sig_chunks[1:]:
  1236. chunks.append(git_line(b"", chunk))
  1237. chunks.append(b"\n") # There must be a new line after the headers
  1238. chunks.append(self._message)
  1239. return chunks
  1240. tree = serializable_property("tree", "Tree that is the state of this commit")
  1241. def _get_parents(self):
  1242. """Return a list of parents of this commit."""
  1243. return self._parents
  1244. def _set_parents(self, value):
  1245. """Set a list of parents of this commit."""
  1246. self._needs_serialization = True
  1247. self._parents = value
  1248. parents = property(
  1249. _get_parents,
  1250. _set_parents,
  1251. doc="Parents of this commit, by their SHA1.",
  1252. )
  1253. def _get_extra(self):
  1254. """Return extra settings of this commit."""
  1255. return self._extra
  1256. extra = property(
  1257. _get_extra,
  1258. doc="Extra header fields not understood (presumably added in a "
  1259. "newer version of git). Kept verbatim so the object can "
  1260. "be correctly reserialized. For private commit metadata, use "
  1261. "pseudo-headers in Commit.message, rather than this field.",
  1262. )
  1263. author = serializable_property("author", "The name of the author of the commit")
  1264. committer = serializable_property(
  1265. "committer", "The name of the committer of the commit"
  1266. )
  1267. message = serializable_property("message", "The commit message")
  1268. commit_time = serializable_property(
  1269. "commit_time",
  1270. "The timestamp of the commit. As the number of seconds since the " "epoch.",
  1271. )
  1272. commit_timezone = serializable_property(
  1273. "commit_timezone", "The zone the commit time is in"
  1274. )
  1275. author_time = serializable_property(
  1276. "author_time",
  1277. "The timestamp the commit was written. As the number of "
  1278. "seconds since the epoch.",
  1279. )
  1280. author_timezone = serializable_property(
  1281. "author_timezone", "Returns the zone the author time is in."
  1282. )
  1283. encoding = serializable_property("encoding", "Encoding of the commit message.")
  1284. mergetag = serializable_property("mergetag", "Associated signed tag.")
  1285. gpgsig = serializable_property("gpgsig", "GPG Signature.")
  1286. OBJECT_CLASSES = (
  1287. Commit,
  1288. Tree,
  1289. Blob,
  1290. Tag,
  1291. )
  1292. _TYPE_MAP = {} # type: Dict[Union[bytes, int], Type[ShaFile]]
  1293. for cls in OBJECT_CLASSES:
  1294. _TYPE_MAP[cls.type_name] = cls
  1295. _TYPE_MAP[cls.type_num] = cls
  1296. # Hold on to the pure-python implementations for testing
  1297. _parse_tree_py = parse_tree
  1298. _sorted_tree_items_py = sorted_tree_items
  1299. try:
  1300. # Try to import C versions
  1301. from dulwich._objects import parse_tree, sorted_tree_items # type: ignore
  1302. except ImportError:
  1303. pass